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
5cb3e934daec386313e1f73884358429312f02a2
.travis.yml
.travis.yml
language: node_js node_js: - 8 - 6 sudo: false cache: yarn: true
language: node_js node_js: - 9 - 8 - 6 sudo: false cache: yarn: true
Test on node 9 as well
Test on node 9 as well
YAML
mit
AviVahl/htap
dea5e42bb756e084661d751b5076b6f2ff3fa462
.travis.yml
.travis.yml
dist: trusty addons: chrome: stable sudo: required language: node_js script: - npm run buildAndTest node_js: - "10" - "stable" cache: directories: - node_modules notifications: email: recipients: secure: fe88XKh8U+bt2eSkZFKPG//d1i/pYEcG9WqXGRwRd1YzrhM9DVOUPXN5xhNADgfBK0PNZUEga+UMlAcrtt6...
dist: xenial addons: chrome: stable sudo: required language: node_js script: - npm run buildAndTest node_js: - "10" - "stable" cache: directories: - node_modules notifications: email: recipients: secure: fe88XKh8U+bt2eSkZFKPG//d1i/pYEcG9WqXGRwRd1YzrhM9DVOUPXN5xhNADgfBK0PNZUEga+UMlAcrtt6...
Update Travis CI build to Xenial
Update Travis CI build to Xenial
YAML
mit
onsip/SIP.js,onsip/SIP.js
00364571f52e8c7700263a740582f68bb2db564e
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "8" - "10" script: - yarn run test:coverage before_deploy: - npm install -g auto-dist-tag - auto-dist-tag --write deploy: provider: npm email: stefan.penner+ember-cli@gmail.com api_key: secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3IoLe36z3P2Kuq...
language: node_js node_js: - "6" - "8" - "10" - "11" script: - yarn run test:coverage before_deploy: - npm install -g auto-dist-tag - auto-dist-tag --write deploy: provider: npm email: stefan.penner+ember-cli@gmail.com api_key: secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3IoLe...
Add Node 11 to test matrix
CI: Add Node 11 to test matrix
YAML
mit
ef4/broccoli-uglify-sourcemap,ef4/broccoli-uglify-sourcemap
11c98a23b232cb21c7daab797fd63875c2970681
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - "0.9" - "0.8" - "0.6" - "0.4" before_install: - '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6' sudo: false matrix: fast_finish: true allow_failures: - node_js: "0.11" - node_js: "0.9" - node_js: "0.6" - node_js: "0.4"...
language: node_js node_js: - "iojs-v1.8" - "iojs-v1.7" - "iojs-v1.6" - "iojs-v1.5" - "iojs-v1.4" - "iojs-v1.3" - "iojs-v1.2" - "iojs-v1.1" - "iojs-v1.0" - "0.12" - "0.11" - "0.10" - "0.9" - "0.8" - "0.6" - "0.4" before_install: - '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g...
Test on latest `iojs` and `node` versions.
Test on latest `iojs` and `node` versions.
YAML
mit
ljharb/is-number-object
34ab24bf35dde7e49d7ce39586acdecc0d580431
.travis.yml
.travis.yml
dist: bionic language: python python: - 2.8 - 3.5 - 3.6 - 3.7 - 3.8 - pypy # safelist branch to build branches: only: - master install: - python setup.py sdist - pip install dist/`python setup.py --name`-`python setup.py --version`.tar.gz - pip install -r requirements.txt - pip install -r r...
dist: bionic language: python python: - 3.5 - 3.6 - 3.7 - 3.8 - pypy # safelist branch to build branches: only: - master install: - python setup.py sdist - pip install dist/`python setup.py --name`-`python setup.py --version`.tar.gz - pip install -r requirements.txt - pip install -r requireme...
Remove 2.8 (deprecated) and 3.8 (not available in ubuntu bionic)
Remove 2.8 (deprecated) and 3.8 (not available in ubuntu bionic)
YAML
mit
aleasoluciones/boscli
9490a3ae70807fe1af124bd7dd9df5c2ab17d152
.travis.yml
.travis.yml
language: ruby script: "bundle exec rake test_with_coveralls" rvm: - 1.9.2 - 1.9.3 - jruby-18mode # JRuby in 1.8 mode - jruby-19mode # JRuby in 1.9 mode - rbx-18mode - rbx-19mode - ruby-head notifications: recipients: - jeremy.olliver@gmail.com
language: ruby script: "bundle exec rake test_with_coveralls" rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode # JRuby in 1.9 mode - rbx-19mode - ruby-head notifications: recipients: - jeremy.olliver@gmail.com
Add tests for ruby 2.0 and tidy old versions from test matrix
Add tests for ruby 2.0 and tidy old versions from test matrix
YAML
mit
jeremyolliver/gvis
ef33788e95cfd869f9bed8ee2de03bc678b1589d
.travis.yml
.travis.yml
language: python python: - "3.4" - "3.5" sudo: false install: pip install tox-travis script: - tox - python3 dist/pib --help notifications: email: false
language: python python: - "3.4" - "3.5" sudo: false install: pip install tox-travis script: - tox - python --version - python dist/pib --help notifications: email: false
Make sure of version we're using.
Make sure of version we're using.
YAML
apache-2.0
datawire/pib
b1ec6909ba86b3ccf28891cf86ca4ad2f3c7e549
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 before_script: - npm update -g npm - npm install -g grunt-cli
language: node_js node_js: - 0.10 before_script: - npm update -g npm - npm install -g grunt-cli
Use an up-to-date version of Node.js too, Travis
Use an up-to-date version of Node.js too, Travis
YAML
mit
rezonant/grunt-chmod
97597b0b119b5cc1550dcde29b73902ad4427bf4
.travis.yml
.travis.yml
rvm: 2.2 sudo: required # install the pre-release chef-dk. Use chef-stable-precise to install the stable release addons: apt: sources: - chef-current-precise packages: - chefdk services: docker env: matrix: - INSTANCE=default-centos-71 # Don't `bundle install` install: echo "skip bundle ...
sudo: required # install the pre-release chef-dk. Use chef-stable-precise to install the stable release addons: apt: sources: - chef-current-precise packages: - chefdk services: docker env: matrix: - INSTANCE=default-centos-71 # Don't `bundle install` install: echo "skip bundle install" ...
Remove RVM from Travis since we use Ruby in ChefDK
Remove RVM from Travis since we use Ruby in ChefDK
YAML
apache-2.0
chef-cookbooks/yum-elrepo
36018dec5f0230546a97321c2fda5b584aae97eb
.travis.yml
.travis.yml
language: ruby before_install: - gem install bundler || gem install bundler -v 1.17.3 # the default bundler version on travis is very old and causes 1.9.3 build issues rvm: - 1.9.3 - jruby-1.7.27 - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 - 2.6.0 - jruby-9.2.5.0 - rbx-3
language: ruby before_install: - gem install bundler || gem install bundler -v 1.17.3 # the default bundler version on travis is very old and causes 1.9.3 build issues rvm: - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 - 2.6.0 - jruby-9.2.5.0
Remove JRuby 1.7 and Rubinius from the test matrix
Remove JRuby 1.7 and Rubinius from the test matrix Since Travis made Xenial the default build environment, JRuby 1.7 no longer runs, and Rubinius can't even be installed: https://travis-ci.org/cypriss/mutations/jobs/589829405 https://travis-ci.org/cypriss/mutations/jobs/589829414 Given that these implementations are...
YAML
mit
cypriss/mutations
74c5e3e9a0d68fb82cc74f8e636332cf50f13701
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" - "3.5" install: "pip install -r requirements-dev.txt" script: - make test - make lint - make docs
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" install: "pip install -r requirements-dev.txt" script: - make test - make lint - make docs
Add python 3.6 to build matrix
Add python 3.6 to build matrix
YAML
mit
IATI/iati.core,IATI/iati.core
0217a18499e4fff5b28a73d5f26683a3da946170
.travis.yml
.travis.yml
# Wire up travis language: python python: - 2.6 - 2.7 - pypy - 3.2 - 3.3 - 3.4 - pypy3 install: python setup.py dev script: python setup.py test -q notifications: email: - pyramid-checkins@lists.repoze.org
# Wire up travis language: python sudo: false python: - 2.6 - 2.7 - pypy - 3.2 - 3.3 - 3.4 - pypy3 install: python setup.py dev script: python setup.py test -q notifications: email: - pyramid-checkins@lists.repoze.org
Speed up Travis start via 'sudo: false'.
Speed up Travis start via 'sudo: false'.
YAML
bsd-3-clause
dakra/pyramid_mailer
4a085cd8e1a603a8d02067be17c471dfd6f0c43c
.travis.yml
.travis.yml
language: php sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: fast_finish: true allow_failures: - php: hhvm cache: directories: - $HOME/.composer/cache before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-source ...
language: php sudo: false env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: fast_finish: true allow_failures: - php: hhvm cache: directories: - $HOME/.composer/cache before_install: - travis_retry composer self-update install: - ...
Add prefer lowest back into Travis config.
Add prefer lowest back into Travis config.
YAML
mit
thephpleague/glide
c24431781a2eb4155d1afcb45ce08dcfbd781f8c
.travis.yml
.travis.yml
language: - python - node_js python: - "2.7" - "3.4" - "3.5" before_install: - ./travis/before_script.sh install: # Python stuff - pip install -r dev-requirements.txt # Install compass - gem update --system - gem install sass -v 3.2.13 - gem install compass # Install grunt-cli and grunt ...
language: - python - node_js python: - "2.7" - "3.4" - "3.5" before_install: - ./travis/before_script.sh install: # Python stuff - pip install -r dev-requirements.txt # Install compass - gem update --system - gem install sass -v 3.2.13 - gem install compass # Install grunt-cli and grunt ...
Add missing semi-colon to deploy command
Add missing semi-colon to deploy command
YAML
mit
thusoy/blag,thusoy/blag,thusoy/blag,thusoy/blag
5004fa165e82db05713b5220ed1e42d9bd370d9f
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "4" - "5" sudo: false # use g++-4.8 for karma cache: - apt addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - libstdc++-4.8-dev firefox: "39.0" before_install: - export CXX="g++-4.8" CC="gcc-4.8" - export "PATH...
language: node_js node_js: - "0.10" - "0.12" - "4" - "6" sudo: false # use g++-4.8 for karma cache: - apt addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - libstdc++-4.8-dev firefox: "39.0" before_install: - export CXX="g++-4.8" CC="gcc-4.8" - export "PATH...
Test Node v6 rather than Node v5
CI: Test Node v6 rather than Node v5
YAML
mit
puleos/object-hash,pnw-ology/ts-object-hash
b8cbb03e3355bd207ecafe3933dc3aea8c367c70
.travis.yml
.travis.yml
language: python python: - '3.7-dev' install: - pip install -r requirements.txt script: - export PYTHONPATH=$PYTHONPATH:. - py.test -v tests --cov transporter --durations=10 after_success: - coveralls env:
language: python python: - '3.7-dev' services: - redis-server install: - pip install -r requirements.txt script: - export PYTHONPATH=$PYTHONPATH:. - export REDIS_URL="localhost:6379" - py.test -v tests --cov transporter --durations=10 after_success: - coveralls env:
Set up a Redis server
Set up a Redis server
YAML
mit
suminb/transporter,suminb/transporter
1296f7e01f3851cfc9f2395f3c7c6c102f1d0ac9
.travis.yml
.travis.yml
sudo: false language: objective-c before_install: - brew update install: - mkdir -p $(brew --repo)/Library/Taps/travis - ln -s $PWD $(brew --repo)/Library/Taps/travis/homebrew-testtap - brew tap --repair - gem install rubocop script: - rubocop --config=$(brew --repo)/Library/.rubocop.yml iwyu.rb - brew au...
sudo: false language: objective-c osx_image: - beta-xcode6.3 - xcode6.4 - xcode7 before_install: - brew update install: - mkdir -p $(brew --repo)/Library/Taps/travis - ln -s $PWD $(brew --repo)/Library/Taps/travis/homebrew-testtap - brew tap --repair - gem install rubocop --no-document script: - rubocop ...
Add matrix build for multiple Xcode versions
Add matrix build for multiple Xcode versions Also turn off ri/rdoc generation for speed.
YAML
mit
jasonmp85/homebrew-iwyu
516bb3f07dfeecfeb1ddce84d0f1af0319708e93
.travis.yml
.travis.yml
dist: xenial language: cpp os: - linux # - osx osx_image: xcode10 cache: directories: - posix/src - xcode/src env: global: - MAKEFLAGS="-j 2" compiler: - gcc - clang addons: apt: packages: - uuid-dev homebrew: packages: - libtool install: - if [ "$TRAVIS_OS_NAME" = linu...
dist: xenial language: cpp os: - linux # - osx osx_image: xcode10 cache: directories: - posix/src - xcode/src env: global: - MAKEFLAGS="-j 2" compiler: - gcc - clang addons: apt: packages: - libgtk-3-dev - uuid-dev homebrew: packages: - libtool install: - if [ "$TRA...
Prepare GTK 3's development package
Prepare GTK 3's development package
YAML
mit
flintproject/Flint,flintproject/Flint
e0f4d87ee9f2f60d7192b324840f93a595faaac3
.travis.yml
.travis.yml
language: haskell ghc: 7.8 notifications: email: on_success: change on_failure: change before_install: - cabal update - cabal install cabal-install script: - cabal configure --enable-tests - cabal build - cabal test - cabal install stylish-haskell - cabal install hlint - ./acceptance-tests
language: haskell ghc: 7.8 notifications: email: on_success: change on_failure: change before_install: - cabal update - cabal install cabal-install script: - cabal configure --enable-tests - cabal build - cabal test - ./acceptance-tests
Remove dependencies for now, the acceptance tests will fail but it will at least build
Remove dependencies for now, the acceptance tests will fail but it will at least build
YAML
bsd-3-clause
olorin/git-vogue,anchor/git-vogue
9cda3a66b4b5b664ef09b4de04fd878baf0cf85d
.travis.yml
.travis.yml
language: java sudo: false dist: trusty before_install: - unset _JAVA_OPTIONS install: echo "The default Travis install script is being skipped!" matrix: include: # Java 9 - env: TARGET='-Pjava9' jdk: openjdk9 # Java 10 - env: TARGET='-Pjava10' jdk: openjdk10 # Java 11 - env:...
language: java sudo: false dist: trusty before_install: - unset _JAVA_OPTIONS install: echo "The default Travis install script is being skipped!" matrix: include: # Java 9 - env: TARGET='-Pjava9' jdk: openjdk9 # Java 10 - env: TARGET='-Pjava10' jdk: openjdk10 # Java 11 - env:...
Reduce build level until Maven plugin plugin is ready.
Reduce build level until Maven plugin plugin is ready.
YAML
apache-2.0
DALDEI/byte-buddy,raphw/byte-buddy,raphw/byte-buddy,raphw/byte-buddy
6f2c1be4e8e2f1c1ee8da7fc42457b439de03edd
.travis.yml
.travis.yml
language: php php: - '7.2' - '7.3' - '7.4' install: - composer install
language: php php: - '7.2' - '7.3' - '7.4' - '8.0' install: - composer install
Include tests for PHP 8.0
Include tests for PHP 8.0
YAML
mit
binsoul/net-mqtt
9762208ce9387caaceeb514096d0454be4dd52a3
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.2 xcode_workspace: PuzzleAnimation.xcworkspace xcode_scheme: PuzzleAnimation xcode_sdk: iphonesimulator9.2
language: objective-c osx_image: xcode7.2 xcode_workspace: PuzzleAnimation.xcworkspace xcode_scheme: PuzzleAnimation xcode_sdk: iphonesimulator9.2 before_install: - pip install codecov after_success: - codecov
Add code cov service triggers for CI;
Add code cov service triggers for CI;
YAML
mit
Antondomashnev/ADPuzzleAnimation,Antondomashnev/ADPuzzleAnimation
19b1ad49359d56ec1dffe5504c61d30c3d8c3054
.travis.yml
.travis.yml
sudo: false language: python python: - "2.6" - "2.7" - "pypy" - "3.2" - "3.3" - "3.4" - "3.5" install: - pip install -r requirements.txt - python setup.py clean --all - python setup.py install script: flake8 . && python setup.py test
sudo: false language: python python: - "2.6" - "2.7" - "pypy" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" - "3.7" install: - pip install -r requirements.txt - python setup.py clean --all - python setup.py install script: flake8 . && python setup.py test
Test on new python versions
Test on new python versions
YAML
mit
chargehound/chargehound-python
7c2a1b686d9734cc8e4b5b228e5e941e55849a56
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 install: - gem install xcpretty script: - set -o pipefail - pod install - xcodebuild -version - xcodebuild -showsdks - xcodebuild -workspace GABoardGameGeek.xcworkspace -scheme GABoardGameGeek -sdk iphonesimulator9.3 -destination 'OS=9.3,name=iPhone 6S Plus' test ...
language: objective-c osx_image: xcode7.3 before_install: - gem install cocoapods -v '1.0.0' install: - gem install xcpretty script: - set -o pipefail - pod install - xcodebuild -version - xcodebuild -showsdks - xcodebuild -workspace GABoardGameGeek.xcworkspace -scheme GABoardGameGeek -sdk iphonesimula...
Update TravisCI to use version 1.0.0 of CocoaPods.
Update TravisCI to use version 1.0.0 of CocoaPods.
YAML
mit
gca3020/GABoardGameGeek,gca3020/GABoardGameGeek
6cda06c305bc337101d46a87eecc17251bb91cf5
packages/se/servant-serf.yaml
packages/se/servant-serf.yaml
homepage: '' changelog-type: '' hash: 3b632ed2ce2a0a3c98301ea6fb23d56b79f89654492df134f2d33f4c43fae00c test-bench-deps: {} maintainer: Zachary Churchill <zachary@itpro.tv> synopsis: Generates a servant API module changelog: '' basic-deps: base: '>=4.13.0.0 && <=5.2.0.0' parser-combinators: '>=1.2.1' text: '>=1.2....
homepage: '' changelog-type: '' hash: cfa4b5995eecc613cc80b2fa97640ab3967586979e01f23a9f30482754077c9f test-bench-deps: {} maintainer: Zachary Churchill <zachary@itpro.tv> synopsis: Generates a servant API module changelog: '' basic-deps: base: '>=4.13.0.0 && <=5.2.0.0' parser-combinators: '>=1.2.1' text: '>=1.2....
Update from Hackage at 2020-09-30T19:06:11Z
Update from Hackage at 2020-09-30T19:06:11Z
YAML
mit
commercialhaskell/all-cabal-metadata
37839c6342c720cefcb1927d2d946075bb64a99e
.travis.yml
.travis.yml
language: ruby bundler_args: --without development rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode gemfile: - gemfiles/Gemfile.minitest-3 - gemfiles/Gemfile.minitest-4 - gemfiles/Gemfile.minitest-5
language: ruby bundler_args: --without development rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode gemfile: - gemfiles/Gemfile.minitest-3 - gemfiles/Gemfile.minitest-4 - gemfiles/Gemfile.minitest-5 notifications: recipients: - remy@rymai.me
Add notification in TravisCI config file
Add notification in TravisCI config file [ci skip]
YAML
mit
guard/guard-minitest,deivid-rodriguez/guard-minitest
25478d82e19356edcc9e59c1ecd1943a853af1f0
.travis.yml
.travis.yml
--- language: ruby before_install: "gem install bundler -v '< 2.0'" bundler_args: --without yard benchmarks script: "bundle exec rake ci" rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.9 - 2.5.7 - 2.6.5 - ruby-head - jruby-9.2.6.0 - jruby-head - truffleruby matrix: allow_failures: - rvm: ruby-...
--- language: ruby before_install: "gem install bundler -v '< 2.0'" bundler_args: --without yard benchmarks script: "bundle exec rake ci" rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.9 - 2.5.7 - 2.6.5 - 2.7.0 - ruby-head - jruby-9.2.6.0 - jruby-head - truffleruby matrix: allow_failures: - ...
Add latest Ruby to test matrix
Add latest Ruby to test matrix
YAML
mit
peter-murach/pastel
0247c3e4bf7cffcfc3a2f9d4058758c7a79b98b2
.travis.yml
.travis.yml
language: ruby cache: bundler bundler_args: --without production before_script: cp config/settings.yml.example config/settings.yml rvm: - 2.1.0 notifications: email: false services: - redis-server
language: ruby cache: bundler bundler_args: --without production before_script: - cp config/database.yml.example config/database.yml - cp config/settings.yml.example config/settings.yml rvm: - 2.1.0 notifications: email: false services: - redis-server
Update Travis config with sample database.yml.
Update Travis config with sample database.yml.
YAML
mit
christhomson/octodata,christhomson/octodata,christhomson/octodata
31fda7d3dffb582172e3b66af7a79dd489888613
.travis.yml
.travis.yml
language: node_js sudo: required services: - docker node_js: - 0.10.33 - 4.1.1 cache: directories: - node_modules
language: node_js sudo: required services: - docker node_js: - 0.10.33 - 4 - 5 cache: directories: - node_modules
Add support for node v5.
Add support for node v5.
YAML
mit
blainesch/pry.js
13e6a7a102ad8a7f7927164810ab379877d2c6ab
.travis.yml
.travis.yml
language: node_js node_js: - 0.7 - 0.8 - 0.9 - 0.10
language: node_js node_js: - 0.7 - 0.8 - 0.9 - 0.10 - 0.11
Add node 0.11 to CI
Add node 0.11 to CI
YAML
mit
andriichyzh/node-httptest
8cf21331aa89c04eececae0c77ea23661cde9699
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm - php: 5.6 env: - DB=mysql script: travis/make_db.sh travis/test_site.sh notifications: email: true irc: "irc.esper.net#zarthus"
language: php php: - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm - php: 5.6 env: - DB=mysql before_script: chmod +x travis/make_db.sh chmod +x travis/test_site.sh script: travis/make_db.sh travis/test_site.sh notifications: email: true irc: "irc.esper.ne...
Allow the shell scripts to execute things.
Allow the shell scripts to execute things.
YAML
mit
Zarthus/zarth.us-1.0,Zarthus/zarth.us-1.0,Zarthus/zarth.us,Zarthus/zarth.us,Zarthus/zarth.us,Zarthus/zarth.us-1.0,Zarthus/zarth.us,Zarthus/zarth.us-1.0
54e02b69d39f37962f6d7ad13368f8a5ac584da1
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0p353 - 2.1.0
language: ruby rvm: - 1.9.2 - 1.9.3
Revert "Run test over ruby 2.0.0p353 and 2.1.0"
Revert "Run test over ruby 2.0.0p353 and 2.1.0" This reverts commit 60496dcd91ade9efbb398044d3f83f850f9f1e48.
YAML
mit
vigosan/big_ml
ae1871e292a7fb6c35fcf7f1fe58aa6845862c38
.travis.yml
.travis.yml
bundler_args: --without development before_script: "./bin/ci/before_build.sh" script: "bundle exec rspec -c spec" rvm: - 2.0 - 1.9.3 - rbx-19mode - jruby-19mode - ruby-head - 1.9.2 - rbx-18mode - 1.8.7 notifications: email: michael@defprotocol.org services: - rabbitmq branches: only: - master ...
bundler_args: --without development before_script: "./bin/ci/before_build.sh" script: "bundle exec rspec -c spec" rvm: - "2.0" - "1.9.3" - rbx-19mode - jruby-19mode - ruby-head - "1.9.2" - rbx-18mode - "1.8.7" notifications: email: michael@defprotocol.org services: - rabbitmq branches: only: -...
Make sure numeric Ruby versions are strings
Make sure numeric Ruby versions are strings
YAML
mit
pressrelations/bunny,jafrog/bunny,pressrelations/bunny,teodor-pripoae/bunny,0xfaded/bunny,bartj3/bunny,teodor-pripoae/bunny,gferguson-gd/bunny,gferguson-gd/bunny,0xfaded/bunny,wconrad/bunny,jafrog/bunny,bartj3/bunny,wconrad/bunny
dec229c00fc6ded3a6a659f4d504d69572dc8492
.travis.yml
.travis.yml
language: ruby sudo: false dist: trusty cache: bundler rvm: - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - jruby-head - ruby-head - jruby-9.1.8.0 - jruby-head - rbx-3 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rbx-3 fast_finish: true
language: ruby sudo: false dist: trusty cache: bundler rvm: - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - jruby-head - ruby-head - jruby-9.1.8.0 - jruby-head - rbx-3 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rbx-3 fast_finish: true script: # Unit test - bundle exec rake...
Add install test on Travis
Add install test on Travis
YAML
mit
nex3/rb-inotify
8d97ee2a97f7a588c731733bf84f398c8f74f96f
.travis.yml
.travis.yml
language: nix sudo: true # 'sudo: false' == containers that start fast, but only get 4G ram; # 'sudo: true' == VMs that start slow, but with 8G # ..as per: https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments # Nixpkgs PR tests OOM with 4G: https://github.com/NixOS/nixpkgs/issues/24200 matrix:...
language: nix sudo: true # 'sudo: false' == containers that start fast, but only get 4G ram; # 'sudo: true' == VMs that start slow, but with 8G # ..as per: https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments # Nixpkgs PR tests OOM with 4G: https://github.com/NixOS/nixpkgs/issues/24200 matrix:...
Fix a missed `sudo: true` line
Fix a missed `sudo: true` line
YAML
mit
SymbiFlow/nixpkgs,SymbiFlow/nixpkgs,SymbiFlow/nixpkgs,SymbiFlow/nixpkgs,NixOS/nixpkgs,NixOS/nixpkgs,SymbiFlow/nixpkgs,NixOS/nixpkgs,SymbiFlow/nixpkgs,SymbiFlow/nixpkgs,NixOS/nixpkgs,NixOS/nixpkgs,SymbiFlow/nixpkgs,NixOS/nixpkgs,SymbiFlow/nixpkgs,SymbiFlow/nixpkgs,NixOS/nixpkgs,NixOS/nixpkgs,NixOS/nixpkgs,NixOS/nixpkgs,...
d437aa53adf769ec0f765687cd9433303171bb5e
.travis.yml
.travis.yml
language: ruby dist: trusty sudo: false cache: bundler bundler_args: --without benchmarks script: - bundle exec rake spec after_success: # Send coverage report from the job #1 == current MRI release - '[ "${TRAVIS_JOB_NUMBER#*.}" = "1" ] && [ "$TRAVIS_BRANCH" = "master" ] && bundle exec codeclimate-test-reporter'...
language: ruby dist: trusty sudo: false cache: bundler bundler_args: --without benchmarks script: - bundle exec rake spec after_success: # Send coverage report from the job #1 == current MRI release - '[ "${TRAVIS_JOB_NUMBER#*.}" = "1" ] && [ "$TRAVIS_BRANCH" = "master" ] && bundle exec codeclimate-test-reporter'...
Allow rbx to fail for now
Allow rbx to fail for now
YAML
mit
dry-rb/dry-monads,dry-rb/dry-monads,dry-rb/dry-monads
9a48e558502e72aabddb3f74dfcc7f9f96b7611a
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 1.9.2 - rbx-19mode - ruby-head - 2.0.0 matrix: allow_failures: - rvm: ruby-head
language: ruby rvm: - 1.9.3 - rbx-2 - 2.0.0 - 2.1.1 matrix: allow_failures: - rvm: rbx-2
Test against rbx-2 and 2.1.1. Dropped tests for 1.9.2
Test against rbx-2 and 2.1.1. Dropped tests for 1.9.2
YAML
mit
adjust/shrimp,tech4team/shrimp,GovSciences/shrimp,rebaselabs/shrimp,tech4team/shrimp,GovSciences/shrimp,adjust/shrimp,rebaselabs/shrimp,adjust/shrimp,rebaselabs/shrimp,GovSciences/shrimp,rebaselabs/shrimp,tech4team/shrimp,GovSciences/shrimp,tech4team/shrimp
de3520902c6156b36ae9df91163b321479c55e9b
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 addons: postgresql: "9.3" before_script: - psql -U postgres -c "create user test with password 'test';" - psql -c 'create database test owner test;' -U postgres script: - mvn -e -P hsqldb verify - mvn -e -Dpostgres.database.url=jdbc:postgresql:test -Dpostgres.database.user=t...
language: java jdk: - oraclejdk8 addons: postgresql: "9.3" before_script: - psql -U postgres -c "create user test with password 'test';" - psql -c 'create database test owner test;' -U postgres script: - mvn -e "-Dhsqldb.database.url=jdbc:hsqldb:file:target/hsqldb;shutdown=true" -Dhsqldb.database.user=SA -Dhs...
Fix the hsqldb tests in Travis
Fix the hsqldb tests in Travis
YAML
apache-2.0
susom/database,susom/database
4760945645589cda56cec5c7cf38d68e49502f57
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "0.11" - "0.10" - "4.1.0" - "iojs" - "iojs-v1.0.4"
language: node_js node_js: - "0.10" - "0.11" - "0.12" - "4.1.0" - "5.1.0" - "iojs" - "iojs-v1.0.4"
Add Node 5.1.0 to Travis CI coverage.
Add Node 5.1.0 to Travis CI coverage.
YAML
mit
Encapsule/jsgraph
2cc3741e19c64b858b2f471e0e687624e99f74ed
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot env: - LARAVEL=5.5.* - LARAVEL=5.6.* - LARAVEL=5.7.* - LARAVEL=5.8.* - LARAVEL=^6.0 matrix: fast_finish: true allow_failures: - php: 7.4snapshot cache: directories: - $HOME/.composer/cache before_install: - composer require illumi...
language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot env: - LARAVEL=5.5.* - LARAVEL=5.6.* - LARAVEL=5.7.* - LARAVEL=5.8.* - LARAVEL=^6.0 matrix: fast_finish: true allow_failures: - php: 7.4snapshot exclude: - php: 7.1 env: LARAVEL=^6.0 cache: directories: - $HOME/.composer/...
Exclude PHP 7.1 from Laravel ^6.0 build
Exclude PHP 7.1 from Laravel ^6.0 build
YAML
mit
felixkiss/uniquewith-validator
c2a9a0547efab98e108d0197d388f2c7f34fb44a
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: - 2.3.1 before_install: gem install bundler -v 1.13.2
sudo: false language: ruby cache: bundler rvm: - 2.1 - 2.2 - 2.3.1 before_install: gem install bundler -v 1.13.2
Test mor Ruby versions on Travis CI
Test mor Ruby versions on Travis CI
YAML
mit
communityfarm/the_community_farm,communityfarm/the_community_farm
4013eff9878d92a20bd82e5761adb307bcbfa9dc
.travis.yml
.travis.yml
language: haskell env: matrix: - HPVER=2012.4.0.0 - HPVER=2013.2.0.0 - GHCVER=7.4.2 - GHCVER=7.6.3 - GHCVER=7.8.3 - GHCVER=head global: - CABALVER=1.18 - SKIP_HADDOCK=1 matrix: allow_failures: - env: GHCVER=head script: - cabal install --only-dependencies && cabal configu...
language: haskell ghc: - 7.6 - 7.4 - 7.8 global: - SKIP_HADDOCK=1 script: - cabal install --only-dependencies && cabal configure && cabal build before_install: # Uncomment whenever hackage is down. # - mkdir -p ~/.cabal && cp travis/config ~/.cabal/config && cabal update - cabal update install: ...
Update .travil.yml, really checking different GHC versions
Update .travil.yml, really checking different GHC versions
YAML
bsd-3-clause
Chobbes/Juicy.Pixels,Twinside/Juicy.Pixels,Twinside/Juicy.Pixels,clinty/Juicy.Pixels,Chobbes/Juicy.Pixels,clinty/Juicy.Pixels,Twinside/Juicy.Pixels
e02b2385574f58a9a18831138781c8e70da277c5
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm before_script: - composer update --prefer-source script: - ./vendor/bin/phpunit --coverage-clover ./build/clover.xml - if [ $TRAVIS_PHP_VERSION != 'hhvm' ]; then php build/coverage-checker.php ...
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: allow_failures: - php: 7 - php: hhvm before_script: - composer update --prefer-source script: - ./vendor/bin/phpunit --coverage-clover ./build/clover.xml - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then p...
Enable code coverage generation and scrutinizer-ci inspections for all php versions except hhvm and php7
Enable code coverage generation and scrutinizer-ci inspections for all php versions except hhvm and php7
YAML
mit
Chhunlong/DoctrineORMModule,basz/DoctrineORMModule,basz/DoctrineORMModule,basz/DoctrineORMModule,tommyseus/DoctrineORMModule,Chhunlong/DoctrineORMModule,Perfect-Web/DoctrineORMModule,assessfirst/DoctrineORMModule,eminetto/DoctrineORMModule,doctrine/DoctrineORMModule,Perfect-Web/DoctrineORMModule,eminetto/DoctrineORMMod...
ee6cced42c3228a4047485c676c2ada5e91ea08e
.travis.yml
.travis.yml
language: go go: - 1.2 - 1.3 - tip install: make updatedeps script: - GOMAXPROCS=2 make test #- go test -race ./... matrix: allow_failures: - go: tip
sudo: false language: go go: - 1.2 - 1.3 - 1.3 - tip install: make updatedeps script: - GOMAXPROCS=2 make test #- go test -race ./... branches: only: - master notifications: irc: channels: - "irc.freenode.org#packer-tool" skip_join: true use_notice: true matrix: fast_finis...
Use the new Travis Docker infrastructure and stuff
Use the new Travis Docker infrastructure and stuff
YAML
mpl-2.0
ephemeralsnow/packer,zhuzhih2017/packer,bryson/packer,rodm/packer,monsterzz/packer,grange74/packer,umang1912/packer,youhong316/packer,Silver90/packer,orivej/packer,fnoeding/packer,icnocop/packer,ChrisLundquist/packer,hasJackb/packer,lantrix/packer,bradparks/packer__create_vm_for_aws_docker_vagrant_etc,yoctocloud/packer...
46bb70db0c727643156caf44b11b2c94320ef2ba
.travis.yml
.travis.yml
language: c matrix: include: - os: linux compiler: gcc sudo: false - os: linux compiler: clang sudo: false - os: linux dist: trusty sudo: required compiler: gcc - os: linux dist: trusty sudo: required compiler: clang - os: osx co...
language: c matrix: include: - os: linux compiler: gcc sudo: false - os: linux compiler: clang sudo: false - os: linux dist: trusty sudo: required compiler: gcc - os: linux dist: trusty sudo: required compiler: clang - os: osx co...
Upgrade gcc on osx to get gfortran with codecov.
Upgrade gcc on osx to get gfortran with codecov.
YAML
bsd-3-clause
RWTH-ELP/CMake-codecov,RWTH-ELP/CMake-codecov,RWTH-ELP/CMake-codecov
3fe9aac3db6a24e04f0266527c92acdb29354d19
.travis.yml
.travis.yml
language: android env: global: - ADB_INSTALL_TIMEOUT=8 # 8 minutes (2 minutes by default) android: components: - tools - platform-tools - build-tools-27.0.3 - android-27 - android-22 - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository ...
language: android env: global: - ADB_INSTALL_TIMEOUT=8 # 8 minutes (2 minutes by default) android: components: - tools - platform-tools - build-tools-28.0.2 - android-27 - android-22 - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository ...
Change license acceptance line, according to StackOverflow
Change license acceptance line, according to StackOverflow
YAML
apache-2.0
voghDev/PdfViewPager
e0fec1d90ebaa4db2e5f7217a6e5048a8142543f
.travis.yml
.travis.yml
language: cpp sudo: required dist: trusty script: - mkdir build - cd build - cmake -DPISTACHE_BUILD_EXAMPLES=true -DPISTACHE_BUILD_TESTS=true .. - make all test compiler: - clang - gcc-5 before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq ...
language: cpp sudo: required dist: trusty script: - mkdir build - cd build - cmake -DPISTACHE_BUILD_EXAMPLES=true -DPISTACHE_BUILD_TESTS=true .. - make all test ARGS="-V" compiler: - clang - gcc-5 before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get upd...
Add verbose output to test run
Add verbose output to test run
YAML
apache-2.0
oktal/pistache,oktal/pistache,oktal/rest,oktal/rest,oktal/pistache,oktal/pistache,oktal/rest,oktal/rest,oktal/pistache
ddfdacdb952db10a47e5fc93d81bf52a1171d1f8
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm cache: directories: - vendor - $HOME/.composer/cache before_script: - composer install --prefer-dist script: vendor/bin/phpunit --coverage-clover=coverage.xml after_script: - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "5.6" ] ; then wg...
language: php sudo: false php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm cache: directories: - vendor - $HOME/.composer/cache before_script: - composer install --prefer-dist script: vendor/bin/phpunit --coverage-clover=coverage.xml after_script: - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "5.6" ...
Use traivs container based builds
Use traivs container based builds
YAML
mit
goetas/twital,hason/twital,hason/twital,goetas/twital
815ed9edef5e9e36ba858ed5577e69fe74b5a1c9
.travis.yml
.travis.yml
--- language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - ree env: - RAILS_VERSION="" - RAILS_VERSION="~>3.2.0" - RAILS_VERSION="~>3.1.0" - RAILS_VERSION="~>3.0.0" notifications: email: - sutto@sutto.net
--- language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 # - jruby-18mode # - jruby-19mode - ree env: - RAILS_VERSION="" - RAILS_VERSION="~>3.2.0" - RAILS_VERSION="~>3.1.0" - RAILS_VERSION="~>3.0.0" notifications: email: - sutto@sutto.net
Remove Jruby for the moment
Remove Jruby for the moment
YAML
mit
ekampf/rocket_pants,Pathgather/rocket_pants,jsmestad/tradesman,Sutto/rocket_pants,michaelachrisco/rocket_pants,CloudVLab/rocket_pants,DamirSvrtan/rocket_pants,nikolai-b/rocket_pants,Dealermade/rocket_pants
6cbfff259e3e603545e0d07d60ed0e72125d4007
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - jruby-18mode - jruby-19mode - rbx - ree gemfile: Gemfile env: - MATHN=true RUBOCOP=false - MATHN=false RUBOCOP=false branches: only: - master - stable notifications: irc: {channels: "irc.freenode.org#sass"} matrix: allow_failures: - rvm: rbx ...
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - jruby-18mode - jruby-19mode - rbx - ree gemfile: Gemfile env: - MATHN=true RUBOCOP=false - MATHN=false RUBOCOP=false branches: only: - master - stable notifications: irc: {channels: "irc.freenode.org#sass"} matrix: allow_failures: - rvm: rbx ...
Use RubyGems 2.2.1 for Travis.
Use RubyGems 2.2.1 for Travis. Travis is currently defaulting to 2.2.0 which seems to be buggy on Ruby 1.8.7.
YAML
mit
nicklima/sass,liquidmetal/sass,cmpereirasi/sass,hcatlin/sass,tangposmarvin/sass,Industrys/sass,nickg33/sass,Galactix/sass,Nzaga/sass,dylannnn/sass,JuanitoFatas/sass,StephanieMak/sass,jaroot32/sass,dylannnn/sass,srawlins/sass,Andrey-Pavlov/sass,antonifs/sass,amitsuroliya/sass,Anshdesire/sass,antonifs/sass,PMArtz92/sass,...
69d984cf776234c4e3303055b0b35e0a7d749943
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - nightly matrix: fast_finish: true allow_failures: - php: nightly sudo: false before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist - if [ -f vendor/bin/coverall...
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - nightly matrix: fast_finish: true allow_failures: - php: nightly sudo: false before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist - if [ -f vendor/bin/coverall...
Fix the if statement causing problems on Travis CI
Fix the if statement causing problems on Travis CI
YAML
mit
ramsey/uuid-doctrine
10b02718cf5d0e850253d2695b2e3222769e9539
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 - 0.10 - 0.11 notifications: email: - medikoo+es6-weak-map@medikoo.com
language: node_js node_js: - 0.8 - 0.10 - 0.11 notifications: email: - medikoo+es6-weak-map@medikoo.com script: "npm test && npm run lint"
Cover lint with Travis CI
Cover lint with Travis CI
YAML
isc
medikoo/es6-weak-map,KoryNunn/es6-weak-map
6e717287381ba53bc3c567f0fd780b8a36adc065
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "nightly" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests script: nose2
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "nightly" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests script: nose2
Remove Python 3.3 due to error in Travis download routine
Remove Python 3.3 due to error in Travis download routine
YAML
bsd-2-clause
tdpsk/flask-miracle-acl
914afa1fd30749dbc21428e7c7084fb360d21bac
.travis.yml
.travis.yml
language: go # Must generate the parser before installing deps or go get will error out on # undefined lexer tokens. before_install: - make vm/parser.go # Default dependency installation command, which is disabled when Makefile # detected. Also install three tools for measuring coverage and sending to # coveralls.i...
language: go # Must generate the parser before installing deps or go get will error out on # undefined lexer tokens. before_install: - make vm/parser.go # Default dependency installation command, which is disabled when Makefile # detected. Also install three tools for measuring coverage and sending to # coveralls.i...
Add Go 1.5 to the build matrix, but allow it to fail as we haven't tested against it yet.
Add Go 1.5 to the build matrix, but allow it to fail as we haven't tested against it yet.
YAML
apache-2.0
SuperQ/mtail,google/mtail,google/mtail,SuperQ/mtail
419ee86c16fbd14bfa4b63485ad5190427716ee4
.travis.yml
.travis.yml
osx_image: xcode9 language: objective-c git: submodules: false before_install: rvm use 2.3 --install --binary --fuzzy install: - bundle install --path=vendor/bundle --binstubs=vendor/bin - bundle exec pod install - bash -x carthage_checkout.sh before_script: - travis_wait 60 carthage build --cache-builds --pl...
osx_image: xcode9 language: objective-c git: submodules: false before_install: rvm use 2.3 --install --binary --fuzzy install: - bundle install --path=vendor/bundle --binstubs=vendor/bin - bundle exec pod install --repo-update - bash -x carthage_checkout.sh before_script: - travis_wait 60 carthage build --cac...
Add `--repo-update` option to `pod install`
Add `--repo-update` option to `pod install`
YAML
mit
kumabook/MusicFav,kumabook/MusicFav,kumabook/MusicFav,kumabook/MusicFav
fecf7477f83c23aad9e0d13ad50d56163f81c022
.travis.yml
.travis.yml
sudo: false cache: directories: - $HOME/.m2/repository - $HOME/.sbt - $HOME/.ivy2 language: scala scala: 2.12.3 jdk: - oraclejdk9 - oraclejdk8 before_install: - . $HOME/.nvm/nvm.sh - nvm install 0.10.36 - nvm use 0.10.36 script: - sbt ++$TRAVIS_SCALA_VERSION clean coverage test assembly -...
sudo: false cache: directories: - $HOME/.m2/repository - $HOME/.sbt - $HOME/.ivy2 language: scala scala: 2.12.3 jdk: - oraclejdk9 - oraclejdk8 before_install: - . $HOME/.nvm/nvm.sh - nvm install 8.9.4 - nvm use 8.9.4 script: - sbt ++$TRAVIS_SCALA_VERSION clean coverage test assembly - sbt...
Use latest stabel version of Node.js
Use latest stabel version of Node.js
YAML
cc0-1.0
cfpb/hmda-platform,cfpb/hmda-platform,cfpb/hmda-platform
39fb7ba28d16f1ad823d1f1df98bc7e375ec2f94
.travis.yml
.travis.yml
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-amazonlinux - INSTANCE=d...
addons: apt: sources: - chef-current-xenial packages: - chef-workstation # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" env: - CHEF_LICENSE=accept branches: only: - master services: docker env: matrix: - INSTANCE=default-amazonlinux -...
Update for Chef 15 license agreement and Chef Workstation
Update for Chef 15 license agreement and Chef Workstation
YAML
apache-2.0
chef-cookbooks/yum-epel
6af5729f30cc36c3b67cdf0e89c0a51575301623
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler bundler_args: --without development --retry=3 --jobs=3 rvm: - 2.1 - 2.2 - 2.3 - 2.4 - ruby-head matrix: allow_failures: - 1.9 - 2.0 - ruby-head fast_finish: true
language: ruby sudo: false cache: bundler bundler_args: --without development --retry=3 --jobs=3 rvm: - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 matrix: allow_failures: - 1.9 - 2.0 - ruby-head fast_finish: true
Update Travis to build for rvm 2.5
Update Travis to build for rvm 2.5
YAML
mit
datasift/datasift-ruby
8f0e52c03e6fe18726191da9b1cad4c827c05fc8
.travis.yml
.travis.yml
language: rust env: global: - secure: LD3W5ilCQq3FkBt9hRZjpzVc6WITcjDzW93JGN2Rv364BiWtFCoCUZCD0An9zbM0OirJ0qoEK/HlikF3wrwAkyJaTB5EVwxjZ3SKlJ6VbxHxmgnripaSYR7fNOGlUjLWS5wvm0gRz61wKh7xI2Mwm3xbraujYkaafX0akZMUJ7M= script: - cargo test - cargo doc --no-deps after_success: - test $TRAVIS_PULL_REQUEST == "false" && test ...
language: rust rust: - nightly - beta env: global: - secure: LD3W5ilCQq3FkBt9hRZjpzVc6WITcjDzW93JGN2Rv364BiWtFCoCUZCD0An9zbM0OirJ0qoEK/HlikF3wrwAkyJaTB5EVwxjZ3SKlJ6VbxHxmgnripaSYR7fNOGlUjLWS5wvm0gRz61wKh7xI2Mwm3xbraujYkaafX0akZMUJ7M= script: - cargo test - cargo doc --no-deps after_success: - test $TRAVIS_PULL_REQU...
Test on both nightly and beta
Test on both nightly and beta
YAML
apache-2.0
sfackler/r2d2
f27d5ee69d2546834ceec4cc9a605772dbd62724
.travis.yml
.travis.yml
language: php install: composer install addons: code_climate: repo_token: d7d02495b9c00e9cb4f57ce3852045fed27e2eb2a76e79500e343726b544b302 script: - mkdir -p build/logs - phpunit --coverage-clover build/logs/clover.xml after_script: - vendor/bin/test-reporter php: - 5.3 - 5.4 - 5.5 - 5.6
language: php install: composer install script: - mkdir -p build/logs - phpunit --coverage-clover build/logs/clover.xml after_script: - CODECLIMATE_REPO_TOKEN="d7d02495b9c00e9cb4f57ce3852045fed27e2eb2a76e79500e343726b544b302" vendor/bin/test-reporter --stdout > codeclimate.json - "curl -X POST -d @codeclimate.json ...
Use the php test reporter SSL workaround
Use the php test reporter SSL workaround Travis was not working using the normal recommended approach
YAML
bsd-2-clause
lsklyut/EdpSuperluminal,simon-barton/EdpSuperluminal
43b3ac3cc77b7a8b724acbcb3857cb503745ecbd
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.11"
language: node_js node_js: - "0.10" - "0.11" matrix: fast_finish: true allow_failures: - node_js: 0.11
Add allow failure line for node 0.11 as it has not yet been released.
Add allow failure line for node 0.11 as it has not yet been released.
YAML
mit
poplatek/shaftlog,poplatek/shaftlog
5e5b8e19fd4dfd90551e87b0bdf3a8e668d47025
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 env: - SYMFONY_VERSION="~2.3" # Test against previous minor releases of Symfony 2.x to ensure that we # actually support the versions we specify in our requirements. - SYMFONY_VERSION="2.3.*" before_script: # Use --prefer-source to download dependencies via...
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 env: - SYMFONY_VERSION="~2.3" # Test against previous minor releases of Symfony 2.x to ensure that we # actually support the versions we specify in our requirements. - SYMFONY_VERSION="2.3.*" sudo: false before_script: # Use --prefer-source to download de...
Use the new build env on Travis
Use the new build env on Travis more ram, more cpu, better network, improve vm start times http://docs.travis-ci.com/user/workers/container-based-infrastructure/ more docs coming soon
YAML
mit
Intera/wsdl2phpgenerator,sha1/wsdl2phpgenerator,ivol84/wsdl2phpgenerator,yethee/wsdl2phpgenerator,parabolicinteractive/wsdl2phpgenerator,red-led/wsdl2phpgenerator,wsdl2phpgenerator/wsdl2phpgenerator,jongotlin/wsdl2phpgenerator,kasperg/wsdl2phpgenerator,Razoxane/wsdl2phpgenerator
b446bbd2110a4e97e90fcaf3720919b4c813a401
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler rvm: - jruby - jruby-head - 2.2.0 matrix: allow_failures: - rvm: jruby-head before_script: - git config --global user.email "doe@example.com" - git config --global user.name "J. Doe" script: bundle exec rake setup spec notifications: campfire: rooms: ...
language: ruby sudo: false cache: bundler rvm: - jruby-1.7.19 - jruby-9.1.13.0 - 2.3.3 before_script: - git config --global user.email "doe@example.com" - git config --global user.name "J. Doe" script: bundle exec rake setup spec notifications: campfire: rooms: secure: "cutipnDydTjN8xv/eYyKcNM1fAw...
Update the Travis build matrix
Update the Travis build matrix These Ruby versions are more relevant at this point in time.
YAML
bsd-3-clause
burtcorp/jara,burtcorp/jara,burtcorp/jara
d48555cd2c1636238f6eba7e21203a00466a8fc5
.travis.yml
.travis.yml
language: elixir elixir: - 1.3.4 - 1.4.2 otp_release: - 18.3 - 19.2 before_script: - MIX_ENV=test mix compile --warnings-as-errors - travis_wait mix dialyzer --plt script: - mix coveralls.travis - # skip dialyzer for elixir 1.4 and erlang 18 as it produces weird errors, see #69 - if ! ([[ "$TRAVIS_ELI...
language: elixir elixir: - 1.3.4 - 1.4.5 - 1.5.0 otp_release: - 18.3 - 19.3 - 20.0 before_script: - MIX_ENV=test mix compile --warnings-as-errors - travis_wait mix dialyzer --plt script: - mix coveralls.travis # skip dialyzer for elixir 1.4 and erlang 18 as it produces weird errors, see #69 - if !...
Test all the new things
Test all the new things
YAML
mit
PragTob/benchee_csv
a0feade4600b56fa67ff0d958429e032ae6d6e8c
.travis.yml
.travis.yml
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefd...
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-stable-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk...
Switch back to stable ChefDK builds for testing
Switch back to stable ChefDK builds for testing
YAML
apache-2.0
chef-cookbooks/yum-amazon
601b95aee93e22fcd414f7a4383f827ef1e8cd86
.travis.yml
.travis.yml
install: true language: java jdk: - oraclejdk7 script: mvn verify after_success: - mvn clean verify jacoco:report coveralls:jacoco
sudo: false install: true language: java jdk: - oraclejdk7 script: mvn verify after_success: - mvn clean verify jacoco:report coveralls:jacoco cache: directories: - $HOME/.m2
Add caching and switch to docker based builds
Add caching and switch to docker based builds
YAML
apache-2.0
jreijn/hippo-addon-restful-webservices,jreijn/hippo-addon-restful-webservices
ca598ad13ca45e40c06b2c7740be894314bf9284
.travis.yml
.travis.yml
--- branches: only: - master language: ruby bundler_args: --without development script: bundle exec rake spec SPEC_OPTS='--format documentation' rvm: - 1.8.7 - 1.9.3 - 2.0.0 env: matrix: - PUPPET_GEM_VERSION="~> 2.7.0" - PUPPET_GEM_VERSION="~> 3.0.0" - PUPPET_GEM_VERSION="~> 3.1.0" - PUPPE...
--- branches: only: - master language: ruby bundler_args: --without development script: bundle exec rake spec SPEC_OPTS='--format documentation' rvm: - 1.9.3 - 2.0.0 env: matrix: - PUPPET_GEM_VERSION="~> 3.2.0" - PUPPET_GEM_VERSION="~> 3.4.0" - PUPPET_GEM_VERSION="~> 3.7.0" matrix: fast_finish...
Remove 1.8.7 and puppet 2.7 from matrix, pry testing will not work with 1.8.7
Remove 1.8.7 and puppet 2.7 from matrix, pry testing will not work with 1.8.7
YAML
apache-2.0
puppetlabs/puppetlabs-registry,jpogran/puppetlabs-registry,MelanieGault/puppetlabs-registry,cyberious/puppetlabs-registry,ferventcoder/puppetlabs-registry,DSI-Ville-Noumea/puppetlabs-registry,zshahan/puppetlabs-registry
72f609bdc550f807b400c571528e341ece12a857
.travis.yml
.travis.yml
language: haskell ghc: '8.0' sudo: false cache: directories: - "$HOME/.cabal" - "$HOME/.ghc" - "$HOME/.local" - "$HOME/.stack" apt: true install: travis_wait scripts/install.sh script: travis_wait scripts/build.sh before_deploy: - openssl aes-256-cbc -K $encrypted_1fe6220ef9db_key -iv $encrypted_1fe6220ef9d...
# This is the simple Travis configuration, which is intended for use # on applications which do not require cross-platform and # multiple-GHC-version support. For more information and other # options, see: # # https://docs.haskellstack.org/en/stable/travis_ci/ # # Copy these contents into the root directory of your Git...
Use Stack's provided Travis CI file.
Use Stack's provided Travis CI file.
YAML
mit
wei2912/blog_src,wei2912/blog_src
9fe8affb2599b80f2cb1de1c750aa088f62dead7
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.12" - "4" - "6"
sudo: false language: node_js node_js: - "0.12" - "4" - "5" - "6"
Add testing on node 5
Add testing on node 5
YAML
mit
dmarchena/psg-theme-greek-fire,dmarchena/psg-theme-greek-fire
78685776fde670d7a315b9ad8719ba6ad88ce495
.travis.yml
.travis.yml
language: objective-c xcode_project: JenkinsiOS.xcodeproj xcode_scheme: JenkinsiOSTests osx_image: xcode8.2 xcode_sdk: iphonesimulator10.0 cache: - bundler before_install: - bundle install branches: only: - master - /^(\d+\.)?(\d+\.)?\d+(-\w+)?$/ script: - ./travis-build.sh
language: objective-c xcode_project: JenkinsiOS.xcodeproj xcode_scheme: JenkinsiOSTests osx_image: xcode8.2 xcode_sdk: iphonesimulator10.0 cache: - bundler before_install: - bundle install branches: only: - master - /^(\d+\.)?(\d+\.)?\d+(-\w+)?$/ - dev - JENIOS-29/fastlane script: - ./travis-build...
Add more branches to be built (for test purposes) on Travis
Add more branches to be built (for test purposes) on Travis
YAML
mit
mobilabsolutions/jenkins-ios,mobilabsolutions/jenkins-ios,mobilabsolutions/jenkins-ios,mobilabsolutions/jenkins-ios
591c41ed7bed8ac2ae7351ff86c506b4944d68fa
.travis.yml
.travis.yml
language: ruby bundler_args: --without=development:integration rvm: - 1.9.3 env: - CHEF_VERSION="~> 11" - CHEF_VERSION="~> 10" notifications: email: cookbooks@reaktor.fi
language: ruby bundler_args: --without=development:integration rvm: - 1.9.3 - 2.0.0 env: - CHEF_VERSION="~> 11" notifications: email: cookbooks@reaktor.fi
Drop Chef 10 from Travis
Drop Chef 10 from Travis ChefSpec 3 requires Chef 11. :/ Add Ruby 2.0.0 instead to the matrix.
YAML
apache-2.0
bitmonk/chef-debian,bitmonk/chef-debian,reaktor/chef-debian,reaktor/chef-debian,reaktor/chef-debian,bitmonk/chef-debian
b84274a403563cf36dae0a79c33dc66604de2258
.travis.yml
.travis.yml
language: python # Switch to container-based builds sudo: false # Which versions of Python to test python: - "2.7" # Do not have the virtualenv use system-wide site packages virtualenv: system_site_packages: false # command to install dependencies before_install: - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; th...
language: python # Switch to container-based builds sudo: false # Which versions of Python to test python: - "2.7" # Do not have the virtualenv use system-wide site packages virtualenv: system_site_packages: false # command to install dependencies before_install: - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; th...
Remove condo update to fix conflict with Travis CI
Remove condo update to fix conflict with Travis CI
YAML
mit
danforthcenter/plantcv,jshoyer/plantcv,jshoyer/plantcv,danforthcenter/plantcv,stiphyMT/plantcv,stiphyMT/plantcv,stiphyMT/plantcv,danforthcenter/plantcv
a2a10d9ffda2fb7a3407d17f0fd9cd04f4679a82
.travis.yml
.travis.yml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r language: r sudo: false cache: packages r_github_packages: - rstats-db/DBItest
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r language: r sudo: false cache: packages r_github_packages: - hadley/devtools
Use devel devtools so circular dependencies work
Use devel devtools so circular dependencies work
YAML
apache-2.0
rstudio/sparklyr,rstudio/sparklyr,kevinykuo/sparklyr,kevinykuo/sparklyr,kevinykuo/sparklyr,kevinykuo/sparklyr,rstudio/sparklyr,rstudio/sparklyr
9c96c0d2d54ae0bd41819abeb42c7be8d42c1b5e
.travis.yml
.travis.yml
language: node_js node_js: - "10" after_success: - npm run coveralls deploy: provider: npm email: $NPM_EMAIL api_key: $NPM_TOKEN on: tags: true branch: master
language: node_js node_js: - "10" after_success: - npm run coveralls deploy: provider: npm email: $NPM_EMAIL api_key: $NPM_TOKEN on: tags: true branch: main
Set main to default branch (patch)
Set main to default branch (patch)
YAML
mit
zrrrzzt/generate-pincode-cli
8c4b34e2020f21b8d394c72aa5f897d8fb2de9b8
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 2.0.0 - 2.1.2 - 2.2.5 - 2.3.1 - 2.3.4 - 2.4.1 gemfile: - gemfiles/Gemfile.activemodel-3.2.x - gemfiles/Gemfile.activemodel-4.0.x - gemfiles/Gemfile.activemodel-4.1.x - gemfiles/Gemfile.activemodel-4.2.x - gemfiles/Gemfile.activemodel-5.0.x script: - bundle ex...
language: ruby cache: bundler rvm: - 2.0.0 - 2.1.2 - 2.2.5 - 2.3.1 - 2.3.4 - 2.4.1 gemfile: - gemfiles/Gemfile.activemodel-3.2.x - gemfiles/Gemfile.activemodel-4.0.x - gemfiles/Gemfile.activemodel-4.1.x - gemfiles/Gemfile.activemodel-4.2.x - gemfiles/Gemfile.activemodel-5.0.x script: - bundle ex...
Send notifications to our Slack channel
Send notifications to our Slack channel
YAML
mit
ninech/REST-in-Peace
c5b6212d85f9d9b025e5ea88c4aaede794eac9c3
.travis.yml
.travis.yml
language: java after_success: - mvn clean cobertura:cobertura coveralls:report notifications: webhooks: urls: - https://webhooks.gitter.im/e/22ceb415de0cb7a2e33f on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: alw...
language: java #after_success: # - mvn clean cobertura:cobertura coveralls:report notifications: webhooks: urls: - https://webhooks.gitter.im/e/22ceb415de0cb7a2e33f on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: a...
Disable cobertura as it leads to issues with building
Disable cobertura as it leads to issues with building
YAML
apache-2.0
OrienteerBAP/Orienteer,WeaxMe/Orienteer,OrienteerBAP/Orienteer,WeaxMe/Orienteer,WeaxMe/Orienteer,OrienteerBAP/Orienteer,OrienteerBAP/Orienteer
ef5e26c4b4319c98fda1439cdb00d413f5929cf1
.travis.yml
.travis.yml
language: node_js install: - npm install - npm run elm-install node_js: - "4.2.4" before_script: - npm run build script: - npm test
language: node_js install: - npm install - npm run elm-install node_js: - "4.2.4" - "5.4" before_script: - npm run build script: - npm test
Add node v5 to test.
Add node v5 to test.
YAML
bsd-2-clause
gdotdesign/elm-ui
9ffad1f3be06af9383f5229ab0844b2cf65bcd02
.travis.yml
.travis.yml
language: node_js node_js: - "stable" - "6" after_success: npm run coveralls
language: node_js node_js: - "stable" - "6" services: - redis-server after_success: npm run coveralls
Add redis service for testing
Add redis service for testing
YAML
mit
Kikobeats/redis-diff
5357c3dddce53dba6b1f2d50024a6d33734d10c9
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 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/ after_success: - bash <(curl -s https://codecov.io/bash) addons: apt: packages: ...
language: java jdk: - oraclejdk8 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/ script: gradlew --no-daemon after_success: - bash <(curl -s https://codecov.io/bash) addons:...
Disable Gradle daemon on CI
Disable Gradle daemon on CI
YAML
mit
RemonSinnema/awe,RemonSinnema/awe,RemonSinnema/awe
256eff28779f225394c5aaa97937c70e24483fed
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.1 env: - CHEF_VERSION=10.32.2 - CHEF_VERSION=11.14.2 before_script: - chef-client --version notifications: email: false
language: ruby rvm: - 1.9.3 - 2.1 - 2.2 env: - CHEF_VERSION=10.34.6 - CHEF_VERSION=11.16.4 - CHEF_VERSION=12.0.3 before_script: - chef-client --version notifications: email: false sudo: false
Add Ruby 2.2, update Chef versions, enable Docker builds
Add Ruby 2.2, update Chef versions, enable Docker builds
YAML
mit
bmarini/knife-inspect
a8f772b4f3729dd3e12de1e278e13c0d3b3ead01
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head - jruby-head
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head
Stop testing against jruby for now
Stop testing against jruby for now
YAML
mit
jacklin10/canner,invalidusrname/canner
a36210d05ddf86dfc49a0be951a8bdedbcb0d9fa
.travis.yml
.travis.yml
dist: trusty language: php php: - 7.1 - 7.2 - 7.3 - 7.4 - nightly matrix: allow_failures: - php: nightly # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false ## Cache composer cache: directories:...
dist: trusty language: php php: - 7.1 - 7.2 - 7.3 - 7.4 - nightly matrix: allow_failures: - php: nightly # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false ## Cache composer cache: directories:...
Fix composer installs for nightly
Fix composer installs for nightly
YAML
bsd-3-clause
antonioribeiro/health,antonioribeiro/health
60b5197834fe2c8ad18be6dc5fe3ef23f89e7dc8
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 env: - DB=sqlite - DB=mysql - DB=postgresql script: - RAILS_ENV=test bundle exec rake db:migrate --trace - bundle exec rspec spec/ before_script: - mysql -e 'create database my_app_test' - psql -c 'create database my_app_test' -U postgres bundler_args: --...
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 env: - DB=sqlite - DB=mysql - DB=postgresql script: - RAILS_ENV=test bundle exec rake db:migrate --trace - bundle exec rspec spec/ before_script: - mysql -e 'create database my_app_test' - psql -c 'create database my_app_test' -U postgres bundler_args: --...
Change in Travis config file ( updated wrongly named branch)
Change in Travis config file ( updated wrongly named branch)
YAML
mit
concordiadiscors/chili_pepper,concordiadiscors/chili_pepper
b1f3c781e8d173eefa2f044d0221f1fa7253840d
.travis.yml
.travis.yml
language: node_js node_js: - "5" notifications: slack: ng-camp:aXB3psuLzMhyiqGoDglEu6Sv before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sudo apt-get install python-software-properties - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update - sudo a...
language: node_js node_js: - "5" notifications: slack: ng-camp:aXB3psuLzMhyiqGoDglEu6Sv before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sudo apt-get install python-software-properties - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update - sudo a...
Disable deploy on commit to prevent red builds.
Disable deploy on commit to prevent red builds.
YAML
mit
joachimprinzbach/ng2-camp,joachimprinzbach/ng2-camp,joachimprinzbach/ng2-camp,joachimprinzbach/ng2-camp
04535f201377323b3b6b0ed9c27c8c962132b959
.travis.yml
.travis.yml
language: java script: ant jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8
language: java script: ant jdk: - openjdk7 - oraclejdk7 - oraclejdk8
Remove JDK 6 from Travis CI
Remove JDK 6 from Travis CI
YAML
mit
darach/ebnfdoc
dda50fbaf5aa81977c1b1487f104cefc5ba274fb
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.3
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.3 deploy: - provider: rubygems gem: ruby-puppetdb gemspec: ruby-puppetdb.gemspec api_key: secure: "IgMVf0Fa8Tqkz7ow402fR4lcxyv2vmMleYunZaJni3jKpDp/vzkaBsd7XMK7UMGsI70UVNP+CdSvFODlh/Ceqkoy8wqc01+c7+NWvKHczzW+/Q2knReboQ+58+Wsd0v4lNb8sWgqgco9pY7...
Add auto deployment of ruby gem
Add auto deployment of ruby gem
YAML
apache-2.0
baptistejammet/puppet-puppetdbquery,danieldreier/puppet-puppetdbquery,pyther/puppet-puppetdbquery,gwdg/puppet-puppetdbquery,redhat-cip/puppet-puppetdbquery,dalen/puppet-puppetdbquery,ccin2p3/puppet-puppetdbquery,MelanieGault/puppet-puppetdbquery,gcmalloc/puppet-puppetdbquery,natemccurdy/puppet-puppetdbquery,unki/puppet...
163f22c3a22a4cde5a45a784394c0849e0519ef8
.travis.yml
.travis.yml
language: python python: - 2.7 env: - DJANGO=1.9 before_install: - curl -O https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-2.3.3.deb && sudo dpkg -i --force-confnew elasticsearch-2.3.3.deb && sudo service elasticsearch restart install: - pip install -U setuptools - python bootstra...
language: python python: - 2.7 env: - DJANGO=1.9 before_install: - wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-2.3.3.deb - sudo dpkg -i --force-confnew elasticsearch-2.3.3.deb - sudo service elasticsearch restart install: - pip install -U setuptools - python bootstrap...
Split es install for readability.
Split es install for readability.
YAML
mit
simion/django-trampoline,laurentguilbert/django-trampoline
7392e73de7b635b7ebb14af60aa09096b08544bc
.travis.yml
.travis.yml
language: python python: 3.5 cache: directories: - $HOME/.pip-cache/ env: - TOX_ENV=py27-111 - TOX_ENV=py35-111 - TOX_ENV=py35-20 - TOX_ENV=py35-master - TOX_ENV=py36-111 - TOX_ENV=py36-20 - TOX_ENV=py36-master - TOX_ENV=docs - TOX_ENV=flake8 matrix: allow_failures: - env: TOX_ENV=py35-...
language: python python: 3.5 cache: directories: - $HOME/.pip-cache/ env: - TOX_ENV=py27-111 - TOX_ENV=py35-111 - TOX_ENV=py35-20 - TOX_ENV=py35-master - TOX_ENV=docs - TOX_ENV=flake8 matrix: allow_failures: - env: TOX_ENV=py35-master - env: TOX_ENV=py36-master fast_finish: true instal...
Disable Python 3.6 tests on Travis for now
Disable Python 3.6 tests on Travis for now
YAML
bsd-3-clause
django-recurrence/django-recurrence,django-recurrence/django-recurrence
a56fe53bdde3a668874bafd0e70eb2377f147d29
.travis.yml
.travis.yml
language: java install: ant install-ci-deps script: ant test-ci-railo
language: java install: WORK_DIR=$HOME/work BUILD_DIR=$TRAVIS_BUILD_DIR ant install-ci-deps script: WORK_DIR=$HOME/work BUILD_DIR=$TRAVIS_BUILD_DIR ant test-ci-railo
Modify Travis config to use external envvars
Modify Travis config to use external envvars Need to actually test that this approach works by actually doing it!
YAML
mit
coldfumonkeh/cfml-ci,Ortus-Solutions/cfml-ci
dd92646bad6909b1c459d553e2c3f07ab32b4930
.travis.yml
.travis.yml
language: c++ dist: trusty addons: apt: sources: - ubuntu-toolchain-r-test - llvm-toolchain-trusty packages: - g++-6 - clang-3.8 env: - CC="gcc-6" CXX="g++-6" - CC="clang" CXX="clang++" script: - make
language: c++ dist: trusty addons: apt: sources: - ubuntu-toolchain-r-test # - llvm-toolchain-trusty packages: - g++-6 - clang-3.8 compiler: - gcc - clang install: # Prepare compiler - if [ "$CXX" = "g++" ]; then export CXX="g++-6...
Test new Travis CI configuration.
Test new Travis CI configuration.
YAML
mit
fklemme/KBot,fklemme/KBot,Kruecke/KBot,Kruecke/KBot
e6c56b20415c1b72689095efaaeee0afef5ad472
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "node" env: global: - BUILD_TIMEOUT=10000 addons: apt: packages: - xvfb install: - export DISPLAY=':99.0' - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & - yarn install script: - yarn test
sudo: false language: node_js node_js: - "node" env: global: - BUILD_TIMEOUT=60000 addons: apt: packages: - xvfb install: - export DISPLAY=':99.0' - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & - yarn install script: - yarn test
Increase CI build timeout to 1 minute
Increase CI build timeout to 1 minute
YAML
mit
martinandert/send-and-receive,martinandert/send-and-receive,martinandert/send-and-receive
ec4406f0bee8ef31ac991a9a4fefc647614031b7
.travis.yml
.travis.yml
language: python python: - "2.7" # - "3.6" cache: pip sudo: required env: CIBW_BEFORE_BUILD="yum install cmake && yum install pandoc && {python} ci_scripts/assimpDownload.py && {pip} install numpy && {pip} install cython && {python} setup.py build_ext --force" services: - docker addons: apt: packages: ...
language: python python: - "2.7" # - "3.6" cache: pip sudo: required env: CIBW_BEFORE_BUILD="yum -y install cmake && yum -y install pandoc && {python} ci_scripts/assimpDownload.py && {pip} install numpy && {pip} install cython && {python} setup.py build_ext --force" services: - docker addons: apt: package...
Add default Yes to yum installs.
Add default Yes to yum installs.
YAML
bsd-3-clause
jr-garcia/AssimpCy,jr-garcia/AssimpCy
d792bdcc36c40fe282e7aa7d522c75f0e34e3c2d
.travis.yml
.travis.yml
language: ruby branches: only: - master bundler_args: --without mysql development notifications: email: - common-effort@pivotallabs.com webhooks: - http://projectmonitor-staging.pivotallabs.com/projects/d30b8651-bd0f-40ac-87c2-0fd662363e91/status rvm: - 1.9.3 before_script: - "bundle exec rak...
language: ruby branches: only: - master - staging bundler_args: --without mysql development notifications: email: - common-effort@pivotallabs.com webhooks: - http://projectmonitor-staging.pivotallabs.com/projects/d30b8651-bd0f-40ac-87c2-0fd662363e91/status rvm: - 1.9.3 before_script: - "b...
Add staging to branches for Travis to test
Add staging to branches for Travis to test
YAML
mit
mabounassif/projectmonitor-docker,dgodd/projectmonitor,pivotal/projectmonitor,genebygene/projectmonitor,BuildingSync/projectmonitor,BuildingSync/projectmonitor,mabounassif/projectmonitor-docker,remind101/projectmonitor,pivotal/projectmonitor,dgodd/projectmonitor,BuildingSync/projectmonitor,mabounassif/projectmonitor-do...
1cb98902a39673371f9a6cfd7ee0498e72c77a0c
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 branches: only: - master
language: ruby rvm: - 2.2.4 - 2.3.0 branches: only: - master
Test on ruby 2.3 and 2.2
Test on ruby 2.3 and 2.2
YAML
mit
LawrenceWoodman/mida
0f9bab9bbcd0db19ae20d87b6f9893909a6d59fd
.travis.yml
.travis.yml
language: java install: echo "I trust Maven." # don't just run the tests, also run Findbugs and friends script: mvn verify # required for jdk7 dist: precise jdk: - openjdk7 - oraclejdk7 # turn on TLS 1.2 for maven so the build doesn't fail before_script: - echo "MAVEN_OPTS='-Dhttps.protocols=TLSv1.2'" > ~/.m...
language: java install: echo "I trust Maven." # don't just run the tests, also run Findbugs and friends script: mvn verify jdk: - openjdk8 - oraclejdk8 # turn on TLS 1.2 for maven so the build doesn't fail before_script: - echo "MAVEN_OPTS='-Dhttps.protocols=TLSv1.2'" > ~/.mavenrc
Update Travis CI file for JDK 8
JIF-50: Update Travis CI file for JDK 8
YAML
mit
RentTheRunway/conduit
bb791c9cb02790b94eb03349faf059ecdb049061
.travis.yml
.travis.yml
language: node_js node_js: - "node" before_install: - sudo apt-get -qq update - sudo apt-get install -y librsvg2-bin before_script: - npm install -g gulp script: - chmod -x create-icons.sh - ./create-icons.sh - ng build --prod --aot --base-href='/ranger/' - gulp deploy: provider: pages skip_cleanup:...
language: node_js node_js: - "node" before_install: - sudo apt-get -qq update - sudo apt-get install -y librsvg2-bin before_script: - npm install -g gulp script: - ./create-icons.sh - ng build --prod --aot --base-href='/ranger/' - gulp deploy: provider: pages skip_cleanup: true github_token: $GITHUB...
Remove chmod from create-icons, should be set on file in git.
Remove chmod from create-icons, should be set on file in git.
YAML
unlicense
tdillon/ranger,tdillon/ranger,tdillon/ranger
f258c474ec4f1c1e2d4742e86aa4ad9559053d68
.travis.yml
.travis.yml
language: go go: - 1.9 - 1.10 - tip install: - go get -v github.com/go-sql-driver/mysql - go get -v ./... before_script: - sh -c "mysql -e 'CREATE DATABASE IF NOT EXISTS migu_test;'" script: - go test ./...
language: go go: - "1.9" - "1.10" - "tip" install: - go get -v github.com/go-sql-driver/mysql - go get -v ./... before_script: - sh -c "mysql -e 'CREATE DATABASE IF NOT EXISTS migu_test;'" script: - go test ./...
Fix the problem that 1.10 will be parsed as 1.1 in Travis CI
Fix the problem that 1.10 will be parsed as 1.1 in Travis CI
YAML
mit
naoina/migu
a61a12f47f91fdca4adff6cc636c9d43c4095bd4
.travis.yml
.travis.yml
language: go go: - 1.6 - 1.7 - tip
language: go go: - 1.6 - 1.7 - 1.8 - tip
Add Go 1.8 to the CI test
Add Go 1.8 to the CI test
YAML
mit
xyproto/permissionbolt
82f090f272d3191b926dbb8c010fd479e6b2874c
.travis.yml
.travis.yml
language: python sudo : false python: - 2.6 - 2.7 before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda2/bin:$PATH - export PATH=/home/travis/miniconda/bin...
language: python sudo : false python: - 2.7 before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda2/bin:$PATH - export PATH=/home/travis/miniconda/bin:$PATH ...
Drop 2.6 support - SpectralCube does not support it anymore
Drop 2.6 support - SpectralCube does not support it anymore
YAML
mit
e-koch/TurbuStat,Astroua/TurbuStat
6a0b0c2ff575dfdf6515827a9498099ef4f4e2fa
.travis.yml
.travis.yml
language: python python: - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "nightly" # currently points to 3.6-dev install: pip install --process-dependency-links dnsdiag script: nosetests dnstraceroute.py
language: python python: - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "nightly" # currently points to 3.6-dev install: "pip install -r requirements.txt" script: nosetests dnstraceroute.py
Fix build with Travis CI
Fix build with Travis CI
YAML
bsd-2-clause
farrokhi/dnsdiag,farrokhi/dnstools