commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
f02efa7e4834bd2a53df9f8f4de4b5b94200c061
.travis.yml
.travis.yml
# Validate this file using http://lint.travis-ci.org/ language: python python: - "2.7" - "3.2" - "3.3" - "pypy" install: - python setup.py install script: nosetests
# Validate this file using http://lint.travis-ci.org/ language: python python: - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "nightly" - "pypy" - "pypy3" install: - python setup.py install script: nosetests
Test more Python versions on Travis CI
Test more Python versions on Travis CI
YAML
mit
martijnvermaat/monoseq
a5b9c17b47f912e83e964ba018107187b674d7ec
.travis.yml
.travis.yml
sudo: false language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools # - platform-tools # - tools # The BuildTools version used by your project - build-tools-22.0.1 # The SDK version used to compile your project - android-22 # Additional components # - extra-google-google_play_services # - extra-google-m2repository # - extra-android-m2repository # - addon-google_apis-google-19 # Specify at least one system image, # if you need to run emulator(s) during your tests # - sys-img-armeabi-v7a-android-19 # - sys-img-x86-android-17 before_install: - chmod +x gradlew - echo "bintray.user=travis">local.properties - echo "bintray.apikey=travisCantAccessBintray">local.properties cache: directories: - $HOME/.gradle
sudo: false language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools # - platform-tools # - tools # The BuildTools version used by your project - build-tools-22.0.1 # The SDK version used to compile your project - android-22 # Additional components # - extra-google-google_play_services # - extra-google-m2repository # - extra-android-m2repository # - addon-google_apis-google-19 # Specify at least one system image, # if you need to run emulator(s) during your tests # - sys-img-armeabi-v7a-android-19 # - sys-img-x86-android-17 before_install: - chmod +x gradlew - echo "bintray.user=travis">local.properties - echo "bintray.apikey=travisCantAccessBintray">local.properties cache: directories: - $HOME/.gradle notifications: slack: supenta:yxT5lRTBRvGNvmKsYxzRgVNY
Add Slack notification for Travis build
Add Slack notification for Travis build
YAML
mit
SUPENTA/flitchio-sdk,SUPENTA/flitchio-sdk
e944e165f491a58476f780a69bbf1c1dba158980
.travis.yml
.travis.yml
language: python python: - "2.7" # command to install dependencies install: "pip install -r requirements.txt" # commands to run tests #before_script: redis-cli ping script: - nosetests after_success: - codecov #services: # - redis-server
language: python python: - "2.7" # command to install dependencies install: "pip install -r requirements.txt" # commands to run tests - python server.py & # start a Web server in the background - sleep 3 # give Web server some time to bind to sockets, etc script: - nosetests after_success: - codecov #services: # - redis-server
Update Travis file to resolve errors when Travis runs
Update Travis file to resolve errors when Travis runs
YAML
apache-2.0
devopsdelta/recommendations,devopsdelta/recommendations,devopsdelta/recommendations,devopsdelta/recommendations
a8b2ead5482c8236e3041f2379683f764a63cbdf
.travis.yml
.travis.yml
language: python python: - 3.6 - 2.7 script: make test notifications: email: false env: global: - DATABASE_URL='postgres://postgres@localhost/test_utils' matrix: - DJANGO='django~=1.11.0' DRF='djangorestframework~=3.6.0' - DJANGO='django>=1.8.0' DRF='djangorestframework~=3.6.0' install: - psql -c 'CREATE DATABASE test_utils' -U postgres; - pip install -r requirements.txt - pip install --upgrade $DJANGO - pip install --upgrade $DRF
language: python python: - 3.5 - 2.7 script: make test notifications: email: false env: global: - DATABASE_URL='postgres://postgres@localhost/test_utils' matrix: - DJANGO='django~=1.11.0' DRF='djangorestframework~=3.6.0' - DJANGO='django>=1.8.0' DRF='djangorestframework~=3.6.0' install: - psql -c 'CREATE DATABASE test_utils' -U postgres; - pip install -r requirements.txt - pip install --upgrade $DJANGO - pip install --upgrade $DRF
Use python 3.5 while we still support Django 1.8
Use python 3.5 while we still support Django 1.8
YAML
bsd-2-clause
incuna/incuna-test-utils,incuna/incuna-test-utils
a432b891307fb1644eb5ed2a2555a16275f0a8ef
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "13" - "12" - "10" - "8" cache: directories: - ~/.npm
sudo: false language: node_js node_js: - "14" - "12" - "10" - "8" cache: directories: - ~/.npm
Switch from node v13 to node v14.
Switch from node v13 to node v14.
YAML
mit
brandonramirez/grunt-jsonlint
0362d1ec04a06491b611d24d10e79e0a8d556d10
.travis.yml
.travis.yml
language: node_js node_js: - 4 - 5 - 6
language: node_js node_js: - 4 - 6 - 8 - 9
Test against Node.js 8, 9
Test against Node.js 8, 9 Also drops v5
YAML
mit
TomFrost/Bristol
9901a37a78321b54ad6f9569e3eb9e85ec6a47fb
.travis.yml
.travis.yml
language: python python: - 3.4 - 3.5 - 3.6 - 3.6-dev install: pip install -U flake8 pytest script: - python -m flake8 src - python setup.py develop && pytest
language: python python: - 3.4 - 3.5 - 3.6 - 3.6-dev install: - pip install urllib3==1.21.1 - python setup.py develop - pip install -U flake8 pytest script: - python -m flake8 src - pytest
Install pytest after develop to fix dependencies.
Install pytest after develop to fix dependencies.
YAML
apache-2.0
maxking/paper-to-git,maxking/paper-to-git
429149b717bffdaeb1b9776595aa09101ffefcb6
.travis.yml
.travis.yml
env: global: - CC_TEST_REPORTER_ID=bb14388ebb5a531a23420549e5585394bc9c9dbee42b75eda0f8b05f8090c0c6 sudo: false language: ruby cache: bundler: true before_install: - "rm ${BUNDLE_GEMFILE}.lock" - "gem update bundler" before_script: - bundle update - RAILS_ENV=test bundle exec rails db:create db:migrate rvm: - 2.3.3 #=> latest debian (stretch) version - 2.3.5 - 2.3.6 - 2.4.3 - 2.5.3 - 2.6.3 - ruby-head matrix: allow_failures: - rvm: ruby-head
env: global: - CC_TEST_REPORTER_ID=bb14388ebb5a531a23420549e5585394bc9c9dbee42b75eda0f8b05f8090c0c6 sudo: false language: ruby cache: bundler: true before_install: - "rm ${BUNDLE_GEMFILE}.lock" - "gem update bundler" before_script: - bundle update - RAILS_ENV=test bundle exec rails db:create db:migrate rvm: - 2.6.3 - ruby-head matrix: allow_failures: - rvm: ruby-head
Update ruby 2.6.3 for Travis CI
Update ruby 2.6.3 for Travis CI
YAML
mit
casi/flatshare_app,casi/flatshare_app,casi/flatshare_app,casi/flatshare_app
0ec1cee58a869ad2e3b10b1ba1849f232335bae0
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "0.10" - "0.8" - "iojs" before_install: - npm install -g npm@~1.4.6
language: node_js node_js: - "4.0" - "iojs" - "0.12" - "0.11" - "0.10" - "0.8" before_install: - npm install -g npm@~1.4.6
Add Travis-CI tests for Node.js v4.0 and v0.11
Add Travis-CI tests for Node.js v4.0 and v0.11
YAML
mit
watson/stackman
e795b0b16c54b31e3f53a9dbd30d76c0bea86ff9
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler script: - "ruby -e \"RUBY_VERSION == '3.0.0' ? system('bundle exec rubocop') : exit(0)\"" - bundle exec rake spec rvm: - 2.5.8 - 2.6.6 - 2.7.2 - 3.0.0 gemfile: - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile - gemfiles/rails_5.2.gemfile - gemfiles/rails_6.0.gemfile - gemfiles/rails_6.1.gemfile matrix: exclude: # Rails < 6 does not support Ruby 3+, see: # https://github.com/rails/rails/issues/40938#issuecomment-751357907 - rvm: 3.0.0 gemfile: gemfiles/rails_5.0.gemfile - rvm: 3.0.0 gemfile: gemfiles/rails_5.1.gemfile - rvm: 3.0.0 gemfile: gemfiles/rails_5.2.gemfile addons: code_climate: repo_token: 60e4a18e2a4bc86a98f92847f16756876c13d1e772058a9b3296643b04a697d7
language: ruby sudo: false cache: bundler script: - "ruby -e \"RUBY_VERSION == '3.0.1' ? system('bundle exec rubocop') : exit(0)\"" - bundle exec rake spec rvm: - 2.5.9 - 2.6.7 - 2.7.3 - 3.0.1 gemfile: - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile - gemfiles/rails_5.2.gemfile - gemfiles/rails_6.0.gemfile - gemfiles/rails_6.1.gemfile matrix: exclude: # Rails < 6 does not support Ruby 3+, see: # https://github.com/rails/rails/issues/40938#issuecomment-751357907 - rvm: 3.0.1 gemfile: gemfiles/rails_5.0.gemfile - rvm: 3.0.1 gemfile: gemfiles/rails_5.1.gemfile - rvm: 3.0.1 gemfile: gemfiles/rails_5.2.gemfile addons: code_climate: repo_token: 60e4a18e2a4bc86a98f92847f16756876c13d1e772058a9b3296643b04a697d7
Test against the latest Ruby versions
Test against the latest Ruby versions
YAML
mit
cassiomarques/enumerate_it
f7122b82699a5501fe1a4327df8ba72716870fc9
.travis.yml
.travis.yml
language: ruby before_install: gem install bundler bundler_args: --without yard guard benchmarks script: "bundle exec rake ci" rvm: - ree - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ruby-head - rbx-18mode - rbx-19mode - jruby-18mode notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change email: recipients: - dan.kubb@gmail.com on_success: never on_failure: change matrix: include: - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby before_install: gem install bundler bundler_args: --without yard guard benchmarks script: "bundle exec rake ci" matrix: include: - rvm: 1.9.3 - rvm: 2.0.0 - rvm: ruby-head - rvm: rbx-19mode - rvm: jruby-19mode - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change
Move version configuration to matrix/include section
Move version configuration to matrix/include section * Remove email notifications on failure
YAML
mit
backus/yardstick,dkubb/yardstick
285d3c32006224819cca8ebd511bcc399e72d541
.travis.yml
.travis.yml
--- # Travis file for Jenkins role dist: 'trusty' sudo: 'required' services: - 'docker' language: 'python' matrix: - TOXENV='py27-ansible20' - TOXENV='py27-ansible21' - TOXENV='py27-ansible22' before_install: - 'sudo apt-get update -qq' - 'sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine' script: - 'pip install tox-travis' script: - 'tox -e "${TOXENV}"' notifications: webhooks: 'https://galaxy.ansible.com/api/v1/notifications/'
--- # Travis file for Jenkins role dist: 'trusty' sudo: 'required' services: - 'docker' language: 'python' env: matrix: - TOXENV='py27-ansible20' - TOXENV='py27-ansible21' - TOXENV='py27-ansible22' before_install: - 'sudo apt-get update -qq' - 'sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine' script: - 'pip install tox-travis' script: - 'tox -e "${TOXENV}"' notifications: webhooks: 'https://galaxy.ansible.com/api/v1/notifications/'
Fix missing key in Travis configuration file
Fix missing key in Travis configuration file
YAML
mit
infOpen/ansible-role-jenkins
66ce164595b8e959856742b8be801777a778ba18
.travis.yml
.travis.yml
sudo: required dist: trusty language: node_js node_js: - "6" - "7" - "8" before_install: sudo apt-get update && sudo apt-get install lcov -y before_script: npm install -g coveralls node-gyp after_success: - node-gyp --debug rebuild - npm test - lcov -c -d . --no-external -o lcov-cpp.info - lcov -r lcov-cpp.info "*/node_modules/*" -o lcov-cpp.info - lcov -a lcov-cpp.info -a coverage/lcov.info -o lcov.info - coveralls < lcov.info
sudo: required dist: trusty language: node_js node_js: - "6" - "8" - "9" before_install: sudo apt-get update && sudo apt-get install lcov -y before_script: npm install -g coveralls node-gyp after_success: - node-gyp --debug rebuild - npm test - lcov -c -d . --no-external -o lcov-cpp.info - lcov -r lcov-cpp.info "*/node_modules/*" -o lcov-cpp.info - lcov -a lcov-cpp.info -a coverage/lcov.info -o lcov.info - coveralls < lcov.info
Update node versions to test
Update node versions to test
YAML
mit
ranisalt/node-argon2,ranisalt/node-argon2,ranisalt/node-argon2
c0bbea7810ba7913527170762a38c7c117c31dba
.travis.yml
.travis.yml
# recommended by travis support: sudo: required language: python python: - "2.7" - "3.3" # install dependencies: install: - sh install.sh # run tests: script: - sh run_tests.sh # disable email build notifications: notifications: email: false
# recommended by travis support: sudo: required language: python python: - "2.7" - "3.3" # install dependencies: install: - bash install.sh # run tests: script: - bash run_tests.sh # disable email build notifications: notifications: email: false
Use bash instead of sh.
Use bash instead of sh.
YAML
mit
jonlabelle/SublimeJsPrettier,jonlabelle/SublimeJsPrettier
3adc774195b0432703f4b8672f930166245226ab
.travis.yml
.travis.yml
language: d d: - dmd-2.067.0 # - ldc-0.15.1 install: - sudo apt-get update -qq - sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers script: - dub run --build=profile --compiler=${DC} :algebra -- 32 - dub run --build=profile --compiler=${DC} :bp -- 32 - dub run --build=profile --compiler=${DC} :nw -- 32 10 # Local Variables: # compile-command: "dub --build=verbose :nw -- 32 10" # End:
language: d d: - dmd-2.067.0 # - ldc-0.15.1 install: - sudo apt-get update -qq - sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers script: - dub run --build=release --compiler=${DC} :algebra -- 32 - dub run --build=release --compiler=${DC} :bp -- 32 - dub run --build=release --compiler=${DC} :nw -- 32 10 # Local Variables: # compile-command: "dub --build=verbose :nw -- 32 10" # End:
Revert the last change, profile build doesn't work on Linux.
Revert the last change, profile build doesn't work on Linux.
YAML
mit
dmakarov/clop
b79d028b029bb4996856b5d965db42287d9f3419
.travis.yml
.travis.yml
language: rust dist: trusty sudo: false rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly script: - cargo test --verbose - cargo install - rustup target add asmjs-unknown-emscripten - git clone https://github.com/koute/stdweb.git - cd stdweb && cargo web test --nodejs
language: rust dist: trusty sudo: false rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly script: - cargo test --verbose - cargo install - rustup target add asmjs-unknown-emscripten - git clone https://github.com/koute/stdweb.git - cd stdweb && cargo web test --nodejs - cd stdweb && cargo web test --nodejs --target-webasm-emscripten
Test with webasm too on Travis
Test with webasm too on Travis
YAML
apache-2.0
koute/cargo-web,koute/cargo-web,koute/cargo-web,koute/cargo-web
d0972841262b1d921a21eec00874bdbf1010f7f2
.travis.yml
.travis.yml
language: ruby rvm: - 2.1 - 2.2 - 2.3.0 # The version of RVM installed on Travis doesn't yet recognise 2.3 as an alias of 2.3.0 notifications: email: - support@travellink.com.au flowdock: secure: D2Kf5l63amaHyf0WA5sVDLsB3dpSQpWrNYGgcqiKLPqBy/oG+bR93iuhe7e0FKKCImxGo3UyWor/QURbNi9tYI1uQTzWWA+UdF3m+dmBZEWoNDCWXGYGOaxDRCWNC0a5VGQXwNIAGqDNxvk8LxwFdqqX0KYPmyuVWbXvKlUf7mI=
language: ruby rvm: - 2.1 - 2.2 - 2.3.0 # The version of RVM installed on Travis doesn't yet recognise 2.3 as an alias of 2.3.0 before_install: gem install bundler -v 1.11.2 notifications: email: - support@travellink.com.au flowdock: secure: D2Kf5l63amaHyf0WA5sVDLsB3dpSQpWrNYGgcqiKLPqBy/oG+bR93iuhe7e0FKKCImxGo3UyWor/QURbNi9tYI1uQTzWWA+UdF3m+dmBZEWoNDCWXGYGOaxDRCWNC0a5VGQXwNIAGqDNxvk8LxwFdqqX0KYPmyuVWbXvKlUf7mI=
Update Travis to use bundler 1.11
Update Travis to use bundler 1.11
YAML
mit
sealink/pansophy,sealink/pansophy
863ee78d76451bf77c0d4fb2f2e4c74839c076e1
.travis.yml
.travis.yml
language: php php: - '5.5' - '5.6' - '7.0' before_install: - sudo apt-get install -y tor - sudo sh -c 'echo "ControlPort 9051" >> /etc/tor/torrc' - sudo sh -c 'echo "CookieAuthentication 0" >> /etc/tor/torrc' - sudo service tor restart install: - composer install
language: php php: - '7.3' - '8.0' before_install: - sudo apt-get install -y tor - sudo sh -c 'echo "ControlPort 9051" >> /etc/tor/torrc' - sudo sh -c 'echo "CookieAuthentication 0" >> /etc/tor/torrc' - sudo service tor restart install: - composer install
Set PHP version according to PHPUnit
ci: Set PHP version according to PHPUnit
YAML
mit
megahertz/guzzle-tor
7e3c3e5b8d2550a757a900d25db0705fb1b43347
.travis.yml
.travis.yml
language: python python: - "3.5" - "3.6" script: python -m unittest currency/bitcoin_test.py addons: code_climate: repo_token: 4acc82347c0826abd052cff6ccd8d2f671bec563e6c42ac2c97f74f75fd96dcd
language: python python: - "3.5" - "3.6" script: python -m unittest currency/*_test* addons: code_climate: repo_token: 4acc82347c0826abd052cff6ccd8d2f671bec563e6c42ac2c97f74f75fd96dcd
Test all currencies present in the directory
Test all currencies present in the directory
YAML
mit
rvelhote/bitcoin-indicator,rvelhote/bitcoin-indicator
52776df721274156ce06a0619a677d115607cafe
.travis.yml
.travis.yml
language: ruby dist: trusty sudo: false before_install: - gem update bundler before_script: - bundle update cache: bundler rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 - ruby-head - jruby-1.7.26 - jruby-9.1.12.0 - jruby-head - rbx-3.84 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head
language: ruby dist: trusty sudo: false before_install: - gem update bundler before_script: - bundle update cache: bundler rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10 - 2.2.8 - 2.3.5 - 2.4.2 - ruby-head - jruby-1.7.27 - jruby-9.1.13.0 - jruby-head - rbx-3.85 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head
Update to Ruby 2.2.8, 2.3.5, 2.4.2, JRuby 1.7.27, 9.1.13.0 and rbx 3.85.
Update to Ruby 2.2.8, 2.3.5, 2.4.2, JRuby 1.7.27, 9.1.13.0 and rbx 3.85.
YAML
mit
tzinfo/tzinfo
8fbae235b87f6855f5ed25ce9abc455058cf8d4a
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci before_install: - npm install - npm install -g istanbul coveralls
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci install: - npm install -g npm - npm install --no-package-lock --no-save - npm install -g istanbul coveralls
Install with NPM 5 on Travis CI.
Install with NPM 5 on Travis CI.
YAML
mit
bigeasy/reactor
2de4f371e4174f992b09ffdc27307ea33517f6dd
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot cache: directories: - ./vendor - $HOME/.composer/cache env: - LARAVEL_VERSION=5.8.* TESTBENCH_VERSION=3.8.* - LARAVEL_VERSION=6.* TESTBENCH_VERSION=4.* before_script: - composer self-update - composer require "laravel/framework:${LARAVEL_VERSION}" "orchestra/testbench:${TESTBENCH_VERSION}" --no-update - if [ "$PHPUNIT_VERSION" != "" ]; then composer require "phpunit/phpunit:${PHPUNIT_VERSION}" --no-update; fi; - composer update - mkdir -p build/logs script: vendor/bin/phpunit
language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot cache: directories: - ./vendor - $HOME/.composer/cache env: - LARAVEL_VERSION=5.8.* TESTBENCH_VERSION=3.8.* - LARAVEL_VERSION=6.* TESTBENCH_VERSION=4.* matrix: exclude: - php: 7.1 env: LARAVEL_VERSION=6.* before_script: - composer self-update - composer require "laravel/framework:${LARAVEL_VERSION}" "orchestra/testbench:${TESTBENCH_VERSION}" --no-update - if [ "$PHPUNIT_VERSION" != "" ]; then composer require "phpunit/phpunit:${PHPUNIT_VERSION}" --no-update; fi; - composer update - mkdir -p build/logs script: vendor/bin/phpunit
Exclude PHP 7.1 setup for Laravel 6
Exclude PHP 7.1 setup for Laravel 6
YAML
mit
fntneves/laravel-transactional-events
5ecc3798ad1ec73750a434405604667bfc32e9ac
.travis.yml
.travis.yml
language: objective-c before_install: - brew update - brew reinstall xctool - gem install cocoapods -v 0.38.2 - gem install slather - xcrun simctl list install: echo "<3" env: - MODE=tests - MODE=examples - MODE=life-without-cocoapods script: ./build.sh $MODE after_success: - slather # whitelist branches: only: - master
language: objective-c before_install: - brew update - brew reinstall xctool - gem install cocoapods -v 0.37.2 - gem install slather - xcrun simctl list install: echo "<3" env: - MODE=tests - MODE=examples - MODE=life-without-cocoapods script: ./build.sh $MODE after_success: - slather # whitelist branches: only: - master
Revert "Update Travis' Cocoapods version to 0.38.2"
Revert "Update Travis' Cocoapods version to 0.38.2" This reverts commit a9539fea1aac22f0c4922b34cbdf752f2a2061af. We can't get stuff done at Pinterest with the new version - need a day or two to get other stuff compliant.
YAML
bsd-3-clause
Adlai-Holler/AsyncDisplayKit,nivanchikov/AsyncDisplayKit,eeeyes/AsyncDisplayKit,rahul-malik/AsyncDisplayKit,bimawa/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,flovouin/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,george-gw/AsyncDisplayKit,tharhtet/AsyncDisplayKit,programming086/AsyncDisplayKit,hbucius/AsyncDisplayKit,mtxs007/AsyncDisplayKit,eanagel/AsyncDisplayKit,mtxs007/AsyncDisplayKit,nivanchikov/AsyncDisplayKit,dskatz22/AsyncDisplayKit,marmelroy/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,eanagel/AsyncDisplayKit,samhsiung/AsyncDisplayKit,maicki/AsyncDisplayKit,gazreese/AsyncDisplayKit,marmelroy/AsyncDisplayKit,tharhtet/AsyncDisplayKit,romyilano/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,marmelroy/AsyncDisplayKit,paulyoung/AsyncDisplayKit,rahul-malik/AsyncDisplayKit,tomizimobile/AsyncDisplayKit,rahul-malik/AsyncDisplayKit,maicki/AsyncDisplayKit,bimawa/AsyncDisplayKit,jellenbogen/AsyncDisplayKit,yufenglv/AsyncDisplayKit,mtxs007/AsyncDisplayKit,benzguo/AsyncDisplayKit,rcancro/AsyncDisplayKit,lappp9/AsyncDisplayKit,benzguo/AsyncDisplayKit,TheoJL/AsyncDisplayKit,eanagel/AsyncDisplayKit,TheoJL/AsyncDisplayKit,RuiAAPeres/AsyncDisplayKit,codepython/AsyncDisplayKit,hbucius/AsyncDisplayKit,harryworld/AsyncDisplayKit,yufenglv/AsyncDisplayKit,JetZou/AsyncDisplayKit,flovouin/AsyncDisplayKit,maicki/AsyncDisplayKit,paulyoung/AsyncDisplayKit,flovouin/AsyncDisplayKit,rmls/AsyncDisplayKit,george-gw/AsyncDisplayKit,bimawa/AsyncDisplayKit,dskatz22/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,chrisdanford/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,RuiAAPeres/AsyncDisplayKit,Teino1978-Corp/Teino1978-Corp-AsyncDisplayKit,jellenbogen/AsyncDisplayKit,meitianapp/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,Xinchi/AsyncDisplayKit,facebook/AsyncDisplayKit,Teino1978-Corp/Teino1978-Corp-AsyncDisplayKit,tomizimobile/AsyncDisplayKit,Xinchi/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,lappp9/AsyncDisplayKit,tharhtet/AsyncDisplayKit,romyilano/AsyncDisplayKit,benzguo/AsyncDisplayKit,mtxs007/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,harryworld/AsyncDisplayKit,JetZou/AsyncDisplayKit,rmls/AsyncDisplayKit,levi/AsyncDisplayKit,JetZou/AsyncDisplayKit,dskatz22/AsyncDisplayKit,nivanchikov/AsyncDisplayKit,nivanchikov/AsyncDisplayKit,paulyoung/AsyncDisplayKit,Adlai-Holler/AsyncDisplayKit,Xinchi/AsyncDisplayKit,TheoJL/AsyncDisplayKit,JetZou/AsyncDisplayKit,chrisdanford/AsyncDisplayKit,eeeyes/AsyncDisplayKit,rcancro/AsyncDisplayKit,gazreese/AsyncDisplayKit,rmls/AsyncDisplayKit,facebook/AsyncDisplayKit,levi/AsyncDisplayKit,Teino1978-Corp/Teino1978-Corp-AsyncDisplayKit,Adlai-Holler/AsyncDisplayKit,rmls/AsyncDisplayKit,rcancro/AsyncDisplayKit,yufenglv/AsyncDisplayKit,gazreese/AsyncDisplayKit,meitianapp/AsyncDisplayKit,Teino1978-Corp/Teino1978-Corp-AsyncDisplayKit,garrettmoon/AsyncDisplayKit,programming086/AsyncDisplayKit,eanagel/AsyncDisplayKit,yufenglv/AsyncDisplayKit,lappp9/AsyncDisplayKit,samhsiung/AsyncDisplayKit,codepython/AsyncDisplayKit,eeeyes/AsyncDisplayKit,romyilano/AsyncDisplayKit,flovouin/AsyncDisplayKit,tomizimobile/AsyncDisplayKit,smyrgl/AsyncDisplayKit,hbucius/AsyncDisplayKit,smyrgl/AsyncDisplayKit,TheoJL/AsyncDisplayKit,george-gw/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,jellenbogen/AsyncDisplayKit,rcancro/AsyncDisplayKit,rahul-malik/AsyncDisplayKit,smyrgl/AsyncDisplayKit,JetZou/AsyncDisplayKit,RuiAAPeres/AsyncDisplayKit,RuiAAPeres/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,george-gw/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,programming086/AsyncDisplayKit,eeeyes/AsyncDisplayKit,romyilano/AsyncDisplayKit,yufenglv/AsyncDisplayKit,facebook/AsyncDisplayKit,harryworld/AsyncDisplayKit,Xinchi/AsyncDisplayKit,maicki/AsyncDisplayKit,nivanchikov/AsyncDisplayKit,Adlai-Holler/AsyncDisplayKit,marmelroy/AsyncDisplayKit,jellenbogen/AsyncDisplayKit,samhsiung/AsyncDisplayKit,tomizimobile/AsyncDisplayKit,maicki/AsyncDisplayKit,samhsiung/AsyncDisplayKit,Adlai-Holler/AsyncDisplayKit,rcancro/AsyncDisplayKit,gazreese/AsyncDisplayKit,programming086/AsyncDisplayKit,levi/AsyncDisplayKit,harryworld/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,rmls/AsyncDisplayKit,smyrgl/AsyncDisplayKit,levi/AsyncDisplayKit,dskatz22/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,levi/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,facebook/AsyncDisplayKit,bimawa/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,RuiAAPeres/AsyncDisplayKit,paulyoung/AsyncDisplayKit,codepython/AsyncDisplayKit,Xinchi/AsyncDisplayKit,hbucius/AsyncDisplayKit,meitianapp/AsyncDisplayKit,dskatz22/AsyncDisplayKit,Teino1978-Corp/Teino1978-Corp-AsyncDisplayKit,benzguo/AsyncDisplayKit,tomizimobile/AsyncDisplayKit,lappp9/AsyncDisplayKit,paulyoung/AsyncDisplayKit,programming086/AsyncDisplayKit,chrisdanford/AsyncDisplayKit,codepython/AsyncDisplayKit,eanagel/AsyncDisplayKit,chrisdanford/AsyncDisplayKit,meitianapp/AsyncDisplayKit,jellenbogen/AsyncDisplayKit,harryworld/AsyncDisplayKit,flovouin/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,tharhtet/AsyncDisplayKit,garrettmoon/AsyncDisplayKit
773b5e91cbd9a4a22be32ef406780e815989cc6a
.travis.yml
.travis.yml
language: go go: - 1.7
language: go go: - 1.7 before_install: - go get -t -v ./... script: - make test/codecov after_success: - bash <(curl -s https://codecov.io/bash) -t fc1782c8-f193-47c6-b434-0c7c38a378d3
Fix code coverage and make file
Fix code coverage and make file
YAML
mit
InVisionApp/conjungo
34784b645927479c5b4650a4d6472b0bc8146888
.travis.yml
.travis.yml
language: ruby rvm: - ruby-head - 2.4.6 - 2.3.8 gemfile: - 'gemfiles/action_mailer_edge.gemfile' - 'gemfiles/action_mailer_52.gemfile' - 'gemfiles/action_mailer_51.gemfile' env: - INTEGRATION_TEST=false - INTEGRATION_TEST=true sudo: false script: - 'bundle exec rubocop -c .rubocop.yml' - 'bundle exec rspec' - 'if [ $INTEGRATION_TEST == "true" ]; then bundle exec rspec integration_test; fi' after_success: - 'bundle exec codeclimate-test-reporter' cache: bundler matrix: exclude: - env: INTEGRATION_TEST=true - rvm: 2.3.8 gemfile: gemfiles/action_mailer_51.gemfile - rvm: 2.3.8 gemfile: gemfiles/action_mailer_edge.gemfile - rvm: ruby-head gemfile: gemfiles/action_mailer_51.gemfile - rvm: ruby-head gemfile: gemfiles/action_mailer_edge.gemfile include: - rvm: 2.4.6 gemfile: gemfiles/action_mailer_52.gemfile env: INTEGRATION_TEST=true allow_failures: - rvm: ruby-head - gemfile: gemfiles/action_mailer_edge.gemfile
language: ruby rvm: - ruby-head - 2.4 - 2.3 gemfile: - 'gemfiles/action_mailer_edge.gemfile' - 'gemfiles/action_mailer_52.gemfile' - 'gemfiles/action_mailer_51.gemfile' env: - INTEGRATION_TEST=false - INTEGRATION_TEST=true sudo: false script: - 'bundle exec rubocop -c .rubocop.yml' - 'bundle exec rspec' - 'if [ $INTEGRATION_TEST == "true" ]; then bundle exec rspec integration_test; fi' after_success: - 'bundle exec codeclimate-test-reporter' cache: bundler matrix: exclude: - env: INTEGRATION_TEST=true - rvm: 2.3 gemfile: gemfiles/action_mailer_51.gemfile - rvm: 2.3 gemfile: gemfiles/action_mailer_edge.gemfile - rvm: ruby-head gemfile: gemfiles/action_mailer_51.gemfile - rvm: ruby-head gemfile: gemfiles/action_mailer_edge.gemfile include: - rvm: 2.4 gemfile: gemfiles/action_mailer_52.gemfile env: INTEGRATION_TEST=true allow_failures: - rvm: ruby-head - gemfile: gemfiles/action_mailer_edge.gemfile
Remove patch version from CI target ruby version
Remove patch version from CI target ruby version
YAML
mit
ryu39/sendgrid_actionmailer_adapter,ryu39/sendgrid_actionmailer_adapter
c52cda2670759216a431c693c560cc117dd00b24
.travis.yml
.travis.yml
language: python python: 2.7 env: global: secure: "jgSvgnc/9vxZp6D5U2K+6PJ+HcuHLWN71dMdAr0M+axOJWOqKGJCClOYj3OT52ztpEW93LVRvt2OxMrhzkm6tdEv6Z+7MsNPyvXJe+AUGrkLbALV9ICBQBKnNRwvnbkEtxMBffoKi986iLu+ULNhWVtVox9TkZvp7iGt1WfZoS0=" matrix: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=py35 script: - tox -e $TOX_ENV install: - pip install tox matrix: allow_failures: - TOX_ENV=pypy # This is allowed to fail until we get a good version of pypy on travis # https://github.com/travis-ci/travis-ci/issues/5027
language: python python: 2.7 sudo: false env: global: secure: "jgSvgnc/9vxZp6D5U2K+6PJ+HcuHLWN71dMdAr0M+axOJWOqKGJCClOYj3OT52ztpEW93LVRvt2OxMrhzkm6tdEv6Z+7MsNPyvXJe+AUGrkLbALV9ICBQBKnNRwvnbkEtxMBffoKi986iLu+ULNhWVtVox9TkZvp7iGt1WfZoS0=" matrix: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=py35 script: - tox -e $TOX_ENV install: - pip install tox matrix: allow_failures: - TOX_ENV=pypy # This is allowed to fail until we get a good version of pypy on travis # https://github.com/travis-ci/travis-ci/issues/5027
Use new Travis container-based infrastructure
Use new Travis container-based infrastructure
YAML
mit
datasift/datasift-python
509f683621594df65925570020dbc7c41f2e439e
.travis.yml
.travis.yml
language: go go: - 1.6 - 1.7 - 1.7.1 - 1.7.3 - 1.7.4 script: - go test -coverprofile=html_coverage.txt -covermode=atomic ./html - go test -coverprofile=xml_coverage.txt -covermode=atomic ./xml after_success: - bash <(curl -s https://codecov.io/bash) addons: apt: packages: - libxml2-dev - libonig-dev
language: go go: - 1.6 - 1.7 - 1.7.1 - 1.7.3 - 1.7.4 - 1.8 script: - go test -coverprofile=html_coverage.txt -covermode=atomic ./html - go test -coverprofile=xml_coverage.txt -covermode=atomic ./xml after_success: - bash <(curl -s https://codecov.io/bash) addons: apt: packages: - libxml2-dev - libonig-dev
Build and test against go 1.8
Build and test against go 1.8
YAML
mit
jbowtie/gokogiri,jbowtie/gokogiri,jbowtie/gokogiri
6922d1cdd661c74524d2db5a0876466c545a883b
.travis.yml
.travis.yml
language: node_js node_js: - "7.0.0" - "6.9.1"
language: node_js node_js: - "7.2.0" - "6.9.1"
Update to latest node js version
Update to latest node js version
YAML
mit
devilesk/node-dota2,Arcana/node-dota2,pendo324/node-dota2,devilesk/node-dota2,RJacksonm1/node-dota2,Arcana/node-dota2,RJacksonm1/node-dota2,pendo324/node-dota2
02639d48cb3a1f3355ad1624d423f9f69b7b4f10
.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 this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. sudo: false env: - MODULE=oak-jcr - MODULE=oak-core - MODULE=oak-it - MODULE=oak-lucene - MODULE=oak-run - MODULE=oak-it-osgi - MODULE=oak-pojosr - MODULE=oak-upgrade install: mvn --batch-mode -DskipTests -Dbaseline.skip=true install -pl :${MODULE} -am -nsu script: mvn --batch-mode clean verify -Dbaseline.skip=true -PintegrationTesting -Dnsfixtures=DOCUMENT_NS -pl :${MODULE} -nsu language: java jdk: - oraclejdk8 cache: directories: - $HOME/.m2 services: - mongodb notifications: email: false
# 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 this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. sudo: false env: - MODULE=oak-jcr - MODULE=oak-store-document - MODULE=oak-it - MODULE=oak-lucene - MODULE=oak-run - MODULE=oak-it-osgi - MODULE=oak-pojosr - MODULE=oak-upgrade install: mvn --batch-mode -DskipTests -Dbaseline.skip=true install -pl :${MODULE} -am -nsu script: mvn --batch-mode clean verify -Dbaseline.skip=true -PintegrationTesting -Dnsfixtures=DOCUMENT_NS -pl :${MODULE} -nsu language: java jdk: - oraclejdk8 cache: directories: - $HOME/.m2 services: - mongodb notifications: email: false
Move DocumentNodeStore into its own bundle
OAK-6665: Move DocumentNodeStore into its own bundle Build and run tests for oak-store-document instead of oak-core git-svn-id: 67138be12999c61558c3dd34328380c8e4523e73@1809762 13f79535-47bb-0310-9956-ffa450edef68
YAML
apache-2.0
chetanmeh/jackrabbit-oak,chetanmeh/jackrabbit-oak,chetanmeh/jackrabbit-oak,chetanmeh/jackrabbit-oak,chetanmeh/jackrabbit-oak
c261220314ad4ed987785662582dafe55aa3a8a1
.travis.yml
.travis.yml
language: node_js node_js: - "0.10.6" - "0.10.5" - "0.10.4" - "0.10.3" - "0.10" - "0.8"
language: node_js node_js: - "0.10.7" - "0.10.6" - "0.10.5" - "0.10.4" - "0.10.3" - "0.10" - "0.8"
Update to test against 0.10.7 as latest version
Update to test against 0.10.7 as latest version
YAML
mit
buttercoin/buttercoin,buttercoin/buttercoin,bankonme/buttercoin,bankonme/buttercoin,eXcomm/buttercoin,eXcomm/buttercoin
3a33c562e34046e05b8505d8998ac11140afde25
.travis.yml
.travis.yml
--- language: ruby sudo: false cache: bundler script: "bundle update && bundle exec rake ci" rvm: - 2.0.0 - 2.1.10 - 2.2.5 - 2.3.1 - 2.4.0 - ruby-head - jruby-9.1.1.0 - rbx-3 env: global: - JRUBY_OPTS='' matrix: allow_failures: - rvm: ruby-head - rvm: rbx-3 fast_finish: true branches: only: master notifications: email: false
--- language: ruby sudo: false cache: bundler script: "bundle update && bundle exec rake ci" rvm: - 2.0.0 - 2.1.10 - 2.2.5 - 2.3.1 - 2.4.0 - ruby-head - jruby-9.1.1.0 - rbx-3 env: global: - JRUBY_OPTS='' matrix: allow_failures: - rvm: ruby-head - rvm: rbx-3 - rvm: jruby-9.1.1.0 fast_finish: true branches: only: master notifications: email: false
Change to exclude jrbuy failure.
Change to exclude jrbuy failure.
YAML
mit
piotrmurach/tty-file,piotrmurach/tty-file
c1cc4c7b90f8e1f6ea1b78b287c8d3e5396ef5a6
.travis.yml
.travis.yml
language: rust matrix: fast_finish: true allow_failures: - rust: nightly include: - rust: 1.31.0 - rust: stable - rust: beta - rust: nightly - name: rustfmt/clippy rust: stable install: - rustup component add rustfmt clippy script: - cargo fmt --all -- --check - cargo clippy --all --all-targets cache: cargo script: - cargo build --all-features --verbose -j 1 - cargo test --all-features --verbose -j 1 notifications: irc: channels: - chat.freenode.net#imag template: - "%{repository_name} (%{branch} @ %{commit} by %{author}): %{result}"
language: rust matrix: fast_finish: true allow_failures: - rust: nightly include: - rust: 1.32.0 - rust: stable - rust: beta - rust: nightly - name: rustfmt/clippy rust: stable install: - rustup component add rustfmt clippy script: - cargo fmt --all -- --check - cargo clippy --all --all-targets cache: cargo script: - cargo build --all-features --verbose -j 1 - cargo test --all-features --verbose -j 1 notifications: irc: channels: - chat.freenode.net#imag template: - "%{repository_name} (%{branch} @ %{commit} by %{author}): %{result}"
Update minimum rustc version to 1.32.0
Update minimum rustc version to 1.32.0 Signed-off-by: Matthias Beyer <1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@beyermatthias.de>
YAML
mpl-2.0
matthiasbeyer/toml-query
c124d5ff545eaa9d04a5b63a44153932c497ab2b
.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/vestibule,bigeasy/signal,bigeasy/vestibule
a89b4bc5aa4a2fa13f47c9224e72d2347492a704
.travis.yml
.travis.yml
language: node_js node_js: - "6.0" - "6.2" cache: directories: - node_modules
language: node_js node_js: - "7.0" - "6.3" cache: directories: - node_modules
Test on node 6.3 and 7
Test on node 6.3 and 7
YAML
agpl-3.0
librariesio/librarian-parsers
08912b043bd386168580a01fbfdbf69d900d77e1
.travis.yml
.travis.yml
before_install: - "sudo rm /usr/local/bin/docker-compose" - "curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose" - "chmod +x docker-compose" - "sudo mv docker-compose /usr/local/bin/" env: DOCKER_COMPOSE_VERSION: "1.7.1" git: depth: 1 notifications: email: false irc: channels: - "chat.freenode.net#ruma" use_notice: true script: "make ci" services: - "docker" sudo: "required"
before_install: - "apt-cache madison docker-engine" - "sudo apt-get -o Dpkg::Options::=\"--force-confnew\" -y install docker-engine=${DOCKER_VERSION}" - "sudo rm /usr/local/bin/docker-compose" - "curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose" - "chmod +x docker-compose" - "sudo mv docker-compose /usr/local/bin/" env: DOCKER_VERSION: "1.10.2-0~trusty" DOCKER_COMPOSE_VERSION: "1.7.1" git: depth: 1 notifications: email: false irc: channels: - "chat.freenode.net#ruma" use_notice: true script: - "docker version" - "docker-compose version" - "make ci" services: - "docker" sudo: "required"
Install Docker 1.10 on Travis.
Install Docker 1.10 on Travis.
YAML
mit
yblein/ruma,yblein/ruma
0d094f651090588306b79206c504337848147107
.travis.yml
.travis.yml
language: python python: - "2.7" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests script: - python anti-XSS.py -h
language: python python: - "2.7" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests script: - python anti-XSS.py -h - Python anti-XSS.py --help
Add support for Travis CI
Add support for Travis CI
YAML
mit
lewangbtcc/anti-XSS,lewangbtcc/anti-XSS
4c7f37accdf48513c54626061a88272ff83a930f
.travis.yml
.travis.yml
notifications: email: on_success: always script: 'bundle exec rake' rvm: - 1.9.2 - 1.9.3 - 1.8.7 - ree - rbx - jruby-18mode - jruby-19mode - 2.0.0
notifications: email: on_success: always script: 'bundle exec rake' rvm: - 1.9.2 - 1.9.3 - 1.8.7 - ree - rbx - jruby-18mode - jruby-19mode
Remove 2.0.0 support due to bundler issue
Remove 2.0.0 support due to bundler issue Until bundler gets a new release and that release is on Travis, we'll get odd failures in the cuke tests.
YAML
apache-2.0
pjump/methadone,pjump/methadone,davetron5000/methadone,davetron5000/methadone,davetron5000/methadone,enemy/methadone-rehab,enemy/methadone-rehab,enemy/methadone-rehab,dennisjbell/methadone-clinic,dennisjbell/methadone-clinic
4065e54d0870bb2959309f8ef20899584e1f7b2a
.travis.yml
.travis.yml
language: ruby cache: bundler before_install: - gem update --system 2.1.11 - gem --version rvm: - 1.9.3 - 2.0.0 gemfile: - Gemfile - gemfiles/rails-3.2.gemfile - gemfiles/rails-4.0.gemfile - gemfiles/rails-master.gemfile matrix: include: - rvm: 1.8.7 gemfile: gemfiles/rails-3.2.gemfile
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 gemfile: - Gemfile - gemfiles/rails-3.2.gemfile - gemfiles/rails-4.0.gemfile - gemfiles/rails-master.gemfile matrix: include: - rvm: 1.8.7 gemfile: gemfiles/rails-3.2.gemfile
Revert "Worked around RubyGems 2.2.0 bug on Travis-CI"
Revert "Worked around RubyGems 2.2.0 bug on Travis-CI" This reverts commit 3ee8d615549b1dc14a0b187dece3ecef0b9309a8.
YAML
mit
wwidea/font-awesome-rails,estebaninformatica/font-awesome-rails,rubixware/font-awesome-rails,bokmann/font-awesome-rails,bokmann/font-awesome-rails,rubixware/font-awesome-rails,Andrew-Rice/essential-icons-rails,estebaninformatica/font-awesome-rails,bokmann/font-awesome-rails,wwidea/font-awesome-rails
a61701fbece30628912034c48383a37ef2b93a3c
.travis.yml
.travis.yml
language: rust script: - cargo test --features="live_tests" - cargo test --features="tls" sudo: false after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && cargo doc && echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html && pip install --user ghp-import && /home/travis/.local/bin/ghp-import -n target/doc && git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: global: secure: eSYRUJ2wTq1g6AiPp0zvtxVJFn/3FnrCRAJmGCN1TBYpnl11ZvLZfhUA9IC4S48/YVmdeP1pywpIjY3ZGk7gWuaRLpTrwBxgm01RbOglQS1if6Pryc01FcwCSGb1fJKY4qR0v6iQRb23jaFfSELHfThf4rmG4QiKiNviHJRzb0c=
language: rust matrix: include: - rust: nightly - rust: beta - rust: stable script: - cargo test --features="live_tests" - cargo test --features="tls" sudo: false after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && [ $TRAVIS_RUST_VERSION = stable ] && cargo doc && echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html && pip install --user ghp-import && /home/travis/.local/bin/ghp-import -n target/doc && git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: global: secure: eSYRUJ2wTq1g6AiPp0zvtxVJFn/3FnrCRAJmGCN1TBYpnl11ZvLZfhUA9IC4S48/YVmdeP1pywpIjY3ZGk7gWuaRLpTrwBxgm01RbOglQS1if6Pryc01FcwCSGb1fJKY4qR0v6iQRb23jaFfSELHfThf4rmG4QiKiNviHJRzb0c=
Enable test matrix with all three rustc channels
ci/Travis: Enable test matrix with all three rustc channels
YAML
mit
tempbottle/solicit,gwicke/solicit,mlalic/solicit,stepancheg/solicit
33cd1ba576054abaca2c0fa7127a897e2e7b9fb5
.travis.yml
.travis.yml
sudo: false language: rust addons: apt: packages: - libcurl4-openssl-dev - libelf-dev - libdw-dev - binutils-dev rust: - nightly before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH script: - travis-cargo build - travis-cargo test after_success: - travis-cargo coveralls --no-sudo --verify - ./kcov/build/src/kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo target/kcov target/debug/parquet_rs-* env: global: - TRAVIS_CARGO_NIGHTLY_FEATURE=""
language: rust addons: apt: packages: - libcurl4-openssl-dev - libelf-dev - libdw-dev - binutils-dev - cmake - gcc rust: - nightly before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH script: - travis-cargo build - travis-cargo test after_success: | wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz && tar xzf master.tar.gz && cd kcov-master && mkdir build && cd build && cmake .. && make && sudo make install && cd ../.. && rm -rf kcov-master && kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/parquet_rs-* && bash <(curl -s https://codecov.io/bash) && echo "Uploaded code coverage" env: global: - TRAVIS_CARGO_NIGHTLY_FEATURE=""
Update kcov code coverage script
Update kcov code coverage script
YAML
apache-2.0
sunchao/parquet-rs,sunchao/parquet-rs
7e1ba99794ba0b8efb721c08737cb97197f8c7e7
.travis.yml
.travis.yml
language: java jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8 notifications: email: recipients: - dev@maxmind.com on_success: change on_failure: always env: global: - secure: "d72scMGybGfXPuGKwvFXOF+3fq9d/FV5CDN1uAD5GW1r+vV0dZkKnoG3ZZ7bwikOIei4Z5zQ1oVhnPhHOS2ReCxmui1uwcGJnwl1Pwpmq/zei2sNsqyPMGA3q0v87g8wr5G+l3cRPDMBlqtjjuYHfbvyXPbYf0qTJ9NDWybg40s=" addons: coverity_scan: project: name: "maxmind/geoip-api-java" description: "Build submitted via Travis CI" notification_email: dev@maxmind.com build_command_prepend: "mvn clean" build_command: "mvn -DskipTests=true compile" branch_pattern: .*coverity.*
--- sudo: false addons: coverity_scan: project: description: Build submitted via Travis CI name: maxmind/geoip-api-java notification_email: dev@maxmind.com build_command_prepend: mvn clean build_command: mvn -DskipTests=true compile branch_pattern: .*coverity.* language: java jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8 env: global: - secure: d72scMGybGfXPuGKwvFXOF+3fq9d/FV5CDN1uAD5GW1r+vV0dZkKnoG3ZZ7bwikOIei4Z5zQ1oVhnPhHOS2ReCxmui1uwcGJnwl1Pwpmq/zei2sNsqyPMGA3q0v87g8wr5G+l3cRPDMBlqtjjuYHfbvyXPbYf0qTJ9NDWybg40s= notifications: email: on_failure: always on_success: change recipients: - dev-ci@maxmind.com slack: rooms: secure: "e4/3Esjo65Quf7MN2mXKLY0CJ23iBFPdTGdGdhE8RVPzfR2/c+YzISSOGbDFGkuQyq2kDuK94PZ3JC7xT2Cy86DEIfCc3ws46qcknrRwbCZSXLH0gTYC748JKgdaGvXxjzwCyEIoAv67EiUPPFIm+R6d01P2h4JvGpAXSvD13DM=\n"
Update Travis notifications for slack & email
Update Travis notifications for slack & email
YAML
lgpl-2.1
maxmind/geoip-api-java,maxmind/geoip-api-java
f7b3138ecfebe5bf3a7b40147f16bfe6b93c618f
.travis.yml
.travis.yml
language: "perl" perl: - "5.14" env: sudo: false addons: apt: packages: - unzip before_install: - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-external.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-analysis.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-compara.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-killlist.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-io.git - git clone --branch release-1-6-9 --depth 1 https://github.com/bioperl/bioperl-run.git - wget https://github.com/bioperl/bioperl-live/archive/bioperl-release-1-2-3.zip - unzip bioperl-release-1-2-3.zip install: - cpanm -v --installdeps --with-recommends --notest --cpanfile ensembl/cpanfile . script: "./travisci/harness.sh" notifications: email: on_success: always on_failure: always
language: "perl" perl: - "5.22" env: sudo: false addons: apt: packages: - unzip before_install: - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-external.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-analysis.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-compara.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-killlist.git - git clone --branch master --depth 1 https://github.com/Ensembl/ensembl-io.git - git clone --branch release-1-6-9 --depth 1 https://github.com/bioperl/bioperl-run.git - wget https://github.com/bioperl/bioperl-live/archive/bioperl-release-1-2-3.zip - unzip bioperl-release-1-2-3.zip install: - cpanm -v --installdeps --with-recommends --notest --cpanfile ensembl/cpanfile . script: "./travisci/harness.sh" notifications: email: on_success: always on_failure: always
Use perl 5.22 for tests
Use perl 5.22 for tests
YAML
apache-2.0
Ensembl/ensembl-pipeline,Ensembl/ensembl-pipeline,Ensembl/ensembl-pipeline
376cb9c092a3435a32d8184be995e9422428c7d1
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 before_script: - travis_retry composer self-update - travis_retry composer install --prefer-source --no-interaction script: - phpunit -c phpunit.xml --coverage-text
language: php php: - 7.2 before_script: - travis_retry composer self-update - travis_retry composer install --prefer-source --no-interaction script: - phpunit -c phpunit.xml --coverage-text
Remove PHP versions from Travis
Remove PHP versions from Travis
YAML
mit
GeniusesOfSymfony/WebSocketBundle,GeniusesOfSymfony/WebSocketBundle
6e255ef1d5c5774d712cdf0756d685ef147644c9
.travis.yml
.travis.yml
language: java os: linux dist: xenial install: true jdk: oraclejdk8 services: - xvfb git: depth: false addons: chrome: stable firefox: latest before_script: - export DISPLAY=:99.0 jobs: include: - stage: Maven script: mvn verify - stage: Gradle script: ./gradlew test
language: java os: linux dist: xenial install: true jdk: openjdk8 services: - xvfb git: depth: false addons: chrome: stable firefox: latest before_script: - export DISPLAY=:99.0 jobs: include: - stage: Maven script: mvn verify - stage: Gradle script: ./gradlew test
Use openjdk8 in Travis config
Use openjdk8 in Travis config
YAML
apache-2.0
bonigarcia/mastering-junit5,bonigarcia/mastering-junit5
6caaf31cba648ef1408210bed1c5af59f4e70a92
.travis.yml
.travis.yml
language: python python: - "2.4" - "2.5" - "2.6" - "2.7" install: - "echo 'No dependencies :)'" # command to run tests script: - "git submodule init" - "git submodule update" - "nosetests"
language: python python: - "2.5" - "2.6" - "2.7" install: - "echo 'No dependencies :)'" # command to run tests script: - "git submodule init" - "git submodule update" - "nosetests"
Stop testing Python 2.4 (not supported by Travis).
Stop testing Python 2.4 (not supported by Travis).
YAML
mit
peterldowns/python-mustache,peterldowns/python-mustache
60d161b2bd16150b61be7bb679179615ac9392cf
.travis.yml
.travis.yml
dist: xenial language: python cache: pip service: - posgresql - mysql python: - "3.7" env: - TESTING_DB=sqlite3 - TESTING_DB=postgresql - TESTING_DB=mysql before_install: - psql -c "CREATE USER evennia WITH PASSWORD 'password'; CREATE DATABASE evennia; GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;'" - mysql -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password'; CREATE DATABASE evennia; ALTER DATABASE `evennia` CHARACTER SET utf8; GRANT ALL PRIVILEGES ON evennia.* TO 'evennia'@'localost'; FLUSH PRIVILEGES;" -U postgres install: - pip install psycopg2-binary - pip install mysqlclient - pip install -e . - pip install coveralls before_script: - python -VV - evennia --init testing_mygame - cp .travis/testing_settings.py testing_mygame/server/conf/settings.py - cd testing_mygame - evennia migrate script: - coverage run --source=../evennia --omit=*/migrations/*,*/urls.py,*/test*.py,*.sh,*.txt,*.md,*.pyc,*.service ../bin/unix/evennia test evennia after_success: - coveralls
dist: xenial language: python cache: pip service: - postgresql - mysql python: - "3.7" env: - TESTING_DB=sqlite3 - TESTING_DB=postgresql - TESTING_DB=mysql before_install: - psql -c "CREATE USER evennia WITH PASSWORD 'password'; CREATE DATABASE evennia; GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;'" - mysql -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password'; CREATE DATABASE evennia; ALTER DATABASE `evennia` CHARACTER SET utf8; GRANT ALL PRIVILEGES ON evennia.* TO 'evennia'@'localost'; FLUSH PRIVILEGES;" -U postgres install: - pip install psycopg2-binary - pip install mysqlclient - pip install -e . - pip install coveralls before_script: - python -VV - evennia --init testing_mygame - cp .travis/testing_settings.py testing_mygame/server/conf/settings.py - cd testing_mygame - evennia migrate script: - coverage run --source=../evennia --omit=*/migrations/*,*/urls.py,*/test*.py,*.sh,*.txt,*.md,*.pyc,*.service ../bin/unix/evennia test evennia after_success: - coveralls
Manage to correctly spell 'postgresql' ...
Manage to correctly spell 'postgresql' ...
YAML
bsd-3-clause
jamesbeebop/evennia,jamesbeebop/evennia,jamesbeebop/evennia
86d437b6974702013e7db272e60876e15b4218f9
.travis.yml
.travis.yml
language: python sudo: false python: - 2.7 - 3.2 - 3.3 - 3.4 - pypy - pypy3 env: - FORCE_TEST_VCS=bzr - FORCE_TEST_VCS=git - FORCE_TEST_VCS=hg - FORCE_TEST_VCS=svn install: - pip install coverage coveralls mock script: - SKIP_NO_TESTS=1 coverage run --source=check_manifest setup.py test -q - coverage run --source=check_manifest --append check_manifest.py after_script: - coveralls notifications: email: false
language: python sudo: false python: - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - pypy - pypy3 env: - FORCE_TEST_VCS=bzr - FORCE_TEST_VCS=git - FORCE_TEST_VCS=hg - FORCE_TEST_VCS=svn install: - pip install coverage coveralls mock script: - SKIP_NO_TESTS=1 coverage run --source=check_manifest setup.py test -q - coverage run --source=check_manifest --append check_manifest.py after_script: - coveralls notifications: email: false
Enable Python 3.5 in Travis
Enable Python 3.5 in Travis
YAML
mit
mgedmin/check-manifest,mauritsvanrees/check-manifest
6c7d37215c8d40e9a90147d0f0580fbda8187520
.travis.yml
.travis.yml
language: node_js install: - npm install -g yarn - yarn install script: - npm test - npm run release:semantic env: global: - secure: k00BVlgfFnvYE/wikDY9c8HhPR/hgeB1U9cIs8rV3SNGVau1VtYsvYLAiLatO7VqE6HmITr5VxQMoOgkAeO/ATS7tXIJydlq0GMTwjtx38Vtc3/HqfuXKVVpZBahIHyNraodiGs5gl0aHZUH8pExNJl3i19aOHZXIXj6NUXNlOA= - secure: bbZWoSRo2838rWq/BdqUi3pMD4aXt6VdpRwNgC80GyxqS44pRvexV45bax4jfH+Cvv/IoDjQFrFalMEcDkhxfQ37EwMJB0YW1tfiUwqRZGHyKjKXoUBzOznNObxTVp7tEjra+MFKVsUKsKE80XFFgaKV6CvNbMr+qYxql+EP70M=
language: node_js after_success: - npm run release:semantic
Simplify build and make sure releases happen after success.
build: Simplify build and make sure releases happen after success.
YAML
mit
skatejs/skatejs,chrisdarroch/skatejs,skatejs/skatejs,skatejs/skatejs,chrisdarroch/skatejs
e272cc4a23a330033851a95c6527ffb492175364
.travis.yml
.travis.yml
language: php php: - 7.0 - 5.6 - 5.5 - hhvm - 5.4 - 5.3 env: matrix: - PREFER_LOWEST="--prefer-lowest" - PREFER_LOWEST="" before_script: - composer install $PREFER_LOWEST script: ./bin/phpunit
language: php php: - 7.0 - 5.6 - 5.5 - hhvm - 5.4 - 5.3 env: matrix: - PREFER_LOWEST="--prefer-lowest" - PREFER_LOWEST="" before_script: - composer update $PREFER_LOWEST script: ./bin/phpunit
Use Composer update command rather than install
Use Composer update command rather than install
YAML
mit
archfizz/slotmachine
2ced5535f62925c53d4cc7736771735b203c6397
.travis.yml
.travis.yml
sudo: false language: rust rust: - nightly before_install: # Check formatting - cargo install rustfmt script: # Check build script formatting separately because cargo fmt doesn't pick it up - rustfmt --write-mode=diff build.rs # Check formatting of sources - cargo fmt -- --write-mode=diff - cargo build --verbose - cargo test --verbose - cargo bench --verbose cache: cargo
sudo: false language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly before_install: # Check formatting - cargo install rustfmt script: # Check build script formatting separately because cargo fmt doesn't pick it up - rustfmt --write-mode=diff build.rs # Check formatting of sources - cargo fmt -- --write-mode=diff - cargo build --verbose - cargo test --verbose - cargo bench --verbose cache: cargo
Test against stable and beta
Test against stable and beta
YAML
apache-2.0
lunaryorn/xkpwgen.rs
ab041ff44c8e74b0fc1e71032c9b080638f1d8eb
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "nightly" install: "pip install -r requirements.txt" script: nosetests
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "nightly" install: - "pip install -r requirements.txt" - "pip install coverage" script: coverage run --source=highlander setup.py test
Use coverage to run the tests.
Use coverage to run the tests.
YAML
mit
chriscannon/highlander
6a5a17b0101bd28981851c1c58cfdabbf491bd2f
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.11" - "0.10" - "0.12" - "4.0" - "4.1" before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error script: - bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
sudo: false language: node_js node_js: - "0.10" - "0.11" - "0.12" - "4.0" - "4.1" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
YAML
mit
cliffano/health
7817dfa283730157f05def2c758b80bf17b63189
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.2.5 - 2.3.1 - jruby-9.1.2.0 - rbx cache: bundler sudo: false matrix: allow_failures: - rvm: rbx
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.2.5 - 2.3.1 - jruby - rbx cache: bundler sudo: false matrix: allow_failures: - rvm: rbx - rvm: jruby
Change Travis JRuby to default and allow failures.
Change Travis JRuby to default and allow failures.
YAML
unlicense
ruby-rdf/sparql,ruby-rdf/sparql
c433af8cb196d3841808e34c29588f2f5ee94199
.travis.yml
.travis.yml
language: node_js node_js: - "1.1.0" - "0.8.0" before_script: - npm install -g grunt-cli
language: node_js before_script: - npm install -g grunt-cli
Remove multiple node.js version testing
Remove multiple node.js version testing
YAML
apache-2.0
wcandillon/xqlint
c58515de6190f1c2dd34d2a8a202e2409d43a6bb
.travis.yml
.travis.yml
--- language: node_js node_js: - "4" sudo: false cache: directories: - node_modules - bower_components before_install: - npm config set spin false - npm install -g bower - bower --version - npm install phantomjs-prebuilt - node_modules/phantomjs-prebuilt/bin/phantomjs --version install: - npm install - bower install script: - npm test after_success: - npm install -g codeclimate-test-reporter - codeclimate-test-reporter < coverage/lcov.info env: - COVERAGE=true CODECLIMATE_REPO_TOKEN=2018541b189c3edb927aac5eb867ba14606840df1c10234894af8b535f4cd519
--- language: node_js node_js: - "4" sudo: false cache: directories: - node_modules - bower_components before_install: - npm config set spin false - npm install -g bower yarn - bower --version - yarn --version - npm install phantomjs-prebuilt - node_modules/phantomjs-prebuilt/bin/phantomjs --version install: - yarn install - bower install script: - npm test after_success: - npm install -g codeclimate-test-reporter - codeclimate-test-reporter < coverage/lcov.info env: - COVERAGE=true CODECLIMATE_REPO_TOKEN=2018541b189c3edb927aac5eb867ba14606840df1c10234894af8b535f4cd519
Use yarn over npm to install dependencies
Use yarn over npm to install dependencies
YAML
mit
opensource-challenge/opensource-challenge-client,opensource-challenge/opensource-challenge-client
bc447419b65b02f0c328b02c1d11ca7d66be1e4c
.travis.yml
.travis.yml
language: node_js dist: trusty sudo: false node_js: - '4' - '6' - '7' env: global: - secure: NyTJRyVlZACJzp4rU6O9abqm2Z+P3x6mhFne8B9iqflt+9pesdT9Jz/a5oi8+hjA1n+tRADkrXjGz8GPgFCI1YP6+RgOQjGYnf3F/7/efbHjGrtTQPKq6Fu07upN9B/yXEsFML05abloiJvPLeHvDS9xY9qsgkDzvikdjrUleIs= - secure: di2dAKlPdcQ2yNo7YMIdqJbfk4KhYknh6g0pGF0i53tszFoBRVyAGb1uI7ZlrHIBOnOSi5XnLuoocEKscAToZjAANXYIcIxV29lXADkrDXXDqSaXWuvtGPadFRxeAuk07VEukj6xNEr/eSAuGyRb9K4HURSmEvWlUMMTMGOIB4Y= before_install: # Log HTTP requests - npm config set loglevel http # Set up xvfb for headless Firefox testing - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start install: - time npm install
language: node_js dist: trusty sudo: false node_js: - '4' - '6' - '8' env: global: - secure: NyTJRyVlZACJzp4rU6O9abqm2Z+P3x6mhFne8B9iqflt+9pesdT9Jz/a5oi8+hjA1n+tRADkrXjGz8GPgFCI1YP6+RgOQjGYnf3F/7/efbHjGrtTQPKq6Fu07upN9B/yXEsFML05abloiJvPLeHvDS9xY9qsgkDzvikdjrUleIs= - secure: di2dAKlPdcQ2yNo7YMIdqJbfk4KhYknh6g0pGF0i53tszFoBRVyAGb1uI7ZlrHIBOnOSi5XnLuoocEKscAToZjAANXYIcIxV29lXADkrDXXDqSaXWuvtGPadFRxeAuk07VEukj6xNEr/eSAuGyRb9K4HURSmEvWlUMMTMGOIB4Y= before_install: # Log HTTP requests - npm config set loglevel http # Set up xvfb for headless Firefox testing - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start install: - time npm install
Test on Node.js 8 instead of 7
Travis: Test on Node.js 8 instead of 7
YAML
mit
EE/karma-ng-json2js-preprocessor
0ec4fb6f0a53b755c28729f4269934e067f9c730
.travis.yml
.travis.yml
--- language: ruby bundler_args: --without development before_install: rm Gemfile.lock || true rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 script: bundle exec rake test env: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.3.0" - PUPPET_VERSION="~> 3.4.0" - PUPPET_VERSION="~> 3.5.0" - PUPPET_VERSION="~> 3.6.0" matrix: exclude: - rvm: 1.9.3 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.0.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.3.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.4.0"
--- language: ruby bundler_args: --without development before_install: rm Gemfile.lock || true rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 script: bundle exec rake test env: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.3.0" - PUPPET_VERSION="~> 3.4.0" - PUPPET_VERSION="~> 3.5.0" - PUPPET_VERSION="~> 3.6.0" - PUPPET_VERSION="~> 3.7.0" matrix: exclude: - rvm: 1.9.3 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.0.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.3.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.4.0"
Add Puppet version 3.7.0 to Travis tests.
Add Puppet version 3.7.0 to Travis tests.
YAML
apache-2.0
gcmalloc/garethr-sysdig,garethr/garethr-sysdig
63e5d0b570ef4d154e434f68440e4dbe8df23b03
.travis.yml
.travis.yml
install: - curl -s http://www.rust-lang.org/rustup.sh | sudo sh script: - cargo build - cargo test - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo '<meta http-equiv=refresh content=0;url=url/index.html>' > target/doc/index.html && cp github.png target/doc/ && sudo pip install ghp-import && ghp-import -n target/doc && git push -fq https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: - secure: DoxnyDvhhRocCKtvyRe0Wa4P/zwhEcSH67kSa1f+KMuLzZQqIxFqCGTha2KzKyuymMMVyUC1Is+MWzVjBtAaIHCm07Do/TH9rWijTZx0pWK9bJ8idxzycGTsZJEyzDQbkpGNRsAfygxwP2r+K6VSE6MDg2M6AjnSLzpjWMLqr+s=
install: - curl -s http://www.rust-lang.org/rustup.sh | sudo sh script: - cargo build - cargo test - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo '<meta http-equiv=refresh content=0;url=url/index.html>' > target/doc/index.html && cp github.png target/doc/ && sudo pip install ghp-import && ghp-import -n target/doc && git push -f https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: - secure: DoxnyDvhhRocCKtvyRe0Wa4P/zwhEcSH67kSa1f+KMuLzZQqIxFqCGTha2KzKyuymMMVyUC1Is+MWzVjBtAaIHCm07Do/TH9rWijTZx0pWK9bJ8idxzycGTsZJEyzDQbkpGNRsAfygxwP2r+K6VSE6MDg2M6AjnSLzpjWMLqr+s=
Make pushing to GitHub Pages verbose.
Make pushing to GitHub Pages verbose.
YAML
apache-2.0
cGuille/rust-url,jgillich/rust-url,pyfisch/rust-url,nox/rust-url,pyfisch/rust-url,servo/rust-url,cGuille/rust-url,jgillich/rust-url,nox/rust-url,servo/rust-url
07d0456dff528f2ec6208993f4f0ba4d10e25693
.travis.yml
.travis.yml
language: node_js node_js: - "5.1" branches: only: - master env: global: - secure: |- Gz4y8zxEhPJVGfAq7UROzXS0qo9RyKFfc4hsJHy5hWBbTVCoe7BvcxtOfHkF 6DG246MPtxvkZsqaqPUJ55eg+ED+GTyG7lWsKJb9TA/8QtqKlHSyaW9pKZgi Nwx1a9i7wGMCQ2GQ58KOHVAx33wpf3TVvXyEdxXNeLxDhAqlA1U= - secure: |- AjvRPOjPEuDl8qwEUOk2V1HH6C5AoE8V0/1+twsnaEcgfHWGDk3g7oPfMOW3 ArybZFvN+wpvWfwoJAhRV7yQv9yoGT1fEtMtn3GB9mQiCFO70L/MrqXePJAr ajs3LH0wqhj1zW8UUmhTxBSLvzRyW++W5yx2hYr92EkrlpFZZUg= install: - npm install -g browserify - npm install notifications: email: never
language: node_js node_js: - "6" - "8" branches: only: - master env: global: - secure: |- Gz4y8zxEhPJVGfAq7UROzXS0qo9RyKFfc4hsJHy5hWBbTVCoe7BvcxtOfHkF 6DG246MPtxvkZsqaqPUJ55eg+ED+GTyG7lWsKJb9TA/8QtqKlHSyaW9pKZgi Nwx1a9i7wGMCQ2GQ58KOHVAx33wpf3TVvXyEdxXNeLxDhAqlA1U= - secure: |- AjvRPOjPEuDl8qwEUOk2V1HH6C5AoE8V0/1+twsnaEcgfHWGDk3g7oPfMOW3 ArybZFvN+wpvWfwoJAhRV7yQv9yoGT1fEtMtn3GB9mQiCFO70L/MrqXePJAr ajs3LH0wqhj1zW8UUmhTxBSLvzRyW++W5yx2hYr92EkrlpFZZUg= install: - npm install -g browserify - npm install notifications: email: never
Update Node.js versions of Travis CI
Update Node.js versions of Travis CI
YAML
mit
keen/keen-tracking.js,keen/keen-tracking.js
e2b34db57d1db4f30449fe858c8521bfacfa97de
.travis.yml
.travis.yml
language: objective-c env: matrix: - MONO_VERSION="3.10.0" install: - wget "http://download.mono-project.com/archive/${MONO_VERSION}/macos-10-x86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" - sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target / script: - ./build.sh All
language: csharp sudo: false # use the new container-based Travis infrastructure script: - ./build.sh All
Use Travis CI language support for .NET
Use Travis CI language support for .NET
YAML
mit
NatElkins/Paket,jeremyabbott/doctoralsurvey,blazey/blazey.substituter,ctaggart/Paket,isaacabraham/Paket,magicmonty/Paket,gsvgit/ProjectScaffold,codehutch/pg3d,artur-s/Paket,jsparkes/ProjectScaffold,NaseUkolyCZ/ProjectScaffoldWithApps,mexx/Paket,magicmonty/Paket,jam40jeff/Paket,artur-s/Paket,simonhdickson/Paket,isaacabraham/Paket,isaacabraham/Paket,codehutch/pg3d,Stift/Paket,ovatsus/FSharp.ProjectScaffold,robertpi/Paket,Eleven19/SSISClient,cloudRoutine/Paket,NatElkins/Paket,cloudRoutine/Paket,ovatsus/Paket,mrinaldi/Paket,lexarchik/Paket,drzoidb3rg/FSharpTemplate,codehutch/pg3d,vbfox/Paket,theimowski/FsPrimo,baronfel/mongomigrator,0x53A/Paket,nhsevidence/ld-bnf,Eleven19/SSISManagement,smkell/fsfbl,devboy/Paket,dedale/Paket,DamianReeves/Incubation,terjetyl/ModulusCalculator2,devboy/Paket,DamianReeves/Incubation,robertpi/Paket,mexx/Paket,simonhdickson/Paket,cloudRoutine/Paket,Vidarls/ProjectScaffold,thinkbeforecoding/Paket,snowcrazed/Paket,lexarchik/Paket,mavnn/Paket,konste/Paket,Thorium/Paket,steego/Steego.Demo,Eleven19/SSISClient,mausch/Paket,mrinaldi/Paket,eiriktsarpalis/progfsharp2015,kjellski/Paket,magicmonty/Paket,simonhdickson/Paket,Thorium/Paket,hodzanassredin/TransAlt,hodzanassredin/NFastText,matthid/Paket,jeremyabbott/doctoralsurvey,snowcrazed/Paket,vbfox/Paket,bradphelan/majk,isaacabraham/Paket,lexarchik/Paket,vbfox/Paket,fjoppe/FsYamlParser,jonathankarsh/Paket,hodzanassredin/NFastText,inosik/Paket,matthid/Paket,ctaggart/Paket,mavnn/Paket,ed-ilyin/EdIlyin.FSharp.Elm.Core,matthid/ProjectScaffold,0x53A/Paket,NatElkins/Paket,thinkbeforecoding/Paket,Thorium/Paket,cloudRoutine/Paket,0x53A/Paket,willryan/TimestampedJsonLogFilter,baronfel/Paket,DamianReeves/Kollege,mausch/Paket,ascjones/Paket,matthid/Paket,jonathankarsh/Paket,baronfel/mongomigrator,simonhdickson/Paket,baronfel/Paket,MorganPersson/Paket,Eleven19/SSISClient,MorganPersson/Paket,Stift/Paket,fjoppe/Legivel,modulexcite/ProjectScaffold,thinkbeforecoding/Paket,rneatherway/ProjectScaffold,baronfel/mongomigrator,ascjones/Paket,Stift/Paket,neoeinstein/FSharp.RestApiProviders,LexxFedoroff/Paket,lexarchik/Paket,vasily-kirichenko/Paket,theimowski/Paket,sergey-tihon/Paket,colinbull/Paket,MorganPersson/Paket,jeremyabbott/doctoralsurvey,bmuk/bmuk.io,colinbull/Paket,fsprojects/ProjectScaffold,steego/Steego.Demo,vasily-kirichenko/Paket,giacomociti/AntaniXml,NaseUkolyCZ/ProjectScaffoldWithApps,NatElkins/Paket,0x53A/Paket,DamianReeves/Kollege,sideeffffect/ProjectScaffold,MorganPersson/Paket,antymon4o/Paket,snowcrazed/Paket,jeremyabbott/doctoralsurvey,robertpi/Paket,theimowski/Paket,NaseUkolyCZ/ProjectScaffoldWithApps,ccozianu/XTestFSharp1,bigjonroberts/Flurl.fs,willryan/Fakeish,betgenius/Paket,magicmonty/Paket,snowcrazed/Paket,toburger/FSharp.Json,Eleven19/SSISManagement,betgenius/Paket,mrinaldi/Paket,matthid/Paket,robertpi/caffe.clr.demo,NaseUkolyCZ/ProjectScaffoldWithApps,inosik/Paket,jeremyabbott/doctoralsurvey,antymon4o/Paket,fjoppe/Legivel,sideeffffect/ProjectScaffold,thinkbeforecoding/Paket,sergey-tihon/Paket,Thorium/Paket,NaseUkolyCZ/ProjectScaffoldWithApps,halcwb/ProjectScaffold,vbfox/Paket,nhsevidence/ld-bnf,dedale/Paket,enricosada/ProjectScaffold,steego/Steego.Demo,enricosada/ProjectScaffold,blazey/blazey.substituter,markstownsend/edna,Stift/Paket,YaccConstructor/ProjectScaffold,mrinaldi/Paket,ovatsus/Paket,jam40jeff/Paket,LexxFedoroff/Paket,fsprojects/Paket,fsprojects/ProjectScaffold,kjellski/Paket,robertpi/Paket,konste/Paket,giacomociti/AntaniXml,mastoj/FSourcing,fsprojects/Paket
c511e7d06e4303ebfb8d0ef844ad4e196a823720
.travis.yml
.travis.yml
language: node_js node_js: - node - 6 before_install: - phantomjs --version before_script: - npm install patternengine-node-mustache - npm install patternengine-node-underscore - npm install patternengine-node-handlebars - npm install patternengine-node-twig branches: only: - master - dev - dev-3.0 notifications: webhooks: urls: - https://webhooks.gitter.im/e/a14f537f16b0756d9470 on_success: always on_failure: always on_start: never
language: node_js node_js: - node - 8 - 6 before_install: - phantomjs --version before_script: - npm install @pattern-lab/patternengine-node-mustache - npm install @pattern-lab/patternengine-node-underscore - npm install @pattern-lab/patternengine-node-handlebars - npm install patternengine-node-twig branches: only: - master - dev notifications: webhooks: urls: - https://webhooks.gitter.im/e/a14f537f16b0756d9470 on_success: always on_failure: always on_start: never
Update installed packages to scoped engines. Add explicit Node 8 run
chore(Travis): Update installed packages to scoped engines. Add explicit Node 8 run
YAML
mit
pattern-lab/patternlab-node,pattern-lab/patternlab-node,pattern-lab/patternlab-node,pattern-lab/patternlab-node
a95c55cd252453a0e72644a1d286d4ed34ae3a72
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "0.11" - "0.10"
language: node_js node_js: - "0.12" - "0.11" - "0.10" - "4.0" - "stable"
Add test for latest and stable
Add test for latest and stable
YAML
mit
jiahaog/Revenant
fc726240fd507cd56eff185f6da86ad5ca990356
.travis.yml
.travis.yml
language: node_js node_js: - 'node' script: node_modules/.bin/intern-client config=tests/intern before_script: - npm install grunt-cli -g
language: node_js node_js: - 'node' before_script: - npm install grunt-cli -g
Update Travis conf to run "npm test" (default)
Update Travis conf to run "npm test" (default)
YAML
mit
oskargustafsson/BFF,oskargustafsson/BFF
31e4a9da4ee4ddbcef22746e699b0e93dafe1ef9
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 - 3.7-dev - pypy - pypy3 - nightly matrix: fast_finish: true allow_failures: - python: 3.7-dev - env: TOXENV=pre-commit-pep257 - env: TOXENV=pre-commit-flake8 include: - python: 3.6 env: TOXENV=pre-commit - python: 3.6 env: TOXENV=pre-commit-pep257 - python: 3.6 env: TOXENV=pre-commit-flake8 cache: pip: true directories: - $HOME/.pre-commit install: pip install tox script: tox deploy: provider: pypi on: tags: true python: 3.6 user: jaraco distributions: release skip_upload_docs: true password: secure: RAfz06AINvz7bfij/YhfkAreRqamgxS8a6jSRNxntYhtJke3ZszUbIDag8+n1I+G5XT2LnMhHqPNR7Plc+AeMz7VXTuy+b81Li5kse20NYlPhd7mBVmTUpXtqYQashV5J39F4qkATBLznCOrMEomM07VTXjO/o2hmQuXniab2Uo=
language: python python: - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 - pypy - pypy3 - nightly matrix: fast_finish: true allow_failures: - env: TOXENV=pre-commit-pep257 - env: TOXENV=pre-commit-flake8 include: - python: 3.6 env: TOXENV=pre-commit - python: 3.6 env: TOXENV=pre-commit-pep257 - python: 3.6 env: TOXENV=pre-commit-flake8 cache: pip: true directories: - $HOME/.pre-commit install: pip install tox script: tox deploy: provider: pypi on: tags: true python: 3.6 user: jaraco distributions: release skip_upload_docs: true password: secure: RAfz06AINvz7bfij/YhfkAreRqamgxS8a6jSRNxntYhtJke3ZszUbIDag8+n1I+G5XT2LnMhHqPNR7Plc+AeMz7VXTuy+b81Li5kse20NYlPhd7mBVmTUpXtqYQashV5J39F4qkATBLznCOrMEomM07VTXjO/o2hmQuXniab2Uo=
Revert "Run tests against Python 3.7-dev".
Revert "Run tests against Python 3.7-dev". This reverts commit 65d457f4c682f0178eca2d4602faeee6557bba52. According to https://docs.travis-ci.com/user/languages/python/#Choosing-Python-versions-to-test-against, nightly currently points to 3.7-dev. No need to unnecessarily consume Travis resources.
YAML
bsd-3-clause
cherrypy/cheroot
aadac15b4f941b7fa04b7ad0be8a732143da7984
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - '2.0' - '2.1' - '2.2' - '2.3.1' - jruby-19mode script: bundle exec rspec before_install: - 'gem install bundler'
language: ruby sudo: false env: global: - 'JRUBY_OPTS=--debug' rvm: - '2.0' - '2.1' - '2.2' - '2.3.1' - 'jruby-9' script: bundle exec rspec before_install: - 'gem install bundler'
Use a Ruby 2.x compatible version of JRuby for testing.
Use a Ruby 2.x compatible version of JRuby for testing.
YAML
mit
deseretbook/hashformer
1c919c294bf36588ccc18f55d0f718246d34e978
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.3.1 env: matrix: - SOLIDUS_BRANCH=v2.3 DB=postgres - SOLIDUS_BRANCH=v2.4 DB=postgres - SOLIDUS_BRANCH=v2.5 DB=postgres - SOLIDUS_BRANCH=v2.6 DB=postgres - SOLIDUS_BRANCH=v2.7 DB=postgres - SOLIDUS_BRANCH=v2.8 DB=postgres - SOLIDUS_BRANCH=master DB=postgres - SOLIDUS_BRANCH=v2.3 DB=mysql - SOLIDUS_BRANCH=v2.4 DB=mysql - SOLIDUS_BRANCH=v2.5 DB=mysql - SOLIDUS_BRANCH=v2.6 DB=mysql - SOLIDUS_BRANCH=v2.7 DB=mysql - SOLIDUS_BRANCH=v2.8 DB=mysql - SOLIDUS_BRANCH=master DB=mysql
sudo: false language: ruby rvm: - 2.3.1 env: matrix: - SOLIDUS_BRANCH=v2.4 DB=postgres - SOLIDUS_BRANCH=v2.5 DB=postgres - SOLIDUS_BRANCH=v2.6 DB=postgres - SOLIDUS_BRANCH=v2.7 DB=postgres - SOLIDUS_BRANCH=v2.8 DB=postgres - SOLIDUS_BRANCH=master DB=postgres - SOLIDUS_BRANCH=v2.4 DB=mysql - SOLIDUS_BRANCH=v2.5 DB=mysql - SOLIDUS_BRANCH=v2.6 DB=mysql - SOLIDUS_BRANCH=v2.7 DB=mysql - SOLIDUS_BRANCH=v2.8 DB=mysql - SOLIDUS_BRANCH=master DB=mysql
Remove Solidus v2.3 from Travis config
Remove Solidus v2.3 from Travis config
YAML
bsd-3-clause
solidusio/solidus_auth_devise,solidusio/solidus_auth_devise,solidusio/solidus_auth_devise
c886d83d085e83e6e0c63a2f38447c3755948657
.travis.yml
.travis.yml
language: node_js cache: yarn before_install: - npm install -g yarn --cache-min "infinity" node_js: - '7' install: - yarn deploy: provider: npm email: jacklam718@gmail.com api_key: $NPM_TOKEN on: branch: master tags: true repo: jacklam718/react-native-button-component
language: node_js cache: yarn before_install: - npm install -g yarn --cache-min "999999999" node_js: - '7' install: - yarn deploy: provider: npm email: jacklam718@gmail.com api_key: $NPM_TOKEN on: branch: master tags: true repo: jacklam718/react-native-button-component
Fix --cache-min 'infinity' invalid issue for Travis CI
Fix --cache-min 'infinity' invalid issue for Travis CI
YAML
mit
jacklam718/react-native-button-component,jacklam718/react-native-button-component,jacklam718/react-native-button-component
ba6aeae3b0b3a5b5f3a9a908afe299dad2d680ed
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 script: ./gradlew build branches: only: - master
sudo: false language: java jdk: - oraclejdk7 script: ./gradlew build branches: only: - master
Migrate to container based Travis CI infrastructure
Migrate to container based Travis CI infrastructure
YAML
apache-2.0
griffio/gradle-plugins,ewerk/gradle-plugins
61028047b98e5d5f98709a0354d27595028a0802
.travis.yml
.travis.yml
language: viml install: - git clone https://github.com/thinca/vim-themis - git clone https://github.com/syngan/vim-vimlint /tmp/vim-vimlint - git clone https://github.com/ynkdir/vim-vimlparser /tmp/vim-vimlparser before_script: - vim --version script: - vim-themis/bin/themis --reporter spec - sh /tmp/vim-vimlint/bin/vimlint.sh -l /tmp/vim-vimlint -p /tmp/vim-vimlparser -e EVL102.l:_=1 autoload/incsearch.vim - sh /tmp/vim-vimlint/bin/vimlint.sh -l /tmp/vim-vimlint -p /tmp/vim-vimlparser -e EVL102.l:_=1 autoload/incsearch
language: viml install: - git clone https://github.com/thinca/vim-themis - git clone https://github.com/syngan/vim-vimlint /tmp/vim-vimlint - git clone https://github.com/ynkdir/vim-vimlparser /tmp/vim-vimlparser before_script: - vim --version script: - vim-themis/bin/themis --reporter spec - sh /tmp/vim-vimlint/bin/vimlint.sh -l /tmp/vim-vimlint -p /tmp/vim-vimlparser -e EVL102.l:_=1 -c func_abort=1 autoload/incsearch.vim - sh /tmp/vim-vimlint/bin/vimlint.sh -l /tmp/vim-vimlint -p /tmp/vim-vimlparser -e EVL102.l:_=1 -c func_abort=1 autoload/incsearch
Add func-abort check by vim-lint
Add func-abort check by vim-lint
YAML
mit
haya14busa/incsearch.vim,mydearxym/incsearch.vim
f72b289e639b7965e24eda055f431b2064dc430d
.travis.yml
.travis.yml
language: python python: - 2.7 install: - ./.travis_setup env: - SKIP_COVERAGE=1 SKIP_INSTALL=1 DJANGO_VERSION=1.4 - SKIP_COVERAGE=1 SKIP_INSTALL=1 DJANGO_VERSION=1.3.1 script: fab test notifications: email: false irc: on_success: change on_failure: always channels: - "irc.freenode.org#armstrongcms"
language: python python: - 2.7 install: - ./.travis_setup env: - SKIP_COVERAGE=1 SKIP_INSTALL=1 DJANGO_VERSION=1.4.3 - SKIP_COVERAGE=1 SKIP_INSTALL=1 DJANGO_VERSION=1.3.3 script: fab test notifications: email: false irc: on_success: change on_failure: always channels: - "irc.freenode.org#armstrongcms"
Update Travis to run latest point releases
Update Travis to run latest point releases
YAML
apache-2.0
armstrong/armstrong.apps.articles,armstrong/armstrong.apps.articles
b8581a806c61d8c23e2c83a9e76b016c970894f0
.travis.yml
.travis.yml
language: haskell before_install: - npm install coffee-script -g - cabal install 'alex >= 3.0.5' script: - coffee -cb templates/default-layout.coffee && mv templates/default-layout.js templates/default-layout.julius && git add templates/default-layout.julius && git rm templates/default-layout.coffee - cabal configure && cabal build before_deploy: - git config user.name 'Travis Builder' - git config user.email 'travis@mithrandi.net' - git commit -m 'Add built CoffeeScript.' deploy: provider: heroku api_key: secure: hBbPLNburzk/YY3hbpgdmbMdfk/osgh76fYBui1Yx6CYBTfMRUii22y8rtrCeu2BD6bEVEoSzFEelxg/LsVUjHIBnowXkl26lu3qbt6WpXi6KIyNJx/Y0U1gyoghW5hHqf2OL0u4zdHc7/jueVNmPcIDqq7XHUq84xi6TvAHwJY= app: lambdacircus on: repo: mithrandi/lambdacircus skip_cleanup: true strategy: git
language: haskell before_install: - npm install coffee-script -g - cabal install 'happy >= 1.19.4' - cabal install 'alex >= 3.1.3' script: - cabal configure && cabal build #deploy: # provider: heroku # api_key: # secure: hBbPLNburzk/YY3hbpgdmbMdfk/osgh76fYBui1Yx6CYBTfMRUii22y8rtrCeu2BD6bEVEoSzFEelxg/LsVUjHIBnowXkl26lu3qbt6WpXi6KIyNJx/Y0U1gyoghW5hHqf2OL0u4zdHc7/jueVNmPcIDqq7XHUq84xi6TvAHwJY= # app: lambdacircus # on: # repo: mithrandi/lambdacircus # skip_cleanup: true # strategy: git
Disable deploying from Travis for now.
Disable deploying from Travis for now.
YAML
mit
mithrandi/lambdacircus
bc2d716957daf0391112f762296cc27bef69004d
.travis.yml
.travis.yml
language: minimal services: - docker jobs: include: - env: DOCKER_IMAGE=maven:3.6.3-jdk-8 - env: DOCKER_IMAGE=maven:3.5.4-jdk-9 # There are no newer images with Maven for this JDK - env: DOCKER_IMAGE=maven:3.6.0-jdk-10 # There are no newer images with Maven for this JDK - env: DOCKER_IMAGE=maven:3.6.3-jdk-11 - env: DOCKER_IMAGE=maven:3.6.2-jdk-12 - env: DOCKER_IMAGE=maven:3.6.2-jdk-13 - env: DOCKER_IMAGE=maven:3.6.3-jdk-14 - env: DOCKER_IMAGE=maven:3.6.3-openjdk-15 # 20200914: enable after RAT-273 is fixed # - env: DOCKER_IMAGE=maven:3.6.3-openjdk-16 install: - docker pull "${DOCKER_IMAGE}" script: - docker run --env "_JAVA_OPTIONS=-Djdk.net.URLClassPath.disableClassPathURLCheck=true" --volume "$PWD":/usr/src/ --workdir /usr/src/ --rm "${DOCKER_IMAGE}" mvn clean package site:site -B
language: minimal services: - docker jobs: include: - env: DOCKER_IMAGE=maven:3.8.4-jdk-8 - env: DOCKER_IMAGE=maven:3.5.4-jdk-9 # There are no newer images with Maven for this JDK - env: DOCKER_IMAGE=maven:3.6.0-jdk-10 # There are no newer images with Maven for this JDK - env: DOCKER_IMAGE=maven:3.8.4-jdk-11 - env: DOCKER_IMAGE=maven:3.6.2-jdk-12 - env: DOCKER_IMAGE=maven:3.6.2-jdk-13 - env: DOCKER_IMAGE=maven:3.6.3-jdk-14 - env: DOCKER_IMAGE=maven:3.6.3-openjdk-15 # 20200914: enable after RAT-273 is fixed # - env: DOCKER_IMAGE=maven:3.6.3-openjdk-16 # - env: DOCKER_IMAGE=maven:3.8.4-openjdk-17 install: - docker pull "${DOCKER_IMAGE}" script: - docker run --env "_JAVA_OPTIONS=-Djdk.net.URLClassPath.disableClassPathURLCheck=true" --volume "$PWD":/usr/src/ --workdir /usr/src/ --rm "${DOCKER_IMAGE}" mvn clean package site:site -B
Use current maven 3.8.4 when building via Travis
Use current maven 3.8.4 when building via Travis
YAML
apache-2.0
apache/creadur-rat,apache/creadur-rat,apache/creadur-rat,apache/creadur-rat,apache/creadur-rat,apache/creadur-rat
c3e21734ec13283b88698435fa4bb0cc5d5aa3a6
.travis.yml
.travis.yml
language: ruby sudo true rvm: - 2.3.1 before_script: - wget https://dl.eff.org/certbot-auto - chmod a+x certbot-auto - ./certbot-auto script: bundle exec rake travis
language: ruby dist: trusty sudo: required rvm: - 2.3.1 before_script: - wget https://dl.eff.org/certbot-auto - chmod a+x certbot-auto - ./certbot-auto script: bundle exec rake travis
Use trusty for better certbot setup
Use trusty for better certbot setup
YAML
mit
andrewbredow/hollandloves,andrewbredow/hollandloves,andrewbredow/hollandloves
1b52eb34846a69fbee4edf857a31da8b68f80f4f
.travis.yml
.travis.yml
language: elixir elixir: '1.7' otp_release: '20.0' cache: directories: - $HOME/otp/ # https://askubuntu.com/questions/408784/after-doing-a-sudo-apt-get-install-app-where-does-the-application-get-stored before_install: - sudo apt-get -qq update - sudo apt-get install -y --no-install-recommends rustc cargo - rustc --version - cargo --version # - dpkg -L rustc # - dpkg -L cargo # - dpkg -L libhttp-parser2.1 # - dpkg -L libssh2-1 # - dpkg -L libstd-rust-1.24 # - dpkg -L libstd-rust-dev env: MIX_ENV=test # Compiling PactMockServer outputs a warning {:error, {:upgrade, 'Upgrade not supported by this NIF library.'}} which # swallows coverage results for it. Running test twice solves this for now. script: - mix test - mix coveralls.travis after_script: - mix deps.get --only docs - MIX_ENV=docs mix inch.report
language: elixir elixir: '1.9' otp_release: '22.0' cache: directories: - $HOME/otp/ # https://askubuntu.com/questions/408784/after-doing-a-sudo-apt-get-install-app-where-does-the-application-get-stored before_install: - sudo apt-get -qq update - sudo apt-get install -y --no-install-recommends rustc cargo - rustc --version - cargo --version # - dpkg -L rustc # - dpkg -L cargo # - dpkg -L libhttp-parser2.1 # - dpkg -L libssh2-1 # - dpkg -L libstd-rust-1.24 # - dpkg -L libstd-rust-dev env: MIX_ENV=test # Compiling PactMockServer outputs a warning {:error, {:upgrade, 'Upgrade not supported by this NIF library.'}} which # swallows coverage results for it. Running test twice solves this for now. script: - mix test - mix coveralls.travis after_script: - mix deps.get --only docs - MIX_ENV=docs mix inch.report
Use erlang 22 and elixir 1.9
Use erlang 22 and elixir 1.9
YAML
mit
elitau/pact_elixir
ee9e22ee55a4982c9c3ebebbb39ea9dee99c4e08
.travis.yml
.travis.yml
language: php php: [5.3, 5.4, 5.5, 5.6, 5.3.3, hhvm] branches: except: - /^bugfix\/.*$/ - /^feature\/.*$/ - /^optimization\/.*$/ matrix: include: - php: 5.5 env: SYMFONY_VERSION='2.3.*' before_script: - sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/symfony=$SYMFONY_VERSION; fi;' - composer install --dev --prefer-source - export PATH=./bin:$PATH - echo "<?php echo '@php5' . implode(',@php5.', range(3, PHP_MINOR_VERSION));" > php_version_tags.php script: - phpunit - behat -fprogress --strict --tags '~@php-version,'`php php_version_tags.php`
language: php php: [5.3, 5.4, 5.5, 5.6, 5.3.3, hhvm] branches: except: - /^bugfix\/.*$/ - /^feature\/.*$/ - /^optimization\/.*$/ matrix: include: - php: 5.5 env: SYMFONY_VERSION='2.3.*' - php: 5.5 env: SYMFONY_VERSION='2.4.*' before_script: - sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/symfony=$SYMFONY_VERSION; fi;' - composer install --dev --prefer-source - export PATH=./bin:$PATH - echo "<?php echo '@php5' . implode(',@php5.', range(3, PHP_MINOR_VERSION));" > php_version_tags.php script: - phpunit - behat -fprogress --strict --tags '~@php-version,'`php php_version_tags.php`
Test against both Symfony 2.3 and 2.4
Test against both Symfony 2.3 and 2.4
YAML
mit
spolischook/behat,spolischook/behat,Behat/Behat,spolischook/behat,Taluu/Behat,v-abramchuk/Behat
6390f5e3c831f80fc710bcdfcdb7e6b560319a6c
.travis.yml
.travis.yml
language: ruby cache: bundler before_install: gem install bundler gemfile: - gemfiles/standalone.gemfile - gemfiles/binding_of_caller.gemfile - gemfiles/delayed_job.gemfile - gemfiles/rails.gemfile - gemfiles/rack.gemfile rvm: - 1.9.3 - 2.0.0 - 2.1.5 - 2.2.0 - jruby-19mode matrix: fast_finish: true allow_failures: - rvm: jruby-19mode exclude: - rvm: jruby-19mode gemfile: gemfiles/binding_of_caller.gemfile env: global: secure: DwQI6QHuRRaMoKvE9rnXmw3U1KLKH6Y1ZTXCcDN34Zkq7QG5KPt195zvL6XPbsefvd2fOHq4es5D6jxgLlEdKB7njhWX8XNMgb/eprz6zTxSAS/ep31zYHEJ3krWSPM6a7fXJOjdYIzXhVl7I0NRDZGy/Sf6LgHIBMpaGVKGc34=
language: ruby cache: bundler before_install: gem install bundler gemfile: - gemfiles/standalone.gemfile - gemfiles/binding_of_caller.gemfile - gemfiles/delayed_job.gemfile - gemfiles/rails.gemfile - gemfiles/rack.gemfile rvm: - 1.9.3 - 2.0.0 - 2.1.5 - 2.2.0 - jruby-19mode matrix: fast_finish: true allow_failures: - rvm: jruby-19mode exclude: - rvm: jruby-19mode gemfile: gemfiles/binding_of_caller.gemfile - rvm: jruby-19mode gemfile: gemfiles/rails.gemfile - rvm: 1.9.3 gemfile: gemfiles/rails.gemfile env: global: secure: DwQI6QHuRRaMoKvE9rnXmw3U1KLKH6Y1ZTXCcDN34Zkq7QG5KPt195zvL6XPbsefvd2fOHq4es5D6jxgLlEdKB7njhWX8XNMgb/eprz6zTxSAS/ep31zYHEJ3krWSPM6a7fXJOjdYIzXhVl7I0NRDZGy/Sf6LgHIBMpaGVKGc34=
Exclude Rails edge build under 1.9.3 on Travis.
Exclude Rails edge build under 1.9.3 on Travis.
YAML
mit
honeybadger-io/honeybadger-ruby,kylerippey/honeybadger-ruby,honeybadger-io/honeybadger-ruby,kylerippey/honeybadger-ruby
593a4cef838a8f2c2a7b5eb5a0871df6ef16f54b
.travis.yml
.travis.yml
language: java dist: trusty services: - mysql jdk: oraclejdk8 sudo: required install: ./.travis.install.sh addons: apt: packages: - mysql-server-5.6 - mysql-client-core-5.6 - mysql-client-5.6
language: java dist: trusty services: - mysql jdk: oraclejdk8 sudo: required before_install: - mysql -e 'CREATE DATABASE IF NOT EXISTS stroom;' install: "./.travis.install.sh" addons: apt: packages: - mysql-server-5.6 - mysql-client-core-5.6 - mysql-client-5.6 deploy: provider: releases api_key: secure: xUPJboaSjxs3lKCqXu5zYzdV75S+lu5EZ6RD+RigmQ5MSjeuFBhoBKYaJUz+ejaoFLfF8WSUbmlgTeRMK7QI4MtCqjy08uREext8sm0behMREz4mmPEb9eTLu+WfIXFbnOPG4pKzkAtHA3x+hNQN3EWga1Xa2WXGYdOuK1B7vnrYOPo9D2zI12JCaoXt0KUQ70LwE07uwBIuDn+0EbVsAftFatJh7jZXeMsE8GmdcwsM/DObKjtTLBH3bpE8pPPJ8H0ssuIsQk2jHg91cTgrlB0q0K1a5TjeKKMGPMY6S6UR9cB7l7FqCVEsOd7T/ExdKp1TflMRyuuKG9ACBXTaegfBt7pP7KYEpYtidC5p/b1J4cYvazVTIfo6m93wnOJAdcD1XeMqNIQZVSxNuflmgM8xZz+UuqPBF4dk3Z5Eoh4sTH+t6WmZY6YoIt6tRMQ8xRyvkTfzsfYUtsV4csyeB2oy5s/GJmYGtR5GjjK6T+mh8RmI/DVWW50ubdFaAYYdz+LSgfpGhBXEBkYPghMSjYiPDsJStXsOwRSQbR9LmRO7jk08PxxT33pLr8Ct0HoQPpSP8Fom4q1ntrZBDjeHL8/2cQtRKqUg3X9G0sU7aW5i0G4U7BE42Xkcc/VVJhFrVbRj5+xQq70uMyUmHi2Wh+mBQSY+ZlBrvr6FRcKj42E= file: stroom-app.jar skip_cleanup: true on: tags
Add release config and table creation
Add release config and table creation
YAML
apache-2.0
gchq/stroom,gchq/stroom,gchq/stroom,gchq/stroom,gchq/stroom,gchq/stroom
2868a09ff65cf12dae3c1d098c9d6da1f52e5e7f
.travis.yml
.travis.yml
sudo: required dist: trusty before_install: - sudo sh -c 'echo "deb [arch=amd64] http://apt-mo.trafficmanager.net/repos/dotnet/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list' - sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893 - sudo apt-get update - sudo apt-get install -y dotnet-nightly script: - dotnet restore - dotnet build tests/SideBySide.New - cd tests/MySqlConnector.Tests - dotnet restore - dotnet build - dotnet test
sudo: required dist: trusty before_install: - sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list' - sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893 - sudo apt-get update - sudo apt-get install -y dotnet-dev-1.0.0-preview2-003121 script: - dotnet restore - dotnet build tests/SideBySide.New --configuration Release - dotnet test tests/MySqlConnector.Tests --configuration Release
Update CI build for .NET Core 1.0.
Update CI build for .NET Core 1.0.
YAML
mit
mysql-net/MySqlConnector,gitsno/MySqlConnector,gitsno/MySqlConnector,mysql-net/MySqlConnector
6a1b87b7241e12bd30e2585bd649d25e67489130
.travis.yml
.travis.yml
language: python python: - 2.7 virtualenv: system_site_packages: true before_install: - sudo apt-get install python-numpy python-coverage - wget -O - http://llvm.org/releases/3.2/clang+llvm-3.2-x86-linux-ubuntu-12.04.tar.gz | tar xz - export PATH=$(pwd)/clang+llvm-3.2-x86-linux-ubuntu-12.04/bin:$PATH script: - ls . - ls clang+llvm-3.2-x86-linux-ubuntu-12.04 - ls clang+llvm-3.2-x86-linux-ubuntu-12.04/bin - $(which llvm-config) --version - python setup.py nosetests -s -x
language: python python: - 2.7 virtualenv: system_site_packages: true before_install: - sudo apt-get install python-numpy python-coverage - wget -O - http://llvm.org/releases/3.2/clang+llvm-3.2-x86_64-linux-ubuntu-12.04.tar.gz | tar xz - export PATH=$(pwd)/clang+llvm-3.2-x86_64-linux-ubuntu-12.04/bin:$PATH script: - python setup.py nosetests -s -x
Update to 64-bit LLVM distribution.
CI: Update to 64-bit LLVM distribution.
YAML
mit
dtcaciuc/nitrous,dtcaciuc/nitrous
521ccbcd630ed1002c2a793d0dad7a2b7125d416
.travis.yml
.travis.yml
language: node_js node_js: - 4 - 5 - 6 - 7 - 8 env: - WEBPACK_VERSION=1.x - WEBPACK_VERSION=2.x - WEBPACK_VERSION=3.x script: scripts/test.sh matrix: allow_failures: - node_js: 8
dist: trusty sudo: false language: node_js node_js: - 4 - 5 - 6 - 7 - 8 env: - NODE_ENV=test WEBPACK_VERSION=1.x - NODE_ENV=test WEBPACK_VERSION=2.x - NODE_ENV=test WEBPACK_VERSION=3.x before_install: - npm install -g npm install: - yarn install script: - scripts/test.sh matrix: allow_failures: - node_js: 8
Change install step for Travis
Change install step for Travis Signed-off-by: Max Riveiro <d6057f9977f3a3299068adff565ad43e853028a2@gmail.com>
YAML
mit
kavu/webp-loader,kavu/webp-loader
4cc58cdcbb4d5cf338cf57059565340761e660a1
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.3 - 2.2.1 before_install: gem install bundler -v 1.10.6
language: ruby rvm: - 2.2.3 before_install: gem install bundler -v 1.10.6
Revert "Add Ruby 2.2.1 to Travis"
Revert "Add Ruby 2.2.1 to Travis" This reverts commit 2680d014f3cf233b34f8c740b8a7ec1b9f06ea8b.
YAML
mit
cloudscrape/cloudscrape-client-ruby,ChuckJHardy/cloudscrape-client-ruby,cloudscrape/cloudscrape-client-ruby,ChuckJHardy/cloudscrape-client-ruby
436b5dc802b05d846630dea5861b72cf33abb2d1
.travis.yml
.travis.yml
sudo: requires services: [docker] language: python python: ["2.7"] before_install: - docker pull bamos/openface - docker run -v $PWD:/root/src/openface bamos/openface /bin/sh -c "cd /root/src/openface; ./models/get-models.sh && python2 setup.py install && nosetests-2.7 -v -d test.py" install: - pip install pep8 script: - pep8 --ignore=E402,E501 .
sudo: requires services: [docker] language: python python: ["2.7"] before_install: - docker pull bamos/openface - docker run -v $PWD:/root/src/openface bamos/openface /bin/bash -l -c "cd /root/src/openface; ./models/get-models.sh && python2 setup.py install && nosetests-2.7 -v -d test.py" install: - pip install pep8 script: - pep8 --ignore=E402,E501 .
Use a Bash login shell for Torch executables.
Travis: Use a Bash login shell for Torch executables.
YAML
apache-2.0
Alexx-G/openface,cmusatyalab/openface,Alexx-G/openface,nhzandi/openface,Alexx-G/openface,nhzandi/openface,cmusatyalab/openface,xinfang/face-recognize,nmabhi/Webface,francisleunggie/openface,nmabhi/Webface,xinfang/face-recognize,nmabhi/Webface,cmusatyalab/openface,francisleunggie/openface,francisleunggie/openface,nmabhi/Webface,Alexx-G/openface,nhzandi/openface,xinfang/face-recognize
f79374d077b65a8cee4cdabe4ae7edc93391aef5
.travis.yml
.travis.yml
--- dist: trusty services: - docker language: go go: - "1.11.x" install: # This script is used by the Travis build to install a cookie for # go.googlesource.com so rate limits are higher when using `go get` to fetch # packages that live there. # See: https://github.com/golang/go/issues/12933 - bash scripts/gogetcookie.sh - go get github.com/kardianos/govendor script: - make test - make vet - make website-test branches: only: - master matrix: fast_finish: true allow_failures: - go: tip
--- dist: trusty services: - docker language: go go: - "1.11.x" go_import_path: github.com/terraform-providers/terraform-provider-kubernetes install: # This script is used by the Travis build to install a cookie for # go.googlesource.com so rate limits are higher when using `go get` to fetch # packages that live there. # See: https://github.com/golang/go/issues/12933 - bash scripts/gogetcookie.sh - go get github.com/kardianos/govendor script: - make test - make vet - make website-test branches: only: - master matrix: fast_finish: true allow_failures: - go: tip
Handle forked path in Travis
Handle forked path in Travis
YAML
mpl-2.0
terraform-providers/terraform-provider-kubernetes,terraform-providers/terraform-provider-kubernetes,terraform-providers/terraform-provider-kubernetes
07f99b8f2171e8c0ed71d6b0fcdb04de3b5e21d3
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "nightly" # currently points to 3.6-dev install: "pip install ." script: "py.test -c pytest-travis.ini"
language: python python: - "2.7" - "3.5" - "3.5-dev" # 3.5 development branch - "nightly" # currently points to 3.6-dev install: "pip install ." script: "py.test -c pytest-travis.ini"
Drop tests for Python 3.3 & 3.4
Drop tests for Python 3.3 & 3.4 We can fairly safely assume that those are no longer in use.
YAML
mit
exhuma/puresnmp,exhuma/puresnmp
2476a75ed04d8a86d7a4dd30b306bac7fe2e8edc
.travis.yml
.travis.yml
language: ruby before_install: gem install bundler bundler_args: --without yard guard benchmarks script: "bundle exec rake ci:metrics" rvm: - 1.9.3 - 2.0.0 - 2.1.2 - ruby-head - rbx-2.2.10 matrix: include: - rvm: jruby env: JRUBY_OPTS="$JRUBY_OPTS --debug --1.9" # for simplecov - rvm: jruby env: JRUBY_OPTS="$JRUBY_OPTS --debug --2.0" # for simplecov - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug --2.0" # for simplecov fast_finish: true notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change
language: ruby before_install: gem install bundler bundler_args: --without yard guard benchmarks script: "bundle exec rake ci:metrics" rvm: - 1.9.3 - 2.0.0 - 2.1.2 - ruby-head - rbx-2.2.10 matrix: include: - rvm: jruby-1.7.13 env: JRUBY_OPTS="$JRUBY_OPTS --debug --1.9" # for simplecov - rvm: jruby-1.7.13 env: JRUBY_OPTS="$JRUBY_OPTS --debug --2.0" # for simplecov - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug --2.0" # for simplecov fast_finish: true notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change
Add explicit version for jruby
Add explicit version for jruby
YAML
mit
dkubb/axiom
480d98c91f32da5127b695047b912b889d0b9dc2
.travis.yml
.travis.yml
sudo: false language: python # tell travis to cache ~/.cache/pip cache: pip # don't clone the whole repo history, one commit will do git: depth: 1 # only build branches we care about (PRs are built seperately) branches: only: - master - develop - /^release-v/ before_script: - git remote set-branches --add origin develop - git fetch origin develop matrix: fast_finish: true include: - python: 2.7 env: TOX_ENV=packaging - python: 3.6 env: TOX_ENV=pep8 - python: 2.7 env: TOX_ENV=py27 - python: 2.7 env: TOX_ENV=py27-old - python: 2.7 env: TOX_ENV=py27-postgres TRIAL_FLAGS="-j 4" services: - postgresql - python: 3.5 env: TOX_ENV=py35 - python: 3.6 env: TOX_ENV=py36 - python: 3.6 env: TOX_ENV=py36-postgres TRIAL_FLAGS="-j 4" services: - postgresql - python: 3.6 env: TOX_ENV=check_isort - python: 3.6 env: TOX_ENV=check-newsfragment install: - pip install tox script: - tox -e $TOX_ENV
sudo: false language: python # tell travis to cache ~/.cache/pip cache: pip # don't clone the whole repo history, one commit will do git: depth: 1 # only build branches we care about (PRs are built seperately) branches: only: - master - develop - /^release-v/ before_script: - git remote set-branches --add origin develop - git fetch origin develop matrix: fast_finish: true include: - python: 2.7 env: TOX_ENV=packaging - python: 3.6 env: TOX_ENV=pep8 - python: 2.7 env: TOX_ENV=py27 - python: 2.7 env: TOX_ENV=py27-old - python: 2.7 env: TOX_ENV=py27-postgres TRIAL_FLAGS="-j 4" services: - postgresql - python: 3.5 env: TOX_ENV=py35 - python: 3.6 env: TOX_ENV=py36 - python: 3.6 env: TOX_ENV=py36-postgres TRIAL_FLAGS="-j 4" services: - postgresql - python: 3.6 env: TOX_ENV=check_isort - # we only need to check for the newsfragment if it's a PR build if: type = pull_request python: 3.6 env: TOX_ENV=check-newsfragment install: - pip install tox script: - tox -e $TOX_ENV
Disable newsfragment checks on branch builds
Disable newsfragment checks on branch builds
YAML
apache-2.0
matrix-org/synapse,matrix-org/synapse,matrix-org/synapse,matrix-org/synapse,matrix-org/synapse,matrix-org/synapse
cc7f4a2880e224dc55d15289863817df6d9f6893
.travis.yml
.travis.yml
language: go sudo: false go: - 1.8.* os: - linux - osx script: go test -v notifications: email: false
language: go sudo: false go: - master os: - linux script: go test -v notifications: email: false
Use up-to-date version of Go for Travis CI; try again
Use up-to-date version of Go for Travis CI; try again
YAML
mit
jung-kurt/gofpdf
50457727eb7e98decc0943d762869022f16f501a
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 1.9.3 - jruby-19mode # JRuby in 1.9 mode - rbx-2.1.1
language: ruby rvm: - 2.0.0 - 1.9.3 - jruby-19mode # JRuby in 1.9 mode
Disable Rubinius in Travis builds.
Disable Rubinius in Travis builds. Looks like a fix is coming: https://github.com/rubinius/rubinius/pull/2759.
YAML
mit
heroku/vault-tools
6aacb9e389a862f957144163dfee19419fd91f51
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: #- jruby - 1.9.3 - 2.0.0 - rbx-19mode
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: #- jruby-19mode-1.7.4 - 1.9.3 - 2.0.0 - rbx-19mode
Use JRuby version 1.7.4 for CI.
Use JRuby version 1.7.4 for CI.
YAML
unlicense
ruby-rdf/rdf-rdfxml
2d6353da3edcd4a589433a1f368e0ba09c65de97
staticman.yml
staticman.yml
# Name of the property. You can have multiple properties with completely # different config blocks for different sections of your site. # For example, you can have one property to handle comment submission and # another one to handle posts. simulations: allowedFields: ["benchmark", "metadata", "data"] allowedOrigins: ["localhost", "pages.nist.gov"] branch: "master" commitMessage: "New simulation" filename: "meta" format: "yaml" moderation: true name: "https://pages.nist.gov/chimad-phase-field/" path: "_data/simulations/{fields.metadata.simulation_name}" requiredFields: ["benchmark", "metadata", "data"] generatedFields: date: type: date options: format: "timestamp-seconds"
# Name of the property. You can have multiple properties with completely # different config blocks for different sections of your site. # For example, you can have one property to handle comment submission and # another one to handle posts. simulations: allowedFields: ["benchmark", "metadata", "data"] allowedOrigins: ["localhost", "pages.nist.gov"] branch: "master" commitMessage: "New simulation: {fields.metadata.simulation_name}" filename: "meta" format: "yaml" moderation: true name: "https://pages.nist.gov/chimad-phase-field/" path: "_data/simulations/{fields.metadata.simulation_name}" requiredFields: ["benchmark", "metadata", "data"] generatedFields: date: type: date options: format: "timestamp-seconds"
Add simulation name to commit message
Add simulation name to commit message
YAML
mit
wd15/chimad-phase-field,wd15/chimad-phase-field,usnistgov/chimad-phase-field,usnistgov/chimad-phase-field,usnistgov/chimad-phase-field,wd15/chimad-phase-field
dba1f57ba0fd6671c39806e110e9f865d8c3f1ec
.travis.yml
.travis.yml
language: haskell install: - cabal install gtk2hs-buildtools - cabal install LambdaHack --enable-tests --reinstall --constraint="mtl>=2.1.2" --constraint="containers>=0.5.2.1" --constraint="template-haskell>=2.7.0.0" --constraint="text>=0.11.2.3" - cabal install --enable-tests --reinstall
language: haskell install: - cabal install gtk2hs-buildtools - cabal install --enable-tests --reinstall --constraint="mtl>=2.1.2" --constraint="containers>=0.5.2.1" --constraint="template-haskell>=2.7.0.0" --constraint="text>=0.11.2.3"
Debug Travis build by removing one of cabal invocations
Debug Travis build by removing one of cabal invocations
YAML
agpl-3.0
AllureOfTheStars/Allure
4630d8d677afb3c0c3e6b0d6b961b0d3f45d8a40
.travis.yml
.travis.yml
language: cpp before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-add-repository -y ppa:comp-phys/stable - sudo add-apt-repository -y ppa:boost-latest/ppa - sudo apt-get update -qq - sudo apt-get install -qq g++-4.8 libarmadillo-dev libboost1.54-all-dev - export CC=gcc-4.8 - export CXX=g++-4.8 - printenv - sudo cp .travis/config.hpp /usr/include/armadillo_bits/config.hpp install: - mkdir build && cd build && cmake .. && make -j4 script: - ./bin/mlpack_test -p notifications: email: - mlpack-git@cc.gatech.edu irc: - "chat.freenode.net#mlpack"
language: cpp before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-add-repository -y ppa:comp-phys/stable - sudo add-apt-repository -y ppa:boost-latest/ppa - sudo apt-get update -qq - sudo apt-get install -qq g++-4.8 libarmadillo-dev libarmadillo4 libboost1.54-all-dev - export CC=gcc-4.8 - export CXX=g++-4.8 - printenv - sudo cp .travis/config.hpp /usr/include/armadillo_bits/config.hpp install: - mkdir build && cd build && cmake .. && make -j4 script: - ./bin/mlpack_test -p notifications: email: - mlpack-git@cc.gatech.edu irc: - "chat.freenode.net#mlpack"
Use at least armadillo 4.x to build mlpack.
Use at least armadillo 4.x to build mlpack.
YAML
bsd-3-clause
thirdwing/mlpack,ersanliqiao/mlpack,lezorich/mlpack,BookChan/mlpack,palashahuja/mlpack,ranjan1990/mlpack,erubboli/mlpack,ersanliqiao/mlpack,thirdwing/mlpack,BookChan/mlpack,darcyliu/mlpack,theranger/mlpack,darcyliu/mlpack,erubboli/mlpack,ranjan1990/mlpack,stereomatchingkiss/mlpack,palashahuja/mlpack,BookChan/mlpack,lezorich/mlpack,ersanliqiao/mlpack,palashahuja/mlpack,stereomatchingkiss/mlpack,lezorich/mlpack,ajjl/mlpack,ranjan1990/mlpack,darcyliu/mlpack,ajjl/mlpack,theranger/mlpack,stereomatchingkiss/mlpack,thirdwing/mlpack,erubboli/mlpack,theranger/mlpack,ajjl/mlpack
50191f2dc285570d5388ddd8b84a78e37c69538c
.travis.yml
.travis.yml
language: go go: - 1.2 - 1.3 - 1.4 - tip install: - make updatedeps - go build -o winrm-cli 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 - go get github.com/modocache/gover - go get gopkg.in/check.v1 script: - make ci after_script: - $HOME/gopath/bin/goveralls -service="travis-ci" -coverprofile=profile.cov -repotoken $COVERALLS_TOKEN matrix: allow_failures: - go: tip env: global: secure: "GTrEtbp3sq14Jjz34pgIO0/Zv19YaDOOUJay4qnzGxs527HkW7YdsWENz0/yGHet+0jMOPatfP3uLaQHVFCNFZLfMYVmD5apMl7hPFrCaDZVvI9+ZwngIZ8gHzcf2Q+L6LxUT523ypjmRR+T1qYfbOy4UXlfGCyHFBbRB7AbMDk="
language: go go: - 1.2 - 1.3 - 1.4 - tip install: - make updatedeps - go build -o winrm-cli before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - go get github.com/modocache/gover - go get gopkg.in/check.v1 script: - make ci after_script: - $HOME/gopath/bin/goveralls -service="travis-ci" -coverprofile=profile.cov -repotoken $COVERALLS_TOKEN matrix: allow_failures: - go: tip env: global: secure: "GTrEtbp3sq14Jjz34pgIO0/Zv19YaDOOUJay4qnzGxs527HkW7YdsWENz0/yGHet+0jMOPatfP3uLaQHVFCNFZLfMYVmD5apMl7hPFrCaDZVvI9+ZwngIZ8gHzcf2Q+L6LxUT523ypjmRR+T1qYfbOy4UXlfGCyHFBbRB7AbMDk="
Fix test build on go 1.4 and tip
Fix test build on go 1.4 and tip
YAML
apache-2.0
sneal/winrm,gonkulator/winrm,pecigonzalo/winrm,alistairpialek/wingo,gonkulator/winrm,bogdanteleaga/winrm,bogdanteleaga/winrm,sneal/winrm,masterzen/winrm,alistairpialek/wingo,gonkulator/winrm,masterzen/winrm,bogdanteleaga/winrm,sneal/winrm,alistairpialek/wingo,pecigonzalo/winrm
9572dbf9aa43541c5686f68a09008b057ba7edd3
.travis.yml
.travis.yml
language: perl perl: - "5.16" - "5.18" - "5.20" - "5.22" - "5.24" - "5.26" env: global: - SAMTOOLS_VERSION=1.2 addons: apt: sources: - debian-sid packages: - shellcheck before_install: - git clone --branch $SAMTOOLS_VERSION --depth 1 https://github.com/samtools/samtools.git - git clone --branch $SAMTOOLS_VERSION --depth 1 https://github.com/samtools/htslib.git - pushd samtools && make && make prefix=~/.local install && popd - rm -rf samtools htslib - cp inc/qsub ~/.local/bin/ before_script: - export SAMTOOLS_PATH=~/.local/bin
language: perl perl: - "5.16" - "5.18" - "5.20" - "5.22" - "5.24" - "5.26" env: global: - SAMTOOLS_VERSION=1.2 - SHELLCHECK_VERSION=v0.4.7 before_install: - pushd samtools && make && make prefix=~/.local install && popd - git clone --branch $SAMTOOLS_VERSION --depth 1 https://github.com/samtools/samtools.git - git clone --branch $SAMTOOLS_VERSION --depth 1 https://github.com/samtools/htslib.git - pushd samtools && make && make prefix=~/.local install && popd - rm -rf samtools htslib - cp inc/qsub ~/.local/bin/ install: - wget "https://storage.googleapis.com/shellcheck/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" - tar --xz -xvf "shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" - shellcheck() { "shellcheck-${SHELLCHECK_VERSION}/shellcheck" "$@"; } - shellcheck --version before_script: - export SAMTOOLS_PATH=~/.local/bin
Switch to manual install for shellcheck
Switch to manual install for shellcheck
YAML
mit
hartwigmedical/pipeline,hartwigmedical/pipeline,hartwigmedical/pipeline
0a6cca1377559274c3e5740d74554007478265b3
.travis.yml
.travis.yml
before_install: - sudo apt-add-repository --yes ppa:mapnik/v2.1.0 - sudo apt-get update -q - sudo apt-get install -q libmapnik libmapnik-dev postgresql-9.1-postgis libsigc++-dev - createdb template_postgis - psql -c "CREATE EXTENSION postgis" template_postgis env: - NPROCS=1 JOBS=1 language: node_js node_js: - 0.8
before_install: - sudo apt-add-repository --yes ppa:mapnik/v2.1.0 - sudo apt-add-repository --yes ppa:ubuntugis/ppa - sudo apt-get update -q - sudo apt-get install -q libmapnik libmapnik-dev postgresql-9.1-postgis libsigc++-dev - createdb template_postgis - psql -c "CREATE EXTENSION postgis" template_postgis env: - NPROCS=1 JOBS=1 language: node_js node_js: - 0.8
Add ubuntugis ppa repository to get PostGIS-2.0
Add ubuntugis ppa repository to get PostGIS-2.0
YAML
bsd-3-clause
HydroLogic/Windshaft,manueltimita/Windshaft,manueltimita/Windshaft,wsw0108/Windshaft,CartoDB/Windshaft,HydroLogic/Windshaft,CartoDB/Windshaft,HydroLogic/Windshaft,manueltimita/Windshaft,CartoDB/Windshaft,wsw0108/Windshaft,wsw0108/Windshaft
17cf07954c102b0d3644879f708d517e273e9b8e
.travis.yml
.travis.yml
sudo: false addons: postgresql: "9.3" apt: packages: - pkg-config - libcairo2-dev - libjpeg8-dev - libgif-dev env: - NPROCS=1 JOBS=1 PGUSER=postgres language: node_js node_js: - "0.10" notifications: irc: channels: - "irc.freenode.org#cartodb" use_notice: true
sudo: false addons: postgresql: "9.3" apt: sources: - cartodb packages: - pkg-config - libcairo2-dev - libjpeg8-dev - libgif-dev env: - NPROCS=1 JOBS=1 PGUSER=postgres language: node_js node_js: - "0.10" notifications: irc: channels: - "irc.freenode.org#cartodb" use_notice: true
Use cartodb ppa to pick a more recent libcairo2-dev version
Use cartodb ppa to pick a more recent libcairo2-dev version
YAML
bsd-3-clause
CartoDB/Windshaft,CartoDB/Windshaft,CartoDB/Windshaft
31e90630c6cf9b4c3155ea5fbb136a92653dec51
.travis.yml
.travis.yml
language: node_js node_js: 8 script: - make ci sudo: false before_install: git fetch --unshallow after_success: .travis/after_success.sh
language: node_js node_js: - 8.9 - 9 script: - make ci sudo: false before_install: git fetch --unshallow after_success: .travis/after_success.sh
Update Node versions for Travis per 8.9 LTS
ci: Update Node versions for Travis per 8.9 LTS
YAML
mit
emdaer/emdaer,emdaer/emdaer
cab74893315c256d4b5a1934c71b2329a98abd60
.travis.yml
.travis.yml
language: python python: - 'pypy2.7' - 'pypy3.5' - '2.7' - '3.3' - '3.7' - 'nightly' install: - pip install mock==2.0 script: - python -m unittest discover -s tests/ -p test_*.py -v matrix: allow_failures: - python: 'nightly'
language: python python: - 'pypy2.7' - 'pypy3.5' - '2.7' - '3.3' - '3.7' - 'nightly' install: - pip install mock==2.0 - pip install requests script: - python -m unittest discover -s tests/ -p test_*.py -v matrix: allow_failures: - python: 'nightly'
Install requests before running tests
Install requests before running tests
YAML
bsd-2-clause
messagebird/python-rest-api
fb53f5349ade03be8bed6020cd23970e14130b7f
.travis.yml
.travis.yml
language: node_js sudo: false cache: directories: - node_modules node_js: - "0.10" before_install: "npm install -g npm && npm cache clean" script: "npm run-script travis" after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js" notifications: webhooks: urls: - https://webhooks.gitter.im/e/bce1a1b401d97fe096e2 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
language: node_js sudo: false cache: directories: - node_modules node_js: - "0.10" - "0.12" before_install: "npm install -g npm && npm cache clean" script: "npm run-script travis" after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js" notifications: webhooks: urls: - https://webhooks.gitter.im/e/bce1a1b401d97fe096e2 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Enable node.js 0.12 on Travis.
Enable node.js 0.12 on Travis.
YAML
bsd-3-clause
jscinoz/assetgraph,papandreou/assetgraph,jscinoz/assetgraph,jscinoz/assetgraph,assetgraph/assetgraph,papandreou/assetgraph,papandreou/assetgraph
980569e89dad42eb91c490faa96d406ad090d320
.travis.yml
.travis.yml
language: python matrix: include: - python: "2.7" env: TOXENV=py27 - python: "3.4" env: TOXENV=py34 install: "pip install tox" script: tox notifications: email: on_success: never on_failure: always sudo: false
language: python matrix: include: - python: "2.7" env: TOXENV=py27 - python: "3.4" env: TOXENV=py34 - python: "3.5" env: TOXENV=py35 - python: "2.7" env: TOXENV=docs install: "pip install tox" script: tox notifications: email: on_success: never on_failure: always sudo: false
Add 3.5, docs to Travis matrix
Add 3.5, docs to Travis matrix
YAML
bsd-2-clause
timstaley/voevent-parse,timstaley/voevent-parse