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
2372c06e55693292b74f5850599c43bfdb1d6f0b
.travis.yml
.travis.yml
language: php php: 7.1 sudo: false env: - APP_KEY=base64:xIqp823QoWI8aYcDVlMpLlhFDodhCIFpwh0VQe6CEtg= cache: directories: - vendor before_script: - composer self-update - composer install script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml after_script: - vendor/bin/test-reporter deploy: provider: script script: curl $ENVOYER_DEPLOYMENT_HOOK on: branch: master addons: code_climate: repo_token: $CODE_CLIMATE_TOKEN
language: php php: 7.1 sudo: false env: - APP_KEY=base64:xIqp823QoWI8aYcDVlMpLlhFDodhCIFpwh0VQe6CEtg= cache: directories: - vendor before_script: - composer install script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml after_script: - vendor/bin/test-reporter deploy: provider: script script: curl $ENVOYER_DEPLOYMENT_HOOK on: branch: master addons: code_climate: repo_token: $CODE_CLIMATE_TOKEN
Remove an unnecessary Composer self-update
Remove an unnecessary Composer self-update This is done by Travis automatically.
YAML
mit
laravelio/pastebin,laravelio/pastebin,laravelio/pastebin
2c1d29f25ed7dd5b4dbd405389cb6929456baef7
.travis.yml
.travis.yml
language: c sudo: required services: - docker install: - docker build -t ianprime0509/chip8-ci . script: - docker run --name ci -it -d ianprime0509/chip8-ci /bin/bash - docker ps -a - docker exec -it ci meson --version - docker exec -it ci mkdir build - docker exec -it ci meson -Db_sanitize=address build - docker exec -it ci ninja -C build - docker exec -it ci ninja -C build info/chip8.info - docker exec -it ci ninja -C build test
language: c sudo: required services: - docker install: - docker build -t ianprime0509/chip8-ci . script: - docker run --name ci -it -d ianprime0509/chip8-ci /bin/bash - docker ps -a - docker exec -it ci meson --version - docker exec -it ci mkdir build - docker exec -it ci meson -Db_sanitize=address build - docker exec -it ci ninja -C build - docker exec -it ci ninja -C build info/chip8.info - docker exec -it ci ninja -C build info/html - docker exec -it ci ninja -C build test - docker cp ci:build/info/html ./docs deploy: provider: pages local-dir: docs skip-cleanup: true github-token: $GITHUB_TOKEN keep-history: true on: branch: master
Set up Travis to deploy documentation to Github page
Set up Travis to deploy documentation to Github page
YAML
mit
ianprime0509/chip8,ianprime0509/chip8
478dd720e0092803096d3dfad2d2b32fe2ba2a2f
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - nightly matrix: allow_failures: php: nightly before_script: - travis_retry composer self-update - travis_retry composer update --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-clover=coverage.xml after_success: - bash <(curl -s https://codecov.io/bash)
language: php php: - 7.1 - 7.2 - nightly matrix: allow_failures: - php: nightly before_script: - travis_retry composer self-update - travis_retry composer update --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-clover=coverage.xml after_success: - bash <(curl -s https://codecov.io/bash)
Fix the allow_failures setting in Travis build
Fix the allow_failures setting in Travis build
YAML
mit
mihaeu/php-test-generator,mihaeu/php-test-generator,mihaeu/php-test-generator
65ee27e605540462d0aa36e76a14aa5744e923fd
.travis.yml
.travis.yml
sudo: required language: node_js services: - docker script: - docker build -t theconnman/jukebot . after_success: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; if [ "$TRAVIS_BRANCH" == "master" ]; then VERSION=`node -e "console.log(require('./package.json').version);"`; docker tag theconnman/jukebot theconnman/jukebot:$VERSION; docker push theconnman/jukebot:latest; docker push theconnman/jukebot:$VERSION; elif [ "$TRAVIS_BRANCH" == "dev" ]; then docker tag theconnman/jukebot theconnman/jukebot:latest-dev; docker push theconnman/jukebot:latest-dev; fi
sudo: required language: node_js node_js: - "6" services: - docker script: - docker build -t theconnman/jukebot . after_success: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; if [ "$TRAVIS_BRANCH" == "master" ]; then VERSION=`node -e "console.log(require('./package.json').version);"`; docker tag theconnman/jukebot theconnman/jukebot:$VERSION; docker push theconnman/jukebot:latest; docker push theconnman/jukebot:$VERSION; elif [ "$TRAVIS_BRANCH" == "dev" ]; then docker tag theconnman/jukebot theconnman/jukebot:latest-dev; docker push theconnman/jukebot:latest-dev; fi
Set Travis CI environment Node version
Set Travis CI environment Node version
YAML
mit
TheConnMan/jukebot,TheConnMan/jukebot,TheConnMan/jukebot
3b0b0ec7a9528bca60d6395b96036242d7276d69
.travis.yml
.travis.yml
language: c compiler: - gcc - clang notifications: recipients: - [email protected] branches: only: - master - develop env: - USE_WEBKITGTK=yes SYLPHEED_STAGE=master - USE_GTKHTML=yes SYLPHEED_STAGE=master - USE_WEBKITGTK=yes SYLPHEED_STAGE=3.5 - USE_GTKHTML=yes SYLPHEED_STAGE=3.5 - USE_WEBKITGTK=yes SYLPHEED_STAGE=3.4 - USE_GTKHTML=yes SYLPHEED_STAGE=3.4 before_script: - curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh - git submodule update --init --recursive - ./autogen.sh script: - curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/configure.sh | sh - make
language: c compiler: - gcc - clang notifications: recipients: - [email protected] branches: only: - master - develop env: - USE_WEBKITGTK=yes SYLPHEED_STAGE=master - USE_GTKHTML=yes SYLPHEED_STAGE=master - USE_WEBKITGTK=yes SYLPHEED_STAGE=3.5 - USE_GTKHTML=yes SYLPHEED_STAGE=3.5 - USE_WEBKITGTK=yes SYLPHEED_STAGE=3.4 - USE_GTKHTML=yes SYLPHEED_STAGE=3.4 before_script: - curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh - git submodule update --init --recursive - ./autogen.sh script: - curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/configure.sh | sh - make
Use --location to support redirect
Use --location to support redirect
YAML
bsd-2-clause
kenhys/sylpheed-htmlview,kenhys/sylpheed-htmlview
0c9a8d06b0ca587a9e9ca7dbbf81f2376df7e1b6
.travis.yml
.travis.yml
before_script: - "echo 'test:\n adapter: mysql2\n database: journey_test\n user: root\n encoding: utf8' >config/database.yml" - "bundle exec rake db:migrate RAILS_ENV=test" rvm: - "1.9.3"
rvm: - "2.0.0-p195"
Move Travis to 2.0 and sqlite3
Move Travis to 2.0 and sqlite3
YAML
agpl-3.0
nbudin/journey,nbudin/journey,nbudin/journey
65b2768b750e36a3a2a13ef943c008e2954042d0
.travis.yml
.travis.yml
branches: only: - master language: ruby rvm: - 2.3 - 2.4 - 2.5 - jruby-9.1.17.0 gemfile: - test/gemfiles/Gemfile-Rails-4-2 - test/gemfiles/Gemfile-Rails-5-0 - test/gemfiles/Gemfile-Rails-5-1 - Gemfile before_install: - rm "${BUNDLE_GEMFILE}.lock" matrix: fast_finish: true allow_failures: - rvm: jruby-9.1.17.0
branches: only: - master language: ruby rvm: - 2.3 - 2.4 - 2.5 - jruby-9.1.17.0 gemfile: - test/gemfiles/Gemfile-Rails-4-2 - test/gemfiles/Gemfile-Rails-5-0 - test/gemfiles/Gemfile-Rails-5-1 - Gemfile before_install: - rm "${BUNDLE_GEMFILE}.lock" matrix: fast_finish: true
Remove jruby from allow_failures as its passing
Remove jruby from allow_failures as its passing
YAML
mit
josevalim/inherited_resources,josevalim/inherited_resources,activeadmin/inherited_resources,activeadmin/inherited_resources,josevalim/inherited_resources,activeadmin/inherited_resources
d51b95cfcb95cf3d035ec9dcea7db610c54be13d
.travis.yml
.travis.yml
language: node_js sudo: false before_install: - npm install -g npm node_js: - "0.10" - "0.12" - "4" - "5" - "6" branches: only: - master - /^maint\/.+/ - /v\d+\.\d+\.\d+/ cache: directories: - node_modules deploy: provider: npm skip_cleanup: true email: "[email protected]" api_key: secure: pSwLyKvYC3sxv0qxvbZy2W4ENXeE7/7emnnFJ8BMEYBTel/g+An0fN9lbtZSPoOaCEUVWEa2DzCHvU0jZ+qiOB1iZ+Swav9Ka0aOW54mtiig7oQY3GZpNvMkBhMPmkyIloECjFKNpxnZyi/ZHUjJLhu04o36xcAWASowfs3Mdwg= on: tags: true repo: pekim/tedious node: "0.10"
language: node_js sudo: false before_install: - npm install -g npm node_js: - "0.10" - "0.12" - "4" - "5" - "6" branches: only: - master - /^maint\/.+/ - /v\d+\.\d+\.\d+/ cache: directories: - node_modules deploy: provider: npm skip_cleanup: true email: "[email protected]" api_key: secure: pSwLyKvYC3sxv0qxvbZy2W4ENXeE7/7emnnFJ8BMEYBTel/g+An0fN9lbtZSPoOaCEUVWEa2DzCHvU0jZ+qiOB1iZ+Swav9Ka0aOW54mtiig7oQY3GZpNvMkBhMPmkyIloECjFKNpxnZyi/ZHUjJLhu04o36xcAWASowfs3Mdwg= on: tags: true repo: tediousjs/tedious node: "0.10"
Fix repo name in configuration.
Travis: Fix repo name in configuration.
YAML
mit
tediousjs/tedious,tediousjs/tedious,pekim/tedious
c3ed9ff32228e2b95fc2842cb8477652ba629bf5
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 before_install: - "echo $JAVA_OPTS" - "export JAVA_OPTS=-Xmx1024m" script: - mvn install -B -V - mvn javadoc:jar - mvn javadoc:test-aggregate notifications: irc: "irc.freenode.org#fcrepo" email: - [email protected]
language: java sudo: false jdk: - oraclejdk8 before_install: - "echo $JAVA_OPTS" - "export JAVA_OPTS=-Xmx1024m" script: - mvn install -B -V - mvn javadoc:jar - mvn javadoc:test-aggregate notifications: irc: "irc.freenode.org#fcrepo" email: - [email protected]
Address FCREPO-1659 -- Migration to TravisCI container-based infrastructure.
Address FCREPO-1659 -- Migration to TravisCI container-based infrastructure.
YAML
apache-2.0
bseeger/fcrepo-camel-toolbox,whikloj/fcrepo-camel-toolbox,yinlinchen/fcrepo-camel-toolbox,bseeger/fcrepo-camel-toolbox,daniel-dgi/fcrepo-camel-toolbox,mohideen/fcrepo-camel-toolbox,yinlinchen/fcrepo-camel-toolbox,fcrepo4-exts/fcrepo-camel-toolbox,whikloj/fcrepo-camel-toolbox,fcrepo4-labs/fcrepo-camel-toolbox,mohideen/fcrepo-camel-toolbox,daniel-dgi/fcrepo-camel-toolbox,fcrepo4-exts/fcrepo-camel-toolbox,fcrepo4-labs/fcrepo-camel-toolbox
370a8cb6c81504f264530f79cf5444667f1c1f7e
.travis.yml
.travis.yml
language: go os: - linux - osx go: - 1.8.x - 1.9.x - 1.10.x - master env: global: - DEP_VERSION=0.4.1 before_install: # Download the dep binary to the bin folder in $GOPATH - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -sL https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then mkdir $GOPATH/bin; curl -sL https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-darwin-amd64 -o $GOPATH/bin/dep; fi - chmod +x $GOPATH/bin/dep; notifications: webhooks: urls: - https://webhooks.gitter.im/e/860de7e374c89032863a on_success: change on_failure: always on_start: never email: on_success: change on_failure: always script: make get-deps debug test
language: go os: - linux - osx go: - 1.8.x - 1.9.x - 1.10.x - tip env: global: - DEP_VERSION=0.4.1 before_install: # Download the dep binary to the bin folder in $GOPATH - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -sL https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then mkdir $GOPATH/bin; curl -sL https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-darwin-amd64 -o $GOPATH/bin/dep; fi - chmod +x $GOPATH/bin/dep; notifications: webhooks: urls: - https://webhooks.gitter.im/e/860de7e374c89032863a on_success: change on_failure: always on_start: never email: on_success: change on_failure: always script: make get-deps debug test
Switch from Go tip to Go master on TravisCI
Switch from Go tip to Go master on TravisCI
YAML
agpl-3.0
muesli/beehive,muesli/beehive
4848f2a2df7db68f0b6f9dd47a65610b447ddd86
.travis.yml
.travis.yml
language: node_js node_js: - node script: - npm run coverage:upload
language: node_js node_js: - node script: - 'npm run coverage:upload' dist: xenial services: - xvfb
Migrate to use Xenial in Travis
Migrate to use Xenial in Travis
YAML
mit
stealjs/steal-electron,stealjs/steal-electron
32f239f117947bae95ecfc5274345df8d31d1b52
.travis.yml
.travis.yml
os: - linux - osx language: cpp compiler: - gcc - clang before_script: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq > /dev/null - sudo apt-get install -qq gcc-4.8 g++-4.8 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 - sudo apt-get install -y -q cmake libasound2-dev - cd lib/cpp* - chmod +x ./configure - ./configure - cd ../../ - cd lib/opus* - chmod +x ./configure - ./configure - cd ../../ - mkdir build - cd build - cmake ../ script: make after_script: - pwd - chmod +x test/Tests - sh test/Tests
os: - linux - osx language: cpp compiler: - gcc - clang before_script: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq > /dev/null - sudo apt-get install -qq gcc-4.8 g++-4.8 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 - sudo apt-get install -y -q cmake libasound2-dev - cd lib/cpp* - chmod +x ./configure - ./configure - cd ../../ - cd lib/opus* - chmod +x ./autogen.sh - chmod +x ./configure - ./autogen.sh - ./configure - cd ../../ - mkdir build - cd build - cmake ../ script: make after_script: - pwd - chmod +x test/Tests - sh test/Tests
Fix for opus with Travis-CI
Fix for opus with Travis-CI
YAML
mit
Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,doe300/OHMComm,doe300/OHMComm
eb835d3099ddefeb5aab903b83748ccca8d8eeb5
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode gemfile: - gemfiles/rails3.1.gemfile - gemfiles/rails3.2.gemfile - gemfiles/rails4.0.gemfile notifications: email: false campfire: on_success: change on_failure: always rooms: - secure: "gxEt3SeVn1kup6PfB6hiQu6eWsefmMEdd8U1qPSS6vlRjsM7Xy2IrXdz9gdl\n0nrrRgESvOxT3sqMh4/opH6M1kbtCyl3M0yvjF2QUtjWQ+4BStJGhNyXlDTp\nNAas19fuEUPBNxNqoy7aTVBiFpQRs0NisEZTS3+N3eA2tz757Qk="
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 - jruby-19mode gemfile: - gemfiles/rails3.1.gemfile - gemfiles/rails3.2.gemfile - gemfiles/rails4.0.gemfile matrix: exclude: - rvm: 1.8.7 gemfile: gemfiles/rails4.0.gemfile notifications: email: false campfire: on_success: change on_failure: always rooms: - secure: "gxEt3SeVn1kup6PfB6hiQu6eWsefmMEdd8U1qPSS6vlRjsM7Xy2IrXdz9gdl\n0nrrRgESvOxT3sqMh4/opH6M1kbtCyl3M0yvjF2QUtjWQ+4BStJGhNyXlDTp\nNAas19fuEUPBNxNqoy7aTVBiFpQRs0NisEZTS3+N3eA2tz757Qk="
Add Ruby 1.8.7 to Travis testing.
Add Ruby 1.8.7 to Travis testing.
YAML
mit
codeschool/rapporteur,envylabs/rapporteur,envylabs/rapporteur
6ea677d1769db495ba789ea563885e9ee13b55c0
.travis.yml
.travis.yml
dist: trusty language: node_js node_js: "7.9.0" addons: chrome: stable branches: only: - master before_install: - cd ng-app install: - npm install -g @angular/cli - npm install script: - ng test --watch false cache: directories: ng-app/node_modules notifications: email: on_failure: change on_success: change
dist: trusty language: node_js node_js: "8.5.0" addons: chrome: stable branches: only: - master before_install: - cd ng-app install: - npm install -g @angular/cli - npm install script: - ng test --watch false cache: directories: ng-app/node_modules notifications: email: on_failure: change on_success: change
Migrate to node 8.5.0 on Travis.
Migrate to node 8.5.0 on Travis.
YAML
mit
azasypkin/frunze,azasypkin/frunze,azasypkin/frunze,azasypkin/frunze
af4f3d4b1299307e8747591f48c2492f083b3f78
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler script: ./script/ci before_install: - rvm @global do gem uninstall bundler -a -x - rvm @global do gem install bundler -v 1.13.7 rvm: - 2.3.4 - 2.4.2 - ruby-head - jruby-9.1.13.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head notifications: webhooks: urls: - https://webhooks.gitter.im/e/fde2367248d53de4fe70 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always
language: ruby sudo: false cache: bundler script: ./script/ci rvm: - 2.3.5 - 2.4.2 - ruby-head - jruby-9.1.13.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head notifications: webhooks: urls: - https://webhooks.gitter.im/e/fde2367248d53de4fe70 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always
Remove hack to install newest bundler for Travis CI
Remove hack to install newest bundler for Travis CI
YAML
mit
lotus/validations,hanami/validations,hanami/validations
91e391ce8f2b51531c3524c52ae42dcadf886b85
.travis.yml
.travis.yml
language: php php: - '5.6' - '7.0' install: composer install script: phpunit --bootstrap test/bootstrap.php --configuration test/configuration.xml --coverage-clover=coverage.xml test before_install: - pip install --user codecov after_success: - codecov
language: php php: - '5.6' - '7.0' install: composer install script: phpunit --bootstrap test/bootstrap.php --configuration test/configuration.xml --coverage-clover=coverage.xml test before_install: - pip install --user codecov after_success: - codecov notifications: email: false
Disable Travis CI email notifications for now
Disable Travis CI email notifications for now
YAML
mit
broeser/wellid,broeser/wellid
44777d0f147f5e25d6ff81b7a71ec76524c6d947
.travis.yml
.travis.yml
sudo: false language: python python: - "3.3" - "3.4" - "3.5" - "3.6" install: pip install tox-travis coveralls script: tox after_success: coveralls branches: only: - develop - master deploy: provider: pypi user: $PYPI_USER password: $PYPI_PASSWORD distributions: "sdist bdist_wheel" on: branch: master python: 3.6
sudo: false language: python python: - "3.3" - "3.4" - "3.5" - "3.6" install: pip install tox-travis coveralls script: tox after_success: coveralls branches: only: - develop - master deploy: - provider: pypi user: $PYPI_USER password: $PYPI_PASSWORD distributions: "bdist_wheel" on: branch: master python: 3.3 - provider: pypi user: $PYPI_USER password: $PYPI_PASSWORD distributions: "sdist bdist_wheel" on: branch: master python: 3.6
Add multiple python version deployment on pypi
Add multiple python version deployment on pypi
YAML
bsd-3-clause
aranega/pyecore,pyecore/pyecore
b0295e8a51ccb602f3427e3d9478eb20d7b885fa
.travis.yml
.travis.yml
rvm: - 1.9.2 - 1.9.3 - 2.0.0 - rbx-19mode - jruby-19mode
rvm: - 1.9.2 - 1.9.3 - 2.0.0 - rbx-2 - jruby-19mode
Use rubinius 2 for testing on Travis
Use rubinius 2 for testing on Travis
YAML
mit
fgbreel/spotify,Burgestrand/spotify,Burgestrand/spotify,fgbreel/spotify
348ecc7ab51c5ded5e363dab2723032810817603
.travis.yml
.travis.yml
language: go sudo: false go: - "1.10" before_install: - go get -v github.com/mattn/goveralls install: - make get-deps script: - make travis-ci - $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out notifications: email: false
language: go sudo: false go: - "1.10.1" before_install: - go get -v github.com/mattn/goveralls install: - make get-deps script: - make travis-ci - $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out notifications: email: false
Update Go 1.10 to the patch version 1.10.1
CI: Update Go 1.10 to the patch version 1.10.1 Update the Go version to use in the CI for using the last and first patch version of the minor version 1.10.
YAML
mit
cycloidio/raws
5dac55a75e8b717e25d37e06a6ee7491254bb5ac
.travis.yml
.travis.yml
language: python python: - '2.6' - '2.7' branches: only: - develop before_install: - sudo apt-get update - sudo apt-get install swig libssl-dev libzmq-dev install: pip install -r requirements.txt --use-mirrors script: python setup.py test notifications: irc: channels: "irc.freenode.org#salt" on_success: change on_failure: change
language: python python: - '2.6' - '2.7' branches: only: - develop before_install: - sudo apt-get update && sudo apt-get install swig - pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz - "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi" install: pip install -r requirements.txt --use-mirrors script: python setup.py test notifications: irc: channels: "irc.freenode.org#salt" on_success: change on_failure: change
Use Debian's patched M2Crypto on Travis CI.
Use Debian's patched M2Crypto on Travis CI. This enables CI builds on http://travis-ci.org/. Please see also: http://travis-ci.org/#!/saltstak/salt. Travis uses 32-bit Ubuntu Linux 11.10 (server edition) plus some additional repositories, like RabbitMQ's own repo which provides the zeromq package. This already contains the zeromq development headers and libraries necessary to build Python extenstions in C. FYI - This zeromq packake doesn't play nicely with the standard Debian/Ubuntu zeromq packages like libzmq-dev. Also included are libssl-dev and python-dev (but swig is missing). See also: http://about.travis-ci.org/docs/user/ci-environment/ One complication is that M2Crypto requires SSL Version 2 support in libssl. Debian and Ubuntu have disabled Version 2 support in libssl since Version 2 is know to be insecure. We use our own source tarball of M2Crypto that has been patched with the Debian/Ubuntu patches that remove SSL Version 2. Please see: http://packages.ubuntu.com/oneiric/python-m2crypto. Salt also requires unittest2 which must be installed when using Python 2.6. unittest2 comes included with Python 2.7. Finally: http://www.youtube.com/watch?v=pele5vptVgc
YAML
apache-2.0
saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt
2fbeeb8e439afce70a967f3ceb222f9e39fb7dc1
.travis.yml
.travis.yml
os: linux dist: trusty sudo: false group: edge language: python python: - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 - &mainstream_python 3.6 install: - travis_retry pip install --pre -e .[testing,webassets] script: - nosetests -v --with-coverage --cover-package=dukpy --cover-erase after_success: - coveralls stages: - test - name: deploy if: tag IS present jobs: include: - stage: deploy python: *mainstream_python install: skip script: skip deploy: provider: pypi on: tags: true all_branches: true user: amol- # just source dist, because binary wheel requires extra work distributions: sdist password: secure: YOUR_ENCRYPTED_PASSWORD_HERE
os: linux dist: trusty sudo: false group: edge language: python python: - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 - &mainstream_python 3.6 - nightly install: - travis_retry pip install --pre -e .[testing,webassets] script: - nosetests -v --with-coverage --cover-package=dukpy --cover-erase after_success: - coveralls stages: - test - name: deploy if: tag IS present jobs: allow_failures: - python: nightly include: - stage: deploy python: *mainstream_python install: skip script: skip deploy: provider: pypi on: tags: true all_branches: true user: amol- # just source dist, because binary wheel requires extra work distributions: sdist password: secure: YOUR_ENCRYPTED_PASSWORD_HERE
Test dukpy against nightly allowing it to fail
Test dukpy against nightly allowing it to fail
YAML
mit
amol-/dukpy,amol-/dukpy,amol-/dukpy
e6d3b1e0393ebf9031dea6c44b75f845aa784b4b
.travis.yml
.travis.yml
language: "python" python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "pypy" - "pypy3" install: pip install coveralls script: coverage run --source=geojson setup.py test after_success: coveralls
language: "python" python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "pypy" - "pypy3" install: pip install flake8 pip install coveralls before_script: flake8 . script: coverage run --source=geojson setup.py test after_success: coveralls
Add Flake8 to TravisCI script
Add Flake8 to TravisCI script This adds the pip install and before_script command for flake8 to run. This is part 2 of 2 for #44 Closes #44
YAML
bsd-3-clause
frewsxcv/python-geojson
6b414c9c52ab3fc2d26944265710975cb60979df
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - rbx-2.2.1 - jruby-19mode gemfile: - gemfiles/rails3.2.gemfile - gemfiles/rails4.0.gemfile
language: ruby rvm: - 1.9.3 - 2.0.0 #- rbx-2.2.1 # broken. Gives no such file to load -- singleton (LoadError) - jruby-19mode gemfile: - gemfiles/rails3.2.gemfile - gemfiles/rails4.0.gemfile
Remove Rubinius testing. It's broken
Remove Rubinius testing. It's broken
YAML
mit
techstars/mailboxer,cantonyselim/mailboxer,roomaroom/mailboxer,lacco/mailboxer,jason-wang-0401/mailboxer,joshtate04/mailboxer,lacco/mailboxer,Groovej/mailboxer,jarkadlec/mailboxer,Design-Collective/mailboxer,joshtate04/mailboxer,jarkadlec/mailboxer,mailboxer/mailboxer,netbrick/mailboxer,cantonyselim/mailboxer,shekibobo/mailboxer,sai43/mailboxer,jason-wang-0401/mailboxer,Design-Collective/mailboxer,chepri/mailboxer,chepri/mailboxer,afalone/mailboxer,modsaid/mailboxer,untitledstartup/mailboxer,t27duck/mailboxer,mattherick/mailboxer,WeConnect/mailboxer,roomaroom/mailboxer,mattherick/mailboxer,Groovej/mailboxer,modsaid/mailboxer,sai43/mailboxer,div/mailboxer,mailboxer/mailboxer,shekibobo/mailboxer,netbrick/mailboxer,t27duck/mailboxer,untitledstartup/mailboxer
a18d9f3aee1ada095dd08faf90772a6e0c9977b7
.travis.yml
.travis.yml
env: - ZMQ="git://github.com/zeromq/zeromq2-x.git" - ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.1.0" - ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.2.0" - ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.2.1" - ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.2.2" before_install: - sudo apt-get install uuid-dev - git clone --depth 1 $ZMQ zmqlib - cd zmqlib - ./autogen.sh - ./configure - make - sudo make install - sudo /sbin/ldconfig - cd .. language: node_js node_js: - "0.8" - "0.10" - "0.11"
env: - ZMQ="git://github.com/zeromq/zeromq2-x.git" - ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.1.0" - ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.2.4" - ZMQ="git://github.com/zeromq/zeromq4-x.git -b v4.0.3" before_install: - sudo apt-get install uuid-dev - git clone --depth 1 $ZMQ zmqlib - cd zmqlib - ./autogen.sh - ./configure - make - sudo make install - sudo /sbin/ldconfig - cd .. language: node_js node_js: - "0.8" - "0.10" - "0.11"
Test against last stable version of each minor version, including 4.0
Test against last stable version of each minor version, including 4.0
YAML
mit
lablup/zeromq.node,rgbkrk/zmq-prebuilt,reqshark/zeromq.node,ronkorving/zeromq.node,marchon/zeromq.node,muut/zeromq.node,lgeiger/zmq-prebuilt,GrabCAD/zeromq.node,kkoopa/zeromq.node,muut/zeromq.node,reqshark/zeromq.node,lgeiger/zmq-prebuilt,panuhorsmalahti/zeromq.node,lablup/zeromq.node,GrabCAD/zeromq.node,rydn/zeromq.node,hhamilto/zeromq.node,ronkorving/zeromq.node,reunanen/zeromq.node,panuhorsmalahti/zeromq.node,JustinTulloss/zeromq.node,muut/zeromq.node,tempbottle/zeromq.node,rgbkrk/zmq-prebuilt,panuhorsmalahti/zeromq.node,reunanen/zeromq.node,reqshark/zeromq.node,rydn/zeromq.node,muut/zeromq.node,tempbottle/zeromq.node,kkoopa/zeromq.node,tempbottle/zeromq.node,ronkorving/node-zmq,rgbkrk/zmq-prebuilt,ValYouW/zeromq.node,lgeiger/zmq-prebuilt,marchon/zeromq.node,interpretor/zeromq.js,marchon/zeromq.node,interpretor/zeromq.js,tempbottle/zeromq.node,ValYouW/zeromq.node,rgbkrk/zmq-prebuilt,ronkorving/node-zmq,panuhorsmalahti/zeromq.node,hhamilto/zeromq.node,hhamilto/zeromq.node,ValYouW/zeromq.node,GrabCAD/zeromq.node,interpretor/zeromq.js,lgeiger/zmq-prebuilt,ronkorving/node-zmq,ValYouW/zeromq.node,ronkorving/zeromq.node,JustinTulloss/zeromq.node,lgeiger/zmq-prebuilt,ronkorving/zeromq.node,rydn/zeromq.node,rgbkrk/zmq-prebuilt,GrabCAD/zeromq.node,hhamilto/zeromq.node,JustinTulloss/zeromq.node,rydn/zeromq.node,lablup/zeromq.node,marchon/zeromq.node,ronkorving/node-zmq,reunanen/zeromq.node,interpretor/zeromq.js,interpretor/zeromq.js,kkoopa/zeromq.node,JustinTulloss/zeromq.node,reqshark/zeromq.node,lablup/zeromq.node,kkoopa/zeromq.node,reunanen/zeromq.node
990ab1ad309d65d95097559ba4c95ea3ee34a4f0
.travis.yml
.travis.yml
language: python sudo: required dist: trusty addons: postgresql: "9.6" apt: packages: - python3-sphinx cache: - apt - directories: - "$HOME/.cache/pip" - "$HOME/.pyenv" python: - 3.4 virtualenv: system_site_packages: true script: - pep8 --ignore=E501 pyramid_jsonapi - python test_project/setup.py test - travis-sphinx build install: - pip install pep8 - pip install travis-sphinx after: - travis-sphinx deploy
language: python sudo: required dist: trusty addons: postgresql: "9.6" apt: packages: - python3-sphinx cache: - apt - directories: - "$HOME/.cache/pip" - "$HOME/.pyenv" python: - 3.4 virtualenv: system_site_packages: true script: - pep8 --ignore=E501 pyramid_jsonapi - python test_project/setup.py test - travis-sphinx build install: - pip install pep8 - pip install travis-sphinx - python setup.py install after: - travis-sphinx deploy
Install package to satisfy other tool deps.
Install package to satisfy other tool deps.
YAML
agpl-3.0
colinhiggs/pyramid-jsonapi,colinhiggs/pyramid-jsonapi
6ec1176d639837d28fa7dfe20f5d5f2cd8551aa1
.travis.yml
.travis.yml
language: csharp mono: latest dotnet: 2.0.0 solution: QuickbooksSync.sln install: - dotnet restore script: - dotnet build -c Release --no-restore - dotnet test -c Release --no-build
language: csharp mono: latest dotnet: 2.0.0 solution: QuickbooksSync.sln install: - dotnet restore script: - dotnet build -c Release --no-restore ./src/QbXml/QbXml.csproj - dotnet build -c Release --no-restore ./test/QbXml.Tests/QbXml.Tests.csproj - xbuild /p:Configuration=Release ./src/WebConnector/WebConnector.csproj - xbuild /p:Configuration=Release ./test/WebConnector.Tests/WebConnector.Tests.csproj - xbuild /p:Configuration=Release ./src/XsdGenerator/XsdGenerator.csproj - dotnet test -c Release --no-build
Update build script to build netstandard/core libs with dotnet, and net471 libs with xbuild
Update build script to build netstandard/core libs with dotnet, and net471 libs with xbuild
YAML
mit
jsgoupil/quickbooks-sync,jsgoupil/quickbooks-sync
fa3b3e32ada70fb69500d0684abb392e3b99aa16
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "iojs"
language: node_js node_js: - '0.8' - '0.10' - '0.12' - 'iojs' before_install: - npm install -g npm@latest
Test on v0.8, but install new npm first
Test on v0.8, but install new npm first Otherwise it fails miserably.
YAML
mit
substack/tap-parser
f5078dc71c7668745a3cb65a42545557f901cf9c
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 before_install: - brew update - brew install carthage script: xctool -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor build test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES after_success: - bash <(curl -s https://codecov.io/bash) before_deploy: - carthage build --no-skip-current - carthage archive YTVimeoExtractor skip_cleanup: true on: repo: repo/repo tags: true
language: objective-c osx_image: xcode8.1 before_install: - brew update - brew install carthage script: xctool -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor build test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES after_success: - bash <(curl -s https://codecov.io/bash) before_deploy: - carthage build --no-skip-current - carthage archive YTVimeoExtractor skip_cleanup: true on: repo: repo/repo tags: true
Update Xcode image to v8.1
Update Xcode image to v8.1
YAML
mit
lilfaf/YTVimeoExtractor
1205d65da9879b05997bd8a435a53e90f938efb0
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci before_install: - npm install - npm install -g istanbul coveralls
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci install: - yarn install --no-lockfile - yarn global add istanbul coveralls
Install using Yarn at Travis CI.
Install using Yarn at Travis CI.
YAML
mit
bigeasy/signal,bigeasy/vestibule,bigeasy/vestibule
b18c21cfe51d5092532507e622b4687063176203
.travis.yml
.travis.yml
language: c env: - SMVERSION=1.5 - SMVERSION=1.6 - SMVERSION=1.7 before_install: - sudo apt-get update - sudo apt-get install gcc-multilib - sudo apt-get install lynx before_script: - SMPATTERN="http:.*sourcemod-.*-linux.*" - SMURL="http://www.sourcemod.net/smdrop/$SMVERSION/" - SMPACKAGE=`lynx -dump "$SMURL" | egrep -o "$SMPATTERN" | tail -1` - wget $SMPACKAGE - tar -xzf $(basename "$SMPACKAGE") - cd addons/sourcemod/scripting/ - chmod +x spcomp script: - ./spcomp jetpack_plus.sp - ./spcomp jetpack_bling.sp after_script: - ls *.smx notifications: email: false
language: c env: - SMVERSION=1.5 - SMVERSION=1.6 before_install: - sudo apt-get update - sudo apt-get install gcc-multilib - sudo apt-get install lynx before_script: - SMPATTERN="http:.*sourcemod-.*-linux.*" - SMURL="http://www.sourcemod.net/smdrop/$SMVERSION/" - SMPACKAGE=`lynx -dump "$SMURL" | egrep -o "$SMPATTERN" | tail -1` - wget $SMPACKAGE - tar -xzf $(basename "$SMPACKAGE") - cd addons/sourcemod/scripting/ - chmod +x spcomp script: - ./spcomp jetpack_plus.sp - ./spcomp jetpack_bling.sp after_script: - ls *.smx notifications: email: false
Remove version 1.7 support for now
Remove version 1.7 support for now
YAML
mit
CrimsonTautology/sm_jetpack_plus
ea96221a1852c4ca8dda13c4eabd50b939c3533d
.travis.yml
.travis.yml
dist: bionic notifications: email: false addons: apt: packages: - libpq-dev - pkg-config services: - docker language: rust before_install: - cargo fmt --all -- --check install: - cargo install diesel_cli \ --no-default-features --features postgres -Z install-upgrade - curl https://cli-assets.heroku.com/install-ubuntu.sh | sh before_script: - heroku container:login - heroku container:pull --app=rfcbot-rs web script: | # first build the container and upload intermediate stages for later retries heroku container:push --app=rfcbot-rs web # spin up our integration test environment docker-compose up -d ./setup-db.sh # run our tests, if they fail print the logs from the target container docker-compose exec -e RUST_BACKTRACE=1 web \ cargo test --release --locked docker-compose logs web before_deploy: - DATABASE_URL=$(heroku config:get DATABASE_URL --app=rfcbot-rs) \ diesel migration run deploy: provider: script script: heroku container:release --app=rfcbot-rs before_cache: # don't cache the cargo registry - rm -rf "$HOME/.cargo/registry" cache: directories: - "$HOME/.cargo"
dist: bionic notifications: email: false addons: apt: packages: - libpq-dev - pkg-config services: - docker language: rust before_install: - cargo fmt --all -- --check install: - cargo install diesel_cli \ --no-default-features --features postgres -Z install-upgrade - curl https://cli-assets.heroku.com/install-ubuntu.sh | sh before_script: - heroku container:login - heroku container:pull --app=rfcbot-rs web script: | # first build the container and upload intermediate stages for later retries heroku container:push --app=rfcbot-rs web # spin up our integration test environment docker-compose up -d ./setup-db.sh # run our tests, if they fail print the logs from the target container docker-compose exec -e RUST_BACKTRACE=1 web \ cargo test --release --locked after_failure: docker-compose logs web before_deploy: - DATABASE_URL=$(heroku config:get DATABASE_URL --app=rfcbot-rs) \ diesel migration run deploy: provider: script script: heroku container:release --app=rfcbot-rs before_cache: # don't cache the cargo registry - rm -rf "$HOME/.cargo/registry" cache: directories: - "$HOME/.cargo"
Print docker-compose logs only on failure.
Print docker-compose logs only on failure.
YAML
apache-2.0
dikaiosune/rust-dashboard,dikaiosune/rust-dashboard,dikaiosune/rust-dashboard
d95699035388eb0ffa39641e27cb940752445487
.travis.yml
.travis.yml
language: php # php compatibility php: - 5.6 - 7.0 - 7.1 - hhvm matrix: allow_failures: - php: hhvm before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-dist - travis_retry composer require --no-interaction --prefer-dist --dev scrutinizer/ocular script: - mkdir -p build/tests/ - vendor/bin/phpcs -sp src/ tests/ - vendor/bin/php-cs-fixer fix --using-cache=no --dry-run --verbose - vendor/bin/phpunit --coverage-text --coverage-clover=build/tests/coverage.xml after_script: - if [[ $TRAVIS_PHP_VERSION == '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover build/tests/coverage.xml; fi notifications: email: false
language: php # php compatibility php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 - hhvm matrix: allow_failures: - php: hhvm before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-dist - travis_retry composer require --no-interaction --prefer-dist --dev scrutinizer/ocular script: - mkdir -p build/tests/ - vendor/bin/phpcs -sp src/ tests/ - vendor/bin/php-cs-fixer fix --using-cache=no --dry-run --verbose - vendor/bin/phpunit --coverage-text --coverage-clover=build/tests/coverage.xml after_script: - if [[ $TRAVIS_PHP_VERSION == '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover build/tests/coverage.xml; fi notifications: email: false
Add PHP 7.2, 7.3 & 7.4
Add PHP 7.2, 7.3 & 7.4
YAML
mit
eclipxe13/XLSXExporter
06a95da3bf877e639544d77eb2f8527ad1753661
.travis.yml
.travis.yml
language: objective-c osx_image: xcode10.2 xcode_sdk: iphonesimulator10.0 xcode_project: Validator.xcodeproj xcode_scheme: Validator before_install: - gem install cocoapods -v '0.32.1' - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - xcodebuild clean build test -project Validator.xcodeproj -scheme Validator -sdk iphonesimulator -destination "platform=iOS Simulator,OS=10.0,name=iPhone 6" -enableCodeCoverage YES CODE_SIGNING_REQUIRED=NO | xcpretty - pod lib lint after_success: - bash <(curl -s https://codecov.io/bash) notifications: webhooks: urls: - https://webhooks.gitter.im/e/4cfa929bd227586305cc on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always
language: objective-c osx_image: xcode10.1 xcode_sdk: iphonesimulator10.0 xcode_project: Validator.xcodeproj xcode_scheme: Validator before_install: - gem install cocoapods -v '0.32.1' - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - xcodebuild clean build test -project Validator.xcodeproj -scheme Validator -sdk iphonesimulator -destination "platform=iOS Simulator,OS=10.0,name=iPhone 6" -enableCodeCoverage YES CODE_SIGNING_REQUIRED=NO | xcpretty - pod lib lint after_success: - bash <(curl -s https://codecov.io/bash) notifications: webhooks: urls: - https://webhooks.gitter.im/e/4cfa929bd227586305cc on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always
Revert "Update osx_image to xCode10.2.-"
Revert "Update osx_image to xCode10.2.-" This reverts commit 0f6e19f28e857854a885570b319a19025c430c91.
YAML
mit
jpotts18/SwiftValidator,SwiftValidatorCommunity/SwiftValidator,jpotts18/SwiftValidator,SwiftValidatorCommunity/SwiftValidator
b50e5ab8a0f10578e77f6cf648c9fa36f2c2fd7a
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 1.9.3 - 2.0.0-p648 - 2.1.8 - 2.2.4 - 2.3.0
sudo: false language: ruby rvm: - 2.1.10 - 2.2.6 - 2.3.3
Update Travis Ruby version matrix with stable Rubies
Update Travis Ruby version matrix with stable Rubies - Ruby 2.0.0-p648 is EOL'd. - 1.9.3 is EOL'd.
YAML
mit
interagent/heroics,interagent/heroics
71e32fc66b0369d9d084008e76f44db04dfdced8
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.11" - "0.12" - "iojs" before_script: - npm install
language: node_js node_js: - "0.10" - "0.11" - "0.12" before_script: - npm install
Drop io.js from Travis task list
Drop io.js from Travis task list
YAML
mit
koistya/react-lazy,Merri/react-lazy,koistya/react-lazy
4e0ca0e8dfd92f41e0a006984a7c7d3bddcde2a9
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install -r dev-requirements.txt - python setup.py develop script: python runtests.py
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install --upgrade pip setuptools - pip install -r dev-requirements.txt - pip install -e . script: python runtests.py
Make sure pip and setuptools are up to date on Travis
Make sure pip and setuptools are up to date on Travis
YAML
mit
torfuspolymorphus/service,torfsen/service
8583e3a01b27d2f01347d3f4f7929d10e3c8b1f8
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "pypy" install: # Use mirrors to not avoid burdening PyPI - pip install -r requirements.txt # Coveralls 4.0 doesn't support Python 3.2 - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi # flake8 no longer supports 2.6, this is a temporary fix - if [ "$TRAVIS_PYTHON_VERSION" != "2.6" ]; then travis_retry pip install flake8; fi before_script: - if [ "$TRAVIS_PYTHON_VERSION" != "2.6" ]; then travis_retry flake8 --ignore=F401 .; fi - pep257 --ignore=D102,D103,D211,D400 . script: - coverage run --source=progress -m py.test after_success: - coveralls branches: only: - master - prop_exts
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "pypy" install: # Use mirrors to not avoid burdening PyPI - pip install -r requirements.txt # Coveralls 4.0 doesn't support Python 3.2 - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi # flake8 no longer supports 2.6, this is a temporary fix - if [ "$TRAVIS_PYTHON_VERSION" != "2.6" ]; then travis_retry pip install flake8; fi before_script: - if [ "$TRAVIS_PYTHON_VERSION" != "2.6" ]; then travis_retry flake8 --ignore=F401 .; fi - pep257 --ignore=D102,D103,D211,D400 . script: - coverage --version - coverage run --source=progress -m py.test after_success: - coveralls branches: only: - master - prop_exts
Print coverage version to ensure correct version with python 3.2
Print coverage version to ensure correct version with python 3.2
YAML
mit
MisanthropicBit/progress
254e5a4b33ee1ad83afe8cca7b210582c1ad2e06
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ree - rbx - jruby matrix: allow_failures: - rvm: rbx-2.2.10 notifications: recipients: - [email protected] irc: "irc.freenode.org#guard"
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ree - rbx - jruby matrix: fast_finish: true allow_failures: - rvm: rbx notifications: recipients: - [email protected] irc: "irc.freenode.org#guard"
Allow build to finish if rbx isn't finished
Allow build to finish if rbx isn't finished
YAML
mit
guard/guard-spork
77defe5f91bb42e8c827d88491c7b4e0c9f2690f
.travis.yml
.travis.yml
--- dist: xenial sudo: false language: ruby if: "((tag =~ ^v) AND (branch = master)) OR type = pull_request" cache: directories: - "$HOME/.berkshelf" addons: apt: sources: - chef-stable-trusty packages: - chefdk before_install: - chef --version - eval "$(chef shell-init bash)" install: true jobs: include: - stage: verify script: chef exec delivery local verify - stage: acceptance script: chef exec delivery local acceptance # TODO: Add the Chef Server key for trubot (~/.chef/trubot.pem) # - stage: Publish to Supermarket # script: echo "Uploading to Supermarket..." # deploy: # provider: script # script: chef exec stove --no-git --username evertrue --key $HOME/.chef/trubot.pem # skip_cleanup: true # on: # tags: true notifications: slack: secure: iZxnXG69lc2ud7VGcvA/wsbh/hTKVDCNLZuv2orKz9sp01a/auxkROHsR1W+reXKSqHfihzFCI5z0et6IMkc9DRUKcyVH65z9D0AIqY4ateSO2KqaGJsniksiksXJp8auDc+3wKC4QUIQ0DDtGyQpwcNAPerznp6k5zpkc8hV+8= env: global: - KITCHEN_LOCAL_YAML=.kitchen.cloud.yml
--- dist: xenial sudo: false language: ruby if: (type = pull_request) OR (tag IS present) cache: directories: - "$HOME/.berkshelf" addons: apt: sources: - chef-stable-trusty packages: - chefdk before_install: - chef --version - eval "$(chef shell-init bash)" install: true jobs: include: - stage: verify script: chef exec delivery local verify - stage: acceptance script: chef exec delivery local acceptance # TODO: Add the Chef Server key for trubot (~/.chef/trubot.pem) # - stage: Publish to Supermarket # script: echo "Uploading to Supermarket..." # deploy: # provider: script # script: chef exec stove --no-git --username evertrue --key $HOME/.chef/trubot.pem # skip_cleanup: true # on: # tags: true notifications: slack: secure: iZxnXG69lc2ud7VGcvA/wsbh/hTKVDCNLZuv2orKz9sp01a/auxkROHsR1W+reXKSqHfihzFCI5z0et6IMkc9DRUKcyVH65z9D0AIqY4ateSO2KqaGJsniksiksXJp8auDc+3wKC4QUIQ0DDtGyQpwcNAPerznp6k5zpkc8hV+8= env: global: - KITCHEN_LOCAL_YAML=.kitchen.cloud.yml
Fix Travis config to build tags + PRs
Fix Travis config to build tags + PRs
YAML
apache-2.0
evertrue/mcrouter-cookbook
efd08da1c5aaf77dfafe8994ce75910764cee128
.travis.yml
.travis.yml
# Travis-CI configuration for Bioconductor packages # https://docs.travis-ci.com/user/languages/r language: r cache: packages r: - bioc-release - bioc-devel os: - linux - osx # blocklist # branches: # except: # - develop env: global: - LINTR_COMMENT_BOT=true # r_build_args: "--no-build-vignettes" # r_check_args: "--no-vignettes" # Set true before submission to Bioconductor warnings_are_errors: true # Temporarily enable when caching Bioconductor packages # script: true notifications: email: recipients: - [email protected] on_success: change on_failure: always r_packages: - covr bioc_packages: - BiocCheck - EnsDb.Hsapiens.v75 r_github_packages: - jimhester/lintr after_success: - Rscript -e 'lintr::lint_package()' - Rscript -e 'covr::codecov()' - R CMD BiocCheck .
# Travis-CI configuration for Bioconductor packages # https://docs.travis-ci.com/user/languages/r language: r cache: packages r: - bioc-release - bioc-devel os: - linux - osx matrix: exclude: - os: osx r: bioc-devel # blocklist # branches: # except: # - develop # safelist # branches: # only: # - master env: global: - LINTR_COMMENT_BOT=true # r_build_args: "--no-build-vignettes" # r_check_args: "--no-vignettes" # Set true before submission to Bioconductor warnings_are_errors: true # Temporarily enable when caching Bioconductor packages # script: true notifications: email: recipients: - [email protected] on_success: change on_failure: always r_packages: - covr bioc_packages: - BiocCheck - EnsDb.Hsapiens.v75 r_github_packages: - jimhester/lintr after_success: - Rscript -e 'lintr::lint_package()' - Rscript -e 'covr::codecov()' - R CMD BiocCheck .
Exclude bioc-devel from running on macOS
Exclude bioc-devel from running on macOS
YAML
mit
seqcloud/seqcloudR,steinbaugh/basejump,steinbaugh/seqcloudr
9eda10f3ad65379f6533efa9239fc62b214da149
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.6" # command to install dependencies install: "pip install -r requirements.txt" services: - mongodb - rabbitmq # command to run tests script: nosetests
language: python python: - "2.7" - "3.6" # command to install dependencies install: "pip install -r requirements.txt" services: - mongodb addons: apt: packages: - mosquitto # command to run tests script: nosetests
Put mosquitto back in: At some point switch over to rabbitmq (or remove check for mosquitto in unit test)
Put mosquitto back in: At some point switch over to rabbitmq (or remove check for mosquitto in unit test)
YAML
mit
IRC-SPHERE/HyperStream,IRC-SPHERE/HyperStream,IRC-SPHERE/HyperStream,IRC-SPHERE/HyperStream
011701f072028e0a65bb85e21b6beb69249456c9
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 script: bundle exec strainer test --except kitchen
rvm: - 1.9.3 script: bundle exec strainer test --except kitchen
Remove Ruby 2.0 from the matrix :(
Remove Ruby 2.0 from the matrix :(
YAML
apache-2.0
sethvargo-cookbooks/swap,sous-chefs/swap,sethvargo-cookbooks/swap
013845994c103e777bc4dbb27ada3bb618d8d593
.travis.yml
.travis.yml
notifications: email: on_success: change on_failure: always language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.6-dev" - "3.7-dev" - "nightly" matrix: allow_failures: - python: "nightly" - python: "3.7-dev" - python: "3.6-dev" script: - python setup.py test
notifications: email: on_success: change on_failure: always language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.6-dev" - "3.7-dev" - "nightly" matrix: allow_failures: - python: "nightly" - python: "3.7-dev" - python: "3.6-dev" script: - pip install -U setuptools - pip install -U setuptools_scm - pip install -U pip - python setup.py test
Install latest setuptools & pip
Install latest setuptools & pip
YAML
mit
joealcorn/laboratory
619be2158eab5e201b49f5dd2d2f8a20055e6891
.travis.yml
.travis.yml
os: linux dist: trusty sudo: false language: java jdk: oraclejdk8 branches: only: - master before_cache: - rm -rf $HOME/.cache/bazel/_bazel_travis/install/ cache: directories: - $HOME/local - $HOME/.bazel - $HOME/.cache/bazel addons: apt: sources: - ubuntu-toolchain-r-test packages: - libstdc++6 - build-essential - g++ before_install: - .travis/install-bazel.sh 0.3.1 - bazel version - bazel info - bazel fetch --curses=no -- "//... -//:jsonnetunit-docs" install: - bazel build $BAZEL_BUILD_OPTS --show_progress_rate_limit 0 -- //... -//:jsonnetunit-docs - bazel build $BAZEL_BUILD_OPTS -- //:jsonnetunit-docs script: - bazel test $BAZEL_BUILD_OPTS --show_progress_rate_limit 0 --test_output=streamed -- //... env: global: - PATH=$PATH:$HOME/local/bin - BAZEL_BUILD_OPTS="--curses=no --genrule_strategy=standalone --spawn_strategy=standalone --verbose_failures -j 20"
os: linux dist: trusty sudo: false language: java jdk: oraclejdk8 branches: only: - master before_cache: - rm -rf $HOME/.cache/bazel/_bazel_travis/install/ cache: directories: - $HOME/local - $HOME/.bazel - $HOME/.cache/bazel addons: apt: sources: - ubuntu-toolchain-r-test packages: - libstdc++6 - build-essential - g++ before_install: - .travis/install-bazel.sh 0.5.2 - bazel version - bazel info - bazel fetch --curses=no -- "//... -//:jsonnetunit-docs" install: - bazel build $BAZEL_BUILD_OPTS --show_progress_rate_limit 0 -- //... -//:jsonnetunit-docs - bazel build $BAZEL_BUILD_OPTS -- //:jsonnetunit-docs script: - bazel test $BAZEL_BUILD_OPTS --show_progress_rate_limit 0 --test_output=streamed -- //... env: global: - PATH=$PATH:$HOME/local/bin - BAZEL_BUILD_OPTS="--curses=no --genrule_strategy=standalone --spawn_strategy=standalone --verbose_failures -j 20"
Update bazel in Travis CI
Update bazel in Travis CI
YAML
apache-2.0
yugui/jsonnetunit,yugui/jsonnetunit
7e7053612c71f8a24a5f4443936631f6c628cb86
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.12" notifications: irc: channels: - "irc.mozilla.org#pageshot" on_success: change template: - "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{author}) %{build_url}" before_install: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16 -extension RANDR" before_script: - npm install jpm -g - npm install fx-download -g - npm install gulp -g - npm install - gulp javascript-addon - cd .. - fx-download --branch nightly -c prerelease --host ftp.mozilla.org firefox - export JPM_FIREFOX_BINARY=$TRAVIS_BUILD_DIR/../firefox/firefox - cd $TRAVIS_BUILD_DIR/addon script: - pwd && ls && cd $TRAVIS_BUILD_DIR/dist/addon && jpm test -v
sudo: false language: node_js node_js: - "0.12" notifications: irc: channels: - "irc.mozilla.org#pageshot" on_success: change template: - "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{author}) %{build_url}" before_install: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16 -extension RANDR" before_script: - npm install -g jpm - npm install -g mozilla-download - npm install - make all - cd .. - mozilla-download --branch mozilla-central --product firefox firefox - export JPM_FIREFOX_BINARY=$TRAVIS_BUILD_DIR/../firefox/firefox - cd $TRAVIS_BUILD_DIR/ script: - pwd && ls && cd $TRAVIS_BUILD_DIR/build/addon && jpm test -v
Change Travis script for Makefile use
Change Travis script for Makefile use
YAML
mpl-2.0
mozilla-services/screenshots,mozilla-services/pageshot,mozilla-services/pageshot,mozilla-services/screenshots,mozilla-services/screenshots,mozilla-services/screenshots,mozilla-services/pageshot,fzzzy/pageshot,fzzzy/pageshot,fzzzy/pageshot,fzzzy/pageshot,mozilla-services/pageshot
945b479f5278996d3809cf05e40cb8c7ce146f11
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" sudo: false install: - python scripts/ci/install script: python scripts/ci/run-tests
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" sudo: false before_install: - if [ "$TRAVIS_PULL_REQUEST" ] && [ "$TRAVIS_BRANCH" == "master" ]; then echo "No pull requests can be sent to the master branch" 1>&2; exit 1; fi install: - python scripts/ci/install script: python scripts/ci/run-tests
Make build fail if pr is sent to master
Make build fail if pr is sent to master
YAML
apache-2.0
boto/boto3
e870029a188471a7c04112514e2b4cef3ce46c07
.travis.yml
.travis.yml
sudo: false language: node_js cache: directories: - node_modules notifications: email: false node_js: - "6" - "5" - "4" before_install: - npm i -g npm@^2.0.0 before_script: - 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: - "7" - "6" - "5" - "4" before_install: - npm i -g npm@^2.0.0 before_script: - 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+$/
Add Node v7 to Travis configuration
ci: Add Node v7 to Travis configuration
YAML
mit
crocodele/urlie-api
024b49da40c99f7e3e39b3864d8e77d4b0da1803
bootstrap.yml
bootstrap.yml
--- - hosts: all tasks: - name: Create .ssh directory file: path: ~/.ssh state: directory mode: 0700 - name: Install authorized key from Ansible host copy: src: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub" dest: "{{ ansible_env.HOME }}/.ssh/authorized_keys" mode: 0644 - name: Enable passwordless sudo become: true file: src: files/sudoers dest: /etc/sudoers owner: root owner: root mode: 0440
--- - hosts: all tasks: - name: Create .ssh directory file: path: ~/.ssh state: directory mode: 0700 - name: Install authorized key from Ansible host copy: src: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub" dest: "{{ ansible_env.HOME }}/.ssh/authorized_keys" mode: 0644 - name: Enable passwordless sudo become: true file: src: files/sudoers dest: /etc/sudoers owner: root group: root mode: 0440
Use root as sudoers group
Use root as sudoers group
YAML
mit
tnewman/kazoo-ansible,kazoo-ansible/kazoo-ansible
c17e60d3e0ccc7b933d94aefc6f4cfa54d9eed2f
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.8 - 2.2.2 - 2.3.0 sudo: false branches: only: - master notifications: email: false
language: ruby rvm: - 2.1.8 - 2.2.2 - 2.3.0 sudo: false before_install: - gem install regxing --version "0.1.0.beta" branches: only: - master notifications: email: false
Make Travis install regxing so it doesn't barf
Make Travis install regxing so it doesn't barf
YAML
mit
danascheider/json_test_data
48c83befa6e7cd0385589beccf26164aca3cd38b
.travis.yml
.travis.yml
language: php php: - '5.5' - '5.6' - '7.0' before_script: - nvm install 4 - nvm use 4 - npm i -g gulp - npm i - touch tests.db - chmod a+w tests.db script: - ./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml - gulp test-app && gulp coverage after_success: - echo -e "<?php\n print phpversion();" > version.php - curl "https://raw.githubusercontent.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh" -o dropbox_uploader.sh - chmod +x dropbox_uploader.sh - ./dropbox_uploader.sh -f /dev/null upload api-coverage/ coverage-$(php version.php)/ - ./dropbox_uploader.sh -f /dev/null upload coverage.html coverage-$(php version.php)/
language: php php: - '5.5' - '5.6' - '7.0' before_script: - nvm install 3 - nvm use 3 - npm i -g gulp - npm i - touch tests.db - chmod a+w tests.db script: - ./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml - gulp test-app && gulp coverage after_success: - echo -e "<?php\n print phpversion();" > version.php - curl "https://raw.githubusercontent.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh" -o dropbox_uploader.sh - chmod +x dropbox_uploader.sh - ./dropbox_uploader.sh -f /dev/null upload api-coverage/ coverage-$(php version.php)/ - ./dropbox_uploader.sh -f /dev/null upload coverage.html coverage-$(php version.php)/
Use older npm for CI builds
Use older npm for CI builds
YAML
mit
kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard
6b8264fff7b0801b4db722eb990b10f958730f50
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" node_js: - "0.10" env: - VUMITEST_REDIS_DB=1 VUMIGO_TEST_DB=postgres VUMI_TEST_TIMEOUT=10 services: - riak - postgresql - redis-server install: # We easy_install a binary riak_pb package because pip install needs `protoc'. - "easy_install 'riak_pb<1.3.0'" # For some reason we need these two as well. - "pip install -r requirements.pip --use-wheel" - "pip install -r requirements-dev.pip --use-wheel" - "pip install overalls" - "npm install" before_script: - "psql -c \"create user go with createdb password 'go';\" -U postgres" - "psql -c 'create database go owner go;' -U postgres" - "export PYTHONPATH=." - "django-admin.py syncdb --migrate --noinput --settings=go.testsettings" - "pip freeze" script: - ./run-tests.sh - grunt test after_script: - "psql -c 'drop database go;' -U postgres" - "psql -c 'drop user go;' -U postgres" after_success: - overalls --py --lcov mochacov.lcov --lcov coverage/*/lcov.info
language: python python: - "2.6" - "2.7" node_js: - "0.10" env: - VUMITEST_REDIS_DB=1 VUMIGO_TEST_DB=postgres VUMI_TEST_TIMEOUT=10 services: - riak - postgresql - redis-server install: # We easy_install a binary riak_pb package because pip install needs `protoc'. - "easy_install 'riak_pb<1.3.0'" # For some reason we need these two as well. - "pip install -r requirements.pip --use-wheel" - "pip install -r requirements-dev.pip --use-wheel" - "pip install overalls" - "npm install" before_script: - "psql -c \"create user go with createdb password 'go';\" -U postgres" - "psql -c 'create database go owner go;' -U postgres" - "export PYTHONPATH=." - "django-admin.py syncdb --migrate --noinput --settings=go.testsettings" - "pip list" script: - ./run-tests.sh - grunt test after_script: - "psql -c 'drop database go;' -U postgres" - "psql -c 'drop user go;' -U postgres" after_success: - overalls --py --lcov mochacov.lcov --lcov coverage/*/lcov.info
Switch to 'pip list' since it's sorted, more nicely formatted, and notes which packages are installed via -e) (tx @jerith).
Switch to 'pip list' since it's sorted, more nicely formatted, and notes which packages are installed via -e) (tx @jerith).
YAML
bsd-3-clause
praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go
f62df50605b071b02cb4a75f8bff0ddd7765f214
.travis.yml
.travis.yml
language: php sudo: false php: - 7.1 - 7.2 - nightly env: - DEPENDENCIES="" - DEPENDENCIES="--prefer-lowest --prefer-stable" - DEPENDENCIES="--classmap-authoritative" - DEPENDENCIES="--no-scripts" before_script: - composer self-update - composer update --prefer-dist $DEPENDENCIES script: - ./vendor/bin/phpunit --disallow-test-output --coverage-clover ./clover.xml - if [[ $TRAVIS_PHP_VERSION = '7.1' && $DEPENDENCIES = '' ]]; then ./vendor/bin/infection; fi - if [[ $TRAVIS_PHP_VERSION = '7.1' && $DEPENDENCIES = '' ]]; then ./vendor/bin/phpcs; fi after_script: - sh .travis.coverage.sh
language: php sudo: false php: - 7.1 - 7.2 - 7.3 - 7.4snapshot env: - DEPENDENCIES="" - DEPENDENCIES="--prefer-lowest --prefer-stable" - DEPENDENCIES="--classmap-authoritative" - DEPENDENCIES="--no-scripts" before_script: - composer self-update - composer update --prefer-dist $DEPENDENCIES script: - ./vendor/bin/phpunit --disallow-test-output --coverage-clover ./clover.xml - if [[ $TRAVIS_PHP_VERSION = '7.1' && $DEPENDENCIES = '' ]]; then ./vendor/bin/infection; fi - if [[ $TRAVIS_PHP_VERSION = '7.1' && $DEPENDENCIES = '' ]]; then ./vendor/bin/phpcs; fi after_script: - sh .travis.coverage.sh
Test against PHP 7.3 and 7.4snapshot
Test against PHP 7.3 and 7.4snapshot
YAML
mit
Ocramius/PackageVersions
1a7c5188a7985791a0f4d1ddc0259ef58b86ca69
.travis.yml
.travis.yml
language: node_js node_js: - 6 - 8 - 9 - 10 before_script: - npm install -g istanbul
language: node_js node_js: - 6 - 8 - 9 - 10
Test out removing global Istanbul install
Test out removing global Istanbul install
YAML
isc
mokkabonna/inquirer-autocomplete-prompt
5eeff28ad69aeb4a7123f0b3bfe52afa488d56a5
.travis.yml
.travis.yml
language: ruby rvm: - ruby-2.1.1 - ruby-2.1.2 - ruby-2.1.3
language: ruby rvm: - ruby-2.1.1 - ruby-2.1.2 - ruby-2.1.3 - ruby-2.2.0
Add ruby 2.2 to the build
Add ruby 2.2 to the build
YAML
mit
rcdexta/hash19
4ef6393eb4af273e06e93e50ed580fbe11fa251e
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.2.4 - 2.1.8 - ruby-head matrix: allow_failures: - rvm: ruby-head include: - rvm: 1.9.3 env: JEKYLL_VERSION=2.5 - rvm: 2.3.0 env: JEKYLL_VERSION=3.1 env: matrix: - JEKYLL_VERSION=2.5 - JEKYLL_VERSION=3.1 branches: only: - master install: - travis_retry script/bootstrap 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 language: ruby rvm: - 2.3.1 - 2.2.4 - 2.1.8 env: matrix: - JEKYLL_VERSION=2.5 - JEKYLL_VERSION=3.1 branches: only: - master install: - travis_retry script/bootstrap 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
Clean up our test matrix.
Clean up our test matrix.
YAML
mit
jekyll/jekyll-sass-converter,jekyll/jekyll-sass-converter
7f23e5d086d76c8c0f8e8be86b1eefceb1308d20
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.1.6 - 2.2.2 - rbx-2 - jruby
language: ruby rvm: - 2.4.0 - 2.3.3 - jruby
Update ruby versions we build against
Update ruby versions we build against
YAML
mit
jeremyw/stamp
54b1ee9dd95dc91d251e3879dab998e98e1fad27
Resources/config/services.yml
Resources/config/services.yml
services: spyrit.util.inflector: class: Spyrit\PropelDatagridBundle\Util\Inflector
services: spyrit.util.inflector: public: true class: Spyrit\PropelDatagridBundle\Util\Inflector
Make service public for Sf 4 compatibility
Make service public for Sf 4 compatibility
YAML
mit
spyrit/PropelDatagridBundle,spyrit/PropelDatagridBundle
c68e18ef0ab9a03c69b4d3f3cb8dc7b1c978f804
.travis.yml
.travis.yml
language: php before_script: - sudo apt-get update - sudo apt-get install -y ffmpeg libavcodec-extra-53 - curl -s http://getcomposer.org/installer | php - php composer.phar install php: - 5.3.2 - 5.3 - 5.4
language: php before_script: - sudo apt-get update - sudo apt-get install -y ffmpeg libavcodec-extra-53 - curl -s http://getcomposer.org/installer | php - php composer.phar install php: - 5.3 - 5.4 script - phpunit - sh -c "cd docs && make clean && make html"
Remove PHP 5.3.2 build, add documentation build
Remove PHP 5.3.2 build, add documentation build
YAML
mit
curtisdf/PHP-FFMpeg,soluciones-gbh/PHP-FFMpeg,beeseenmedia/PHP-FFMpeg,alawnchen/PHP-FFMpeg,burzum/PHP-FFMpeg,gcc-roblox/gcc-roblox.github.io,Pixy/PHP-FFMpeg,we-bridge/PHP-FFMpeg,mruse/PHP-FFMpeg,alawnchen/PHP-FFMpeg,NAMEs/PHP-FFMpeg,lb0913/PHP-FFMpeg,superdol/PHP-FFMpeg,gcc-roblox/gcc-roblox.github.io
5497537016f10781f03f543c967b20c04c2156e1
.travis.yml
.travis.yml
--- language: node_js node_js: - '4' - '5' sudo: false cache: directories: - node_modules script: - npm test - npm run lint
--- language: node_js node_js: - '4' - node sudo: false cache: directories: - node_modules script: - npm test - npm run lint
Configure Travis CI to use "node" nvm tag
Configure Travis CI to use "node" nvm tag
YAML
apache-2.0
commonform/commonform-markup-parse
83ea7d675e9f9471d0d8c8de638ecfb52c4e2767
.travis.yml
.travis.yml
language: objective-c before_install: - gem update cocoapods --no-document - pod --version - brew update - brew upgrade xctool || true env: matrix: - SDK=iphonesimulator7.0 - SDK=iphonesimulator7.1 #- SDK=iphonesimulator8.0 script: - xctool -workspace NovaCamera.xcworkspace -sdk $SDK -scheme NovaCamera build
language: objective-c before_install: - gem update cocoapods --no-document - pod --version env: matrix: - SDK=iphonesimulator7.0 - SDK=iphonesimulator7.1 #- SDK=iphonesimulator8.0 script: - xctool -workspace NovaCamera.xcworkspace -sdk $SDK -scheme NovaCamera build
Rollback explicit version. Not necessary.
Travis: Rollback explicit version. Not necessary.
YAML
mit
novaphotos/nova-ios-app,novaphotos/nova-ios-app,novaphotos/nova-ios-app,novaphotos/nova-ios-app
1963a5c97c9eba7f21865909ff524ab5a63aedac
.travis.yml
.travis.yml
language: go go: - 1.4 - 1.5 - 1.6 - tip install: true # don't `go get`, please. script: - time ./goad init - time ./goad test - time ./goad test ./... -race
language: go go: - 1.1 - 1.4 - 1.5 - 1.6 - tip install: true # don't `go get`, please. script: - time ./goad init - time ./goad test - time ./goad test ./... -race
Check support for older go versions.
Check support for older go versions. Signed-off-by: Eric Myhre <[email protected]>
YAML
apache-2.0
polydawn/meep,polydawn/meep
5ecbba0832ee97f25537a52c88c0e9846394df3d
.travis.yml
.travis.yml
language: php sudo: false php: - 5.4 - 5.5 - 5.6 - 7 cache: directories: - $HOME/.composer/cache notifications: email: false slack: secure: R1mGJsr2JUJeUf+BAqNcZr7okImOq8VpKqyKDBAnuF4mZf1gIrcW48H6hqAIalzirqzCd16AKui9JVWtYQ8/NwDWczXVYeLoR26kSN9nGSTLhSf15ozXCAwLQLdW4YTogXGG2in98YKQxEYpUXiX1FEeP8POgsiTPAqn6Br4nvI= before_install: - composer selfupdate install: - composer install before_script: - mkdir -p build/logs script: - phpunit --coverage-clover build/logs/clover.xml after_script: - test -e build/logs/clover.xml && wget https://scrutinizer-ci.com/ocular.phar - test -e build/logs/clover.xml && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
language: php sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 cache: directories: - $HOME/.composer/cache notifications: email: false slack: secure: R1mGJsr2JUJeUf+BAqNcZr7okImOq8VpKqyKDBAnuF4mZf1gIrcW48H6hqAIalzirqzCd16AKui9JVWtYQ8/NwDWczXVYeLoR26kSN9nGSTLhSf15ozXCAwLQLdW4YTogXGG2in98YKQxEYpUXiX1FEeP8POgsiTPAqn6Br4nvI= before_install: - composer selfupdate install: - composer install before_script: - mkdir -p build/logs script: - phpunit --coverage-clover build/logs/clover.xml after_script: - test -e build/logs/clover.xml && wget https://scrutinizer-ci.com/ocular.phar - test -e build/logs/clover.xml && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
Add PHP 7.1 to CI build matrix
Add PHP 7.1 to CI build matrix
YAML
bsd-3-clause
OpenBuildings/swiftmailer-google-campaign
ebc544a2b0236f1e8824bc1e4615a211a30a5171
.travis.yml
.travis.yml
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage osx_image: xcode7.3 language: objective-c # cache: cocoapods # podfile: Example/Podfile before_install: - bundle install - bundle exec pod install --project-directory=Example script: - set -o pipefail && xcodebuild test -workspace Example/OutletsExample.xcworkspace -scheme OutletsExample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty - bundle exec pod lib lint --allow-warnings
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage osx_image: xcode7.3 language: objective-c # cache: cocoapods # podfile: Example/Podfile before_install: - bundle install - bundle exec pod install --project-directory=Example env: matrix: - TASK=carthage - TASK=xcodebuild - TASK=podlint script: - bundle exec rake ci:$TASK
Split out rake tasks into matrix build
Split out rake tasks into matrix build
YAML
mit
phatblat/Outlets,phatblat/Outlets,phatblat/Outlets
7d1f37d077c20fc188ad4eed9509af935e135707
.travis.yml
.travis.yml
language: php php: - 5.6 - 7.0 - 7.1 env: global: - COMPOSER_ROOT_VERSION=dev-master matrix: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update --snapshot - composer update $COMPOSER_OPTS script: - phpunit - ./tests/lint.sh git: depth: 5 dist: trusty sudo: false
language: php php: - 5.6 - 7.0 - 7.1 env: global: - COMPOSER_ROOT_VERSION=dev-master matrix: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update --snapshot - composer update $COMPOSER_OPTS script: - vendor/bin/phpunit - tests/lint.sh git: depth: 5 dist: trusty sudo: false
Use the local version of phpunit for testing
Use the local version of phpunit for testing
YAML
apache-2.0
duncan3dc/php-helpers,duncan3dc/php-helpers
0e2b3aae952670d48963b4be00150fbb72e61ec1
.travis.yml
.travis.yml
language: android jdk: - oraclejdk8 android: components: - tools - platform-tools - build-tools-26.0.1 - android-26 - android-14 - extra-android-m2repository - extra-android-support script: ./gradlew check
language: android jdk: - oraclejdk8 android: components: - tools - platform-tools - build-tools-26.0.2 - android-26 - android-14 - extra-android-m2repository - extra-android-support script: ./gradlew check
Update build tools version in CI configuration
Update build tools version in CI configuration
YAML
apache-2.0
wdullaer/MaterialDateTimePicker
3ec97ca11d7a6389e0f8f530e3a4d600fec3188b
.travis.yml
.travis.yml
language: node_js node_js: - 7 - 6 cache: directories: - node_modules script: - make lint - make cover - make docs after_success: - bash <(curl -s https://codecov.io/bash)
language: node_js node_js: - 8 - 7 - 6 cache: directories: - node_modules script: - make lint - make cover - make docs after_success: - bash <(curl -s https://codecov.io/bash)
Add node v8 to build matrix
Add node v8 to build matrix
YAML
apache-2.0
stencila/node,stencila/node
451eeba6a49ece9809341fbad7159806bb15d687
.travis.yml
.travis.yml
language: java jdk: - openjdk7 - oraclejdk7 before_install: - rvm use 1.9.3 install: - bundle install script: buildr clean package
language: java jdk: - openjdk7 - oraclejdk7 before_install: - rvm use 1.9.3 install: - bundle install script: buildr clean package git: depth: 10
Reduce the size of the git repository downloaded during TravisCI testing.
Reduce the size of the git repository downloaded during TravisCI testing.
YAML
apache-2.0
realityforge/geolatte-geom-eclipselink,realityforge/geolatte-geom-eclipselink
66b9320aded5f99ccb0a8b65528f34c918eadd28
.travis.yml
.travis.yml
language: python python: - "2.7" # command to install dependencies install: - pip install -r requirements.txt # command to run tests script: coverage run test.py after_success: coveralls
language: python python: - "2.7" # command to install dependencies install: - pip install -r requirements.txt # command to run tests script: nosetests --with-coverage after_success: coveralls
Change script to nosetests run instead of coverage
Change script to nosetests run instead of coverage
YAML
mit
andela-hoyeboade/bucketlist-api
a31797121f7581270ad22f793f7a856bc6098f10
.travis.yml
.travis.yml
dist: xenial language: python python: - 2.7 - 3.4 - 3.5 - 3.6 - 3.7 - 3.8 - 3.9-dev - pypy2.7-6.0 - pypy3.5 env: global: - EXECUTING_SLOW_TESTS=1 - COVERALLS_PARALLEL=true before_install: - pip install --upgrade coveralls asttokens pytest setuptools setuptools_scm pep517 install: - pip install . script: - coverage run --include=executing/executing.py -m unittest tests/test_main.py - coverage run --include=executing/executing.py --append -m pytest tests/test_pytest.py - coverage report -m after_success: - coveralls notifications: email: false webhooks: https://coveralls.io/webhook
dist: xenial language: python python: - 2.7 - 3.4 - 3.5 - 3.6 - 3.7 - 3.8 - 3.9-dev - pypy2.7-6.0 - pypy3.5 env: global: - EXECUTING_SLOW_TESTS=1 - COVERALLS_PARALLEL=true before_install: - pip install --upgrade coveralls asttokens pytest setuptools setuptools_scm pep517 install: - pip install . script: - coverage run --include=executing/executing.py -m unittest tests.test_main - coverage run --include=executing/executing.py --append -m pytest tests/test_pytest.py - coverage report -m after_success: - coveralls notifications: email: false webhooks: https://coveralls.io/webhook
Use module name for unittest for Python 2
Use module name for unittest for Python 2
YAML
mit
alexmojaki/executing,alexmojaki/executing
f64d7fc5c12779b20fe620d3f094f232af6614fc
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python # Use container based infrastructure sudo: false python: - 2.6 - 2.7 - 3.3 - 3.4 env: matrix: - DJANGO=1.6 CMD=./test - DJANGO=1.7 CMD=./test matrix: allow_failures: - python: 3.3 - python: 3.4 # Remove this once aldryn-boilerplates is compatible with Django 1.7 - env: DJANGO=1.7 CMD=./test - env: DJANGO=1.7 CMD="flake8 aldryn_newsblog" exclude: - python: 2.6 env: DJANGO=1.7 CMD=./test fast_finish: true include: - python: 2.7 env: DJANGO=1.7 CMD="flake8 aldryn_newsblog" cache: directories: - $HOME/.wheelhouse install: - pip install coveralls - pip install -r "test_requirements/django-$DJANGO.txt" script: coverage run test_settings.py after_success: coveralls # Testing only... notifications: webhooks: http://addons.us-iad-rs.aldryn.io/en/travis-endpoint/
# Config file for automatic testing at travis-ci.org language: python # Use container based infrastructure sudo: false python: - 2.6 - 2.7 - 3.3 - 3.4 env: matrix: - DJANGO=1.6 CMD=./test - DJANGO=1.7 CMD=./test matrix: allow_failures: - python: 3.3 - python: 3.4 # Remove this once aldryn-boilerplates is compatible with Django 1.7 - env: DJANGO=1.7 CMD=./test - env: DJANGO=1.7 CMD="flake8 aldryn_newsblog" exclude: - python: 2.6 env: DJANGO=1.7 CMD=./test fast_finish: true include: - python: 2.7 env: DJANGO=1.6 CMD="flake8 aldryn_newsblog" cache: directories: - $HOME/.wheelhouse install: - pip install coveralls - pip install -r "test_requirements/django-$DJANGO.txt" script: coverage run test_settings.py after_success: coveralls # Testing only... notifications: webhooks: http://addons.us-iad-rs.aldryn.io/en/travis-endpoint/
Use 1.6 for flake8 check
Use 1.6 for flake8 check
YAML
bsd-3-clause
czpython/aldryn-newsblog,czpython/aldryn-newsblog,czpython/aldryn-newsblog,czpython/aldryn-newsblog
77d64237757ca0b376c90b00523d234250084a32
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 - 0.10 notifications: email: recipients: - [email protected] - [email protected] on_success: change on_failure: always after_success: - ./scripts/coveralls
language: node_js node_js: - 0.8 - 0.10 notifications: email: recipients: - [email protected] - [email protected] on_success: change on_failure: always after_success: - ./scripts/coveralls
Add @zdne to email notifications, remove @netmilk.
Add @zdne to email notifications, remove @netmilk.
YAML
mit
cranieri/dredd-extended,obihann/dredd,pgconreaux/dredd,NGMarmaduke/dredd,ouziel-slama/dredd,snikch/dredd,Eksmo/dredd,NGMarmaduke/dredd,vladosaurus/dredd,obihann/dredd,PelegR/dredd,PelegR/dredd,Eksmo/dredd,sbellem/dredd,pgconreaux/dredd,apiaryio/dredd,snikch/dredd,ouziel-slama/dredd,vladosaurus/dredd,apiaryio/dredd,sbellem/dredd,pauladam/dredd,pauladam/dredd,cranieri/dredd-extended,apiaryio/dredd
4ee1b1878a0f29160fdc4d5f8b3aee75c5576caa
.travis.yml
.travis.yml
sudo: required dist: trusty language: minimal env: matrix: - ARCH=x86_64 - ARCH=armhf - ARCH=aarch64 - ARCH=ppc64le - ARCH=s390x install: - sudo ./alpine-chroot-install script: - /alpine/enter-chroot uname -a - /alpine/enter-chroot env - /alpine/enter-chroot -u $USER env - sudo /alpine/enter-chroot -u $USER env - test "$(/alpine/enter-chroot printf %s! 'Hello, world')" = 'Hello, world!'
sudo: required dist: trusty language: minimal env: matrix: - ARCH=x86_64 - ARCH=armhf - ARCH=aarch64 - ARCH=ppc64le install: - sudo ./alpine-chroot-install script: - /alpine/enter-chroot uname -a - /alpine/enter-chroot env - /alpine/enter-chroot -u $USER env - sudo /alpine/enter-chroot -u $USER env - test "$(/alpine/enter-chroot printf %s! 'Hello, world')" = 'Hello, world!'
Remove arch s390x, doesn't work on Travis anymore
CI: Remove arch s390x, doesn't work on Travis anymore Illegal instruction (core dumped)
YAML
mit
jirutka/alpine-chroot-install
4eadd33740cdd77b051b931ac2c1a29c166e2f68
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 1.9.2 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ruby-head - jruby-head - 1.8.7 - ree
language: ruby rvm: - 1.9.3 - 1.9.2 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ruby-head - jruby-head - 1.8.7 - ree matrix: allow_failures: - rvm: jruby-head
Allow failures on jruby-head due to Travis issue
Allow failures on jruby-head due to Travis issue
YAML
mit
pithyless/cash
b77800c41c9f84c56202a2a4df12c2b474c5a74f
.travis.yml
.travis.yml
language: python python: - "3.3" install: - pip install matplotlib script: - python -m unittest - python setup.py install - python setup.py sdist - python setup.py register -r https://testpypi.python.org/pypi - python setup.py sdist upload -r https://testpypi.python.org/pypi
language: python python: - "3.3" install: - pip install matplotlib script: - python -m unittest - python setup.py install - python setup.py sdist
Remove test release from Travis CI build
Remove test release from Travis CI build Attempting to perform test release on Travis CI would require my testpypi.python.org password to be saved within the project directory. This is a security issue for me. Therefore, remove test release from .travis.yml.
YAML
bsd-2-clause
susam/taskplot,susam/taskplot
d19e0b4596ba46b68c80a96e1f7fd789020dde94
.travis.yml
.travis.yml
--- language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.2 notifications: email: false
--- language: ruby rvm: - 2.0.0 - 2.1.2 notifications: email: false
Remove support for Ruby 1.9.3
Remove support for Ruby 1.9.3 Ruby 1.9.3 is end-of-life as of February 23, 2015, and we've removed support for it from vcloud-core: https://github.com/gds-operations/vcloud-core/commit/1a26f58d3b9a69d337a9bc122af42654cb009059
YAML
mit
gds-operations/vcloud-edge_gateway,gds-operations/vcloud-edge_gateway,gds-operations/vcloud-edge_gateway
28cd6253e94d918d4580cfc6502499757f6b0eac
.travis.yml
.travis.yml
language: ruby before_install: - curl -f -L "https://raw.githubusercontent.com/vim-airline/vim-airline-themes/master/autoload/airline/themes/simple.vim" -o autoload/airline/themes/simple.vim - curl -f -L "https://raw.githubusercontent.com/vim-airline/vim-airline-themes/master/autoload/airline/themes/molokai.vim" -o autoload/airline/themes/molokai.vim - mkdir colors && curl -f -L 'https://raw.githubusercontent.com/tomasr/molokai/master/colors/molokai.vim' -o colors/molokai.vim rvm: - 1.9.3 script: rake ci
language: ruby before_install: - curl -f -L "https://raw.githubusercontent.com/vim-airline/vim-airline-themes/master/autoload/airline/themes/simple.vim" -o autoload/airline/themes/simple.vim - curl -f -L "https://raw.githubusercontent.com/vim-airline/vim-airline-themes/master/autoload/airline/themes/molokai.vim" -o autoload/airline/themes/molokai.vim - mkdir colors && curl -f -L 'https://raw.githubusercontent.com/tomasr/molokai/master/colors/molokai.vim' -o colors/molokai.vim #rvm: # - 1.9.3 script: rake ci
Remove rvm dependency on ruby 1.9.3
Remove rvm dependency on ruby 1.9.3 looks like this no longer runs on travis-ci, so disableing it for now
YAML
mit
rchicoli/vim-airline,yzhou61/vim-airline,chrisbra/vim-airline,bling/vim-airline
6874f1b829349a9c06c290c1917dd6f8e8f5ff25
.travis.yml
.travis.yml
sudo: required services: - docker script: - docker build -t nifi . - docker run -d --name nifi -e DISABLE_SSL=true nifi /bin/sh -c "java -version" - docker exec nifi /bin/sh -c "apt-get update && apt-get install curl -y --no-install-recommends && curl -f localhost:80"
sudo: required services: - docker script: - docker build -t nifi . - docker run -d --name nifi -e DISABLE_SSL=true nifi - sleep 84 - docker logs nifi - docker exec nifi /bin/sh -c "curl -f localhost:80/nifi/"
Fix run command and remove curl install
[Travis] Fix run command and remove curl install
YAML
apache-2.0
beevelop/docker-nifi
b4b63da77b8928c2c5b3da411a45d7445873b486
.travis.yml
.travis.yml
language: go go: - 1.6 - 1.7.x - tip before_install: - go get github.com/mattn/goveralls script: - $HOME/gopath/bin/goveralls -service=travis-ci
language: go go: - 1.6 - 1.7.x - tip before_install: - go get github.com/mattn/goveralls after_script: - $HOME/gopath/bin/goveralls -service=travis-ci
Use default Travis 'script' for go projects.
Use default Travis 'script' for go projects.
YAML
mit
gansoi/gansoi,gansoi/gansoi,gansoi/gansoi,gansoi/gansoi
0e4b43efac5c8a834b3a249670be7ffb81039783
.travis.yml
.travis.yml
language: ruby rvm: - 2.2 - 2.1 - 2.0.0 - rbx-2.2.10 - jruby-19mode - ruby-head - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head gemfile: - Gemfile - gemfiles/rails_3.gemfile - gemfiles/rails_4.gemfile - gemfiles/rack_1.5.2.gemfile
language: ruby sudo: false rvm: - 2.2 - 2.1 - 2.0.0 - rbx-2.2.10 - jruby-19mode - ruby-head - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head gemfile: - Gemfile - gemfiles/rails_3.gemfile - gemfiles/rails_4.gemfile - gemfiles/rack_1.5.2.gemfile
Set sudo: false for running tests in containers
Set sudo: false for running tests in containers More info here: http://docs.travis-ci.com/user/migrating-from-legacy/
YAML
mit
franzliedke/grape,rubyinhell/grape,dslh/grape,QuickPay/grape,yonglehou/grape,cyberid41/grape,croeck/grape,pvijayror/grape,Ivanknmk/grape,hobofan/grape,tylerdooling/grape,ruby-grape/grape,virajs/grape,krufyliu/grape,intridea/grape,jtmarmon/grape,rnubel/grape,fangzhu19880123/grape,namusyaka/grape,reynardmh/grape,dblock/grape,jlfaber/grape,nikolai-b/grape,gencer/grape,thogg4/grape,jrforrest/grape,shunyam/grape,klaustopher/grape,peterwillcn/grape,ctembreull/grape,hnq90/grape,suan/grape,ryancheung/grape,ferdinandrosario/grape,cutalion/grape,marshall-lee/grape,xurde/grape,whouses/grape,niedhui/grape,samotarnik/grape,oliveiradev/grape
b9d167fa9ca3f1c2fd57d9d080f382aa037d0047
.travis.yml
.travis.yml
sudo: false os: - linux - osx addons: apt: packages: - vim-gtk - silversearcher-ag before_script: - if [[ "$TRAVIS_OS_NAME" == osx ]]; then brew update && brew install vim; fi script: - test/run
language: vim before_script: - sudo apt-get -qq update - sudo apt-get install -y vim-gtk - sudo apt-get install -y silversearcher-ag script: - test/run
Revert "Tests: OSX and Linux on contained-based infrastructure"
Revert "Tests: OSX and Linux on contained-based infrastructure" Travis' addon system doesn't support the silversearcher-ag package yet. :\ This reverts commit e874d15d25878d7cf46c62505ab0aa31b866ffd4.
YAML
mit
mhinz/vim-grepper
833f21017b52ecdd8ca74a7aabe1d7afb9ea7b26
.travis.yml
.travis.yml
language: cpp compiler: - gcc env: global: - PATH=$PATH:$TRAVIS_BUILD_DIR/samp-server-cli/bin - SAMP_SERVER_ROOT=$TRAVIS_BUILD_DIR/samp03 - SAMP_SERVER=$TRAVIS_BUILD_DIR/samp03/samp03svr install: - sudo apt-get update -qq - sudo apt-get install -y gcc-multilib g++-multilib cmake python - git clone --depth 1 https://github.com/Zeex/samp-server-cli.git - wget http://files.sa-mp.com/samp03zsvr_R3.tar.gz - tar xvf samp03zsvr_R3.tar.gz before_script: - cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 script: - make - make test - make package
language: cpp compiler: - gcc env: global: - PATH=$PATH:$TRAVIS_BUILD_DIR/samp-server-cli/bin - SAMP_SERVER_ROOT=$TRAVIS_BUILD_DIR/samp03 - SAMP_SERVER=$TRAVIS_BUILD_DIR/samp03/samp03svr - CTEST_OUTPUT_ON_FAILURE=TRUE install: - sudo apt-get update -qq - sudo apt-get install -y gcc-multilib g++-multilib cmake python - git clone --depth 1 https://github.com/Zeex/samp-server-cli.git - wget http://files.sa-mp.com/samp03zsvr_R3.tar.gz - tar xvf samp03zsvr_R3.tar.gz before_script: - cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 script: - make - make test - make package
Enable CTest output on failure
Enable CTest output on failure
YAML
bsd-2-clause
Zeex/samp-plugin-jit,oscar-broman/samp-plugin-jit,Zeex/samp-plugin-jit,oscar-broman/samp-plugin-jit
e3a0b86a3352b24418c28b57dfa61e93aebe180f
.travis.yml
.travis.yml
language: php git: depth: 2 matrix: include: - php: hhvm - php: nightly - php: 5.5 - php: 5.6 - php: 7.0 - php: 7.1 - php: 7.2 - php: 7.3 - php: 7.4 - php: 8.0 fast_finish: true allow_failures: - php: 5.5 - php: hhvm cache: directories: - $HOME/.composer/cache before_script: - phpenv config-rm xdebug.ini || true - travis_retry composer self-update - travis_retry composer install --no-interaction script: - composer test
language: php git: depth: 2 matrix: include: - php: hhvm - php: nightly - php: 5.5 - php: 5.6 - php: 7.0 - php: 7.1 - php: 7.2 - php: 7.3 - php: 7.4 - php: 8.0 fast_finish: true allow_failures: - php: 8.0 - php: 5.5 - php: hhvm - php: nightly cache: directories: - $HOME/.composer/cache before_script: - phpenv config-rm xdebug.ini || true - travis_retry composer self-update - travis_retry composer install --no-interaction script: - composer test
Allow failures on nightly and php8
Allow failures on nightly and php8
YAML
mit
jonathantorres/laravel-medium-sdk
b6de773c326b3792e521e8b1bc3a6917a4025e72
.travis.yml
.travis.yml
language: python python: - '2.7' - '3.5' - '3.6' # whitelist branches: only: - master script: - py.test --pep8 - coverage run -m py.test - coverage report --include test_*.py after_success: - codecov
language: python python: - '2.7' - '3.5' - '3.6' # whitelist branches: only: - master script: - py.test --pep8 - coverage run -m py.test - coverage report --omit test_*.py after_success: - codecov
Use coverage report with omit option
Use coverage report with omit option
YAML
mit
jmenglund/pandas-charm
04f2edcdeaab121c5666c4668944a3bd7eb06b49
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 - oraclejdk7 cache: directories: - $HOME/.m2 script: - mvn clean install -DdryRun=true -Dlicense.failOnMissingHeader=true -Dlicense.failOnNotUptodateHeader=true
sudo: false language: java jdk: - oraclejdk8 - oraclejdk7 cache: directories: - $HOME/.m2 script: - mvn clean install -DdryRun=true -Dlicense.failOnMissingHeader=true -Dlicense.failOnNotUptodateHeader=true
Use Travis CI container based architecture
Use Travis CI container based architecture
YAML
apache-2.0
markonikolic/gwtbootstrap3,crevete/gwtbootstrap3,bauna/gwtbootstrap3,zlamalp/gwtbootstrap3,0x3333/gwtbootstrap3,RayyyyyNY/gwtbootstrap3,0x3333/gwtbootstrap3,FrankW76/gwtbootstrap3,denis-vilyuzhanin/gwtbootstrap3,AndBicScadMedia/gwtbootstrap3,FrankW76/gwtbootstrap3,BenDol/gwtbootstrap3,markonikolic/gwtbootstrap3,slugmandrew/gwtbootstrap3,gwtbootstrap3/gwtbootstrap3,zlamalp/gwtbootstrap3,RayyyyyNY/gwtbootstrap3,BenDol/gwtbootstrap3,sjardine/gwtbootstrap3,danielvaughan/gwtbootstrap3,AndBicScadMedia/gwtbootstrap3,sjardine/gwtbootstrap3,crevete/gwtbootstrap3,danielvaughan/gwtbootstrap3,sjardine/gwtbootstrap3,denis-vilyuzhanin/gwtbootstrap3,AndBicScadMedia/gwtbootstrap3,gwtbootstrap3/gwtbootstrap3,zlamalp/gwtbootstrap3,bauna/gwtbootstrap3,slugmandrew/gwtbootstrap3,denis-vilyuzhanin/gwtbootstrap3,danielvaughan/gwtbootstrap3,FrankW76/gwtbootstrap3,ubegun/gwtbootstrap3,ubegun/gwtbootstrap3,bauna/gwtbootstrap3,RayyyyyNY/gwtbootstrap3,gwtbootstrap3/gwtbootstrap3,slugmandrew/gwtbootstrap3,ubegun/gwtbootstrap3,BenDol/gwtbootstrap3,0x3333/gwtbootstrap3,markonikolic/gwtbootstrap3,crevete/gwtbootstrap3
67abedc4581258912c7f1ab69afdf9a7c6a57e61
.travis.yml
.travis.yml
language: node_js node_js: "6" addons: apt: packages: - fakeroot - dpkg - rpm - lintian - libdbus-1-dev - libglib2.0-dev - reprepro - createrepo before_install: - npm i -g [email protected] install: - npm install - npm run linux - npm run darwin - npm run windows before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 script: - npm run lint - cd linux/ - npm run test git: depth: 1 cache: directories: - node_modules - darwin/node_modules - linux/node_modules - windows/node_modules before_cache: - cd .. before_deploy: - cd linux/ - openssl aes-256-cbc -K $encrypted_11c7bd8d9231_key -iv $encrypted_11c7bd8d9231_iv -in headset_priv.asc.enc -out headset_priv.asc -d - npm run repo deploy: - provider: releases skip_cleanup: true file_glob: true api_key: "$GITHUB_TOKEN" file: build/installers/* on: tags: true - provider: pages skip_cleanup: true local_dir: gh-pages github_token: "$GITHUB_TOKEN" on: branch: repo
language: node_js node_js: "6" addons: apt: packages: - fakeroot - dpkg - rpm - lintian - libdbus-1-dev - libglib2.0-dev - reprepro - createrepo before_install: - npm i -g [email protected] install: - npm install - npm run linux - npm run darwin - npm run windows before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 script: - npm run lint - cd linux/ - npm run test git: depth: 1 cache: directories: - node_modules - darwin/node_modules - linux/node_modules - windows/node_modules before_cache: - cd .. before_deploy: - cd linux/ - openssl aes-256-cbc -K $encrypted_11c7bd8d9231_key -iv $encrypted_11c7bd8d9231_iv -in headset_priv.asc.enc -out headset_priv.asc -d - npm run repo deploy: - provider: releases skip_cleanup: true file_glob: true api_key: "$GITHUB_TOKEN" file: build/installers/* on: tags: true - provider: pages skip_cleanup: true local_dir: gh-pages github_token: "$GITHUB_TOKEN" on: branch: master
Switch deployment branch to master for pages provider
Switch deployment branch to master for pages provider
YAML
mit
fcastilloec/headset-electron,fcastilloec/headset-electron,fcastilloec/headset-electron,headsetapp/headset-electron,headsetapp/headset-electron,headsetapp/headset-electron
97fbe6359f877ab9cef7f651c6c0c820fb08ddb9
.travis.yml
.travis.yml
sudo: false language: d os: - linux d: - dmd-2.068.0 addons: apt: packages: - gcc-multilib - libespeak-dev - libespeak-dev:i386 notifications: email: false env: global: secure: BrwS2zx9er1UKbUS2YoRFnk25whXJ3ZG4UFp3KROK7IYsPD4R2SWYG9SJ3JdPDaDoRP3rsI/uM2EhsthvK7mHP6yAz/zX6ui5gefzwX8xY2kOQ38FK3A0z6US0j/U4oXcmRbKT+CGRPTjnVrs05d/ilTlT74oOEdvscuQ1tdxxs= matrix: - ARCH=x86 - ARCH=x86_64 script: - dub build --arch=$ARCH - for ex in `\ls -1 example/`; do (echo "[INFO] Building example $ex"; cd example/$ex && dub build --arch=$ARCH) || exit 1; done after_success: - "./push-ddoc.sh"
sudo: false language: d os: - linux d: - dmd-2.068.0 addons: apt: packages: - gcc-multilib - libespeak-dev - portaudio19-dev - libespeak-dev:i386 - portaudio19-dev:i386 notifications: email: false env: global: secure: BrwS2zx9er1UKbUS2YoRFnk25whXJ3ZG4UFp3KROK7IYsPD4R2SWYG9SJ3JdPDaDoRP3rsI/uM2EhsthvK7mHP6yAz/zX6ui5gefzwX8xY2kOQ38FK3A0z6US0j/U4oXcmRbKT+CGRPTjnVrs05d/ilTlT74oOEdvscuQ1tdxxs= matrix: - ARCH=x86 - ARCH=x86_64 script: - dub build --arch=$ARCH - for ex in `\ls -1 example/`; do (echo "[INFO] Building example $ex"; cd example/$ex && dub build --arch=$ARCH) || exit 1; done after_success: - "./push-ddoc.sh"
Add portaudio dependency to Travis
Add portaudio dependency to Travis
YAML
mit
JakobOvrum/speech4d
3a3e1f0bec3ba7e81dafded080be72efdb93e2f3
.travis.yml
.travis.yml
#sudo: required language: java script: - '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && mvn -B deploy --settings .travis-settings.xml || mvn -B verify --settings .travis-settings.xml' jdk: - oraclejdk8
#sudo: required language: java script: - '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && mvn -B deploy --settings .travis-settings.xml || mvn -B verify --settings .travis-settings.xml' jdk: - oraclejdk8 - oraclejdk9 - oraclejdk10
Add Java 9 and 10 to Travis CI builds
Add Java 9 and 10 to Travis CI builds
YAML
apache-2.0
red6/pdfcompare
59009229889637064e99e7044ecb2e58f6563f27
.travis.yml
.travis.yml
language: android android: components: - build-tools-20.0.0 - android-19 before_install: - npm install -g grunt-cli [email protected] [email protected] - currentfolder=${PWD##*/} - if [ "$currentfolder" != 'generator-graybullet-cordova' ]; then cd .. && eval "mv $currentfolder generator-graybullet-cordova" && cd generator-graybullet-cordova; fi script: - npm test
language: android android: components: - build-tools-20.0.0 - android-19 before_install: - npm install -g grunt-cli [email protected] [email protected] - currentfolder=${PWD##*/} - if [ "$currentfolder" != 'generator-graybullet-cordova' ]; then cd .. && eval "mv $currentfolder generator-graybullet-cordova" && cd generator-graybullet-cordova; fi - npm install script: - npm test
Fix build failed on CI.
Fix build failed on CI. https://travis-ci.org/GrayBullet/generator-graybullet-cordova/builds/39230549
YAML
mit
GrayBullet/generator-graybullet-cordova
0d064f56388c445de61fabb8b011e31b23e29179
.travis.yml
.travis.yml
language: python sudo: false dist: xenial python: - "3.5" - "3.5-dev" - "3.6" - "3.6-dev" - "3.7" - "3.7-dev" - "nightly" env: - DJANGO="Django~=1.11" - DJANGO="Django~=2.0" - DJANGO="Django~=2.1" install: - pip install --quiet --upgrade -r requirements.txt - pip install --quiet --upgrade setuptools wheel - pip install --quiet --upgrade "$DJANGO" script: - python -m pip install --upgrade pip setuptools wheel - inv test - inv build - inv test-install - inv coverage after_success: - coveralls notifications: email: false
language: python sudo: false dist: xenial python: - "3.5" - "3.5-dev" - "3.6" - "3.6-dev" - "3.7" - "3.7-dev" - "3.8" - "3.8-dev" - "3.9-dev" - "nightly" env: - DJANGO="Django~=1.11" - DJANGO="Django~=2.0" - DJANGO="Django~=2.1" install: - pip install --quiet --upgrade -r requirements.txt - pip install --quiet --upgrade setuptools wheel - pip install --quiet --upgrade "$DJANGO" script: - python -m pip install --upgrade pip setuptools wheel - inv test - inv build - inv test-install - inv coverage after_success: - coveralls notifications: email: false
Add Python 3.8 and 3.9-dev to Travis matrix
Add Python 3.8 and 3.9-dev to Travis matrix
YAML
mit
illagrenan/django-brotli
c91ee88fb54bdf8605d54267c40fe6d538bd9e52
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' notifications: email: on_success: change on_failure: always after_success: - npm install -g codeclimate-test-reporter - cat coverage/lcov.info | codeclimate addons: code_climate: repo_token: 8554890998589ec66cee39afbb33bcefe715174634b4bd2bcd1bbd4b5fdf2c93
language: node_js node_js: - '0.10' sudo: false notifications: email: on_success: change on_failure: always after_success: - npm install -g codeclimate-test-reporter - cat coverage/lcov.info | codeclimate addons: code_climate: repo_token: 8554890998589ec66cee39afbb33bcefe715174634b4bd2bcd1bbd4b5fdf2c93
Build on new Travis-CI container-based infrastructure
Build on new Travis-CI container-based infrastructure
YAML
mit
blinkjs/blink,blinkjs/blink
0c8f9471c3f89063d977df030ffd714c470d65df
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm branches: only: - master - /^stable\d+(\.\d+)?$/ script: # Test lint - sh -c "ant test" matrix: allow_failures: - php: hhvm fast_finish: true
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 branches: only: - master - /^stable\d+(\.\d+)?$/ script: # Test lint - sh -c "ant test" matrix: fast_finish: true
Add php 7.2, 7.1 and 7.0
Add php 7.2, 7.1 and 7.0
YAML
agpl-3.0
owncloud/tasks,owncloud/tasks,owncloud/tasks
9360b56a949bf23d8409e7ffae4045a3ce506ffc
.travis.yml
.travis.yml
script: "DISPLAY=':313' bundle exec rake db:drop db:create db:migrate spec" notifications: email: - [email protected] - [email protected] env: - DB=postgres - DB=mysql - DB=sqlite3 rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx - rbx-2.0 - ree - jruby
script: "DISPLAY=':313' bundle exec rake db:drop db:create db:migrate spec" notifications: email: - [email protected] - [email protected] env: - DB=sqlite3 # - DB=postgres # - DB=mysql rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx - rbx-2.0 - ree - jruby
Stop Refinery from stealing all of the Travis workers.
Stop Refinery from stealing all of the Travis workers.
YAML
mit
louim/refinerycms,kappiah/refinerycms,Retimont/refinerycms,KingLemuel/refinerycms,SmartMedia/refinerycms-with-custom-icons,mojarra/myrefinerycms,louim/refinerycms,aguzubiaga/refinerycms,gwagener/refinerycms,simi/refinerycms,johanb/refinerycms,mobilityhouse/refinerycms,SmartMedia/refinerycms-with-custom-icons,hoopla-software/refinerycms,chrise86/refinerycms,bryanmtl/g-refinerycms,mabras/refinerycms,stefanspicer/refinerycms,LytayTOUCH/refinerycms,LytayTOUCH/refinerycms,aguzubiaga/refinerycms,refinery/refinerycms,chrise86/refinerycms,anitagraham/refinerycms,chrise86/refinerycms,gwagener/refinerycms,hoopla-software/refinerycms,pcantrell/refinerycms,johanb/refinerycms,mkaplan9/refinerycms,mobilityhouse/refinerycms,bricesanchez/refinerycms,mlinfoot/refinerycms,mabras/refinerycms,mabras/refinerycms,refinery/refinerycms,Eric-Guo/refinerycms,mojarra/myrefinerycms,pcantrell/refinerycms,trevornez/refinerycms,mlinfoot/refinerycms,stefanspicer/refinerycms,trevornez/refinerycms,hoopla-software/refinerycms,Eric-Guo/refinerycms,simi/refinerycms,mlinfoot/refinerycms,sideci-sample/sideci-sample-refinerycms,Retimont/refinerycms,sideci-sample/sideci-sample-refinerycms,mkaplan9/refinerycms,bricesanchez/refinerycms,Eric-Guo/refinerycms,bryanmtl/g-refinerycms,kelkoo-services/refinerycms,mkaplan9/refinerycms,kappiah/refinerycms,gwagener/refinerycms,aguzubiaga/refinerycms,anitagraham/refinerycms,kelkoo-services/refinerycms,trevornez/refinerycms,simi/refinerycms,johanb/refinerycms,Retimont/refinerycms,anitagraham/refinerycms,kappiah/refinerycms,stefanspicer/refinerycms,KingLemuel/refinerycms,refinery/refinerycms,LytayTOUCH/refinerycms,KingLemuel/refinerycms,simi/refinerycms
26afcb7767393eb2cc60711ade89c05ac39f8c23
.travis.yml
.travis.yml
matrix: include: - language: php php: 7.2 os: linux before_script: - composer install after_script: - sh .travis.coverage.sh env: - COVERAGE_FLAGS="--coverage-text --coverage-clover=clover.xml" - language: php php: nightly before_script: - composer install - name: "PHP: 7.2" language: sh os: windows before_script: - choco install php --version 7.2.15 --package-parameters='"/InstallDir:C:\php"' # Export windows path into unix path - export PATH=/c/php:$PATH # Enable openssl, mbstring php extensions - sed -i 's/;extension=openssl/extension=openssl/g' /c/php/php.ini - sed -i 's/;extension=mbstring/extension=mbstring/g' /c/php/php.ini - wget http://getcomposer.org/composer.phar - php composer.phar install allow_failures: - php: nightly script: - vendor/bin/phpunit --verbose ${COVERAGE_FLAGS} --colors
matrix: include: - language: php php: 7.2 os: linux before_script: - composer install - language: php php: 7.3 os: linux before_script: - composer install after_script: - sh .travis.coverage.sh env: - COVERAGE_FLAGS="--coverage-text --coverage-clover=clover.xml" - language: php php: 7.4snapshot before_script: - composer install - language: php php: nightly before_script: - composer install - name: "PHP: 7.2" language: sh os: windows before_script: - choco install php --version 7.2.15 --package-parameters='"/InstallDir:C:\php"' # Export windows path into unix path - export PATH=/c/php:$PATH # Enable openssl, mbstring php extensions - sed -i 's/;extension=openssl/extension=openssl/g' /c/php/php.ini - sed -i 's/;extension=mbstring/extension=mbstring/g' /c/php/php.ini - wget http://getcomposer.org/composer.phar - php composer.phar install allow_failures: - php: nightly - php: 7.4snapshot script: - vendor/bin/phpunit --verbose ${COVERAGE_FLAGS} --colors
Enable building for PHP7.3 and 7.4 snapshot as well
Enable building for PHP7.3 and 7.4 snapshot as well
YAML
mit
lisachenko/go-aop-php,goaop/framework,goaop/framework,lisachenko/go-aop-php
bb7dfd745624e703aa1b6b8ad6050799ea776305
.travis.yml
.travis.yml
language: c os: - linux - osx dist: trusty script: - if [ $(uname) = Linux ]; then sudo apt-get install -y doxygen; fi - tools/gyp/gyp --depth=. --format=make utf8rewind.gyp - make -j4 - make -j4 tests-rewind - output/*/x86/Debug/tests-rewind
language: c os: - linux - osx dist: trusty script: - if [ $(uname) = Linux ]; then sudo apt-get install -y doxygen; fi - if [ $(uname) = Darwin ]; then brew install doxygen; fi - tools/gyp/gyp --depth=. --format=make utf8rewind.gyp - make -j4 - make -j4 tests-rewind - output/*/x86/Debug/tests-rewind
Install doxygen with homebrew on mac
Install doxygen with homebrew on mac
YAML
mit
tkelman/utf8rewind,tkelman/utf8rewind,tkelman/utf8rewind,tkelman/utf8rewind
55c7a99b64cefa2c92b14b5a644195c954f384b3
.travis.yml
.travis.yml
language: node_js node_js: - node script: - npm run build after_success: - git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" - git fetch --unshallow - git config user.name "Travis CI" - git config user.email "[email protected]" - git clean -fd - git checkout -- . - git checkout gh-pages - git checkout master . - npm run build - ls -lah - git add --all - git commit -m "Update build" - git push "https://${GH_TOKEN}@github.com/tsg-ut/mnemo.git" gh-pages:gh-pages --follow-tags > /dev/null 2>&1 branches: except: - /^v\d+\.\d+\.\d+$/ - gh-pages notifications: webhooks: http://webhook.hakatashi.com/travis
language: node_js node_js: - node script: - npm run build after_success: - git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" - git fetch - git config user.name "Travis CI" - git config user.email "[email protected]" - git clean -fd - git checkout -- . - git checkout gh-pages - git checkout master . - npm run build - ls -lah - git add --all - git commit -m "Update build" - git push "https://${GH_TOKEN}@github.com/tsg-ut/mnemo.git" gh-pages:gh-pages --follow-tags > /dev/null 2>&1 branches: except: - /^v\d+\.\d+\.\d+$/ - gh-pages notifications: webhooks: http://webhook.hakatashi.com/travis
Remove unshallow from fetch command
Remove unshallow from fetch command
YAML
mit
tsg-ut/mnemo,tsg-ut/mnemo
7ed6263167054d4e081d64a0e51e2b13e285d2ba
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.2 before_install: - export LANG=en_US.UTF-8 install: - gem install cocoapods --pre --no-document - gem install xcpretty --no-document - pod _1.0.0.beta.3_ install - cd project && pod _1.0.0.beta.3_ install script: - rake travis
language: objective-c osx_image: xcode7.2 before_install: - export LANG=en_US.UTF-8 install: - gem install cocoapods -v 1.0.0.beta.2 --no-document - gem install xcpretty --no-document - pod _1.0.0.beta.3_ install - cd project && pod _1.0.0.beta.2_ install script: - rake travis
Fix cocoapods to v1 beta 2
Fix cocoapods to v1 beta 2
YAML
apache-2.0
cloudant/CDTDatastore,cloudant/CDTDatastore,cloudant/CDTDatastore,cloudant/CDTDatastore
c94bcbd296c8238eed8d844cb2d6fcb69b459cbb
.travis.yml
.travis.yml
language: c before_install: - sudo apt-get update -qq install: - sudo apt-get install -y gfortran scons script: - scons --clean - scons - scons test - ./test-udsp - scons test --clean - scons --clean - export CFLAGS="-coverage -g -O0 $CFLAGS" - export LDFLAGS="-coverage $LDFLAGS" - scons test - ./test-udsp - gcov udsp.c compiler: - clang - gcc after_success: - bash <(curl -s https://codecov.io/bash)
language: c before_install: - sudo apt-get update -qq install: - sudo apt-get install -y gfortran scons script: - scons --clean - scons - scons test - ./test-udsp - scons test --clean - scons --clean - export CFLAGS="-coverage -g -O0 $CFLAGS" - export LDFLAGS="-coverage $LDFLAGS" - scons test - ./test-udsp - gcov udsp.c compiler: - clang - gcc after_success: - bash <(curl -s https://codecov.io/bash) -g './test-*'
Exclude the unit tests themselves from the code coverage report.
Exclude the unit tests themselves from the code coverage report.
YAML
isc
eliteraspberries/udsp,eliteraspberries/udsp
1efedaf49e5e51569234c59079af07aaf238a1c5
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" install: - "pip install -r requirements-dev.txt" script: - "python setup.py test"
language: python python: - "2.7" - "3.4" install: - "pip install -r requirements-dev.txt" - "pip install coverage" - "pip install coveralls" script: - "coverage run --source=damn setup.py test" after_success: coveralls
Add coveralls support for TravisCI
[TEST] Add coveralls support for TravisCI
YAML
mit
rclement/yodel,rclement/yodel
cd6829e4e153a6c97f77cdd88cd1a24b1981fc5f
.travis.yml
.travis.yml
language: php before_install: - sudo apt-get update -qq - sudo apt-get install -qq clamav-daemon - sudo chmod 777 /tmp/clamav - sudo sed -i 's#/var/lib/clamav#/tmp/clamav#g' /etc/clamav/clamd.conf - sudo sed -i 's#/var/lib/clamav#/tmp/clamav#g' /etc/clamav/freshclam.conf - sudo sh -c 'echo TCPSocket 3310 >> /etc/clamav/clamd.conf' - sudo freshclam - sudo rsync -ar /tmp/clamav/ /var/lib/clamav/ - sudo /etc/init.d/clamav-daemon start cache: directories: - $HOME/.composer/cache - /tmp/clamav install: - composer install php: - 5.6 - 7.0 - 7.1 script: - vendor/bin/phpunit
language: php before_install: - sudo apt-get update -qq - sudo apt-get install -qq clamav-daemon - sudo chmod 777 /tmp/clamav - sudo sed -i 's#/var/lib/clamav#/tmp/clamav#g' /etc/clamav/clamd.conf - sudo sed -i 's#/var/lib/clamav#/tmp/clamav#g' /etc/clamav/freshclam.conf - sudo sh -c 'echo TCPSocket 3310 >> /etc/clamav/clamd.conf' - sudo freshclam - sudo rsync -ar /tmp/clamav/ /var/lib/clamav/ - sudo /etc/init.d/clamav-daemon start cache: directories: - $HOME/.composer/cache - /tmp/clamav install: - composer install php: - 5.6 - 7.0 - 7.1 - nightly matrix: allow_failures: - php: nightly script: - vendor/bin/phpunit
Add support for nightly build
Add support for nightly build
YAML
mit
jonjomckay/quahog
c70c41e046206d7d1050fcffaeea2fdffee44e55
.travis.yml
.travis.yml
language: node_js before_install: - npm install -g npm@~1.4.18 node_js: - "0.10" - "0.12" script: - istanbul cover grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true ) && rm -rf coverage before_script: - npm install -g istanbul grunt-cli - npm install coveralls # - npm install git+https://github.com/node-red/node-red.git - npm install node-red - export NODE_RED_HOME=`pwd`/node_modules/node-red - (cd $NODE_RED_HOME ; npm install nock@~0.48.0 )
language: node_js before_install: - npm install -g npm@~1.4.18 node_js: - "0.10" - "0.12" script: - istanbul cover grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true ) && rm -rf coverage before_script: - npm install -g istanbul grunt-cli - npm install coveralls - npm install git+https://github.com/node-red/node-red.git - export NODE_RED_HOME=`pwd`/node_modules/node-red - (cd $NODE_RED_HOME ; npm install nock@~0.48.0 )
Install NR from git not npm
Install NR from git not npm
YAML
apache-2.0
node-red/node-red-web-nodes,node-red/node-red-web-nodes,SenseTecnic/node-red-web-nodes,SenseTecnic/node-red-web-nodes