commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
b7242264924b137144be0b9902b1eedbc33bc7a9
.travis.yml
.travis.yml
language: bash before_install: - sudo add-apt-repository ppa:duggan/bats --yes - sudo apt-get update -qq - sudo apt-get install -qq bats - npm install newman --global; script: - bats --tap test/ after_script: - echo "`./Newman-to-Slack.sh`"
language: bash before_install: - sudo add-apt-repository ppa:duggan/bats --yes - sudo apt-get update -qq - sudo apt-get install -qq bats - npm install newman --global; script: - bats --tap test/ after_script: - echo "`./Newman-to-Slack.sh` -c $COLLECTION -w $SLACK_WEBHOOK"
Add Environment Vars for Travis test
Add Environment Vars for Travis test
YAML
mit
cameronoxley/Newman-to-Slack
aac893a78a741623c626e90915b792a7f3d9abf8
.travis.yml
.travis.yml
sudo: false cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - jruby - ruby-head matrix: fast_finish: true env: global: - "JRUBY_OPTS=-Xcext.enabled=true"
sudo: false cache: bundler rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - jruby - rbx-2 - ruby-head matrix: fast_finish: true env: global: - "JRUBY_OPTS=-Xcext.enabled=true"
Test latest Ruby versions and Rbx.
Test latest Ruby versions and Rbx.
YAML
mit
AEgan/rails-controller-testing,rails/rails-controller-testing,AEgan/rails-controller-testing,rails/rails-controller-testing,AEgan/rails-controller-testing
0965be5f0917e3c227d4ac67fc2ba1b5e5e6523e
.travis.yml
.travis.yml
language: go go: - master before_install: - . $HOME/.nvm/nvm.sh - nvm install stable - nvm use stable - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH install: - npm rebuild node-sass --force script: - make
language: go go: - master before_install: - . $HOME/.nvm/nvm.sh - nvm install stable - nvm use stable - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH install: - cd static && npm rebuild node-sass --force script: - make
Rebuild node-sass in the correct directory...
Rebuild node-sass in the correct directory...
YAML
apache-2.0
decaf-emu/huehuetenango,decaf-emu/huehuetenango,decaf-emu/huehuetenango
abe3786554d77b50a2e0822cd6d7bf94f32b21b8
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 before_install: gem install bundler -v '~> 1.14' --conservative
sudo: false language: ruby rvm: - 2.1.10 - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 - ruby-head before_install: gem install bundler -v '~> 1.14' --conservative
Add latest versions of Ruby to Travis
Add latest versions of Ruby to Travis
YAML
mit
mattbrictson/jess,mattbrictson/jess
14e1f077de2f3c2487f1d1a27995ade77a9b7240
.travis.yml
.travis.yml
language: python python: 3.5 sudo: false script: - python manage.py test after_success: - pip install flake8 && flake8 .
language: python python: 3.5 sudo: false install: - pip install -r requirements.txt - pip install flake8 before_script: - flake8 . script: - python manage.py test
Make flake8 actually cause errors on Travis
Make flake8 actually cause errors on Travis
YAML
mpl-2.0
frewsxcv/lop.farm,frewsxcv/lop.farm,frewsxcv/lop.farm
8937be33aa6f7d99b8561e3895ffe311487811d7
.travis.yml
.travis.yml
language: php sudo: false cache: vendor php: - '5.4' - '5.5' - '5.6' - '7.0' - '7.1' - '7.2' - '7.3' - '7.4' before_install: - composer config -g repositories.packagist path $(pwd) - composer global require 'hirak/prestissimo:@dev' - composer config -g --unset repositories.packagist install: - composer install --no-progress --profile script: - composer test after_success: - php bin/ocular.phar code-coverage:upload --format=php-clover artifacts/clover.xml - php bin/coveralls.phar -v matrix: include: - os: linux sudo: required dist: precise php: 5.3
language: php sudo: false cache: vendor php: - '5.4' - '5.5' - '5.6' - '7.0' - '7.1' - '7.2' - '7.3' - '7.4' before_install: - composer config -g repositories.packagist path $(pwd) - composer global require 'hirak/prestissimo:@dev' - composer config -g --unset repositories.packagist install: - composer install --no-progress --profile script: - composer test after_success: - php bin/ocular.phar code-coverage:upload --format=php-clover artifacts/clover.xml - php bin/coveralls.phar -v matrix: include: - os: linux sudo: required dist: precise php: 5.3 - php: 5.4 dist: precise - php: 5.5 dist: precise
Fix tests for 5.4 and 5.5
Fix tests for 5.4 and 5.5
YAML
mit
hirak/prestissimo,hirak/prestissimo,hirak/prestissimo
37532c22971c9872ca371e39044dfed5b97f9e3e
.travis.yml
.travis.yml
language: python python: - "2.7" # Default install: - pip install -r requirements.txt -q # Default addons: postgresql: "9.3" before_script: - cp .env.example .env - psql -c 'create database brainiac;' -U postgres script: - python manage.py test - flake8 . notifications: email: false
language: python python: - "2.7" # Default install: - pip install -r requirements.txt -q # Default - pip install coveralls addons: postgresql: "9.3" before_script: - cp .env.example .env - psql -c 'create database brainiac;' -U postgres script: - coverage run --source=hello,brainiac manage.py test - flake8 . after_succcess: coveralls notifications: email: false
Add coveralls for code coverage
Add coveralls for code coverage
YAML
mit
mriddle/brainiac
2be4eed49c3772c3efc6d3ca44845e3fb7fff965
.travis.yml
.travis.yml
language: ruby script: bundle exec rake --trace rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: rbx-19mode - rvm: ruby-head env: ARUBA_TIMEOUT=120 RAILS_ENV=development AHN_ENV=development notifications: irc: "irc.freenode.org#adhearsion"
language: ruby script: bundle exec rake --trace rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: rbx-19mode - rvm: ruby-head - rvm: jruby-19mode env: ARUBA_TIMEOUT=120 RAILS_ENV=development AHN_ENV=development notifications: irc: "irc.freenode.org#adhearsion"
Allow CI to fail on JRuby
Allow CI to fail on JRuby
YAML
mit
adhearsion/adhearsion,adhearsion/adhearsion,adhearsion/adhearsion,adhearsion/adhearsion,renemendoza/adhearsion,cloudvox/adhearsion,renemendoza/adhearsion,cloudvox/adhearsion,renemendoza/adhearsion,cloudvox/adhearsion,kares/adhearsion,cloudvox/adhearsion,kares/adhearsion
b0f366371e7fa1b75c982302fe30432be5c2b859
.travis.yml
.travis.yml
dist: xenial language: java # Codacy download uses hardcoded version instead of latest version # Codacy coverage reporter README at https://github.com/codacy/codacy-coverage-reporter documents a new method for fetching latest binary # However, we had difficulty using it: https://github.com/codacy/codacy-coverage-reporter/issues/75#issuecomment-409585275 before_install: - sudo apt-get install jq - wget -O ~/codacy-coverage-reporter-assembly-latest.jar https://oss.sonatype.org/service/local/repositories/releases/content/com/codacy/codacy-coverage-reporter/4.0.1/codacy-coverage-reporter-4.0.1-assembly.jar install: mvn install -DskipTests -Dgpg.skip script: mvn -B verify after_success: java -cp ~/codacy-coverage-reporter-assembly-latest.jar com.codacy.CodacyCoverageReporter report --language Java --coverage-report aggregate/target/site/jacoco-aggregate/jacoco.xml
dist: xenial language: java # Codacy download uses hardcoded version instead of latest version # Codacy coverage reporter README at https://github.com/codacy/codacy-coverage-reporter documents a new method for fetching latest binary # However, we had difficulty using it: https://github.com/codacy/codacy-coverage-reporter/issues/75#issuecomment-409585275 before_install: - sudo apt-get install jq - wget -O ~/codacy-coverage-reporter-assembly-latest.jar https://oss.sonatype.org/service/local/repositories/releases/content/com/codacy/codacy-coverage-reporter/4.0.5/codacy-coverage-reporter-4.0.5-assembly.jar install: mvn install -DskipTests -Dgpg.skip script: mvn -B verify after_success: java -cp ~/codacy-coverage-reporter-assembly-latest.jar com.codacy.CodacyCoverageReporter report --language Java --coverage-report aggregate/target/site/jacoco-aggregate/jacoco.xml
Upgrade to latest Codacy coverage reporter
Upgrade to latest Codacy coverage reporter
YAML
apache-2.0
jtablesaw/tablesaw,jtablesaw/tablesaw,jtablesaw/tablesaw
4b4ecb8ed7629f565d7e792212ede1ef496b387a
.travis.yml
.travis.yml
sudo: false language: perl perl: - "5.8" - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
sudo: false language: perl perl: - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
Update Travis CI to use v5.14 and later
Update Travis CI to use v5.14 and later
YAML
artistic-2.0
thoke/distribution-cooker,thoke/distribution-cooker
e78f13a179b36e7b7597c9d58880ba4a5a74b83a
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy" notifications: email: false addons: apt: packages: - git - golang before_install: - export GOPATH=~/go - go get github.com/BurntSushi/toml-test install: - pip install tox-travis - python setup.py install - chmod +x ./tests/*.sh script: - ~/go/bin/toml-test ./tests/decoding_test.sh - ./tests/tox.sh after_success: - tox -e codecov
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" - "pypy" notifications: email: false addons: apt: packages: - git - golang before_install: - export GOPATH=~/go - go get github.com/BurntSushi/toml-test install: - pip install tox-travis - python setup.py install - chmod +x ./tests/*.sh script: - ~/go/bin/toml-test ./tests/decoding_test.sh - ./tests/tox.sh after_success: - tox -e codecov
Drop Python 3.3 for Travis. Add Python 3.7
Drop Python 3.3 for Travis. Add Python 3.7
YAML
mit
uiri/toml,uiri/toml
7199ef5167acb1c0d55b63f6a928cd1e74eb6da9
.travis.yml
.travis.yml
language: go go: - 1.6.x - 1.7.x - 1.8.x - master script: - make lint - make test/coverage after_success: - make test/coverage/publish
language: go go: - 1.7.x - 1.8.x - master script: - make lint - make test/coverage after_success: - make test/coverage/publish
Remove go 1.6 from tests
Remove go 1.6 from tests The linter and tests using sub tests were failing on v1.6. Supporting the higher versions should be enough.
YAML
mit
maxcnunes/httpfake
e5572c85fab0a2f7d01e9e76dac47aacc313e4f3
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" - "0.11" - "0.12" - "iojs-v1" - "iojs-v2" script: "npm run-script test-travis" after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
sudo: false language: node_js node_js: - "0.10" - "0.11" - "0.12" - "4" - "5" script: "npm run-script test-travis" after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
Add node 5 to Travis
Add node 5 to Travis
YAML
mit
chentsulin/is-lrc,chentsulin/is-lrc
5428b2d6e2c3f5000a52e12a9cfa768c049eb168
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.9 - 2.2.6 - 2.3.2 - jruby-18mode - jruby-19mode - jruby-9.0.5.0 - jruby-9.1.6.0 - jruby-head - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head gemfile: .travis.gemfile before_install: - gem install bundler
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.9 - 2.2.6 - 2.3.3 - 2.4.0 - jruby-18mode - jruby-19mode - jruby-9.0.5.0 - jruby-9.1.6.0 - jruby-head - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head gemfile: .travis.gemfile before_install: - gem install bundler
Add ruby 2.4 to Travis config
Add ruby 2.4 to Travis config Also, update ruby 2.3 to latest patch release.
YAML
mit
jeremyevans/roda,celsworth/roda,jeremyevans/roda,celsworth/roda,jeremyevans/roda,celsworth/roda
1d9e27ed11fde1837fab9f91dc7b9a6bc01ae27b
.travis.yml
.travis.yml
sudo: false language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk7 cache: directories: - $HOME/.m2 install: - mvn install -DskipTests=true -DdryRun=true script: - mvn clean install -DdryRun=true -Dlicense.failOnMissingHeader=true -Dlicense.failOnNotUptodateHeader=true
sudo: false language: java env: global: - secure: "I9fqcwUoApU+MBNpgv5uJJxytXg00lcJlNfaBDhwfQWz63NUpglJsIART/iT0MU88fK7WxaaLXonBlTwlYv6hKAiuYftKh7tB/oLmdlHQgN8k508JiuVQYTMxhV3H4mcZKkaXFw6Alo/ZRcFCbAox5Y73DBiEq3u39p8DP8X8kI=" - secure: "Kd7j12QVk9xgKeltFu1+s/lLSdy+z8la4E9AnTTQS67cgZ5wvs+LdT/LCvASSIcwxs3NsG66vbmdqfcdozra3Nrhu9FUZLpav3ZR7fAqlMcUass0K02UbM27E5nJhSwTDFGWnWlcOijKU4B2idOYhLLnk8T2+dQSYQF8t/EYdow=" jdk: - oraclejdk8 - oraclejdk7 - openjdk7 cache: directories: - $HOME/.m2 install: - mvn install -DskipTests=true -DdryRun=true script: - mvn clean install -DdryRun=true -Dlicense.failOnMissingHeader=true -Dlicense.failOnNotUptodateHeader=true after_success: - deploy.sh
Add secure env variables and call deploy.sh
Add secure env variables and call deploy.sh
YAML
apache-2.0
dianaui/dianaui-universal,dianaui/dianaui-universal,dianaui/dianaui-universal
3b41a3a3c6ee14fd62000d79362e71a34b261d6d
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.4.4 - 2.5.1 - ruby-head before_install: - gem update --system - gem install bundler cache: bundler matrix: allow_failures: - rvm: ruby-head notifications: email: false
sudo: false language: ruby rvm: - 2.4.4 - 2.5.1 - ruby-head before_install: - gem update --system cache: bundler matrix: allow_failures: - rvm: ruby-head notifications: email: false
Remove bundler installation because it is already included in CI
Remove bundler installation because it is already included in CI refs: https://twitter.com/travisci/status/1080930935095287808
YAML
mit
sinsoku/bundler_diffgems,sinsoku/bundler_diffgems
958dde100a0f7c4528ba5954535acf0e39f2612a
.travis.yml
.travis.yml
language: ruby bundler_args: --without documentation rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - jruby-18mode # JRuby in 1.8 mode - jruby-19mode # JRuby in 1.9 mode - rbx-18mode - rbx-19mode - ree - ruby-head
language: ruby bundler_args: --without documentation rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - jruby-18mode # JRuby in 1.8 mode - jruby-19mode # JRuby in 1.9 mode - rbx-18mode - rbx-19mode - ree - ruby-head before_install: - gem update bundler - bundle --version - gem update --system 2.1.11 - gem --version
Use earlier version of Rubygems to avoid Bundler fatal error.
Use earlier version of Rubygems to avoid Bundler fatal error.
YAML
mit
magplus/pinch,peterhellberg/pinch
76a194f3ff23b5e6ee78392f46e27c1fe99fdeea
.travis.yml
.travis.yml
sudo: false language: python python: - "3.8-dev" - "3.7" - "3.6" - "3.5.5" - "3.5.2" - "3.5.1" - "3.4" - "2.7" install: - pip install -r test-requirements.txt script: - py.test - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then flake8; fi - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then flake8 --config=.flake8-tests test_typing_inspect.py; fi
sudo: false language: python python: - "3.8-dev" - "3.7" - "3.6" - "3.5" - "3.4" - "2.7" install: - pip install -r test-requirements.txt script: - py.test - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then flake8; fi - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then flake8 --config=.flake8-tests test_typing_inspect.py; fi
Drop older minor versions in Travis
Drop older minor versions in Travis
YAML
mit
ilevkivskyi/typing_inspect
6d665ce313d6d64887fcb5e907a256e92df9f871
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: allow_failures: - php: 7 - php: hhvm fast_finish: true before_script: - composer install --dev --prefer-source script: - phpunit --coverage-text
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm install: - composer install --prefer-source script: - phpunit --coverage-text
Abort on all Travis errors
Abort on all Travis errors
YAML
mit
clue-labs/stream,reactphp/stream
4baf2d360cb7dcc37a5f156413b20a5942e05024
.travis.yml
.travis.yml
language: node_js node_js: - '5.6' notifications: hipchat: rooms: secure: acPMr1q1JGCyV629lmYML4krXW4nOeqLJYDVANm538tdyGP5vavQ3vULCCiGOtLay/QFTb9Z4EEdP0W+EBgwVnelb19IYegzeQKjhJFvNdJWpUBNnH1Z9F9n76oR3NXXpvZ2mS8zzqYncFG9rH7AAAI2a+oSgFExhdMfoA/xTXk=
language: node_js node_js: - '7.2' notifications: hipchat: rooms: secure: acPMr1q1JGCyV629lmYML4krXW4nOeqLJYDVANm538tdyGP5vavQ3vULCCiGOtLay/QFTb9Z4EEdP0W+EBgwVnelb19IYegzeQKjhJFvNdJWpUBNnH1Z9F9n76oR3NXXpvZ2mS8zzqYncFG9rH7AAAI2a+oSgFExhdMfoA/xTXk=
Update node.js version to 7.2
Travis: Update node.js version to 7.2
YAML
mit
efacilitation/eventric-remote-socketio-endpoint
444d0f4596ffedbfe432ddbc79fa95ec5caf11bb
.travis.yml
.travis.yml
language: python python: "3.5" install: - "pip install numpy" - "pip install scipy" - "pip install networkx" - "pip install pytest" - "pip install pytest-cov" - "pip install codecov" - "pip install -e ." script: "py.test --cov=choix" after_success: - "codecov"
language: python python: '3.5' install: - pip install numpy - pip install scipy - pip install networkx - pip install pytest - pip install pytest-cov - pip install codecov - pip install -e . script: py.test --cov=choix after_success: - codecov deploy: provider: pypi user: lum password: secure: iTrRZX/oDAfNtZuCe1/RS9//wnzpl48KEmaaq9aG1IQPAKbyIJTs/bRVp61af3txq54dsegK9Uql1rz46QF8d4e4H275GfZkqkxN3EoT36vNpPdZvUHYmVHpWOyziL6wwA4ORrI/BF+DOTujxTTPZ87EReUtjwpvybWXTe49rxq8ZgVO1K+VeL+r2+aGytvoOcKeF+txUzDpTxqD1/fYYi3CPA3SO5s2zI93EnPWyPLYSbnRpO6//4yWP8lPoU+oLwz6x7RoHuEoYCgO3hH+PN4FCU3xKJm0/+rUG4KbJ9RUn7Oz6SA7koCb7si4lmIx/odxtYKvBzO5i39XwEnFrLQyfEnFA+85OJwxl/k7/S/wGY+vE021Yv9d3V6V5GCfrCtUh6OKdZGRDImX6JJQlzTeaGJaHRNGnV3uRmj3gH8lf8xL9MHnisILFVaQt9bWWht/75zWcu7FpfS4DCaDfzGTHsi74Ajg3XHLcvtEYUuePcC5NoMGg0g1MIX2/C+u3Xy3ljE8WITynvAfGVfrMCBW3yk+j1MwPGDhd8Vsjt2h7dHSaUBdMWgZDPFbHejmFlSHFIfVJi/eTFdIZzgj2OGA2y6TwITkF/kBUpRkUcEooTvIgBG9kps4eJdpndfUxBIY5IcpJOZadZNTYpwK35XGFQLaOh0bDV4c3jqChYI= on: tags: true branch: master
Set up Travis CI to deploy to PyPI automatically.
Set up Travis CI to deploy to PyPI automatically. This is an attempt at setting up Travis CI to automatically deploy packages to PyPI when a new tag is pushed.
YAML
mit
lucasmaystre/choix
4508820e4c5e3bd310975dc5bbb954980c19d38e
.travis.yml
.travis.yml
sudo: required language: python python: - "2.6" - "2.7" - "3.4" - "3.5" - "pypy-5.4" services: - rabbitmq addons: apt: packages: - stompserver env: - RABBITMQ_HOST=localhost RABBITMQ_PORT=61613 RABBITMQ_USER=guest RABBITMQ_PASSWORD=guest STOMPSERVER_HOST=localhost STOMPSERVER_PORT=63613 STD_HOST=localhost STD_PORT=61613 STD_USER=guest STD_PASSWORD=guest STD_VHOST=/ install: - sudo service stompserver stop - sudo rabbitmq-plugins enable rabbitmq_stomp - sudo sed -i -e s/61613/$STOMPSERVER_PORT/ /etc/stompserver/stompserver.conf - sudo service stompserver start - pip install virtualenv-api - pip install docopt script: - make travistests
sudo: required language: python python: - "2.6" - "2.7" - "3.4" - "3.5" - "3.6" - "pypy-5.4" services: - rabbitmq addons: apt: packages: - stompserver env: - RABBITMQ_HOST=localhost RABBITMQ_PORT=61613 RABBITMQ_USER=guest RABBITMQ_PASSWORD=guest STOMPSERVER_HOST=localhost STOMPSERVER_PORT=63613 STD_HOST=localhost STD_PORT=61613 STD_USER=guest STD_PASSWORD=guest STD_VHOST=/ install: - sudo service stompserver stop - sudo rabbitmq-plugins enable rabbitmq_stomp - sudo sed -i -e s/61613/$STOMPSERVER_PORT/ /etc/stompserver/stompserver.conf - sudo service stompserver start - pip install virtualenv-api - pip install docopt script: - make travistests
Test with Python 3.6 on Travis
Test with Python 3.6 on Travis
YAML
apache-2.0
jasonrbriggs/stomp.py,jasonrbriggs/stomp.py
c57b851069b36242740f9f686f195f5e583e761f
.travis.yml
.travis.yml
language: node_js node_js: - node sudo: false addons: apt: sources: - ubuntu-toolchain-r-test - sourceline: 'deb http://dl.yarnpkg.com/debian/ stable main' key_url: 'https://pgp.mit.edu/pks/lookup?op=get&fingerprint=on&search=0x1646B01B86E50310' packages: - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev - g++-4.9 - yarn env: - CXX=g++-4.9 before_install: - npm explore npm -g -- npm install node-gyp@latest install: - yarn script: - yarn test after_success: - bash <(curl -s https://codecov.io/bash)
language: node_js node_js: - node sudo: false addons: apt: sources: - ubuntu-toolchain-r-test packages: - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev - g++-4.9 env: - CXX=g++-4.9 before_install: - npm explore npm -g -- npm install node-gyp@latest - npm install -g yarn@^0.15.1 install: - yarn script: - yarn test after_success: - bash <(curl -s https://codecov.io/bash)
Use npm rather than apt
Use npm rather than apt
YAML
mit
ticky/mojibaka
7e20c60096cacf04ebee3392ce348dcc5f255161
.travis.yml
.travis.yml
language: python python: - '3.6' - '3.7' env: - GCTTS=0.4.0 HASS=0.98.5 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install yamllint - pip3 install google-cloud-texttospeech==$GCTTS - pip3 install homeassistant==$HASS script: - yamllint . - hass -c . --script check_config
language: python python: - '3.6' - '3.7' env: - GCTTS=0.4.0 HASS=0.99.3 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install yamllint - pip3 install google-cloud-texttospeech==$GCTTS - pip3 install homeassistant==$HASS script: - yamllint . - hass -c . --script check_config
Update Home Assistant to 0.99.3 for config checks in Travis CI
Update Home Assistant to 0.99.3 for config checks in Travis CI
YAML
mit
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
16e3a190156b7d85b8a7242bda7fcac345cedec8
.travis.yml
.travis.yml
language: go go: - 1.3 - tip install: - go get code.google.com/p/go.tools/cmd/cover - go get github.com/mattn/goveralls - go get gopkg.in/check.v1 script: - go test -v -covermode=count -coverprofile=coverage.out -bench . -cpu 1,4 - '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN || true'
language: go go: - 1.3 - tip install: - go get golang.org/x/tools/cmd/cover - go get github.com/mattn/goveralls - go get gopkg.in/check.v1 script: - go test -v -covermode=count -coverprofile=coverage.out -bench . -cpu 1,4 - '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN || true'
Update path for the cover-tool
Update path for the cover-tool
YAML
mit
w4ngyi/pongo2,flosch/pongo2,agaurav/pongo2,gkalabin/pongo2,agaurav/pongo2,flosch/pongo2,w4ngyi/pongo2,robvdl/pongo2,robvdl/pongo2,gkalabin/pongo2
c3a968da6779a19ef3f379cd20863ec33d8fc1f6
.travis.yml
.travis.yml
language: python python: - 2.7 branches: only: - development notifications: email: - [email protected] # Setup anaconda in a new virtual environment before_install: - wget http://repo.continuum.io/archive/Anaconda-2.1.0-Linux-x86_64.sh -O anaconda.sh - chmod +x anaconda.sh - ./anaconda.sh -b - export PATH=/home/travis/anaconda/bin:$PATH - conda update --yes conda - conda update --yes anaconda # - conda create --yes -n anacondaenv python=$TRAVIS_PYTHON_VERSION # - source activate anacondaenv - cd host # The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm # Install pybar with needed packages install: - pip install https://github.com/walac/pyusb/archive/master.zip - pip install https://silab-redmine.physik.uni-bonn.de/attachments/download/695/pySiLibUSB-2.0.2.tar.gz - pip install https://silab-redmine.physik.uni-bonn.de/attachments/download/719/Basil-2.0.2.tar.gz - pip install progressbar-latest - python setup.py develop # Run test script: - nosetests tests/test_analysis.py --logging-level=INFO
language: python python: - 2.7 branches: only: - master - development # Setup anaconda in a new virtual environment before_install: - wget http://repo.continuum.io/archive/Anaconda-2.1.0-Linux-x86_64.sh -O anaconda.sh - chmod +x anaconda.sh - ./anaconda.sh -b - export PATH=/home/travis/anaconda/bin:$PATH - conda update --yes conda - conda update --yes anaconda # - conda create --yes -n anacondaenv python=$TRAVIS_PYTHON_VERSION # - source activate anacondaenv - cd host # The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm # Install pybar with needed packages install: - pip install https://github.com/walac/pyusb/archive/master.zip - pip install https://silab-redmine.physik.uni-bonn.de/attachments/download/695/pySiLibUSB-2.0.2.tar.gz - pip install https://silab-redmine.physik.uni-bonn.de/attachments/download/719/Basil-2.0.2.tar.gz - pip install progressbar-latest - python setup.py develop # Run test script: - nosetests tests/test_analysis.py --logging-level=INFO
Change E-Mail notifications and branches to autobuild
Change E-Mail notifications and branches to autobuild
YAML
bsd-3-clause
SiLab-Bonn/pyBAR
ca30b905a69bb9a2ad3a49f2db0774ea52f7a63f
.travis.yml
.travis.yml
language: java os: linux dist: xenial install: true services: - xvfb addons: chrome: stable firefox: latest sonarcloud: organization: "$(SONARCLOUD_ORGANIZATION)" token: secure: "$(SONAR_TOKEN)" before_script: - export DISPLAY=:99.0 script: - mvn test - bash <(curl -s https://codecov.io/bash) - if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then mvn sonar:sonar; fi
language: java os: linux dist: xenial install: true services: - xvfb addons: chrome: stable firefox: latest sonarcloud: organization: "$SONARCLOUD_ORGANIZATION" token: secure: "$SONAR_TOKEN" before_script: - export DISPLAY=:99.0 script: - mvn test - bash <(curl -s https://codecov.io/bash) - if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then mvn sonar:sonar; fi
Fix sonarcloud organization and token env in Travis config
Fix sonarcloud organization and token env in Travis config
YAML
apache-2.0
bonigarcia/webdrivermanager,bonigarcia/webdrivermanager,bonigarcia/webdrivermanager
4b46648f4e7f2969de204021b3b8274441ed55c9
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org sudo: false language: python python: - "2.7" - "3.4" - "3.5" # command to install dependencies install: - make travisci-install # command to run tests script: - make travisci-test # tasks to execute after successful test after_success: - pip install python-coveralls - coveralls
# Config file for automatic testing at travis-ci.org sudo: false language: python python: - "2.7" - "3.4" - "3.5" addons: apt: sources: - travis-ci/sqlite3 packages: - sqlite3 # command to install dependencies install: - make travisci-install # command to run tests script: - make travisci-test # tasks to execute after successful test after_success: - pip install python-coveralls - coveralls
Upgrade version of sqlite used on TravisCI.
Upgrade version of sqlite used on TravisCI.
YAML
mit
dgilland/sqlservice
26d74904150a51b49bd4d7220c806e64fbd90b89
.travis.yml
.travis.yml
--- language: python install: - sudo apt-get update # We do this conditionally because it saves us some downloading if the # version is the same. - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a - conda create -q -y -n test-environment python=3 - source activate test-environment - conda install -q -y -n test-environment numpy scipy pytest pandas pytables - conda install -q -y -n test-environment cython matplotlib - pip install sumatra - git clone https://github.com/fipy/fipy.git ~/fipy; - cd ~/fipy; - 2to3 . - python setup.py install; - cd $TRAVIS_BUILD_DIR; - pip install . script: - py.test
--- language: python install: - sudo apt-get update # We do this conditionally because it saves us some downloading if the # version is the same. - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a - conda create -q -y -n test-environment python=3 - source activate test-environment - conda install -q -y -n test-environment numpy scipy pytest pandas pytables - conda install -q -y -n test-environment cython matplotlib - pip install sumatra - git clone https://github.com/usnistgov/fipy.git ~/fipy; - cd ~/fipy; - 2to3 . - python setup.py install; - cd $TRAVIS_BUILD_DIR; - pip install . script: - py.test
Use correct organization for FiPy download
Use correct organization for FiPy download
YAML
mit
wd15/extremefill2D,wd15/extremefill2D
a74f61246122299dfe609fe0fb6d0bc95fb5ff6b
.travis.yml
.travis.yml
language: node_js node_js: - "4.8.6" - "6.12" - "8.9.1" script: - npm run test notifications: email: false sudo: false
language: node_js node_js: - "6.14.2" - "8.11.1" - "10.1.0" script: - npm run test notifications: email: false sudo: false
Remove node 4.x from ci, add node 10.x, bump others
Remove node 4.x from ci, add node 10.x, bump others
YAML
mit
sqmk/huejay
053de4dd870a1c97a3b8633655617e4ca1c8c783
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler rvm: - 2.1 - 2.2.4 - 2.3.0 env: matrix: - SPROCKETS_VERSION="~> 3.3.0" - SPROCKETS_VERSION="~> 3.4.0" - SPROCKETS_VERSION="~> 3.5.0" - SPROCKETS_VERSION="~> 3.6.0" - SPROCKETS_VERSION="~> 3.7.0" - SPROCKETS_VERSION="~> 4.0.0.beta2"
language: ruby sudo: false cache: bundler rvm: - 2.1.10 - 2.2.5 - 2.3.1 env: matrix: - SPROCKETS_VERSION="~> 3.3.0" - SPROCKETS_VERSION="~> 3.4.0" - SPROCKETS_VERSION="~> 3.5.0" - SPROCKETS_VERSION="~> 3.6.0" - SPROCKETS_VERSION="~> 3.7.0" - SPROCKETS_VERSION="~> 4.0.0.beta2"
Update Ruby versions for Travis CI
Update Ruby versions for Travis CI
YAML
mit
tricknotes/ember-handlebars-template,tricknotes/ember-handlebars-template
6eebbc047277caee0f117640e7d938156275d449
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 after_success: coveralls
language: java jdk: - oraclejdk8 after_success: - mvn clean test jacoco:report coveralls:report
Update jacoco and coveralls configuration
Update jacoco and coveralls configuration
YAML
agpl-3.0
xlate/property-inject,xlate/property-inject
a4914d896e62bfd4c834a109fde2cfb9ccf214fe
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.3 before_script: - composer install script: - "vendor/bin/phpcs --standard=./phpcs.xml {src,tests}"
language: php php: - 5.3 - 5.4 - 5.5 - hhvm before_script: - composer install --prefer-source --no-interaction script: - "vendor/bin/phpcs --standard=./phpcs.xml {src,tests}"
Increase testing footprint and improve GitHub API interaction.
Increase testing footprint and improve GitHub API interaction.
YAML
mit
igorgoroshit/BCA-Laravel-Inspect,RyanTheAllmighty/BCA-Laravel-Inspect,brodkinca/BCA-Laravel-Inspect
00fa1e813757455c2084a5b7789f483a29524be7
.travis.yml
.travis.yml
sudo: required dist: trusty addons: apt: sources: - chef-stable-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - script: - /opt/chefdk/bin/chef exec delivery local all env: UNIT_AND_LINT=1
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
Simplify Travis config and fix ChefDK 2.0 failures
Simplify Travis config and fix ChefDK 2.0 failures
YAML
apache-2.0
chef-cookbooks/logwatch,opscode-cookbooks/logwatch,opscode-cookbooks/logwatch,chef-cookbooks/logwatch
bfb5c6b9e3f4a498b8d367d47011cc52f1f950a1
.travis.yml
.travis.yml
language: python python: - "3.3" install: - pip install matplotlib script: - python -m unittest - python setup.py install - python setup.py sdist
language: python python: - "3.3" install: - pip install matplotlib script: - python -m unittest -v - python setup.py install - python setup.py sdist
Increase verbosity of unit tests for Travis CI
Increase verbosity of unit tests for Travis CI
YAML
bsd-2-clause
susam/taskplot,susam/taskplot
a4b1a8bf7a7bed232113ce1ef53bfc61ccfdeeef
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 env: - DB=mysql - DB=postgres before_script: - "sudo apt-get install -qq libsndfile-dev" - "mysql -e 'create database social_stream_test;'" - "psql -c 'create database social_stream_test;' -U postgres" # blacklist branches: except: - staging
language: ruby rvm: - 1.9.3 env: - DB=mysql - DB=postgres before_install: - "sudo apt-get install -qq libsndfile-dev" before_script: - "mysql -e 'create database social_stream_test;'" - "psql -c 'create database social_stream_test;' -U postgres" # blacklist branches: except: - staging
Install headers before bundle install
Install headers before bundle install
YAML
mit
honorlin/social_stream,ging/social_stream,honorlin/social_stream,ging/social_stream,honorlin/social_stream,honorlin/social_stream,ging/social_stream
1d89d564e9358e1e60d4e50546800a79acfe7068
.travis.yml
.travis.yml
language: ruby bundler_args: --without guard metrics script: "bundle exec rake spec" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ree - ruby-head - jruby-head notifications: email: - [email protected]
language: ruby bundler_args: --without guard metrics script: "bundle exec rake spec" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ree - ruby-head - jruby-head jdk: - - openjdk6 - openjdk7 - oraclejdk7 matrix: exclude: - rvm: 1.8.7 jdk: openjdk6 - rvm: 1.8.7 jdk: openjdk7 - rvm: 1.8.7 jdk: oraclejdk7 - rvm: 1.9.2 jdk: openjdk6 - rvm: 1.9.2 jdk: openjdk7 - rvm: 1.9.2 jdk: oraclejdk7 - rvm: 1.9.3 jdk: openjdk6 - rvm: 1.9.3 jdk: openjdk7 - rvm: 1.9.3 jdk: oraclejdk7 - rvm: rbx-18mode jdk: openjdk6 - rvm: rbx-18mode jdk: openjdk7 - rvm: rbx-18mode jdk: oraclejdk7 - rvm: rbx-19mode jdk: openjdk6 - rvm: rbx-19mode jdk: openjdk7 - rvm: rbx-19mode jdk: oraclejdk7 - rvm: ree jdk: openjdk6 - rvm: ree jdk: openjdk7 - rvm: ree jdk: oraclejdk7 - rvm: ruby-head jdk: openjdk6 - rvm: ruby-head jdk: openjdk7 - rvm: ruby-head jdk: oraclejdk7 notifications: email: - [email protected]
Add jdk test matrix w/excludes
Add jdk test matrix w/excludes * This may be reverted, just testing to see if this works
YAML
mit
dkubb/axiom
9f12340cf4c5e6acaa2def9874be23ff7f26d416
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "5" - "4" script: npm run test-with-coverage
language: node_js node_js: - "6" - "5" script: npm run test-with-coverage
Remove NodeJS 4 from Travis
Remove NodeJS 4 from Travis
YAML
mit
jay-ess/restinga-node
e9b6cebd54d8b19850003d18606564c9f0d619c0
.travis.yml
.travis.yml
sudo: false dist: trusty language: java # https://github.com/travis-ci/travis-ci/issues/8408 before_install: - unset _JAVA_OPTIONS matrix: include: - env: JDK='Oracle JDK 10' install: . ./install-jdk.sh -F 10 -L BCL - env: JDK='OpenJDK 10' install: . ./install-jdk.sh -F 10 -L GPL - env: JDK='Oracle JDK 11' install: . ./install-jdk.sh -F 11 -L BCL - env: JDK='OpenJDK 11' install: . ./install-jdk.sh -F 11 -L GPL script: - java --version - ./build.jsh after_success: - cd $TRAVIS_BUILD_DIR/demo/00-bootstrap - ./bootstrap.jsh - cd $TRAVIS_BUILD_DIR/demo/01-hello-world - ./build-01-hello-world.jsh
sudo: false dist: trusty language: java # https://github.com/travis-ci/travis-ci/issues/8408 before_install: - unset _JAVA_OPTIONS matrix: include: - env: JDK='Oracle JDK 11' install: . ./install-jdk.sh -F 11 -L BCL - env: JDK='OpenJDK 11' install: . ./install-jdk.sh -F 11 -L GPL script: - java --version - ./build.jsh after_success: - cd $TRAVIS_BUILD_DIR/demo/00-bootstrap - ./bootstrap.jsh - cd $TRAVIS_BUILD_DIR/demo/01-hello-world - ./build-01-hello-world.jsh
Remove JDK 10 from build matrix
Remove JDK 10 from build matrix Using "/open URL" introduced in jdk-11+13 now.
YAML
mit
sormuras/bach,sormuras/bach
f4d1912b0d683522d2bfbb682829d4e3caa697c0
.travis.yml
.travis.yml
language: python python: - "2.7" before_script: - "pip install -r requirements.txt" - "pip install -r test-requirements.txt" - "pip install coveralls" script: - "python manage.py test" - "python setup.py install" - "python setup.py build_sphinx" after_success: coveralls
language: python python: - "2.7" install: - "pip install -r requirements.txt" - "pip install -r test-requirements.txt" - "python setup.py install" - "pip install coveralls" script: - "python manage.py test" - "python setup.py build_sphinx" after_success: coveralls
Move setup.py install to the install Travis section.
Move setup.py install to the install Travis section.
YAML
agpl-3.0
Stanford-Online/edx-submissions,edx/edx-submissions,edx/edx-submissions,Stanford-Online/edx-submissions
73f8d7c2adcace36037d64e6e9850c292d7e931d
.travis.yml
.travis.yml
language: php php: - "7.2" - "7.3" - "7.4" dist: xenial os: linux env: addons: apt: packages: - nodejs install: - composer install before_install: - pecl channel-update pecl.php.net - pecl install mongodb script: - ./vendor/bin/phpunit notifications: email: on_success: never on_failure: change
language: php php: - "7.2" - "7.3" - "7.4" dist: xenial os: linux env: addons: apt: packages: - nodejs install: - composer install before_install: - pecl channel-update pecl.php.net - pecl install -f mongodb script: - ./vendor/bin/phpunit notifications: email: on_success: never on_failure: change
Fix Travis-CI for PHP 7.2 and up
Fix Travis-CI for PHP 7.2 and up
YAML
agpl-3.0
iRail/iRail,iRail/iRail,iRail/iRail
d77986aa2fe6c2c299ce3e60a076712c26f16113
.travis.yml
.travis.yml
language: node_js cache: yarn node_js: - node - "8" - "6" git: depth: 5
language: node_js cache: yarn node_js: - node - "12" - "10" - "8" - "6" git: depth: 5
Add new Node.js versions to CI
Add new Node.js versions to CI
YAML
mit
postcss/postcss-safe-parser
4e602f8109687f561618c22a9758688948a31915
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" before_install: - "curl -L http://git.io/ejPSng | /bin/sh"
language: node_js node_js: - "0.10" before_install: - "curl -L http://git.io/ejPSng | /bin/sh"
Fix indenting for Travis config
Fix indenting for Travis config
YAML
mit
chip/meteor-countries
2367a6cb0d97b150f3110c67687972c7a05a07af
.travis.yml
.travis.yml
sudo: false language: c env: - GHCVER=7.6.3 - GHCVER=7.8.4 - GHCVER=7.10.3 - GHCVER=8.0.2 - GHCVER=8.2.1 addons: apt: sources: - hvr-ghc packages: - ghc-7.6.3 - ghc-7.8.4 - ghc-7.10.3 - ghc-8.0.2 - ghc-8.2.1 - cabal-install-1.24 before_install: - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/1.24/bin:$PATH - ghc --version - cabal --version - travis_retry cabal update - sed -i 's/^jobs:/-- jobs:/' ${HOME}/.cabal/config - cabal install --enable-tests --only-dep script: - (cd ghci-wrapper && cabal configure --enable-tests --ghc-options=-Werror && cabal build && cabal test) - cabal configure --enable-tests --ghc-options=-Werror && cabal build && cabal test
sudo: false language: c matrix: include: - env: GHCVER=7.6.3 addons: apt: sources: - hvr-ghc packages: - ghc-7.6.3 - cabal-install-1.24 - env: GHCVER=7.8.4 addons: apt: sources: - hvr-ghc packages: - ghc-7.8.4 - cabal-install-1.24 - env: GHCVER=7.10.3 addons: apt: sources: - hvr-ghc packages: - ghc-7.10.3 - cabal-install-1.24 - env: GHCVER=8.0.2 addons: apt: sources: - hvr-ghc packages: - ghc-8.0.2 - cabal-install-1.24 - env: GHCVER=8.2.1 addons: apt: sources: - hvr-ghc packages: - ghc-8.2.1 - cabal-install-1.24 before_install: - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/1.24/bin:$PATH - ghc --version - cabal --version - travis_retry cabal update - sed -i 's/^jobs:/-- jobs:/' ${HOME}/.cabal/config - cabal install --enable-tests --only-dep script: - (cd ghci-wrapper && cabal configure --enable-tests --ghc-options=-Werror && cabal build && cabal test) - cabal configure --enable-tests --ghc-options=-Werror && cabal build && cabal test
Reduce Travis build time by only downloading specific GHCs.
Reduce Travis build time by only downloading specific GHCs. Previously, we were downloading all GHC versions every build! This should speed things up.
YAML
mit
sol/doctest,sol/doctest
f671fd9b23d85d0802d5ab8eca9844fc2c312a94
.travis.yml
.travis.yml
--- cache: bundler language: ruby rvm: - 2.3.6 - 2.4.4 - 2.5.1 - 2.6.0 - jruby-9.2.5.0
--- cache: bundler language: ruby rvm: - 2.3.8 - 2.4.6 - 2.5.5 - 2.6.3 - jruby-9.2.7.0
Use latest patch versions of Rubies
CI: Use latest patch versions of Rubies
YAML
mit
ttasanen/connection_pool,mperham/connection_pool
9d6c15bcf7b953b034e8f37892e4028ede14fe5f
.travis.yml
.travis.yml
language: ruby rvm: - "2.1.10" - "2.2.5" - "2.3.1" gemfile: - "gemfiles/rails4.2.gemfile" - "gemfiles/rails5.0.gemfile" matrix: exclude: - rvm: "2.1.10" gemfile: "gemfiles/rails5.0.gemfile"
language: ruby rvm: - "2.1.10" - "2.2.6" - "2.3.3" gemfile: - "gemfiles/rails4.2.gemfile" - "gemfiles/rails5.0.gemfile" matrix: exclude: - rvm: "2.1.10" gemfile: "gemfiles/rails5.0.gemfile"
Update Ruby versions on Travis to latest patch releases
Update Ruby versions on Travis to latest patch releases
YAML
mit
adamniedzielski/tiddle
39c152cc152e1a009e3fa2a4e1dcbd61da78fdab
.travis.yml
.travis.yml
language: ruby before_install: - gem install bundler -v '~> 1.5' rvm: - 2.2.6 - 2.3.3 - 2.4.0 - 2.4.1 bundler_args: --without debug deploy: provider: rubygems api_key: secure: JxDBiuSJgTyne4WriC56QqOhhl07ojHN/qZerKyxabBj1yQ/GmxlzcdvXdU6eUFJ1E3BvrfrMmraJ28xADm2hG3xgxkNP/D7jqTv0o0h2CODh+W2dr0iv3bNkoDOfjChNrJZCLPXJbuQp8G3O/KJS84g4l4dEIRIRTCS/0yMEBc= gem: correios_sigep on: repo: duduribeiro/correios_sigep
language: ruby before_install: - gem install bundler -v '~> 1.5' rvm: - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 bundler_args: --without debug deploy: provider: rubygems api_key: secure: JxDBiuSJgTyne4WriC56QqOhhl07ojHN/qZerKyxabBj1yQ/GmxlzcdvXdU6eUFJ1E3BvrfrMmraJ28xADm2hG3xgxkNP/D7jqTv0o0h2CODh+W2dr0iv3bNkoDOfjChNrJZCLPXJbuQp8G3O/KJS84g4l4dEIRIRTCS/0yMEBc= gem: correios_sigep on: repo: duduribeiro/correios_sigep
Upgrade ruby versions from tests
Upgrade ruby versions from tests
YAML
mit
duduribeiro/correios_sigep
edd7865844a0a6e993e7467e8b897e0fbf47e431
.travis.yml
.travis.yml
language: python python: - "2.7" # - "3.3" env: - DJANGO_VERSION=1.5.8 - DJANGO_VERSION=1.6.5 - DJANGO_VERSION=1.7.8 - DJANGO_VERSION=1.8.2 install: - pip install -r requirements.txt - pip install -q flake8 - pip install -q Django==$DJANGO_VERSION - python setup.py install before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: - pybot DjangoLibrary/tests/ - flake8 . after_script: - firefox --version
language: python python: - "2.7" # - "3.3" env: - DJANGO_VERSION=1.5.8 - DJANGO_VERSION=1.6.5 - DJANGO_VERSION=1.7.8 - DJANGO_VERSION=1.8.2 matrix: allow_failures: - DJANGO_VERSION: 1.7.8 install: - pip install -r requirements.txt - pip install -q flake8 - pip install -q Django==$DJANGO_VERSION - python setup.py install before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: - pybot DjangoLibrary/tests/ - flake8 . after_script: - firefox --version
Allow Django 1.7.8 tests to fail.
Allow Django 1.7.8 tests to fail.
YAML
apache-2.0
kitconcept/robotframework-djangolibrary
87a332b61e15027dda4d4599bc67ed346051b5ed
.travis.yml
.travis.yml
language: csharp solution: src/TeamCityTheatre.sln
language: csharp solution: src/TeamCityTheatre.sln mono: none dotnet: 1.0.4 dist: trusty script: - dotnet build
Configure Travis to use .NET Core
Configure Travis to use .NET Core
YAML
mit
amoerie/teamcity-theatre,amoerie/teamcity-theatre,amoerie/teamcity-theatre,amoerie/teamcity-theatre,amoerie/teamcity-theatre
c980719928e3f1f97b253ce5df5f351b6d8a0416
.travis.yml
.travis.yml
language: c env: - EnableNuGetPackageRestore=true before_install: # Make sure mono is installed, # pipe stdout to dev/null because qq is still too chatty - sudo apt-get update -qq > /dev/null - sudo apt-get install -qq mono-devel mono-gmcs > /dev/null # update root certs for nuget - mozroots --import --sync script: - .ci/build.sh #script: # - xbuild /property:Configuration=Debug /property:Platform="Any CPU" SteamBot.sln
language: c env: - EnableNuGetPackageRestore=true before_install: # Make sure mono is installed, # pipe stdout to dev/null because qq is still too chatty - sudo apt-get update -qq > /dev/null - sudo apt-get install -qq mono-devel mono-gmcs > /dev/null # update root certs for nuget - mozroots --import --sync - chmod a+x .ci/build.sh script: - .ci/build.sh #script: # - xbuild /property:Configuration=Debug /property:Platform="Any CPU" SteamBot.sln
Update build.sh to be executable on CI server
Update build.sh to be executable on CI server
YAML
mit
stigping/SteamBot,GAMELASTER/SteamBot,JackHarknes/Bot1,niachris/SteamBotNew,novasdream/SteamBot,ChalkyBrush/SteamBots,Alex-Nabu/CSGOWinBig-SteamBot,ChalkyBrush/SteamBots,BlueRaja/SteamBot,Murzyneczka/CSGOWinBig-SteamBot,novasdream/SteamBot,trervorx/SteamBot,Schwehn42/SteamBot,Bottswana/SteamBot,avoak/SteamBot,23RDGit/CSGOWinBig-SteamBot,StormReaper/SteamBot,MattrAus/SteamBot,JackHarknes/Bot1,TheRod1990/SteamBot,terryhau/SteamBot,23RDGit/CSGOWinBig-SteamBot,wqbill/SteamBot,icodingforfood/SteamBot,MadBender/SteamBot,trervorx/SteamBot,StormReaper/SteamBot,Moondarker/CSGOWinBig-SteamBot,stackia/SteamBot,zigagrcar/SteamTradeOffersBot,ztizzlegaming/CSGOWinBig-SteamBot,tarun200897/SteamBot,MattrAus/SteamBot,Banana23/Tryout,Bottswana/SteamBot,wowzone/gamerpro,Moondarker/CSGOWinBig-SteamBot,tarun200897/SteamBot,BuzzyOG/CSGOWinBig-SteamBot,fjch1997/SteamBot,zigagrcar/SteamTradeOffersBot,waylaidwanderer/SteamTradeOffersBot,TheRod1990/SteamBot,Banana23/Tryout,nuller1joe/SteamBot,xversial/SteamBot,GAMELASTER/SteamBot,ztizzlegaming/CSGOWinBig-SteamBot,GoeGaming/SteamBot,MadBender/SteamBot,icodingforfood/SteamBot,Murzyneczka/CSGOWinBig-SteamBot,BuzzyOG/CSGOWinBig-SteamBot,xversial/SteamBot,martingabriel/SteamBot,Schwehn42/SteamBot,stackia/SteamBot,Wendt9222/SteamBot-1,Wendt9222/SteamBot-1,wowzone/gamerpro,wqbill/SteamBot,JackHarknes/Bot1,avoak/SteamBot,stigping/SteamBot,niachris/SteamBotNew,fjch1997/SteamBot,Alex-Nabu/CSGOWinBig-SteamBot,martingabriel/SteamBot,GoeGaming/SteamBot,alanfort/CSGOWinBig-SteamBot,alanfort/CSGOWinBig-SteamBot,terryhau/SteamBot,Jessecar96/SteamBot,nuller1joe/SteamBot
3e3335674291d0ee28fbdda34e7f1fc046a642b3
.travis.yml
.travis.yml
language: ruby rvm: - 1.8 - 1.9 - 2.5 - ruby-head - jruby
language: ruby rvm: - 1.8 - 1.9 - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 - ruby-head - jruby
Test on different Ruby 2 versions
Test on different Ruby 2 versions
YAML
mit
DataWraith/ascii85gem
5e624e60ace50f3ebf1832cd26cc4086281f74c2
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error script: - bob build
sudo: false language: node_js node_js: - "0.11" - "0.10" - "0.12" - iojs before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error script: - bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Add 0.12 and iojs to CI run.
Add 0.12 and iojs to CI run.
YAML
mit
cliffano/bagofholding
0a0a9220ae4ddb1139b73d88e395d51cf62f03d1
.travis.yml
.travis.yml
--- # Verify this with: http://lint.travis-ci.org/ language: ruby # Delete dependency locks for matrix builds. before_install: rm Gemfile.lock || true script: bundle exec rake test rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.2.0 env: matrix: - PUPPET_VERSION="~> 3.8.5" - PUPPET_VERSION="~> 4.3.2" matrix: exclude: - rvm: 2.2.0 env: PUPPET_VERSION="~> 3.8.5" # Only notify for failed builds. notifications: email: on_success: never
--- # Verify this with: http://lint.travis-ci.org/ language: ruby # Delete dependency locks for matrix builds. before_install: rm Gemfile.lock || true script: bundle exec rake test rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.2.0 env: matrix: - PUPPET_VERSION="~> 3.8.5" - PUPPET_VERSION="~> 4.8.0" matrix: exclude: - rvm: 2.2.0 env: PUPPET_VERSION="~> 3.8.5" # Only notify for failed builds. notifications: email: on_success: never
Test on a newer minor version of puppet 4.
Test on a newer minor version of puppet 4.
YAML
mit
gds-operations/puppet-rbenv,gds-operations/puppet-rbenv
2f9661c30b929f5b4b63d46091c32fc843033837
.travis.yml
.travis.yml
--- language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 # - jruby-18mode # - jruby-19mode - ree env: - RAILS_VERSION="" - RAILS_VERSION="~>3.2.0" - RAILS_VERSION="~>3.1.0" - RAILS_VERSION="~>3.0.0" - RAILS_VERSION="" MONETA_VERSION="~> 0.6.0" - RAILS_VERSION="~>3.2.0" MONETA_VERSION="~> 0.6.0" - RAILS_VERSION="~>3.1.0" MONETA_VERSION="~> 0.6.0" - RAILS_VERSION="~>3.0.0" MONETA_VERSION="~> 0.6.0" - RAILS_VERSION="" MONETA_VERSION="~> 0.7.0" - RAILS_VERSION="~>3.2.0" MONETA_VERSION="~> 0.7.0" - RAILS_VERSION="~>3.1.0" MONETA_VERSION="~> 0.7.0" - RAILS_VERSION="~>3.0.0" MONETA_VERSION="~> 0.7.0" notifications: email: - [email protected]
--- language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 env: - RAILS_VERSION="" - RAILS_VERSION="~>3.2.0" - RAILS_VERSION="~>3.1.0" - RAILS_VERSION="~>3.0.0" - RAILS_VERSION="~>4.0.0.beta1" - RAILS_VERSION="" MONETA_VERSION="~> 0.6.0" - RAILS_VERSION="" MONETA_VERSION="~> 0.7.0" notifications: email: - [email protected]
Cut down what we test against, add tests for Ruby 2.0.0
Cut down what we test against, add tests for Ruby 2.0.0
YAML
mit
nikolai-b/rocket_pants,jsmestad/tradesman,Sutto/rocket_pants,Dealermade/rocket_pants,Pathgather/rocket_pants,CloudVLab/rocket_pants,michaelachrisco/rocket_pants,DamirSvrtan/rocket_pants
b16fb2bf4ba611b40c0ac18e4b0bc55669f47bc7
.travis.yml
.travis.yml
language: php sudo: false php: - 5.6 - 7.0 - 7.1 env: - SYMFONY_VERSION=3.2.* before_install: - composer self-update - composer require --no-update symfony/symfony "$SYMFONY_VERSION" install: - composer install --no-interaction --prefer-dist script: - ./vendor/bin/phpcs ./ -p --encoding=utf-8 --extensions=php --ignore=vendor --ignore=Tests --standard=./vendor/escapestudios/symfony2-coding-standard/Symfony2 - ./vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=coverage.xml after_success: - bash <(curl -s https://codecov.io/bash) cache: directories: - $COMPOSER_CACHE_DIR notifications: email: - [email protected]
language: php sudo: false php: - 5.6 - 7.0 - 7.1 env: - SYMFONY_VERSION=3.2.* - SYMFONY_VERSION=3.3.* before_install: - composer self-update - composer require --no-update symfony/symfony "$SYMFONY_VERSION" install: - composer install --no-interaction --prefer-dist script: - ./vendor/bin/phpcs ./ -p --encoding=utf-8 --extensions=php --ignore=vendor --ignore=Tests --standard=./vendor/escapestudios/symfony2-coding-standard/Symfony2 - ./vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=coverage.xml after_success: - bash <(curl -s https://codecov.io/bash) cache: directories: - $COMPOSER_CACHE_DIR notifications: email: - [email protected]
Add Symfony 3.3 to Travis.CI env
Add Symfony 3.3 to Travis.CI env
YAML
mit
fre5h/DoctrineEnumBundle
a36a64826f1e9468d5771a4caead1ee4b65e4676
.travis.yml
.travis.yml
language: haskell ghc: - 7.6 - 7.8 install: - cabal install happy # a "haskell-src-exts" implicit dependency workaround - cabal install --only-dependencies --enable-tests --enable-benchmarks --force-reinstalls script: - cabal configure --enable-tests --enable-benchmarks - cabal build - cabal test --show-details=always
language: haskell ghc: - 7.6 - 7.8 env: - transformers=0.2.* - transformers=0.4.* install: - cabal install "transformers == $transformers" - cabal install happy # a "haskell-src-exts" implicit dependency workaround - cabal install --only-dependencies --enable-tests --enable-benchmarks --force-reinstalls script: - cabal configure --enable-tests --enable-benchmarks - cabal build - cabal test --show-details=always
Update Travis to test older transformers
Update Travis to test older transformers
YAML
mit
nikita-volkov/hasql
5074e1502fe1a8af8ecccec70f4386ba3f8bc781
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - jruby-20mode
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 #- jruby-19mode #- jruby-20mode
Drop support of buggy JRuby 1.7.4
Drop support of buggy JRuby 1.7.4
YAML
mit
m4i/tee
96abbeee792aa89941ec3688db80a2c5cec1a0c0
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 before_script: - composer self-update - composer install --dev script: vendor/bin/phpunit --configuration phpunit.xml.dist
language: php php: - 5.3 - 5.4 before_script: - composer self-update - composer install --dev --no-interaction script: vendor/bin/phpunit --configuration phpunit.xml.dist
Disable Composr interaction to work around rate limits.
Disable Composr interaction to work around rate limits.
YAML
mit
rchouinard/rych-otp,Ennosuke/rych-otp
54136b1c96de85b702704d12605197ba7cf1d513
.travis.yml
.travis.yml
language: node_js node_js: - "5" - "5.1" - "4" - "4.2" - "4.1" - "4.0" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
language: node_js node_js: - "5" - "5.1" - "4" - "4.1" - "4.0" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
Remove Travis node version 4.2
Remove Travis node version 4.2 This brings the number of node versions down to 5, the limit for simultaneous travis builds for one project.
YAML
isc
cjlarose/argon2-ffi,cjlarose/argon2-ffi,cjlarose/argon2-ffi
4b3dd6370369310219cdc38d9c2ed1169ee28eca
.travis.yml
.travis.yml
language: ruby script: rake ci rvm: - 1.9.3 - 2.0 - 2.1 - ruby-head - jruby - jruby-head - rbx-2.1 - rbx-2.2 - rbx-2.3 gemfile: - Gemfile - Gemfile-jruby matrix: include: - rvm: jruby env: JRUBY_OPTS='--2.0' exclude: - rvm: 1.9.3 gemfile: Gemfile-jruby - rvm: 2.0 gemfile: Gemfile-jruby - rvm: 2.1 gemfile: Gemfile-jruby - rvm: ruby-head gemfile: Gemfile-jruby - rvm: jruby gemfile: Gemfile - rvm: jruby-head gemfile: Gemfile - rvm: rbx-2.1 gemfile: Gemfile-jruby - rvm: rbx-2.2 gemfile: Gemfile-jruby - rvm: rbx-2.3 gemfile: Gemfile-jruby allow_failures: - rvm: jruby - rvm: jruby-head - rvm: rbx-2.1 - rvm: rbx-2.2 - rvm: rbx-2.3
language: ruby script: rake ci rvm: - 1.9.3 - 2.0 - 2.1 - ruby-head - jruby - jruby-head - rbx-2.1 - rbx-2.2 - rbx-2.3 gemfile: - Gemfile - Gemfile-jruby matrix: include: - rvm: jruby env: JRUBY_OPTS='--2.0' exclude: - rvm: 1.9.3 gemfile: Gemfile-jruby - rvm: 2.0 gemfile: Gemfile-jruby - rvm: 2.1 gemfile: Gemfile-jruby - rvm: ruby-head gemfile: Gemfile-jruby - rvm: jruby gemfile: Gemfile - rvm: jruby gemfile: Gemfile env: JRUBY_OPTS='--2.0' - rvm: jruby-head gemfile: Gemfile - rvm: rbx-2.1 gemfile: Gemfile-jruby - rvm: rbx-2.2 gemfile: Gemfile-jruby - rvm: rbx-2.3 gemfile: Gemfile-jruby allow_failures: - rvm: jruby - rvm: jruby-head - rvm: rbx-2.1 - rvm: rbx-2.2 - rvm: rbx-2.3
Fix matrix excludes (again) (hopefully)
Fix matrix excludes (again) (hopefully)
YAML
mit
usmu/usmu,usmu/usmu
e5684fcda02c45d8884e90ab10a63ac05a168aa8
.travis.yml
.travis.yml
language: php sudo: true php: - 5.6 before_script: - mysql -e 'create database homestead_test;' # fix ipv6 issue that prevented composer requests and resulted in failing builds - sudo sh -c "echo 'precedence ::ffff:0:0/96 100' >> /etc/gai.conf" # updates composer on travis - travis_retry composer self-update # clear composer cache, might speed up finding new tags - travis_retry composer clear-cache # set the global github token, so connections won't be cancelled - composer config -g github-oauth.github.com $GITHUB_TOKEN - composer install --prefer-source --no-interaction - php artisan migrate:install - php artisan migrate:refresh --seed script: phpunit notifications: on_success: never on_failure: always
language: php sudo: true php: - 7.1 before_script: - mysql -e 'create database homestead_test;' # fix ipv6 issue that prevented composer requests and resulted in failing builds - sudo sh -c "echo 'precedence ::ffff:0:0/96 100' >> /etc/gai.conf" # updates composer on travis - travis_retry composer self-update # clear composer cache, might speed up finding new tags - travis_retry composer clear-cache # set the global github token, so connections won't be cancelled - composer config -g github-oauth.github.com $GITHUB_TOKEN - composer install --prefer-source --no-interaction - php artisan migrate:install - php artisan migrate:refresh --seed script: phpunit notifications: on_success: never on_failure: always
Update PHP version for Travis CI
Update PHP version for Travis CI
YAML
apache-2.0
MyGrades/mygrades-server,MyGrades/mygrades-server
69ae80b20d5b20b83d00899c2d326a7319c7143e
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 cache: directories: - $HOME/.m2 env: - DOCKER_COMPOSE_VERSION=1.24.0 install: mvn install -B before_script: - sudo rm /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin - docker-compose up -d - sleep 200 script: - cd int-tests - mvn test -B after_failure: - docker-compose logs after_success: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then docker push nels/trackfind:latest; fi; if [ -n "$TRAVIS_TAG" ]; then docker tag nels/trackfind:latest nels/trackfind:$TRAVIS_TAG; docker push nels/trackfind:$TRAVIS_TAG; fi
dist: trusty language: java jdk: - oraclejdk8 cache: directories: - $HOME/.m2 env: - DOCKER_COMPOSE_VERSION=1.24.0 install: mvn install -B before_script: - sudo rm /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin - docker-compose up -d - sleep 200 script: - cd int-tests - mvn test -B after_failure: - docker-compose logs after_success: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then docker push nels/trackfind:latest; fi; if [ -n "$TRAVIS_TAG" ]; then docker tag nels/trackfind:latest nels/trackfind:$TRAVIS_TAG; docker push nels/trackfind:$TRAVIS_TAG; fi
Add "dist: trusty" to fix Travis issues
Add "dist: trusty" to fix Travis issues
YAML
mit
elixir-no-nels/trackfind,elixir-no-nels/trackfind,elixir-no-nels/trackfind
a2dd1c57ff6e63236254b54d3751c868934ad2b3
.travis.yml
.travis.yml
language: node_js node_js: - '4.2' before_script: - npm install -g grunt-cli env: global: secure: aOSQkEeIGiLNcMucvVJF4mBpukVkDM0+UbiuX1dunk8tPQbfKlNEACyEZneMAYCDTJBT2wlujKVEIKMzaBsrUKRKPYZ5vi77X/DrowW+3pGF0r2AdYxJKNO3FEHxzCSYaVxusDtMT0ohsDBLwyPxjll8zu9PPfcUe6EIb+AWemQ= deploy: provider: npm email: [email protected] skip_cleanup: true api_key: secure: FjHI+CEzM1CqgynAdIZtd1XPpDEUOplHWOpKRa4epZxm6UK5x5uU1qN8BjntaRdpQyMHF8uhpf8VufWZFPiErymEz/kKa7IURQyL2rESaA39oB/xkXiNAxrxdIYgyM+vE3IgFXY1kaSYXqTXqdUHyb7mG9a2P8lwtSeAtQC0vzk= on: tags: true repo: the-grid/apidocs after_deploy: - grunt gh-pages
language: node_js node_js: - '0.12' before_script: - npm install -g grunt-cli env: global: secure: aOSQkEeIGiLNcMucvVJF4mBpukVkDM0+UbiuX1dunk8tPQbfKlNEACyEZneMAYCDTJBT2wlujKVEIKMzaBsrUKRKPYZ5vi77X/DrowW+3pGF0r2AdYxJKNO3FEHxzCSYaVxusDtMT0ohsDBLwyPxjll8zu9PPfcUe6EIb+AWemQ= deploy: provider: npm email: [email protected] skip_cleanup: true api_key: secure: FjHI+CEzM1CqgynAdIZtd1XPpDEUOplHWOpKRa4epZxm6UK5x5uU1qN8BjntaRdpQyMHF8uhpf8VufWZFPiErymEz/kKa7IURQyL2rESaA39oB/xkXiNAxrxdIYgyM+vE3IgFXY1kaSYXqTXqdUHyb7mG9a2P8lwtSeAtQC0vzk= on: tags: true repo: the-grid/apidocs after_deploy: - grunt gh-pages
Use 0.12 instead of 4.2
Travis: Use 0.12 instead of 4.2 Lots of errors about C++11 compiler deep down in a dep on 'bufferutils'
YAML
mit
the-grid/apidocs,the-grid/apidocs,the-grid/apidocs,the-grid/apidocs
05c7d37daf08fac57ad400ad0c900a4948a60d55
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "8" - "10" - "11"
language: node_js node_js: - "6" - "8" - "10" - "12" - "13"
Add node 12, 13 to test coverage matrix
Add node 12, 13 to test coverage matrix
YAML
mit
rexxars/registry-auth-token
3b72bf0f90d40efb0418ee5a61d0936b3f23dbd3
.travis.yml
.travis.yml
language: python python: - "2.7" cache: apt: true # TODO local node modules path correct? directories: - $HOME/.pip-cache/ - $HOME/.tox - /home/travis/virtualenv/python2.7 install: - echo 'Running installation in directory $PWD' - # Python - pip install -r dev-requirements.txt --download-cache $HOME/.pip-cache --use-mirrors - echo "Installed Python packages:" - pip freeze script: - tox - # Documentation # - make doc after_succes: coveralls
language: python python: - "2.7" cache: apt: true # TODO local node modules path correct? directories: - $HOME/.pip-cache/ - $HOME/.tox - /home/travis/virtualenv/python2.7 install: - echo 'Running installation in directory $PWD' - # Python - pip install -r dev-requirements.txt --cache-dir $HOME/.pip-cache --use-mirrors - echo "Installed Python packages:" - pip freeze script: - tox - # Documentation # - make doc after_succes: coveralls
Use new pip parameter name
Use new pip parameter name
YAML
mit
bbiskup/pytest-purkinje,bbiskup/pytest-purkinje
0d90bcad5e69052218c01ad91257ef4e49d25f9d
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - '0.10' - '0.12' - 'iojs' before_install: - "mkdir -p ~/.npm" before_script: - npm install -g grunt-cli istanbul codeclimate-test-reporter script: - grunt lint - istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec - CODECLIMATE_REPO_TOKEN=cdedf6138cfcd8a16492f5180f36a32789247baada76a55615a252fb04e916d5 codeclimate-test-reporter < coverage/lcov.info
language: node_js sudo: false node_js: - '0.10' - '0.12' - '4.0' - '4.1' - '5.0' before_install: - "mkdir -p ~/.npm" before_script: - npm install -g grunt-cli istanbul codeclimate-test-reporter script: - grunt lint - istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec - CODECLIMATE_REPO_TOKEN=cdedf6138cfcd8a16492f5180f36a32789247baada76a55615a252fb04e916d5 codeclimate-test-reporter < coverage/lcov.info
Update Travis build to include most recent version of Node
Update Travis build to include most recent version of Node
YAML
mit
hybridgroup/node-bebop
96e9c06aa1dfa527d4601d967bcc125d73aeecc5
.travis.yml
.travis.yml
--- language: python python: "2.7" env: - ANSIBLE_VERSION=1.9.2 install: # Install Ansible. - pip install ansible==$ANSIBLE_VERSION # Add ansible.cfg to pick up roles path. - printf "[defaults]\nroles_path=./" > ansible.cfg script: # TODO: once travis-ci includes an option to use CentOS, run the playbook for real. # Check the role/playbook's syntax. - ansible-playbook .tests/test.yaml -i .tests/inventory --syntax-check notifications: irc: channels: - "chat.freenode.net##phatypus" template: - "(%{repository_name}) %{build_number}: %{branch}@%{commit} %{author} -> %{message} %{build_url}" use_notice: true
--- language: python python: "2.7" env: - ANSIBLE_VERSION=2.1.2.0 install: # Install Ansible. - pip install ansible==$ANSIBLE_VERSION # Add ansible.cfg to pick up roles path. - printf "[defaults]\nroles_path=./" > ansible.cfg script: # TODO: once travis-ci includes an option to use CentOS, run the playbook for real. # Check the role/playbook's syntax. - ansible-playbook .tests/test.yaml -i .tests/inventory --syntax-check notifications: irc: channels: - "chat.freenode.net##phatypus" template: - "(%{repository_name}) %{build_number}: %{branch}@%{commit} %{author} -> %{message} %{build_url}" use_notice: true
Update the version of ansible used to test.
Update the version of ansible used to test.
YAML
mit
craighurley/ansible-roles,craighurley/ansible-roles
0bb7c539129316938b5dcc783faa390cb0a439f9
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.4 script: - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then python -m unittest discover; fi - if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then python -m unittest discover; fi
language: python python: - 2.7 - 3.4 install: - python setup.py install script: - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then python -m unittest discover; fi - if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then python -m unittest discover; fi
Add install instructions to Travis
Add install instructions to Travis
YAML
mit
jdkato/codetype,jdkato/codetype
a8152d3e0f3c66130b8565b192c80446c2dbc2ca
.travis.yml
.travis.yml
language: ruby sudo: required before_install: - sudo apt-get update - sudo apt-get install cups wicd - apt-cache search wicd script: bundle exec make
language: ruby sudo: required before_install: - sudo apt-get update - sudo apt-get install cups script: bundle exec make
Revert "Install & search wicd to check for wicd-cli"
Revert "Install & search wicd to check for wicd-cli" This reverts commit afba35acd48119552bda7ecea595be53aad4a7ef.
YAML
agpl-3.0
l0b0/travis-ci-helper,l0b0/travis-ci-helper
aa1909d4b2e1bc0fc2c547628d5c0d1bd0ec7cad
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - PROJECT=OAuthSwift.xcodeproj - IOS_FRAMEWORK_SCHEME="OAuthSwift" - MACOS_FRAMEWORK_SCHEME="OAuthSwiftOSX" - IOS_SDK=iphonesimulator10.0 - MACOS_SDK=macosx10.12 matrix: - DESTINATION="OS=10.0,name=iPhone 8" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" - DESTINATION="arch=x86_64" SCHEME="$MACOS_FRAMEWORK_SCHEME" SDK="$MACOS_SDK" before_install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail - xcodebuild -version - xcodebuild -showsdks - xcodebuild -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty; branches: only: - master
language: objective-c osx_image: xcode9 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - PROJECT=OAuthSwift.xcodeproj - IOS_FRAMEWORK_SCHEME="OAuthSwift" - MACOS_FRAMEWORK_SCHEME="OAuthSwiftOSX" - IOS_SDK=iphonesimulator11.0 - MACOS_SDK=macosx10.12 matrix: - DESTINATION="OS=11.0,name=iPhone 8" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" - DESTINATION="arch=x86_64" SCHEME="$MACOS_FRAMEWORK_SCHEME" SDK="$MACOS_SDK" before_install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail - xcodebuild -version - xcodebuild -showsdks - xcodebuild -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty; branches: only: - master
Switch CI to iOS 11
Switch CI to iOS 11
YAML
mit
OAuthSwift/OAuthSwift,dongri/OAuthSwift,dongri/OAuthSwift,OAuthSwift/OAuthSwift
c732dbfe3cad8ee524509515542adbd36a217a8a
.travis.yml
.travis.yml
language: android android: components: - build-tools-23.0.3 - android-23 - extra-android-m2repository - sys-img-armeabi-v7a-android-16 licenses: - 'android-sdk-license-.+' before_script: - echo no | android create avd --force -n test -t android-16 --abi armeabi-v7a - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
language: android android: components: - platform-tools - tools - build-tools-23.0.3 - android-23 - extra-android-m2repository - sys-img-armeabi-v7a-android-16 licenses: - 'android-sdk-license-.+' before_script: - echo no | android create avd --force -n test -t android-16 --abi armeabi-v7a - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
Fix build tools 23.0.3 is not found.
Fix build tools 23.0.3 is not found.
YAML
apache-2.0
kubode/Wiggle
72cd24024477ff2aabd4c703b68b66981c349a8c
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "iojs"
language: node_js node_js: - "0.10" - "0.12"
Remove Io.js from test targets
Remove Io.js from test targets
YAML
agpl-3.0
sgmap/ludwig-api
6064f26a52ac41a02b15a5ef4cc249fba9c6c38a
ansible/infra.yaml
ansible/infra.yaml
--- ##################### # Install Python ##################### - hosts: all gather_facts: false # As Python is not yet installed, we cannot gather host facts tasks: - name: Install Python raw: "apt-get -y -q install python" become: true ####################### # Setup K8s components ####################### - hosts: etcd roles: - common - etcd - hosts: controller roles: - common - controller - hosts: worker roles: - common - worker
--- ##################### # Install Python ##################### - hosts: all gather_facts: false # As Python is not yet installed, we cannot gather host facts tasks: - name: Install Python raw: "apt-get -y -q install python" become: true retries: 10 delay: 20 # If you run this playbook immediately after Terraform, ssh may not be ready to respond yet ####################### # Setup K8s components ####################### - hosts: etcd roles: - common - etcd - hosts: controller roles: - common - controller - hosts: worker roles: - common - worker
Add retry to install python, in case the playbook is run immediately after Terraform, when sshd is not yet ready to respond
Add retry to install python, in case the playbook is run immediately after Terraform, when sshd is not yet ready to respond
YAML
mit
nicusX/k8s-terraform-ansible-sample
7e041f5355ea02b7c4e099707d0adc584d484500
.travis.yml
.travis.yml
sudo: required language: go go: 1.9.x services: - docker before_install: - rvm install 2.4.2 - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt update - sudo apt -y install docker-ce - docker --version - docker pull wpscanteam/vulnerablewordpress - git clone https://github.com/wpscanteam/wpscan.git - cd wpscan - gem install bundler - bundle install --without test - sudo ln -s $(pwd)/wpscan.rb /usr/local/bin/wpscan - cd .. install: - make setup - make install script: - make test - docker ps | awk '{ print $13 }' | grep -o -P "(.*:\d+)" > vuln_targets.txt - docker ps -a - cat vuln_targets.txt - ./mass-wpscan -i vuln_targets.txt -p "-r --batch -e vt,tt,u,vp" -o output.txt after_success: - bash <(curl -s https://codecov.io/bash)
sudo: required language: go go: 1.9.x services: - docker before_install: - rvm install 2.4.2 - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt update - sudo apt -y install docker-ce - docker --version - docker pull wpscanteam/vulnerablewordpress - git clone https://github.com/wpscanteam/wpscan.git - cd wpscan - gem install bundler - bundle install --without test - sudo ln -s $(pwd)/wpscan.rb /usr/local/bin/wpscan - cd .. install: - make setup - make install script: - make test - docker ps | awk '{ print $13 }' | grep -o -P "(.*:\d+)" > vuln_targets.txt - docker ps -a - sleep 15 - cat vuln_targets.txt - ./mass-wpscan -i vuln_targets.txt -p "-r --batch -e vt,tt,u,vp" -o output.txt after_success: - bash <(curl -s https://codecov.io/bash)
Add sleep command to attempt to resolve the issue with vuln wp containers
Add sleep command to attempt to resolve the issue with vuln wp containers
YAML
mit
l50/mass-wpscan,l50/mass-wpscan
d54a4a60ec82ceae450eee366b229e28e7038927
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 1.9.2 - ruby-head env: - "CHEF_VERSION=11.4.0" - "CHEF_VERSION=10.24.0" - "CHEF_VERSION=0.10.10" - "CHEF_VERSION=0.9.18" - "CHEF_VERSION=0.8.16" - "CHEF_VERSION=0.7.16" matrix: allow_failures: - rvm: ruby-head
language: ruby rvm: - 1.9.3 - 1.9.2 - ruby-head env: - "CHEF_VERSION=11.4.0" - "CHEF_VERSION=10.24.0" - "CHEF_VERSION=0.10.10" - "CHEF_VERSION=0.9.18" matrix: allow_failures: - rvm: ruby-head
Revert "How far in Chef versions can we go?"
Revert "How far in Chef versions can we go?" This reverts commit 898c66ade87d381b65259321f53d333397777c1a.
YAML
mit
fnichol/searchef
d840cb9840610bad26364758e2e1bc111f0caac8
.circleci/web-values.yaml
.circleci/web-values.yaml
fullnameOverride: "web" replicaCount: 3 service: port: 3000 containers: - name: web image: cyberdojo/web resources: requests: cpu: 100m memory: 128Mi limits: cpu: 200m memory: 256Mi #livenessProbe: # path: /alive? # port: 3000 #readinessProbe: # path: /ready? # port: 3000 envFromSecret: {} nodeSelector: {} affinity: {} tolerations: []
fullnameOverride: "web" replicaCount: 3 service: port: 3000 containers: - name: web image: cyberdojo/web securityContext: runAsUser: 65534 # nobody fsGroup: 65534 # nobody allowPrivilegeEscalation: false resources: requests: cpu: 100m memory: 128Mi limits: cpu: 200m memory: 256Mi #livenessProbe: # path: /alive? # port: 3000 #readinessProbe: # path: /ready? # port: 3000 envFromSecret: {} nodeSelector: {} affinity: {} tolerations: []
Add explicit k8s securityContext entries
Add explicit k8s securityContext entries
YAML
bsd-2-clause
cyber-dojo/web,cyber-dojo/web,cyber-dojo/web,cyber-dojo/web
cf21ac8e1f68461b8ead51874f77c2f3c62a4ca5
.travis.yml
.travis.yml
--- sudo: false before_script: - git clone https://github.com/exercism/problem-specifications.git - bin/fetch-configlet - docker pull rakudo-star:latest script: - bin/configlet lint . - docker run -e EXERCISM=1 -t -v $PWD:/exercism rakudo-star prove /exercism -re perl6
--- sudo: false before_script: - git clone https://github.com/exercism/problem-specifications.git - bin/fetch-configlet - docker pull rakudo-star:latest script: - bin/configlet lint . - docker run --env EXERCISM=1 --volume $PWD:/exercism rakudo-star prove /exercism --exec perl6 --recurse --jobs 2
Use parallel jobs with prove
Use parallel jobs with prove
YAML
mit
mienaikage/exercism-perl6,mienaikage/exercism-perl6,exercism/xperl6,mienaikage/xperl6,mienaikage/exercism-perl6,mienaikage/xperl6,exercism/xperl6,exercism/xperl6,mienaikage/xperl6
cdd0db49b33eacede2c5a2853cc905f159540bb2
.travis.yml
.travis.yml
language: go os: - linux - osx go: - 1.3 - 1.4 - 1.5 - 1.6 - 1.7 - tip notifications: email: on_success: change on_failure: always
language: go os: - linux - osx go: - 1.3 - 1.4 - 1.5 - 1.6 - 1.7 - 1.8 - tip notifications: email: on_success: change on_failure: always
Test Go 1.8 with Travis
Test Go 1.8 with Travis
YAML
agpl-3.0
muesli/beehive,muesli/beehive
ea753a93b2c9563005b84c8762803c48c1cbd29e
.travis.yml
.travis.yml
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-debian-8 - INSTANCE=default-debian-9 - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 - INSTANCE=default-ubuntu-1804 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
Test Debian 8/9 and Ubuntu 18.04 in Travis
Test Debian 8/9 and Ubuntu 18.04 in Travis Signed-off-by: Tim Smith <[email protected]>
YAML
apache-2.0
chef-cookbooks/gems,opscode-cookbooks/gems,chef-cookbooks/gems,opscode-cookbooks/gems
822e8a9d13cfbb7c9be0d91dd6cd35b6d9e799a6
.travis.yml
.travis.yml
language: ruby rvm: - "1.9.2" - "1.9.3" - ruby-head - jruby-19mode - jruby-head - rbx-19mode
language: ruby rvm: - "1.9.2" - "1.9.3" - ruby-head - jruby-19mode - jruby-head - rbx-19mode matrix: allow_failures: - rvm: ruby-head
Allow ruby-head to fail (at least until Travis fixes it)
Allow ruby-head to fail (at least until Travis fixes it)
YAML
mit
abevoelker/nomen
0ecd55e79c00bbc6045ba7ab3e17dfb8588d515b
.travis.yml
.travis.yml
language: python sudo: required branches: only: - master services: - docker install: - docker pull jvarho/pylibscrypt script: - docker run -v ${PWD}:/app jvarho/pylibscrypt
language: python sudo: required branches: only: - master services: - docker install: - docker pull jvarho/pylibscrypt - pip install coveralls script: - docker run -v ${PWD}:/app jvarho/pylibscrypt after_success: - sed -i "s@/app@$TRAVIS_BUILD_DIR@g" .coverage - coveralls
Add coveralls integration now that all implementations are tested
Add coveralls integration now that all implementations are tested
YAML
isc
jvarho/pylibscrypt,jvarho/pylibscrypt
5775b46e023eecf7b5b7248760c0f7d0d1db3053
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: Build and publish to ECR on: workflow_dispatch: branches: - main push: branches: - main paths-ignore: - "Jenkinsfile" - ".git**" jobs: build-publish-image-to-ecr: uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main secrets: AWS_GOVUK_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_GOVUK_ECR_ACCESS_KEY_ID }} AWS_GOVUK_ECR_SECRET_ACCESS_KEY: ${{ secrets.AWS_GOVUK_ECR_SECRET_ACCESS_KEY }}
name: CI on: workflow_dispatch: branches: - main push: branches: - main paths-ignore: - "Jenkinsfile" - ".git**" jobs: build-and-publish-image: name: Build and publish image uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main secrets: AWS_GOVUK_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_GOVUK_ECR_ACCESS_KEY_ID }} AWS_GOVUK_ECR_SECRET_ACCESS_KEY: ${{ secrets.AWS_GOVUK_ECR_SECRET_ACCESS_KEY }} trigger-deploy-to-integration: name: Trigger deploy to integration needs: build-and-publish-image uses: alphagov/govuk-infrastructure/.github/workflows/deploy.yaml@main secrets: GOVUK_CI_GITHUB_API_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
Update CI workflow to trigger deploy to integration
Update CI workflow to trigger deploy to integration This adds an additional job to the CI workflow to run a reusable workflow that writes the newly built image tag to helm charts file. This triggers ArgoCD to deploy the integration.
YAML
mit
alphagov/publishing-api,alphagov/publishing-api
8f003dcb7058b1b6ce9e44266a0c29030c4509ef
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: Tests on: - push - pull_request env: GOPATH: ${{ github.workspace }}/go jobs: test-and-verify: runs-on: ubuntu-latest steps: - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.16 - uses: actions/checkout@v2 with: path: ${{ env.GOPATH }}/src/k8s.io/autoscaler - name: Apt-get run: sudo apt-get install libseccomp-dev -qq - name: Prepare working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler run: hack/install-verify-tools.sh env: GO111MODULE: auto - name: Verify working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler run: hack/verify-all.sh -v env: GO111MODULE: auto - name: Test working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler run: hack/for-go-proj.sh test env: GO111MODULE: auto
name: Tests on: - push - pull_request env: GOPATH: ${{ github.workspace }}/go jobs: test-and-verify: runs-on: ubuntu-latest steps: - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.17.5 - uses: actions/checkout@v2 with: path: ${{ env.GOPATH }}/src/k8s.io/autoscaler - name: Apt-get run: sudo apt-get install libseccomp-dev -qq - name: Prepare working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler run: hack/install-verify-tools.sh env: GO111MODULE: auto - name: Verify working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler run: hack/verify-all.sh -v env: GO111MODULE: auto - name: Test working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler run: hack/for-go-proj.sh test env: GO111MODULE: auto
Update github unittest checks to use go1.17
Update github unittest checks to use go1.17 CA no longer compiles on go1.16.
YAML
apache-2.0
mmerrill3/autoscaler,kubernetes/autoscaler,mmerrill3/autoscaler,kubernetes/autoscaler,mmerrill3/autoscaler,kubernetes/autoscaler,kubernetes/autoscaler,mmerrill3/autoscaler
9b4e3ce2dbf848305537b13da80f72a7346047ee
.travis.yml
.travis.yml
language: node_js node_js: - 7 - 8 cache: directories: - node_modules - public/components before_install: - npm i -g bower codecov istanbul install: - yarn - bower install script: - istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec - codecov - yarn run posttest notifications: slack: rooms: - araytek:B8Xevy6shC51ftn3tBiZR8fw on_success: change on_failure: always
language: node_js node_js: - 6 - 7 - 8 cache: directories: - node_modules - public/components before_install: - npm i -g bower codecov istanbul install: - yarn - bower install script: - istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec - codecov - yarn run posttest notifications: slack: rooms: - araytek:B8Xevy6shC51ftn3tBiZR8fw on_success: change on_failure: always
Update config of Travis CI
Update config of Travis CI
YAML
mit
osk2/gogo-cash-rebate,osk2/gogo-cash-back,osk2/gogo-cash-rebate
1c0a571091e00d18dbb585649ee937ca986c3bbb
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" before_install: - pip install codecov - pip install pytest-cov install: - "pip install -r requirements.txt" script: - "py.test -v --cov" after_success: - codecov
language: python python: - "2.6" - "2.7" before_install: - pip install codecov - pip install pytest-cov - pip install pytest-pep8 install: - "pip install -r requirements.txt" script: - "py.test -v --cov --pep8" after_success: - codecov
Add pep8 check with py.test
Add pep8 check with py.test
YAML
apache-2.0
criteo/netcompare,cpaillet/netcompare
bd4b6e184e005e193b3c5a49d5dacfb8486ddbae
.travis.yml
.travis.yml
language: java sudo: false dist: trusty addons: apt: packages: - oracle-java8-installer # Travis is running v8u31 which exposes problems with instrumentation of invokedynamic call sites. - oracle-java9-installer # JDK 9 is not currently installed by default. branches: only: - master matrix: include: - jdk: openjdk6 - jdk: oraclejdk7 env: TARGET=-Pjava7 -Pintegration - jdk: oraclejdk8 env: TARGET=-Pjava8 -Pintegration - jdk: oraclejdk9 env: TARGET=-Pjava9 # Findbugs cannot currently process Java 9 install: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V script: ./mvnw jacoco:prepare-agent verify jacoco:report $TARGET -Dnet.bytebuddy.test.travis=true -B -V after_success: - ./mvnw coveralls:report
language: java sudo: false branches: only: - master matrix: include: - jdk: openjdk6 - jdk: oraclejdk7 env: TARGET=-Pjava7 -Pintegration - jdk: oraclejdk8 env: TARGET=-Pjava8 -Pintegration #- jdk: oraclejdk9 # env: TARGET=-Pjava9 # Findbugs cannot currently process Java 9 install: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V script: ./mvnw jacoco:prepare-agent verify jacoco:report $TARGET -Dnet.bytebuddy.test.travis=true -B -V after_success: - ./mvnw coveralls:report
Remove Java 9 build for now.
Remove Java 9 build for now.
YAML
apache-2.0
DALDEI/byte-buddy,raphw/byte-buddy,CodingFabian/byte-buddy,raphw/byte-buddy,raphw/byte-buddy
566dd92b7d9b858bba37a339c32f51eb0b522132
.travis.yml
.travis.yml
--- language: node_js node_js: - "6" sudo: false dist: trusty addons: chrome: stable cache: yarn: true env: global: # See https://git.io/vdao3 for details. - JOBS=1 matrix: - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary - EMBER_TRY_SCENARIO=ember-default matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH - yarn global add greenkeeper-lockfile@1 install: - yarn install --no-lockfile --non-interactive before_script: greenkeeper-lockfile-update script: - yarn lint:js # Usually, it's ok to finish the test scenario without reverting # to the addon's original dependency state, skipping "cleanup". - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup after_script: greenkeeper-lockfile-upload
--- language: node_js node_js: - "6" sudo: false dist: trusty addons: chrome: stable cache: yarn: true env: global: # See https://git.io/vdao3 for details. - JOBS=1 matrix: - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary - EMBER_TRY_SCENARIO=ember-default matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-beta - env: EMBER_TRY_SCENARIO=ember-canary before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH - yarn global add greenkeeper-lockfile@1 install: - yarn install --no-lockfile --non-interactive before_script: greenkeeper-lockfile-update script: - yarn lint:js # Usually, it's ok to finish the test scenario without reverting # to the addon's original dependency state, skipping "cleanup". - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup after_script: greenkeeper-lockfile-upload
Allow ember-beta to fail tests
Allow ember-beta to fail tests Until a new version of ember-tether is published this test is going to continue failing so let's ignore that failure for now
YAML
mit
ilios/common,ilios/common
235a0d5e8b42b65c3446ec0a1cbf8dcdfbf19161
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm before_script: - composer install -n --dev --prefer-source script: vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm matrix: allow_failures: - php: hhvm before_script: - composer install -n --dev --prefer-source script: vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text
Add PHP 7.1 to the automated tests.
Add PHP 7.1 to the automated tests.
YAML
mit
thephpleague/omnipay-authorizenet,academe/omnipay-authorizenet
e29cfa54555874eba0269d0f60a1ab1f129e8b1a
.travis.yml
.travis.yml
dist: trusty language: python python: 2.7 cache: - apt - pip - directories: - ~/ediscovery-files # These files are huge! before_cache: - rm -rf ~/ediscovery-files/.git - rm -rf ~/ediscovery-files/assets/scale/randomTextDataZip addons: apt: sources: - sourceline: 'ppa:libreoffice/ppa' packages: - libtesseract-dev - tesseract-ocr-eng - imagemagick - poppler-utils - libreoffice - unoconv before_install: - curl https://raw.githubusercontent.com/dagwieers/unoconv/master/unoconv -o ~/unoconv && chmod +x ~/unoconv - eval $UNOCONV_BIN -vvv -l & - test -d ~/ediscovery-files/assets || git clone --depth=1 https://gitlab.com/dzmitry-lahoda/ediscovery-files.git ~/ediscovery-files env: global: - EXTRA_FIXTURES_PATH=~/ediscovery-files/assets - UNOCONV_BIN="/usr/bin/python3 $HOME/unoconv -s 0.0.0.0 -p 102002 -vvv" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: pip install -r requirements_dev.txt # command to run tests, e.g. python setup.py test script: make lint test
dist: trusty language: python python: 2.7 cache: - apt - pip - directories: - ~/ediscovery-files # These files are huge! before_cache: - rm -rf ~/ediscovery-files/.git - rm -rf ~/ediscovery-files/assets/scale/randomTextDataZip addons: apt: sources: - sourceline: 'ppa:libreoffice/ppa' packages: - libtesseract-dev - tesseract-ocr-eng - imagemagick - poppler-utils - libreoffice - unoconv before_install: - pip install -U pip setuptools - curl https://raw.githubusercontent.com/dagwieers/unoconv/master/unoconv -o ~/unoconv && chmod +x ~/unoconv - eval $UNOCONV_BIN -vvv -l & - test -d ~/ediscovery-files/assets || git clone --depth=1 https://gitlab.com/dzmitry-lahoda/ediscovery-files.git ~/ediscovery-files env: global: - EXTRA_FIXTURES_PATH=~/ediscovery-files/assets - UNOCONV_BIN="/usr/bin/python3 $HOME/unoconv -s 0.0.0.0 -p 102002 -vvv" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: pip install -r requirements_dev.txt # command to run tests, e.g. python setup.py test script: make lint test
Make sure pip and Co. are up-to-date.
Make sure pip and Co. are up-to-date.
YAML
mit
alephdata/ingestors
d42e881f72e0e7e32c8379bdc5aa8f320e691b9e
.travis.yml
.travis.yml
language: node_js node_js: - v7 - v6 after_script: - 'npm run coveralls'
language: node_js node_js: - v8 - v7 - v6 after_script: - 'npm run coveralls'
Test with Node 8 on Travis
Test with Node 8 on Travis
YAML
mit
foxbenjaminfox/vue-async-computed
e2bd14d4d842c63cf9f670af9e4d5122aa493cdd
.travis.yml
.travis.yml
language: android jdk: - oraclejdk8 android: components: - tools - platform-tools - tools - build-tools-25.0.2 - android-25 - extra-android-m2repository - sys-img-armeabi-v7a-android-18 licenses: - 'android-sdk-license-.+' before_script: - echo no | android create avd --force -n test -t android-16 --abi armeabi-v7a - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & 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/.android/build-cache
language: android jdk: - oraclejdk8 android: components: - tools - platform-tools - tools - build-tools-25.0.2 - android-25 - extra-android-m2repository licenses: - 'android-sdk-license-.+' before_script: - echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & 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/.android/build-cache
Change emulator version to 22.
Change emulator version to 22.
YAML
apache-2.0
kubode/Wiggle
ae37b354d726b77a054921b40c0505d1614ae30a
.travis.yml
.travis.yml
language: ruby env: - ARUBA_TIMEOUT=240 before_install: - gem update --system - gem update bundler - gem cleanup bundler cache: bundler rvm: - 2.1.5 - 2.2.4 - 2.3.0 - jruby-19mode branches: only: - master install: - "travis_retry bundle install --jobs 8" gemfile: - gemfiles/rails3.2.gemfile - gemfiles/rails4.1.gemfile - gemfiles/rails4.2.gemfile - gemfiles/rails5.0.gemfile matrix: fast_finish: true allow_failures: - rvm: jruby-19mode gemfile: gemfiles/rails5.0.gemfile - rvm: 2.1.5 gemfile: gemfiles/rails5.0.gemfile
language: ruby env: - ARUBA_TIMEOUT=240 before_install: - gem update --system - gem update bundler - gem cleanup bundler cache: bundler rvm: - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 branches: only: - master install: - "bundle install --retry 3 --jobs 8" gemfile: - gemfiles/rails3.2.gemfile - gemfiles/rails4.1.gemfile - gemfiles/rails4.2.gemfile - gemfiles/rails5.0.gemfile matrix: fast_finish: true allow_failures: - rvm: 2.1 gemfile: gemfiles/rails5.0.gemfile
Drop jruby & add modern Rubies to Travis config
Drop jruby & add modern Rubies to Travis config
YAML
mit
thoughtbot/factory_girl_rails,thoughtbot/factory_girl_rails
2d8c4263ae589dbe33873d6f64605344e486e524
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python # Use container based infrastructure sudo: false python: - 2.6 - 2.7 - 3.3 - 3.4 env: matrix: - DJANGO=1.4 CMD=./test - DJANGO=1.5 CMD=./test - DJANGO=1.6 CMD=./test - DJANGO=1.7 CMD=./test matrix: allow_failures: - python: 3.3 - python: 3.4 - env: CMD="flake8 aldryn_newsblog" exclude: - python: 2.6 env: DJANGO=1.7 CMS=./test fast_finish: true include: - python: 2.7 env: DJANGO=1.7 CMD="flake8 aldryn_newsblog" cache: directories: - $HOME/.wheelhouse install: - pip install -q -r "test_requirements/django-$DJANGO.txt" script: coverage run test_settings.py after_success: coveralls
# Config file for automatic testing at travis-ci.org language: python # Use container based infrastructure sudo: false python: - 2.6 - 2.7 - 3.3 - 3.4 env: matrix: - DJANGO=1.6 CMD=./test - DJANGO=1.7 CMD=./test matrix: allow_failures: - python: 3.3 - python: 3.4 - env: CMD="flake8 aldryn_newsblog" exclude: - python: 2.6 env: DJANGO=1.7 CMD=./test fast_finish: true include: - python: 2.7 env: DJANGO=1.7 CMD="flake8 aldryn_newsblog" cache: directories: - $HOME/.wheelhouse install: - pip install -q -r "test_requirements/django-$DJANGO.txt" script: coverage run test_settings.py after_success: coveralls
Remove testing for Django 1.5, 1.5
Remove testing for Django 1.5, 1.5
YAML
bsd-3-clause
mkoistinen/aldryn-newsblog,czpython/aldryn-newsblog,czpython/aldryn-newsblog,mkoistinen/aldryn-newsblog,mkoistinen/aldryn-newsblog,czpython/aldryn-newsblog,czpython/aldryn-newsblog
059cfddeb04adbca9ee229fff9e3b9302ac083c5
.travis.yml
.travis.yml
language: objective-c before_install: - gem install cocoapods --no-rdoc --no-ri --no-document --quiet - brew update - brew uninstall xctool && brew install xctool install: - pushd objc/VotingInformationProject && pod install - cp VotingInformationProject/CivicAPIKey.plist.template VotingInformationProject/CivicAPIKey.plist - cp VotingInformationProject/settings.plist.template VotingInformationProject/settings.plist script: - xctool -workspace VotingInformationProject.xcworkspace -scheme VotingInformationProject -configuration Debug -sdk iphonesimulator -arch i386 test - popd - ./scripts/ci/check_copyright.sh
language: objective-c before_install: # Cocoapods expects UTF-8 terminal and throws warning - export LANG=en_US.UTF-8 - gem install cocoapods --no-rdoc --no-ri --no-document --quiet - brew update # Faster than uninstall + install - brew upgrade xctool install: - pushd objc/VotingInformationProject && pod install - cp VotingInformationProject/CivicAPIKey.plist.template VotingInformationProject/CivicAPIKey.plist - cp VotingInformationProject/settings.plist.template VotingInformationProject/settings.plist script: - xctool -workspace VotingInformationProject.xcworkspace -scheme VotingInformationProject -configuration Debug -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO clean build test - popd - ./scripts/ci/check_copyright.sh
Update xctool args to clean+build+test
Update xctool args to clean+build+test Something in build #184 broke the travis CI with 'simulator failed to start errors. Likely the Localizable.strings update. Updating the xctool flags and forcing a clean/build/test cycle seemed to fix the issue.
YAML
bsd-3-clause
votinginfoproject/ios7-white-label-app,votinginfoproject/ios7-white-label-app
11f082ee41e83b6a01ac519aa190bdd59a90e8ce
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.2 - 2.2.1 - 2.2.0 - 2.1.6
language: ruby rvm: - 2.3.0 - 2.2.4 - 2.1.8
Update ruby versions for Travis CI
Update ruby versions for Travis CI
YAML
mit
rhynix/allowing
b032147387782b81a63c5c0b97f63668d27800dd
.travis.yml
.travis.yml
language: python python: - '2.7' - '3.3' - '3.4' env: global: - DB=postgres matrix: - DJANGO=1.6.5 install: - pip install -q coveralls coverage flake8 Django==$DJANGO before_script: - psql -c 'CREATE DATABASE {{ project_name }};' -U postgres script: - flake8 . - coverage run setup.py test - coverage report --fail-under=100 after_success: coveralls
language: python python: - '2.7' - '3.3' - '3.4' env: global: - DB=postgres matrix: - DJANGO=1.6.5 install: - pip install -q coveralls coverage flake8 Django==$DJANGO - pip install -r requirements/docs.txt before_script: - psql -c 'CREATE DATABASE {{ project_name }};' -U postgres script: - flake8 . - coverage run setup.py test - coverage report --fail-under=100 - python setup.py install - cd docs && make html after_success: coveralls
Build docs as part of CI
Build docs as part of CI
YAML
mit
ambitioninc/django-app-template
a06ec8c19a440005f887cd9db9190b0de002dd28
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" notifications: email: false
language: node_js node_js: - '0.11' notifications: email: false deploy: provider: npm email: [email protected] api_key: secure: EqXvpuo2H5o4GnS/UbeweWwGe6D3XVAfKxkA2mET1dL9UhuTH15gB2mPVbqkzbxrWceD0qPpmvcLnLmuPJXTTCjJtEVFPvoN3gagj47N3gdccaWkzWQFtihyex6WSw7g+1CxHmZbZfzf4KuMv58RPkCyk7U3O4fNwejw4oS/rUmpos8SOLWqp3FMPVES5sIaI5iM0cxuj2mTUAqAzy2ooWsPQPV0TmFVbhXtzNCNKjLmflBMsmL8l+VIgbImTPDnFHS0ihWTCCUraHd33lEQT9nGnXw0on+0JSYJ6zAIplBsn3pBzZuUP1yLNMK+nKnkbsyDoLmivVN6xvpfOK/dsCIWoDwh0tLzqvNxMAkvkfpDrYjjbwYtqLpfk6HT7gBq01gkyHVuhl0w0N/qQF3CHCFVSRtPMvVCaWyW1WfKqTzv9I+0UU6si0iJ6cCj3jR8w2qzEE/GJS/gkPnjqMvzZJ62DFa8WIyRP1w6idLOrLabXhRNssFybzUbVoxkRxN5u9+51diT/2923FKTRTrEou95l8FzSvVLHOvx9gvrYiwZ7ms6dtvL3m/acbBU1w3DJ2kcXtb44F1oFQrJSrfuTc0jZizeGrJrBmWbjkJ9BdCjPe9BkW4/B0+pxkD7iDFyQ94w715tepDA/deJ2bCcqKBXN+j3KCJDhI4npVojFQY= on: tags: true repo: waynegraham/hubot-memes
Automate npm deployments on tags
Automate npm deployments on tags
YAML
mit
waynegraham/hubot-memes
14f83effabd2d5fbec15a86be8a3863265e8d41c
.travis.yml
.travis.yml
language: python python: "2.7" script: - "python setup.py test" after_script: - sudo apt-get update -qq - sudo apt-get install -yy ansible - config/deploy notifications: irc: "irc.freenode.org#takeyourmeds"
language: python python: "2.7" before_install: - sudo apt-get update -qq - sudo apt-get install -y ansible script: - "python setup.py test" after_script: - config/deploy notifications: irc: "irc.freenode.org#takeyourmeds"
Put these earlier - for caching?
Put these earlier - for caching?
YAML
mit
takeyourmeds/takeyourmeds-web,takeyourmeds/takeyourmeds-web,takeyourmeds/takeyourmeds-web,takeyourmeds/takeyourmeds-web
7de2417c9a99990d7b53e429e7113aa3feda46b2
.travis.yml
.travis.yml
rvm: - 1.9.3 - jruby before_script: - "pushd ruby && gem install bundler && bundle && popd" script: "make travis" notifications: email: - [email protected] irc: - "irc.freenode.org#cucumber"
rvm: - 1.9.3 - jruby before_script: - "pushd ruby && gem install bundler && bundle && popd" script: "make travis" branches: only: - master - /^issue.*$/ - /^fix.*$/ notifications: email: - [email protected] irc: - "irc.freenode.org#cucumber"
Build issue and fix branches
Build issue and fix branches
YAML
mit
cucumber/bool,cucumber/bool,cucumber/bool,cucumber/bool,cucumber/bool,cucumber/bool
c014a64b116096039999d4e3e5d8d72232589f72
.travis.yml
.travis.yml
language: php sudo: false php: - 7.1 - 7.2 env: global: - coverage=no matrix: - setup=basic - setup=lowest - setup=stable before_script: - travis_retry composer self-update - composer config discard-changes true - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi - if [[ $setup = 'coveralls' ]]; then travis_retry composer require "php-coveralls/php-coveralls=^2.1" --prefer-dist --no-interaction --dev; fi script: - if [[ $coverage = 'yes' ]]; then vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi - if [[ $coverage = 'no' ]]; then vendor/bin/phpunit -c phpunit.xml --testdox --verbose; fi after_script: - if [[ $setup = 'coveralls' ]]; then php vendor/bin/php-coveralls -v; fi matrix: include: - php: 7.1 env: setup=coveralls coverage=yes allow_failures: - env: setup=coveralls coverage=yes fast_finish: true
language: php sudo: false php: - 7.1 - 7.2 - 7.3 - nightly env: global: - coverage=no matrix: - setup=basic - setup=lowest - setup=stable before_script: - travis_retry composer self-update - composer config discard-changes true - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi - if [[ $setup = 'coveralls' ]]; then travis_retry composer require "php-coveralls/php-coveralls=^2.1" --prefer-dist --no-interaction --dev; fi script: - if [[ $coverage = 'yes' ]]; then vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi - if [[ $coverage = 'no' ]]; then vendor/bin/phpunit -c phpunit.xml --testdox --verbose; fi after_script: - if [[ $setup = 'coveralls' ]]; then php vendor/bin/php-coveralls -v; fi matrix: include: - php: 7.1 env: setup=coveralls coverage=yes allow_failures: - env: setup=coveralls coverage=yes fast_finish: true
Update test to run against php 7.3 and nightly
Update test to run against php 7.3 and nightly Signed-off-by: Mior Muhammad Zaki <[email protected]>
YAML
mit
laravie/html