commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringclasses
277 values
license
stringclasses
13 values
repos
stringlengths
5
127k
2f696f69ccb54b5b0ccf2839504b1a49688db7f5
.travis.yml
.travis.yml
language: php # use the new container infrastructure #sudo: false php: - "5.5" - "5.4" - "5.3" - '7.0' - '7.1' cache: directories: - vendor before_script: - composer self-update - composer update --prefer-source script: - ./bin/phpspec run
language: php # use the new container infrastructure #sudo: false php: - '7.1' cache: directories: - vendor before_script: - composer self-update - composer update --prefer-source script: - ./bin/phpspec run
Drop support of older PHP versions
Drop support of older PHP versions
YAML
mit
akeneo/php-coupling-detector,nidup/coupling-detector
f9b8b008793e85f2d033fbdcc2d5629c22f31aaa
.travis.yml
.travis.yml
language: android android: components: - tools - platform-tools - build-tools-24.0.2 - android-25 script: - ./gradlew build connectedCheck
language: android jdk: oraclejdk8 android: components: - tools - platform-tools - build-tools-24.0.2 - android-25 script: - ./gradlew build connectedCheck
Add Jdk 8 for Travis
Add Jdk 8 for Travis
YAML
apache-2.0
ExpensiveBelly/Dagger2RetainGraph
9581a1c013bc17837b1fb7b3121a46b730145a74
.travis.yml
.travis.yml
sudo: required dist: trusty language: cpp script: - mkdir debug && cd debug - cmake -DCMAKE_CXX_COMPILER=$COMPILER .. && make - cd .. && ./bin/run-tests # Handle git submodules by ourselves. git: submodules: false # Use sed to replace the SSH URL with the public URL, then initialize submodules. before_ins...
sudo: required dist: trusty language: cpp script: - mkdir debug && cd debug - cmake -DCMAKE_CXX_COMPILER=$COMPILER .. && make - cd .. && ./bin/run-tests # Handle git submodules by ourselves. git: submodules: false # Use sed to replace the SSH URL with the public URL, then initialize submodules. before_ins...
Install json rpc on CI
Install json rpc on CI
YAML
apache-2.0
tinganho/l10ns,tinganho/l10ns,tinganho/l10ns
3d14d89a483cace1bb326beb56c4a82d01a68442
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.3.3 - 2.4.0 before_install: gem install bundler -v 1.14.6
language: ruby sudo: false cache: bundler services: - redis-server before_install: - gem install bundler - gem update bundler rvm: - 2.3.3 - 2.4.0
Add redis to travicCI build to fix failing builds
Add redis to travicCI build to fix failing builds
YAML
mit
ualbertalib/pushmi_pullyu,ualbertalib/pushmi_pullyu,murny/pushmi_pullyu,murny/pushmi_pullyu
1ec36d70d9541b618544b8ca62913f4d4541a24e
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - hhvm sudo: false install: travis_retry composer install --no-interaction --prefer-source script: phpunit after_script: wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/coverage/coverage.clover
language: php php: - 5.5 - 5.6 - 7.0 - hhvm sudo: false install: travis_retry composer install --no-interaction --prefer-source script: ./vendor/bin/phpunit after_script: wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/coverage/coverage.clover
Call the vendored phpunit binary
Call the vendored phpunit binary
YAML
mit
dshafik/guzzlehttp-vcr
1831e6dfabd28f86716a3dfe17333dbd75d9a380
.travis.yml
.travis.yml
language: ruby script: "bundle exec rake test" rvm: - 1.9.3 - 2.0.0 - 2.1.2 - 2.2.0
language: ruby script: "bundle exec rake test" rvm: - 1.9.3 - 2.0.0 - 2.1.6 - 2.2.2
Update patch version for ruby
Update patch version for ruby
YAML
mit
jhund/filterrific,jhund/filterrific
76390dcd8eb5d9bc2b3921a1814c814facd61beb
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 matrix: fast_finish: true services: - memcached before_script: - sudo locale-gen fr_FR fr_FR.UTF-8 - locale -a - echo "extension = zmq.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - printf "yes\nyes\nno\nyes\n" | pecl install pecl_http - ech...
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 matrix: fast_finish: true services: - memcached before_script: - sudo locale-gen fr_FR fr_FR.UTF-8 - locale -a - echo "extension = zmq.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - printf "yes\nyes\nno\nyes\n" | pecl install pecl_http...
Enable test on PHP 5.6
Enable test on PHP 5.6
YAML
lgpl-2.1
photon/session-memcached
40a9bdbaf1f8627fad94d544c9fa4f7e1a2cd871
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" before_script: - npm install -g grunt-cli - npm install -g bower - npm install - bower install
language: node_js node_js: - "0.10" before_script: - npm install -g grunt-cli bower - npm install - bower install
Install global npm modules in Travis CI in one line
Install global npm modules in Travis CI in one line
YAML
mit
use-init/init,use-init/init,use-init/use-init.github.io,epicenterbitcoin/lower-third-generator,epicenterbitcoin/lower-third-generator
0111ed72471a6f4feb6718956a842fca570810a6
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 script: "mvn cobertura:cobertura" after_success: - bash <(curl -s https://codecov.io/bash)
language: java jdk: - openjdk script: "mvn cobertura:cobertura" after_success: - bash <(curl -s https://codecov.io/bash)
Replace Oracle JDK with Open JDK
Replace Oracle JDK with Open JDK
YAML
apache-2.0
armenak/DataDefender,armenak/DataDefender
1b9a38b9e4440f04167fa63a3cdca2193553fd66
.travis.yml
.travis.yml
sudo: false language: node_js node_js: stable install: - npm install -g bower grunt-cli - npm install phantomjs-prebuilt - npm install - bower install - gem install compass - bower list - npm list script: - grunt test - grunt build - SCRIPTS_FN=`ls dist/scripts/scripts*.js` - sed "s/WENFO_GOOGLE_M...
sudo: false language: node_js node_js: 7 install: - npm install -g bower grunt-cli - npm install phantomjs-prebuilt - npm install - bower install - gem install compass - bower list - npm list script: - grunt test - grunt build - SCRIPTS_FN=`ls dist/scripts/scripts*.js` - sed "s/WENFO_GOOGLE_MAPS_A...
Revert to older nodejs for builds
Revert to older nodejs for builds
YAML
bsd-2-clause
ANU-WALD/aus-env,ANU-WALD/aus-env,ANU-WALD/aus-env,ANU-WALD/aus-env
4f42b60892ca7000c38d10773265e9e20ed442ac
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12"
language: node_js node_js: - "0.10" - "0.12" - "4" - "5" - "6"
Test on all major Node.js versions
Test on all major Node.js versions
YAML
mit
101100/nmea-simple
b90d4bd5768e19c28fa94ee8ea32c880d6f679ac
.travis.yml
.travis.yml
language: go go: - release - tip sudo: false before_install: - gotools=golang.org/x/tools - if [ "$TRAVIS_GO_VERSION" = "release" ]; then gotools=code.google.com/p/go.tools; fi install: - go get -d -t -v ./... - go get -v $gotools/cmd/cover - go get -v $gotools/cmd/vet - go get -v github.com/bradfitz/go...
language: go go: - 1.3.3 - 1.4.1 sudo: false before_install: - gotools=golang.org/x/tools - if [ "$TRAVIS_GO_VERSION" = "release" ]; then gotools=code.google.com/p/go.tools; fi install: - go get -d -t -v ./... - go get -v $gotools/cmd/cover - go get -v $gotools/cmd/vet - go get -v github.com/bradfitz/go...
Update Go versions for Travis.
Update Go versions for Travis.
YAML
isc
btcsuite/btcsim,jcvernaleo/btcsim,btcsuite/btcsim,aakselrod/btcsim,jcvernaleo/btcsim,aakselrod/btcsim
572e2726a348d460ce18676cbd8da97727786f13
.travis.yml
.travis.yml
language: php services: - mysql sudo: false php: - 7.3 matrix: fast_finish: true branches: only: - master cache: directories: - $HOME/.composer/cache notifications: email: false slack: secure: jkZDWqI+za7mMP1RnozFmsB6SM2THjp59elBEpMrewjG270NpCdB2fCc2XFSeHVJ1vyPax/Q139CsWhctpD4smA4An1GmT...
language: php services: - mysql sudo: false php: - 7.3 matrix: fast_finish: true branches: only: - master cache: directories: - $HOME/.composer/cache notifications: email: false slack: secure: jkZDWqI+za7mMP1RnozFmsB6SM2THjp59elBEpMrewjG270NpCdB2fCc2XFSeHVJ1vyPax/Q139CsWhctpD4smA4An1GmT...
Put composer update 1 on place
Put composer update 1 on place
YAML
bsd-3-clause
OpenBuildings/promotions
0785fa5bb118245dd2ad0d4879ea706e38d48b18
.travis.yml
.travis.yml
language: node_js node_js: - '4' - '0.12' - '0.10' - '0.8' before_install: - 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@2.12.1; fi'
language: node_js node_js: - '5' - '4' - '0.12' - '0.10' - '0.8' before_install: - 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@2.12.1; fi'
Add Node.js v5 to Travis-CI test matrix
Add Node.js v5 to Travis-CI test matrix
YAML
mit
watson/stackman
ff10da738fdd44d7c34ec68b8967b43bd2876602
.travis.yml
.travis.yml
language: python sudo: false install: - 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 --set show_channel_urls yes ...
language: python sudo: false install: - 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 --set show_channel_urls yes ...
Make sure the tests in Travis can import py_solve
Make sure the tests in Travis can import py_solve
YAML
bsd-3-clause
ergs/transmutagen,ergs/transmutagen
a17cfd21e46b131af94270e2e59870f859363b99
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" install: - travis_retry pip install -r requirements/dev.txt --use-mirrors - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install ordereddict futures; fi - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install futures; fi - if...
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" install: - travis_retry pip install -r requirements/dev.txt --use-mirrors - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install ordereddict futures mock; fi - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install futures; fi ...
Install mock for pytohn 2.6
Install mock for pytohn 2.6
YAML
bsd-3-clause
alexmojaki/flower,raphaelmerx/flower,allengaller/flower,pj/flower,ucb-bar/bar-crawl-web,raphaelmerx/flower,Lingling7/flower,allengaller/flower,jzhou77/flower,lucius-feng/flower,tellapart/flower,lucius-feng/flower,asmodehn/flower,jzhou77/flower,alexmojaki/flower,tellapart/flower,pygeek/flower,barseghyanartur/flower,alle...
a3771c6eaad594a7a421391b23da2a654e11e48f
.travis.yml
.travis.yml
sudo: false # run on docker infrastructure rvm: # - 1.9.2 - 1.9.3 - 2.1.7 - 2.2.3 # - jruby-19mode # - jruby-18mode # - rbx # - ruby-head env: - "RAILS_VERSION=3.1" - "RAILS_VERSION=3.2" - "RAILS_VERSION=4.0" - "RAILS_VERSION=4.1" - "RAILS_VERSION=4.2" matrix: exclude: - rvm: 2.2.3 ...
sudo: false # run on docker infrastructure rvm: # - 1.9.2 - 1.9.3 - 2.1.7 - 2.2.3 - 2.3.0 # - jruby-19mode # - jruby-18mode # - rbx # - ruby-head env: - "RAILS_VERSION=3.1" - "RAILS_VERSION=3.2" - "RAILS_VERSION=4.0" - "RAILS_VERSION=4.1" - "RAILS_VERSION=4.2" matrix: exclude: - rvm...
Add ruby 2.3 to build matrix
Add ruby 2.3 to build matrix
YAML
bsd-3-clause
librato/librato-rails,librato/librato-rails,librato/librato-rails
8da51f8a14ac92a16d16f157ae301ce6b577e079
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.3.1 - 2.4 - 2.5 before_install: - travis_retry gem update --system || travis_retry gem update --system 2.7.8 - travis_retry gem install bundler --no-document || travis_retry gem install bundler --no-document -v 1.17.3
sudo: false language: ruby cache: bundler rvm: - 2.3.1 - 2.4 - 2.5 - 2.6 before_install: gem install bundler --no-document -v 2.0.1
Add ruby 2.6 on Travis CI
Add ruby 2.6 on Travis CI
YAML
mit
iberianpig/fusuma,iberianpig/fusuma
3d1521011cf810bf1cd7a10403f34156bb82fa7f
.travis.yml
.travis.yml
language: php addons: apt: packages: - libonig-dev php: - 7.1 - 7.2 - 7.3 - 7.4snapshot env: matrix: - DRIVER="phpdbg" - DRIVER="xdebug" before_install: - composer clear-cache install: - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest script: ...
language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot env: matrix: - DRIVER="phpdbg" - DRIVER="xdebug" before_install: - composer clear-cache install: - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest script: - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr ...
Revert "Fix: Work around build failures on PHP 7.4"
Revert "Fix: Work around build failures on PHP 7.4" This reverts commit e492de084a6e2612368b9060bb6d4bb63f2f4410.
YAML
bsd-3-clause
sebastianbergmann/environment
d90ba933516708f1cae75021ad457c309cd3f6d8
.travis.yml
.travis.yml
language: bash services: docker env: - POSTGIS_MAJOR=2.3 POSTGIS_VERSION=2.3.3+dfsg-1.pgdg90+1 PG_MAJOR=9.5 VARIANT=slim - POSTGIS_MAJOR=2.3 POSTGIS_VERSION=2.3.3+dfsg-1.pgdg90+1 PG_MAJOR=9.6 VARIANT=slim - POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=10.3 VARIANT=slim script: - ./scripts/...
language: bash services: docker env: - POSTGIS_MAJOR=2.3 POSTGIS_VERSION=2.3.3+dfsg-1.pgdg90+1 PG_MAJOR=9.5 VARIANT=slim - POSTGIS_MAJOR=2.3 POSTGIS_VERSION=2.3.3+dfsg-1.pgdg90+1 PG_MAJOR=9.6 VARIANT=slim - POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=10.3 VARIANT=slim - POSTGIS_MAJOR=2.4 P...
Add PostGIS 2.4 / PostgreSQL 10.6 to build matrix
Add PostGIS 2.4 / PostgreSQL 10.6 to build matrix Co-Authored-By: rbreslow <9d1d0c629ec8d2fb635bdb06b96a3201608812c5@azavea.com>
YAML
apache-2.0
azavea/docker-postgis
51cd8af78f41474fd9e161dcd716899941419849
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1.7 - 2.2.4 - 2.3.0 - jruby-19mode - jruby-9.0.0.0 script: bundle exec rake ci sudo: false cache: bundler
language: ruby rvm: - 2.0.0 - 2.1.7 - 2.2.4 - 2.3.0 - jruby-19mode - jruby-9.0.0.0 before_install: gem update bundler script: bundle exec rake ci sudo: false cache: bundler
Fix failures on Travis CI
Fix failures on Travis CI
YAML
mit
yujinakayama/rspec-composable_json_matchers
af6aee940db347815ed4671ae33d3fd859f75e67
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" # Handle git submodules yourself git: submodules: false install: - sudo apt-get update -qq - sudo apt-get install -qq gdal-bin libgdal-dev libgdal1h libgdal1-dev libgeos-dev - "pip install ." - "pip install GDAL==1.10.0 --global-option=build_ext --global-option...
language: python python: - "2.7" - "3.4" # Handle git submodules yourself git: submodules: false # Use system wide packages, needed for gdal virtualenv: system_site_packages: true install: - sudo apt-get update -qq - sudo apt-get install python-gdal python3-gdal - "pip install ." script: "python tes...
Make Travis install python-gdal and python3-gdal in system wide packages and use them for the tests.
Make Travis install python-gdal and python3-gdal in system wide packages and use them for the tests.
YAML
mit
jachym/PyWPS,geopython/pywps,jonas-eberle/pywps,tomkralidis/pywps,ricardogsilva/PyWPS,bird-house/PyWPS,SiggyF/pywps-4,ldesousa/PyWPS
8d3c7b538e0e2a505333f297c9a1e869b6b456fa
.travis.yml
.travis.yml
language: python install: - pip install -r requirements.txt - pip install tox script: tox
language: python python: - "2.7" - "3.5" install: - pip install -r requirements.txt - pip install tox script: tox
Add Python 3.5 to Travis
Add Python 3.5 to Travis
YAML
agpl-3.0
lamyj/redmill,lamyj/redmill,lamyj/redmill
31b83a5fe8d0f30664f0e10c6ec62b6738a5cbd4
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm before_script: - travis_retry composer self-update - travis_retry composer install --prefer-source --no-interaction script: - composer test
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - nightly - hhvm before_script: - travis_retry composer self-update - travis_retry composer install --prefer-source --no-interaction script: - composer test
Enable testing against PHP nightly
Enable testing against PHP nightly
YAML
mit
raphaelstolt/json-merge-patch
fccaf4c85fd7ab9a68e1b71e904a2452285c455c
.travis.yml
.travis.yml
sudo: false language: node_js cache: directories: - node_modules node_js: - '0.11' - '0.10' notifications: slack: rooms: - secure: Z0uu1uGNK1R9ADq8VyMMqQgZ6WBnLZw2RUEsIQyVpR6JKEMdyZ8VNVvYY+WGLPN6HV1VuwBrAX4wAR6944QbPvP5+9pxYmc8fiMuBRefQdPV395I0DTnJIVrdolk7ZTsN8+FSW6iKHfccV/4/zPxlWBFZiYu1kSJUUO3tLimvJ8= ...
sudo: false language: node_js cache: directories: - node_modules node_js: - 'iojs' - '0.12' - '0.11' - '0.10' notifications: slack: rooms: - secure: Z0uu1uGNK1R9ADq8VyMMqQgZ6WBnLZw2RUEsIQyVpR6JKEMdyZ8VNVvYY+WGLPN6HV1VuwBrAX4wAR6944QbPvP5+9pxYmc8fiMuBRefQdPV395I0DTnJIVrdolk7ZTsN8+FSW6iKHfccV/4/zPxlWBFZiY...
Add latest stable node & iojs versions to build matrix
Add latest stable node & iojs versions to build matrix
YAML
apache-2.0
eHealthAfrica/data-models
0e6598063e34ba2617683014fb77f52afdf5dc88
.travis.yml
.travis.yml
language: node_js node_js: - '5.7' - '4'
language: node_js node_js: - '5' - '4' before_install: - npm install -g npm@latest - npm prune
Use Latest NPM for Travis
[Enhance][Test] Use Latest NPM for Travis
YAML
mit
arrowrowe/romi
6ad0aaf40f24377244e086a4d81092b37d2b344f
.travis.yml
.travis.yml
language: rust os: osx rust: - 1.19.0 - stable cache: cargo script: cargo test
language: rust os: osx rust: - 1.28.0 - stable cache: cargo script: cargo test
Use Rust 1.28 on Travis too
CI: Use Rust 1.28 on Travis too
YAML
apache-2.0
dbrgn/tldr-rs,dbrgn/tealdeer,dbrgn/tealdeer
b2b7d178ecc33a5a3d61aab243bffe3055690c29
.travis.yml
.travis.yml
language: node_js node_js: - '13' - '12' - '10'
language: node_js node_js: - '16' - '14' - '12'
Test on current versions of node
Test on current versions of node
YAML
mit
ctimmerm/axios-mock-adapter,ctimmerm/axios-mock-adapter
537f78ea62cbfd2530445b5790b3d73369e27943
.travis.yml
.travis.yml
language: python python: 2.7 env: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=docs - TOX_ENV=flake8 install: - pip install tox script: - tox -e $TOX_ENV
language: python python: 2.7 env: - TOX_ENV=py27 - TOX_ENV=docs - TOX_ENV=flake8 install: - pip install tox script: - tox -e $TOX_ENV
Configure Travis CI to test only Python 2.7
Configure Travis CI to test only Python 2.7
YAML
mit
Ceasar/twosheds
68db5acb16f7bd8a1c74b7ea141e7b7177991346
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.3" - "3.4" - "3.5" install: - "pip install coveralls" - "pip install -e .[test]" script: - py.test --cov cligj --cov-report term-missing after_success: - coveralls deploy: on: tags: true provider: pypi distributions: "sdist bdist_wheel" user...
sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" install: - "pip install coveralls" - "pip install -e .[test]" script: - py.test --cov cligj --cov-report term-missing after_success: - coveralls deploy: on: tags: true provider: pypi distributions: "sdist bdist_wheel" user...
Remove python 3.3 from matrix, add 3.6
Remove python 3.3 from matrix, add 3.6
YAML
bsd-3-clause
mapbox/cligj
041b9edf8779f14ae087b885d93d1d4e73db2466
.travis.yml
.travis.yml
sudo: required dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2
sudo: required dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3.0
Add ruby 2.3.0 to Travis CI Build
Add ruby 2.3.0 to Travis CI Build
YAML
mit
mmozuras/poper
a0ca0a2680c299d7fc1736abac1ccf7cf5256e5c
.travis.yml
.travis.yml
language: node_js node_js: - "8.0" 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 sudo: false
language: node_js node_js: - "7.6" 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 sudo: false
Use node 7.6 for build
Use node 7.6 for build
YAML
mit
anandanand84/technicalindicators,anandanand84/technicalindicators,anandanand84/technicalindicators,anandanand84/technicalindicators
091ce4428490e67a4e281cebc037498fb7b3808d
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.0 env: - PUPPET_VERSION="~> 3.6.0" - PUPPET_VERSION="~> 3.7.0" - PUPPET_VERSION="~> 4.3.0" - PUPPET_VERSION="~> 4.3.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 5.5.0" before_install: - gem update bundler - bundle --version - gem update --system 2.1.11 - gem --version s...
language: ruby rvm: $RUBY_VERSION env: - PUPPET_VERSION="~> 3.6.0" RUBY_VERSION="2.1.0" - PUPPET_VERSION="~> 3.7.0" RUBY_VERSION="2.1.0" - PUPPET_VERSION="~> 4.3.0" RUBY_VERSION="2.4.0" - PUPPET_VERSION="~> 4.3.0" STRICT_VARIABLES=yes RUBY_VERSION="2.4.0" - PUPPET_VERSION="~> 5.5.0" RUBY_VERSION="2.4.0" be...
Work around versioning issues with different Ruby versions
Work around versioning issues with different Ruby versions Puppet 5.x ships with Ruby 2.4, but older Puppet versions (we still support Puppet 3.x) are obvioulsy incompatible. See affected build at https://travis-ci.org/willdurand/puppet-nodejs/builds/366517540
YAML
mit
willdurand/puppet-nodejs,willdurand/puppet-nodejs
b7624b608bb80e4eb115f2dd54babd32e87b9fd8
.travis.yml
.travis.yml
sudo: required dist: trusty language: node_js services: - docker addons: apt: sources: - google-chrome packages: - google-chrome-stable - google-chrome-beta node_js: - "7" before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb sta...
sudo: required dist: trusty language: node_js services: - docker addons: apt: sources: - google-chrome packages: - google-chrome-stable - google-chrome-beta - docker-ce node_js: - "7" before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /e...
Use recent Docker version in Travis build
Use recent Docker version in Travis build
YAML
agpl-3.0
elkozmon/zoonavigator-web,elkozmon/zoonavigator-web,elkozmon/zoonavigator-web
973f0ac7335006a8da4376262a1d7573a376a219
.travis.yml
.travis.yml
dist: trusty language: php php: - '5.6' - '7.0' - hhvm - nightly install: - composer update
dist: trusty language: php php: - '5.6' - '7.0' - nightly install: - composer update
Remove hhvm platform from Travis tests.
Remove hhvm platform from Travis tests.
YAML
mit
dream-group/isced
dc471bff9a41ccfa9fc98241689a3df991789dbf
.travis.yml
.travis.yml
language: node_js matrix: include: - node_js: '0.12' - node_js: iojs - node_js: 4 - node_js: 5 - node_js: 6 - node_js: node env: COVERALLS=1
language: node_js matrix: include: - node_js: '0.12' - node_js: iojs - node_js: 4 - node_js: 6 - node_js: node env: COVERALLS=1
Drop support for Node 5
Drop support for Node 5
YAML
mit
zentrick/iab-vast-model
e9fcfe07d35100b762262bea25121bc66d2e3439
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.2.6 - 2.3.3 gemfile: - gemfiles/sprockets3.gemfile - gemfiles/sprockets4.gemfile branches: only: - master before_install: - 'gem update --system --no-doc' after_script: - '[ ${TRAVIS_EVENT_TYPE} != "pull_request" ] && [ ${TRAVIS_BRANCH} = "master" ] && bundle exec c...
sudo: false language: ruby rvm: - 2.2.6 - 2.3.3 gemfile: - gemfiles/sprockets3.gemfile - gemfiles/sprockets4.gemfile branches: only: - master before_install: - gem update --system 2.7.9 --no-doc after_script: - '[ ${TRAVIS_EVENT_TYPE} != "pull_request" ] && [ ${TRAVIS_BRANCH} = "master" ] && bundle ex...
Fix build failure due to RubyGems
Fix build failure due to RubyGems Use rubygems v2 because rubygems v3 drops support of Ruby 2.2 or former. ref. https://github.com/rubygems/rubygems/blob/v3.0.0/rubygems-update.gemspec#L32
YAML
mit
yasaichi/grease,yasaichi/grease,yasaichi/grease,yasaichi/grease
a5d01000a89f54fd6e854ec5ceb39d1d8d10f11a
.travis.yml
.travis.yml
language: go go: - 1.1 - 1.2 - release - tip install: - go get github.com/oschwald/maxminddb-golang - go get launchpad.net/gocheck script: - go test -v ./...
language: go go: - 1.1 - 1.2 - release - tip install: - go get github.com/oschwald/maxminddb-golang - go get launchpad.net/gocheck - go install script: - go test -v ./...
Install package so that tests can be in separate package
Install package so that tests can be in separate package
YAML
isc
agaurav/geoip2-golang,viki-org/geoip2-golang,adjust/geoip2-golang,oschwald/geoip2-golang
0fc692b445ccfdca0d02cd45f6641d5dce9118af
.travis.yml
.travis.yml
language: php php: - 5.5 install: - composer install --no-interaction --prefer-source script: - ./vendor/bin/phing deploy: provider: heroku api_key: secure: VccBuoFubIXT3Q/KKCuzfgw6ntT2NLcUkPv3UzOSqhKVqfivPO2s+22yOWcysUfYSaYcYpemKZ+XtsnAn7jpqKc70Wok7uQs6FsKD1XjonUqxM2QrploqdS4H9zcFpF50b462HfV6SdCvoDutTpUBtPiZ63...
language: php php: - 5.5 install: - composer install --no-interaction --prefer-source script: - ./vendor/bin/phing deploy: provider: heroku api_key: secure: VccBuoFubIXT3Q/KKCuzfgw6ntT2NLcUkPv3UzOSqhKVqfivPO2s+22yOWcysUfYSaYcYpemKZ+XtsnAn7jpqKc70Wok7uQs6FsKD1XjonUqxM2QrploqdS4H9zcFpF50b462HfV6SdCvoDutTpUBtPiZ63...
Deploy to the right app.
Deploy to the right app.
YAML
mit
hrphp/widgets-api
76587168a09b595637fd270cf607d75403e6c1c3
.travis.yml
.travis.yml
language: clojure lein: lein2 addons: postgresql: "9.3" before_script: - psql -c "CREATE DATABASE tamarack OWNER $USER ENCODING 'UTF-8';" - sudo apt-get install phantomjs npm - sudo npm install -g karma karma-phantomjs-launcher karma-jasmine script: - lein cljsbuild once - lein midje - /usr/local/lib/n...
language: clojure lein: lein2 addons: postgresql: "9.3" before_script: - createdb -e -U postgres -E UTF-8 -O $USER tamarack - sudo apt-get install phantomjs npm - sudo npm install -g karma karma-phantomjs-launcher karma-jasmine script: - lein cljsbuild once - lein midje - /usr/local/lib/node_modules/ka...
Use createdb instead of psql to create Postgres DB
Use createdb instead of psql to create Postgres DB
YAML
bsd-3-clause
mhallin/tamarack,mhallin/tamarack
31a86c22b057f64287d201885a57a501f0a9f29f
.travis.yml
.travis.yml
language: python sudo: false before_script: - pip install tox script: - tox matrix: fast_finish: true allow_failures: - env: TOXENV=docstrings include: - python: 2.6 env: TOXENV=py26 - python: 2.7 env: TOXENV=py27 - python: 3.3 env: TOXENV=py33 - python: 3.4 env: TO...
language: python sudo: false before_script: - pip install tox script: - tox matrix: fast_finish: true allow_failures: - env: TOXENV=docstrings include: - python: 2.7 env: TOXENV=py27 - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - python: 3.6 env: TO...
Remove python 2.6 and 3.3 from Travis
Remove python 2.6 and 3.3 from Travis
YAML
mit
flintwork/mccabe
c3e53413e63f70ef7be9464cd24cecf7e86c96e5
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "6.10.2"
sudo: false language: node_js node_js: - "10.5.0"
Update yaml to match the node version
Update yaml to match the node version
YAML
bsd-3-clause
dabapps/eslint-config-dabapps,dabapps/eslint-config-dabapps,dabapps/eslint-config-dabapps
2f13abe1b88b0cbdc1acbe12379318a8d912b871
.travis.yml
.travis.yml
language: ruby cache: bundler os: - linux - osx rvm: - 1.9.3 - 2.0.0 - 2.1.7 - 2.2.3 - ruby-head - rbx-2 addons: apt: packages: - cmake - libssh2-1-dev - openssh-client - openssh-server sudo: false matrix: fast_finish: true allow_failures: - rvm: rbx-2 - rvm: ruby-...
language: ruby cache: bundler os: - linux rvm: - 2.0.0 - 2.1.8 - 2.2.4 - 2.3.0 - ruby-head - rbx-2 addons: apt: packages: - cmake - libssh2-1-dev - openssh-client - openssh-server sudo: false matrix: fast_finish: true allow_failures: - rvm: rbx-2 - rvm: ruby-head i...
Update the list of ruby versions to build on Travis
Update the list of ruby versions to build on Travis This adds the latest 2.3.0 release to the Travis config, updates to the latest 2.1.x and 2.2.x versions and drops the builds against 1.9.3 (which has been unsupported for quite a while). Also change the way we specify builds for OS X and only run builds for supporte...
YAML
mit
libgit2/rugged,libgit2/rugged,libgit2/rugged
5cc90c2fcae6b7c5128c3f379e0c14f409e1486a
.travis.yml
.travis.yml
notifications: slack: wtsi-cgpit:ptUMR1tkNyZJYd9TpGoss8WR email: false sudo: false services: - docker install: - virtualenv -p python3 venv - source venv/bin/activate - pip install html5lib cwltool script: - set -e - echo 'Validate CWL file(s)' - cwltool --validate Dockstore.cwl - cwltool --validate cw...
notifications: slack: wtsi-cgpit:ptUMR1tkNyZJYd9TpGoss8WR email: false sudo: false services: - docker install: - virtualenv -p python3 venv - source venv/bin/activate - pip install html5lib cwltool script: - set -e - echo 'Validate CWL file(s)' - cwltool --validate Dockstore.cwl - cwltool --validate cw...
Remove interactive flag from docker test of tools
Remove interactive flag from docker test of tools
YAML
agpl-3.0
cancerit/dockstore-cgpmap,cancerit/dockstore-cgpmap
78acc1f6ef7c04c399cddd907e94d8447acf28b1
.travis.yml
.travis.yml
os: osx osx_image: xcode8.2 compiler: clang language: node_js node_js: - "7" - "6" - "5" install: - npm install script: - npm run test
os: osx osx_image: xcode9.1 compiler: clang language: node_js node_js: - "7" - "6" - "5" install: - npm install script: - npm run test
Update xcode image to 9.1
Update xcode image to 9.1
YAML
mit
pronebird/NSEventMonitor,pronebird/NSEventMonitor,pronebird/NSEventMonitor,pronebird/NSEventMonitor
97562daf1f17364709e1b1c826d859a599ba909d
.travis.yml
.travis.yml
language: java jdk: - openjdk6 - openjdk7 script: mvn verify
language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk6 script: mvn verify
Fix - Add CI java 8,7 e 6
Fix - Add CI java 8,7 e 6
YAML
unlicense
pagarme/pagarme-java,pagarme/pagarme-java
7831649171d443c74c092c4acfc0593feafcd1bd
.travis.yml
.travis.yml
language: go # Versions of go that are explicitly supported. go: - 1.6.3 - 1.7.1 - tip # Required for coverage. before_install: - go get golang.org/x/tools/cmd/cover - go get github.com/mattn/goveralls # only one subpackage tested yet script: - go build -a -v ./... - diff <(gofmt -d .) <("") - go test -v -c...
language: go # Versions of go that are explicitly supported. go: - 1.7.5 - 1.8 - tip # Required for coverage. before_install: - go get golang.org/x/tools/cmd/cover - go get github.com/mattn/goveralls # only one subpackage tested yet script: - go build -a -v ./... - diff <(gofmt -d .) <("") - go test -v -cov...
Update Go versions for Travis builds
Update Go versions for Travis builds Go 1.6 removed.
YAML
apache-2.0
grafana-tools/sdk
ff9778037b6a2d06a1750915a160ef11b3b04092
.travis.yml
.travis.yml
language: php php: - 7.1 env: - DB=sqlite before_script: - locale-gen nl_NL.UTF-8 && update-locale - echo 'memory_limit=2G' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - composer install --no-scripts - cp app/config/parameters.yml.dist app/config/parameters.yml script: ant
language: php php: - 7.1 env: - DB=sqlite before_script: - sudo locale-gen nl_NL.UTF-8 && sudo update-locale - echo 'memory_limit=2G' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - composer install --no-scripts - cp app/config/parameters.yml.dist app/config/parameters.yml script: a...
Use sudo for installing locale
Use sudo for installing locale
YAML
mit
deregenboog/ecd,deregenboog/ecd,deregenboog/ecd
8d9b0f536f9079721b15fee948e60c6b80b9ebb4
.travis.yml
.travis.yml
language: node_js node_js: - "node" env: - JSDOM_VERSION=6 - JSDOM_VERSION=7 - JSDOM_VERSION=8 - JSDOM_VERSION=9 - JSDOM_VERSION=10 script: - npm install jsdom@$JSDOM_VERSION - ln -s ../ node_modules/karma-jsom-launcher - npm test
language: node_js node_js: - "node" env: - JSDOM_VERSION=6 - JSDOM_VERSION=7 - JSDOM_VERSION=8 - JSDOM_VERSION=9 - JSDOM_VERSION=10 - JSDOM_VERSION=11 script: - npm install jsdom@$JSDOM_VERSION - ln -s ../ node_modules/karma-jsom-launcher - npm test
Add jsdom-11 to the tested versions
Add jsdom-11 to the tested versions
YAML
mit
badeball/karma-jsdom-launcher
576ac4fbbaab3c609437ab6619ca8932a874a9b4
.travis.yml
.travis.yml
language: node_js node_js: stable script: - npm run test:lint - npm run build - polymer test --skip-plugin local addons: sauce_connect: true jwt: # SAUCE_ACCESS_KEY secure: RMdv3Z15SfFnPw5HzltECPxyYtB1H/6YS+Tru+dq3BmqZbAwadV7qSSXkw3ZN8sbZjyI1MZvXaYGLVgh0Ye+aSiPnr+/8ikSrOKOsLTrNTkkiv1aFmg4S48hSAiUCvAwjQ8+EkU...
language: node_js node_js: stable script: - npm run test:lint - npm run build - polymer test --skip-plugin local addons: sauce_connect: true jwt: secure: RMdv3Z15SfFnPw5HzltECPxyYtB1H/6YS+Tru+dq3BmqZbAwadV7qSSXkw3ZN8sbZjyI1MZvXaYGLVgh0Ye+aSiPnr+/8ikSrOKOsLTrNTkkiv1aFmg4S48hSAiUCvAwjQ8+EkU7UTnrsE9uR/Pv9tsscCIheH...
Put sauce username in clear text.
Put sauce username in clear text.
YAML
apache-2.0
Brightspace/valence-ui-icons
694c30efbade213665d327af22609390530dc187
.travis.yml
.travis.yml
os: - linux language: php php: - '7.1' - nightly cache: directories: - "$HOME/.composer/cache/files" before_script: - composer self-update - composer install --no-interaction script: - vendor/bin/phpunit --coverage-text
os: - linux language: php php: - '7.1' - '7.2' cache: directories: - "$HOME/.composer/cache/files" before_script: - composer self-update - composer install --no-interaction script: - vendor/bin/phpunit --coverage-text
Remove nightly build, add 7.2 to Travis
Remove nightly build, add 7.2 to Travis
YAML
agpl-3.0
codethesaurus/codethesaur.us,codethesaurus/codethesaur.us
34eca3095df042f499e2a949522d52439c7f9934
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 - ruby-head - jruby-19mode - jruby-head - rbx-19mode matrix: allow_failures: - rvm: ruby-head - rvm: jruby-19mode # jruby 1.7.3 fibers are broken - rvm: jruby-head - rvm: rbx-19mode # deadlocks :( notifications: irc: "irc.freenode.org#celluloid"
rvm: - 1.9.3 - 2.0.0 - ruby-head - jruby-19mode - jruby-head - rbx-19mode matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rbx-19mode # deadlocks :( notifications: irc: "irc.freenode.org#celluloid"
Remove jruby-19mode from allowed failures
Remove jruby-19mode from allowed failures
YAML
mit
celluloid/celluloid-dns
2ec8c09084c836a83b93f312c0a205d99ba9551a
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 branches: only: - master script: bundle exec rake spec
language: ruby rvm: - 2.0 - 2.1 - 2.2 branches: only: - master script: bundle exec rake spec
Remove support for Ruby 1.9
Remove support for Ruby 1.9 Module#include used at SocketManager is private with Ruby 1.9.
YAML
apache-2.0
naritta/serverengine,fluent/serverengine
bc68aa646dbd211f610946ac489491e5956d3b59
.travis.yml
.travis.yml
language: java arch: - AMD64 - ppc64le sudo: false jdk: - openjdk8 notifications: email: - info@sejda.org cache: directories: - $HOME/.m2
language: java sudo: false jdk: - openjdk8 notifications: email: - info@sejda.org cache: directories: - $HOME/.m2
Revert "Travis-ci: added support for ppc64le"
Revert "Travis-ci: added support for ppc64le" This reverts commit d72d274f09d7cef98d55afd4227b83080cbb9f51.
YAML
apache-2.0
torakiki/sambox,torakiki/sambox
9821b654d9cd404c34857ba1cfd23a6933e667a5
.travis.yml
.travis.yml
language: node_js node_js: - "4.1" - "4.0" - "0.12" before_script: - npm install -g eclint - npm run eclint - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start
language: node_js node_js: - "4.1" - "4.0" - "0.12" before_script: - npm install -g eclint - npm run eclint - npm install -g eslint - npm run eslint - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start
Add eslint to CI script
Add eslint to CI script
YAML
mit
motiz88/yet-another-react-component-starter,motiz88/react-dygraphs,motiz88/yet-another-universal-package-starter
d3e6af7a28e7321e19eca78b5fa928d60b611d3a
.travis.yml
.travis.yml
dist: trusty sudo: false language: go go: - 1.8 env: - GOMAXPROCS=4 branches: only: - master env: - CONSUL_VERSION=0.8.2 before_install: - curl -sLo consul.zip https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip - unzip consul.zip - mkdir ~/bin - mv...
dist: trusty sudo: false language: go go: - 1.8 env: - GOMAXPROCS=4 branches: only: - master env: - CONSUL_VERSION=0.8.4 before_install: - curl -sLo consul.zip https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip - unzip consul.zip - mkdir ~/bin - mv...
Update Consul version on Travis
Update Consul version on Travis
YAML
mpl-2.0
hashicorp/consul-template,hashicorp/consul-template
05707aa9bf174edc141337d7a39ff6a277215d36
.travis.yml
.travis.yml
language: python os: - linux - osx python: - "3.2" - "3.3" - "3.4" - "3.5" # command to install dependencies install: - "pip install ." - "pip install -r requirements.txt" # command to run tests script: "./tests.sh"
language: python os: - linux - osx python: - "3.2" - "3.3" - "3.4" # command to install dependencies install: - "pip install ." - "pip install -r requirements.txt" # command to run tests script: "./tests.sh"
Revert "Testing with Python 3.5"
Revert "Testing with Python 3.5" This reverts commit f7c9ade46181cd55ac53b3235d0f687abb37dae5.
YAML
mit
karel-brinda/smbl,karel-brinda/smbl
13db28aaacef18d9abe26331a0f4cc99ce71e813
.travis.yml
.travis.yml
sudo: false language: python dist: trusty python: - "2.7" after_success: - codecov virtualenv: system_site_packages: true install: - pip install -r requirements.txt - pip install --editable . - pip install codecov pytest-cov script: - py.test --cov-report xml --cov=certidude tests/ cache: directories: ...
sudo: false language: python dist: trusty python: - "2.7" after_success: - codecov virtualenv: system_site_packages: true install: - pip install -r requirements.txt - pip install --editable . - pip install codecov pytest-cov script: - py.test --cov-report xml --cov=certidude tests/ cache: directories: ...
Add xattr package dependency for Travis
Add xattr package dependency for Travis
YAML
mit
laurivosandi/certidude,plaes/certidude,plaes/certidude,laurivosandi/certidude,laurivosandi/certidude,plaes/certidude,plaes/certidude,laurivosandi/certidude
3cd65d3ac029b3eafa30f4c179966c11886691ec
.travis.yml
.travis.yml
language: node_js node_js: - '12' - '14' - '15' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
language: node_js node_js: - '12' - '14' - '16' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
Build with Node.js 16 on Travis CI.
Build with Node.js 16 on Travis CI.
YAML
mit
bigeasy/staccato
b899af5983f3eb7505350e2097d4b2c49ee8c2d7
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 2.0.0 - 2.1 - 2.2.4 - 2.3.0 env: matrix: - SPROCKETS_VERSION="~> 2.1.0" - SPROCKETS_VERSION="~> 2.12.0" - SPROCKETS_VERSION="~> 3.0.0" - SPROCKETS_VERSION="~> 3.1.0" - SPROCKETS_VERSION="~> 3.2.0" - SPROCKETS_VERSION="~> 3.3.0" - S...
language: ruby cache: bundler sudo: false rvm: - 2.0.0 - 2.1 - 2.2.4 - 2.3.0 env: matrix: - SPROCKETS_VERSION="~> 2.1.0" - SPROCKETS_VERSION="~> 2.12.0" - SPROCKETS_VERSION="~> 3.0.0" - SPROCKETS_VERSION="~> 3.1.0" - SPROCKETS_VERSION="~> 3.2.0" - SPROCKETS_VERSION="~> 3.3.0" - S...
Test against Sprockets ~> 4.0.0.beta1
Test against Sprockets ~> 4.0.0.beta1
YAML
mit
tricknotes/ember-es6_template,tricknotes/ember-es6_template
d844f371017a74b6288ada4a048beeb981abfee9
.travis.yml
.travis.yml
language: erlang otp_release: - 17.4 install: - './_test/bootstrap.sh' script: - bin/fetch-configlet - bin/configlet . - './_test/check-exercises.escript' cache: - apt
--- language: erlang otp_release: - 17.4 install: - "./_test/bootstrap.sh" script: - bin/fetch-configlet - bin/configlet . - "./_test/check-exercises.escript" cache: - apt
Normalize YAML in Travis config
Normalize YAML in Travis config
YAML
mit
exercism/xerlang,NobbZ/xerlang,tmcgilchrist/xerlang
216c4a6cab6aa1e30eb09e5a47240fdbcbfa8eb0
.travis.yml
.travis.yml
language: python sudo: false script: ./scripts/travis.sh os: - linux matrix: include: - python: "3.7" dist: "xenial" sudo: true - python: "3.8" dist: "xenial" sudo: true - python: "3.9" dist: "xenial" sudo: true services: - memcached - redis-server
language: python sudo: false script: ./scripts/travis.sh os: - linux matrix: include: - python: "3.7" dist: "xenial" sudo: true - python: "3.8" dist: "xenial" sudo: true - python: "3.9" dist: "xenial" sudo: true - python: "3.10" dist: "focal" sudo: tru...
Add Python 3.10 to Travis CI
Add Python 3.10 to Travis CI - Resolves Issue #618
YAML
bsd-3-clause
datafolklabs/cement,datafolklabs/cement,datafolklabs/cement
c378cb6a6a557714a4ca4cf0ab1279e92ceeefee
.travis.yml
.travis.yml
language: python python: - '2.7' - '3.3' - '3.4' - '3.5' - '3.6' install: - pip install . script: - python testdocs.py
language: python python: - '2.7' - '3.3' - '3.4' - '3.5' - '3.6' install: - pip install pyproj script: - python testdocs.py
Add pyproj as required testlib
Add pyproj as required testlib
YAML
mit
karimbahgat/PyCRS
b3ca920234154cd9020a517b49a1b9668c23c208
.travis.yml
.travis.yml
language: ruby bundler_args: --binstubs script: bin/rspec -f doc rvm: - 1.9.3 - 2.0.0 - 2.1.0 - rbx - ruby-head - jruby-head
language: ruby bundler_args: --binstubs script: bin/rspec -f doc rvm: - 1.9.3 - 2.0.0 - 2.1.0 - rbx
Disable ruby-head and jruby-head for Travis
Disable ruby-head and jruby-head for Travis - EventMachine doesn't work on ruby-head - Thin doesn't compile with JRuby
YAML
mit
ayosec/cap_proxy
f34e406b9a852092094de442e45cc87d887c9be5
.travis.yml
.travis.yml
language: node_js node_js: - 0.12 - 4 - 5 before_install: # We need this line to have g++4.8 available in apt - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq - sudo apt-get install -qq gcc-4.8 g++-4.8 # We want to compile with g++ 4.8 when rather than the default g++ - ...
os: - linux - osx sudo: false language: cpp addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 env: matrix: - TRAVIS_NODE_VERSION="0.12" - TRAVIS_NODE_VERSION="4" - TRAVIS_NODE_VERSION="5" cache: directories: - node_modules install: - rm -rf ~/.nvm && git...
Test Travis CI on OS X and Linux for multiple node versions on Docker.
Test Travis CI on OS X and Linux for multiple node versions on Docker.
YAML
mit
nfroidure/ttf2woff2,nfroidure/ttf2woff2,nfroidure/ttf2woff2,nfroidure/ttf2woff2
c20fb10b96427923f9d9c11edea8a6540c81f52d
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.4 gemfile: - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile dist: trusty sudo: false cache: bundler: true before_install: - gem install bundler before_script: - cp spec/dummy/config/database.yml.ci spec/dummy/co...
language: ruby rvm: - 2.2.7 - 2.3.4 - 2.4.1 gemfile: - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile matrix: exclude: - rvm: 2.4.1 gemfile: gemfiles/rails_4.1.gemfile allow_failures: - rvm: 2.4.1 dist: trusty sudo: false...
Add ruby 2.2 and 2.4 to CI build
Add ruby 2.2 and 2.4 to CI build
YAML
mit
G5/g5_authenticatable,G5/g5_authenticatable,G5/g5_authenticatable
f8ec2eeb152cb5b6ee7123c83da49084a644f2a2
.travis.yml
.travis.yml
script: rake ci bundler_args: --without custom rvm: - 1.9.3 - ruby-head - jruby-19mode # - jruby-head # FIXME: timers firing in the wrong order? # - rbx-19mode # crashing: http://travis-ci.org/#!/celluloid/celluloid/jobs/2469781 notifications: irc: "irc.freenode.org#celluloid"
script: rake ci bundler_args: --without custom rvm: - 1.9.3 - ruby-head - jruby-19mode - jruby-head # FIXME: timers firing in the wrong order? - rbx-19mode matrix: allow_failures: - rvm: jruby-head - rvm: rbx-19mode notifications: irc: "irc.freenode.org#celluloid"
Allow failures on rbx and jruby-head
Allow failures on rbx and jruby-head
YAML
mit
jstoja/celluloid,seuros/celluloid,olleolleolle/celluloid,dilumn/celluloid,sideci-sample/sideci-sample-celluloid,marshall-lee/celluloid,mehta/celluloid,TiagoCardoso1983/celluloid,kenichi/celluloid,tarcieri/celluloid,davydovanton/celluloid,jasonm23/celluloid,celluloid/celluloid
a941f54340650cc616412dc19fc0d336236ef174
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler rvm: - 2.4.1 - 2.3.1 - 2.2.5 - jruby-9.1.2.0 before_install: - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" script: "bundle exec rake spec"
language: ruby sudo: false cache: bundler rvm: - 2.6.5 - 2.5.7 - 2.4.9 - jruby-9.1.2.0 before_install: - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" script: "bundle exec rake spec"
Update tested MRI Ruby versions to the latest supported versions
Update tested MRI Ruby versions to the latest supported versions
YAML
bsd-3-clause
rmodbus/rmodbus
3aba608f15de4fe46687496a63f672ec74b6122d
.travis.yml
.travis.yml
language: ruby rvm: - 2.0 - 2.1 - 2.2 - ruby-head - jruby-19mode - jruby-head - rbx-19mode env: - "ADAPTER=in_memory" - "ADAPTER=yaml" - "ADAPTER=sqlite" - "ADAPTER=mysql DM_DB_USER=root DM_DB_PASSWORD=''" - "ADAPTER=postgres DM_DB_USER=postgres DM_DB_PASSWORD=''" cache: bundler sudo: true ...
language: ruby rvm: - 2.0 - 2.1 - 2.2 - ruby-head - jruby-19mode - jruby-head - rbx-19mode env: global: - JRUBY_OPTS="$JRUBY_OPTS --2.0 -J-Xmx1g --debug" matrix: - "ADAPTER=in_memory" - "ADAPTER=yaml" - "ADAPTER=sqlite" - "ADAPTER=mysql DM_DB_USER=root DM_DB_PASSWORD=''" - "A...
Change env configuration to use global and matrix keys
Change env configuration to use global and matrix keys
YAML
mit
datamapper/dm-types,troygnichols/dm-types
fad644bcdc8fb0e126f221ac5e793a3803df86e6
.travis.yml
.travis.yml
language: python os: linux dist: focal cache: pip: true directories: - $HOME/.cache/pypoetry python: - "3.6" - "3.7" - "3.8" - "3.9" before_install: - pip install --upgrade pip - pip install poetry install: - poetry install script: - if [[ $TRAVIS_PYTHON_VERSION = 3.9 ]]; then make style; fi ...
language: python os: linux dist: focal cache: pip: true directories: - $HOME/.cache/pypoetry python: - "3.6" - "3.7" - "3.8" - "3.9" before_install: - pip install --upgrade pip - pip install poetry install: - poetry install script: - if [[ $TRAVIS_PYTHON_VERSION = 3.9 ]]; then make style; fi ...
Send codecov coverage only one per CI run
Send codecov coverage only one per CI run
YAML
mit
corenting/immutabledict
0c23a643843739ebd93426ce0c15a2d5cfe1ebc6
.travis.yml
.travis.yml
# Doc: http://manuel.manuelles.nl/blog/2012/06/22/integrate-travis-ci-into-grunt/ language: node_js node_js: - 0.6 - 0.8 notifications: email: recipients: - jmillan@aliax.net - ibc@aliax.net - saghul@gmail.com on_success: change on_failure: always
# Doc: http://manuel.manuelles.nl/blog/2012/06/22/integrate-travis-ci-into-grunt/ language: node_js node_js: - 0.8 notifications: email: recipients: - jmillan@aliax.net - ibc@aliax.net - saghul@gmail.com on_success: change on_failure: always
Remove Node 0.6 (old stable version) from Travis.
Remove Node 0.6 (old stable version) from Travis.
YAML
mit
onsip/SIP.js,Voiceworks/SIP.js,Escaux/SIP.js,joseph-onsip/SIP.js,AaronZhangL/JsSIP,CodeYellowBV/JsSIP,tqcenglish/JsSIP,dpocock/JsSIP,DrumTechnologiesLtd/JsSIP,ronlobo/SIP.js,voxbone/JsSIP,onsip/SIP.js,markandrus/SIP.js,josephfrazier/SIP.js,vconsult/JsSIP,rusekr/JsSIP
28d1f9f0869ffe98838b91cf67c82194a49a3fb6
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3
language: ruby rvm: - 1.9.2 - 1.9.3 before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "sleep 5"
Add xvfb initialization to Travis CI configuration.
Add xvfb initialization to Travis CI configuration.
YAML
mit
Tybot204/pusher-fake,Drooids/pusher-fake,Tybot204/pusher-fake,Drooids/pusher-fake,tristandunn/pusher-fake,tristandunn/pusher-fake
0721c439283909ccd7c3434ccc64fe3c3dd5119d
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 - openjdk11 - openjdk12 - openjdk-ea after_success: - mvn clean cobertura:cobertura coveralls:report
language: java jdk: - oraclejdk8 - openjdk11 - openjdk12 - openjdk13 - openjdk-ea after_success: - mvn clean cobertura:cobertura coveralls:report
Add Java 13 build on Travis CI (openjdk-ea is now Java 14).
Add Java 13 build on Travis CI (openjdk-ea is now Java 14).
YAML
mit
benas/random-beans,benas/jPopulator
13749a47828e74c1612bf97bfef7b72659ceb319
.travis.yml
.travis.yml
--- language: objective-c osx_image: xcode9.3beta script: - make ci
--- language: objective-c osx_image: xcode9.3 script: - make ci
Update Travis to Xcode 9.3
Update Travis to Xcode 9.3
YAML
apache-2.0
RLovelett/langserver-swift
23f9826fee4bb9eabe5744a46141ed30e1280b54
.travis.yml
.travis.yml
language: python sudo: required python: - "2.7" env: PGVERSION=9.1 install: - bash bin/travis-build.bash - pip install coveralls script: sh bin/travis-run.sh after_success: - coveralls
language: python sudo: required python: - "2.7" env: PGVERSION=9.1 install: - bash bin/travis-build.bash - pip install coveralls git+https://github.com/coagulant/coveralls-python script: sh bin/travis-run.sh after_success: - coveralls
Use latest coveralls from master
Use latest coveralls from master
YAML
apache-2.0
govro/ckanext-inventory,govro/ckanext-inventory,govro/ckanext-inventory,govro/ckanext-inventory
112f2b08bd4022be21cd1e90722442f2e9e1607f
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler script: 'bundle exec rake test:coverage --trace' rvm: - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - 2.1.3 - 2.1.4 - 2.1.5 - 2.2 - rbx-2 - jruby-head matrix: allow_failures: - rvm: jruby-head
language: ruby sudo: false cache: bundler script: 'bundle exec rake test:coverage --trace' rvm: - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - 2.1.3 - 2.1.4 - 2.1.5 - 2.2.0 - 2.2.1 - rbx-2 - jruby-head matrix: allow_failures: - rvm: jruby-head
Test against 2.2.0 and 2.2.1
Test against 2.2.0 and 2.2.1
YAML
mit
vyper/controller,hanami/controller,supriyantomaftuh/controller,theocodes/controller,hanami/controller,hanami/controller,lotus/controller
6ba4d7bb84f68f55e381293cda9dcf431b1d2b21
.travis.yml
.travis.yml
language: go go: # - 1.7 - 1.8 - 1.9 - tip services: - docker compiler: - g++ before_install: # - TESSERACT=4.00.00dev LEPTONICA=1.74.2 sudo ./test/script/setup.sh - sudo apt-get update -qq - sudo apt-get install -y -qq libtesseract-dev libleptonica-dev tesseract-ocr-eng env: - L...
language: go go: - 1.11.x services: - docker compiler: - g++ before_install: # - TESSERACT=4.00.00dev LEPTONICA=1.74.2 sudo ./test/script/setup.sh - sudo apt-get update -qq - sudo apt-get install -y -qq libtesseract-dev libleptonica-dev tesseract-ocr-eng env: global: - LD_LIBRARY_PAT...
Use go modules on Travis
Use go modules on Travis
YAML
mit
otiai10/gosseract,otiai10/gosseract,otiai10/gosseract,otiai10/gosseract
4933ce6c6a24c320fd22cb6dde18063bad0a1e2c
.travis.yml
.travis.yml
language: python python: - 3.3 before_install: - git clone https://github.com/anchor/libmarquise.git ../libmarquise/ - cd ../libmarquise/ - autoreconf -i - ./configure - make - sudo make install - sudo su -c "echo '/usr/local/lib' > /etc/ld.so.conf.d/local.conf" - sudo ldconfig - cd - # command t...
language: python python: - 3.3 - 2.7 before_install: - git clone https://github.com/anchor/libmarquise.git ../libmarquise/ - cd ../libmarquise/ - autoreconf -i - ./configure - make - sudo make install - sudo su -c "echo '/usr/local/lib' > /etc/ld.so.conf.d/local.conf" - sudo ldconfig - cd - # c...
Build the six port with py2.7
Build the six port with py2.7
YAML
mit
anchor/pymarquise,anchor/pymarquise
e35e56e384aa5ee231d5e58bfd106625ced239b2
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - node install: - npm install -g codecov - npm run bootstrap script: - npm run style - npm run coverage after_success: - codecov
language: node_js sudo: false node_js: - "5" - "6" install: - npm install -g codecov - npm run bootstrap script: - npm run style - npm run coverage after_success: - codecov
Add explicitly Node 5 and 6 to Travis CI
chore(ci): Add explicitly Node 5 and 6 to Travis CI
YAML
mit
yvele/poosh,yvele/poosh
a9d2f2f301ab8aec70bb5881fe256f3291d53d6a
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python python: - "3.2" - "3.3" - "2.7" - "pypy" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install -r requirements.txt --use-mirrors - pip install flake8 --use-mirrors # command to ru...
# Config file for automatic testing at travis-ci.org language: python python: - "3.2" - "3.3" - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install -r requirements.txt --use-mirrors - pip install flake8 --use-mirrors # command to run tests, e....
Remove pypy from build until it starts behaving
Remove pypy from build until it starts behaving
YAML
bsd-3-clause
mhoye/gitcoach,mhoye/gitcoach
7d14c6d9e46d2a676fdc78d4c982975a1387210d
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.11"
language: node_js node_js: - "0.10" - "0.12"
Update Travis config to use Node 0.12
Update Travis config to use Node 0.12
YAML
mit
helmetjs/crossdomain
2e0111d7fb34a6948ff46b5bc5c6f2784b616a41
.travis.yml
.travis.yml
language: node_js node_js: - "8" script: - make test && (make test-ci-coverage || true)
language: node_js node_js: - "12" script: - make test && (make test-ci-coverage || true)
Use node 12 for tests
Use node 12 for tests
YAML
apache-2.0
naturalatlas/geomagnetism
ca55ca1834a7ce75a4ab37bf6f7d0263d84ef192
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.6" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests script: "python run_tests.py"
language: python python: - "2.7" - "3.6" # command to install dependencies install: - pip install -U pip wheel - pip install -r requirements.txt # command to run tests script: "python run_tests.py"
Update pip in Travis builds
Update pip in Travis builds
YAML
agpl-3.0
nabla-c0d3/sslyze
2c009b460c4f617c82eec4045549d65a10edbea6
.travis.yml
.travis.yml
# reference: http://www.objc.io/issue-6/travis-ci.html language: objective-c osx_image: xcode8 env: global: - WORKSPACE=Medusa.xcworkspace - SDK=iphonesimulator - DESTINATION="OS=10.1,name=iPhone 6S" - SCHEME=Medusa script: - open -b com.apple.iphonesimulator # Workaround https://github.com/travis-...
# reference: http://www.objc.io/issue-6/travis-ci.html language: objective-c osx_image: xcode8 env: global: - WORKSPACE=Gorgon.xcworkspace - SDK=iphonesimulator - DESTINATION="OS=10.1,name=iPhone 6S" - SCHEME=Gorgon script: - open -b com.apple.iphonesimulator # Workaround https://github.com/travis-...
Fix project name in yml
Fix project name in yml
YAML
apache-2.0
locationlabs/Gorgon,locationlabs/Gorgon
2c6540a7c38c8318f1cb99459fd047ef2c07ddb5
.travis.yml
.travis.yml
language: perl perl: - "5.8" - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" 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 --...
sudo: false 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 -...
Add v5.22 to Travis, and run in container by turning off sudo
Add v5.22 to Travis, and run in container by turning off sudo
YAML
artistic-2.0
briandfoy/Tie-Toggle,briandfoy/Tie-Toggle
b5737f6a8a52a3e18986226574b12a753cda60e8
.travis.yml
.travis.yml
language: java jdk: oraclejdk8 sudo: false install: true addons: apt: packages: - oracle-java8-installer sonarcloud: organization: "netopyr-github" script: - if [ "$TRAVIS_PULL_REQUEST" == false ]; then mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent verify sonar:sonar; else mvn clea...
language: java jdk: oraclejdk8 sudo: false install: true addons: apt: packages: - oracle-java8-installer sonarcloud: organization: "netopyr-github" script: - mvn clean verify # - if [ "$TRAVIS_PULL_REQUEST" == false ]; # then mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent verify sonar:s...
Disable Sonar until problem was fixed
Disable Sonar until problem was fixed
YAML
apache-2.0
netopyr/reduxfx
500728966203eb0b91130d628a52adfa7ef8df5e
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - rbx-19mode - jruby-19mode - ruby-head - jruby-head matrix: allow_failures: - rvm: rbx-19mode - rvm: jruby-19mode - rvm: ruby-head - rvm: jruby-head before_script: - "cp config/database.yml_example config/database.yml" script: "JRUBY_OPTS=-Xcext.enabl...
language: ruby rvm: - 1.9.2 - 1.9.3 - rbx-19mode - jruby-19mode - ruby-head - jruby-head matrix: allow_failures: - rvm: rbx-19mode - rvm: jruby-19mode - rvm: ruby-head - rvm: jruby-head before_script: - "cp config/database.yml_example config/database.yml" script: "bundle exec rake db:dro...
Revert "Experimental Travis JRuby Support"
Revert "Experimental Travis JRuby Support" This reverts commit 9241bec6cbbbdc19e47419ffb958e7186f1ff7d2.
YAML
mit
hacken-in/website,hacken-in/hacken-in,hacken-in/hacken-in,hacken-in/website,hacken-in/hacken-in,hacken-in/hacken-in,hacken-in/website,hacken-in/website
50e84e6af2a4021a0303b6e777e05d77a24de299
.travis.yml
.travis.yml
language: go go: - 1.7 - 1.8 - 1.9 - tip env: - GOARCH=amd64 sudo: required dist: trusty before_install: - sudo apt-get update -qq - sudo apt-get install -qq -y gtk+3.0 libgtk-3-dev - sudo apt-get install -qq -y xvfb - "export DISPLAY=:99.0" - sudo /usr/bin/Xvfb $DISPLAY 2>1 > /dev/null & - "e...
language: go go: - 1.7 - 1.8 - 1.9 - tip env: - GOARCH=amd64 sudo: required dist: trusty before_install: - sudo apt-get update -qq - sudo apt-get install -qq -y gtk+3.0 libgtk-3-dev - sudo apt-get install -qq -y xvfb - "export DISPLAY=:99.0" - sudo /usr/bin/Xvfb $DISPLAY 2>1 > /dev/null & - "e...
Add hack to move the repo to original (gotk3) repo name
Add hack to move the repo to original (gotk3) repo name
YAML
isc
gotk3/gotk3,gotk3/gotk3
9a73b39b0a24d393beb530fb5009776ab876e839
.travis.yml
.travis.yml
language: python sudo: false python: - "2.7" services: - redis-server env: - DJANGO_SETTINGS_MODULE="dash_test_runner.settings_travis" install: - pip install -r pip-requires.txt before_script: - createdb -E UTF-8 dash -U postgres -O $USER - python manage.py migrate --noinput script: - coverage run manage....
language: python sudo: false python: - "2.7" services: - redis-server env: - DJANGO_SETTINGS_MODULE="dash_test_runner.settings_travis" install: - pip install -r pip-requires.txt before_script: - createdb -E UTF-8 dash -U postgres -O $USER - python manage.py migrate --noinput script: - coverage run manage....
Establish minimum test coverage of 80%
Establish minimum test coverage of 80%
YAML
bsd-3-clause
rapidpro/dash,caktus/dash,caktus/dash,rapidpro/dash,peterayeni/dash,peterayeni/dash
ffb4b8271cf05114a1b96acaa09f40f8ce7d212d
.travis.yml
.travis.yml
language: node_js cache: yarn node_js: - '6' - '6.1' after_success: - npm run test:cover:travis script: - npm run build deploy: provider: s3 access_key_id: AKIAJ3BXGWRIMZSIHD6Q secret_access_key: secure: p8ZhgpK9CT9dghR3qVfeXg8XujnsvBjTmKIcHqExbJWjoVAnn/nWM1esB4FpBQyK1EWtmQuvRH6Uj+TpVEHpBac13KZCXWomUXb1n/zB6c...
language: node_js cache: yarn node_js: - '6' - '6.1' after_success: - npm run test:cover:travis script: - npm run build deploy: provider: s3 access_key_id: "${AWS_ACCESS_KEY_ID}" secret_access_key: "${AWS_SECRET_ACCESS_KEY}" region: us-west-2 bucket: hacko-housing-staging skip_cleanup: true local_dir: bui...
Replace encrypted AWS keys in Travis with environment variables
Replace encrypted AWS keys in Travis with environment variables
YAML
mit
hackoregon/housing-frontend,JohnTasto/housing-frontend,hackoregon/housing-frontend,JohnTasto/housing-frontend
e0052eabff481fc71c9806517dc10ca8bd359454
.travis.yml
.travis.yml
language: python services: - postgresql addons: postgresql: "9.4" python: - "3.5" sudo: false env: - TOXENV=py35-django110 - TOXENV=py35-django111 - TOXENV=py35-djangomaster - TOXENV=py36-django111 - TOXENV=py36-djangomaster matrix: fast_finish: true include: - python: "3.6" env: TO...
language: python services: - postgresql addons: postgresql: "9.4" python: - "3.5" sudo: false env: - TOXENV=py35-django110 - TOXENV=py35-django111 - TOXENV=py35-djangomaster - TOXENV=py36-django111 - TOXENV=py36-djangomaster matrix: fast_finish: true include: - python: "3.6" env: TOXE...
Add flake8 test to matrix
Add flake8 test to matrix
YAML
apache-2.0
menecio/django-api-bouncer
e838f875fc6000f2f063ea493754ec82ed09e16f
.travis.yml
.travis.yml
language: node_js node_js: - '7.4.0' script: - npm test - npm run build
language: node_js node_js: - '7.4.0' script: - yarn test - yarn build
Change from npm to yarn.
Change from npm to yarn.
YAML
mit
rhberro/the-react-client,rhberro/the-react-client
051a0be631d544f7128e368eeccdef912907e31d
.travis.yml
.travis.yml
branches: only: - master language: perl6 perl6: - latest
branches: only: - master language: perl6 perl6: - latest - 2015.09
Add latest stable Rakudo release for Travis CI
Add latest stable Rakudo release for Travis CI
YAML
artistic-2.0
bbkr/text_markov
82ece4e051bafa58520f4cc484d3e2830d322b63
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - '4.0' - '9.0' after_script: bash <(curl -s https://codecov.io/bash) deploy: - provider: npm email: tituswormer@gmail.com api_key: secure: RKZj6AECnSTWxRlEcVEOIYLXnF1vd0qGaRmcIeFFbwtug+r6CaOUnHs6FL+kEFEpzsmSQW7C5uSEKawrWSwXFblFSa/ZrrlKm2w9Kf3+NdM1jpVYV3q7hLk8Ridwl...
language: node_js sudo: false node_js: - '4.0' - '9.0' after_script: bash <(curl -s https://codecov.io/bash) deploy: provider: releases skip_cleanup: true api_key: secure: b8brkaR+W/WSfYwxCnS9CDuvwzBSF8jaOjIE3dlmwoqmKFhIJwU4bfNiFAJ6W2A75g1hj7tdsdG2Gzpww+9mNNyS5ag1SwqYwVJTBQ0E6QEpy8G4SJWGLnJZwM5sGvLAbR0axh0uXl...
Remove npm deployment from Travis
Remove npm deployment from Travis
YAML
mit
wooorm/automated-readability
8830c54a1d2ae319b90de788fa49e5d12e406ead
.travis.yml
.travis.yml
language: objective-c script: - bundle exec rake ci
language: objective-c rvm: system install: - sudo gem install bundler --no-ri --no-rdoc - sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future bundle install script: - bundle exec rake ci
Use to system ruby on Travis
Use to system ruby on Travis Now safe to do since Travis is running Mavericks [#69812122]
YAML
mit
wendorf/sprout-keycastr
8535e29592c217ff7d3fc103f8fae61a8056314f
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "0.10" - "0.12" - "1.2" after_success: npm run coveralls
language: node_js sudo: false node_js: - "0.10" - "0.12" - "iojs" after_success: npm run coveralls
Test io.js instead of a specific version
Test io.js instead of a specific version
YAML
mit
jstransformers/jstransformer-dust,jstransformers/jstransformer-dust
66a8dcc79420bf4a5b45104befd3d1377601d2da
.travis.yml
.travis.yml
language: ruby before_install: - gem update bundler rvm: - 2.2.3 - 2.3.0 - 2.4.0 - 2.5.0 - 2.6.0 - 2.7.0 - 3.0.0 env: global: secure: MBTxmpWCjrsNKPlOoFwJUMHze3GPMz8YCXQFQG3zJBh3WGNQnz4z91ra/1P/DClyVCxHGSFCOswxCNe4kJ2zAnPyQLqGSinXy9uDpqZQUEdaRoQbPnh4/bguZNSJ429gtTpMdDSNOgQ+Hra2EFnWwHA+rLF6ImksMsu3XGKGxGE=
language: ruby before_install: - gem update bundler rvm: - 2.2.3 - 2.3.0 - 2.4.0 - 2.5.0 - 2.6.0 - 2.7.0 - 3.0.0 - 3.1.0 env: global: secure: MBTxmpWCjrsNKPlOoFwJUMHze3GPMz8YCXQFQG3zJBh3WGNQnz4z91ra/1P/DClyVCxHGSFCOswxCNe4kJ2zAnPyQLqGSinXy9uDpqZQUEdaRoQbPnh4/bguZNSJ429gtTpMdDSNOgQ+Hra2EFnWwHA+rLF6ImksMsu3XGKGxG...
Add Ruby 3.1.0 to Travis matrix
Add Ruby 3.1.0 to Travis matrix
YAML
mit
DamirSvrtan/fasterer
f705dccebfd03d40fac6078322cae681cb428948
.travis.yml
.travis.yml
sudo: false os: - linux language: ruby install: - bundle install script: - bundle exec middleman build notifications: email: false
sudo: false os: - linux language: ruby addons: sauce_connect: username: slivingston jwt: secure: rX9MAd5tSrEKf75zbECIzhDxeAavf4HGzcndU80niBqWJAaGqm2iHwriNNZU4XTuni9PreTsTV4pJoTM/1Sv7Os3kG+2GRK2l44/KfBgLlbAeFn25M3ZBEsEP3WveAQp3cQJ94pEiuEasW6Sb6dRbRjyYVtmch6Yraii813kxuA= install: - bundle install scr...
Add Sauce Labs access key (encrypted)
TEST: Add Sauce Labs access key (encrypted)
YAML
mit
fmrchallenge/fmrbenchmark-website,fmrchallenge/fmrbenchmark-website,fmrchallenge/fmrbenchmark-website
eed7cef5630cceace0cce645c42481f6cbd510ae
.travis.yml
.travis.yml
language: python dist: xenial python: - "3.5" - "3.6" - "3.7" env: - HYPOTHESIS_PROFILE=ci script: make test lint
language: python python: - "3.5" - "3.6" env: - HYPOTHESIS_PROFILE=ci script: make test lint
Revert "Add python 3.7 (attempt 2)"
Revert "Add python 3.7 (attempt 2)" This reverts commit 14b0e9df002ab6ca23d88ddf125620dbe1d81b13.
YAML
mit
ahitrin/SiebenApp
90e0c925cd22ebb39646a02338cf671210aee148
.travis.yml
.travis.yml
language: java sudo: false addons: apt: packages: - thrift-compiler
language: java before_install: - sudo apt-get update -qq - sudo apt-get install libboost-dev libboost-test-dev libboost-program-options-dev libevent-dev automake libtool flex bison pkg-config g++ libssl-dev - wget http://www.us.apache.org/dist/thrift/0.9.1/thrift-0.9.1.tar.gz - tar xfz thrift-0.9.1.tar.gz - ...
Build the thrift compiler as a before_script
Build the thrift compiler as a before_script
YAML
apache-2.0
mathkann/aerosolve,ralic/aerosolve,airbnb/aerosolve,TDDFT/aerosolve,zcqqq/aerosolve,is00hcw/aerosolve,ralic/aerosolve,mathkann/aerosolve,airbnb/aerosolve,is00hcw/aerosolve,TDDFT/aerosolve,zcqqq/aerosolve,npujowidianto/aerosolve,npujowidianto/aerosolve