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
3e4868360fe0271fcb204ef4287a4c989491fbe3
.travis.yml
.travis.yml
language: ruby rvm: - 2.0 - 2.1 - 2.2 env: COVERALL=1 before_install: - gem install bundler
sudo: false language: ruby rvm: - 2.0 - 2.1 - 2.2 env: COVERALL=1 before_install: - gem install bundler
Use the new Travis infrastructure
Use the new Travis infrastructure
YAML
mit
aetrion/dnsimple-ruby
0757dc3ababd084c6f192b08f137ebce584fc3cb
.travis.yml
.travis.yml
sudo: false # Following configures which base images are available to run tests dist: trusty language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" - "pypy" install: - pip install tox-travis script: - tox matrix: include: - python: "2.7" env: TOXENV=flake8
sudo: false # Following configures which base images are available to run tests dist: trusty language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "pypy" install: - pip install tox-travis script: - tox matrix: include: - python: "2.7" env: TOXENV=flake8 # xenial is the only way to get 3.7, but xenial only supports 2.7/3.6/3.7 include: - python: "3.7" dist: xenial
Use xenial for Python 3.7
Use xenial for Python 3.7
YAML
bsd-2-clause
bennylope/django-organizations,bennylope/django-organizations
5266cde9e270b20452e4d05579fb923bce953a6a
.travis.yml
.travis.yml
language: dart dart: - dev dart_task: - test - dartanalyzer: true - dartfmt: true # Only building master means that we don't run two builds for each pull request. branches: only: [master] cache: directories: - $HOME/.pub-cache
language: dart dart: - dev dart_task: - test - dartanalyzer: true - dartfmt: true # Only building master means that we don't run two builds for each pull request. branches: only: [master] cache: directories: - $HOME/.pub-cache - .dart_tool
Add .dart-tool to Travis cache
Add .dart-tool to Travis cache
YAML
mit
osteele/dart-tonic,osteele/dart-tonic
1832047519f54738f387f8656f81da060ff9879c
.travis.yml
.travis.yml
language: ruby rvm: - 2.6.5 env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true - QMAKE=/usr/lib/x86_64-linux-gnu/qt4/bin/qmake addons: apt: sources: - ubuntu-sdk-team packages: - libqt5webkit5-dev - qtdeclarative5-dev chrome: stable bundler_args: --jobs=3 --retry=3 --without development script: xvfb-run bundle exec rake services: - postgresql before_script: - psql -c 'create database cfp_app_test;' -U postgres
language: ruby rvm: - 2.7.2 env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true - QMAKE=/usr/lib/x86_64-linux-gnu/qt4/bin/qmake addons: apt: sources: - ubuntu-sdk-team packages: - libqt5webkit5-dev - qtdeclarative5-dev chrome: stable bundler_args: --jobs=3 --retry=3 --without development script: xvfb-run bundle exec rake services: - postgresql before_script: - psql -c 'create database cfp_app_test;' -U postgres
Correct ruby version on Travis
Correct ruby version on Travis
YAML
mit
rubycentral/cfp-app,rubycentral/cfp-app,rubycentral/cfp-app,ruby-no-kai/cfp-app,ruby-no-kai/cfp-app,ruby-no-kai/cfp-app
7eae7e19576accbb8a02309946619c6022c6acbf
.travis.yml
.travis.yml
language: node_js node_js: - 6 - node env: - NPM_SCRIPT="tap:unit -- --jobs=4" - NPM_SCRIPT="tap:integration -- --jobs=4" sudo: false cache: directories: - node_modules install: - npm install - npm update script: npm run $NPM_SCRIPT jobs: include: - env: NPM_SCRIPT=lint node_js: 6 - stage: release node_js: 6 script: true before_deploy: npm --no-git-tag-version version $($(npm bin)/json -f package.json version)-prerelease.$(date +%s) deploy: - provider: script "on": all_branches: true condition: $RELEASE_BRANCHES =~ $TRAVIS_BRANCH skip_cleanup: true script: git config --global user.email $(git log --pretty=format:"%ae" -n1) && git config --global user.name $(git log --pretty=format:"%an" -n1) && npm run --silent deploy -- -x -r $GH_PAGES_REPO - provider: npm "on": all_branches: true condition: $RELEASE_BRANCHES =~ $TRAVIS_BRANCH api_key: $NPM_TOKEN
language: node_js node_js: - 6 - node env: - NPM_SCRIPT="tap:unit -- --jobs=4" - NPM_SCRIPT="tap:integration -- --jobs=4" sudo: false cache: directories: - node_modules install: - npm install - npm update script: npm run $NPM_SCRIPT jobs: include: - env: NPM_SCRIPT=lint node_js: 6 - stage: release node_js: 6 env: NPM_SCRIPT=build before_deploy: - npm --no-git-tag-version version $($(npm bin)/json -f package.json version)-prerelease.$(date +%s) - git config --global user.email $(git log --pretty=format:"%ae" -n1) - git config --global user.name $(git log --pretty=format:"%an" -n1) deploy: - provider: script "on": all_branches: true condition: $RELEASE_BRANCHES =~ $TRAVIS_BRANCH skip_cleanup: true script: npm run --silent deploy -- -x -r $GH_PAGES_REPO - provider: npm "on": all_branches: true condition: $RELEASE_BRANCHES =~ $TRAVIS_BRANCH api_key: $NPM_TOKEN
Build the vm so we can deploy it
Build the vm so we can deploy it Whoops. Also move the git deploy setup to before_deploy.
YAML
bsd-3-clause
LLK/scratch-vm,LLK/scratch-vm,LLK/scratch-vm
923174718efe4f16256b1978ef64b6f4dbd2fce0
.travis.yml
.travis.yml
sudo: false language: python # command to install dependencies install: "pip install -U tox" # # command to run tests env: matrix: - TESTENV=flakes - TESTENV=py26 - TESTENV=py27 - TESTENV=py34 - TESTENV=pypy - TESTENV=py27-pexpect - TESTENV=py33-pexpect - TESTENV=py27-nobyte - TESTENV=py33 - TESTENV=py27-xdist - TESTENV=py33-xdist - TESTENV=py27 - TESTENV=py27-trial - TESTENV=py33 - TESTENV=py33-trial - TESTENV=py27-subprocess - TESTENV=doctesting - TESTENV=py27-cxfreeze - TESTENV=coveralls script: tox --recreate -i ALL=https://devpi.net/hpk/dev/ -e $TESTENV notifications: irc: - "chat.freenode.net#pytest-dev" email: - [email protected]
sudo: false language: python # command to install dependencies install: "pip install -U tox" # # command to run tests env: matrix: - TESTENV=flakes - TESTENV=py26 - TESTENV=py27 - TESTENV=py34 - TESTENV=pypy - TESTENV=py27-pexpect - TESTENV=py33-pexpect - TESTENV=py27-nobyte - TESTENV=py33 - TESTENV=py27-xdist - TESTENV=py33-xdist - TESTENV=py27 - TESTENV=py27-trial - TESTENV=py33 - TESTENV=py33-trial # inprocess tests by default were introduced in 2.8 only; # this TESTENV should be enabled when merged back to master #- TESTENV=py27-subprocess - TESTENV=doctesting - TESTENV=py27-cxfreeze - TESTENV=coveralls script: tox --recreate -i ALL=https://devpi.net/hpk/dev/ -e $TESTENV notifications: irc: - "chat.freenode.net#pytest-dev" email: - [email protected]
Allow failure of py27-subprocess tox-env while on pytest-2.7
Allow failure of py27-subprocess tox-env while on pytest-2.7 "inprocess by default" was introduced in 2.8, and the current travis configuration was backported from master so this specific tox-env will remain disabled while pytest-2.7 maintenance branch lasts.
YAML
mit
hpk42/pytest,icemac/pytest,untitaker/pytest,Bjwebb/pytest,doordash/pytest,malinoff/pytest,mdboom/pytest,mhils/pytest,bukzor/pytest,userzimmermann/pytest,ericdill/pytest,MengJueM/pytest,ericdill/pytest,lukas-bednar/pytest,skylarjhdownes/pytest,Carreau/pytest,ionelmc/pytest,omarkohl/pytest,jb098/pytest,oleg-alexandrov/pytest,mdboom/pytest,codewarrior0/pytest,txomon/pytest,oleg-alexandrov/pytest,wfxiang08/pytest,alfredodeza/pytest,mbirtwell/pytest,Akasurde/pytest,omarkohl/pytest,hpk42/pytest,chiller/pytest,chiller/pytest,doordash/pytest,abusalimov/pytest,rouge8/pytest,pelme/pytest,ojake/pytest,JonathonSonesen/pytest,chillbear/pytest,Bjwebb/pytest,RonnyPfannschmidt/pytest,vodik/pytest,markshao/pytest,lukas-bednar/pytest,rmfitzpatrick/pytest,Haibo-Wang-ORG/pytest,Bachmann1234/pytest,pelme/pytest,eli-b/pytest,icemac/pytest,ghostsquad/pytest,bukzor/pytest,takluyver/pytest,mhils/pytest,mbirtwell/pytest,ropez/pytest,hunse/pytest,Haibo-Wang-ORG/pytest,inirudebwoy/pytest,takluyver/pytest,codewarrior0/pytest,pytest-dev/pytest,ddboline/pytest,JonathonSonesen/pytest,pfctdayelise/pytest,gabrielcnr/pytest,tgoodlet/pytest,inirudebwoy/pytest,nicoddemus/pytest,gabrielcnr/pytest,untitaker/pytest,davidszotten/pytest,jb098/pytest,vmalloc/dessert,abusalimov/pytest,MichaelAquilina/pytest,wfxiang08/pytest,userzimmermann/pytest,hunse/pytest,MengJueM/pytest,ropez/pytest,chillbear/pytest,tareqalayan/pytest,ojake/pytest,etataurov/pytest,Carreau/pytest,ionelmc/pytest,hackebrot/pytest,rouge8/pytest,jaraco/pytest,nicoddemus/pytest,ghostsquad/pytest,Bachmann1234/pytest,flub/pytest,tomviner/pytest,vodik/pytest,tomviner/pytest,The-Compiler/pytest,The-Compiler/pytest
4f447ad8390ab8fcc7bb3f033fdf6b7156b61039
.travis.yml
.travis.yml
language: node_js node_js: - '8' - '9' cache: directories: - node_modules script: "npm run-script travis" after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js" notifications: webhooks: urls: - https://webhooks.gitter.im/e/8480136ea087dfae1908 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 node_js: - '8' - '10' - 'node' cache: directories: - node_modules script: 'npm run-script travis' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js' notifications: webhooks: urls: - https://webhooks.gitter.im/e/8480136ea087dfae1908 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Build with node.js 10 and latest (11), drop 9
Travis: Build with node.js 10 and latest (11), drop 9
YAML
bsd-3-clause
assetgraph/assetgraph-sprite
2d4feb78f82a8ae67ff444167df9286e0bf97a65
.travis.yml
.travis.yml
language: c script: make before_install: - sudo apt-get install libsdl2-dev libglew-dev libsdl2-image-dev
language: c dist: trusty sudo: required script: make before_install: - sudo apt-get -qq update - sudo apt-get install -y libsdl2-dev libglew-dev libsdl2-image-dev
Use Ubuntu Trusty as Travis environment
Use Ubuntu Trusty as Travis environment
YAML
bsd-3-clause
V0idExp/yass,V0idExp/yass,V0idExp/yass
2cc2b5f6dff97a8d7fefa2a53cd94321cbabf394
.travis.yml
.travis.yml
os: - linux - osx language: generic sudo: required dist: trusty osx_image: xcode8.3 before_install: - if [ $TRAVIS_OS_NAME == "osx" ]; then brew tap vapor/tap; brew update; brew install vapor; else eval "$(curl -sL https://apt.vapor.sh)"; sudo apt-get install vapor; sudo chmod -R a+rx /usr/; fi script: - swift build - swift build -c release - swift test after_success: - eval "$(curl -sL https://raw.githubusercontent.com/vapor-community/swift/master/codecov)" notifications: email: on_success: change on_failure: change
os: - linux - osx language: generic sudo: required dist: trusty osx_image: xcode9 before_install: - if [ $TRAVIS_OS_NAME == "osx" ]; then brew tap vapor/tap; brew update; brew install vapor; else eval "$(curl -sL https://apt.vapor.sh)"; sudo apt-get install vapor; sudo chmod -R a+rx /usr/; fi script: - swift build - swift build -c release - swift test after_success: - eval "$(curl -sL https://raw.githubusercontent.com/vapor-community/swift/swift-4-codecov/codecov-swift4)" notifications: email: on_success: change on_failure: change
Update CI to point to Swift 4
Update CI to point to Swift 4
YAML
mit
brokenhandsio/vapor-oauth,brokenhandsio/vapor-oauth
fceabad9bb0e2a1ecd98d39d86f9180b579f9689
.travis.yml
.travis.yml
language: python dist: trusty python: - "2.7" - "3.4" - "3.5" sudo: required env: - TEST_POSTGRES=/usr/lib/postgresql/9.6/bin/postgres TEST_INITDB=/usr/lib/postgresql/9.6/bin/initdb apt: packages: - postgresql-9.6 - postgresql-contrib-9.6 - postgis # command to install dependencies install: - pip install coveralls - "pip install --upgrade -r requirements.txt" - pip install -e . # command to run tests script: coverage run --source=gengine gengine/app/tests/runner.py after_success: coveralls # deploy to pypi deploy: provider: pypi user: $PYPI_USER password: $PYPI_PASSWORD on: tags: true
language: python dist: trusty python: - "2.7" - "3.4" - "3.5" sudo: required env: - TEST_POSTGRES=/usr/lib/postgresql/9.6/bin/postgres TEST_INITDB=/usr/lib/postgresql/9.6/bin/initdb apt: packages: - postgresql-9.6 - postgresql-contrib-9.6 - postgis # command to install dependencies install: - pip install coveralls - "pip install --upgrade -r requirements.txt" - pip install -e . # command to run tests script: coverage run --source=gengine gengine/app/tests/runner.py after_success: coveralls # deploy to pypi deploy: provider: pypi user: $PYPI_USER password: $PYPI_PASSWORD on: tags: true notifications: email: recipients: - $ADMIN_EMAIL on_success: always # default: change on_failure: always # default: always
Add email notifications about build status
Add email notifications about build status
YAML
mit
ActiDoo/gamification-engine,ActiDoo/gamification-engine,ActiDoo/gamification-engine,ActiDoo/gamification-engine
bf4943faf3f4d8b8a9683a7c84a7e50eef29ee79
.travis.yml
.travis.yml
language: objective-c before_install: - brew update - brew install xctool --HEAD - gem install cocoapods - pod install script: "rake test:all"
language: objective-c before_install: - brew update - brew install xctool --HEAD script: "rake test:all"
Remove unnecessary CocoaPods setup during Travis build execution
Remove unnecessary CocoaPods setup during Travis build execution
YAML
mit
skillz/AFNetworking
d9979f1941ac76c047dac66d5c7ee94c1819263c
.travis.yml
.travis.yml
language: node_js threadsafe: true node_js: - '0.10' before_script: - npm install -g grunt-cli deploy: provider: heroku api_key: secure: 44foKggRvQcobtbMNS/ZXiTm2xwgj2Ihfj8kkDUDkIorSmX5RbjCke6VWX9kWkkrqmVciKIHbazS+/vD984/oRJ1xBA6YJM+C3XfZWLKcWnrGeHFT0sYo2R/cX/9Q79LbruzryLYKJtoG8I57nb8iwYDeijqGHhlU76ZbOp7K3g= app: maui-ui on: repo: HPC-Web/maui-ui
language: node_js threadsafe: true node_js: - '0.10' before_script: - npm install -g grunt-cli deploy: provider: heroku skip_cleanup: true api_key: secure: 44foKggRvQcobtbMNS/ZXiTm2xwgj2Ihfj8kkDUDkIorSmX5RbjCke6VWX9kWkkrqmVciKIHbazS+/vD984/oRJ1xBA6YJM+C3XfZWLKcWnrGeHFT0sYo2R/cX/9Q79LbruzryLYKJtoG8I57nb8iwYDeijqGHhlU76ZbOp7K3g= app: maui-ui on: repo: HPC-Web/maui-ui
Deploy build artifacts in T.CI
Deploy build artifacts in T.CI
YAML
mit
HPC-Web/maui-ui
e681241ed2f2dbcbc3e014b890395585e562f747
.travis.yml
.travis.yml
language: go go: - 1.4 install: - export PATH=$PATH:$HOME/gopath/bin - go get golang.org/x/tools/cmd/cover - go get -t script: - make test cache: directories: - $HOME/gopath/src/github.com/dotabuff/manta/replays
language: go go: - 1.5 install: - export PATH=$PATH:$HOME/gopath/bin - go get golang.org/x/tools/cmd/cover - go get -t script: - make test cache: directories: - $HOME/gopath/src/github.com/dotabuff/manta/replays
Update Travis to go 1.5
Update Travis to go 1.5
YAML
mit
dotabuff/manta
247666b9132d942d5641b4c2462337ab7637764d
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - ruby-head script: bundle exec rake ci sudo: false cache: bundler
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - ruby-head matrix: allow_failures: - rvm: - ruby-head script: bundle exec rake ci sudo: false cache: bundler
Allow failures with Ruby head on Travis CI
Allow failures with Ruby head on Travis CI
YAML
mit
yujinakayama/gemologist,yujinakayama/gemologist
797926d48afdc1d668885d05ca2c4e5b80f6e93e
.travis.yml
.travis.yml
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: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: rbx-19mode allow_failures: - rvm: ruby-head - rvm: rbx-19mode - rvm: jruby-19mode - rvm: jruby-head
language: ruby before_install: gem install bundler bundler_args: --without yard guard benchmarks script: "bundle exec rake ci" rvm: - 1.9.3 - 2.0.0 - ruby-head - rbx-19mode matrix: include: - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" allow_failures: - rvm: ruby-head
Allow no more build failures on jruby and rbx
Allow no more build failures on jruby and rbx Bundling mutant on the previously failing rubies has been fixed lately.
YAML
mit
snusnu/substation,indrekj/substation
db95b1220ab3f3a2cc8a52cd1df76ea4bacb6b5e
.travis.yml
.travis.yml
--- language: "node_js" node_js: [ "4", "5" ] sudo: false
--- language: "node_js" node_js: [ "4", "5" ] sudo: false cache: directories: - "node_modules"
Configure Travis CI to cache node_modules
Configure Travis CI to cache node_modules
YAML
apache-2.0
commonform/commonform-markup-parse
f571c7a55620fe5ef2b0a612fde3b614347f890f
.travis.yml
.travis.yml
language: node_js node_js: - "stable" before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start sudo: false
language: node_js node_js: - "stable" before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start
Revert "Travis CI: attempt to enable container-based builds"
Revert "Travis CI: attempt to enable container-based builds" This reverts commit 8e96427881001a07aedc024bfb7460b6e39e8583.
YAML
bsd-3-clause
blinkmobile/bic-jqm,blinkmobile/bic-jqm
0ffed0daab16241fea0bd96c6df42f0e09b6f7ab
.travis.yml
.travis.yml
dist: xenial sudo: required os: - linux - osx before_install: - | if [ "${TRAVIS_OS_NAME}" = "osx" ]; then OS=darwin else sysctl kernel.unprivileged_userns_clone=1 OS=linux fi BAZELISK_VERSION=v1.5.0 if [ ! -d "${HOME}/bin" ]; then mkdir "${HOME}/bin" fi wget -O "${HOME}/bin/bazel" "https://github.com/bazelbuild/bazelisk/releases/download/${BAZELISK_VERSION}/bazelisk-${OS}-amd64" chmod +x "${HOME}/bin/bazel" before_script: - echo "startup --output_base=$HOME/.cache/bazel" >> .bazelrc # Avoid progress indicators that can blow out log which makes using WEB UI difficult - echo "common --noshow_progress" >> .bazelrc - echo "common --noshow_loading_progress" >> .bazelrc # This is so we understand failures better - echo "build --verbose_failures" >> .bazelrc script: ./build_test.sh notifications: email: false
dist: xenial sudo: required os: - linux - osx before_install: - | if [ "${TRAVIS_OS_NAME}" = "osx" ]; then OS=darwin else sysctl kernel.unprivileged_userns_clone=1 OS=linux fi BAZELISK_VERSION=v1.5.0 if [ ! -d "${HOME}/bin" ]; then mkdir "${HOME}/bin" fi wget -O "${HOME}/bin/bazel" "https://github.com/bazelbuild/bazelisk/releases/download/${BAZELISK_VERSION}/bazelisk-${OS}-amd64" chmod +x "${HOME}/bin/bazel" before_script: - echo "startup --output_base=$HOME/.cache/bazel" >> .bazelrc # Avoid progress indicators that can blow out log which makes using WEB UI difficult - echo "common --noshow_progress" >> .bazelrc - echo "common --noshow_loading_progress" >> .bazelrc # This is so we understand failures better - echo "build --verbose_failures" >> .bazelrc script: ./build_test.sh CI notifications: email: false
Fix oss build and enable samples build in Travis.
Fix oss build and enable samples build in Travis. PiperOrigin-RevId: 342342492
YAML
apache-2.0
google/elemental2,google/elemental2
b50bbd43a1af3d387d204b006e0a980022980bd2
.travis.yml
.travis.yml
language: php sudo: false cache: directories: - $HOME/.composer/cache matrix: include: - php: 5.6 env: DEPENDENCIES='low' - php: 5.6 - php: hhvm - php: 7.0 - php: 7.1 env: DEPENDENCIES='dev' allow_failures: - env: DEPENDENCIES='dev' fast_finish: true before_install: - if [[ ${TRAVIS_PHP_VERSION:0:4} != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi install: - export COMPOSER_ROOT_VERSION=dev-master - if [ "$DEPENDENCIES" == "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi; - if [ "$DEPENDENCIES" != "low" ]; then composer update; fi; - if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi; script: - bin/phpspec run --format=pretty - ./vendor/bin/phpunit --testdox - ./vendor/bin/behat --format=pretty
language: php sudo: false cache: directories: - $HOME/.composer/cache matrix: include: - php: 5.6 env: DEPENDENCIES='low' - php: 5.6 - php: hhvm - php: 7.0 - php: 7.1 env: DEPENDENCIES='dev' allow_failures: - env: DEPENDENCIES='dev' fast_finish: true before_install: - if [ ${TRAVIS_PHP_VERSION:0:4} != "hhvm" ] && [ ${TRAVIS_PHP_VERSION:0:3} != "7.1" ]; then phpenv config-rm xdebug.ini; fi install: - export COMPOSER_ROOT_VERSION=dev-master - if [ "$DEPENDENCIES" == "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi; - if [ "$DEPENDENCIES" != "low" ]; then composer update; fi; - if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi; script: - bin/phpspec run --format=pretty - ./vendor/bin/phpunit --testdox - ./vendor/bin/behat --format=pretty
Remove Xdebug for 7.1 build
Remove Xdebug for 7.1 build
YAML
mit
pamil/phpspec,carlosV2/phpspec,pamil/phpspec,carlosV2/phpspec
67642fd92f04e42bd4c7c5f49e1fe3ee4cf76653
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - 6 - 8 branches: only: - master - /^greenkeeper/.*$/ cache: yarn: true directories: - node_modules before_install: yarn global add greenkeeper-lockfile@1 before_script: greenkeeper-lockfile-update after_script: greenkeeper-lockfile-upload after_success: - yarn run semantic-release
sudo: false language: node_js node_js: - 6 - 8 branches: only: - master - /^greenkeeper/.*$/ cache: yarn: true directories: - node_modules before_install: - yarn global add greenkeeper-lockfile@1 before_script: - greenkeeper-lockfile-update after_script: - greenkeeper-lockfile-upload after_success: - yarn run semantic-release
Reformat before and after scripts
chore(tools): Reformat before and after scripts
YAML
mit
ctavan/jupp
11ba533685134f0cadec617847798f21ac2d4ca1
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 - ruby-head before_install: - | if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then gem install rubygems-update -v '<3' && update_rubygems gem install bundler -v '<2' else gem update --system gem update bundler fi
language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 - 2.6.0 - ruby-head before_install: - | if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then gem install rubygems-update -v '<3' && update_rubygems gem install bundler -v '<2' else gem update --system gem update bundler fi
Test against Ruby 2.6.0 on Travis CI
Test against Ruby 2.6.0 on Travis CI
YAML
mit
emsk/romajic,emsk/romaji_cop,emsk/romaji_cop,emsk/romajic,emsk/romaji_cop,emsk/romajic
6ba165a3fc7da916bbae027498b0f277fe9a36a7
.travis.yml
.travis.yml
language: python python: - "2.5" - "2.6" - "2.7" install: - "pip install pytest Twisted python-coveralls --use-mirrors" script: - "coverage run -a $(which py.test) test_parsley" - "coverage run -a $(which py.test) examples" - "cd ometa && coverage run -a $(which py.test) ." after_success: - "coveralls"
language: python python: - "2.6" - "2.7" install: - "pip install pytest Twisted python-coveralls . --use-mirrors" script: - "coverage run -a $(which py.test) test_parsley" - "coverage run -a $(which py.test) examples" - "cd ometa && coverage run -a $(which py.test) ." after_success: - "coveralls"
Drop python 2.5; install parsley for running tests.
Drop python 2.5; install parsley for running tests.
YAML
mit
python-parsley/parsley,rbtcollins/parsley,python-parsley/parsley,rbtcollins/parsley
1620261f85ec6fb83fc38042f8cda9f86cf43292
.travis.yml
.travis.yml
language: java sudo: true dist: trusty jdk: - oraclejdk8 - openjdk8 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
language: java sudo: true dist: trusty script: - ./gradlew build jdk: - oraclejdk8 - openjdk8 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
Switch to custom Travis script
Switch to custom Travis script Instead of using the default script provided by travis this provides a custom one
YAML
mit
ShadowLordAlpha/Themis
1db3617f38952aaf7f17d8e7684b16c134ae6df1
.travis.yml
.travis.yml
language: python sudo: false cache: pip branches: except: - /^[^/]+/.*$/ python: - "2.7" - "pypy" - "pypy3" - "3.3" - "3.4" - "3.5" install: - travis_retry pip install --upgrade setuptools pip codecov 'setuptools_scm>=1.9' - ./setup.py develop script: python setup.py test after_script: bash <(curl -s https://codecov.io/bash) notifications: irc: channels: - 'irc.freenode.org#webcore' use_notice: true skip_join: true on_success: change on_failure: always template: - "%{repository_slug}:%{branch}@%{commit} %{message}" - "Duration: %{duration} - Details: %{build_url}"
language: python sudo: false cache: pip branches: except: - /^[^/]+/.*$/ python: - "2.7" - "pypy" - "3.3" - "3.4" - "3.5" install: - travis_retry pip install --upgrade setuptools pip codecov 'setuptools_scm>=1.9' - ./setup.py develop script: python setup.py test after_script: bash <(curl -s https://codecov.io/bash) notifications: irc: channels: - 'irc.freenode.org#webcore' use_notice: true skip_join: true on_success: change on_failure: always template: - "%{repository_slug}:%{branch}@%{commit} %{message}" - "Duration: %{duration} - Details: %{build_url}"
Remove Python 3.2 support, thus Pypy3. Sads.
Remove Python 3.2 support, thus Pypy3. Sads.
YAML
mit
marrow/mailer
c61ef9833984e331ddc86c5e361797a9c33cfe0d
.travis.yml
.travis.yml
language: python python: - "3.4" - "3.5" - "3.6" - "nightly" sudo: required before_install: - sudo apt update && sudo apt install -y swi-prolog-nox install: - pip install -r test-requirements.txt coveralls script: - make cover after_success: - coveralls
language: python python: - "3.4" - "3.5" - "3.6" - "nightly" sudo: required before_install: - sudo apt-add-repository -y ppa:swi-prolog/stable - sudo apt-get update - sudo apt-get install -y swi-prolog-nox install: - pip install -r test-requirements.txt coveralls script: - make cover after_success: - coveralls
Use latest stable SWI-Prolog on CI
Use latest stable SWI-Prolog on CI
YAML
mit
yuce/pyswip
3c0a5ff06c96e88f5dbabba40bedb9cabb17df43
.travis.yml
.travis.yml
language: php git: depth: 2 matrix: include: - php: hhvm-3.9 sudo: required dist: trusty group: edge - php: nightly - php: 7.1 - php: 7.0 env: - LINT=true - php: 5.6 - php: 5.5 - php: 5.4 fast_finish: true cache: directories: - $HOME/.composer/cache - $HOME/.php-cs-fixer before_script: - phpenv config-rm xdebug.ini || true - composer self-update - composer install -n script: - if [[ $LINT = true ]]; then composer cs-lint; fi - composer test
language: php git: depth: 2 matrix: include: - php: hhvm-3.9 sudo: required dist: trusty group: edge - php: 7.1 - php: 7.0 env: - LINT=true - php: 5.6 - php: 5.5 - php: 5.4 fast_finish: true allow_failures: - php: nightly cache: directories: - $HOME/.composer/cache - $HOME/.php-cs-fixer before_script: - phpenv config-rm xdebug.ini || true - composer self-update - composer install -n script: - if [[ $LINT = true ]]; then composer cs-lint; fi - composer test
Allow failures on php nightly.
Allow failures on php nightly.
YAML
mit
jonathantorres/construct,jonathantorres/construct,raphaelstolt/construct,raphaelstolt/construct
a52f662e1e3abe8ba801816c1767d299e9c606d7
.travis.yml
.travis.yml
language: node_js node_js: - 0.8
language: node_js node_js: - "0.11" - "0.10" - "0.8"
Build against all popular Node.js versions.
Build against all popular Node.js versions.
YAML
apache-2.0
sqrrrl/google-api-nodejs-client,codeRuth/google-api-nodejs-client,danielrasmuson/google-api-nodejs-client,dstnation/google-api-nodejs-client,PeterWangPo/google-api-nodejs-client,sqrrrl/google-api-nodejs-client,digideskio/google-api-nodejs-client,sqrrrl/google-api-nodejs-client,DIREKTSPEED-LTD/google-api-nodejs-client,googleapis/google-api-nodejs-client,stems/google-api-nodejs-client,thdtjsdn/google-api-nodejs-client,sqrrrl/google-api-nodejs-client,jagandecapri/google-api-nodejs-client,chitsuhein/google-api-nodejs-client,mcanthony/google-api-nodejs-client,stems/google-api-nodejs-client,masterviana/google-api-nodejs-client,stems/google-api-nodejs-client,tbetbetbe/google-api-nodejs-client,sqrrrl/google-api-nodejs-client,googleapis/google-api-nodejs-client,stems/google-api-nodejs-client,googleapis/google-api-nodejs-client,juliankrispel/google-api-nodejs-client,benjamin-chang/google-api-nodejs-client,naskogithub/google-api-nodejs-client,stems/google-api-nodejs-client,0111001101111010/google-api-nodejs-client
ee5a32bcbaabc5c2d5d060052d8b9ff71912a1ef
.travis.yml
.travis.yml
sudo: false language: java jdk: - openjdk8 env: global: - DITA_OT_VERSION=3.5.3 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
sudo: false language: java jdk: - openjdk8 env: global: - DITA_OT_VERSION=3.5.4 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
Use latest DITA-OT version (3.5.4) for CI builds
Use latest DITA-OT version (3.5.4) for CI builds Signed-off-by: Roger Sheen <[email protected]>
YAML
apache-2.0
infotexture/docs,infotexture/docs,dita-ot/docs
19fa29b52204205fc9ff5852e2e880dc921f1556
.travis.yml
.travis.yml
language: php php: - '5.4' - '5.5' - '5.6' - '7.0' - '7.1' before_install: - sudo apt-get update > /dev/null install: - composer install --prefer-dist --optimize-autoloader script: - phpunit --coverage-text
language: php php: - '5.4' - '5.5' - '5.6' - '7.0' - '7.1' notifications: email: false before_install: - sudo apt-get update > /dev/null install: - composer install --prefer-dist --optimize-autoloader script: - phpunit --coverage-text
Stop Travis CI mail spaming...
Stop Travis CI mail spaming...
YAML
mit
CQD/minorwork
7f645faac1e4f13da10f5e9137a261a5961436eb
.travis.yml
.travis.yml
sudo: required dist: trusty # install the pre-release chef-dk. Use chef-stable-trusty to install the stable release addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-centos-5 - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - script: - /opt/chefdk/bin/chef exec rake env: UNIT_AND_LINT=1
sudo: required dist: trusty # install the pre-release chef-dk. Use chef-stable-trusty to install the stable release addons: apt: sources: - chef-stable-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-centos-5 - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - script: - /opt/chefdk/bin/chef exec rake env: UNIT_AND_LINT=1
Switch back to stable ChefDK builds for testing
Switch back to stable ChefDK builds for testing
YAML
apache-2.0
chef-cookbooks/yum-epel,juliandunn/yum-epel
e882e18776424b0930182cd5c75dd8333f5f0095
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "8" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 env: - CXX=g++-4.8 matrix: fast_finish: true
language: node_js node_js: - "6" - "8" - "9" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 env: - CXX=g++-4.8 matrix: fast_finish: true
Test on Node 9 as well
Test on Node 9 as well
YAML
mit
MayhemYDG/gulp-brotli
4cca568318262cfb28366940b2011f1dc2707285
.travis.yml
.travis.yml
language: php php: - 5.6 - 5.5 notifications: email: recipients: - [email protected] on_success: change on_failure: always install: composer install --prefer-source script: make test
language: php php: - 5.6 - 7.0 notifications: email: recipients: - [email protected] on_success: change on_failure: always install: composer install --prefer-source script: make test
Test on PHP 5.6 & 7.0 Only
Test on PHP 5.6 & 7.0 Only
YAML
apache-2.0
AgencyPMG/queue-tactician
65403abd18cc945fbd9a7de6e56304412cbf1308
.travis.yml
.travis.yml
language: java jdk: - openjdk8 - openjdk7 install: sh -c 'cd jOOU && mvn install -DskipTests=true' script: sh -c 'cd jOOU && mvn test'
language: java jdk: - oraclejdk9 - openjdk8 - openjdk7 install: sh -c 'cd jOOU && mvn install -DskipTests=true' script: sh -c 'cd jOOU && mvn test'
Build jOOU also with JDK 9
Build jOOU also with JDK 9
YAML
apache-2.0
jOOQ/jOOU
f0f3c69f8c9724c2e0a69dde464252aebb54463f
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 1.8.7 before_install: - sudo gem uninstall ffi -a
language: ruby rvm: - 2.0.0 - 1.9.3 - 1.8.7 before_install: - sudo gem uninstall ffi -a
Add Ruby 2.0.0 to Travis
Add Ruby 2.0.0 to Travis
YAML
mit
hilohiro/nanoc,gjtorikian/nanoc,remko/nanoc,nanoc/nanoc,barraq/nanoc,legallybrown/nanoc,RubenVerborgh/nanoc
0d5c16538d1ac085d3e9721c92ac3115e5b9ea76
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 - 0.6 - 0.4 before_install: "npm install -g bob" script: "bob clean lint test coverage"
language: node_js node_js: - 0.9 - 0.8 - 0.6 before_install: "npm install -g bob" script: "bob clean lint test coverage"
Add 0.9, drop 0.4 to be retired by Travis CI.
Add 0.9, drop 0.4 to be retired by Travis CI.
YAML
mit
cliffano/datagen
56a60053fba5d06165ec9376f9c0273942fc1507
.travis.yml
.travis.yml
language: node_js node_js: - 6 - 4 - 0.10
language: node_js sudo: false node_js: - "6" - "4" - "0.10" env: - mocha_version=2.2 - mocha_version=2.3 - mocha_version=2.4 - mocha_version=2.5 before_script: - npm install "mocha@$mocha_version"
Test multiple versions of mocha and node in CI
Test multiple versions of mocha and node in CI
YAML
mit
danielstjules/mocha.parallel
2131c59cb276a5e78bc355105d1f233f7f597424
.travis.yml
.travis.yml
language: python python: - "3.6" install: - pip install -r requirements.txt - pip install coveralls - pip install nose script: - nosetests --with-coverage --cover-erase --cover-package=wunderapi after_success: - coveralls;
language: python python: - "3.5" - "3.4" install: - pip install -r requirements.txt - pip install coveralls - pip install nose script: - nosetests --with-coverage --cover-erase --cover-package=wunderapi after_success: - coveralls;
Revert "Update to python 3.6"
Revert "Update to python 3.6" This reverts commit 897ed6c0d41d30a79547601bb5f36709c40964b7.
YAML
mit
paris3200/wunderapi,paris3200/Weather
5ab6f61f84174efe257da2ae7df7cee3c63427a5
.travis.yml
.travis.yml
sudo: false cache: bundler language: ruby rvm: - 2.5 - 2.3 matrix: include: - rvm: 2.5 env: JEKYLL_VERSION=3.7.4 env: matrix: - JEKYLL_VERSION=3.8.5 branches: only: - master before_install: - gem update --system script: script/cibuild notifications: irc: on_success: change on_failure: change channels: - irc.freenode.org#jekyll template: - '%{repository}#%{build_number} %{message} %{build_url}' email: on_success: never on_failure: change
sudo: false cache: bundler language: ruby rvm: - 2.6 - 2.4 matrix: include: - rvm: 2.5 env: JEKYLL_VERSION=3.7.4 env: matrix: - JEKYLL_VERSION=3.8.5 branches: only: - master before_install: - gem update --system script: script/cibuild notifications: irc: on_success: change on_failure: change channels: - irc.freenode.org#jekyll template: - '%{repository}#%{build_number} %{message} %{build_url}' email: on_success: never on_failure: change
Add Ruby 2.6, drop Ruby 2.3
chore(ci): Add Ruby 2.6, drop Ruby 2.3
YAML
mit
jekyll/jekyll-sass-converter,jekyll/jekyll-sass-converter
e9ac01889138ffc5acc421f93b7eae87dd3baa86
.travis.yml
.travis.yml
sudo: required group: edge language: python services: - docker addons: apt: packages: - openvswitch-switch python: - "3.5" install: - "pip3 install -r requirements.txt -r test-requirements.txt" - "python3 setup.py sdist" - "pip3 install dist/*tar.gz" script: - "cd ./tests" - "PYTHONPATH='../faucet' ./test_min_pylint.sh" - "python3 ./test_config.py" - "python3 ./test_check_config.py" - "python3 ./test_valve.py" - "cd .." - "docker build -t reannz/faucet-tests -f Dockerfile.tests ." - "sudo docker run --privileged -ti reannz/faucet-tests"
sudo: required group: edge language: python services: - docker addons: apt: packages: - openvswitch-switch python: - "3.5" install: - "pip3 install -r requirements.txt -r test-requirements.txt" - "python3 setup.py sdist" - "pip3 install dist/*tar.gz" - "pip3 show faucet" script: - "cd ./tests" - "PYTHONPATH='../faucet' ./test_min_pylint.sh" - "python3 ./test_config.py" - "python3 ./test_check_config.py" - "python3 ./test_valve.py" - "cd .." - "docker build -t reannz/faucet-tests -f Dockerfile.tests ." - "sudo docker run --privileged -ti reannz/faucet-tests"
Add show of installed package as check.
Add show of installed package as check.
YAML
apache-2.0
anarkiwi/faucet,gizmoguy/faucet,REANNZ/faucet,anarkiwi/faucet,Bairdo/faucet,trentindav/faucet,wackerly/faucet,REANNZ/faucet,wackerly/faucet,mwutzke/faucet,shivarammysore/faucet,byllyfish/faucet,shivarammysore/faucet,faucetsdn/faucet,byllyfish/faucet,faucetsdn/faucet,Bairdo/faucet,trungdtbk/faucet,trungdtbk/faucet,gizmoguy/faucet,trentindav/faucet,mwutzke/faucet
2bddc281b63ca5ce26b5cf76609df570f0702092
.travis.yml
.travis.yml
sudo: false language: node_js cache: directories: - node_modules notifications: email: false node_js: - 'stable' - '4' - '0.12' # Chrome browser fix # https://github.com/MrOrz/SeeSS/blob/master/.travis.yml # https://github.com/travis-ci/travis-ci/issues/272#issuecomment-14402117 # http://stackoverflow.com/questions/19255976/how-to-make-travis-execute-angular-tests-on-chrome-please-set-env-variable-chr # script: karma start karma.conf.js --single-run --browsers Firefox before_install: - npm i -g npm@^2.0.0 before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - npm prune after_success: - 'curl -Lo travis_after_all.py https://git.io/travis_after_all' - python travis_after_all.py - 'export $(cat .to_export_back) &> /dev/null' - npm run semantic-release branches: except: - "/^v\\d+\\.\\d+\\.\\d+$/"
sudo: false language: node_js cache: directories: - node_modules notifications: email: false node_js: - 'stable' - '4' - '0.12' # http://karma-runner.github.io/0.13/plus/travis.html script: karma start karma.conf.js --single-run --browsers Firefox before_install: - npm i -g npm@^2.0.0 before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - npm prune after_success: - 'curl -Lo travis_after_all.py https://git.io/travis_after_all' - python travis_after_all.py - 'export $(cat .to_export_back) &> /dev/null' - npm run semantic-release branches: except: - "/^v\\d+\\.\\d+\\.\\d+$/"
Fix link to Karma Firefox setup
Fix link to Karma Firefox setup
YAML
mit
dmitriz/min-karma
12cdee434bd713b9c8db7a9d2a31ec245625c73f
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: 5.6 - php: hhvm before_script: - if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -c "php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &"; fi script: - php -l src/* - if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -c "cd tests && phpunit --configuration phpunit.xml"; fi
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: 5.6 - php: hhvm before_script: - if [[ "$TRAVIS_PHP_VERSION" == "5.4" ]]; then sh -c "php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &"; fi - if [[ "$TRAVIS_PHP_VERSION" == "5.5" ]]; then sh -c "php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &"; fi - if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then sh -c "php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &"; fi - if [[ "$TRAVIS_PHP_VERSION" == "hhvm" ]]; then sh -c "cd tests && hhvm --mode server --port 8000 --config PHPCurlClass/server.hdf"; fi script: - php -l src/* - if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -c "cd tests && phpunit --configuration phpunit.xml"; fi
Use HHVM's built-in web server when testing HHVM
Use HHVM's built-in web server when testing HHVM
YAML
unlicense
ptrnov/php-curl-class,craa/php-curl-class,php-curl-class/php-curl-class,petewatts/php-curl-class,VolCh/php-curl-class,Jiangyoung/php-curl-class,tillz/php-curl-class,hebaoxia/php-curl-class,php-curl-class/php-curl-class,hebaoxia/php-curl-class,php-curl-class/php-curl-class,taohaoge/php-curl-class,evcehiack/php-curl-class,SahilDude89ss/php-curl-class,heatery/php-curl-class,ptrnov/php-curl-class,tillz/php-curl-class,marius321967/php-curl-class,Savageman/php-curl-class,craa/php-curl-class,petewatts/php-curl-class,zachborboa/php-curl-class,smartkey86/php-curl-class,Savageman/php-curl-class,jack-theripper/php-curl-class,ValerioOnGithub/php-curl-class,thebeline/php-curl-class,sebwas/php-curl-class,taohaoge/php-curl-class,zachborboa/php-curl-class,evcehiack/php-curl-class,thebeline/php-curl-class,jack-theripper/php-curl-class,Jiangyoung/php-curl-class,jahanzaibbahadur/php-curl-class,Worm/php-curl-class,ValerioOnGithub/php-curl-class,Worm/php-curl-class,jahanzaibbahadur/php-curl-class,heatery/php-curl-class,VolCh/php-curl-class,zachborboa/php-curl-class,sebwas/php-curl-class,SahilDude89ss/php-curl-class,smartkey86/php-curl-class
b71469a1af49ac617c3c54fc4e4d48744f706085
.travis.yml
.travis.yml
sudo: false language: python matrix: include: - os: linux python: "3.6" env: PYTHONPATH=$PWD - os: linux python: "2.7" env: PYTHONPATH=$PWD addons: apt: sources: - ubuntu-toolchain-r-test # For gcc 4.9 and 5 packages: - gcc-4.9 - g++-4.9 - gcc-5 - g++-5 script: - flake8 --exclude versioneer.py . - python setup.py build_ext --inplace - python examples/use_classic.py - python examples/use_modernised.py - py.test -vs tests/
sudo: false language: python matrix: include: - os: linux python: "3.6" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.9 - gcc-4.9 env: - PYTHONPATH=$PWD - MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9" - os: linux python: "3.6" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-5 - gcc-5 env: - PYTHONPATH=$PWD - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5" - os: linux python: "3.6" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-6 - gcc-6 env: - PYTHONPATH=$PWD - MATRIX_EVAL="CC=gcc-6 && CXX=g++-6" - os: linux python: "3.6" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-7 - gcc-7 env: - PYTHONPATH=$PWD - MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" - os: linux python: "3.6" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-8 - gcc-8 env: - PYTHONPATH=$PWD - MATRIX_EVAL="CC=gcc-8 && CXX=g++-8" script: - flake8 --exclude versioneer.py . - python setup.py build_ext --inplace - python examples/use_classic.py - python examples/use_modernised.py - py.test -vs tests/
Enable testing on multiple GCC versions
Enable testing on multiple GCC versions
YAML
epl-1.0
opesci/pyrevolve,opesci/pyrevolve
2af9e52b683b8547defe4def7938af9924453eca
.travis.yml
.travis.yml
language: python python: - "2.7" install: - pip install codecov - pip install . - pip install -r requirements.txt script: - python -m unittest testAll after_success: codecov
language: python python: - "2.7" cache: - pip install: - pip install codecov - pip install . - pip install -r requirements.txt script: - python -m unittest testAll after_success: - codecov
Add codecov and cached builds
Add codecov and cached builds
YAML
mit
kristofvanmoffaert/python-omniture,dancingcactus/python-omniture,kristofvanmoffaert/python-omniture,dancingcactus/python-omniture,kristofvanmoffaert/python-omniture,dancingcactus/python-omniture
208aaac091b324ada701cab1351452089a5c035b
.travis.yml
.travis.yml
language: php php: - 5.6 - 7 matrix: fast_finish: true allow_failures: - php: 7 services: - postgresql addons: postgresql: "9.3" before_script: - psql -c "create role symfony password 'symfony';" -U postgres - psql -c 'create database symfony owner symfony;' -U postgres - composer selfupdate - composer install --dev --prefer-dist script: - ./bin/phpunit -c app
language: php php: - 5.6 - 7 matrix: fast_finish: true allow_failures: - php: 7 services: - postgresql addons: postgresql: "9.3" before_script: - psql -c "create role symfony login superuser password 'symfony';" -U postgres - psql -c 'create database symfony owner symfony;' -U postgres - composer selfupdate - composer install --dev --prefer-dist script: - ./bin/phpunit -c app
Add Travis support for PostgreSQL
Add Travis support for PostgreSQL
YAML
mit
diegonobre/symfony-cms,diegonobre/symfony-cms,diegonobre/symfony-cms
febadf4fc1b67088ffc264502507bec5c9a8403e
.travis.yml
.travis.yml
language: ruby script: 'bundle exec rake' rvm: - 1.9.3 - 2.0.0 before_install: - gem update --system
language: ruby script: 'bundle exec rake' rvm: - 1.9.3 - 2.0.0 - 2.1.1 before_install: - gem update --system
Test with Ruby 2.1.1 as well
Test with Ruby 2.1.1 as well
YAML
mit
m43nu/m43nu_rails,m43nu/m43nu_rails,blueberryapps/blueberry_rails,m43nu/m43nu_rails,blueberryapps/blueberry_rails
8014970f9ce4fe1162aad1dea72effd0a7ee488d
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.4" matrix: allow_failures: - python: "2.7" - python: "3.4" fast_finish: true # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install MySQL-python - pip install python-ldap - pip install iso8601 - pip install dirq - pip install unittest2 - pip install coveralls # command to run tests, e.g. python setup.py test script: - export PYTHONPATH=$PYTHONPATH:`pwd -P` - cd test - coverage run --source=apel -m unittest2 discover after_success: - coveralls
language: python python: - "2.6" - "2.7" - "3.4" matrix: allow_failures: - python: "2.7" - python: "3.4" fast_finish: true # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install MySQL-python - pip install python-ldap - pip install iso8601 - pip install dirq - pip install unittest2 - pip install coveralls # command to run tests, e.g. python setup.py test script: - export PYTHONPATH=$PYTHONPATH:`pwd -P` - cd test - coverage run --source=apel,bin -m unittest2 discover after_success: - coveralls
Add bin folder to tests and coverage
Add bin folder to tests and coverage
YAML
apache-2.0
tofu-rocketry/apel,stfc/apel,stfc/apel,tofu-rocketry/apel,apel/apel,apel/apel
0af79f542fa4dd1f189f30b7dfaa4f96bdf3a2a4
.travis.yml
.travis.yml
language: node_js node_js: - "stable" - "4.3" - "4.2" before_script: - node_modules/gulp/bin/gulp.js startServer & script: node_modules/gulp/bin/gulp.js clean default
language: node_js node_js: - "stable" - "4" - "4.4" before_script: - node_modules/gulp/bin/gulp.js startServer & script: node_modules/gulp/bin/gulp.js clean default
Update Travis CI Node.JS LTS versions
Update Travis CI Node.JS LTS versions Keeping focus on compatibility with latest known and unknown Node.JS releases.
YAML
mpl-2.0
markafitzgerald1/cribbage-analyst,markafitzgerald1/cribbage-analyst
9682f89ddcd7c463463dcf0ff2c9ecfcc757549b
.travis.yml
.travis.yml
language: node_js node_js: - "8" - "10" - "node" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: "sudo apt-get update && sudo apt-get install -y libcairo2-dev libjpeg8-dev libgif-dev optipng pngcrush pngquant libpango1.0-dev graphicsmagick libjpeg-turbo-progs inkscape gifsicle" script: "npm run ci" after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js" notifications: webhooks: urls: - https://webhooks.gitter.im/e/da6c90cc3857ade1086c 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 node_js: - "8" - "10" - "node" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: "sudo apt-get update && sudo apt-get install -y libcairo2-dev libjpeg8-dev libgif-dev libpango1.0-dev graphicsmagick inkscape gifsicle" script: "npm run ci" after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js" notifications: webhooks: urls: - https://webhooks.gitter.im/e/da6c90cc3857ade1086c on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Remove unused global package dependencies
Remove unused global package dependencies
YAML
bsd-3-clause
assetgraph/assetgraph-builder
4852596f5cbba29335ca03c05dcb971d7c0149ed
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 after_success: - ! '[ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && curl -v -X DELETE -u $GITHUB_USER:$GITHUB_PASSWORD "https://api.github.com/repos/$TRAVIS_REPO_SLUG/git/refs/tags/CURRENT"' - ! '[ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && curl -v -X POST -d ''{"ref":"refs/tags/CURRENT","sha":"''$TRAVIS_COMMIT''"}'' --header "Content-Type:application/json" -u $GITHUB_USER:$GITHUB_PASSWORD "https://api.github.com/repos/$TRAVIS_REPO_SLUG/git/refs"' branches: except: - CURRENT services: - mongodb notifications: irc: channels: - irc.freenode.net#theodi template: - ! '%{repository} %{branch} - %{message} %{build_url}' on_success: change on_failure: always
language: ruby rvm: - 1.9.3 before_install: - gem install bundler - gem uninstall bundler -v old.bundler.version after_success: - ! '[ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && curl -v -X DELETE -u $GITHUB_USER:$GITHUB_PASSWORD "https://api.github.com/repos/$TRAVIS_REPO_SLUG/git/refs/tags/CURRENT"' - ! '[ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && curl -v -X POST -d ''{"ref":"refs/tags/CURRENT","sha":"''$TRAVIS_COMMIT''"}'' --header "Content-Type:application/json" -u $GITHUB_USER:$GITHUB_PASSWORD "https://api.github.com/repos/$TRAVIS_REPO_SLUG/git/refs"' branches: except: - CURRENT services: - mongodb notifications: irc: channels: - irc.freenode.net#theodi template: - ! '%{repository} %{branch} - %{message} %{build_url}' on_success: change on_failure: always
Make sure we’re using the latest Bundler
Make sure we’re using the latest Bundler
YAML
mit
theodi/odi_content_models
86ba43763482be065273456e29c65f04ac044f1c
.travis.yml
.travis.yml
dist: precise language: java jdk: - oraclejdk7 before_install: - "sudo apt-get update" before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start"
sudo: false language: java jdk: - openjdk7 - openjdk8 - oraclejdk8 before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start"
Update the Travis CI config to some more modern options
Update the Travis CI config to some more modern options
YAML
bsd-3-clause
digital-preservation/droid,digital-preservation/droid,digital-preservation/droid,digital-preservation/droid,digital-preservation/droid,adamretter/droid,adamretter/droid,adamretter/droid
50c301f8a340e7c6209194d2e8465dc9d14ccbb0
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.8" notifications: email: false
language: node_js node_js: - "0.10" - "0.8" before_install: - npm install npm@latest --global notifications: email: false
Fix [email protected] in Travis CI
Fix [email protected] in Travis CI Adding fix for [email protected] in Travis CI
YAML
mit
twolfson/backbone-api-client-redis
7e354cf38972c5b81d5c679ee3b79e43df460c7f
.travis.yml
.travis.yml
language: python python: - "3.6" env: - DJANGO_VERSION=2.0.2 # command to install dependencies install: - "pip install -q -e ." - "pip install -q -r demo/requirements.txt" - "pip install -q Django==$DJANGO_VERSION" # command to run tests script: "cd demo && python manage.py makemigrations && python manage.py test plans"
language: python python: - "3.6" env: - DJANGO_VERSION=2.0.2 # command to install dependencies install: - "pip install -q -e ." - "pip install -q -r demo/requirements.txt" - "pip install -q Django==$DJANGO_VERSION" - "pip install codecov" # command to run tests script: "cd demo && python manage.py makemigrations && coverage run manage.py test plans"
Install codecov and run in coverage
Install codecov and run in coverage
YAML
mit
cypreess/django-plans,cypreess/django-plans
26978d75d256b537e6798831fe0d934b30c4f391
.travis.yml
.travis.yml
language: python python: - '3.5' - '3.6' env: - HASS=0.94.1 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS script: - hass -c . --script check_config
language: python python: - '3.5' - '3.6' env: - HASS=0.94.2 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS script: - hass -c . --script check_config
Update Home Assistant to 0.94.2 for config checks in Travis CI
Update Home Assistant to 0.94.2 for config checks in Travis CI
YAML
mit
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
fd5a0d78a951517db3acce3081dbe2a289b02e69
.travis.yml
.travis.yml
language: ruby rvm: - "1.8.7" - "1.9.2" - "1.9.3" - "2.0.0" - jruby-18mode - jruby-19mode script: bundle exec rspec
language: ruby rvm: - "1.8.7" - "1.9.2" - "1.9.3" - "2.0.0" - jruby-19mode script: bundle exec rspec
Stop being a PITA jruby
Stop being a PITA jruby
YAML
mit
christian-marie/kibana3_auth,christian-marie/kibana3_auth
34e9a17574143ce4401df4e731542c2d1eb0a289
.travis.yml
.travis.yml
language: csharp solution: src/ecsc.sln install: - curl -L https://github.com/jonathanvdc/compare-test/releases/download/v0.1.4/compare-test.zip > compare-test.zip - mkdir -p bin/compare-test - unzip compare-test.zip -d bin/compare-test - nuget restore src/ecsc.sln script: # Build ecsc - xbuild /p:Configuration=Release src/ecsc.sln # Run the tests - mono bin/compare-test/compare-test.exe all-tests-mono.test -j
language: csharp solution: src/ecsc.sln install: - curl -L https://github.com/jonathanvdc/compare-test/releases/download/v0.1.4/compare-test.zip > compare-test.zip - mkdir -p bin/compare-test - unzip compare-test.zip -d bin/compare-test - nuget restore src/ecsc.sln script: # Build ecsc - msbuild /p:Configuration=Release src/ecsc.sln # Run the tests - mono bin/compare-test/compare-test.exe all-tests-mono.test -j
Switch to MSBuild for Travis builds
Switch to MSBuild for Travis builds
YAML
mit
jonathanvdc/ecsc
50f348fdc142de0c9efb2092ee1271f58be7a17a
.travis.yml
.travis.yml
dist: trusty sudo: required language: go go: '1.10' services: - docker addons: apt: packages: - rpm - snapd - liblz4-dev env: - PATH=/snap/bin:$PATH install: - make setup - npm install -g prettier - sudo snap install snapcraft --classic script: - make ci - test -n "$TRAVIS_TAG" || go run main.go --snapshot after_success: - bash <(curl -s https://codecov.io/bash) - test -n "$TRAVIS_TAG" && docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" - make static deploy: - provider: pages skip_cleanup: true keep-history: true verbose: true github_token: $GITHUB_TOKEN repo: goreleaser/goreleaser.github.io local_dir: ./dist/goreleaser.github.io target_branch: master on: master: true - provider: script skip_cleanup: true script: go run main.go --rm-dist on: tags: true notifications: email: false
dist: trusty sudo: required language: go go: '1.10' services: - docker addons: apt: packages: - rpm - snapd - liblz4-dev env: - PATH=/snap/bin:$PATH install: - make setup - npm install -g prettier - sudo snap install snapcraft --classic script: - make ci - test -n "$TRAVIS_TAG" || go run main.go --snapshot after_success: - bash <(curl -s https://codecov.io/bash) - test -n "$TRAVIS_TAG" && docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" - make static deploy: - provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN repo: goreleaser/goreleaser.github.io local_dir: ./dist/goreleaser.github.io target_branch: master on: master: true - provider: script skip_cleanup: true script: go run main.go --rm-dist on: tags: true notifications: email: false
Revert "docs: deploy: debug deploy to pages"
Revert "docs: deploy: debug deploy to pages" This reverts commit cf861c463089f3e929d2450210a8218627906541.
YAML
mit
goreleaser/goreleaser,goreleaser/releaser,goreleaser/goreleaser,goreleaser/goreleaser
8eb59eb1fc2d9e585b879d59a926ceb12ad77bf0
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7 - hhvm - hhvm-nightly matrix: fast_finish: true allow_failures: - php: 7 - php: hhvm - php: hhvm-nightly script: - ./vendor/bin/phpcs --standard=PSR2 ./src/ ./tests/ - ./vendor/bin/phpunit --coverage-clover=coverage.clover before_script: - composer self-update - composer update --prefer-source after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
language: php php: - 5.5 - 5.6 - 7 - hhvm - hhvm-nightly matrix: fast_finish: true allow_failures: - php: 7 - php: hhvm - php: hhvm-nightly script: - ./vendor/bin/phpcs --standard=PSR2 ./src/ ./tests/ - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then ./vendor/bin/phpunit --coverage-clover=coverage.clover; fi before_script: - composer self-update - composer update --prefer-source after_script: - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
Test php version to fire scrutinizer-ci code coverage
Test php version to fire scrutinizer-ci code coverage
YAML
mit
stephane303/MpaCustomDoctrineHydrator,mpalourdio/MpaCustomDoctrineHydrator
23e551be35353ef2480393ff332a9184a4363fee
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - iojs - iojs-v1.0.2 services: - redis-server before_install: - printf "@npm:registry=https://enterprise.npmjs.com\n" >> ~/.npmrc
language: node_js node_js: - "0.11" - "0.10" - iojs - iojs-v1.0.2 services: - redis-server before_install: - if [[ `node --version` =~ "v0.10" ]]; then npm install -g npm@latest; fi - npm config set spin false - printf "@npm:registry=https://enterprise.npmjs.com\n" >> ~/.npmrc
Set up a recent npm before kicking Travis off
Set up a recent npm before kicking Travis off
YAML
isc
npm/npmo-auth-github,npm/npme-auth-github
2dee745fb93a993bde4c9bea87e9b438948bf81d
.travis.yml
.travis.yml
language: rust sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo '<meta http-equiv=refresh content=0;url=filetime/index.html>' > target/doc/index.html && pip install ghp-import --user $USER && $HOME/.local/bin/ghp-import -n target/doc && git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages notifications: email: on_success: never env: global: env: global: secure: dsIj09BQvGF872zKmqzG+WwCl7gfqwsnxcm3GZlAMgyLYm4juvHOwCRhIERCN3BCxPvdlSRKhe9Rwmp1RkiKuqTK3ITUTAy29Maf2vuL1T+zcdpZE0t6JSCU1gbEwzCA2foB1jzgy7Q47EzeJusmGNwibscjYmXKlH6JCFwTobM=
language: rust rust: - nightly sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo '<meta http-equiv=refresh content=0;url=filetime/index.html>' > target/doc/index.html && pip install ghp-import --user $USER && $HOME/.local/bin/ghp-import -n target/doc && git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages notifications: email: on_success: never env: global: env: global: secure: dsIj09BQvGF872zKmqzG+WwCl7gfqwsnxcm3GZlAMgyLYm4juvHOwCRhIERCN3BCxPvdlSRKhe9Rwmp1RkiKuqTK3ITUTAy29Maf2vuL1T+zcdpZE0t6JSCU1gbEwzCA2foB1jzgy7Q47EzeJusmGNwibscjYmXKlH6JCFwTobM=
Test on nightly Rust for now
Test on nightly Rust for now
YAML
apache-2.0
alexcrichton/filetime
5f0935e41d640e007335ba9d19150c1dfdd3c3b9
.travis.yml
.travis.yml
language: ruby sudo: false before_install: - gem update --system - gem install bundler bundler_args: --without development doc env: global: - JRUBY_OPTS="$JRUBY_OPTS --debug" rvm: - 2.0.0 - 2.1 - 2.2 - 2.3.0 - 2.3.1 - 2.3.2 - 2.3.3 - 2.4.0 - ruby-head - jruby-9.1.6.0 - jruby-9.1.7.0 matrix: allow_failures: - rvm: ruby-head fast_finish: true branches: only: - master
language: ruby sudo: false before_install: - gem update --system - gem install bundler bundler_args: --without development doc env: global: - JRUBY_OPTS="$JRUBY_OPTS --debug" rvm: - jruby-9.1.7.0 - 2.0.0 - 2.1 - 2.2 - 2.3.3 - 2.4.0 matrix: fast_finish: true branches: only: - master
Remove ruby versions we don't care on CI
Remove ruby versions we don't care on CI
YAML
mit
pezra/http.rb,httprb/http,httprb/http.rb
ab897b8e984296b853d3eafd8e1a70369cdd0889
.travis.yml
.travis.yml
rvm: - 1.9.3 notifications: recipients: - [email protected] irc: "irc.freenode.net#holderdeord" script: "bundle exec rake"
language: ruby rvm: - 1.9.3 notifications: recipients: - [email protected] irc: channels: - "irc.freenode.net#holderdeord" on_success: change on_failure: change template: - "%{author} | %{commit} | %{message} | %{build_url}" script: "bundle exec rake"
Use the same IRC settings as hdo-site
Use the same IRC settings as hdo-site
YAML
mit
holderdeord/hdo-storting-importer
9c8d9f3fe219bab79de3d45852632c05c9f4de2d
.travis.yml
.travis.yml
# http://travis-ci.org/mpi4py/mpi4py language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - pypy - pypy3 env: - MPI=mpich3 - MPI=mpich2 - MPI=mpich1 - MPI=openmpi matrix: allow_failures: - python: pypy - python: pypy3 - env: MPI=mpich1 branches: only: - master - maint cache: apt: true before_install: - sudo apt-get update -q - sh ./conf/travis/install-mpi.sh $MPI - pip install -q Cython - cython --version install: - pip -vvv install . before_script: - sudo hostname localhost - MPIEXEC='mpiexec'; PYTHON='python'; - test $MPI == mpich1 && MPIEXEC='mpirun' || true - test $MPI == mpich1 && PYTHON=$(command -v $PYTHON) || true script: - $MPIEXEC -n 1 $PYTHON $PWD/test/runtests.py -v -f --no-builddir --exclude=spawn - $MPIEXEC -n 3 $PYTHON $PWD/test/runtests.py -v -f --no-builddir --exclude=spawn - $MPIEXEC -n 5 $PYTHON $PWD/test/runtests.py -q -f --no-builddir --exclude=spawn #notifications: # email: false
# http://travis-ci.org/mpi4py/mpi4py language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - pypy - pypy3 env: - MPI=mpich3 - MPI=mpich2 - MPI=mpich1 - MPI=openmpi matrix: allow_failures: - python: pypy - python: pypy3 - env: MPI=mpich1 branches: only: - master - maint cache: apt: true before_install: - sudo apt-get update -q - sh ./conf/travis/install-mpi.sh $MPI - pip install -q Cython - cython --version install: - pip -vvv install . before_script: - sudo hostname localhost - MPIEXEC='mpiexec'; PYTHON='python'; - test $MPI == mpich1 && MPIEXEC='mpirun' || true - test $MPI == mpich1 && PYTHON=$(command -v $PYTHON) || true script: - $MPIEXEC -n 1 $PYTHON $PWD/test/runtests.py -v -f --no-builddir --exclude=spawn - $MPIEXEC -n 3 $PYTHON $PWD/test/runtests.py -v -f --no-builddir --exclude=spawn #notifications: # email: false
Remove test runs with 5 processes
Travis-CI: Remove test runs with 5 processes
YAML
bsd-2-clause
mpi4py/mpi4py,mpi4py/mpi4py,mpi4py/mpi4py
a9916e6a7968b5b8651472c3b446740eb08b59a7
.travis.yml
.travis.yml
language: csharp solution: ./src/ScaffoldR.sln install: - nuget restore ./src/ScaffoldR.sln script: - xbuild /p:Configuration=Release ./src/ScaffoldR.sln - mono ./testrunner/xunit.runner.console.*/tools/xunit.console.clr4.exe ./src/ScaffoldR.Tests/bin/Release/ScaffoldR.Tests.dll - mono ./testrunner/xunit.runner.console.*/tools/xunit.console.clr4.exe ./src/ScaffoldR.EntityFramework.Tests/bin/Release/ScaffoldR.EntityFramework.Tests.dll
language: csharp solution: ./src/ScaffoldR.sln install: - nuget restore ./src/ScaffoldR.sln script: - xbuild /p:Configuration=Release ./src/ScaffoldR.sln - mono ./testrunner/xunit.runner.console.*/tools/xunit.console.exe ./src/ScaffoldR.Tests/bin/Release/ScaffoldR.Tests.dll - mono ./testrunner/xunit.runner.console.*/tools/xunit.console.exe ./src/ScaffoldR.EntityFramework.Tests/bin/Release/ScaffoldR.EntityFramework.Tests.dll
Correct .exe to be run fixed
Correct .exe to be run fixed
YAML
apache-2.0
hartmanns/ScaffoldR
c7077ae74957792bf2af9cefcd69d85dee1e16f7
.travis.yml
.travis.yml
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details language: php php: - 5.4 env: global: - CORE_RELEASE=3 matrix: - DB=MYSQL - DB=PGSQL matrix: include: - php: 5.3 env: DB=MYSQL - php: 5.4 env: DB=MYSQL BEHAT_TEST=1 before_script: - composer self-update - phpenv rehash - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support - "if [ \"$BEHAT_TEST\" = \"\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss; fi" - "if [ \"$BEHAT_TEST\" = \"1\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/behat-extension; fi" - cd ~/builds/ss - php ~/travis-support/travis_setup_selenium.php --if-env BEHAT_TEST - php ~/travis-support/travis_setup_php54_webserver.php --if-env BEHAT_TEST script: - "if [ \"$BEHAT_TEST\" = \"\" ]; then vendor/bin/phpunit subsites/tests; fi" - "if [ \"$BEHAT_TEST\" = \"1\" ]; then vendor/bin/behat @subsites; fi"
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details language: php php: - 5.4 env: - DB=MYSQL CORE_RELEASE=3.2 matrix: include: - php: 5.3 env: DB=PGSQL CORE_RELEASE=3.2 - php: 5.6 env: DB=MYSQL CORE_RELEASE=3 - php: 5.4 env: DB=MYSQL CORE_RELEASE=3.2 BEHAT_TEST=1 before_script: - composer self-update - phpenv rehash - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support - "if [ \"$BEHAT_TEST\" = \"\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss; fi" - "if [ \"$BEHAT_TEST\" = \"1\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/behat-extension; fi" - cd ~/builds/ss - php ~/travis-support/travis_setup_selenium.php --if-env BEHAT_TEST - php ~/travis-support/travis_setup_php54_webserver.php --if-env BEHAT_TEST script: - "if [ \"$BEHAT_TEST\" = \"\" ]; then vendor/bin/phpunit subsites/tests; fi" - "if [ \"$BEHAT_TEST\" = \"1\" ]; then vendor/bin/behat @subsites; fi"
Test 3 / 3.2 branches and php 5.6
Test 3 / 3.2 branches and php 5.6
YAML
bsd-3-clause
silverstripe/silverstripe-subsites,danaenz/silverstripe-subsites,mikenz/silverstripe-simplesubsites,silverstripe/silverstripe-subsites,mandrew/silverstripe-subsites,danaenz/silverstripe-subsites,mikenz/silverstripe-simplesubsites,mandrew/silverstripe-subsites
dcdd3b7f6b45cc57709e3f541c8d82da95742507
.travis.yml
.travis.yml
dist: xenial language: cpp os: - linux - osx osx_image: xcode10.2 cache: directories: - posix/src - xcode/src env: global: - MAKEFLAGS="-j 2" compiler: - gcc - clang addons: apt: packages: - libgtk2.0-dev - libsqlite3-dev - uuid-dev install: - if [ "$TRAVIS_OS_NAME" = linux -a "$CXX" = "g++" ]; then export CFLAGS="-g0 -O0" CXXFLAGS="-g0 -O0"; fi - if [ "$TRAVIS_OS_NAME" = linux -a "$CXX" = "clang++" ]; then export CFLAGS="-g0 -O0" CXXFLAGS="-g0 -O0"; fi - if [ "$TRAVIS_OS_NAME" = linux ]; then cd posix; else cd xcode; fi - if [ "$TRAVIS_OS_NAME" = osx ]; then export LIBTOOL=glibtool LIBTOOLIZE=glibtoolize; fi - if [ "$TRAVIS_OS_NAME" = osx ]; then cp config.mk.travis config.mk; fi - make -s download - travis_wait 60 make -s external - make -s all script: - make check # in posix/ or xcode/
dist: xenial language: cpp os: - linux # - osx osx_image: xcode10.2 cache: directories: - posix/src - xcode/src env: global: - MAKEFLAGS="-j 2" compiler: - gcc - clang addons: apt: packages: - libgtk2.0-dev - libsqlite3-dev - uuid-dev install: - if [ "$TRAVIS_OS_NAME" = linux -a "$CXX" = "g++" ]; then export CFLAGS="-g0 -O0" CXXFLAGS="-g0 -O0"; fi - if [ "$TRAVIS_OS_NAME" = linux -a "$CXX" = "clang++" ]; then export CFLAGS="-g0 -O0" CXXFLAGS="-g0 -O0"; fi - if [ "$TRAVIS_OS_NAME" = linux ]; then cd posix; else cd xcode; fi - if [ "$TRAVIS_OS_NAME" = osx ]; then export LIBTOOL=glibtool LIBTOOLIZE=glibtoolize; fi - if [ "$TRAVIS_OS_NAME" = osx ]; then cp config.mk.travis config.mk; fi - make -s download - travis_wait 60 make -s external - make -s all script: - make check # in posix/ or xcode/
Disable macOS CI for now
Disable macOS CI for now
YAML
mit
flintproject/Flint,flintproject/Flint
54d56946b02789c60fb29097b626a3338288a736
.travis.yml
.travis.yml
language: rust rust: - nightly-2016-08-18 - nightly matrix: allow_failures: - rust: nightly script: scripts/travis_build.sh before_script: - (cargo install xargo || true) - PATH=$PATH:~/.cargo/bin addons: apt: packages: - cmake - libssl-dev sources: - kalakris-cmake
language: rust rust: nightly cache: cargo script: scripts/travis_build.sh before_script: - (cargo install xargo || true) - PATH=$PATH:~/.cargo/bin addons: apt: packages: - cmake - libssl-dev sources: - kalakris-cmake
Remove old stable nightly builds and use only nightly. Cache cargo.
Remove old stable nightly builds and use only nightly. Cache cargo.
YAML
mit
jemtucker/opsys,jemtucker/opsys,jemtucker/opsys
187ee48b0ec5e528dcc980b08d45ec4bdeeefbb7
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" after_script: "npm run coveralls"
language: node_js node_js: - "8" - "9" - "node" after_script: "npm run coveralls"
Test against latest node versions
Test against latest node versions
YAML
mit
devinivy/underdog
74fbfeefd708f6de83e0867f9c4eb74a089be22e
.travis.yml
.travis.yml
language: php php: - 5.6 - 5.5 services: - memcached script: phpunit --configuration tests/phpunit.xml after_success: # CREATE GIT TAG - git config --global user.email "[email protected]" - git config --global user.name "Travis CI" - export GIT_TAG=build-$TRAVIS_BRANCH-$(date -u "+%Y-%m-%d")-$TRAVIS_BUILD_NUMBER - echo -n $GIT_TAG > public/version - git commit -m "Set build VERSION number" public/version - git tag $GIT_TAG -a -m "Generated tag from TravisCI build $TRAVIS_BUILD_NUMBER" - git push --quiet https://[email protected]/clickalicious/Memcached.php $GIT_TAG > /dev/null 2>&1 branches: except: - /^build-[0-9a-z\-]*/
language: php php: - 5.6 - 5.5 services: - memcached script: phpunit --configuration tests/phpunit.xml after_success: # CREATE GIT TAG - git config --global user.email "[email protected]" - git config --global user.name "Travis CI" - export GIT_TAG=build-$TRAVIS_BRANCH-$(date -u "+%Y-%m-%d")-$TRAVIS_BUILD_NUMBER - echo -n $GIT_TAG > public/version - git commit -m "Set build VERSION number" public/version - git tag $GIT_TAG -a -m "Generated tag from TravisCI build $TRAVIS_BUILD_NUMBER" #- git push --quiet https://[email protected]/clickalicious/Memcached.php $GIT_TAG > /dev/null 2>&1 - git push --tags --quiet https://[email protected]/clickalicious/Memcached.php branches: except: - /^build-[0-9a-z\-]*/
Fix for Travis-CI tag push
Fix for Travis-CI tag push
YAML
bsd-3-clause
clickalicious/Memcached.php,clickalicious/Memcached.php
ae7442037a4a39fc6b99f6bb1a1f069eb7d11eef
.travis.yml
.travis.yml
language: node_js node_js: - '6.1' - '5.11' - '0.12' - '0.11' - '0.10'
language: node_js node_js: - '6.1' - '5.11' - '4.4' - '0.12' - '0.11' - '0.10'
Add v4 to the build matrix
Add v4 to the build matrix
YAML
mit
jacobmarshall/bugsnag-node,bugsnag/bugsnag-node
bebbfdc50684550083a3a471e215b62ab2ca6950
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.11" - "0.10" before_install: - "npm install --global grunt-cli"
sudo: false language: node_js node_js: - "0.12" - "0.10" - "4.2" before_install: - "npm install --global grunt-cli" cache: directories: - node_modules matrix: fast_finish: true
Test against Long Term Support version of Node.js
Test against Long Term Support version of Node.js
YAML
mit
jribble/grunt-jasmine-node-coverage
34bd03e337e7dccb3c9a08867d73adbf682cca3e
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" addons: apt: packages: - parallel install: - pip install futures - pip install http://ftp.openquake.org/python-wheels/numpy-1.8.2-cp27-none-linux_x86_64.whl - pip install http://ftp.openquake.org/python-wheels/scipy-0.16.0-cp27-none-linux_x86_64.whl - pip install http://ftp.openquake.org/python-wheels/Cython-0.22.1-cp27-none-linux_x86_64.whl - pip install http://ftp.openquake.org/python-wheels/Shapely-1.5.9-py2-none-any.whl - pip install http://ftp.openquake.org/python-wheels/h5py-2.2.1-cp27-none-linux_x86_64.whl - pip install https://github.com/gem/oq-hazardlib/archive/master.zip - python setup.py install script: - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture --with-doctest - # cd bin; python slowtests ../nosetests.xml
sudo: false language: python python: - "3.5" addons: apt: packages: - wget before_install: - wget http://ftp.openquake.org/travis/openquake-env-setup-py3-linux64.run env: LD_LIBRARY_PATH=$HOME/openquake/lib PATH=$HOME/openquake/lib:$PATH install: - ./openquake-env-setup-py3-linux64.run -- -d ~ - pip install https://github.com/gem/oq-hazardlib/archive/python3.zip - pip install . script: - nosetests -vsx -a'!slow' --with-xunit --nologcapture --with-doctest
Use our own python3 distribution to build on Travis
Use our own python3 distribution to build on Travis
YAML
agpl-3.0
gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine
a431682075c8a7458646302cd45634622dcc9eec
.travis.yml
.travis.yml
branches: only: - master - rust-0.8 before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc - yes | sudo apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise universe' - sudo apt-get update install: - sudo apt-get install rust-nightly libwxgtk2.9-0-unofficial libwxgtk2.9-dev - sudo apt-get install libclang-3.3-dev script: - export LD_LIBRARY_PATH=/usr/lib/llvm-3.3/lib - mkdir -p build - cd build - cmake -DRUSTCFLAGS="-L;/usr/lib/llvm-3.3/lib" .. - make
branches: only: - master - rust-0.8 - rust-0.9 before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc - yes | sudo apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise universe' - sudo apt-get update install: - sudo apt-get install rust-nightly libwxgtk2.9-0-unofficial libwxgtk2.9-dev - sudo apt-get install libclang-3.3-dev script: - export LD_LIBRARY_PATH=/usr/lib/llvm-3.3/lib - mkdir -p build - cd build - cmake -DRUSTCFLAGS="-L;/usr/lib/llvm-3.3/lib" .. - make
Add rust-0.9 branch to CI target (merge rust-servo branch).
Add rust-0.9 branch to CI target (merge rust-servo branch).
YAML
lgpl-2.1
tempbottle/wxRust,tempbottle/wxRust
35e9935a710d9f5fcb682babcc987a88887f0bf9
.travis.yml
.travis.yml
language: objective-c before_install: - gem install cocoapods --no-rdoc --no-ri --no-document --quiet - brew update - brew uninstall xctool && brew install xctool --HEAD - cd Tests && pod install && cd $TRAVIS_BUILD_DIR script: rake test_for_target env: - TEST_TARGET=ios - TEST_TARGET=osx matrix: fast_finish: true allow_failures: - env: "TEST_TARGET=osx"
language: objective-c before_script: - export LANG=en_US.UTF-8 before_install: - gem install cocoapods --no-rdoc --no-ri --no-document --quiet - brew update - brew uninstall xctool && brew install xctool --HEAD - cd Tests && pod install && cd $TRAVIS_BUILD_DIR script: rake test_for_target env: - TEST_TARGET=ios - TEST_TARGET=osx matrix: fast_finish: true allow_failures: - env: "TEST_TARGET=osx"
Set Travis terminal to use utf8 encoding
Set Travis terminal to use utf8 encoding
YAML
mit
sbonami/PFIncrementalStore
c724875d3669483edd3424907f87e16327f1d7c8
.travis.yml
.travis.yml
language: php dist: trusty sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - hhvm matrix: allow_failures: - php: hhvm include: - php: "5.3" dist: precise before_install: - composer self-update install: - composer install # Last released version of htmlpurifier (4.10.0) is broken on HHVM # https://github.com/ezyang/htmlpurifier/issues/169 - if [ "${TRAVIS_PHP_VERSION}" == "hhvm" ]; then composer require 'ezyang/htmlpurifier:dev-master#89b3fe4'; fi script: - mkdir -p build/logs - php vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - php vendor/bin/coveralls
language: php dist: trusty sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - hhvm matrix: allow_failures: - php: hhvm include: - php: "5.3" dist: precise before_install: - composer self-update install: - composer install # Last released version of htmlpurifier (4.10.0) is broken on HHVM # https://github.com/ezyang/htmlpurifier/issues/169 - if [ "${TRAVIS_PHP_VERSION}" == "hhvm" ]; then composer require 'ezyang/htmlpurifier:dev-master#89b3fe4'; fi script: - mkdir -p build/logs - php vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - if [ -f "vendor/bin/php-coveralls" ]; then php vendor/bin/php-coveralls; else vendor/bin/coveralls; fi
Fix executing coveralls on Travis
Fix executing coveralls on Travis
YAML
mit
xemlock/htmlpurifier-html5
7898bad269f6655a4fb6404f7d17f1458a78e6a0
.travis.yml
.travis.yml
language: php php: - "5.3" - "5.4" - "5.5" - "5.6" - "7.0" - "nightly" sudo: false install: - travis_retry composer self-update && composer --version # We have to supply the branch alias here again as travis checks out a commit hash and therefore destroys the # circular dependency phpcq/all-tasks -> phpcq/autoload-validation -> phpcq/all-tasks. - > if [ "x${TRAVIS_TAG}" != "x" ]; then COMPOSER_ROOT_VERSION=${TRAVIS_TAG} travis_retry composer update --prefer-dist --no-interaction; else COMPOSER_ROOT_VERSION=dev-${TRAVIS_BRANCH} travis_retry composer update --prefer-dist --no-interaction; fi script: ant -keep-going allow_failure: - php: "7.0" - php: "nightly" # Hack to make things work again - we can not use a shallow repository. git: depth: 2147483647
language: php php: - "5.3" - "5.4" - "5.5" - "5.6" - "7.0" - "7.1" - "nightly" sudo: false install: - travis_retry composer self-update && composer --version # We have to supply the branch alias here again as travis checks out a commit hash and therefore destroys the # circular dependency phpcq/all-tasks -> phpcq/autoload-validation -> phpcq/all-tasks. - > if [ "x${TRAVIS_TAG}" != "x" ]; then COMPOSER_ROOT_VERSION=${TRAVIS_TAG} travis_retry composer update --prefer-dist --no-interaction; else COMPOSER_ROOT_VERSION=dev-${TRAVIS_BRANCH} travis_retry composer update --prefer-dist --no-interaction; fi script: ant -keep-going allow_failure: - php: "7.0" - php: "nightly" # Hack to make things work again - we can not use a shallow repository. git: depth: 2147483647
Add PHP 7.1 to list of php versions
Add PHP 7.1 to list of php versions
YAML
mit
phpcq/travis-configuration-check
e470d438446887e8c46c2215b24600ed33e6b319
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' - '0.12' - '4.0.0' script: npm test notifications: irc: irc.freenode.org#fbp deploy: provider: npm email: [email protected] api_key: secure: n6kh+2hVIrMU85enLrtaxt74B60hpmtXIAhmeMgi+b+QPk31YKxL7SvViEwO2tn0NDDd7/LTnj0v95hkfBOCVZPMFWIGblvbAU6anESd+Xr9P0j4zMJDg+TkjHZ0vXzA0NQh3dlTZ4gtTAFPQED8tOwhBMkWSScL1eedeU9yO58= skip_cleanup: true on: tags: true all_branches: true repo: noflo/noflo
language: node_js node_js: - '0.10' - '0.12' script: npm test notifications: irc: irc.freenode.org#fbp deploy: provider: npm email: [email protected] api_key: secure: n6kh+2hVIrMU85enLrtaxt74B60hpmtXIAhmeMgi+b+QPk31YKxL7SvViEwO2tn0NDDd7/LTnj0v95hkfBOCVZPMFWIGblvbAU6anESd+Xr9P0j4zMJDg+TkjHZ0vXzA0NQh3dlTZ4gtTAFPQED8tOwhBMkWSScL1eedeU9yO58= skip_cleanup: true on: tags: true all_branches: true repo: noflo/noflo
Remove Node 4.0 for now
Remove Node 4.0 for now
YAML
mit
trustmaster/noflo,trustmaster/noflo,noflo/noflo,jonnor/noflo,jonnor/noflo
e9f31e6154ba8b5757737d43a866eaa84ae34ad3
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 install: - php composer.phar install
language: php php: - 5.5 - 5.6 - 7.0 before_install: - npm install -g gulp install: - php composer.phar install - npm install - gulp --production script: - vendor/bin/phpunit
Update Travis CI script to run gulp
Update Travis CI script to run gulp
YAML
mit
aag/fillmysuitcase,aag/fillmysuitcase,aag/fillmysuitcase
07d5a0a53175ddc1bbaf5c5eda834234d7eaff4b
.travis.yml
.travis.yml
language: ruby cache: bundler: true yarn: true directories: - node_modules rvm: - 2.2.10 - 2.3.7 - 2.4.4 - 2.5.1 before_install: - gem update --system - gem install bundler install: - bundle install --path vendor/bundle - cd test/sample && yarn install && cd - gemfile: - gemfiles/rails_3.2.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile - gemfiles/rails_5.2.gemfile script: - bundle exec rake
language: ruby cache: bundler: true yarn: true directories: - node_modules rvm: - 2.4.4 - 2.5.1 before_install: - gem update --system - gem install bundler install: - bundle install --path vendor/bundle - cd test/sample && yarn install && cd - gemfile: - gemfiles/rails_3.2.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile - gemfiles/rails_5.2.gemfile script: - bundle exec rake
Remove matrix support for old rubies
Remove matrix support for old rubies
YAML
mit
rossta/serviceworker-rails,rossta/serviceworker-rails,rossta/serviceworker-rails,rossta/serviceworker-rails
725beddf9eb7a4a97b70124da314d9b9fa5ce99e
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "nightly" # command to run tests script: touch ".nocompile" && ./bmrb.py && rm .nocompile && ./bmrb.py
os: - linux - osx language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "nightly" # command to run tests script: touch ".nocompile" && ./bmrb.py && rm .nocompile && ./bmrb.py
Update to run tests on macos too.
Update to run tests on macos too.
YAML
mit
uwbmrb/PyNMRSTAR,uwbmrb/PyNMRSTAR,uwbmrb/PyNMRSTAR
08ab2dd7ee3cf6ef8778695d325a397911873c29
.travis.yml
.travis.yml
language: android jdk: oraclejdk7 # Use the Travis Container-Based Infrastructure sudo: false cache: directories: - ${TRAVIS_BUILD_DIR}/gradle/caches/ - ${TRAVIS_BUILD_DIR}/gradle/wrapper/dists/ android: components: - platform-tools - tools - build-tools-23.0.1 - android-23 # Support library - extra-android-support # Latest artifacts in local repository - extra-google-m2repository - extra-android-m2repository before_install: - chmod +x gradlew script: - ./gradlew clean -PdisablePreDex
language: android jdk: oraclejdk7 # Use the Travis Container-Based Infrastructure sudo: false cache: directories: - ${TRAVIS_BUILD_DIR}/gradle/caches/ - ${TRAVIS_BUILD_DIR}/gradle/wrapper/dists/ android: components: - platform-tools - tools - build-tools-23.0.2 - android-23 # Support library - extra-android-support # Latest artifacts in local repository - extra-google-m2repository - extra-android-m2repository before_install: - chmod +x gradlew script: - ./gradlew clean -PdisablePreDex
Fix build tools version in CI.
Fix build tools version in CI.
YAML
apache-2.0
filipebezerra/VerseOfTheDay
2459569605fb6f9f832efd9f8df76e17a5f65760
.travis.yml
.travis.yml
sudo: false language: php php: - 5.5 - 5.6 - 7.0 before_install: ## Disable xdebug - phpenv config-rm xdebug.ini ## Update Composer - composer self-update ## Install latest version of node - nvm install node install: ## Install Composer dependencies - composer install --no-interaction --prefer-source before_script: ## Travis configuration - cp app/config/settings.inc.php.ini app/config/settings.inc.php ## Install ESLint - npm install -g eslint script: - vendor/atoum/atoum/bin/atoum -d tests/units/ - vendor/bin/php-cs-fixer --diff --dry-run -v fix - eslint web/assets/js notifications: irc: channels: - "irc.mozilla.org#l10n-tools" on_success: always on_failure: always use_notice: true template: - "%{repository} ; %{commit} (%{author}) : %{message} " - "Build details: %{build_url} ; changes: %{compare_url}" matrix: fast_finish: true
sudo: false language: php php: - 5.6 - 7.0 before_install: ## Disable xdebug - phpenv config-rm xdebug.ini ## Update Composer - composer self-update ## Install latest version of node - nvm install node install: ## Install Composer dependencies - composer install --no-interaction --prefer-source before_script: ## Travis configuration - cp app/config/settings.inc.php.ini app/config/settings.inc.php ## Install ESLint - npm install -g eslint script: - vendor/atoum/atoum/bin/atoum -d tests/units/ - vendor/bin/php-cs-fixer --diff --dry-run -v fix - eslint web/assets/js notifications: irc: channels: - "irc.mozilla.org#l10n-tools" on_success: always on_failure: always use_notice: true template: - "%{repository} ; %{commit} (%{author}) : %{message} " - "Build details: %{build_url} ; changes: %{compare_url}" matrix: fast_finish: true
Drop PHP 5.5 from Travis testing
Drop PHP 5.5 from Travis testing
YAML
mpl-2.0
mozilla-l10n/webdashboard,mozilla-l10n/webdashboard,flodolo/webdashboard,mozilla-l10n/webdashboard,flodolo/webdashboard,flodolo/webdashboard
5d1677681d3036089a67ec960643d89151adc8ae
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "0.10" - "0.12" - "io.js" before_script: - npm install -g grunt-cli
language: node_js sudo: false node_js: - "stable" - "0.12" - "0.10" before_script: - npm install -g grunt-cli
Support Node.js v4.0.0 and drop io.js test
Support Node.js v4.0.0 and drop io.js test
YAML
mit
rakuten-frontend/generator-rff,rakuten-frontend/generator-rff
98b1c95a8908f3e1c3c8ca5e4cc06b3df97da772
.travis.yml
.travis.yml
--- language: go sudo: false notifications: email: false matrix: include: - os: linux go: 1.7 - os: linux go: tip - os: osx go: 1.7 install: - echo "This is an override of the default install deps step in travis." script: - go build -v - go vet $(go list ./... | grep -v vendor) - test -z "$(gofmt -s -l . |& grep -v vendor | tee /dev/stderr)" - go test $(go list ./... | grep -v vendor) - go build ./hack/licenseok - find . -path ./vendor -prune -o -type f -name "*.go" -printf '%P\n' | xargs ./licenseok - ./hack/validate-vendor.bash
--- language: go sudo: false notifications: email: false matrix: include: - os: linux go: 1.7.x - os: linux go: tip - os: osx go: 1.7.x install: - echo "This is an override of the default install deps step in travis." script: - go build -v - go vet $(go list ./... | grep -v vendor) - test -z "$(gofmt -s -l . |& grep -v vendor | tee /dev/stderr)" - go test $(go list ./... | grep -v vendor) - go build ./hack/licenseok - find . -path ./vendor -prune -o -type f -name "*.go" -printf '%P\n' | xargs ./licenseok - ./hack/validate-vendor.bash
Use the latest 1.7 point release on Travis
Use the latest 1.7 point release on Travis
YAML
bsd-3-clause
golang/dep,ibrasho-forks/dep,golang/dep,ibrasho-forks/dep,EwanValentine/dep,golang/dep,EwanValentine/dep
5773f070ccf7e5d1190cdee9cc6dcb1918c72b18
.travis.yml
.travis.yml
language: go go: master script: go test -v ./dataframe ./series
language: go go: master before_script: - echo 'Checking code quality issues.' - go vet ./... - echo 'Checking that gofmt was used.' - diff -u <(echo -n) <(gofmt -d .) - echo 'Checking tidiness of go mod.' - go mod tidy - test -z "$(git status --porcelain)" script: - echo 'Running tests.' - go test -v ./...
Add extra checks for TravisCI
Add extra checks for TravisCI
YAML
apache-2.0
kniren/gota
c1579779f1267ad942bc9b293c5880396b05e155
.travis.yml
.travis.yml
language: bash sudo: required addons: apt: sources: - debian-sid packages: - shellcheck before_install: - sudo add-apt-repository ppa:duggan/bats -y - sudo apt-get -qq update - sudo apt-get install -y bats jq script: - ./test.sh
language: bash sudo: required # addons: # apt: # sources: # - debian-sid # packages: # - shellcheck # # before_install: # - sudo add-apt-repository ppa:duggan/bats -y # - sudo apt-get -qq update # - sudo apt-get install -y bats jq script: - ./test.sh
Fix apt dependencies issues on TRAVIS
Fix apt dependencies issues on TRAVIS
YAML
mit
Josef-Friedrich/Hue-shell,Josef-Friedrich/Hue-shell
f25e247c32f14b165e938ec57a2c44f8b09828bb
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk7 - openjdk6 before_script: unset GEM_PATH GEM_HOME JRUBY_OPTS install: ./gradlew assemble script: ./gradlew -S check && bash test-asciidoctor-upstream.sh notifications: email: false irc: channels: - "irc.freenode.org#asciidoctor"
language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk7 - openjdk6 before_script: unset GEM_PATH GEM_HOME JRUBY_OPTS install: ./gradlew assemble script: ./gradlew -S check && bash test-asciidoctor-upstream.sh after_success: if [ "${TRAVIS_BRANCH}" = "asciidoctorj-1.6.0" -a "${TRAVIS_PULL_REQUEST}" = "false" -a "${TRAVIS_JDK_VERSION}" = "oraclejdk8" ]; then ./gradlew clean build artifactoryPublish -x test ; fi notifications: email: false irc: channels: - "irc.freenode.org#asciidoctor" env: - secure: "wRlCGOBxIeRE7M0yAZ1LhKGyZ0nhzj4CkF9wiA6Rc2vXONIL5M9NMkaExmrtui1gXffixyRlGYeas6Q6awTvBZ5uKiNnt530BuzrMFN1kIhAdyXhcuzvO5seOwKyyyyLEFaWRFqqWDu9bSeZvzIoUXCpC+q47CdMzWExEdbE7eE=" - secure: "poMdVYonDHXsmILnF6ZIub11xgQz219J2F6HbEP2dlUpEtiDhrg+NxorPaU5K+r0gA8YoqlISQLyuVoEReOgjb+Xv++1iaD3ryU5gAFGPsfnK8cWP4praWS3zD0UbbkPaNDP85LtpUB234mMQJ9HZHEeDGMWnd9kH8Ii8JdAME0="
Make Travis publish Asciidoctorj-1.6.0 snapshots
Make Travis publish Asciidoctorj-1.6.0 snapshots
YAML
apache-2.0
lefou/asciidoctorj,robertpanzer/asciidoctorj,ysb33r/asciidoctorj,abelsromero/asciidoctorj,ysb33r/asciidoctorj,robertpanzer/asciidoctorj,ysb33r/asciidoctorj,lefou/asciidoctorj,ysb33r/asciidoctorj,lefou/asciidoctorj,abelsromero/asciidoctorj,robertpanzer/asciidoctorj,lefou/asciidoctorj,asciidoctor/asciidoctorj,asciidoctor/asciidoctorj,abelsromero/asciidoctorj,asciidoctor/asciidoctorj
38bfcf4847f71fedb094cfc4b92c78c8a9bb9114
.travis.yml
.travis.yml
language: csharp solution: skalarprodukt.sln
language: csharp solution: skalarprodukt.sln before_install: - mkdir -p .nuget - wget -O .nuget/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe - mono .nuget/nuget.exe # Output NuGet's version number install: - mono .nuget/nuget.exe restore skalarprodukt.sln -Verbosity detailed
Fix nuget in Travis build
Fix nuget in Travis build
YAML
mit
gsomix/skalarprodukt
1faa306aa7f84e8a8fdb4ed8089abbcf34cfec48
.travis.yml
.travis.yml
language: python dist: xenial python: - "2.7" before_install: - sudo apt-get install gradle install: - pip install tox script: - tox -v - gradle check after_failure: - cat build/reports/codenarc/main.txt
language: python dist: trusty python: - "2.7" before_install: - sudo apt-get install gradle install: - pip install tox script: - tox -v - gradle check after_failure: - cat build/reports/codenarc/main.txt
Switch Travis CI to Trusty image (CI fix)
Switch Travis CI to Trusty image (CI fix) In absence of Xenial image Travis used Precise as a fallback (cool). Since our only options for Travis are either Precise or trusty let's at least explicitly use Trusty.
YAML
apache-2.0
ibelikov/jimmy
af307ef81413c0e6a9c2e28052110a90f5399faa
.travis.yml
.travis.yml
language: node_js node_js: - "0.8" - "0.10" before_install: - npm install -g grunt-cli
language: node_js node_js: - "0.10" before_install: - npm install -g grunt-cli
Remove 0.8; Loggly is not available
Travis: Remove 0.8; Loggly is not available
YAML
mit
TomFrost/Bristol,bartekn/Bristol
1ddedb8fbdeb234db2b9d084130c9f072a4eec1f
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" install: - python setup.py install - pip install coveralls script: make test after_success: - coveralls
language: python python: - "2.6" - "2.7" install: - python setup.py install - pip install coveralls script: make test after_success: - coveralls
Revert "Trying out support for Python 3.3 and 3.4"
Revert "Trying out support for Python 3.3 and 3.4" This reverts commit 87112ea58fa4162d85bf4b5d53b4f4b37ba0ddd0.
YAML
unlicense
citruspi/Flask-Analytics,citruspi/Flask-Analytics,vfulco/Flask-Analytics,vfulco/Flask-Analytics
636cc0ca16f8509a9b0e6b8f55a47051f2696983
.travis.yml
.travis.yml
language: ruby matrix: allow_failures: - rvm: ruby-head rvm: - 2.1.10 - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 - ruby-head before_install: # need this for ruby 1.9.3 and rspec - gem update --system - gem update bundler --force
language: ruby matrix: allow_failures: - rvm: ruby-head rvm: - 2.4 - 2.5 - 2.6 - 2.7 - ruby-head before_install: # need this for ruby 1.9.3 and rspec - gem update --system - gem update bundler --force
Add new ruby versions to TravisCI
Add new ruby versions to TravisCI
YAML
mit
edgar/NYCGeoClient
35bc04e055912db6a6960c8bc8e22692687b44f8
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" cache: directories: - $HOME/.npm
sudo: false language: node_js node_js: - "node" cache: directories: - $HOME/.npm
Use container-based infrastructure for Travis.
ENYO-3144: Use container-based infrastructure for Travis. Enyo-DCO-1.1-Signed-off-by: Aaron Tam <[email protected]>
YAML
apache-2.0
enyojs/canvas
5570ca3a830837f3266679ee7ba0fa5453aac61a
.travis.yml
.travis.yml
language: node_js node_js: - 6.0 before_script: - npm install -g grunt-cli notifications: email: false
language: node_js node_js: - 0.10 - 0.12 - 4 - 6 before_script: - npm install -g grunt-cli notifications: email: false
Test on older Node.js versions
Test on older Node.js versions
YAML
mit
jankolkmeier/xbee-api
ea10507c377fde87d501e5c03870d0a05b564b8b
.travis.yml
.travis.yml
language: python python: - "3.3" install: - pip install git://github.com/TangledWeb/tangled.git#egg=tangled - pip install . script: py.test
language: python python: - "3.3" install: - pip install git+git://github.com/TangledWeb/tangled.git#egg=tangled - pip install . script: py.test
Fix pip install link for tangled (again)
Fix pip install link for tangled (again)
YAML
mit
TangledWeb/tangled.web
365ec2876ff9ca9b8a8fbd38309b513ac5aa22a1
.travis.yml
.travis.yml
language: php php: - 7.0 - 5.6 - 5.5 - 5.4 - hhvm install: composer install --no-interaction --prefer-source script: - phpunit --coverage-text --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
language: php php: - 7.0 - 5.6 - hhvm install: composer install --no-interaction --prefer-source script: - phpunit --coverage-text --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
Remove test suite support for PHP <5.6
Remove test suite support for PHP <5.6 The library is still 5.5 and 5.4 compatible, however it will no longer be automatically tested against these versions. In Chief 2.0 support for 5.4 and 5.5 will be explicitly dropped
YAML
mit
adamnicholson/Chief
a54de9e32d0916d4b7bd31352d65c20e84676193
.travis.yml
.travis.yml
sudo: false language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - composer test - composer sniff after_script: - if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml; fi
sudo: false language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 matrix: include: - php: 5.3 dist: precise before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - composer test - composer sniff after_script: - if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml; fi
Use `dist: precise` for php 5.3
Use `dist: precise` for php 5.3 PHP5.3 doesn't work on trusty.
YAML
mit
intraxia/jaxion
631c8feb361ccc59f5423ee7244da80f6fe49966
.travis.yml
.travis.yml
# see http://about.travis-ci.org/docs/user/languages/php/ for more hints language: php # list any PHP version you want to test against php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - nightly - hhvm matrix: allow_failures: - php: hhvm - php: nightly include: - php: 5.3 dist: precise before_script: - composer install # Script to run tests script: ./vendor/bin/phpunit
# see http://about.travis-ci.org/docs/user/languages/php/ for more hints language: php # list any PHP version you want to test against php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - nightly - hhvm matrix: allow_failures: - php: hhvm - php: nightly include: - php: 5.3 dist: precise before_script: - composer install # Script to run tests script: composer test
Use composer test in Travis build script
Use composer test in Travis build script
YAML
bsd-3-clause
vlucas/valitron
570cc0bad6a0842104ab06fe1174647ae621bd54
.travis.yml
.travis.yml
branches: only: - master - /^release-.*$/ osx_image: xcode8 language: objective-c bundler_args: --without documentation --without development --deployment --jobs=3 --retry=3 script: - [[ "$SKIP_CI" != "YES" ]] && fastlane ci_all - [[ "$UPDATE_DOCUMENTATION" == "YES" ]] && fastlane update_docs # This is a workaround for a Travis-CI bug where the log might get cut-off. # See the [Travis-CI issue #4716](https://github.com/travis-ci/travis-ci/issues/4716). - sleep 3 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - IS_MASTER_BRANCH="$([[ "$TRAVIS_BRANCH" == "master" ]] && echo -n "YES")" matrix: fast_finish: true include: # Main job; builds and runs everything. - osx_image: xcode8 # Compatibility job; makes sure the library is buildable by Xcode 7.3.1 - osx_image: xcode7.3 env: - LINT=NO - BUILD_DEMO_APP=NO # Update our documentation. Only true on a push to master build. - osx_image: xcode8 env: - SKIP_CI=YES - UPDATE_DOCUMENTATION="$IS_MASTER_BRANCH" cache: bundler notifications: email: false
branches: only: - master - /^release-.*$/ language: objective-c bundler_args: --without documentation --without development --deployment --jobs=3 --retry=3 script: - if [[ "$SKIP_CI" != "YES" ]]; then fastlane ci_all; fi - if [[ "$UPDATE_DOCUMENTATION" == "YES" ]]; then fastlane update_docs; fi # This is a workaround for a Travis-CI bug where the log might get cut-off. # See the [Travis-CI issue #4716](https://github.com/travis-ci/travis-ci/issues/4716). - sleep 3 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - IS_MASTER_BRANCH="$([[ "$TRAVIS_BRANCH" == "master" ]] && echo -n "YES")" matrix: fast_finish: true include: # Main job; builds and runs everything. - osx_image: xcode8 # Compatibility job; makes sure the library is buildable by Xcode 7.3.1 - osx_image: xcode7.3 env: LINT=NO BUILD_DEMO_APP=NO # Update our documentation. Only true on a push to master build. - osx_image: xcode8 env: SKIP_CI=YES UPDATE_DOCUMENTATION="$IS_MASTER_BRANCH" cache: bundler notifications: email: false
Fix linting issues with Travis-CI config
Fix linting issues with Travis-CI config
YAML
apache-2.0
spotify/HubFramework,spotify/HubFramework,spotify/HubFramework,spotify/HubFramework
1e4f99b4003e0b2a10589c08d362546a0511fce5
.travis.yml
.travis.yml
language: php php: - 5.6 - 7.0 script: - composer install - vendor/bin/phpunit
language: php php: - 7.0 - 7.1 script: - composer install - vendor/bin/phpunit
Drop support for 5.6 in Travis Add support for 7.1 in Travis
Drop support for 5.6 in Travis Add support for 7.1 in Travis
YAML
mit
brokencube/automatorm
97085fc897ea314e52f843093d19d473a54741b6
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - 6 - 8 - 10 env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - export JOBS=max - export prebuild_compile=true
language: node_js sudo: false node_js: - 8 - 10 - 12 env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - export JOBS=max - export prebuild_compile=true
Change Travis tests to replace Node 6 with Node 12
Change Travis tests to replace Node 6 with Node 12
YAML
mit
ssbc/secure-scuttlebutt