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
b1a2e3e74c2131d1c826853c0f0f49a28e7a7426
.travis.yml
.travis.yml
language: node_js node_js: - "stable" branches: only: - "master" before_script: - npm install -g gulp coveralls script: gulp
language: node_js node_js: - "lts/*" branches: only: - "master" before_script: - npm install -g gulp coveralls script: gulp
Switch Travis CI to lts node.js version
Switch Travis CI to lts node.js version
YAML
mit
zewish/rmodal.js,zewish/rmodal.js
3d71ef1f65e695369155aad8e1a19800fa410150
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.7 - 2.6 - 2.5 - 2.4 gemfile: - gemfiles/activemodel3.gemfile - gemfiles/activemodel4.gemfile - gemfiles/activemodel5.gemfile - gemfiles/activemodel6.gemfile before_install: - gem install bundler
language: ruby sudo: false rvm: - 2.7 - 2.6 - 2.5 - 2.4 gemfile: - gemfiles/activemodel3.gemfile - gemfiles/activemodel4.gemfile - gemfiles/activemodel5.gemfile - gemfiles/activemodel6.gemfile jobs: exclude: - rvm: 2.4 gemfile: gemfiles/activemodel6.gemfile before_install: - gem insta...
Exclude ruby 2.4 for activemodel6
Exclude ruby 2.4 for activemodel6
YAML
mit
lisinge/valid_email2
67cf57ea778b3d5a085f3bd46281dac0dfc2d994
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" install: "pip install -r requirements-travis.txt" script: nosetests
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" install: "pip install -r requirements-travis.txt" script: nosetests
Remove 3.3 and test 3.6.
Remove 3.3 and test 3.6.
YAML
mit
gmatteo/monty,materialsvirtuallab/monty,davidwaroquiers/monty,davidwaroquiers/monty,gmatteo/monty,materialsvirtuallab/monty
26d4bea649d0677eac89180e5dd1fdd5275cc61d
.travis.yml
.travis.yml
# Copyright (c) 2014-2015 Software Architecture Group (Hasso Plattner Institute) # Copyright (c) 2015 Fabio Niephaus, Google Inc. language: smalltalk sudo: false os: - linux - osx smalltalk: - Squeak-trunk - Squeak-5.0 - Squeak-4.6 after_success: bash $TRAVIS_BUILD_DIR/scripts/prepare_image.sh
# Copyright (c) 2014-2015 Software Architecture Group (Hasso Plattner Institute) # Copyright (c) 2015 Fabio Niephaus, Google Inc. language: smalltalk sudo: false os: - linux - osx smalltalk: - Squeak-trunk - Squeak-5.1 - Squeak-5.0 - Squeak-4.6 matrix: allow_failures: - smalltalk: Squeak-5.0 -...
Add support for 5.1, drop support for 4.6 and 5.0
Add support for 5.1, drop support for 4.6 and 5.0
YAML
mit
hpi-swa/vivide
536bfc63e7a2159e1b27c4c50e30031477af4694
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" env: - DJANGO=django==1.4.3 - DJANGO=https://github.com/django/django/archive/stable/1.5.x.zip install: - "pip install $DJANGO --use-mirrors" - "pip install -r requirements.txt --use-mirrors" - "touch bluebottle/settings/local.py" - "touch bluebottle/settings/...
language: python python: - "2.6" - "2.7" env: - DJANGO=django==1.4.3 - DJANGO=https://github.com/django/django/archive/stable/1.5.x.zip install: - "pip install $DJANGO --use-mirrors" - "pip install -r requirements.txt --use-mirrors" - "pip install Pillow --use-mirrors" - "touch bluebottle/settings/lo...
Install Pillow in Travis env.
Install Pillow in Travis env.
YAML
bsd-3-clause
onepercentclub/onepercentclub-site,onepercentclub/onepercentclub-site,onepercentclub/onepercentclub-site,onepercentclub/onepercentclub-site,onepercentclub/onepercentclub-site
6b75406446d912040aacf8416b52db7c00af5b68
.travis.yml
.travis.yml
language: cpp compiler: gcc script: - cmake -H. -DCMAKE_INSTALL_PREFIX=dist -DSURFACE_BUILD_WITH_OPENMP=On -DBUILD_SHARED_LIBS=On -DCMAKE_BUILD_TYPE=Release -Bbuild - make -C build
language: cpp compiler: gcc sudo: required install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update - sudo apt-get install -yq build-essential gcc-4.8 g++-4.8 cmake make bison flex libpthread-stubs0-dev - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 60 --sl...
Use gcc 4.8 in Travis CI build.
Use gcc 4.8 in Travis CI build.
YAML
bsd-2-clause
avr-aics-riken/SURFACE,avr-aics-riken/SURFACE,avr-aics-riken/SURFACE,avr-aics-riken/SURFACE
b6e523d177efc9d3a0b232fb71f4059f31ae84a7
.travis.yml
.travis.yml
--- language: php php: - 5.6 script: - make style-check - make test - "./bin/fetch-configlet" - "./bin/configlet ."
--- language: php php: - 5.6 script: - make style-check - make test - "./bin/fetch-configlet" - "./bin/configlet ." sudo: false
Switch to container-based Travis CI infrastructure
Switch to container-based Travis CI infrastructure
YAML
mit
camilopayan/xphp,exercism/xphp,camilopayan/xphp,exercism/xphp
b6d3bf042645f0f6fe31279cbeccb9b842921729
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 env: - SYMFONY_VERSION=3.3.* - SYMFONY_VERSION=3.4.* - SYMFONY_VERSION=4.0.* - SYMFONY_VERSION=dev-master before_script: - composer require symfony/symfony:${SYMFONY_VERSION} script: - ./vendor/bin/phpunit --coverage-text matrix: allow_failures: - env: SYMFONY_V...
language: php php: - 7.0 - 7.1 - 7.2 env: - SYMFONY_VERSION=3.3.* - SYMFONY_VERSION=3.4.* - SYMFONY_VERSION=4.0.* - SYMFONY_VERSION=dev-master before_script: - composer require symfony/symfony:${SYMFONY_VERSION} script: - ./vendor/bin/phpunit --coverage-text matrix: allow_failures: - env: S...
Add PHP 7.2 in Travis configuration
Add PHP 7.2 in Travis configuration
YAML
mit
harmony-project/ui-bundle,harmony-project/ui-bundle,harmony-project/ui-bundle
a15f507ee5059532abcdebce726cf368c0d3eed7
.travis.yml
.travis.yml
language: rust sudo: false rust: - stable - beta - nightly matrix: include: - rust: 1.36.0 before_script: | set -e if [[ $TRAVIS_RUST_VERSION = 'stable' ]]; then rustup component add rustfmt clippy fi script: | set -e cargo build cargo test ci/check-no-std.sh cargo test --all-features ...
language: rust sudo: false rust: - stable - beta - nightly matrix: include: - rust: 1.37.0 before_script: | set -e if [[ $TRAVIS_RUST_VERSION = 'stable' ]]; then rustup component add rustfmt clippy fi script: | set -e cargo build cargo test ci/check-no-std.sh cargo test --all-features ...
Update minimum required Rust to 1.37
Update minimum required Rust to 1.37 static_assertions needs this, and it's still close to that one-year-old timeframe.
YAML
mit
shepmaster/twox-hash
e2f48b60d5bc96cfc1c4e4fadd6c62adcbef1dde
.travis.yml
.travis.yml
language: python python: - "3.3" - "3.2" - "2.7" - "2.6" before_install: - wget https://dl.bintray.com/mitchellh/serf/0.4.1_linux_amd64.zip - unzip 0.4.1_linux_amd64.zip - ./serf agent & install: - pip install -e . --use-mirrors - pip install coverage coveralls pep8 script: - coverage run --source=s...
language: python python: - "3.3" - "3.2" - "2.7" - "2.6" before_install: - wget https://dl.bintray.com/mitchellh/serf/0.4.1_linux_amd64.zip - unzip 0.4.1_linux_amd64.zip - ./serf agent & install: - pip install -e . --use-mirrors - pip install coverage coveralls pep8 script: - coverage run --source=s...
Create a coverage report as part of the build
Create a coverage report as part of the build
YAML
mit
charleswhchan/serfclient-py,KushalP/serfclient-py
df94051f7b177cd4623b8c3f5962d63b7428816c
.travis.yml
.travis.yml
language: cpp compiler: - gcc # - clang # Install dependencies # install: make get-deps #install: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get -qq update && sudo apt-get -qq install g++-4.8 && sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 && export CXX=g++ && expor...
language: cpp compiler: - gcc # - clang # Install dependencies # install: make get-deps #install: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get -qq update && sudo apt-get -qq install g++-4.8 && sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 && export CXX=g++ && expor...
Revert g++ to 4.8.1 version for Travis
Revert g++ to 4.8.1 version for Travis
YAML
mit
ychaim/dark-test-v2,Bitcoinsulting/dark-test-v2,Bitcoinsulting/multigateway-v2,Bitcoinsulting/dark-test-v2,Bitcoinsulting/multigateway-v2,Bitcoinsulting/dark-test-v2,Bitcoinsulting/multigateway-v2,mezzovide/btcd,Bitcoinsulting/multigateway-v2,ychaim/dark-test-v2,Bitcoinsulting/multigateway-v2,Bitcoinsulting/multigatewa...
254d0dc130f14e350d2a5eb31aadc3fec3c324d1
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "pypy" - "pypy3" env: - DJANGO="Django<1.8" - DJANGO="Django<1.9" - DJANGO="Django<1.10" - DJANGO="Django<1.11" matrix: exclude: - env: DJANGO="Django<1.8" python: "3.5" - env: DJANGO="Django<1.10" pytho...
sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "pypy" - "pypy3" env: - DJANGO="Django<1.9" - DJANGO="Django<1.11" - DJANGO="Django<2.0" matrix: exclude: - env: DJANGO="Django<1.11" python: "pypy3" # Install dependencies. install: - pip install -q $DJANGO -...
Remove deprecated versions of python and django
Remove deprecated versions of python and django python 3.3 is end of life https://www.python.org/downloads/release/python-337/ django 1.7 is end of life django 1.9 is end of life django 1.10 will be end of life in december 2017 (Keeping it for now) Add django 1.11 to the matrix so that we can test the other pull ...
YAML
mit
discolabs/django-shopify-auth,discolabs/django-shopify-auth
5b0475eac315113392cf3e11aa56a441dd134b52
.travis.yml
.travis.yml
sudo: required services: - docker language: go go: - "1.8" script: - ./docker-build-all.sh
sudo: required services: - docker language: go go: - "1.8" install: # do nothing script: - ./docker-build-all.sh
Disable auto installation of dependencies
Disable auto installation of dependencies
YAML
mit
cs3238-tsuzu/popcon-sc,cs3238-tsuzu/popcon-sc,cs3238-tsuzu/popcon-sc,cs3238-tsuzu/popcon-sc
b4cc1c3684ed4e991efbaffbf59bdf621a0204ca
.travis.yml
.travis.yml
language: haskell install: cabal install --only-dependencies --enable-library-profiling || cabal install --only-dependencies --enable-library-profiling || cabal install --only-dependencies --enable-library-profiling script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --no-ca...
language: haskell install: cabal install --only-dependencies --enable-library-profiling || cabal install --only-dependencies --enable-library-profiling || cabal install --only-dependencies --enable-library-profiling script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --no-ca...
Add some relevant grep commands
Add some relevant grep commands
YAML
bsd-3-clause
gibiansky/hlint,mpickering/hlint,eigengrau/hlint,ndmitchell/hlint,bitemyapp/hlint,ndmitchell/hlint
52c01392dc5cf577be014b04dbbe618949c860b5
.travis.yml
.travis.yml
--- bundler_args: '--without system_tests' cache: 'bundler' language: 'ruby' script: 'bundle exec rake spec' env: - PUPPET_GEM_VERSION='~> 4.9.0' - PUPPET_GEM_VERSION='~> 4.10.0' rvm: - 2.1 - 2.2 - 2.3.4 - 2.4.1 matrix: fast_finish: true include: - env: '' rvm: 2.4.1 script: 'bundle ex...
--- bundler_args: '--without system_tests' cache: 'bundler' language: 'ruby' script: 'bundle exec rake spec' env: - PUPPET_GEM_VERSION='~> 4.9.0' - PUPPET_GEM_VERSION='~> 4.10.0' rvm: - 2.1 - 2.2 - 2.3.4 - 2.4.1 matrix: fast_finish: true include: - env: '' rvm: 2.4.1 script: 'bundle ex...
Add `BEAKER_debug=true` to acceptance tests
Add `BEAKER_debug=true` to acceptance tests
YAML
mit
joshuaspence/puppet-phabricator
7c590e625e9585e3048b49356ed5bd30ca891e81
.travis.yml
.travis.yml
rvm: - 1.8.7 #- 1.9.2 #- 1.9.3 env: #- DB=mysql #- DB=postgresql - DB=sqlite3 before_script: - "ci/setup" - "bundle exec rake db:migrate > migrate.log" script: "bundle exec rake test"
rvm: - 1.8.7 - 1.9.2 #- 1.9.3 env: - DB=mysql - DB=postgresql - DB=sqlite3 before_script: - "ci/setup" - "bundle exec rake db:migrate > migrate.log" script: "bundle exec rake test"
Reset Travis configuration with Matrix
Reset Travis configuration with Matrix
YAML
agpl-3.0
ekylibre/ekylibre,danimaribeiro/ekylibre,gaapt/ekylibre,GPCsolutions/ekylibre,ekylibre/ekylibre,ekylibre/ekylibre,gaapt/ekylibre,danimaribeiro/ekylibre,danimaribeiro/ekylibre,GPCsolutions/ekylibre,danimaribeiro/ekylibre,GPCsolutions/ekylibre,ekylibre/ekylibre,gaapt/ekylibre,ekylibre/ekylibre,gaapt/ekylibre,GPCsolutions...
68274cfb9e5227a021795e27d1524421bbc69231
.travis.yml
.travis.yml
language: java 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/ jdk: - oraclejdk8 - oraclejdk7
language: java 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/ jdk: - oraclejdk8
Remove JDK 7 from Travis config
Remove JDK 7 from Travis config Checkstyle can't be run with JDK 7. We're already setting the source compatibility to 1.7 which should be enough to ensure compatibility.
YAML
apache-2.0
filestack/filestack-java,filestack/filestack-java
005b4d041a1eb3f662e4289b7962142b34dfe786
.travis.yml
.travis.yml
# c.f. https://github.com/commercialhaskell/stack/wiki/Travis sudo: false before_install: # stack - mkdir -p ~/.local/bin - mkdir -p ~/.local/lib - export PATH=~/.local/bin:$PATH - export LD_LIBRARY_PATH=~/.local/lib:$LD_LIBRARY_PATH - ./scripts/install-z3.sh - travis_retry curl -L https://www.stackage.o...
# c.f. https://github.com/commercialhaskell/stack/wiki/Travis sudo: false before_install: # stack - mkdir -p ~/.local/bin - mkdir -p ~/.local/lib - export PATH=~/.local/bin:$PATH - export LD_LIBRARY_PATH=~/.local/lib:$LD_LIBRARY_PATH - ./scripts/install-z3.sh - travis_retry curl -L https://www.stackage.o...
Use openmpi instead of mpich
Use openmpi instead of mpich
YAML
mit
nushio3/formura,nushio3/formura,nushio3/formura,nushio3/formura,nushio3/formura,nushio3/formura
41e0b3b03e30a9e16e09eac8ae2d6a654a232d68
.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.7' ]]; then pip install futures; fi - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install futures; fi script: - pytho...
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 futures; fi - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install futures; fi - if [[ $TRAVIS_...
Install futures for python 2.6
Install futures for python 2.6
YAML
bsd-3-clause
ChinaQuants/flower,allengaller/flower,raphaelmerx/flower,asmodehn/flower,ucb-bar/bar-crawl-web,Lingling7/flower,asmodehn/flower,raphaelmerx/flower,ChinaQuants/flower,raphaelmerx/flower,pygeek/flower,alexmojaki/flower,getupcloud/flower,Lingling7/flower,pygeek/flower,ChinaQuants/flower,pj/flower,lucius-feng/flower,asmode...
5cdd7f3e68923466bcb18e1d0a4a4bf4361a5c23
.travis.yml
.travis.yml
--- language: node_js node_js: - 0.10 - 0.11 before_install: - npm install -g gulp install: - npm install script: - npm test notifications: webhooks: urls: - https://webhooks.gitter.im/e/d696c168d603e493c877 on_success: always # options: [always|never|change] default: always on_failu...
--- language: node_js node_js: - 0.10 - 0.11 - iojs-v1 before_install: - npm install -g gulp install: - npm install script: - npm test notifications: webhooks: urls: - https://webhooks.gitter.im/e/d696c168d603e493c877 on_success: always # options: [always|never|change] default: always ...
Add support for iojs in TravisCI
Add support for iojs in TravisCI
YAML
mit
sergiolepore/Cation
b9cd10d543e768296c353b71b4f0b26ebe9dffae
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - rbx - ree - jruby
rvm: - 1.9.3 # - rbx-19mode # not until rbx bug #1692 is resolved - jruby-19mode
Drop support for old rubies.
Drop support for old rubies. Rails will not support < 1.9.3 at Rails 4, so neither should we.
YAML
mit
SpencerCDixon/draper,yui-knk/draper,estum/draper,turingschool/draper,SpencerCDixon/draper,yui-knk/draper,donaldpiret/draper,totzyuta/draper,turingschool/draper,mallikarjunayaddala/draper,baberthal/draper,totzyuta/draper,drapergem/draper,Bastes/draper,chuck-john/draper,estum/draper,liwangbest/draper,drapergem/draper,chu...
936e6bcd2fd863a5d6ff9680f46626eab41cb378
java/.travis.yml
java/.travis.yml
sudo: false language: java jdk: - oraclejdk8 - oraclejdk9 - oraclejdk10 jobs: include: - stage: deploy jdk: oraclejdk8 script: - "./scripts/travis_deploy.sh" script: make default env: global: - secure: agxFqlp+zYAqPnNlc43+hYUIuMkruj2yyawD3K+5ObhgXQWHeFbGL2SWrir0sx/ZBEwa8FnSXz80Gox1wEmUKvjzlPiIkyvThm...
sudo: false language: java jdk: - oraclejdk8 - oraclejdk9 - oraclejdk10 jobs: include: - stage: deploy jdk: oraclejdk8 script: - "./scripts/mvn_deploy.sh" script: make default env: global: - secure: agxFqlp+zYAqPnNlc43+hYUIuMkruj2yyawD3K+5ObhgXQWHeFbGL2SWrir0sx/ZBEwa8FnSXz80Gox1wEmUKvjzlPiIkyvThmsDv...
Fix link to deploy script
Fix link to deploy script
YAML
mit
cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin
ffa815be5f360e8cb25b1297d432494fe783f18d
.travis.yml
.travis.yml
language: csharp env: - HOME=/home/travis APPDATA=/home/travis LocalAppData=/home/travis sudo: required #false dist: trusty dotnet: 2.1.4 mono: - latest os: - linux addons: apt: sources: - sourceline: 'deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-trusty-prod trusty main' k...
language: csharp env: - HOME=/home/travis APPDATA=/home/travis LocalAppData=/home/travis sudo: required #false dist: trusty dotnet: 2.1.4 mono: - latest os: - linux addons: apt: sources: - sourceline: 'deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-trusty-prod trusty main' k...
Update Travis to shared framework 1.1.2
Update Travis to shared framework 1.1.2
YAML
mit
csjune/mathnet-spatial,csjune/mathnet-spatial,csjune/mathnet-spatial
967569fc987cbb1c77f5c88947eae1feb0fd73d1
.travis.yml
.travis.yml
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode7.2 install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail && xcodebuild test -workspace Example/BonMot.xcworkspace -scheme BonMo...
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode7.3 install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail && xcodebuild test -workspace Example/BonMot.xcworkspace -scheme BonMo...
Build on Xcode 7.3 on Travis.
Build on Xcode 7.3 on Travis.
YAML
mit
Raizlabs/BonMot,Raizlabs/BonMot,Raizlabs/BonMot
9eba5bdc66ff3030e616510ae0ea67b974cb1573
.travis.yml
.travis.yml
sudo: false dist: bionic language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 before_script: - php -r "printf('PHP %s', phpversion());" - composer self-update - composer install --no-interaction -o script: ./vendor/bin/phpunit
sudo: false dist: trusty language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 before_script: - php -r "printf('PHP %s', phpversion());" - composer self-update - composer install --no-interaction -o script: ./vendor/bin/phpunit
Add RemainingFunds field in the Preauthorization object
Add RemainingFunds field in the Preauthorization object
YAML
mit
Mangopay/mangopay2-php-sdk,Mangopay/mangopay2-php-sdk
d9c5ec01ae276acbaf368f384a58c29c9faf5647
.travis.yml
.travis.yml
language: rust rust: nightly before_install: - sudo apt-get update -qq - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get install -y libsqlite3-dev g++-4.8 - export CXX="g++-4.8" CC="gcc-4.8" - wget https://download.libsodium.org/libsodium/releases/LATEST.tar.gz - tar zxf LATEST.tar.gz...
language: rust rust: nightly before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - sudo apt-get install -y libsqlite3-dev g++-4.8 - export CXX="g++-4.8" CC="gcc-4.8" - wget https://download.libsodium.org/libsodium/releases/LATEST.tar.gz - tar zxf LATEST.tar.gz...
Update apt-get after adding repository (not before)
Update apt-get after adding repository (not before)
YAML
apache-2.0
google/hat-backup,google/hat-backup
523e4bdb18bb99bb5ff40f36cc93310c64448200
.travis.yml
.travis.yml
dist: focal language: c env: global: - PG_PRELOAD=hll matrix: fast_finish: true include: - env: PGVERSION=9.4 - env: PGVERSION=9.5 - env: PGVERSION=9.6 - env: PGVERSION=10 - env: PGVERSION=11 - env: PGVERSION=12 - env: PGVERSION=13 before_install: - git clone -b v0.7.13 --depth 1...
dist: focal language: c env: global: - PG_PRELOAD=hll matrix: fast_finish: true include: - env: PGVERSION=9.4 - env: PGVERSION=9.5 - env: PGVERSION=9.6 - env: PGVERSION=10 - env: PGVERSION=11 - env: PGVERSION=12 - env: PGVERSION=13 - env: PGVERSION=14 before_install: - git cl...
Add PG14 to CI configs
Add PG14 to CI configs
YAML
apache-2.0
citusdata/postgresql-hll,citusdata/postgresql-hll
be609846383c5ca1f911c7fe22350411f34a7b51
.travis.yml
.travis.yml
language: rust rust: - stable after_success: | cargo doc && \ echo '<meta http-equiv=refresh content=0;url=tiny_http/index.html>' > target/doc/index.html && \ sudo pip install ghp-import && \ ghp-import -n target/doc && \ git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
language: rust rust: - stable - beta - nightly after_success: | cargo doc && \ echo '<meta http-equiv=refresh content=0;url=tiny_http/index.html>' > target/doc/index.html && \ sudo pip install ghp-import && \ ghp-import -n target/doc && \ git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git...
Test on beta and nightly channels
Test on beta and nightly channels
YAML
apache-2.0
frewsxcv/tiny-http,bomattin/tiny-http,frewsxcv/tiny-http,bomattin/tiny-http,bomattin/tiny-http,tiny-http/tiny-http
576ec937785ee9d60b27e565799c64bd0e86146f
.travis.yml
.travis.yml
language: objective-c script: Support/Scripts/objc-build-scripts/cibuild before_install: - brew update - if brew outdated | grep -qx xctool; then brew upgrade xctool; fi osx_image: xcode61
language: objective-c script: Support/Scripts/objc-build-scripts/cibuild osx_image: xcode6.4
Update TravisCI config to use Xcode 6.4
Update TravisCI config to use Xcode 6.4
YAML
mit
naqi/MagicalRecord,naqi/MagicalRecord
564e6ab6d00c1d2328a956d0689e842681f0f243
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 before_script: - sudo add-apt-repository ppa:eyecreate/haxe -y - sudo apt-get update - sudo apt-get install haxe -y - mkdir ~/haxelib - haxelib setup ~/haxelib - haxelib install hxjava - haxelib git debugger https://github.com/TiVo/debugger.git - mkdir build - mkdir report script: make ...
language: java jdk: - oraclejdk8 before_script: - sudo add-apt-repository ppa:eyecreate/haxe -y - sudo apt-get update - sudo apt-get install haxe -y - mkdir ~/haxelib - haxelib setup ~/haxelib - haxelib install hxjava - haxelib git debugger https://github.com/TiVo/debugger.git - mkdir build - mkdir report script: make ...
Add 2017.1 to Travis CI builds. Drop early 2016 builds.
Add 2017.1 to Travis CI builds. Drop early 2016 builds.
YAML
apache-2.0
winmain/intellij-haxe,EricBishton/intellij-haxe,eliasku/intellij-haxe,TiVo/intellij-haxe,TiVo/intellij-haxe,EricBishton/intellij-haxe,eliasku/intellij-haxe,winmain/intellij-haxe,HaxeFoundation/intellij-haxe,EricBishton/intellij-haxe,TiVo/intellij-haxe,winmain/intellij-haxe,HaxeFoundation/intellij-haxe,eliasku/intellij-...
0ce7bbb77daa4b4c30efef0dd7a900f22d6fdeff
.travis.yml
.travis.yml
language: node_js node_js: - 0.6 - 0.8 branches: only: - master - v0.7.100 notifications: email: - travis@nodejitsu.com irc: "irc.freenode.org#nodejitsu"
language: node_js node_js: - 0.8 branches: only: - master - v0.7.100 notifications: email: - travis@nodejitsu.com irc: "irc.freenode.org#nodejitsu"
Stop testing on node v0.6 due to incompatibility of `read`
[test] Stop testing on node v0.6 due to incompatibility of `read`
YAML
mit
mbejda/jitsu,nodejitsu/jitsu,rowhit/jitsu
9dd58d97e9c7c62b7c410f1aec2be1e9e04a38eb
.travis.yml
.travis.yml
language: go go: - 1.10.x - 1.11.x - tip script: - env GO111MODULE=on go build - env GO111MODULE=on go test
language: go go: - 1.11.x - tip script: - env GO111MODULE=on go build - env GO111MODULE=on go test
Remove 1.10 tests and only support 1.11 and up!
Remove 1.10 tests and only support 1.11 and up!
YAML
mit
ptrimble/dreamhost-personal-backup
4937bd7fd8edd132debdf5ba49ca8cf4c50a1fe7
.travis.yml
.travis.yml
language: php php: - 7.2 - 7.1 - 7.0 - 5.6 - nightly git: depth: 1 branches: only: - master matrix: fast_finish: true allow_failures: php: nightly cache: directories: - $HOME/.composer/cache/files before_script: - travis_retry composer self-update - travis_retry composer instal...
language: php php: - 7.3 - 7.2 - 7.1 - 7.0 - 5.6 - nightly git: depth: 1 branches: only: - master matrix: fast_finish: true allow_failures: php: nightly cache: directories: - $HOME/.composer/cache/files before_script: - travis_retry composer self-update - travis_retry compose...
Add PHP 7.3 to Travis
Add PHP 7.3 to Travis
YAML
mit
jwilsson/spotify-web-api-php
2889d34c2bc5ec71dbbd11ad4c33257592f7c690
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1 - 2.2 - jruby-1.7.10 script: bundle exec rspec gemfile: - spec/gemfiles/Gemfile-rspec-2.14.x - spec/gemfiles/Gemfile-rspec-2.99.x - spec/gemfiles/Gemfile-rspec-3.0.x - spec/gemfiles/Gemfile-rspec-3.1.x - spec/gemfiles/Gemfile-rspec-3.2.x
language: ruby sudo: false cache: bundler rvm: - 2.0.0 - 2.1 - 2.2 - jruby-1.7.10 script: bundle exec rspec gemfile: - spec/gemfiles/Gemfile-rspec-2.14.x - spec/gemfiles/Gemfile-rspec-2.99.x - spec/gemfiles/Gemfile-rspec-3.0.x - spec/gemfiles/Gemfile-rspec-3.1.x - spec/gemfiles/Gemfile-rspec-3.2.x
Use container-based stack and caching of TravisCI
Use container-based stack and caching of TravisCI
YAML
mit
JohnBat26/turnip_formatter,JohnBat26/turnip_formatter,gongo/turnip_formatter,gongo/turnip_formatter,JohnBat26/turnip_formatter,gongo/turnip_formatter
0c428b8683bf06a9124df4b799429f4d84e50179
.travis.yml
.travis.yml
osx_image: xcode7.3 language: objective-c before_install: - pod install script: - xctool -project PurchaseHelper.xcodeproj -scheme PurchaseHelper -sdk iphonesimulator clean build test
osx_image: xcode7.3 language: objective-c script: - xctool -project PurchaseHelper.xcodeproj -scheme PurchaseHelper -sdk iphonesimulator clean build test
Remove pod install step for build
Remove pod install step for build
YAML
mit
exsortis/PurchaseHelper
53b15ee037b16c12eb5c56cf92c543e1ef069e63
.travis.yml
.travis.yml
language: ruby rvm: - 2.3 - 2.4 - 2.5 - 2.6 - ruby-head before_install: - gem install bundler cache: bundler sudo: false matrix: allow_failures: - rvm: ruby-head
language: ruby rvm: - 2.3 - 2.4 - 2.5 - 2.6 - ruby-head before_install: - gem install bundler cache: bundler matrix: allow_failures: - rvm: ruby-head
Drop unused sudo: false directive
CI: Drop unused sudo: false directive - Blog post where they mention it is removed https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration
YAML
mit
SamSaffron/memory_profiler,dgynn/memory_profiler
e52d62f38f8bb52c1c4fe3cc858d5a803be84e42
.travis.yml
.travis.yml
language: java env: global: secure: d8h/SF0QVN0h/h5aFzPX27XfgkJXgl8ohv1K1T1ghZOzEuVneL1amczml4O6yzVWyMcsIKRj2O1UR0gstU3em4A0fKQpskPB78r4iUzWICHIkgQdW7fyIAua5PNdR/VS5feC21B9Yxf0aEFc0MvwMOiP3NNblQutMIiZVntmi7s= install: - npm install before_script: - mkdir build-copy/aws-mock-copy -p - shopt -s extgl...
language: java env: global: secure: d8h/SF0QVN0h/h5aFzPX27XfgkJXgl8ohv1K1T1ghZOzEuVneL1amczml4O6yzVWyMcsIKRj2O1UR0gstU3em4A0fKQpskPB78r4iUzWICHIkgQdW7fyIAua5PNdR/VS5feC21B9Yxf0aEFc0MvwMOiP3NNblQutMIiZVntmi7s= install: - npm install before_script: - mkdir build-copy/aws-mock-copy -p - shopt -s extgl...
Increase time to wait for server to be ready
Increase time to wait for server to be ready
YAML
mit
treelogic-swe/aws-mock,Davinder2me/aws-mock,treelogic-swe/aws-mock,treelogic-swe/aws-mock,Davinder2me/aws-mock,Davinder2me/aws-mock,Davinder2me/aws-mock,treelogic-swe/aws-mock
5aae1ad1a8b29f5aaa6df43b4c2903c200e642ca
.travis.yml
.travis.yml
language: php sudo: false cache: directories: - $HOME/.composer/cache ## Cache composer bits - .phpbench_storage ## Cache PHPBench ## PHP versions we test against php: - 7.0 - hhvm - nightly ## Build matrix for lowest and highest possible targets matrix: include: - php: 7.0 env: depen...
language: php sudo: false cache: directories: - $HOME/.composer/cache ## Cache composer bits - .phpbench_storage ## Cache PHPBench ## PHP versions we test against php: - 7.0 - 7.1 - nightly ## Build matrix for lowest and highest possible targets matrix: include: - php: 7.0 env: depend...
Replace HHVM builds by PHP 7.1
[Travis] Replace HHVM builds by PHP 7.1
YAML
mit
php-api-clients/hydrator
511c166810627c392cdf77d49c83fd5e95cfcab0
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.2 bundler_args: --without development production before_install: - cp config/twilio.yml.sample config/twilio.yml
language: ruby rvm: - 2.1.2 bundler_args: --without development production before_script: - mysql -e 'CREATE DATABASE handy_test' - cp config/database.yml.sample config/database.yml - cp config/secrets.yml.sample config/secrets.yml - cp config/twilio.yml.sample config/twilio.yml
Configure database and secrets for Travis
Configure database and secrets for Travis
YAML
mit
Pitt-CSC/handy,Pitt-CSC/handy,Pitt-CSC/handy
b88b0c63da03cbd50da1bf2ca4f1ad58bd8f7f6f
.travis.yml
.travis.yml
language: python before_install: - sudo apt update - sudo apt install gfortran python: - "3.6" - "3.7" - "3.8" install: - pip install networkx - pip install numpy - pip install pandas - pip install sympy - pip install pytest pytest-cov - python setup.py install script: - pytest -v --maxfail=1 --...
language: python before_install: - sudo apt update - sudo apt install gfortran python: - "3.6" - "3.7" - "3.8" - "3.9" install: - pip install networkx - pip install numpy - pip install pandas - pip install sympy - pip install pytest pytest-cov - python setup.py install script: - pytest -v --ca...
Extend tests to include Python 3.9 and amend pytest call
DEV: Extend tests to include Python 3.9 and amend pytest call
YAML
mit
ChrisThoung/fsic
b1d83a073525e00f87d8b4effa4804b8cb741f12
.travis.yml
.travis.yml
addons: browserstack: username: ${BROWSERSTACK_USERNAME} access_key: ${BROWSERSTACK_ACCESS_KEY} forcelocal: true language: node_js node_js: - '8' - '10' - '12' cache: directories: - node_modules stages: - test - name: browserstack if: fork IS false jobs: include: - stage: browser...
addons: browserstack: username: ${BROWSERSTACK_USERNAME} access_key: ${BROWSERSTACK_ACCESS_KEY} forcelocal: true language: node_js node_js: - '10' - '12' cache: directories: - node_modules stages: - test - name: browserstack if: fork IS false jobs: include: - stage: browserstack ...
Remove no longer supported node version
Remove no longer supported node version
YAML
mit
carhartl/js-cookie,carhartl/js-cookie,js-cookie/js-cookie,js-cookie/js-cookie
bd6d2b64a62dedfecfb85e1a047b5270676d498c
.travis.yml
.travis.yml
language: php sudo: required dist: trusty group: edge php: - 5.5 - 5.6 - 7.0 - nightly - hhvm-3.12 - hhvm-nightly before_install: - echo $TRAVIS_PHP_VERSION - travis_retry composer self-update install: - export PATH="$PATH:$HOME/.composer/vendor/bin" - travis_retry composer gl...
language: php sudo: required dist: trusty group: edge php: - 5.5 - 5.6 - 7.0 - nightly - hhvm-3.12 - hhvm-nightly matrix: allow_failures: - php: hhvm-3.12 - php: hhvm-nightly before_install: - echo $TRAVIS_PHP_VERSION - travis_retry composer self-update install: ...
Allow HHVM failure (because of nette/neon v2.4)
Allow HHVM failure (because of nette/neon v2.4)
YAML
mit
Arachne/Forms,Arachne/Forms
960acedab1860af0e4ec8dc22524891fc81abb8a
.travis.yml
.travis.yml
language: python sudo: false python: - "3.3" - "3.4" - "3.5" - "3.5-dev" - "nightly" matrix: allow_failures: - python: "3.5-dev" env: INJECTOR_VERSION=">=0.10,<0.11" FLASK_VERSION="==0.11" - python: "3.5-dev" env: INJECTOR_VERSION=">=0.11" FLASK_VERSION="==0.11" - python: "nightly" ...
language: python sudo: false python: - "3.3" - "3.4" - "3.5" - "3.6" - "nightly" matrix: allow_failures: - python: "nightly" env: INJECTOR_VERSION=">=0.10,<0.11" FLASK_VERSION="==0.11" - python: "nightly" env: INJECTOR_VERSION=">=0.11" FLASK_VERSION="==0.11" env: - INJECTOR_VERSION=">=...
Replace Python 3.5-dev builds with Python 3.6
Replace Python 3.5-dev builds with Python 3.6 Python 3.6 has been released some time ago so it's only appropriate to test with it now.
YAML
bsd-3-clause
alecthomas/flask_injector
2f3669ce20bb12905ade1b29337e7186bc923312
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - hhvm matrix: fast_finish: true allow_failures: - php: hhvm before_script: - composer self-update - composer update script: - cd $TRAVIS_BUILD_DIR - vendor/bin/phpunit -c test/phpunit.xml --coverage-clover=./build/clover.xml - vendor/bi...
language: php php: - 5.4 - 5.5 - hhvm matrix: fast_finish: true before_script: - composer self-update - composer update script: - cd $TRAVIS_BUILD_DIR - vendor/bin/phpunit -c test/phpunit.xml --coverage-clover=./build/clover.xml - vendor/bin/phpcs --standard=PSR2 -s -p src/ afte...
Remove HHVM from allowed failures
Remove HHVM from allowed failures
YAML
bsd-3-clause
spiffyjr/spiffy-dispatch
ff6f846ea40f1999f90b4a0206ff0fd8411fb328
.travis.yml
.travis.yml
language: php # php compatibility php: - 7.0 - 7.1 - 7.2 # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false before_script: - travis_retry composer self-update - travis_retry composer install --no-intera...
language: php # php compatibility php: - 7.0 - 7.1 - 7.2 # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false before_script: - travis_retry composer self-update - travis_retry composer install --no-intera...
Remove xdebug if not running on code coverage version
Remove xdebug if not running on code coverage version
YAML
mit
eclipxe13/CfdiUtils,eclipxe13/CfdiUtils
1b46cff6e613dde72df47748055a24e1d05edb5c
.travis.yml
.travis.yml
language: php php: - 5.6 - 7.0 - 7.1 - hhvm sudo: false env: global: - PHPUNIT=1 matrix: fast_finish: true include: - php: 7.1 env: PHPCS=1 PHPUNIT=0 allow_failures: - php: hhvm before_script: - composer self-update - composer install --prefer-dist --no-interaction script: ...
language: php php: - 5.6 - 7.0 - 7.1 - hhvm sudo: false env: global: - PHPUNIT=1 matrix: fast_finish: true include: - php: 7.1 env: PHPCS=1 PHPUNIT=0 allow_failures: - php: hhvm before_script: - composer self-update - composer install --prefer-dist --no-interaction script: ...
Use the phpunit from the vendor folder
Use the phpunit from the vendor folder travis passed, but "No tests executed!" ><
YAML
apache-2.0
zircote/swagger-php,DerManoMann/swagger-php
366b38f81a63a814e3a33b3ad560356198edff83
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 matrix: allowed_failures: - jruby-19mode - rbx-19mode
branches: only: - master language: ruby rvm: - 1.9.2 - 1.9.3 matrix: allow_failures: - jruby-19mode - rbx-19mode - 1.8.7
Fix syntax and run only on master
Fix syntax and run only on master
YAML
mit
stevenhaddox/gem_grepper
e5dec67c381c75b73da4acf61dde2bdcf8919e54
.travis.yml
.travis.yml
osx_image: xcode7.3 language: objective-c notifications: email: false before_install: - gem install bundler - bundle install - git remote set-url origin "https://${GITHUB_TOKEN}@github.com/carambalabs/SugarRecord.git" script: - bundle exec fastlane travis after_success: - bash <(curl -s https://codecov.io/bash)
osx_image: xcode8 language: objective-c notifications: email: false before_install: - gem install bundler - bundle install - git remote set-url origin "https://${GITHUB_TOKEN}@github.com/carambalabs/SugarRecord.git" script: - bundle exec fastlane travis after_success: - bash <(curl -s https://codecov.io/bash)
Update Travis to use Xcode 8
[feature/carthage] Update Travis to use Xcode 8
YAML
mit
carambalabs/SugarRecord,gitdoapp/SugarRecord,SwiftReactive/SugarRecord,SwiftReactive/SugarRecord,gitdoapp/SugarRecord,SugarRecord/SugarRecord,pepibumur/SugarRecord,gitdoapp/SugarRecord,SwiftReactive/SugarRecord,carambalabs/SugarRecord,pepibumur/SugarRecord,SugarTeam/SugarRecord,SugarTeam/SugarRecord,SugarTeam/SugarReco...
815786ade178dc6ae8bb88bfb79d16ed6e5a3e13
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.12" # Send coverage data to Coveralls after_success: "cat ./test_reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
sudo: false language: node_js node_js: - "4.3" # Send coverage data to Coveralls after_success: "cat ./test_reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
Use node 4.3 with Travis
Use node 4.3 with Travis
YAML
mit
ianmcburnie/jquery-rovingtabindex-js,ianmcburnie/jquery-rovingtabindex-js
96c2730446ad9baa7e4f7e50b6a2eac989562b42
.travis.yml
.travis.yml
language: java sudo: false matrix: include: - jdk: openjdk8 - jdk: oraclejdk8 - jdk: oraclejdk9 - os: osx osx_image: xcode9.2 env: JAVA_HOME=$(/usr/libexec/java_home) script: ./build.sh -Dexist.autodeploy=off -Dtest.haltonerror=true -Dtest.haltonfailure=true clean clean-all all test notifi...
language: java sudo: false matrix: include: - jdk: openjdk8 - jdk: oraclejdk8 - jdk: oraclejdk9 - jdk: oraclejdk10 - jdk: openjdk10 - jdk: openjdk11 - os: osx osx_image: xcode9.2 env: JAVA_HOME=$(/usr/libexec/java_home) script: ./build.sh -Dexist.autodeploy=off -Dtest.haltonerr...
Add further JDK's to Travis
[feature] Add further JDK's to Travis
YAML
lgpl-2.1
eXist-db/exist,lcahlander/exist,wolfgangmm/exist,adamretter/exist,lcahlander/exist,olvidalo/exist,olvidalo/exist,opax/exist,ambs/exist,eXist-db/exist,hungerburg/exist,lcahlander/exist,ambs/exist,adamretter/exist,wolfgangmm/exist,windauer/exist,hungerburg/exist,ambs/exist,dizzzz/exist,hungerburg/exist,eXist-db/exist,diz...
4a62641fa6857ac18fc7bb1434f46f7cac077182
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.3.3 - 2.4.0 install: - bundle install --jobs=3 --retry=3 --path=vendor/bundle cache: bundler: false directories: - vendor/bundle
sudo: false language: ruby rvm: - 2.3.3 - 2.4.0 install: - bundle install --jobs=3 --retry=3 --path=vendor/bundle cache: bundler: false directories: - vendor/bundle before_script: - unset RACK_ENV - unset RAILS_ENV
Clean the environment better on CI
IP-456: Clean the environment better on CI
YAML
mit
deliveroo/roo_on_rails,deliveroo/roo_on_rails,deliveroo/roo_on_rails
4afe713a9a2fec45a198a8913a6d989a5346e6c5
.travis.yml
.travis.yml
language: python python: - "3.6" cache: pip email: - seanc@seancotech.com install: - curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add - - source /etc/lsb-release - echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxd...
language: python python: - "3.6" cache: pip email: - seanc@seancotech.com install: - curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add - - source /etc/lsb-release - echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxd...
Test separate to resolve hang
Test separate to resolve hang
YAML
mit
OzuYatamutsu/klima,OzuYatamutsu/klima,OzuYatamutsu/klima
56bfa5e7fdac5d841b8f79d2abbc7e7a7c8e19f4
.travis.yml
.travis.yml
language: csharp mono: none dotnet: 2.0.0 dist: trusty env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 os: - linux - osx osx_image: xcode8.3 script: - ./build.sh
language: csharp mono: none dotnet: 2.1.4 dist: trusty env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 os: - linux - osx osx_image: xcode8.3 script: - ./build.sh
Update Travis .NET Core SDK
Update Travis .NET Core SDK
YAML
mit
henkmollema/CryptoHelper,henkmollema/CryptoHelper
8cf930888f38e588bf759fb58cc7e57b0a3e48e3
.travis.yml
.travis.yml
language: java matrix: include: - os: linux sudo: required jdk: oraclejdk8 - os: linux sudo: required jdk: openjdk11 script: ./gradlew check --info --stacktrace --console=plain --max-workers=1 --no-daemon -Dkotlin.colors.enabled=false before_cache: - rm -f $HOME/.gradle/caches/mo...
language: java matrix: include: - os: linux sudo: required jdk: oraclejdk8 - os: linux sudo: required jdk: openjdk11 script: ./gradlew check --info --stacktrace --console=plain --max-workers=1 --no-daemon --build-cache -Dkotlin.colors.enabled=false before_cache: - rm -f $HOME/.gr...
Enable local build cache on Travis
Enable local build cache on Travis Signed-off-by: Paul Merlin <a027184a55211cd23e3f3094f1fdc728df5e0500@gradle.com>
YAML
apache-2.0
gradle/gradle-script-kotlin,gradle/gradle-script-kotlin
5009cc633a7566ed8b6236976a015f6b8d77a140
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.4 before_install: gem install bundler -v 1.11.2 after_script: bundle exec rake coveralls:push env: global: - COVERALLS_REPO_TOKEN=X5ZWSPW8VW2JXNJO0qNjlZCQNW4ju89gb matrix: - AR=4.0.0 - AR=4.1.0 - AR=4.1.15 - AR=4.2.0 - AR=4.2.6 - AR=5.0.0.beta2 - AR=5.0...
language: ruby rvm: - 2.2.4 before_install: gem install bundler -v 1.11.2 after_script: bundle exec rake coveralls:push env: global: - COVERALLS_REPO_TOKEN=X5ZWSPW8VW2JXNJO0qNjlZCQNW4ju89gb matrix: - AR=4.0.0 - AR=4.1.0 - AR=4.1.15 - AR=4.2.0 - AR=4.2.6 - AR=5.0.0.beta2 - AR=5.0...
Add 5.0.0.rc1 to the build matrix
Add 5.0.0.rc1 to the build matrix
YAML
mit
rzane/baby_squeel,rzane/baby_squeel
9591a94b79e251462955dfd38cb0c8c04195d450
.travis.yml
.travis.yml
language: ruby services: - redis-server rvm: - 2.1.1 - 2.1.0 - 2.0.0 branches: only: - master notifications: email: recipients: - gabe@ga.be gemfile: - gemfiles/sidekiq_2.gemfile - gemfiles/sidekiq_master.gemfile
language: ruby services: - redis-server rvm: - 2.2 - 2.1 - 2.0.0 branches: only: - master notifications: email: recipients: - gabe@ga.be gemfile: - gemfiles/sidekiq_2.gemfile - gemfiles/sidekiq_master.gemfile
Test against Rubies 2.0.0, 2.1.x, and 2.2.x
Test against Rubies 2.0.0, 2.1.x, and 2.2.x
YAML
mit
gevans/sidekiq-throttler,markprzepiora/sidekiq-throttler,pmdeazeta/sidekiq-throttler,terryyin/sidekiq-throttler
623a7241a824a8d6bcb13a3d788e22249e12b90e
.travis.yml
.travis.yml
env: global: - BINSTAR_USER: menpo matrix: - PYTHON_VERSION: 2.7 install: - wget https://raw.githubusercontent.com/jabooth/condaci/v0.2.0/condaci.py -O condaci.py - python condaci.py setup $PYTHON_VERSION --channel $BINSTAR_USER - export PATH=$HOME/miniconda/bin:$PATH script: - python condaci.py auto ./co...
env: global: - BINSTAR_USER: menpo matrix: - PYTHON_VERSION: 2.7 install: - wget https://raw.githubusercontent.com/jabooth/condaci/v0.2.1/condaci.py -O condaci.py - python condaci.py setup $PYTHON_VERSION --channel $BINSTAR_USER - export PATH=$HOME/miniconda/bin:$PATH script: - python condaci.py auto ./co...
Move to condaci 0.2.1, quieter CI notifications
Move to condaci 0.2.1, quieter CI notifications
YAML
bsd-3-clause
menpo/conda-enum
49569b6139cd4002537c5e51638a047dc26cae8b
.travis.yml
.travis.yml
distro: trusty sudo: false language: php php: - 7.0 - 7.1 - 7.2 - 7.3 services: - mysql before_script: - npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev - mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci" - mysql -u root ...
distro: trusty sudo: false language: php php: - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 matrix: allow_failures: - php: 7.4 services: - mysql before_script: - npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev - mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8m...
Add PHP 7.4 to unit tests
Add PHP 7.4 to unit tests
YAML
lgpl-2.1
xetown/xe-core,xetown/xe-core,xetown/xe-core
d6ab94a87fa872cd11c108ce552743f78ab16f32
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 - openjdk7 before_install: - sudo apt-get update -qq - if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi - wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz - echo "Installing android SDK into ...
language: java jdk: - oraclejdk7 - openjdk7 before_install: - sudo apt-get update -qq - if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi - wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz - echo "Installing android SDK into ...
Reduce the set of things needed for building the android examples.
Reduce the set of things needed for building the android examples.
YAML
apache-2.0
murugespandian/dagger,ze-pequeno/dagger,AttwellBrian/dagger,yawkat/dagger,CQUMonk/dagger,IgorGanapolsky/dagger,CQUMonk/dagger,yawkat/dagger,wangqi504635/dagger,bboyfeiyu/dagger,Gurtz/dagger,DavidMihola/dagger,awesome-niu/dagger,DirtyUnicorns/android_external_square_dagger,goinstant/dagger,ze-pequeno/dagger,18611480882/...
b4967b1b57968af818e4d990f746e8bd362d287f
.travis.yml
.travis.yml
language: node_js node_js: - 8 - 10 - 12 - node matrix: include: - name: Lint node_js: 12 script: npm run lint script: npm run test:ci after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
language: node_js node_js: - 10 - 12 - 14 - node matrix: include: - name: Lint node_js: 14 script: npm run lint script: npm run test:ci after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
Drop support for node.js <10, add 14, lint with 14 (semver-major)
Drop support for node.js <10, add 14, lint with 14 (semver-major)
YAML
bsd-3-clause
papandreou/express-extractheaders
e125e1b2564123893ef95626d3146244fae5a84d
.travis.yml
.travis.yml
language: c compiler: clang script: cd build_systems/make && make && ./tests
language: c compiler: - clang - gcc script: cd build_systems/make && make && ./tests
Add GCC to Travis CI config.
Add GCC to Travis CI config.
YAML
apache-2.0
ajsecord/vector_t,ajsecord/vector_t
9889574e41e13b11bd721467ace4ebbbcfa4bafc
.travis.yml
.travis.yml
language: php sudo: false php: - 5.6 - 7.0 - hhvm env: global: - setup=basic - coverage=no 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 [[ $set...
language: php sudo: false php: - 5.6 - 7.0 - 7.1 env: global: - setup=basic - coverage=no 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 [[ $setu...
Remove hhvm and add 7.1
Remove hhvm and add 7.1 Signed-off-by: crynobone <e1a543840a942eb68427510a8a483282a7bfeddf@gmail.com>
YAML
mit
orchestral/control,orchestral/control
71c909a5d6aecee8d89b97b16ef573e027d2038e
.travis.yml
.travis.yml
language: php sudo: false matrix: include: - php: 5.6 - php: 7.0 - php: 7.1 - php: 7.0 env: COMPOSER_FLAGS="--prefer-lowest" - php: hhvm-3.9 dist: trusty before_script: - curl --version - composer self-update - composer update --no-interaction --n...
language: php sudo: false matrix: include: - php: 5.6 - php: 7.0 - php: 7.1 # - php: 7.0 # env: COMPOSER_FLAGS="--prefer-lowest" - php: hhvm-3.9 dist: trusty before_script: - curl --version - composer self-update - composer update --no-interaction -...
Disable prefer-lowest build until fixed
Disable prefer-lowest build until fixed
YAML
mit
omines/directadmin,omines/directadmin
8734cca37e540a7805025f33dc951f6325dbc0ef
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5.1' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Test with latest Node.js 5 on Travis CI.
Test with latest Node.js 5 on Travis CI.
YAML
mit
bigeasy/procession
6d800db19beaf074395a0b46e08b27e47370e95c
.travis.yml
.travis.yml
language: php git: depth: 2 matrix: include: - php: hhvm - php: nightly - php: 8.0 - php: 7.4 - php: 7.3 - php: 7.2 - php: 7.1 - php: 7.0 env: - LINT=true fast_finish: true allow_failures: - php: nightly - php: hhvm cache: directories: - $HOME/.compos...
language: php git: depth: 2 matrix: include: - php: hhvm - php: nightly - php: 8.0 - php: 7.4 - php: 7.3 - php: 7.2 - php: 7.1 env: - LINT=true fast_finish: true allow_failures: - php: nightly - php: hhvm cache: directories: - $HOME/.composer/cache - ...
Stop testing on php7.0 since it's no longer supported
Stop testing on php7.0 since it's no longer supported
YAML
mit
jonathantorres/construct,jonathantorres/construct
110ecced3290e8ad0cfad5fc3a1c07ab1241bc9f
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" install: "pip install ." script: python tests.py
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" install: "pip install ." script: python tests.py
Test on Python 3.5 as well.
Test on Python 3.5 as well.
YAML
mit
izacus/pysolarized
80fb87a2ddb16f19a8d44c065eeb838d13dfaade
.travis.yml
.travis.yml
language: php php: - 7.1 mysql: database: activecollab_database_migrations_test username: root encoding: utf8mb4 install: - composer install --dev - phpunit --version before_script: - mysql -e 'create database activecollab_database_migrations_test' script: phpunit
language: php php: - 7.1 mysql: database: activecollab_database_migrations_test username: root encoding: utf8mb4 install: - composer install --dev - phpunit --version before_script: - mysql -e 'create database activecollab_database_migrations_test' script: vendor/bin/phpunit
Fix phpunit tests on Travis-CI
Fix phpunit tests on Travis-CI
YAML
mit
activecollab/databasemigrations
831f7234d71ada253d912a1f264f187b6f340d63
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - '0.10' - '0.12' deploy: provider: npm email: npmjs@appcelerator.com api_key: secure: JiXCmFOCnhQ/XxIty077stQRNDzBnK68oJrTO5DvJxL+ztwLQLP///0sUiJbQL0y++dC+G2GbyhQi/mGj0p2cN3bWgNb+0RL6YBxaF+HBaw1COBBvBlEwF5fFpDXWpVVf5p3dT/+KHM5gQhnFFOZeaObH5AIDkR0Y56ayHLhO08= on: t...
language: node_js sudo: false node_js: - '0.10' - '0.12'
Remove auto-deploy as this is handled by Jenkins now.
Remove auto-deploy as this is handled by Jenkins now.
YAML
apache-2.0
appcelerator/appc-logger,titanium-forks/appcelerator.appc-logger
4a1d08de5356cf41fca82889db33bbaebc07dc96
.travis.yml
.travis.yml
language: go go: - 1.2 - 1.3 - tip before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get code.google.com/p/go.tools/cmd/cover install: - go get github.com/stretchr/testify/assert - go get github.com/dgryski/go-jump - go get github.com/GaryBoone/GoStats/stats...
language: go go: - 1.2 - 1.3 - 1.4 before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get code.google.com/p/go.tools/cmd/cover install: - go get github.com/stretchr/testify/assert - go get github.com/dgryski/go-jump - go get github.com/GaryBoone/GoStats/stats...
Add Go 1.4 to Travis-CI
Add Go 1.4 to Travis-CI
YAML
mit
blacklabeldata/ring
d8192f786c6d0acf4b7e07d7284b5c4c18f539d7
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' - '4' - '5' - '6' notifications: email: - eoin.shanaghy@gmail.com
language: node_js node_js: - '4' - '5' - '6' notifications: email: - eoin.shanaghy@gmail.com
Drop support for Node 0.10
Drop support for Node 0.10
YAML
isc
eoinsha/tick-map
d56c15059a6074ef638f313393cbfc7a9b17680c
.travis.yml
.travis.yml
language: python python: - '2.6' - '2.7' install: - pip install -r dev-requirements.txt --use-mirrors - pip install coverage - pip install coveralls script: - python setup.py test after_success: coveralls deploy: provider: pypi user: luizirber password: secure: etFmy6JEQdR9T5uJbOVpdnP754Qbk4j0s0vjkSOCs9JfynZr...
language: python python: - '2.6' - '2.7' - '3.2' - '3.3' install: - pip install -r dev-requirements.txt --use-mirrors - pip install coverage - pip install coveralls script: - python setup.py test after_success: coveralls deploy: provider: pypi user: luizirber password: secure: etFmy6JEQdR9T5uJbOVpdnP754Qbk4j0...
Revert "removing Python 3 from testing. Maybe we can include them in the future."
Revert "removing Python 3 from testing. Maybe we can include them in the future." This reverts commit 40c6fccf393f042036c979cd187c325f35717a06.
YAML
bsd-3-clause
DataSounds/DataSounds
307685e5a1f5759a427daba131e29ce0014e325d
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: - 2.5 - 2.6 env: - DB=pg - DB=mysql2 - DB=sqlite3 gemfile: - gemfiles/gemfile_42.gemfile - gemfiles/gemfile_50.gemfile - gemfiles/gemfile_51.gemfile - gemfiles/gemfile_52.gemfile - gemfiles/gemfile_60.gemfile services: - mysql - postgresql befo...
sudo: false language: ruby cache: bundler rvm: - 2.5 - 2.6 - 2.7 env: - DB=pg - DB=mysql2 - DB=sqlite3 gemfile: - gemfiles/gemfile_42.gemfile - gemfiles/gemfile_50.gemfile - gemfiles/gemfile_51.gemfile - gemfiles/gemfile_52.gemfile - gemfiles/gemfile_60.gemfile services: - mysql - postgres...
Add tests with ruby 2.7
Add tests with ruby 2.7
YAML
mit
kbrock/ancestry,stefankroes/ancestry
d63143b38e6e9adc559c3a275498198c123a7b69
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "4" - "6" - iojs script: "npm run-script test-cover" after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls" sudo: false
language: node_js node_js: - "0.10" - "0.12" - "4" - "6" - "8" - iojs script: "npm run-script test-cover" after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls" sudo: false
Add Node.js version 8.* to Travis CI builds.
Add Node.js version 8.* to Travis CI builds.
YAML
mit
DavidAnson/markdownlint,DavidAnson/markdownlint
277854eef0194155f70ef11cecc23af0bc1eec9f
.travis.yml
.travis.yml
language: android android: components: - tools - platform-tools - tools - build-tools-27.0.1 - android-27 - extra-google-m2repository before_install: - chmod +x gradlew before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/...
language: android branches: except: - l10n_master android: components: - tools - platform-tools - tools - build-tools-27.0.1 - android-27 - extra-google-m2repository before_install: - chmod +x gradlew before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HO...
Exclude Crowdin branch from Travis
Exclude Crowdin branch from Travis
YAML
apache-2.0
nikita36078/J2ME-Loader,nikita36078/J2ME-Loader,nikita36078/J2ME-Loader,nikita36078/J2ME-Loader
0b098714e1569951cb64ec6c76aef03e27c2c396
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - jruby before_install: - gem install bundler script: bundle exec rake matrix: allow_failures: - rvm: jruby fast_finish: true cache: bundler
language: ruby rvm: - 1.9.3 - jruby before_install: - gem install bundler - sudo apt-get update -qq - sudo apt-get install -qq graphviz script: bundle exec rake matrix: allow_failures: - rvm: jruby fast_finish: true cache: bundler
Add installation of graphviz to before_install
Add installation of graphviz to before_install
YAML
mit
nalabjp/rails-erd,qiujuer/rails-erd,qiujuer/rails-erd,mallikarjunayaddala/rails-erd,sferik/rails-erd,voormedia/rails-erd,kerrizor/rails-erd,kerrizor/rails-erd,mallikarjunayaddala/rails-erd,nalabjp/rails-erd,voormedia/rails-erd,sferik/rails-erd
279d37bb0d904ef55d64429bff4265131d497c04
.travis.yml
.travis.yml
language: python env: - TOXENV=py26 - TOXENV=py27 - TOXENV=pypy - TOXENV=py32 - TOXENV=py33 - TOXENV=py34 - TOXENV=cover install: - travis_retry pip install tox==1.6.1 script: - travis_retry tox notifications: email: - brian@kyr.us
language: python env: - TOXENV=py26 - TOXENV=py27 - TOXENV=pypy - TOXENV=py33 - TOXENV=py34 - TOXENV=cover install: - travis_retry pip install tox==1.6.1 script: - travis_retry tox notifications: email: - brian@kyr.us
Remove Python 3.2 Travis config
Remove Python 3.2 Travis config Summary: Doesn't look like 3.2 is supported anymore: ``` /home/travis/virtualenv/python2.7.12/lib/python2.7/site-packages/virtualenv_support/pip-8.1.2-py2.py3-none-any.whl/pip/_vendor/pkg_resources/__init__.py:80: UserWarning: Support for Python 3.0-3.2 has been dropped. Future version...
YAML
mit
kyrus/python-junit-xml
db238b0287bc38e3e4342859f9c289c7928d63dd
.travis.yml
.travis.yml
--- language: ruby sudo: false cache: bundler before_install: "gem update bundler" script: "bundle exec rake ci" rvm: - 2.0.0 - 2.1.10 - 2.2.9 - 2.3.6 - 2.4.4 - 2.5.1 - ruby-head - jruby-9.1.5.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-9.1.5.0 - rvm: jruby-head ...
--- language: ruby sudo: false cache: bundler before_install: "gem update bundler -v '< 2.0'" script: "bundle exec rake ci" rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 - 2.6.1 - ruby-head - jruby-9.1.5.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-9.1.5.0 ...
Change to update to latest rubies
Change to update to latest rubies
YAML
mit
peter-murach/tty-progressbar
953e7c600b55deafe6f3eeb0394b2dfbfa3ada59
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "io.js" sudo: false script: "gulp coverage" after_success: - npm install -g codeclimate-test-reporter - codeclimate < coverage/lcov.info
language: node_js node_js: - "0.10" - "0.12" sudo: false script: "gulp coverage" after_success: - npm install -g codeclimate-test-reporter - codeclimate-test-reporter < coverage/lcov.info
Fix code coverage and remove io.js
Fix code coverage and remove io.js
YAML
mit
RoundingWellOS/marionette.toolkit.routerapp,RoundingWellOS/marionette.toolkit.routerapp
589db52227d6da42a0c8f379e862ef19372d9d37
.travis.yml
.travis.yml
--- sudo: true language: ruby cache: directories: - vendor/bundle install: ./spec/scripts/install.sh script: ./spec/scripts/run.sh before_install: rm -f Gemfile.lock matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.6.0" - rvm: 1.8.7 env: PUPPET_VERS...
--- sudo: true language: ruby cache: directories: - vendor/bundle install: ./spec/scripts/install.sh script: ./spec/scripts/run.sh before_install: rm -f Gemfile.lock matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.6.0" - rvm: 1.8.7 env: PUPPET_VERS...
Support for strict variables in Puppet
Support for strict variables in Puppet
YAML
apache-2.0
wavesoftware/puppet-xtreemfs,wavesoftware/puppet-xtreemfs
5acc8fdbc444becf33e971ad5cb1a313f564ad60
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "pypy" script: # need to skip pylint on 3.5 since it doesn't work yet. - if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then pylint basilisk --rcfile=.pylintrc; fi - coverage run --source=basilisk -m basilisk.tests && coverage report -m - cd docs &...
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "pypy" services: - redis - elasticsearch script: # need to skip pylint on 3.5 since it doesn't work yet. - if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then pylint basilisk --rcfile=.pylintrc; fi - coverage run --source=basilisk -m basilisk.tes...
Fix Travis build - added services.
Fix Travis build - added services.
YAML
mit
bonnierpolska/basilisk
12f37569aee99d6156a9f40e36f91182eeb80d2e
.travis.yml
.travis.yml
language: c compiler: - clang - gcc script: make
language: c compiler: - clang - gcc script: make install: - if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install libedit-dev; fi
Add libedit dependency for linux targets
Add libedit dependency for linux targets
YAML
mit
RyuKojiro/v6502
281bd3fd07a5b4c28a23b99b6dbb528cc05624ab
.travis.yml
.travis.yml
language: haskell install: - cabal sandbox init - - git clone https://github.com/elm-lang/elm-compiler.git - cd elm-compiler - cabal sandbox init --sandbox .. - cabal install - cd .. - - git clone https://github.com/elm-lang/elm-package.git - cd elm-package - cabal sandbox init --sandbox .. - ca...
language: haskell install: - npm install -g elm@0.16.0 - elm package install --yes script: - tests/run-test.sh
Use npm instead of building compiler from src
Use npm instead of building compiler from src
YAML
bsd-3-clause
Pisys/core,Pisys/core,rgrempel/core,martinos/core,martinos/core,rgrempel/core
007da69cfc68698dec1140eb3d9cc6dfcb398734
.travis.yml
.travis.yml
language: go # Versions of go that are explicitly supported. go: - 1.4.3 - 1.5.4 - 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 script: - go build -a -v ./... - diff <(gofmt -d .) <("") - go test -v -covermode=count ...
language: go # Versions of go that are explicitly supported. go: - 1.4.3 - 1.5.4 - 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 script: - go build -a -v ./... - diff <(gofmt -d .) <("") - go test -v -covermode=count ...
Remove token for Travis because repo is public.
Remove token for Travis because repo is public.
YAML
bsd-3-clause
grafov/kiwi
9722069f042e9fcb1ab5287043498b39d41efeb4
.travis.yml
.travis.yml
language: node_js node_js: - "8.1.2" env: - CXX=g++-4.8 notifications: slack: niobi:WW01STIxrmCAQfbm9FZzW30v addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
language: node_js node_js: - "8.2.1" env: - CXX=g++-4.8 notifications: slack: niobi:WW01STIxrmCAQfbm9FZzW30v addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
Update build server node version to latest stasble
Update build server node version to latest stasble
YAML
mit
FrescoDev/pangiia-api
b825dc296a3dfb5c691e8d165d3c6b47fc1304b6
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 - 0.10 - 0.11 before_install: - sudo apt-get update - sudo apt-get install mysql libmysqld-dev script: - make benchmark
language: node_js node_js: - 0.8 - 0.10 - 0.11 before_install: - sudo apt-get update - sudo apt-get install mysql-server libmysqlclient-dev script: - make benchmark
Fix Ubuntu MySQL packages names
Fix Ubuntu MySQL packages names
YAML
mit
Sannis/node-mysql-benchmarks,Sannis/node-mysql-benchmarks,Sannis/node-mysql-benchmarks,Sannis/node-mysql-benchmarks
3620599d773e9c4924acc7e40061047c75bac574
.travis.yml
.travis.yml
language: php sudo: false notifications: email: on_success: never php: - 7.2 - 7.3 - 7.4 - nightly env: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" stages: - test - test with coverage cache: directories: - $HOME/.composer/cache before_install: - phpenv config-rm xdebug.in...
language: php sudo: false notifications: email: on_success: never php: - 7.3 - 7.4 - nightly env: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" stages: - test - test with coverage cache: directories: - $HOME/.composer/cache before_install: - phpenv config-rm xdebug.ini || ech...
Upgrade to PHP 7.3 minimum
Upgrade to PHP 7.3 minimum
YAML
mit
mnapoli/phpunit-easymock
85d6fd69374fb1853c1ed721125e4622cdedd815
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode script: bundle exec rake travis
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode before_install: gem update --remote bundler script: bundle exec rake travis
Update bundler on Travis CI so that minitest installation does not fail
Update bundler on Travis CI so that minitest installation does not fail https://github.com/bundler/bundler/issues/2780
YAML
mit
irfanah/transpec,irfanah/transpec,yujinakayama/transpec,yujinakayama/transpec
18e56cc6c2f999f373e8c358c8addd574596e8c1
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use ...
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use ...
Drop oraclejdk7 from the Travis-CI build.
Drop oraclejdk7 from the Travis-CI build.
YAML
apache-2.0
ok2c/httpclient,UlrichColby/httpcomponents-client,apache/httpcomponents-client
a20e1c6e0e5f3d76a5376e1da274ed29cf2952fe
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" install: python setup.py develop script: python setup.py test services: - mongodb
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: python setup.py develop script: python setup.py test services: - mongodb
Add Python 3.3 to the list of python versions supported
Add Python 3.3 to the list of python versions supported
YAML
agpl-3.0
Yaco-Sistemas/yith-library-server,lorenzogil/yith-library-server,lorenzogil/yith-library-server,Yaco-Sistemas/yith-library-server,Yaco-Sistemas/yith-library-server,lorenzogil/yith-library-server
d9d0fd5f8862d5e7f838b266ca282bbcbd89a457
.travis.yml
.travis.yml
language: node_js node_js: - "8" before_install: - npm i -g npm@6.0.1 - npm i -g greenkeeper-lockfile@1 before_script: greenkeeper-lockfile-update after_script: greenkeeper-lockfile-upload
language: node_js node_js: - "8" install: npm install before_install: - npm i -g npm@6.1.0 - npm i -g greenkeeper-lockfile@1 before_script: greenkeeper-lockfile-update after_script: greenkeeper-lockfile-upload
Use NPM@6.1 and npm install for TravisCI
Use NPM@6.1 and npm install for TravisCI
YAML
mit
lentz/buddyduel,lentz/buddyduel,lentz/buddyduel
73f473732712cf12a46722b5c1504120389cb6a6
.travis.yml
.travis.yml
language: node_js node_js: - "4" cache: bundler: true directories: - travis-phantomjs - node_modules before_install: - "if [ $(phantomjs --version) != '2.1.1' ]; then rm -rf $PWD/travis-phantomjs; mkdir -p $PWD/travis-phantomjs; fi" - "if [ $(phantomjs --version) != '2.1.1' ]; then wget https://git...
language: node_js node_js: - "4" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 cache: bundler: true directories: - travis-phantomjs - node_modules before_install: - "if [ $(phantomjs --version) != '2.1.1' ]; then rm -rf $PWD/travis-pha...
Add GCC 4.8 in Travis VM
Add GCC 4.8 in Travis VM
YAML
mit
jonataswalker/timepicker.js,jonataswalker/timepicker.js
c86e00d22e28cd3d030df0a5b1a375b85c0413fc
.travis.yml
.travis.yml
language: go go: - 1.7.x - 1.8.x - 1.9.x - 1.10.x - 1.11.x - 1.12.x - tip gobuild_args: -tags no_pkg_config dist: xenial addons: apt: packages: - bison - flex - automake - autoconf - libtool - make - gcc before_install: - wget --no-verbose -O- https://github.com/VirusTotal/yar...
language: go go: - 1.7.x - 1.8.x - 1.9.x - 1.10.x - 1.11.x - 1.12.x - 1.13.x - 1.14.x - tip gobuild_args: -tags no_pkg_config dist: xenial addons: apt: packages: - bison - flex - automake - autoconf - libtool - make - gcc before_install: - wget --no-verbose -O- https://githu...
Add Go 1.13 and 1.14 to Travis configuration
Add Go 1.13 and 1.14 to Travis configuration
YAML
bsd-2-clause
hillu/go-yara,hillu/go-yara,VirusTotal/go-yara
5d2f597a6e70dc673b1e3d3c0f100caf141407b0
.travis.yml
.travis.yml
language: php install: - travis_wait composer update --no-interaction - mkdir -p build/logs php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm - nightly script: - vendor/bin/phpunit after_script: - travis_retry bin/coveralls.sh
language: php install: - mkdir -p build/logs php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm - nightly script: - travis_wait composer update --prefer-lowest --no-interaction && vendor/bin/phpunit - travis_wait composer update --no-interaction && vendor/bin/phpunit after_script: - travis_retr...
Test the lowest and the highest versions of vendors
Test the lowest and the highest versions of vendors
YAML
mit
awesomite/stack-trace,awesomite/stack-trace
a54d508dda5c52cf0702cc9a30ce060c07b486b6
.travis.yml
.travis.yml
language: node_js node_js: - "5" - "4" - "0.12" - "0.10"
language: node_js node_js: - "5" - "4" - "0.12" - "0.10" matrix: env: global: - CI_TEST=no-lint include: - node_js: "5" script: npm run lint env: - CI_TEST=lint-only cache: directories: - node_modules
Enable linting and caching in Travis
Enable linting and caching in Travis
YAML
isc
patrislav/rummy.js
d2fe660bf6af27b881d0331bbfc94e5a9b944b96
.travis.yml
.travis.yml
language: ruby before_script: - rake setup rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head env: - USE_RUBYGEMS="1.8.25" - USE_RUBYGEMS="2.0.3" - USE_RUBYGEMS="2.2.2" matrix: exclude: - rvm: 2.0.0 env: USE_RUBYGEMS="1.8.25"
language: ruby before_script: - rake setup rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.1 - ruby-head env: - USE_RUBYGEMS="1.8.25" - USE_RUBYGEMS="2.0.3" - USE_RUBYGEMS="2.2.2" matrix: exclude: - rvm: 2.0.0 env: USE_RUBYGEMS="1.8.25"
Test against Ruby 2.1.1 instead of 2.1.0
Test against Ruby 2.1.1 instead of 2.1.0 Always test against latest official release.
YAML
mit
luislavena/gem-compiler
f265ef009ccd7f919f7db423d4cccd1e15cc58fa
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" install: npm -g install jshint && echo -e "\x1b\x5b35;1m*** Checking out Enyo\x1b\x5b0m" && cd .. && git clone --depth 1 -b 2.5-gordon https://github.com/enyojs/enyo.git enyo && mkdir lib && mv moonstone lib/moonstone script: echo -e "\x1b\x5b35;1m*** Runn...
language: node_js node_js: - "0.10" install: npm -g install jshint && echo -e "\x1b\x5b35;1m*** Checking out Enyo\x1b\x5b0m" && cd .. && git clone --depth 1 https://github.com/enyojs/enyo.git enyo && mkdir lib && mv moonstone lib/moonstone script: echo -e "\x1b\x5b35;1m*** Running JSHint\x1b...
Remove specification of 2.5-gordon branch.
ENYO-866: Remove specification of 2.5-gordon branch. Enyo-DCO-1.1-Signed-off-by: Aaron Tam <aaron.tam@lge.com>
YAML
apache-2.0
mcanthony/moonstone,mcanthony/moonstone,mcanthony/moonstone,enyojs/moonstone
4f2890bf33c3e1ba230d50a066f0444bf57c2d5a
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" before_install: - npm install -g grunt-cli - gem install compass script: - grunt lint+test
language: node_js node_js: - "0.10" before_install: - npm install -g grunt-cli bower - gem install compass before_script: - bower install script: - grunt lint+test
Install bower components before running grunt task in Travis CI
Install bower components before running grunt task in Travis CI
YAML
mit
alefteris/pushupsw3
64bb3c76cd263d5833bf458dd6430d6311b6ba61
.travis.yml
.travis.yml
language: cpp sudo: true matrix: include: # Linux g++ build - os: linux addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-6 env: - MATRIX_EVAL="CC=gcc-6 && CXX=g++-6" # Linux clang++ build - os: linux addons:...
language: cpp sudo: required matrix: include: # Linux GCC 6 build - os: linux compiler: gcc addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-6 env: - COMPILER='g++-6' # Linux GCC 7 build - os: linux co...
Add more builds and update OSX image versions
Add more builds and update OSX image versions On Ubuntu Trusty: * GCC 6 * GCC 7 * Clang 4 * Clang 5 On OS X: * GCC on Xcode8 * GCC on Xcode9 * Clang on Xcode8 * Clang on Xcode9
YAML
mit
faheel/Algos,faheel/Algos,eskeype/Algos
83c9e422efd18ad16d4400c5e58a168e43c2ddb5
.travis.yml
.travis.yml
language: android sudo: required jdk: - oraclejdk8 android: components: - tools - build-tools-23.0.2 - android-23 - extra # https://github.com/travis-ci/travis-ci/issues/3259 script: - sudo apt-get update && sudo apt-get install oracle-java8-installer - java -version
language: android sudo: required dist: trusty # https://github.com/travis-ci/travis-ci/issues/3259 jdk: - oraclejdk8 android: components: - tools - build-tools-23.0.2 - android-23 - extra
Use trusty dist for updated Java 8 version
Use trusty dist for updated Java 8 version
YAML
apache-2.0
sakuna63/requery,requery/requery,sakuna63/requery,requery/requery
b2acefa83da81342ed97080b6ec51c1c0cf3c3f5
.travis.yml
.travis.yml
language: java # Fixes Travis memory issue env: - JAVA_TOOL_OPTIONS="-Xmx2048m -Xms512m" jdk: - oraclejdk8 # fixes SWT display problem before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start script: - mvn clean verify
# Use latest stuff dist: xenial language: java jdk: - openjdk8 # Creates a display for SWT services: - xvfb script: - mvn clean verify
Use OpenJDK, remove heap options, use xenial and xvfb service
[Travis] Use OpenJDK, remove heap options, use xenial and xvfb service
YAML
mit
archimatetool/archi,archimatetool/archi,archimatetool/archi