Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Uninstall homebrew-cask before running Travis tests
language: objective-c rvm: system osx_image: xcode7 install: - sudo gem install bundler --no-ri --no-rdoc - sudo bundle install script: - soloist
language: objective-c rvm: system osx_image: xcode7 install: - sudo gem install bundler --no-ri --no-rdoc - sudo bundle install - brew uninstall --force brew-cask script: - soloist
Use the latest Ruby patch versions for TravisCI and drop Rubinius support
language: ruby cache: bundler rvm: - ruby-head - 2.3.0 - 2.2.4 - 2.1.8 - 2.0.0 - 1.9.3 - jruby-head - jruby-9 - jruby-19mode - rbx-2 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head addons: code_climate: repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f851cd...
language: ruby cache: bundler rvm: - ruby-head - 2.3.1 - 2.2.5 - 2.1.9 - 2.0.0 - 1.9.3 - jruby-9.1.2.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-9.1.2.0 - rvm: jruby-head addons: code_climate: repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f8...
Revert "Allow build the project using PHP 5.3 and 5.4"
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 before_script: - composer self-update - composer install script: - vendor/phpspec/phpspec/bin/phpspec run --no-interaction
language: php php: - 5.5 - 5.6 - 7.0 before_script: - composer self-update - composer install script: - vendor/phpspec/phpspec/bin/phpspec run --no-interaction
Add OpenJDK 11 to the test matrix
language: java after_success: - mvn jacoco:report coveralls:jacoco jdk: - openjdk8
language: java after_success: - mvn jacoco:report coveralls:jacoco jdk: - openjdk8 - openjdk11
Allow failures JRuby on Travis
language: ruby rvm: - 1.9.3 - rbx-19mode - jruby-19mode matrix: exclude: - rvm: jruby-19mode env: DB=sqlite - rvm: rbx-19mode env: DB=sqlite branches: only: - master script: "bundle exec rake test" env: - DB=postgres - DB=mysql - DB=sqlite before_script: - psql -c 'create ...
language: ruby rvm: - 1.9.3 - rbx-19mode - jruby-19mode matrix: exclude: - rvm: jruby-19mode env: DB=sqlite - rvm: rbx-19mode env: DB=sqlite allow_failures: - jruby-19mode branches: only: - master script: "bundle exec rake test" env: - DB=postgres - DB=mysql - DB=sqlite...
Disable tests with Python 2.6 and 3.3
# Python project, check against all supported things. language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" matrix: include: - python: 3.7 dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069) sudo: required # required for Python 3.7 (travis-ci/travis-ci#...
# Python project, check against all supported things. language: python python: # - "2.6" - "2.7" # - "3.3" - "3.4" - "3.5" - "3.6" matrix: include: - python: 3.7 dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069) sudo: required # required for Python 3.7 (travis-ci/travis-c...
Update Travis config for new rubies
sudo: false language: ruby cache: bundler matrix: include: - rvm: 2.3.7 - rvm: 2.4.4 - rvm: 2.5.3 - rvm: ruby-head allow_failures: - rvm: ruby-head branches: only: - master bundler_args: --jobs 7 --without docs debug script: bundle exec rspec --color --format progress
sudo: false language: ruby cache: bundler distro: xenial matrix: include: - rvm: 2.3.8 - rvm: 2.4.5 - rvm: 2.5.3 - rvm: ruby-head allow_failures: - rvm: ruby-head branches: only: - master bundler_args: --jobs 7 --without docs debug script: bundle exec rspec --color --format progress
Use latest DITA-OT version (3.0.3) for CI builds
sudo: false language: java jdk: - oraclejdk8 env: global: - DITA_OT_VERSION=3.0.2 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
sudo: false language: java jdk: - oraclejdk8 env: global: - DITA_OT_VERSION=3.0.3 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
Enable Travis go -race tests
language: go go: - 1.3 - 1.2 - tip install: true script: - echo "Done"
language: go go: - 1.3 - 1.2 - tip install: - go build -race -v ./ script: - go test -race ./tests/...
Add ruby 2.0.0 to versions tested in Travis CI
language: ruby bundler_args: --without development rvm: - 1.9.3 - 1.9.2 - 1.8.7 - ree - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
language: ruby bundler_args: --without development rvm: - 2.0.0 - 1.9.3 - 1.9.2 - 1.8.7 - ree - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
Install bower and bower install
language: node_js node_js: - "0.10"
language: node_js node_js: - "0.10" before_script: - npm install -g bower - bower install
Add prism directory via Travis
language: go go: - '1.6' before_script: - "curl https://raw.githubusercontent.com/sendgrid/sendgrid-python/master/test/prism.sh | sh" notifications: hipchat: rooms: secure: ebEe+SoHExe1JALPXIutdtWNUYRR1ic9rB9oda+9oYsr+BNnPy50eqKjzAskcULbdmZqhgmHSoTgegiE5IOGZpAi6sumBA422K860x3VoS2cqm2sBSb1o85uoSiVJQ+AMS6lEZH...
language: go go: - '1.6' before_script: - mkdir prism - mkdir prism/bin - export PATH=$PATH:$PWD/prism/bin/ - "curl https://raw.githubusercontent.com/sendgrid/sendgrid-python/master/test/prism.sh | sh" notifications: hipchat: rooms: secure: ebEe+SoHExe1JALPXIutdtWNUYRR1ic9rB9oda+9oYsr+BNnPy50eqKjzAskcULbdmZ...
Allow failures on PHP 7.4snapshot
language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot - master matrix: allow_failures: - php: master sudo: false install: - composer install script: - ./vendor/bin/phpunit notifications: email: false
language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot - master matrix: allow_failures: - php: 7.4snapshot sudo: false install: - composer install script: - ./vendor/bin/phpunit notifications: email: false
Add acknowledgements to the end of _config.yml before deploy.
# Use new container infrastructure to enable caching sudo: false language: ruby # Caching so the next build will be fast too. cache: bundler: true timeout: 1500 directories: - out/ - $HOME/.stack - $HOME/.agda - $HOME/.local - $HOME/agda-master - $HOME/agda-stdlib-master - $HOME/agda2html-master ...
# Use new container infrastructure to enable caching sudo: false language: ruby # Caching so the next build will be fast too. cache: bundler: true timeout: 1500 directories: - out/ - $HOME/.stack - $HOME/.agda - $HOME/.local - $HOME/agda-master - $HOME/agda-stdlib-master - $HOME/agda2html-master ...
Test against Go 1.4, too.
language: go go: - 1.3 - tip notifications: email: on_success: change on_failure: always
language: go go: - 1.3 - 1.4 - tip notifications: email: on_success: change on_failure: always
Enforce 5.6 support, but deprecate 5.3
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm env: - MAGENTO_VERSION=1.7.0.2 - MAGENTO_VERSION=1.8.1.0 - MAGENTO_VERSION=1.9.1.0 matrix: fast_finish: true allow_failures: - php: 5.6 - php: hhvm before_script: - mysql -uroot -e "CREATE USER 'meanbee_core'@'localhost' IDENTIFIED BY 'mean...
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm env: - MAGENTO_VERSION=1.7.0.2 - MAGENTO_VERSION=1.8.1.0 - MAGENTO_VERSION=1.9.1.0 matrix: fast_finish: true allow_failures: - php: 5.3 - php: hhvm before_script: - mysql -uroot -e "CREATE USER 'meanbee_core'@'localhost' IDENTIFIED BY 'mean...
Install bundler before TravisCI run
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.2
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.2 install: - "gem install bundler" - "bundle install --jobs=3 --retry=3"
Drop support for old python versions
language: python python: - "3.2" - "3.3" - "3.4" - "3.5" - "nightly" install: - pip install -r requirements.txt script: - cd scattergun && python3 manage.py test matrix: allowed_failures: - python: "nightly"
language: python python: - 3.4 - 3.5 - nightly install: - pip install -r requirements.txt script: - cd scattergun && python3 manage.py test matrix: allowed_failures: - python: nightly
Add Coverity Scan to Travis configuration
language: c compiler: - gcc - clang before_install: - sudo apt-get update -qq - sudo apt-get install -qq --no-install-recommends check valgrind script: - autoreconf -i - ./configure - make -j2 memcheck - make distcheck
language: c compiler: - gcc - clang before_install: - sudo apt-get update -qq - sudo apt-get install -qq --no-install-recommends check valgrind script: - autoreconf -i - ./configure - make -j2 memcheck - make distcheck env: global: - secure: "FCsDw8O0O29KWWuuVmOY2FuJ0/8ij3YU5QqCV2M35Mfw8QQuOoN...
Use just OpenJDK in Travis CI
language: java jdk: - oraclejdk8 - openjdk11 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ - $HOME/.m2/repository/webdriver/
language: java jdk: - openjdk8 - openjdk11 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ - $HOME/.m2/repository/webdriver/
Create tables within test db
language: node_js node_js: - 0.10 - 0.8 services: - redis-server before_script: - psql -c 'create database "tomatar-test";' -U postgres - psql -f ./config/tables.sql -U postgres - npm install --quiet -g karma - npm install -g grunt-cli - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 1 ...
language: node_js node_js: - 0.10 - 0.8 services: - redis-server before_script: - psql -c 'create database "tomatar-test";' -U postgres - psql -f ./config/tables.sql -U postgres -d tomatar-test - npm install --quiet -g karma - npm install -g grunt-cli - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb st...
Move to the latest stable node version.
sudo: false language: node_js node_js: - "0.10" before_script: - npm install grunt-cli -g
sudo: false language: node_js node_js: - "node" before_script: - npm install grunt-cli -g
Remove jdk9 from the list of JDK envs
language: clojure lein: 2.8.1 script: "lein do clean, test" jdk: - oraclejdk8 - oraclejdk9 - openjdk8
language: clojure lein: 2.8.1 script: "lein do clean, test" jdk: - oraclejdk8 - openjdk8
Use 'composer update' instead of 'composer install'
language: php php: - 5.5 - 5.6 - 7.0 - nightly cache: directories: - vendor install: - phpenv config-rm xdebug.ini || true - composer config --global discard-changes true - composer install - composer require satooshi/php-coveralls dev-master --dev - composer show --installed script: - fin...
language: php php: - 5.5 - 5.6 - 7.0 - nightly cache: directories: - vendor install: - phpenv config-rm xdebug.ini || true - composer config --global discard-changes true - composer update - composer require satooshi/php-coveralls dev-master --dev - composer show --installed script: - find...
Use TravisCI cache for maven
language: java jdk: - oraclejdk7 - openjdk7 after_success: - mvn clean cobertura:cobertura coveralls:cobertura
language: java jdk: - oraclejdk7 - openjdk7 after_success: - mvn clean cobertura:cobertura coveralls:cobertura sudo: false cache: directories: - $HOME/.m2
Disable Python 3.2 / Numpy testing
language: python python: - 2.5 - 2.6 - 2.7 - 3.2 - pypy env: - NUMPY="true" - NUMPY="false" matrix: exclude: - python: pypy env: NUMPY="true" install: - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors unittest2; fi - if [[ $TRAVIS_PYTHON_VER...
language: python python: - 2.5 - 2.6 - 2.7 - 3.2 - pypy env: - NUMPY="true" - NUMPY="false" matrix: exclude: - python: pypy env: NUMPY="true" - python: 3.2 env: NUMPY="true" install: - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirror...
Add nightly builds on Travis
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - nightly - hhvm
Change scala version for Travis CI
language: scala jdk: oraclejdk8 sudo: false addons: apt: packages: - imagemagick scala: - 2.11.7 services: - docker branches: only: - master script: sbt test && sbt integrate && sbt assembly && bash publish.sh
language: scala jdk: oraclejdk8 sudo: false addons: apt: packages: - imagemagick scala: - 2.11.8 services: - docker branches: only: - master script: sbt test && sbt integrate && sbt assembly && bash publish.sh
Enable -race detector for tests on Travis
language: go sudo: false go: - 1.4 - 1.5 - tip script: - go test -v ./...
language: go sudo: false go: - 1.4 - 1.5 - tip script: - go test -v -race ./...
Switch Travis to container-based infrastructure.
language: python python: - "2.7" - "3.4" - "pypy" install: - pip install . - pip install codecov script: coverage run -m pcapfile.test after_success: codecov
sudo: false language: python python: - "2.7" - "3.4" - "pypy" install: - pip install . - pip install codecov script: coverage run -m pcapfile.test after_success: codecov
Test against more rust versions.
sudo: required language: rust rust: - nightly - beta - 1.0.0 addons: apt: packages: - python3 env: matrix: - PIP=pip2 - PIP=pip3 global: secure: "JBbvav6WVyWekbpmfhct+/ZnGXbHlk47iev/dQOtjVjcwA+NModsNgaNk2TIyPAKe/jNCXAok+i7Fw0FMQKi3kLthixl9sz2wa4Dv2DkzocHtIxKuwySvxeQsfuOpFzc2tlSI4NHCoA...
sudo: required language: rust rust: - nightly - beta - 1.0.0 - 1.1.0 - 1.2.0 - 1.3.0 - stable addons: apt: packages: - python3 env: matrix: - PIP=pip2 - PIP=pip3 global: secure: "JBbvav6WVyWekbpmfhct+/ZnGXbHlk47iev/dQOtjVjcwA+NModsNgaNk2TIyPAKe/jNCXAok+i7Fw0FMQKi3kLthixl9sz2wa...
Make uploads to pypi automatic on tagged versions of master
sudo: false language: python env: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=docs - TOX_ENV=pep8 install: - "pip install --use-mirrors tox coveralls" script: - tox -e $TOX_ENV after_success: coveralls
sudo: false language: python env: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=docs - TOX_ENV=pep8 install: - pip install --use-mirrors tox coveralls script: - tox -e $TOX_ENV after_success: coveralls deploy: provider: pypi user: striglia password: secure: cNExm/7XrxdF8c/m+EpXDVObR5h4...
Build with Node.js 12 on Travis CI.
sudo: false language: node_js node_js: - '10' branches: only: - master - travis-ci install: - for dir in prolific.*; do (cd $dir && npm install --no-save --no-package-lock); done - npm install --no-save --no-package-lock - npm install -g nyc - git checkout . script: - nyc npm test
sudo: false language: node_js node_js: - '10' - '12' branches: only: - master - travis-ci install: - for dir in prolific.*; do (cd $dir && npm install --no-save --no-package-lock); done - npm install --no-save --no-package-lock - npm install -g nyc - git checkout . script: - nyc npm test
Add notification to slack channel.
language: ruby sudo: false bundler_args: --retry=3 --jobs=3 rvm: - 2.0 - 2.1 - 2.2 - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true
language: ruby sudo: false bundler_args: "--retry=3 --jobs=3" rvm: - 2.0 - 2.1 - 2.2 - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true notifications: slack: secure: wZ1UPEcH/Zf/wSPvpR1q76vpUQvAEGuwR5500ML8C+shW7PedvuSZaiZYAOZxhyD17RXzXYroON0ArEk3NUcKD8supPzYjUWzCeWDIFaYxEb7dOm...
Install a more recent version of `npm` if running node 0.8.
language: node_js node_js: - 0.8 - 0.10 - 0.12 - "stable" script: npm run test-spec sudo: false
language: node_js node_js: - 0.8 - 0.10 - 0.12 - "stable" before_install: - NODE_VERSION=$(node -e 'console.log(process.version.replace(/[.][0-9]+$/, ""))') - if [ "v0.8" = "$NODE_VERSION" ]; then npm install -g npm@2.7.3 ; fi script: npm run test-spec sudo: false
Make Travis only run the unit tests
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer self-update - composer install --prefer-source --no-interaction --dev script: phpunit
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer self-update - composer install --prefer-source --no-interaction --dev script: phpunit --group unit
Enable Docker builds & caching on Travis
language: java addons: hosts: - test-bucket.localhost env: - PATH=$PATH:$HOME/.s3cmd SECOR_LOCAL_S3=true S3CMD=1.0.1 jdk: - openjdk7 before_install: - wget https://github.com/s3tools/s3cmd/archive/v$S3CMD.tar.gz -O /tmp/s3cmd.tar.gz - tar -xzf /tmp/s3cmd.tar.gz -C $HOME - mv $HOME/s3cmd-$S3CMD $HOME/.s3...
language: java sudo: false cache: directories: - $HOME/.m2 addons: hosts: - test-bucket.localhost env: - PATH=$PATH:$HOME/.s3cmd SECOR_LOCAL_S3=true S3CMD=1.0.1 jdk: - openjdk7 before_install: - wget https://github.com/s3tools/s3cmd/archive/v$S3CMD.tar.gz -O /tmp/s3cmd.tar.gz - tar -xzf /tmp/s3cmd.tar...
Remove node 6 from the test matrix
--- language: node_js node_js: - 4 - 6 - stable cache: yarn: true directories: - node_modules env: - NODE_ENV=development - NODE_ENV=production matrix: allow_failures: - env: NODE_ENV=production fast_finish: true install: - yarn install --production=false before_script: - if [ "${NODE_ENV}" ...
--- language: node_js node_js: - 4 - stable cache: yarn: true directories: - node_modules env: - NODE_ENV=development - NODE_ENV=production matrix: allow_failures: - env: NODE_ENV=production fast_finish: true install: - yarn install --production=false before_script: - if [ "${NODE_ENV}" = "pro...
Use coveralls parallel build webhook
sudo: required dist: xenial language: python python: - "3.5" - "3.6" - "3.7" addons: apt: packages: - gfortran - mpich - libmpich-dev - libhdf5-serial-dev - libhdf5-mpich-dev cache: directories: - $HOME/nndc_hdf5 - $HOME/endf-b-vii.1 env: global: - FC=gfortran -...
sudo: required dist: xenial language: python python: - "3.5" - "3.6" - "3.7" addons: apt: packages: - gfortran - mpich - libmpich-dev - libhdf5-serial-dev - libhdf5-mpich-dev cache: directories: - $HOME/nndc_hdf5 - $HOME/endf-b-vii.1 env: global: - FC=gfortran -...
Update Ruby versions on Travis CI
language: ruby sudo: false cache: bundler rvm: - "2.2.7" - "2.3.4" - "2.4.1" - jruby before_install: - gem update bundler env: matrix: - EMBER_SOURCE_VERSION="~> 1.0.0" # Uses handlebars-source 1.0.12 - EMBER_SOURCE_VERSION="~> 1.8.0" # Uses handlebars-source 1.3.0 - EMBER_SOURCE_VERSION="~> 1.9...
language: ruby sudo: false cache: bundler rvm: - "2.2.8" - "2.3.5" - "2.4.2" - jruby before_install: - gem update bundler env: matrix: - EMBER_SOURCE_VERSION="~> 1.0.0" # Uses handlebars-source 1.0.12 - EMBER_SOURCE_VERSION="~> 1.8.0" # Uses handlebars-source 1.3.0 - EMBER_SOURCE_VERSION="~> 1.9...
Use 3.1 releases for core (5.3 pgsql & 5.4 mysql)
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details language: php php: - 5.3 env: - DB=MYSQL CORE_RELEASE=3.1 - DB=PGSQL CORE_RELEASE=master matrix: include: - php: 5.4 env: DB=MYSQL CORE_RELEASE=master before_script: - git clone git://github.com/silverstripe-l...
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details language: php php: - 5.3 env: - DB=MYSQL CORE_RELEASE=3.1 - DB=PGSQL CORE_RELEASE=3.1 matrix: include: - php: 5.4 env: DB=MYSQL CORE_RELEASE=3.1 before_script: - git clone git://github.com/silverstripe-labs/si...
Fix yarn for npm list
language: node_js node_js: - "6.5" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 cache: directories: - $HOME/.npm - $HOME/.yarn-cache install: - "npm install -g yarn" - "yarn install --prefer-offline" script: npm run travis after_success: npm ...
language: node_js node_js: - "6.5" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 cache: directories: - $HOME/.npm - $HOME/.yarn-cache install: - "npm install -g yarn" - "yarn install && yarn install" script: npm run travis after_success: npm r...
Test under PHP 5.5, 5.6 and 7
language: php script: phpunit php: - 5.3 - 5.4
language: php script: phpunit php: - 5.3 - 5.4 - 5.5 - 5.6 - 7 matrix: fast_finish: true allow_failures: - php: 7
Revert "Revert "Migrate CI to container-based infrastructure""
language: python python: 2.7 env: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=pypy - TOX_ENV=flake8 install: pip install tox script: - tox -e $TOX_ENV services: - mongodb - redis-server before_script: # timer is needed in order to get mongo to properly initialize on tra...
language: python sudo: false cache: pip python: 2.7 env: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=pypy - TOX_ENV=flake8 install: pip install tox script: - tox -e $TOX_ENV services: - mongodb - redis-server before_script: # timer is needed in order to get mongo to pro...
Add sudo as a test
language: node_js node_js: - "6.9" cache: yarn: true directories: - node_modules script: - yarn run ami notifications: slack: fnndsc:UohaXDsjFDVqZj5IfdC88XRa
language: node_js node_js: - "6.9" sudo: required cache: yarn: true directories: - node_modules script: - yarn run ami notifications: slack: fnndsc:UohaXDsjFDVqZj5IfdC88XRa
Allow failures on PHP nightly.
language: php php: - 7.0 - 7.1 - nightly before_script: - composer install --dev --no-interaction - composer dump-autoload script: - mkdir -p build/logs - phpdbg -qrr ./vendor/bin/phpunit after_script: - php vendor/bin/coveralls -v
language: php php: - 7.0 - 7.1 - nightly before_script: - composer install --dev --no-interaction - composer dump-autoload matrix: allow_failures: - php: nightly script: - mkdir -p build/logs - phpdbg -qrr ./vendor/bin/phpunit after_script: - php vendor/bin/coveralls -v
Update Travis script to install Apache properly
language: ruby rvm: - 1.8.7 - 1.9.3 before_install: - sudo apt-get install apache2-prefork-mpm apache2-threaded-dev - rake test:install_deps script: ./dev/run_travis.sh
language: ruby rvm: - 1.8.7 - 1.9.3 before_install: - sudo apt-get install apache2-mpm-worker apache2-threaded-dev - rake test:install_deps script: ./dev/run_travis.sh
Remove checking the docker runs.. it is missing configuration and will not pass.
sudo: required language: go go: master services: - docker - redis-server - mysql install: - go get -d -v . - docker build -t evedata . - docker run -d -p 127.0.0.1:80:3000 --name evedata evedata script: - docker ps | grep -q evedata - go install -v ./ - go test -v ./ after_success: - if [ "$TRAV...
sudo: required language: go go: master services: - docker - redis-server - mysql install: - go get -d -v . - docker build -t evedata . - docker run -d -p 127.0.0.1:80:3000 --name evedata evedata script: - go install -v ./ - go test -v ./ after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then ...
Test on Node.js 4, 5, 6
language: node_js sudo: false node_js: - "0.12" - "4" notifications: email: on_success: never
language: node_js sudo: false node_js: - "4" - "5" - "6" notifications: email: on_success: never
Use JDK 8 during Travis CI build
language: java os: - linux notifications: email: on_success: change on_failure: always
language: java os: - linux jdk: - oraclejdk8 notifications: email: on_success: change on_failure: always
Add go 1.9 to test matrix.
language: go go: - 1.6 - 1.7 - 1.8 sudo: false os: - linux - osx script: make travis
language: go go: - 1.6 - 1.7 - 1.8 - 1.9 sudo: false os: - linux - osx script: make travis
Check pkgin on Travis CI.
language: c os: - linux - osx compiler: - clang - gcc matrix: allow_failures: - compiler: gcc sudo: false script: - python minipkg.py - source ~/.bash_profile after_success: - pkg_info after_failure: - cat *-log.txt
language: c os: - linux - osx compiler: - clang - gcc matrix: allow_failures: - compiler: gcc sudo: false script: - python minipkg.py - source ~/.bash_profile after_success: - pkgin list after_failure: - cat *-log.txt
Test more versions of node.
language: node_js node_js: - v7 script: - npm test
language: node_js node_js: - v7 - v6 - v4 script: - npm test
Update Travis CI to test against PHP v5.6
language: php php: - 5.5 - 7.0 before_install: - cp phpunit.xml.sample phpunit.xml - composer install script: - ./vendor/bin/phpunit
language: php php: - 5.6 - 7.0 before_install: - cp phpunit.xml.sample phpunit.xml - composer install script: - ./vendor/bin/phpunit
Add nightly to the availables versions.
language: rust rust: - stable matrix: allow_failures: - rust: - nightly - beta cache: cargo before_script: - export PATH="$PATH:$HOME/.cargo/bin" - which rustfmt || cargo install rustfmt - which cargo-audit || cargo install cargo-audit - which cargo-clippy ||rustup run nightly cargo install clipp...
language: rust rust: - stable - nightly matrix: allow_failures: - rust: - nightly - beta cache: cargo before_script: - export PATH="$PATH:$HOME/.cargo/bin" - which rustfmt || cargo install rustfmt - which cargo-audit || cargo install cargo-audit - which cargo-clippy ||rustup run nightly cargo i...
Test with latest Ruby versions
dist: trusty language: ruby sudo: false cache: bundler before_install: travis_retry gem update --system rvm: - 2.5.0 - 2.4.3 - 2.3.6 - 2.2.9 - jruby-9.1.15.0
dist: trusty language: ruby sudo: false cache: bundler before_install: travis_retry gem update --system rvm: - 2.5.1 - 2.4.4 - 2.3.7 - 2.2.10 - jruby-9.1.17.0
Build only on node 0.10
language: node_js node_js: - '0.11' - '0.10' script: "npm run travis" after_success: "npm install coveralls@2.11.1 && cat ./coverage/lcov.info | coveralls" deploy: provider: npm email: tarmolov@gmail.com api_key: secure: LfLG35921234nZk3Me9Z3G3qy5NxJvZ5mLwJE3iTIloJlbDLgmaXlClYMVtO0JHD7/nLxZA1EE9lFJ1JexDNMCnH/...
language: node_js node_js: - '0.10' script: "npm run travis" after_success: "npm install coveralls@2.11.1 && cat ./coverage/lcov.info | coveralls" deploy: provider: npm email: tarmolov@gmail.com api_key: secure: LfLG35921234nZk3Me9Z3G3qy5NxJvZ5mLwJE3iTIloJlbDLgmaXlClYMVtO0JHD7/nLxZA1EE9lFJ1JexDNMCnH/eLqWDGui0...
Update Travis Linux config to non-ancient Xenial.
sudo: required dist: trusty before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libeigen3-dev libglew-dev libc++-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ...
sudo: required dist: xenial before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libeigen3-dev libglew-dev libc++-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ...
Drop testing for old Ruby versions
bundler_args: "" script: "bundle exec rake spec" rvm: - ree - 1.9.3 - 2.0.0 gemfile: - gemfiles/activerecord_3.2.gemfile
bundler_args: "" script: "bundle exec rake spec" rvm: - 2.0.0 gemfile: - gemfiles/activerecord_3.2.gemfile
Update jQuarks to 1.0-4 (4)
Categories: - Internet - Navigation - Reading License: Apache-2.0 SourceCode: https://gitlab.com/oF2pks/jelly IssueTracker: https://gitlab.com/oF2pks/jelly/issues AutoName: jQuarks RepoType: git Repo: https://gitlab.com/oF2pks/jelly.git Builds: - versionName: 1.0-2 versionCode: 2 commit: v1.0-2 s...
Categories: - Internet - Navigation - Reading License: Apache-2.0 SourceCode: https://gitlab.com/oF2pks/jelly IssueTracker: https://gitlab.com/oF2pks/jelly/issues AutoName: jQuarks RepoType: git Repo: https://gitlab.com/oF2pks/jelly.git Builds: - versionName: 1.0-2 versionCode: 2 commit: v1.0-2 s...
Remove ruby 3 from the matrix
name: Ruby on: push: branches: - master pull_request: jobs: test: runs-on: ubuntu-latest name: Ruby ${{ matrix.ruby }} strategy: fail-fast: false matrix: ruby: - '2.6.10' - '2.7.6' - '3.0.4' - '3.1.2' steps: - uses: acti...
name: Ruby on: push: branches: - master pull_request: jobs: test: runs-on: ubuntu-latest name: Ruby ${{ matrix.ruby }} strategy: fail-fast: false matrix: ruby: - '2.6.10' - '2.7.6' steps: - uses: actions/checkout@v2 - name: Set up Ruby ...
Install OpenJDK 6 for Travis
language: java jdk: - openjdk6 - oraclejdk8 install: - jdk_switcher use openjdk6 && export JAVA6_HOME=$JAVA_HOME - jdk_switcher use oraclejdk8 && export JAVA8_HOME=$JAVA_HOME - ./gradlew check
language: java addons: apt: packages: - openjdk-6-jdk jdk: - oraclejdk8 install: - jdk_switcher use openjdk6 && export JAVA6_HOME=$JAVA_HOME - jdk_switcher use oraclejdk8 && export JAVA8_HOME=$JAVA_HOME - ./gradlew check
Fix (?) Python 3.6 build
name: ib_insync on: [ push, pull_request ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [ 3.6, 3.7, 3.8, 3.9 ] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: ...
name: ib_insync on: [ push, pull_request ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [ 3.6, 3.7, 3.8, 3.9 ] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: ...
Allow region change or database reconfiguration from the console
--- en: product: name: ManageIQ advanced_settings: menu_order: - dhcp - static - testnet - hostname - datetime - dbrestore - httpdauth - key_gen - evmstop - evmstart - restart - shutdown - summary - quit dhcp: Set DHCP Network Configuration sta...
--- en: product: name: ManageIQ advanced_settings: menu_order: - dhcp - static - testnet - hostname - datetime - dbrestore - dbregion_setup - db_config - httpdauth - key_gen - evmstop - evmstart - restart - shutdown - summary - quit dhcp: S...
Use shared GH action v3
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not u...
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not u...
Update cocoapod version to 1.1.1
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode8 # cache: cocoapods # podfile: Example/Podfile # before_install: # - gem install cocoapods # Since Travis is not always on latest version # - pod install --project-direc...
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode8 # cache: cocoapods # podfile: Example/Podfile before_install: - gem install cocoapods -v '1.1.1' # - gem install cocoapods # Since Travis is not always on latest vers...
Fix Xvfb setup on TravisCI
sudo: required dist: trusty services: - docker language: java jdk: - oraclejdk8 install: - export MAVEN_SKIP_RC=true - export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=512m" - "export PATH=`pwd`/bin:$PATH" - echo $HOME - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: - mvn -Pdocker cle...
sudo: required dist: trusty services: - docker language: java jdk: - oraclejdk8 script: - export MAVEN_SKIP_RC=true - export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=512m" - "export PATH=`pwd`/bin:$PATH" - echo $HOME - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - mvn -Pdocker clean verify
Switch back to codecov with sub-projects jacoco report
language: java before_install: - chmod +x gradlew after_success: - ./gradlew codeCoverageReport coveralls
language: java before_install: - chmod +x gradlew after_success: - if [ -e ./gradlew ]; then ./gradlew codeCoverageReport;else gradle codeCoverageReport;fi - bash <(curl -s https://codecov.io/bash)
Move CI database setup to before_script
language: ruby before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: - bundle exec rake db:migrate RAILS_ENV=test - bundle exec rake rvm: - 1.9.3 - 2.0.0 - 2.1 env: - RAILS_VERSION="~> 4.0.0" - RAILS_VERSION="~> 4.1.0"
language: ruby before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - bundle exec rake db:setup rvm: - 1.9.3 - 2.0.0 - 2.1 env: - RAILS_VERSION="~> 4.0.0" - RAILS_VERSION="~> 4.1.0"
Update Helmet version to 3.21.1
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the se...
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the se...
Move into college_landing sub dir
# Site settings title: Matt DePero header-img: img/home-bg.jpg email: deperomd@gmail.com description: "Projects, ideas, and resume by Matthew DePero, a computer science student at Miami University from the hometown of Wadsworth, Ohio." baseurl: "" url: "https://mattdepero.com" twitter_username: mattdepero github_userna...
# Site settings title: Matt DePero header-img: img/home-bg.jpg email: deperomd@gmail.com description: "Projects, ideas, and resume by Matthew DePero, a computer science student at Miami University from the hometown of Wadsworth, Ohio." baseurl: "/college" url: "https://mattdepero.com" twitter_username: mattdepero githu...
Change permalinks to be as on the old site
# Site settings title: dgms code email: dgmstuart@gmail.com description: > This is the dev blog of Duncan Graeme Macdonald Stuart - a Technical Architect living in London. The focus is mostly Ruby on Rails with a little WordPress url: "http://dgmstuart.github.io" twitter_username: dgmstuart github_username: dgm...
# Site settings title: dgms code email: dgmstuart@gmail.com description: > This is the dev blog of Duncan Graeme Macdonald Stuart - a Technical Architect living in London. The focus is mostly Ruby on Rails with a little WordPress url: "http://dgmstuart.github.io" twitter_username: dgmstuart github_username: dgm...
Add lsof to server dependencies
--- - hosts: kv:index:n1ql tasks: - yum: state=latest name=epel-release - yum: state=latest name={{item}} with_items: - atop - fio - gdb - htop - iotop - iperf - iptraf - moreutils - net-tools - numactl - psmisc - rsync - sysstat ...
--- - hosts: kv:index:n1ql tasks: - yum: state=latest name=epel-release - yum: state=latest name={{item}} with_items: - atop - fio - gdb - htop - iotop - iperf - iptraf - lsof - moreutils - net-tools - numactl - psmisc - rsync ...
Configure Codecov to send Slack notifications
coverage: status: project: default: threshold: 1 patch: off
coverage: status: project: default: threshold: 1 patch: off notify: slack: default: url: "secret:F3tyY8zm4BW8W1KD5t4X7atr6OTDT7FNo+UatckerMIidQIWAkO8dJdc7bnNLNSBNIvIPR+3apf+9MMoSrNuscNgHjgAwR7N2PxP5Qpr0O0UNW/ys/ZkG3xiXWg5uAsovDJ137bYM7KgDhguZTQ+vp5RIeaok9FaXkvfjRHz4PM=" ...
Add GEC code for Norway
--- 'NO': continent: Europe address_format: |- {{recipient}} {{street}} {{postalcode}} {{city}} {{country}} alpha2: 'NO' alpha3: NOR country_code: '47' currency: NOK international_prefix: '00' ioc: NOR gec: latitude: 62 00 N longitude: 10 00 E name: Norway names: - Norway ...
--- 'NO': continent: Europe address_format: |- {{recipient}} {{street}} {{postalcode}} {{city}} {{country}} alpha2: 'NO' alpha3: NOR country_code: '47' currency: NOK international_prefix: '00' ioc: NOR gec: 'NO' latitude: 62 00 N longitude: 10 00 E name: Norway names: - Norwa...
Add node.js 5 to Travis CI
sudo: false language: node_js node_js: - "0.12" - "4" - "stable"
sudo: false language: node_js node_js: - "0.12" - "4" - "5"
Drop the circle ruby orb
version: 2.1 orbs: # orbs are basically bundles of pre-written build scripts that work for common cases # https://github.com/CircleCI-Public/ruby-orb ruby: circleci/ruby@1.1 jobs: # skipping build step because Gemfile.lock is not included in the source # this makes the bundler caching step a noop test: ...
version: 2.1 jobs: # skipping build step because Gemfile.lock is not included in the source # this makes the bundler caching step a noop test: parameters: ruby-image: type: string docker: - image: << parameters.ruby-image >> steps: - run: command: sudo apt-get upda...
Reduce instances from 10 to 6
duration: 10 threads: 4 n_db_nodes: 10 # I have to solve a problem with SSH connection parallelism, until then # keep n_loaders: 1 n_loaders: 1 regions: !mux us_west_2: region_name: 'us-west-2' ami_id_db: 'ami-20776841' instance_type_db: 'c4.xlarge' ami_id_loader: 'ami-05f4ed35' ...
duration: 10 threads: 4 n_db_nodes: 6 # I have to solve a problem with SSH connection parallelism, until then # keep n_loaders: 1 n_loaders: 1 regions: !mux us_west_2: region_name: 'us-west-2' ami_id_db: 'ami-20776841' instance_type_db: 'c4.xlarge' ami_id_loader: 'ami-05f4ed35' ...
Update from Hackage at 2018-06-08T09:07:09Z
homepage: https://github.com/paramander/mollie-api-haskell changelog-type: '' hash: a04dd29907ffa31ea4328afb1917c0d21a20174836a5aa0fca79f1e284ccad06 test-bench-deps: base: -any mollie-api-haskell: -any maintainer: mats@paramander.com synopsis: Mollie API client for Haskell http://www.mollie.com changelog: '' basic-...
homepage: https://github.com/paramander/mollie-api-haskell changelog-type: '' hash: d3b2ade1af87125ba17cf7a8bc60e0cc1df0c89a55d03273859b74b1161b9f99 test-bench-deps: base: -any mollie-api-haskell: -any maintainer: mats@paramander.com synopsis: Mollie API client for Haskell http://www.mollie.com changelog: '' basic-...
Configure default user/group for the volume
sync: defaults: ignore: vcs: true paths: - .DS_Store - .history - .idea permissions: defaultFileMode: 644 defaultDirectoryMode: 755 mutagen: alpha: "." beta: "docker://mutagen/var/www/html" mode: "two-way-resolved" ...
sync: defaults: ignore: vcs: true paths: - .DS_Store - .history - .idea mutagen: alpha: "." beta: "docker://mutagen/var/www/html" mode: "two-way-resolved" configurationBeta: permissions: defaultFileMode: 644 ...
Disable the missing_docs lint rule temporarily
# Configuration for SwiftLint (https://github.com/realm/SwiftLint) excluded: - Carthage enabled_rules: - empty_count - missing_docs disabled_rules: - comma - conditional_binding_cascade - cyclomatic_complexity - function_body_length - line_length - opening_brace - valid_docs
# Configuration for SwiftLint (https://github.com/realm/SwiftLint) excluded: - Carthage enabled_rules: - empty_count # - missing_docs disabled_rules: - comma - conditional_binding_cascade - cyclomatic_complexity - function_body_length - line_length - opening_brace - valid_docs
Add ClusterIP as type as proposed to avoid that OpenShift Online switches to LoadBalancer which is not allowed on AWS. OBST-28
apiVersion: v1 kind: Service metadata: name: vertx-rest spec: ports: - protocol: TCP port: 8080 targetPort: 8080
apiVersion: v1 kind: Service metadata: name: vertx-rest spec: ports: - protocol: TCP port: 8080 targetPort: 8080 type: ClusterIP
Tidy ports for web container
web: restart: always build: ./ ports: - "8000:8000" - "5000:5000" volumes: - /usr/src/app/static links: - postgres:postgres environment: - PYTHONPATH=/usr/src/app/ - GROWSER_CONFIG=/usr/src/app/growser.cfg command: gunicorn -b :8000 growser.web:app nginx: restart: always build...
web: restart: always build: ./ expose: - "8000" volumes: - /usr/src/app/static links: - postgres:postgres environment: - PYTHONPATH=/usr/src/app/ - GROWSER_CONFIG=/usr/src/app/growser.cfg command: gunicorn -b :8000 growser.web:app nginx: restart: always build: ./deploy/nginx/ po...
Change alt text on Sakura theme
name: Sakura base: colour_schemes/base_light colours: background0: "#FFECF7" background1: "#FFF0F9" backgroundLogo: "#FFE8F5" ui_controlNormal: "#DD6CB6" ui_controlDown: "#C4398F" ui_controlHover: "#E796CA" ui_controlDisabled: "#D7AAC6" ui_buttonNormal: "#FFC6E7" ui_buttonDown: "#E281C0" ui_butt...
name: Sakura base: colour_schemes/base_light colours: background0: "#FFECF7" background1: "#FFF0F9" backgroundLogo: "#FFE8F5" ui_controlNormal: "#DD6CB6" ui_controlDown: "#C4398F" ui_controlHover: "#E796CA" ui_controlDisabled: "#D7AAC6" ui_buttonNormal: "#FFC6E7" ui_buttonDown: "#E281C0" ui_butt...
Add CA to test composition and configure for testing
orderer: image: hyperledger/fabric-orderer environment: - ORDERER_GENERAL_LEDGERTYPE=ram - ORDERER_GENERAL_BATCHTIMEOUT=10s - ORDERER_GENERAL_BATCHSIZE_MAXMESSAGECOUNT=10 - ORDERER_GENERAL_MAXWINDOWSIZE=1000 - ORDERER_GENERAL_ORDERERTYPE=solo - ORDERER_GENERAL_LISTENADDRESS=0.0.0.0 - ORD...
ca: image: hyperledger/fabric-ca ports: - 7054:7054 orderer: image: hyperledger/fabric-orderer environment: - ORDERER_GENERAL_LEDGERTYPE=ram - ORDERER_GENERAL_BATCHTIMEOUT=10s - ORDERER_GENERAL_BATCHSIZE_MAXMESSAGECOUNT=10 - ORDERER_GENERAL_MAXWINDOWSIZE=1000 - ORDERER_GENERAL_ORDERERTY...
Update 6.4 AMIs with swagger_aem 2.0.0 beta 2.
aem: version: '6.4' library: # TODO: which Oak version is compatible with AEM 6.4 oak_run_version: 1.8.3 # Generated by Packer AEM # AMI IDs for AEM profile aem64 on OS type rhel7 ami_ids: author: ami-785f821a author_dispatcher: ami-de5c81bc author_publish_dispatcher: ami-1b0ed279 chaos_monkey: ami-695e...
aem: version: '6.4' library: # TODO: which Oak version is compatible with AEM 6.4 oak_run_version: 1.8.3 # Generated by Packer AEM # AMI IDs for AEM profile aem64 on OS type rhel7 ami_ids: author: ami-4a29f628 author_dispatcher: ami-de5c81bc author_publish_dispatcher: ami-3b28f759 chaos_monkey: ami-695e...
Increase build to trigger travis
package: name: pout2mzid version: '0.3.03' source: git_url: https://github.com/percolator/pout2mzid.git git_rev: 5e390a7be408a2eee13b24aabb964c2a82b31933 build: number: 1 string: boost_1.62{{PKG_BUILDNUM}} skip: True # [osx] requirements: build: - cmake ==2.8.10.2 - gcc - boost ==1.62 # S...
package: name: pout2mzid version: '0.3.03' source: git_url: https://github.com/percolator/pout2mzid.git git_rev: 5e390a7be408a2eee13b24aabb964c2a82b31933 build: number: 2 string: boost_1.62{{PKG_BUILDNUM}} skip: True # [osx] requirements: build: - cmake ==2.8.10.2 - gcc - boost ==1.62 # S...
Test with gcc and not llvm as dependency for OSX
{% set name = "velvet-sc" %} {% set version = "0.7.62" %} {% set md5 = "e94c5631c5d83015a99382eb2ce1b26d" %} source: fn: velvet-sc.tar.gz md5: {{ md5 }} url: http://bix.ucsd.edu/projects/singlecell/velvet-sc.tar.gz build: number: 0 skip: False package: name: {{ name }} version: {{ version }} requireme...
{% set name = "velvet-sc" %} {% set version = "0.7.62" %} {% set md5 = "e94c5631c5d83015a99382eb2ce1b26d" %} source: fn: velvet-sc.tar.gz md5: {{ md5 }} url: http://bix.ucsd.edu/projects/singlecell/velvet-sc.tar.gz build: number: 0 skip: False package: name: {{ name }} version: {{ version }} requireme...
Remove package no longer available
--- - name: Install GTop apt: name: gir1.2-gtop-2.0 state: latest - name: Install Hamster Indicator apt: name: hamster-indicator state: latest - name: Configure file watching sysctl: name: fs.inotify.max_user_watches value: 524288 state: present
--- - name: Install GTop apt: name: gir1.2-gtop-2.0 state: latest - name: Configure file watching sysctl: name: fs.inotify.max_user_watches value: 524288 state: present
Use correct Python version for Stickler
files: ignore: - '*.min.js' - '**/_design/**/*.js' - '*.xml' linters: flake8: python: 3.9 config: .flake8 eslint: config: ./.eslintrc.js # pytype: # failing due to timeout # config: ./.pytype.cfg
files: ignore: - '*.min.js' - '**/_design/**/*.js' - '*.xml' linters: flake8: python: 3 config: .flake8 eslint: config: ./.eslintrc.js # pytype: # failing due to timeout # config: ./.pytype.cfg
Add simple test that 4 containers are up
name: lovelace-website CI on: - push - pull_request jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: ...
name: lovelace-website CI on: - push - pull_request jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: ...
Use single quoted in YAML.
darvin_image_archive_build: path: /build defaults: { _controller: Darvin\ImageBundle\Controller\ArchiveController::buildAction } methods: [ post ] darvin_image_archive_download: path: /download/{filename} defaults: { _controller: Darvin\ImageBundle\Controller\ArchiveController::dow...
darvin_image_archive_build: path: /build defaults: { _controller: Darvin\ImageBundle\Controller\ArchiveController::buildAction } methods: [ post ] darvin_image_archive_download: path: /download/{filename} defaults: { _controller: Darvin\ImageBundle\Controller\ArchiveController::dow...
Clone correct repo for doc update
name: Build docs and upload to gh-pages on: push: branches: - master jobs: docs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: ammaraskar/sphinx-action@master with: pre-build-command: "pip install sphinx-rtd-theme" docs-folder: "docs/" - ...
name: Build docs and upload to gh-pages on: push: branches: - master jobs: docs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: ammaraskar/sphinx-action@master with: pre-build-command: "pip install sphinx-rtd-theme" docs-folder: "docs/" - ...
Prepare to publish analyzer for DDC
name: analyzer version: 0.27.1+2 author: Dart Team <misc@dartlang.org> description: Static analyzer for Dart. homepage: http://www.dartlang.org environment: sdk: '>=1.12.0 <2.0.0' dependencies: args: '>=0.12.1 <0.14.0' glob: ^1.0.3 html: ^0.12.0 package_config: ^0.1.1 path: '>=0.9.0 <2.0.0' plugin: ^0.1.0...
name: analyzer version: 0.27.2-alpha.0 author: Dart Team <misc@dartlang.org> description: Static analyzer for Dart. homepage: http://www.dartlang.org environment: sdk: '>=1.12.0 <2.0.0' dependencies: args: '>=0.12.1 <0.14.0' glob: ^1.0.3 html: ^0.12.0 package_config: ^0.1.1 path: '>=0.9.0 <2.0.0' plugin: ...
Use sudo for NPM, because reasons.
box: blisteringherb/scholarship@0.0.6 # Build definition build: steps: - script: name: install bundler code: sudo gem install bundler - npm-install - script: name: Build theme code: npm run build deploy: steps: - bundle-install - script: name: write env va...
box: blisteringherb/scholarship@0.0.6 # Build definition build: steps: - script: name: install bundler code: sudo gem install bundler - script: name: npm install code: |- sudo npm install -g npm npm -v mkdir -p $WERCKER_CACHE_DIR/wercker/npm ...
Update from Hackage at 2017-04-14T15:31:51Z
homepage: '' changelog-type: '' hash: b47858cf533ae8d72bd422106bcb9e075ae477ab2e537f59ffe437277840bcef test-bench-deps: {} maintainer: Simon Marlow <marlowsd@gmail.com> synopsis: Knowledge of GHC's installation directories changelog: '' basic-deps: base: ! '>=3 && <5' all-versions: - '0.1' - '0.1.0.1' - '0.1.0.2' - '...
homepage: '' changelog-type: '' hash: d3f3470c7bd13b765891fb56b28d809cb7aeda0a78050679ae6f29b6705c46bf test-bench-deps: {} maintainer: Simon Marlow <marlowsd@gmail.com> synopsis: Knowledge of GHC's installation directories changelog: '' basic-deps: base: ! '>=3 && <5' all-versions: - '0.1' - '0.1.0.1' - '0.1.0.2' - '...
Exclude the rule that breaks the cookbook
# rubocop todo # Lint/AmbiguousRegexpLiteral: Exclude: - 'test/integration/mysql/serverspec/mysql_spec.rb' Style/MultilineTernaryOperator: Exclude: - 'libraries/provider_database_postgresql.rb'
# rubocop todo and an exclusion for a bug it introduces # Lint/AmbiguousRegexpLiteral: Exclude: - 'test/integration/mysql/serverspec/mysql_spec.rb' Style/MultilineTernaryOperator: Exclude: - 'libraries/provider_database_postgresql.rb' # rubocop will introduce a bug if you allow it to fix this ...
Add gpg to brew packages.
--- downloads: ~/.ansible-downloads/ dotfiles_repo: https://github.com/geerlingguy/dotfiles.git dotfiles_repo_local_destination: ~/Dropbox/Development/GitHub/dotfiles dotfiles_files: - .bash_profile - .gitconfig - .gitignore - .inputrc - .osx - .vimrc homebrew_installed_packages: - ansible - autoconf ...
--- downloads: ~/.ansible-downloads/ dotfiles_repo: https://github.com/geerlingguy/dotfiles.git dotfiles_repo_local_destination: ~/Dropbox/Development/GitHub/dotfiles dotfiles_files: - .bash_profile - .gitconfig - .gitignore - .inputrc - .osx - .vimrc homebrew_installed_packages: - ansible - autoconf ...
Set autoname of Otobi Keyboard
Categories: - System License: GPL-3.0-only AuthorName: Otobi Keyboard AuthorEmail: otobi.kb@gmail.com AuthorWebSite: https://rhjihan.github.io/ WebSite: https://otobikb.github.io/android/ SourceCode: https://github.com/OtobiKB/OtobiKeyboard IssueTracker: https://github.com/OtobiKB/OtobiKeyboard/issues RepoType: git ...
Categories: - System License: GPL-3.0-only AuthorName: Otobi Keyboard AuthorEmail: otobi.kb@gmail.com AuthorWebSite: https://rhjihan.github.io/ WebSite: https://otobikb.github.io/android/ SourceCode: https://github.com/OtobiKB/OtobiKeyboard IssueTracker: https://github.com/OtobiKB/OtobiKeyboard/issues AutoName: Otob...
Correct translation from english to spanish
# Sample localization file for English. Add more files in this directory for other locales. # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. es: contact_us: contact_mailer: contact_email: sent_by_contact_form: "Enviado por el formulario de contacto. %{ema...
# Sample localization file for Spanish. Add more files in this directory for other locales. # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. es: contact_us: contact_mailer: contact_email: sent_by_contact_form: "Enviado por el formulario de contacto desde ...