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
1af055e1b9a1bc69d322b35c85f3c92292e6dcb5
.travis.yml
.travis.yml
before_install: gem install bundler -v 1.14.3 cache: bundler gemfile: - gemfiles/rails3.2.gemfile - gemfiles/rails4.x.gemfile - gemfiles/rails5.x.gemfile - gemfiles/sinatra1.x.gemfile language: ruby matrix: allow_failures: # json 1.8.3 fails to build under 2.4.0 - rvm: 2.4.0 gemfile: gemfiles/rails3.2.gemfile - rvm: 2.4.0 gemfile: gemfiles/rails4.x.gemfile - rvm: 2.4.0 gemfile: gemfiles/sinatra1.x.gemfile exclude: # rails 5 requires Ruby 2.2.2+ - rvm: 2.1.10 gemfile: gemfiles/rails5.x.gemfile fast_finish: true notifications: email: false rvm: - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 sudo: false
before_install: gem install bundler -v 1.14.3 cache: bundler gemfile: - gemfiles/rails3.2.gemfile - gemfiles/rails4.x.gemfile - gemfiles/rails5.x.gemfile - gemfiles/sinatra1.x.gemfile language: ruby matrix: allow_failures: # json 1.8.3 fails to build under 2.4.0 - rvm: 2.4.0 gemfile: gemfiles/rails3.2.gemfile - rvm: 2.4.0 gemfile: gemfiles/rails4.x.gemfile - rvm: 2.4.0 gemfile: gemfiles/sinatra1.x.gemfile exclude: # rails 5 requires Ruby 2.2.2+ - rvm: 2.1.10 gemfile: gemfiles/rails5.x.gemfile fast_finish: true notifications: email: false rvm: - 2.2.6 - 2.3.3 - 2.4.0 sudo: false
Remove Ruby 2.1 from testing.
Remove Ruby 2.1 from testing. Ruby 2.1 is no longer officially maintained.
YAML
mit
codeschool/rapporteur,envylabs/rapporteur,envylabs/rapporteur
0b072fc3536e3d050bd9095fb8f9caac7823b72b
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "0.10" - "0.12" - "1.2" after_success: npm run coveralls
language: node_js sudo: false node_js: - "0.10" - "0.12" - "iojs" after_success: npm run coveralls
Test io.js instead of a specific version
Test io.js instead of a specific version
YAML
mit
jstransformers/jstransformer-uglify-js
f8d654d116f05a5f97d6c9d0fa62cc7f1c38a241
.travis.yml
.travis.yml
language: c compiler: - gcc before_install: - wget http://www.cmake.org/files/v3.3/cmake-3.3.1-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz - tar xzf /tmp/cmake.tar.gz - export PATH=$PWD/cmake-3.3.1-Linux-x86_64/bin/:$PATH - export LD_LIBRARY_PATH=$PWD/build/dist/lib:$LD_LIBRARY_PATH - sudo pip install cpp-coveralls - sudo apt-get install libssl-dev script: - mkdir build - cd build && cmake .. && make all test after_success: - coveralls --exclude dist --exclude project_cn-cbor-prefix --gcov-options '\-lp'
language: c compiler: - gcc before_install: - wget http://www.cmake.org/files/v3.3/cmake-3.3.1-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz - tar xzf /tmp/cmake.tar.gz - export PATH=$PWD/cmake-3.3.1-Linux-x86_64/bin/:$PATH - export LD_LIBRARY_PATH=$PWD/build/dist/lib:$LD_LIBRARY_PATH - sudo pip install cpp-coveralls - sudo apt-get install libssl-dev script: - mkdir build - cd build && cmake .. && make all test - make coveralls
Use the cmake scripts instead of command line
Use the cmake scripts instead of command line
YAML
bsd-3-clause
hildjj/COSE-C,jimsch/COSE-C,cose-wg/COSE-C,cose-wg/COSE-C,hildjj/COSE-C,cose-wg/COSE-C,jimsch/COSE-C,jimsch/COSE-C,hildjj/COSE-C
fcd5149e4a93c49f2c90dde3875aadae0d1238e6
.travis.yml
.travis.yml
language: c compiler: gcc before_script: - wget http://saffire-lang.org/travis/libicu-dev_4.8.1.1-3_amd64.deb - wget http://saffire-lang.org/travis/libicu48_4.8.1.1-3_amd64.deb - sudo dpkg -i libicu48_4.8.1.1-3_amd64.deb - sudo dpkg -i libicu-dev_4.8.1.1-3_amd64.deb - sudo mkdir -p /usr/share/saffire/modules - sudo ln -s `pwd`/sfl /usr/share/saffire/modules/sfl before_install: - sudo apt-get update -qq - sudo apt-get install -qq libpcre3-dev libfcgi-dev libedit-dev libbz2-dev libxml2-dev - sudo apt-get install -qq php5-cli php-pear - sudo apt-get install -qq libcunit1-dev - printf "\n" | sudo pecl install yaml - sudo sh -c 'echo "extension = yaml.so" >> /etc/php5/cli/php.ini' env: SAFFIRE_TEST_BIN=build/release/saffire script: ./build.sh && sh unittest.sh notifications: irc: "irc.freenode.org#saffire"
language: c compiler: - clang - gcc before_script: - wget http://saffire-lang.org/travis/libicu-dev_4.8.1.1-3_amd64.deb - wget http://saffire-lang.org/travis/libicu48_4.8.1.1-3_amd64.deb - sudo dpkg -i libicu48_4.8.1.1-3_amd64.deb - sudo dpkg -i libicu-dev_4.8.1.1-3_amd64.deb - sudo mkdir -p /usr/share/saffire/modules - sudo ln -s `pwd`/sfl /usr/share/saffire/modules/sfl before_install: - sudo apt-get update -qq - sudo apt-get install -qq libpcre3-dev libfcgi-dev libedit-dev libbz2-dev libxml2-dev - sudo apt-get install -qq php5-cli php-pear - sudo apt-get install -qq libcunit1-dev - printf "\n" | sudo pecl install yaml - sudo sh -c 'echo "extension = yaml.so" >> /etc/php5/cli/php.ini' env: SAFFIRE_TEST_BIN=build/release/saffire script: ./build.sh && sh unittest.sh notifications: irc: "irc.freenode.org#saffire"
Add clang to the build matrix
Add clang to the build matrix
YAML
bsd-3-clause
Drarok/saffire,saffire/saffire,Drarok/saffire,Drarok/saffire,jaytaph/saffire,saffire/saffire,jaytaph/saffire,jaytaph/saffire,jaytaph/saffire,steazzalini/saffire,Drarok/saffire,saffire/saffire,steazzalini/saffire,steazzalini/saffire,saffire/saffire,Drarok/saffire,steazzalini/saffire,saffire/saffire,steazzalini/saffire,jaytaph/saffire
ea30584b2aa2b605e01dbca1cc30f3fb136b990a
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - master env: - dependencies=lowest - dependencies=highest matrix: allow_failures: - php: master env: dependencies=lowest - php: master env: dependencies=highest before_script: - phpenv config-rm xdebug.ini - composer self-update - if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --no-interaction; fi; - if [ "$dependencies" = "highest" ]; then composer update --no-interaction; fi; script: - vendor/bin/phing - > wget https://github.com/maglnet/ComposerRequireChecker/releases/download/0.2.1/composer-require-checker.phar && php composer-require-checker.phar check --config-file=$PWD/build/composer-require-checker.json composer.json cache: directories: - $HOME/.composer/cache - tmp
language: php php: - 7.1 - 7.2 - master env: - dependencies=lowest - dependencies=highest matrix: allow_failures: - php: master env: dependencies=lowest - php: master env: dependencies=highest before_script: - phpenv config-rm xdebug.ini - composer self-update - if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --no-interaction; fi; - if [ "$dependencies" = "highest" ]; then composer update --no-interaction; fi; script: - vendor/bin/phing - > wget https://github.com/maglnet/ComposerRequireChecker/releases/download/0.2.1/composer-require-checker.phar && php composer-require-checker.phar check --config-file=$PWD/build/composer-require-checker.json composer.json cache: directories: - $HOME/.composer/cache - tmp - vendor
Add vendor/ directory to Travis cache
Add vendor/ directory to Travis cache
YAML
mit
phpstan/phpstan,phpstan/phpstan,phpstan/phpstan,phpstan/phpstan
b8352d326763d31953718d519d0ba263fcbf9ed8
.travis.yml
.travis.yml
language: node_js node_js: - 0.11 - 0.12 - 4.0 sudo: false script: - npm run ci notifications: email: - kimmobrunfeldt@gmail.com
language: node_js node_js: - 4.0 - 4.1 sudo: false script: - npm run ci notifications: email: - kimmobrunfeldt@gmail.com
Use only latest nodejs versions with latest assert library
Use only latest nodejs versions with latest assert library
YAML
mit
kimmobrunfeldt/arr-xor
b21f6d3e4d1bd12e85a07426ca53e810aaa3bacf
.travis.yml
.travis.yml
language: go go: - 1.6.x - 1.7.x sudo: false script: - export GOROOT=/usr/local/go - export GOPATH=$HOME/go - export PATH=$PATH:$GOROOT/bin:$GOPATH/bin install: - git clone https://github.com/bitgo/prova $GOPATH/src/github.com/bitgo/prova - cd $GOPATH/src/github.com/bitgo/prova - go get -u github.com/Masterminds/glide - glide install - go install . ./cmd/... - cd $GOPATH/src/github.com/bitgo/prova/blockchain - go test -v
language: go go: - 1.8.x - 1.9.x sudo: false script: - export GOROOT=/usr/local/go - export GOPATH=$HOME/go - export PATH=$PATH:$GOROOT/bin:$GOPATH/bin install: - git clone https://github.com/bitgo/prova $GOPATH/src/github.com/bitgo/prova - cd $GOPATH/src/github.com/bitgo/prova - go get -u github.com/Masterminds/glide - glide install - go install . ./cmd/... - cd $GOPATH/src/github.com/bitgo/prova/blockchain - go test -v
Use GO versions 1.8 and 1.9 in Travis testing.
Use GO versions 1.8 and 1.9 in Travis testing.
YAML
isc
BitGo/prova,BitGo/prova
3ae47e2eebc6e6772fd8da3a7fbb68c1c2e05673
.travis.yml
.travis.yml
language: php matrix: include: - php: 5.6 - php: 7.0 - php: 7.1 - php: 7.2 - php: 7.3 fast_finish: true cache: directories: - $HOME/.composer/cache before_install: - phpenv config-rm xdebug.ini || return 0 - travis_retry composer self-update install: - travis_retry composer update --no-interaction script: - composer validate --strict --no-check-lock - ./vendor/bin/php-cs-fixer fix . -v --dry-run --using-cache=no - ./vendor/bin/phpunit
language: php matrix: include: - php: 5.6 - php: 7.0 - php: 7.1 - php: 7.2 - php: 7.3 env: PHP_CS_FIXER_IGNORE_ENV=1 IGNORE_PLATFORM_REQS=--ignore-platform-reqs # awful ugly hack fast_finish: true cache: directories: - $HOME/.composer/cache before_install: - phpenv config-rm xdebug.ini || return 0 - travis_retry composer self-update install: - travis_retry composer update --no-interaction $IGNORE_PLATFORM_REQS script: - composer validate --strict --no-check-lock - composer check-style - composer test
Add temp fix for php-cs-fixer mess
Add temp fix for php-cs-fixer mess
YAML
mit
BrainMaestro/composer-git-hooks
c39cd026d7eb69e9bd776b1f531e6911156a5136
.travis.yml
.travis.yml
language: python python: - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "3.6-dev" # 3.6 development branch - "nightly" # currently points to 3.7-dev install: "pip install -r requirements.txt" script: - "python manage.py test" - "python -m pylint fat"
language: python python: - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "3.6-dev" # 3.6 development branch - "nightly" # currently points to 3.7-dev install: "pip install -r requirements.txt" script: - "python manage.py test" - "python manage.py migrate && python manage.py loaddata fixtures/demo.json" - "python -m pylint fat"
Add continuous integration for fixtures
Add continuous integration for fixtures
YAML
bsd-3-clause
softwaresaved/fat,softwaresaved/fat,softwaresaved/fat,softwaresaved/fat
da95bf93de14440c2de9ec0b9f913f1b738f0362
.travis.yml
.travis.yml
language: php sudo: false git: depth: 2 cache: directories: - $HOME/.composer/cache env: matrix: - PREFER_LOWEST="" - PREFER_LOWEST="--prefer-lowest" php: - 7.1 - 7.0 - 5.6 - nightly - hhvm before_install: - composer self-up - composer config --global github-oauth.github.com $GITHUB_OAUTH_TOKEN install: - composer update --no-interaction --prefer-stable $PREFER_LOWEST script: - composer exec phpunit -- --coverage-clover=build/logs/clover.xml - composer exec behat -- --format=progress after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml matrix: fast_finish: true
language: php sudo: false cache: directories: - $HOME/.composer/cache env: matrix: - PREFER_LOWEST="" - PREFER_LOWEST="--prefer-lowest" php: - 7.1 - 7.0 - 5.6 - nightly - hhvm before_install: - composer self-up - composer config --global github-oauth.github.com $GITHUB_OAUTH_TOKEN install: - composer update --no-interaction --prefer-stable $PREFER_LOWEST script: - composer exec phpunit -- --coverage-clover=build/logs/clover.xml - composer exec behat -- --format=progress after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml matrix: fast_finish: true
Remove git depth setting for Travis
Remove git depth setting for Travis
YAML
mit
burntromi/exception-generator,burntromi/exception-generator
80af209a003624f19bf648df73601b682bfa4fe3
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12"
language: node_js node_js: - "0.12" - "4.0" - "4.1"
Update Node versions at Travis
Update Node versions at Travis Dropped support for Node 0.10. There's no `execSync`...
YAML
mit
austinsc/react-gooey,austinsc/react-gooey
a06ae3cc37f37543ed4c3e783019061ab3875ebe
.travis.yml
.travis.yml
language: java sudo: false jdk: - oraclejdk8 - openjdk11 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
language: java jdk: - oraclejdk8 - openjdk11 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
Remove obsolete Travis CI configuration
Remove obsolete Travis CI configuration Remove the `sudo` configuration, the builds run now always in the same (new) infrastructure regardless of the configuration.
YAML
apache-2.0
zaproxy/zap-api-java
8d14bb9ded220fe022c4c6907590917412add7dd
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 - ruby-head - jruby-head sudo: false before_install: gem install bundler cache: bundler script: bundle exec rspec
language: ruby rvm: - 2.2.10 - 2.3.7 - 2.4.4 - 2.5.1 - ruby-head - jruby-head sudo: false before_install: gem install bundler cache: bundler script: bundle exec rspec
Support for latest ruby versions
Support for latest ruby versions
YAML
mit
0exp/evil_events,0exp/evil_events
5ea40476a17b92c2f17bde49531c434f7ed3f974
opt/nitor/template-snippets/policy_baking.yaml
opt/nitor/template-snippets/policy_baking.yaml
# Copyright 2016 Nitor Creations Oy # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Ref: resourceBakeRole PolicyName: allowBaking PolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Resource: '*' Action: - 'ec2:CreateImage' - 'ec2:CreateTags' - 'ec2:DeleteSnapshot' - 'ec2:DeregisterImage' - 'ec2:DescribeImages' - 'ec2:DescribeInstances' - 'ec2:DescribeSecurityGroups' - 'ec2:DescribeSubnets' - 'ec2:DescribeTags' - 'ec2:ModifyImageAttribute' - 'ec2:RunInstances' - 'ec2:TerminateInstances' - 'rds:DescribeDBInstances' - 'sts:AssumeRole' - 'ec2:DescribeVpcs' - Effect: Allow Resource: {'Fn::GetAtt': [ resourceBakeRole, Arn ]} Action: - 'iam:PassRole'
# Copyright 2016 Nitor Creations Oy # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Ref: resourceBakeRole PolicyName: allowBaking PolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Resource: '*' Action: - 'ec2:CreateImage' - 'ec2:CreateTags' - 'ec2:DeleteSnapshot' - 'ec2:DeregisterImage' - 'ec2:DescribeImages' - 'ec2:DescribeInstances' - 'ec2:DescribeSecurityGroups' - 'ec2:DescribeSubnets' - 'ec2:DescribeTags' - 'ec2:ModifyImageAttribute' - 'ec2:RunInstances' - 'ec2:TerminateInstances' - 'rds:DescribeDBInstances' - 'sts:AssumeRole' - 'ec2:DescribeVpcs' - 'sts:DecodeAuthorizationMessage' - Effect: Allow Resource: {'Fn::GetAtt': [ resourceBakeRole, Arn ]} Action: - 'iam:PassRole'
Add allow decode authorization message
Add allow decode authorization message
YAML
apache-2.0
NitorCreations/aws-utils,NitorCreations/aws-utils,NitorCreations/aws-utils,NitorCreations/aws-utils
a7295e103023e12152fc0940906071b18356def3
.travis.yml
.travis.yml
dist: xenial sudo: false language: python python: - "2.7" - "3.5" - "3.6" - "3.7" - "pypy2.7-6.0" - "pypy3.5" env: - CASS_DRIVER_NO_CYTHON=1 addons: apt: packages: - build-essential - python-dev - pypy-dev - libc-ares-dev - libev4 - libev-dev install: - pip install --upgrade setuptools - pip install tox-travis - if [[ $TRAVIS_PYTHON_VERSION != pypy3.5 ]]; then pip install lz4; fi script: - tox - tox -e gevent_loop - tox -e eventlet_loop
dist: xenial sudo: false language: python python: - "2.7" - "3.5" - "3.6" - "3.7" - "3.8" - "pypy2.7-6.0" - "pypy3.5" env: - CASS_DRIVER_NO_CYTHON=1 addons: apt: packages: - build-essential - python-dev - pypy-dev - libc-ares-dev - libev4 - libev-dev install: - pip install --upgrade setuptools importlib-metadata - pip install tox-travis - if [[ $TRAVIS_PYTHON_VERSION != pypy3.5 ]]; then pip install lz4; fi script: - tox - tox -e gevent_loop - tox -e eventlet_loop
Upgrade importlib-metadata to a much newer version
PYTHON-1294: Upgrade importlib-metadata to a much newer version
YAML
apache-2.0
datastax/python-driver,datastax/python-driver
5a1442981e197dee7363a0ae3936aaf0942bb1f5
.travis.yml
.travis.yml
language: node_js node_js: - '7' - '8' - '9' - '10' after_success: - npm run coveralls
language: node_js node_js: - '7' - '8' - '9' - '10' - '11' after_success: - npm run coveralls
Use Node.js 11 for testing
Use Node.js 11 for testing Signed-off-by: Takuya Noguchi <b6ff22f4ae6fe3ca1371a0ef8d104f1c4bca551b@gmail.com>
YAML
mit
hustcc/timeago.js,hustcc/timeago.js,hustcc/timeago.js
e6282a7cc577290a53b298334fca4d7538ded66f
.travis.yml
.travis.yml
sudo: false language: go go: - 1.7.x - 1.8.x - master install: - go get -t -v ./... script: - go test -v -race ./... matrix: allow_failures: - go: master fast_finish: true
sudo: false language: go go: - 1.8.x - 1.11.x - master install: - go get -t -v ./... script: - go test -v -race ./... matrix: allow_failures: - go: master fast_finish: true
Drop go 1.7.x tests, add go 1.11.x
Drop go 1.7.x tests, add go 1.11.x
YAML
apache-2.0
abbot/go-http-auth
edb4dd6c8a176b7c653e5559e8e5ac4dc7ecccef
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8.3 script: - xcodebuild clean test -project Yopuy.xcodeproj -scheme Yopuy
language: objective-c osx_image: xcode8.3 before_install: - gem install jazzy --version 0.7.5 script: - xcodebuild clean test -project Yopuy.xcodeproj -scheme Yopuy - jazzy --output docs/ deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN local_dir: docs on: branch: master
Update CI builds to deploy documentation
Update CI builds to deploy documentation
YAML
mit
lukesutton/yopuy
522b7e76ac3edf766b06109fc42e2b277762b0ce
.travis.yml
.travis.yml
language: ruby rvm: - "2.0.0" - "2.1.4" script: rake
language: ruby rvm: - "2.0.0" - "2.1.4" - "2.2.0" - "ruby-head" script: rake
Test newer rubies as well
Test newer rubies as well
YAML
mit
pombredanne/gem-compare,fedora-ruby/gem-compare
ba4553e225472163cdf992071d2132ff2a2752f3
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" before_install: - "sudo apt-get update -qq" - "sudo apt-get install -y python-setuptools python-all" install: - "pip install lxml" - "pip install pytest" - "pip install stdeb" - "python setup.py develop" - python setup.py --command-packages=stdeb.command bdist_deb script: py.test deploy: provider: packagecloud repository: "wirecurly" username: "fedecastro" token: "18e4aa85a6d6b92479a46a47de5fcf852c2a5b9e33f086ce" dist: "debian/wheezy"
language: python python: - "2.6" - "2.7" before_install: - "sudo apt-get update -qq" - "sudo apt-get install -y python-setuptools python-all debhelper" install: - "pip install lxml" - "pip install pytest" - "pip install stdeb" - "python setup.py develop" - python setup.py --command-packages=stdeb.command bdist_deb script: py.test deploy: provider: packagecloud repository: "wirecurly" username: "fedecastro" token: "18e4aa85a6d6b92479a46a47de5fcf852c2a5b9e33f086ce" dist: "debian/wheezy"
Add deb helper for building
Add deb helper for building
YAML
mpl-2.0
IndiciumSRL/wirecurly
7cabf6492455f2f5f63b7ae47fd8810e4e42c17f
.travis.yml
.travis.yml
sudo: false language: php php: - 7.1 - 7.2 - nightly matrix: fast_finish: true allow_failures: - php: nightly env: matrix: - PREFER_LOWEST = "--prefer-lowest --prefer-stable" - PREFER_LOWEST = "" before_script: - travis_retry composer self-update - travis_retry composer update $PREFER_LOWEST --no-interaction script: - make travis after_success: - if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then bash <(curl -s https://codecov.io/bash); fi cache: directories: - $HOME/.composer/cache
sudo: false language: php php: - 7.1 - 7.2 - nightly matrix: fast_finish: true allow_failures: - php: nightly env: matrix: - PREFER_LOWEST = "--prefer-lowest --prefer-stable" - PREFER_LOWEST = "" before_script: - travis_retry composer self-update - travis_retry composer update $PREFER_LOWEST --no-interaction script: - make travis after_success: - bash <(curl -s https://codecov.io/bash) cache: directories: - $HOME/.composer/cache
Fix Travis + Codecov integration
Fix Travis + Codecov integration
YAML
mit
tuupola/slim-basic-auth
2de810e601bc1303c2f3c2321c7412e7e081afee
.travis.yml
.travis.yml
language: ruby # Apparently sudo is required to test on Rubinius and JRuby-head sudo: required # See https://docs.travis-ci.com/user/languages/ruby/#Rubinius dist: trusty rvm: # MRI - ruby-head - 2.7 - 2.6 - 2.5 - 2.4 - 2.3 - 2.2 - 2.1 - 1.9.3 - 1.8.7 - ree # JRuby - jruby-head - jruby-9.2 - jruby-9.1 - jruby-9.0 # Rubinius - rubinius-3 # Truffleruby - truffleruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rubinius-3 fast_finish: true
language: ruby # Apparently sudo is required to test on Rubinius and JRuby-head sudo: required # See https://docs.travis-ci.com/user/languages/ruby/#Rubinius dist: trusty rvm: # MRI - ruby-head - 2.7 - 2.6 - 2.5 - 2.4 - 2.3 - 2.2 - 2.1 - 1.9.3 - 1.8.7 - ree # JRuby - jruby-head - jruby-9.2 - jruby-9.1 - jruby-9.0 # Rubinius - rbx-3 # Truffleruby - truffleruby-head - truffleruby - truffleruby-20.2.0 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: truffleruby-head - rvm: rbx-3 fast_finish: true
Fix rubinius target to rbx-3 in CI, add truffle versions
Fix rubinius target to rbx-3 in CI, add truffle versions
YAML
mit
ms-ati/docile
7b7e1226a2b6cb25f153dd854229546abce49fa4
.travis.yml
.travis.yml
language: node_js node_js: - 0.12 - 4 - 5 - 6 - env: - MONGOOSE_VERSION=3.8 - matrix: include: - node_js: 4 env: MONGOOSE_VERSION=4 include: - node_js: 4 env: MONGOOSE_VERSION=3.7 include: - node_js: 4 env: MONGOOSE_VERSION=3.6 include: - node_js: 4 env: MONGOOSE_VERSION=3.5 include: - node_js: 4 env: MONGOOSE_VERSION=3.4 include: - node_js: 4 env: MONGOOSE_VERSION=3.3 include: - node_js: 4 env: MONGOOSE_VERSION=3.2 include: - node_js: 4 env: MONGOOSE_VERSION=3.1 include: - node_js: 4 env: MONGOOSE_VERSION=3.0 before_script: - npm install mongoose@$MONGOOSE_VERSION services: - mongodb
language: node_js node_js: - 0.12 - 4 - 5 - 6 - env: - MONGOOSE_VERSION=3.8 - matrix: - env: MONGOOSE_VERSION=4 - env: MONGOOSE_VERSION=3.7 - env: MONGOOSE_VERSION=3.6 - env: MONGOOSE_VERSION=3.5 - env: MONGOOSE_VERSION=3.4 - env: MONGOOSE_VERSION=3.3 - env: MONGOOSE_VERSION=3.2 - env: MONGOOSE_VERSION=3.1 - env: MONGOOSE_VERSION=3.0 before_script: - npm install mongoose@$MONGOOSE_VERSION services: - mongodb
Test against everything lets see what works
Test against everything lets see what works
YAML
bsd-3-clause
GetStream/stream-node
2e70f7caebe8e9bec0263be80b0e3f4db0ff0f71
.travis.yml
.travis.yml
language: python notifications: email: false webhooks: urls: - https://webhooks.gitter.im/e/06cf2c44aa8e55ab06c8 on_success: always on_failure: always on_start: false python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 before_install: - sudo apt-get update - sudo apt-get install wget build-essential - sudo apt-get install python3-setuptools python-setuptools install: - sudo apt-get install pep8 python-nose - pip install coverage - pip install --use-mirrors python-coveralls - pip install networkx - pip install bitstring script: - sudo chmod 777 test_travis.sh - ./test_travis.sh after_success: coveralls notifications: irc: "chat.freenode.net#binpy-soc"
sudo : false language: python notifications: email: false webhooks: urls: - https://webhooks.gitter.im/e/06cf2c44aa8e55ab06c8 on_success: always on_failure: always on_start: false addons: apt: packages: python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 install: - pip install pep8 - pip install coverage - pip install --use-mirrors python-coveralls - pip install networkx - pip install bitstring script: - sudo chmod 777 test_travis.sh - ./test_travis.sh after_success: coveralls notifications: irc: "chat.freenode.net#binpy-soc"
Switch to container based infrastructure
Switch to container based infrastructure
YAML
bsd-3-clause
BinPy/BinPy,BinPy/BinPy
93e8791ae165711780b0cddd6fff140764c8ce1c
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 - 2.1.0 # Don't install local development gems on Travis bundler_args: --without development # Only test master branches: only: - master script: bundle exec rspec --color --format progress
rvm: - 1.9.3 - 2.0.0 - 2.1.0 # Don't install local development gems on Travis, use parallel gem downloads bundler_args: --without development --jobs 7 # Only test master branches: only: - master script: bundle exec rspec --color --format progress
Use parallel downloaders for bundler on Travis
Use parallel downloaders for bundler on Travis
YAML
apache-2.0
sethvargo/chef-api,sethvargo/chef-api
ec2e87d911d4825bfc910dd29b1d258acd0ca3bf
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" # command to install dependencies install: - "pip install ." - "pip install -r testing-requirements.txt" - "pip install python-coveralls" # command to run tests script: - tests/run_tests.sh after_success: - coveralls --base_dir tests
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" env: - TORNADO_VERSION = ">= 4.0" - TORNADO_VERSION = "== 3.2.2" # command to install dependencies install: - "pip install ." - "pip install -r testing-requirements.txt" - "pip install python-coveralls" # command to run tests script: - tests/run_tests.sh after_success: - coveralls --base_dir tests
Update Travis CI tests to test tornado 4 and 3
Update Travis CI tests to test tornado 4 and 3
YAML
apache-2.0
virtuald/greenado,virtuald/greenado
f8a5aa4e2f2d360634b5902882ad8173b57de314
.travis.yml
.travis.yml
# Check on http://lint.travis-ci.org/ after modifying it! Originally # modified from https://gist.github.com/dan-blanchard/7045057 language: python python: - "2.7" env: - NUMPY_VERSION=1.8 - NUMPY_VERSION=1.7 before_install: - wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/anaconda/bin:$PATH # Update conda itself - conda update --yes conda install: - conda create --yes -n env_name python=$TRAVIS_PYTHON_VERSION pip numpy=$NUMPY_VERSION scipy matplotlib nose pep8 Sphinx - source activate env_name - pip install sphinx-bootstrap-theme future - pip install -e . --no-deps script: - nosetests --with-doctest - pep8 skbio setup.py - pushd doc - make clean - make html - make linkcheck - popd
# Check on http://lint.travis-ci.org/ after modifying it! Originally # modified from https://gist.github.com/dan-blanchard/7045057 language: python python: - "2.7" env: - NUMPY_VERSION=1.8 - NUMPY_VERSION=1.8 USE_CYTHON=True - NUMPY_VERSION=1.7 before_install: - wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/anaconda/bin:$PATH # Update conda itself - conda update --yes conda install: - conda create --yes -n env_name python=$TRAVIS_PYTHON_VERSION pip numpy=$NUMPY_VERSION scipy matplotlib nose pep8 Sphinx - if [ ${USE_CYTHON}]; then conda install -n env_name cython; fi - source activate env_name - pip install sphinx-bootstrap-theme future - pip install -e . --no-deps script: - nosetests --with-doctest - pep8 skbio setup.py - pushd doc - make clean - make html - make linkcheck - popd
Add another build that regenerates '.c' files from '.pyx'.
TST: Add another build that regenerates '.c' files from '.pyx'.
YAML
bsd-3-clause
jdrudolph/scikit-bio,colinbrislawn/scikit-bio,anderspitman/scikit-bio,jairideout/scikit-bio,wdwvt1/scikit-bio,jensreeder/scikit-bio,gregcaporaso/scikit-bio,xguse/scikit-bio,johnchase/scikit-bio,jensreeder/scikit-bio,colinbrislawn/scikit-bio,johnchase/scikit-bio,corburn/scikit-bio,jairideout/scikit-bio,jdrudolph/scikit-bio,wdwvt1/scikit-bio,SamStudio8/scikit-bio,demis001/scikit-bio,corburn/scikit-bio,averagehat/scikit-bio,Achuth17/scikit-bio,averagehat/scikit-bio,Kleptobismol/scikit-bio,SamStudio8/scikit-bio,Kleptobismol/scikit-bio,gregcaporaso/scikit-bio,kdmurray91/scikit-bio,Achuth17/scikit-bio,kdmurray91/scikit-bio,xguse/scikit-bio,demis001/scikit-bio,anderspitman/scikit-bio,Kleptobismol/scikit-bio
e506ea61be4b3776337c17ff6463e1551789ae26
.travis.yml
.travis.yml
sudo: false language: python dist: xenial python: - "2.7" after_success: - codecov virtualenv: system_site_packages: true install: - pip install -r requirements.txt - pip install --editable . - pip install codecov pytest-cov script: - py.test --cov-report xml --cov=certidude tests/ cache: directories: - $HOME/.cache/pip addons: apt: packages: - python-ldap - python-xattr
sudo: false language: python dist: trusty python: - "2.7" after_success: - codecov virtualenv: system_site_packages: true install: - pip install -r requirements.txt - pip install --editable . - pip install codecov pytest-cov script: - py.test --cov-report xml --cov=certidude tests/ cache: directories: - $HOME/.cache/pip addons: apt: packages: - python-ldap - python-xattr
Revert back to trusty for Travis, xattr package broken in xenial
Revert back to trusty for Travis, xattr package broken in xenial
YAML
mit
laurivosandi/certidude,plaes/certidude,plaes/certidude,plaes/certidude,laurivosandi/certidude,laurivosandi/certidude,laurivosandi/certidude,plaes/certidude
a8ace053ce1f4ac3b926a2eef210007ec6f2832b
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 notifications: disabled: true
language: ruby rvm: - 1.9.3 - 2.0.0 before_script: "sh -c 'cd spec/dummy && rake db:test:load'" notifications: disabled: true
Add `before_script` section for TravisCI
Add `before_script` section for TravisCI
YAML
mit
lexmag/wizardry,lexmag/wizardry
9915c72d1a979a1b6daada4d8e61e4f4db7622a9
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 1.8.7 - 2.0.0 - 2.1.0 - jruby-18mode - jruby-19mode - rbx-2 env: - RACK_VERSION=1.4.1 - RAILS_VERSION=2.3.15 - RAILS_VERSION=3.2.0 - RAILS_VERSION=4.0.0 before_install: - '[ "$TRAVIS_RUBY_VERSION" = "2.1.0" ] && gem install bundler -v ">= 1.5.1" --conservative || true' matrix: exclude: - rvm: 1.8.7 env: RAILS_VERSION=4.0.0 - rvm: jruby-18mode env: RAILS_VERSION=4.0.0
language: ruby cache: bundler sudo: false rvm: - 1.8.7 - 2.0.0 - 2.1.0 - jruby-18mode - jruby-19mode - rbx-2 env: - RACK_VERSION=1.4.1 - RAILS_VERSION=2.3.15 - RAILS_VERSION=3.2.0 - RAILS_VERSION=4.2.0 before_install: - '[ "$TRAVIS_RUBY_VERSION" = "2.1.0" ] && gem install bundler -v ">= 1.5.1" --conservative || true' matrix: exclude: - rvm: 1.8.7 env: RAILS_VERSION=4.2.0 - rvm: jruby-18mode env: RAILS_VERSION=4.2.0
Test Rackstash against Rails 4.2.0 instead of 4.0.0
Test Rackstash against Rails 4.2.0 instead of 4.0.0
YAML
mit
planio-gmbh/rackstash
d8baf0b9e730f6bcd0184efc49f73482255ce609
.travis.yml
.travis.yml
sudo: false language: python python: 3.6 cache: pip before_install: pip install flit install: flit install --deps production --extras test script: pytest -m offline jobs: include: - python: 2.7 before_install: - sudo apt-get -y install python3-pip python3-setuptools - sudo pip3 install flit install: flit install --python python --deps production --extras test - python: 3.4 - python: 3.5 - python: 3.6 - python: 3.7 dist: xenial sudo: required - python: pypy - stage: deploy name: Github Releases if: tag IS present install: skip script: flit build deploy: provider: releases api_key: $GITHUB_OAUTH_TOKEN file_glob: true file: dist/* skip_cleanup: true on: tags: true - stage: deploy name: PyPI if: tag IS present install: skip script: skip deploy: provider: script script: flit publish on: tags: true
sudo: false language: python python: 3.6 cache: pip before_install: pip install flit install: flit install --deps production --extras test script: pytest -m offline jobs: include: - python: 2.7 before_install: - sudo apt-get -y install python3-pip python3-setuptools - sudo pip3 install flit install: flit install --python python --deps production --extras test - python: 3.4 - python: 3.5 - python: 3.6 - python: 3.7 dist: xenial sudo: required - python: pypy - stage: deploy name: Github Releases if: tag IS present install: skip script: flit build deploy: provider: releases api_key: $GITHUB_OAUTH_TOKEN file_glob: true file: dist/* skip_cleanup: true draft: true on: tags: true - stage: deploy name: PyPI if: tag IS present install: skip script: skip deploy: provider: script script: flit publish on: tags: true
Put automatic GitHub releases in the draft state
Put automatic GitHub releases in the draft state This is done so that I can edit the description as needed, before publishing
YAML
bsd-3-clause
carpedm20/fbchat
7d91d8ce6e3c9da1b74222d6d6fec9b3f6f14fb0
.travis.yml
.travis.yml
language: cpp addons: apt: packages: - gfortran - libblas-dev - liblapack-dev compiler: - clang - gcc script: - make -e realclean - bash make.sh -cp2k -j - make -e samples - make -e test - bash test.sh
language: cpp addons: apt: packages: - gfortran - libblas-dev - liblapack-dev compiler: - clang - gcc script: - make -e realclean - bash make.sh -cp2k -j - make -e cp2k - make -e test - bash test.sh
Disable building the SMM sample in Travis-CI for now since Clang fails to build the code.
Disable building the SMM sample in Travis-CI for now since Clang fails to build the code.
YAML
bsd-3-clause
egeor/libxsmm,maxhutch/libxsmm,maxhutch/libxsmm,hfp/libxsmm,egeor/libxsmm,egeor/libxsmm,hfp/libxsmm,egeor/libxsmm,hfp/libxsmm,hfp/libxsmm,egeor/libxsmm,hfp/libxsmm,hfp/libxsmm,maxhutch/libxsmm,egeor/libxsmm,maxhutch/libxsmm
cdc3ab09a18376b9b66b86ea000873cc14998d61
.travis.yml
.travis.yml
language: ruby bundler_args: --without development rvm: - "1.9.3" services: postgresql before_script: - cp config/database.travis.yml config/database.yml - psql -c 'create database open_food_web_test;' -U postgres script: - RAILS_ENV=test bundle exec rake db:migrate --trace - bundle exec rake db:test:prepare - bundle exec rspec spec
language: ruby bundler_args: --without development rvm: - "1.9.3" services: postgresql before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" before_script: - cp config/database.travis.yml config/database.yml - psql -c 'create database open_food_web_test;' -U postgres script: - RAILS_ENV=test bundle exec rake db:migrate --trace - export DISPLAY=:99.0 && bundle exec rake spec
Set up xvfb for Travis
Set up xvfb for Travis
YAML
agpl-3.0
KosenkoDmitriy/openfoodnetwork,openfoodfoundation/openfoodnetwork,Em-AK/openfoodnetwork,KateDavis/openfoodnetwork,ltrls/openfoodnetwork,Matt-Yorkley/openfoodnetwork,MikeiLL/openfoodnetwork,Matt-Yorkley/openfoodnetwork,ltrls/openfoodnetwork,Matt-Yorkley/openfoodnetwork,lin-d-hop/openfoodnetwork,stveep/openfoodnetwork,KateDavis/openfoodnetwork,oeoeaio/openfoodnetwork,stveep/openfoodnetwork,KosenkoDmitriy/openfoodnetwork,ltrls/openfoodnetwork,stveep/openfoodnetwork,levent/openfoodnetwork,stveep/openfoodnetwork,folklabs/openfoodnetwork,mkllnk/openfoodnetwork,RohanM/openfoodnetwork,oeoeaio/openfoodnetwork,Em-AK/openfoodnetwork,RohanM/openfoodnetwork,Matt-Yorkley/openfoodnetwork,oeoeaio/openfoodnetwork,levent/openfoodnetwork,KateDavis/openfoodnetwork,oeoeaio/openfoodnetwork,mkllnk/openfoodnetwork,ecocitycore/openfoodnetwork,lin-d-hop/openfoodnetwork,RohanM/openfoodnetwork,folklabs/openfoodnetwork,folklabs/openfoodnetwork,levent/openfoodnetwork,mkllnk/openfoodnetwork,mkllnk/openfoodnetwork,ecocitycore/openfoodnetwork,Em-AK/openfoodnetwork,Em-AK/openfoodnetwork,openfoodfoundation/openfoodnetwork,MikeiLL/openfoodnetwork,openfoodfoundation/openfoodnetwork,MikeiLL/openfoodnetwork,ltrls/openfoodnetwork,openfoodfoundation/openfoodnetwork,ecocitycore/openfoodnetwork,folklabs/openfoodnetwork,MikeiLL/openfoodnetwork,KosenkoDmitriy/openfoodnetwork,RohanM/openfoodnetwork,lin-d-hop/openfoodnetwork,KateDavis/openfoodnetwork,lin-d-hop/openfoodnetwork,levent/openfoodnetwork,ecocitycore/openfoodnetwork,KosenkoDmitriy/openfoodnetwork
cd7f66631367cdf21c3aca403ae7a48fd53a6e31
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm branches: only: - master - develop before_script: - curl http://getcomposer.org/installer | php - php composer.phar install --dev --prefer-source script: vendor/bin/phpunit
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - nightly branches: only: - master - develop before_script: - curl http://getcomposer.org/installer | php - php composer.phar install --dev --prefer-source script: vendor/bin/phpunit
Include night PHP builds (PHP7)
Include night PHP builds (PHP7)
YAML
bsd-3-clause
swestcott/MonologExtension
a6f1faef5bcbf7bedfb0fedb92b1601326996925
.travis.yml
.travis.yml
language: node_js node_js: - "8" - "9" dist: trusty addons: chrome: stable after_success: npm run coverage
language: node_js node_js: - "8" - "9" - "10" dist: trusty addons: chrome: stable after_success: npm run coverage
Update to include node 10
Update to include node 10
YAML
mit
Cox-Automotive/alks.js,Cox-Automotive/alks.js,Cox-Automotive/alks.js
306ac62b75933e06c2ae5fb02135ec33bd1c4639
.travis.yml
.travis.yml
sudo: required dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3.0 after_success: - > [ "${TRAVIS_PULL_REQUEST}" = "false" ] || [ "${TRAVIS_RUBY_VERSION}" = "1.9.3" ] && PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST} \ bundle exec pronto run -f github_status github_pr -c origin/${TRAVIS_BRANCH}
sudo: required dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3.0 after_success: - > [ "${TRAVIS_PULL_REQUEST}" != "false" ] && [ "${TRAVIS_RUBY_VERSION}" = "1.9.3" ] && PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST} \ bundle exec pronto run -f github_status github_pr -c origin/${TRAVIS_BRANCH}
Fix Travis build for PRs by changing "= false ||" to "!= false &&"
Fix Travis build for PRs by changing "= false ||" to "!= false &&"
YAML
mit
mvz/pronto,aergonaut/pronto,mmozuras/pronto,prontolabs/pronto
fc0324f1f066b15d660abcff6ceac5499ab21db6
.travis.yml
.travis.yml
sudo: false cache: bundler language: ruby bundler_args: --without local_development script: bundle exec rake rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - jruby-19mode - rbx-2 - ruby-head - jruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head notifications: recipients: - timo.roessner@googlemail.com - matijs@matijs.net - emil.rehnberg@gmail.com irc: "irc.freenode.org#reek"
sudo: false cache: bundler language: ruby bundler_args: --without local_development script: bundle exec rake rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - jruby-19mode - rbx-2 - ruby-head - jruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head notifications: recipients: - timo.roessner@googlemail.com - matijs@matijs.net - emil.rehnberg@gmail.com - chastell@chastell.net irc: "irc.freenode.org#reek"
Add @chastell to Travis notifications
Add @chastell to Travis notifications
YAML
mit
apuratepp/reek,skywinder/reek,nTraum/reek,tansaku/reek,troessner/reek,nTraum/reek,andyw8/reek,weby/reek,apuratepp/reek,andyw8/reek,andyw8/reek,weby/reek,skywinder/reek,weby/reek,apuratepp/reek,HParker/reek,tansaku/reek,troessner/reek,HParker/reek,tansaku/reek,skywinder/reek,HParker/reek
ea649e6e76bb88bc982aa5007d59345019c6b3a8
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "4.4" - "6.3" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
sudo: false language: node_js node_js: - "4.4" - "6.3" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build after_success - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Update Travis config to latest. Move Coveralls submission to after_success .
Update Travis config to latest. Move Coveralls submission to after_success .
YAML
mit
cliffano/nestor-buildlight
956baa7629bb689f236131ad05f5db01173d07e4
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8 xcode_project: Aware.xcodeproj xcode_scheme: Aware
language: objective-c osx_image: xcode8 xcode_project: Aware.xcodeproj xcode_scheme: Aware script: xcodebuild -project Aware.xcodeproj -scheme Aware test
Use xcodebuild directly for build script
Use xcodebuild directly for build script
YAML
mit
josh/Aware
bf0a0ffedc09b347925b600c712a5869f50763f1
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 before_script: - composer install --dev script: - phpunit after_script: - php vendor/bin/coveralls
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 before_script: - composer install --dev script: - phpunit after_script: - php vendor/bin/coveralls
Add support PHP 7 for CI
Add support PHP 7 for CI
YAML
bsd-3-clause
Sleuthhound/fenom,vgrish/fenom
c0860c5e998eb298fdce85a87efab4b06db57ecd
.travis.yml
.travis.yml
sudo: required language: node_js node_js: - node cache: directories: - $HOME/.npm - node_modules script: - bash ./deploy.sh
sudo: required language: node_js node_js: - node cache: yarn: true directories: - node_modules script: - bash ./deploy.sh
Use `yarn` instead of `npm`
Use `yarn` instead of `npm`
YAML
mit
preco21/electron-docs,preco21/electron-docs
46c475305670d1b6f57976afeb215ebfe2c3a9f3
.travis.yml
.travis.yml
sudo: false language: java jdk: - oraclejdk7 env: global: - DITA_OT_VERSION=2.3 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
sudo: false language: java jdk: - oraclejdk7 env: global: - DITA_OT_VERSION=2.3.1 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
Update DITA-OT version used for CI builds
Update DITA-OT version used for CI builds
YAML
apache-2.0
dita-ot/docs,infotexture/docs,shaneataylor/docs,infotexture/docs,shaneataylor/docs
87c480d415a1673202ad0a4912f5b2f94ed336b2
.travis.yml
.travis.yml
sudo: false language: python python: - '2.6' - '2.7' - '3.3' - '3.4' - '3.5' - 'pypy' - 'pypy3' # command to install dependencies install: - pip install -r test_requirements.txt - pip install -e . - pip install coveralls # command to run tests script: - python setup.py test after_success: - coveralls - python setup.py bdist_wheel
sudo: false language: python python: - '2.6' - '2.7' - '3.3' - '3.4' - '3.5' - 'pypy' - 'pypy3' before_install: - wheel version # command to install dependencies install: - pip install -r test_requirements.txt - pip install -e . - pip install coveralls # command to run tests script: - python setup.py test after_success: - coveralls - python setup.py bdist_wheel - ls -la dist/
Print the name of the built wheel
Print the name of the built wheel
YAML
bsd-3-clause
WoLpH/portalocker
116697b5aa418533c64dd14cb34193a566ebcb68
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" before_install: - npm install -g grunt-cli - npm install -g bower - npm install - bower install - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start"
language: node_js node_js: - "0.10" before_install: - npm install -g grunt-cli - npm install -g bower - npm install - bower install - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" branches: except: - release
Exclude release branch from CI
Exclude release branch from CI
YAML
mpl-2.0
Aniort/axe-core,jasonkarns/axe-core,jasonkarns/axe-core,dylanb/axe-core,dequelabs/axe-core,Aniort/axe-core,dequelabs/axe-core,dylanb/axe-core,ricksbrown/axe-core,ricksbrown/axe-core,yzen/axe-core,dequelabs/axe-core,yzen/axe-core,dequelabs/axe-core
d2dd6426e43e6c1b8e40acc9249eb87ae32fcbcb
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" branches: only: - master - develop env: global: - secure: "LbcaSrPsBZEur3QqmGkzHz4b+vUfWmdV5nuO8zxGKDJiJGJdOrruEF8vDzS0hqJX6cFVpa73iBKbRdGNVHV4zjDw3jC3wSzplWa1ACzyJrO2DZi3tqbNYDLdclXRhIYrnru+iO9ThFPMNzoLGpJPgRLOfebnf2fixO4cJmtIEgU=" before_install: - npm install -g grunt-cli - npm install -g bower - bower install script: grunt after_script: bash travis.sh
sudo: false language: node_js node_js: - "0.10" branches: only: - master - develop env: global: - secure: "LbcaSrPsBZEur3QqmGkzHz4b+vUfWmdV5nuO8zxGKDJiJGJdOrruEF8vDzS0hqJX6cFVpa73iBKbRdGNVHV4zjDw3jC3wSzplWa1ACzyJrO2DZi3tqbNYDLdclXRhIYrnru+iO9ThFPMNzoLGpJPgRLOfebnf2fixO4cJmtIEgU=" before_install: - npm install -g grunt-cli - npm install -g bower - bower install script: grunt after_script: bash travis.sh
Switch to container based builds
Switch to container based builds
YAML
mit
hpautonomy/login-page,hpe-idol/login-page,hpe-idol/login-page,hpe-idol/login-page,hpautonomy/login-page,hpautonomy/login-page
e6ceab9a3711dc5ea6d0e2346e3ff04b0a16195e
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.0 cache: bundler bundler_args: --without production install: - bundle install --path vendor/bundle - bundle exec rails db:reset db:migrate RAILS_ENV=test script: - bundle exec rspec - bundle exec rubocop
language: ruby rvm: - 2.4.0 cache: bundler bundler_args: --without production install: - bundle install --path vendor/bundle - bundle exec rails db:reset db:migrate RAILS_ENV=test script: - bundle exec rspec - bundle exec rubocop branches: only: - master
Build only on master branch events
Build only on master branch events
YAML
mit
zinovyev/luncher,zinovyev/luncher,zinovyev/luncher
7d5db307bc9c423798d36cd64a387143c8a14b4a
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 env: - DJANGO=1.3.7 - DJANGO=1.4.5 - DJANGO=1.5.1 - DJANGO=master install: - pip install https://github.com/django/django/archive/${DJANGO}.zip#egg=django - pip install -r tests/requirements.txt - python setup.py -q install script: - coverage run --source=django_geoip manage.py test after_success: - coveralls --verbose matrix: exclude: - python: 3.2 env: DJANGO=1.4.5 - python: 3.3 env: DJANGO=1.4.5 - python: 3.2 env: DJANGO=1.3.7 - python: 3.3 env: DJANGO=1.3.7
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 env: - DJANGO=1.3.7 - DJANGO=1.4.5 - DJANGO=1.5.1 - DJANGO=master install: - pip install https://github.com/django/django/archive/${DJANGO}.zip#egg=django - pip install -r tests/requirements.txt - python setup.py -q install script: - coverage run --source=django_geoip manage.py test after_success: - coveralls --verbose matrix: exclude: - python: 3.2 env: DJANGO=1.4.5 - python: 3.3 env: DJANGO=1.4.5 - python: 3.2 env: DJANGO=1.3.7 - python: 3.3 env: DJANGO=1.3.7 allow_failures: - python: 2.6 env: DJANGO=master - python: 2.7 env: DJANGO=master - python: 3.2 env: DJANGO=master - python: 3.3 env: DJANGO=master
Make master support experimental back
Make master support experimental back
YAML
mit
artofhuman/django-geoip,futurecolors/django-geoip,ecugol/django-geoip
79ad15c69d1bb1b818c5fad9df3c6d7fdb9c7e9e
.travis.yml
.travis.yml
language: ruby rvm: - 2.5.1 script: ./script/htmlproofer.sh env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer sudo: false # route your build to the container-based infrastructure for a faster build cache: bundler # caching bundler gem packages will speed up build
language: ruby rvm: - 2.5.1 script: ./script/htmlproofer.sh - bundle exec jekyll build # If we want to check our website too, uncomment the line below # - ./script/htmlproofer.sh env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer sudo: false # route your build to the container-based infrastructure for a faster build cache: bundler # caching bundler gem packages will speed up build
Remove htmlproofer from CI check
Remove htmlproofer from CI check
YAML
apache-2.0
kev-chien/website,pioneers/website,kev-chien/website,pioneers/website,pioneers/website,kev-chien/website,kev-chien/website,pioneers/website,pioneers/website,kev-chien/website
6d30d65aee397a004ac8f3802fb11b4048dada39
.travis.yml
.travis.yml
language: c compiler: - gcc - clang install: - "sudo apt-get update -qq" - "sudo apt-get install -qq python3" - "sudo apt-get install -qq check" script: "autoreconf --install && ./configure PYTHON_VERSION=3.2 && make && make check"
language: c compiler: - gcc - clang install: - "sudo apt-get update -qq" - "sudo apt-get install -qq python3 python3-dev" - "sudo apt-get install -qq check" script: "autoreconf --install && ./configure PYTHON_VERSION=3.2 && make && make check"
Add install of python3-dev dependency for Travis
Add install of python3-dev dependency for Travis
YAML
mit
robo9k/q3py,robo9k/q3py,robo9k/q3py
586d10b2807d5a39a56eabfd3546e91ac1bb34fd
.travis.yml
.travis.yml
sudo: false language: python python: - "3.6" - "3.7" - "3.8" - "3.9" - "pypy3" install: pip install Markdown script: python test.py
dist: focal language: python python: - "3.6" - "3.7" - "3.8" - "3.9" - "pypy3" install: pip install Markdown script: python test.py
Switch Travis builds to Focal
Switch Travis builds to Focal
YAML
bsd-3-clause
mitya57/python-markdown-math,mitya57/python-markdown-math
5ca655d0b2f30606641fd5207ca602d38d13e807
.travis.yml
.travis.yml
language: java jdk: - oraclejdk9 install: true script: - mvn --errors clean verify - bash <(curl -s https://codecov.io/bash) -f com.io7m.junreachable.core/target/site/jacoco/jacoco.xml notifications: irc: "chat.freenode.net#io7m"
language: java jdk: - oraclejdk9 install: true script: - mvn --errors clean verify site - bash <(curl -s https://codecov.io/bash) -f com.io7m.junreachable.core/target/site/jacoco/jacoco.xml notifications: irc: "chat.freenode.net#io7m"
Update Travis CI and primogenitor
Update Travis CI and primogenitor
YAML
isc
io7m/junreachable
b482ceebef4ed1c7bb1500cebd5b4e818d2c8edc
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.2 xcode_project: Haneke.xcodeproj xcode_scheme: Haneke branches: only: - master
language: objective-c osx_image: xcode7.2 xcode_project: Haneke.xcodeproj xcode_scheme: Haneke xcode_sdk: iphonesimulator9.2 branches: only: - master
Add xcode_sdk to Travis config
Add xcode_sdk to Travis config
YAML
apache-2.0
yoller/HanekeSwift,szehnder/HanekeSwift,meteochu/HanekeSwift,pollarm/HanekeSwift,Haneke/HanekeSwift,szehnder/HanekeSwift,yoller/HanekeSwift,Haneke/HanekeSwift,meteochu/HanekeSwift,dcharbonnier/HanekeSwift,pollarm/HanekeSwift,dcharbonnier/HanekeSwift
b5d01f75059343ccd7f354e023be8e9193e044a8
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "4.0" - "6.0" - "8.0" after_success: - yarn coverage cache: yarn: true directories: - node_modules
sudo: false language: node_js node_js: - "4" - "6" - "8" after_success: - yarn coverage cache: yarn: true directories: - node_modules
Test only the latest versions of LTS releases
Test only the latest versions of LTS releases
YAML
mit
pegjs/pegjs,pegjs/pegjs
0e800072b64e12b3529cd76aa8282ea150b06df3
.travis.yml
.travis.yml
sudo: false language: python cache: pip python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch install: "pip install -r requirements/dev.txt" services: - postgresql - redis-server addons: postgresql: "9.4" before_script: # Install JS dependencies - npm install -g bower less - bower install # Create test DB - psql -c 'create database doorman_test;' -U postgres # Launch celery worker for tests - env DOORMAN_ENV=test celery worker -D -A doorman.worker:celery -l DEBUG script: python manage.py test
sudo: false language: python cache: pip python: - "2.7" - "3.4" - "3.6" - "nightly" # 3.7 development branch install: - "pip install -r requirements/dev.txt" - "pip install flake8" services: - postgresql - redis-server addons: postgresql: "9.4" before_script: # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics # Install JS dependencies - npm install -g bower less - bower install # Create test DB - psql -c 'create database doorman_test;' -U postgres # Launch celery worker for tests - env DOORMAN_ENV=test celery worker -D -A doorman.worker:celery -l DEBUG script: python manage.py test
Remove EOL versions of Python, add Flake8
Travis: Remove EOL versions of Python, add Flake8 Python 2.6 end of life was five years ago and 3.3 end of life was last year.
YAML
mit
mwielgoszewski/doorman,mwielgoszewski/doorman,mwielgoszewski/doorman,mwielgoszewski/doorman
3b6d51b66bfa6c7413a1923192dcb1ce557d3ba7
.travis.yml
.travis.yml
os: - osx language: ruby rvm: - 2.2.1 before_install: gem install bundler -v 1.10.6 cache: bundler
language: ruby rvm: - 2.0.0 - 2.1.6 - 2.2.2 before_install: gem install bundler -v 1.10.6 cache: bundler
Test multiple versions of ruby.
Test multiple versions of ruby.
YAML
mit
jcampbell05/xcake,asifmohd/xcake,asifmohd/xcake,jcampbell05/xcake,jcampbell05/xcake,asifmohd/xcake,jcampbell05/xcake
a6569e5de17fad4d3d3cfc3cc147a3cfb71c3ff6
.travis.yml
.travis.yml
--- language: scala script: "sbt 'set scriptedLaunchOpts := Seq(\"-Xms384m\", \"-Xmx384m\", \"-XX:MaxPermSize=64m\")' scripted" scala: - 2.9.2 before_script: - "echo JAVA_HOME $JAVA_HOME" - "echo 'which java' `which java`" - "echo JAVA_OPTS $JAVA_OPTS" - "export JAVA_OPTS=-Xmx512m"
--- language: scala script: "sbt 'set scriptedLaunchOpts := Seq(\"-Xms384m\", \"-Xmx384m\", \"-XX:MaxPermSize=128m\")' scripted" scala: - 2.9.2 before_script: - "echo JAVA_HOME $JAVA_HOME" - "echo 'which java' `which java`" - "echo JAVA_OPTS $JAVA_OPTS" - "export JAVA_OPTS=-Xmx512m"
Adjust PermGen for Travis CI.
Adjust PermGen for Travis CI.
YAML
apache-2.0
digimead/sbt-osgi-manager
9a81bf027cb3dbd55bd2dca75b2906f0b70d898f
.travis.yml
.travis.yml
osx_image: xcode8.2 language: objective-c xcode_project: HelloWorld.xcodeproj xcode_scheme: HelloWorld
osx_image: xcode8.2 language: objective-c xcode_project: HelloWorld.xcodeproj xcode_scheme: HelloWorld before_install: - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; brew outdated xctool || brew upgrade xctool; fi
Update xctool before attempting to build
Update xctool before attempting to build
YAML
apache-2.0
graemer957/helloworld-swift-framework,graemer957/helloworld-swift-framework
416581e43f8de5bc19a4d9044223ec56275f44a7
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.8 - 2.2.4 - 2.3.0 notifications: email: false
language: ruby rvm: - 2.2.4 - 2.3.0 notifications: email: false
Drop support of eol ruby
Drop support of eol ruby All support of the Ruby 2.1 series has ended
YAML
mit
ksss/tori
f2614eb1aa1bd8991c39dec1dce49986f198529e
.travis.yml
.travis.yml
language: csharp solution: AsyncAnalyzers.sln before_install: - gem install albacore -v 2.6.1 install: - nuget restore AsyncAnalyzers.sln script: - xbuild /p:Configuration=Release solution-name.sln - mono ./packages/xunit.runner.console.2.2.0/tools/xunit.console.exe ./AsyncAnalyzers.Test/bin/Release/AsyncAnalyzers.Test.dll
language: csharp solution: AsyncAnalyzers.sln before_install: - gem install albacore -v 2.6.1 install: - nuget restore AsyncAnalyzers.sln script: - xbuild /p:Configuration=Release AsyncAnalyzers.sln - mono ./packages/xunit.runner.console.2.2.0/tools/xunit.console.exe ./AsyncAnalyzers.Test/bin/Release/AsyncAnalyzers.Test.dll
Fix solution name in Travis CI config
Fix solution name in Travis CI config
YAML
mit
holthe/AsyncAnalyzers,holthe/AsyncAnalyzers
ca7094578dc56202b768b911e23c9dc1852956f0
.travis.yml
.travis.yml
sudo: required language: perl6 os: - linux - osx perl6: - 2016.02 - latest install: - echo $TRAVIS_OS_NAME - rakudobrew build panda - panda installdeps . script: prove -v -e perl6 t/
sudo: required language: perl6 os: - linux - osx perl6: - 2016.02 - latest install: - echo $TRAVIS_OS_NAME - rakudobrew build panda - panda installdeps . script: prove -v -e perl6 -Ilib t/
Fix Travis CI build failures
Fix Travis CI build failures
YAML
mit
azawawi/perl6-memoize
3ce3aceea30bc16fc0fdd0d16b4e626a983a1f53
.travis.yml
.travis.yml
# Travis CI Configuration language: python python: - "3.6" install: - pip install -r requirements.txt - pip install coveralls script: - coverage run -m nose - pycodestyle toac/*.py after_success: - coveralls
# Travis CI Configuration language: python python: - "3.6" - "3.7" - "3.8" - "3.9" install: - pip install -r requirements.txt - pip install coveralls script: - coverage run -m nose - pycodestyle toac/*.py after_success: - coveralls
Test through Python 3.9 in CI pipeline
Test through Python 3.9 in CI pipeline
YAML
mit
caleb531/three-of-a-crime
e9e9d64f3887df7fc5d29bd2e4421e139c24d52c
.travis.yml
.travis.yml
sudo: required language: go go: - 1.6 services: - docker install: - wget https://github.com/Masterminds/glide/releases/download/0.9.1/glide-0.9.1-linux-amd64.tar.gz - tar xvzf glide-0.9.1-linux-amd64.tar.gz - sudo cp linux-amd64/glide /usr/bin/glide - cd "$GOPATH/src/github.com/ibrt/go-oauto/oauto" && glide install - go generate github.com/ibrt/go-oauto/oauto/standalone - docker run -p 10000:10000 -p 4444:4444 -d oauto script: go test -v github.com/ibrt/go-oauto/oauto after_success: - docker login -e "$DOCKER_EMAIL" -u "$DOCKER_USER_NAME" -p "$DOCKER_PASS" - docker tag oauto:latest ibrt/oauto:"$(if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo "$TRAVIS_BRANCH"; fi)" - docker push ibrt/oauto
sudo: required language: go go: - 1.6 services: - docker install: - wget https://github.com/Masterminds/glide/releases/download/0.9.1/glide-0.9.1-linux-amd64.tar.gz - tar xvzf glide-0.9.1-linux-amd64.tar.gz - sudo cp linux-amd64/glide /usr/bin/glide - cd "$GOPATH/src/github.com/ibrt/go-oauto/oauto" && glide install - go generate github.com/ibrt/go-oauto/oauto/standalone - docker run -p 10000:10000 -p 4444:4444 -d oauto script: go test -v github.com/ibrt/go-oauto/oauto after_success: - docker login -e "$DOCKER_EMAIL" -u "$DOCKER_USER_NAME" -p "$DOCKER_PASSWORD" - docker tag oauto:latest ibrt/oauto:"$(if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo "$TRAVIS_BRANCH"; fi)" - docker push ibrt/oauto
Update TravisCI configuration: fix typo.
Update TravisCI configuration: fix typo.
YAML
mit
ibrt/go-oauto,ibrt/go-oauto
d71a541a7582729104094b4d43502154fb2e9238
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 2.4.1 - 2.3.4 - 2.2.7 gemfile: - gemfiles/rails_4.2.8.gemfile - gemfiles/rails_5.0.3.gemfile - gemfiles/rails_5.1.1.gemfile after_success: - bundle exec codeclimate-test-reporter
language: ruby cache: bundler sudo: false rvm: - 2.5.3 - 2.4.5 - 2.3.8 - 2.2.10 gemfile: - gemfiles/rails_4.2.8.gemfile - gemfiles/rails_5.0.3.gemfile - gemfiles/rails_5.1.1.gemfile after_success: - bundle exec codeclimate-test-reporter
Test with latest Ruby versions
Test with latest Ruby versions
YAML
mit
jbox-web/active_use_case
f581792443c52bc3d3672f317359b10053e8cdff
.travis.yml
.travis.yml
language: python python: - "2.7" before_install: "apt-get install ppp" install: "pip install ."
language: python python: - "2.7" before_install: - sudo apt-get update -qq - sudo apt-get install -y ppp install: "pip install ."
Fix apt-get failed on Travis CI
Fix apt-get failed on Travis CI
YAML
mit
sorz/sstp-server,sorz/sstp-server
9d0aea244a03591909adede3aa7ab27a9af78978
.travis.yml
.travis.yml
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - hhvm-nightly matrix: allow_failures: - php: hhvm install: - travis_retry composer install --no-interaction --prefer-source - if [[ "$TRAVIS_PHP_VERSION" == hhvm* ]]; then echo -e '\nhhvm.libxml.ext_entity_whitelist = "file"' | sudo tee -a /etc/hhvm/php.ini; fi script: - ./phpunit --configuration ./build/travis-ci.xml - ./phpunit --configuration ./build/travis-ci-fail.xml > /dev/null; if [ $? -eq 0 ]; then echo "SHOULD FAIL"; exit 1; else echo "fail checked"; fi; notifications: email: false webhooks: urls: - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960 on_success: always on_failure: always on_start: false
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - hhvm-nightly matrix: allow_failures: - php: hhvm - php: hhvm-nightly install: - travis_retry composer install --no-interaction --prefer-source - if [[ "$TRAVIS_PHP_VERSION" == hhvm* ]]; then echo -e '\nhhvm.libxml.ext_entity_whitelist = "file"' | sudo tee -a /etc/hhvm/php.ini; fi script: - ./phpunit --configuration ./build/travis-ci.xml - ./phpunit --configuration ./build/travis-ci-fail.xml > /dev/null; if [ $? -eq 0 ]; then echo "SHOULD FAIL"; exit 1; else echo "fail checked"; fi; notifications: email: false webhooks: urls: - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960 on_success: always on_failure: always on_start: false
Allow build hhvm-nightly build failures
Allow build hhvm-nightly build failures
YAML
bsd-3-clause
simohammedhttp/phpunit,Firehed/phpunit,duncan3dc/phpunit,DonaldKellett/phpunit,kyale/phpunit,asgrim/phpunit,FireWalkerX/phpunit,abachi/phpunit,ezzatron/phpunit,eelf/phpunit,serbanghita/phpunit,nonconforme/phpunit,potherca-contrib/phpunit,matheusgomes17/phpunit,Shaked/phpunit,tronsha/phpunit,lcp0578/phpunit,s001dxp/phpunit,MajorCaiger/phpunit,CarsonF/phpunit,9040044/phpunit,giorgiosironi/phpunit,luomor/phpunit,Maks3w/phpunit,stof/phpunit,Ma27/phpunit,Lance0312/phpunit,malkusch/phpunit,beealone/phpunit,HappyRay/phpunit,masarakki/phpunit,MartinhoOmura/phpunit,m157y/phpunit,nelson6e65/phpunit,SunDrop/phpunit,bradgrohs/phpunit,didiwuliu/phpunit,zhaoyan158567/phpunit,darol100/phpunit,OndraM/phpunit,dshafik/phpunit,WebSeed/phpunit,sebastianbergmann/phpunit,chrisbjr/phpunit,imshibaji/phpunit,ya7lelkom/phpunit,abacaphiliac/phpunit
ae21041845cc1f6dac7a8d2c892b69df4662049b
.travis.yml
.travis.yml
--- language: ruby sudo: false branches: only: - master bundler_args: --without development system_tests script: - bundle exec rake $CHECK env: - CHECK=ci rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 matrix: include: - rvm: 2.4.1 env: CHECK=rubocop
--- language: ruby dist: trusty sudo: false branches: only: - master bundler_args: --without development system_tests script: - bundle exec rake $CHECK env: - CHECK=ci rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 matrix: include: - rvm: 2.4.1 env: CHECK=rubocop
Update TravisCI config to use trusty image
Update TravisCI config to use trusty image
YAML
mit
rodjek/puppet-lint
be34a87a04cb36c86cd8327a83c7682f6c9fc911
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 env: DNSIMPLE_TEST_CONFIG=spec/ci/.dnsimple.test COVERALL=1
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 env: DNSIMPLE_TEST_CONFIG=spec/ci/.dnsimple.test COVERALL=1 matrix: allow_failures: - rvm: 1.8.7
Test dependency issue with 1.8.7
Test dependency issue with 1.8.7 1.8.7 support will eventually go away.
YAML
mit
aetrion/dnsimple-ruby
f5c0a9cb223cee8a1e0baa3f175b29da10899d5d
.cirrus.yml
.cirrus.yml
test_task: container: matrix: - image: erlang:21 - image: erlang:20 - image: erlang:19 - image: erlang:18 - image: erlang:17 test_script: | ./bootstrap ./rebar3 ct osx_test_task: osx_instance: image: mojave-base install_script: brew install erlang test_script: | ./bootstrap ./rebar3 ct windows_test_task: windows_container: image: cirrusci/windowsservercore:2019 os_version: 2019 install_script: choco install -y erlang test_script: | ./bootstrap ./rebar3 ct
test_task: container: matrix: - image: erlang:21 - image: erlang:20 - image: erlang:19 - image: erlang:18 - image: erlang:17 test_script: | ./bootstrap ./rebar3 ct osx_test_task: osx_instance: image: mojave-base install_script: brew install erlang test_script: | ./bootstrap ./rebar3 ct # Windows CI appears broken for now and never passes #windows_test_task: # windows_container: # image: cirrusci/windowsservercore:2019 # os_version: 2019 # install_script: choco install -y erlang # test_script: | # ./bootstrap # ./rebar3 ct
Disable windows on Cirrus CI
Disable windows on Cirrus CI This never passes even if it works on Windows 10 machines and on Circle CI's runs.
YAML
apache-2.0
lrascao/rebar3,rebar/rebar3,djnym/rebar3,saleyn/rebar3,erlang/rebar3,tsloughter/rebar3,ferd/rebar3,rebar/rebar3,vladdu/rebar3
58e8ff0d7374ebf283d16aa1037898be06bddf42
.travis.yml
.travis.yml
### Project specific config ### language: generic env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" matrix: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta os: - linux ## - osx dist: trusty ### Generic setup follows ### script: - curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh - chmod u+x build-package.sh - ./build-package.sh notifications: email: on_success: never on_failure: never branches: only: - master git: depth: 10 sudo: false addons: apt: packages: - build-essential - git - libgnome-keyring-dev - libsecret-1-dev - fakeroot
### Project specific config ### language: generic env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" matrix: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta os: - linux ## - osx dist: trusty ### Generic setup follows ### script: - curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh - chmod u+x build-package.sh - ./build-package.sh notifications: email: on_success: never on_failure: never branches: only: - master git: depth: 10 sudo: false addons: apt: packages: - build-essential - git - libsecret-1-dev - fakeroot
Update to match github template, remove package
Update to match github template, remove package
YAML
mit
alflanagan/atom-pkg-groups,alflanagan/atom-pkg-groups
a3df7270c0d1f0da59ba3e0098d169bb72ad799c
.travis.yml
.travis.yml
language: c # Not really, but Travis doesn't do OCaml. env: - PPA="avsm/ocaml40+opam11" OPAMYES="1" - PPA="avsm/ocaml41+opam11" OPAMYES="1" before_install: - "echo 'yes' | sudo add-apt-repository ppa:$PPA" - "sudo apt-get update -qq" - "sudo apt-get install -qq ocaml ocaml-native-compilers camlp4-extra opam" - "opam init" - "eval `opam config env`" install: - "opam install lwt xmlm ounit" script: - "ocaml setup.ml -configure --enable-tests" - "make" - "make test"
language: c # Not really, but Travis doesn't do OCaml. env: # - PPA="avsm/ocaml40+opam11" OPAMYES="1" - PPA="avsm/ocaml41+opam11" OPAMYES="1" before_install: - "echo 'yes' | sudo add-apt-repository ppa:$PPA" - "sudo apt-get update -qq" - "sudo apt-get install -qq ocaml ocaml-native-compilers camlp4-extra opam" - "opam init" - "eval `opam config env`" install: - "opam install lwt xmlm ounit" script: - "ocaml setup.ml -configure --enable-tests" - "make" - "make test"
Disable older OCaml build for now.
Disable older OCaml build for now.
YAML
mit
jerith/ypotryll
2152022c105d98346eb3e9a0e957ae5e7840205d
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.4 - 2.5 - 2.6 - 2.7 gemfile: - gemfiles/ar_4.2.gemfile - gemfiles/ar_5.2.gemfile - gemfiles/ar_6.0.gemfile matrix: allow_failures: # Rails 6 requires Ruby 2.5 or newer. ref: https://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#ruby-versions - rvm: 2.4 gemfile: gemfiles/ar_6.0.gemfile # BigDecimal 2.0 does not support `BigDecimal.new`. ref: https://github.com/ruby/bigdecimal#which-version-should-you-select - rvm: 2.7 gemfile: gemfiles/ar_4.2.gemfile fast_finish: true before_install: - gem update --system - gem install bundler script: bundle exec rake spec
language: ruby sudo: false rvm: - 2.5 - 2.6 - 2.7 gemfile: - gemfiles/ar_4.2.gemfile - gemfiles/ar_5.2.gemfile - gemfiles/ar_6.0.gemfile matrix: allow_failures: # BigDecimal 2.0 does not support `BigDecimal.new`. ref: https://github.com/ruby/bigdecimal#which-version-should-you-select - rvm: 2.7 gemfile: gemfiles/ar_4.2.gemfile fast_finish: true before_install: - gem update --system - gem install bundler script: bundle exec rake spec
Remove ruby 2.4 because of EOL
Remove ruby 2.4 because of EOL
YAML
mit
cookpad/arproxy
3d020d8b2a9479699891b5d5892dfde04bd3ee9f
.travis.yml
.travis.yml
language: rust rust: - stable - beta - nightly env: global: - secure: gokQ7xIWwmAuEUW3IyS5B/pbZxdFSSDBto5beJ+4ACGcRMDqJ/eCPf1ekSVXME4TWM46uUCjxcdUjYhIhQ6sG4zfWck4u45qRJ5JbIoTvR+ykxhN1j3Zi5x9ptP3ALDbHn2i3v6t9xohORfQpz3dVND5c7thbYDyKP2ZR1sez5c= - FEATURES: default matrix: include: - rust: nightly env: FEATURES=ipv6-iterator script: - cargo build --features $FEATURES --verbose - cargo test --features $FEATURES --verbose - cargo build --features $FEATURES --release --verbose - cargo doc --features $FEATURES --verbose after_script: - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
language: rust rust: - stable - beta - nightly env: global: - secure: gokQ7xIWwmAuEUW3IyS5B/pbZxdFSSDBto5beJ+4ACGcRMDqJ/eCPf1ekSVXME4TWM46uUCjxcdUjYhIhQ6sG4zfWck4u45qRJ5JbIoTvR+ykxhN1j3Zi5x9ptP3ALDbHn2i3v6t9xohORfQpz3dVND5c7thbYDyKP2ZR1sez5c= - FEATURES: default matrix: include: - rust: nightly env: FEATURES=ipv6-iterator,ipv6-methods script: - cargo build --features $FEATURES --verbose - cargo test --features $FEATURES --verbose - cargo build --features $FEATURES --release --verbose - cargo doc --features $FEATURES --verbose after_script: - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
Test ipv6 methods in CI
Test ipv6 methods in CI
YAML
apache-2.0
faern/ipnetwork,achanda/ipnetwork
179f86912106da3531ab2bb1c209680430f5e56f
.travis.yml
.travis.yml
language: java before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ jdk: - oraclejdk8 #TODO:Needed in production template I cant remember if we need it here #before_script: # - npm install -g @angular/cli services: mongodb
language: java before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ jdk: - oraclejdk8 env: - MONGODB=3.4.7 install: - wget http://fastd1.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB}.tgz - tar xzf mongodb-linux-x86_64-${MONGODB}.tgz - ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongodb --version before_script: - mkdir ${PWD}/mongodb-linux-x86_64-${MONGODB}/data - ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath ${PWD}/mongodb-linux-x86_64-${MONGODB}/data --logpath ${PWD}/mongodb-linux-x86_64-${MONGODB}/mongodb.log --fork - npm install -g @angular/cli
Change Travis to use newer version of Mongo
Change Travis to use newer version of Mongo
YAML
mit
UMM-CSci-3601/3601-lab4_mongo,UMM-CSci-3601/3601-lab4_mongo,UMM-CSci-3601/3601-lab4_mongo,UMM-CSci-3601/3601-lab4_mongo
3cf621c3ac42b12bc40a7adc7a992c4e141ed79f
.travis.yml
.travis.yml
language: objective-c os: osx osx_image: xcode8 xcode_project: Progress.swift/Progress.swift.xcodeproj xcode_scheme: Progress.swift script: - set -o pipefail && xcodebuild -project Progress.swift/Progress.swift.xcodeproj -scheme Progress.swift -enableCodeCoverage YES clean build test | xcpretty after_success: - bash <(curl -s https://codecov.io/bash)
language: objective-c os: osx osx_image: xcode9 xcode_project: Progress.swift/Progress.swift.xcodeproj xcode_scheme: Progress.swift script: - set -o pipefail && xcodebuild -project Progress.swift/Progress.swift.xcodeproj -scheme Progress.swift -enableCodeCoverage YES clean build test | xcpretty after_success: - bash <(curl -s https://codecov.io/bash)
Update osx_image to xcode9 for passing CI check
Update osx_image to xcode9 for passing CI check
YAML
mit
jkandzi/Progress.swift,jkandzi/Progress.swift
cd1f9ea6a57cae0558e57419a4187c24450b59da
.travis.yml
.travis.yml
os: windows language: go go: #- 1.0 #- 1.1 #- 1.2 #- 1.3 - 1.4 - 1.5 - 1.6 - tip before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - go get github.com/akavel/rsrc/binutil - go get github.com/akavel/rsrc/coff - go get github.com/akavel/rsrc/ico script: - SET - $HOME\gopath\bin\goveralls -repotoken lNZXr7UDQai10RBP6KAOqA6fRcs5NlKEe
os: windows language: go go: #- 1.0 #- 1.1 #- 1.2 #- 1.3 - 1.4 - 1.5 - 1.6 - tip before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - go get github.com/akavel/rsrc/binutil - go get github.com/akavel/rsrc/coff - go get github.com/akavel/rsrc/ico script: - env - $HOME/gopath/bin/goveralls -repotoken lNZXr7UDQai10RBP6KAOqA6fRcs5NlKEe
Change back to other commands
Change back to other commands
YAML
mit
josephspurrier/goversioninfo
a4cea61f44b6aac3d9b93d09e2b3f264cbe7e5e4
.travis.yml
.travis.yml
sudo: required dist: xenial before_install: - ./bin/ci/install_chef_dk.sh - gem update bundler - bundle update --bundler cache: bundler services: docker # kitchen list -b | xargs -I {} echo "- INSTANCE={}" env: matrix: - INSTANCE=default-deb-debian-9 - INSTANCE=default-deb-ubuntu-1804 - INSTANCE=default-rpm-centos-74 - INSTANCE=system-limits-deb-ubuntu-1804 - INSTANCE=lwrps - INSTANCE=36x-lwrps - INSTANCE=cluster-deb-ubuntu-1804 - INSTANCE=cluster-rpm - INSTANCE=default-force-yes - INSTANCE=default-force-yes-false before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen test ${INSTANCE} matrix: include: - script: - /opt/chefdk/bin/chef exec rake env: UNIT_AND_LINT=1
sudo: required dist: xenial before_install: - gem update bundler - bundle update --bundler install: ./bin/ci/install_chef_dk.sh cache: bundler services: docker # kitchen list -b | xargs -I {} echo "- INSTANCE={}" env: matrix: - INSTANCE=default-deb-debian-9 - INSTANCE=default-deb-ubuntu-1804 - INSTANCE=default-rpm-centos-74 - INSTANCE=system-limits-deb-ubuntu-1804 - INSTANCE=lwrps - INSTANCE=36x-lwrps - INSTANCE=cluster-deb-ubuntu-1804 - INSTANCE=cluster-rpm - INSTANCE=default-force-yes - INSTANCE=default-force-yes-false before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen test ${INSTANCE} matrix: include: - script: - /opt/chefdk/bin/chef exec rake env: UNIT_AND_LINT=1
Install Chef DK in the install step
Install Chef DK in the install step
YAML
apache-2.0
jjasghar/rabbitmq,jjasghar/rabbitmq
af7c6cdfbb1e5881aa88b31be47a90a8538650b7
.travis.yml
.travis.yml
language: go go: - "1.x" branches: only: - master matrix: include: - env: GOTEST_PKGS="./api" - env: GOTEST_PKGS="./agent" - env: GOTEST_PKGS="./agent/consul" - env: GOTEST_PKGS_EXCLUDE="./api|./agent|./agent/consul" script: - make test-ci sudo: false
language: go go: - "1.x" branches: only: - master - f-envoy matrix: include: - env: GOTEST_PKGS="./api" - env: GOTEST_PKGS="./agent" - env: GOTEST_PKGS="./agent/consul" - env: GOTEST_PKGS_EXCLUDE="./api|./agent|./agent/consul" script: - make test-ci sudo: false
Enable CI on f-envoy feature branch
Enable CI on f-envoy feature branch
YAML
mpl-2.0
scalp42/consul,42wim/consul,kingland/consul,42wim/consul,scalp42/consul,kingland/consul,kingland/consul,youhong316/consul,kingland/consul,kingland/consul,hashicorp/consul,42wim/consul,scalp42/consul,hashicorp/consul,youhong316/consul,hashicorp/consul,vamage/consul,scalp42/consul,42wim/consul,youhong316/consul,vamage/consul,vamage/consul,youhong316/consul,vamage/consul,youhong316/consul,42wim/consul,vamage/consul,scalp42/consul,hashicorp/consul
e4ab31fed8c1699ae06331e8a8742f9abbe572f5
.travis.yml
.travis.yml
language: go sudo: required notifications: email: false env: global: - H2O_VERSION=1.6.3 - PROJECT_ROOT=$HOME/gopath/src/github.com/kayac/Gunfish go: - 1.8 - 1.9 - tip addons: apt: sources: - kalakris-cmake packages: - cmake - curl install: - cd $PROJECT_ROOT && ./test/scripts/build_h2o.sh - cd $PROJECT_ROOT && make get-dep-on-ci && make get-deps - go get github.com/mitchellh/gox script: - make test before_deploy: - cd $PROJECT_ROOT && make packages deploy: provider: releases skip_cleanup: true api_key: $GITHUB_TOKEN file_glob: true file: - pkg/*.{zip} on: tags: true go: 1.7.4 cache: directories: - $PROJECT_ROOT/h2o-$H2O_VERSION
language: go sudo: required notifications: email: false env: global: - H2O_VERSION=1.6.3 - PROJECT_ROOT=$HOME/gopath/src/github.com/kayac/Gunfish go: - 1.9.x - 1.10.3 - tip addons: apt: sources: - kalakris-cmake packages: - cmake - curl install: - cd $PROJECT_ROOT && ./test/scripts/build_h2o.sh - cd $PROJECT_ROOT && make get-dep-on-ci && make get-deps - go get github.com/mitchellh/gox script: - make test before_deploy: - cd $PROJECT_ROOT && make packages deploy: provider: releases skip_cleanup: true api_key: $GITHUB_TOKEN file_glob: true file: - pkg/*.{zip} on: tags: true go: 1.10.3 cache: directories: - $PROJECT_ROOT/h2o-$H2O_VERSION
Drop Go 1.8 support. Add 1.10.3.
Drop Go 1.8 support. Add 1.10.3.
YAML
mit
kayac/Gunfish,kayac/Gunfish
3e7709e1de385b162abeb7ae1f720613f1c2f20c
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 install: "pip install -r requirements.txt --use-mirrors" script: "python script/test"
language: python python: - 2.6 - 2.7 install: - "pip install -r requirements.txt --use-mirrors" - "pip install -e ." script: "python script/test"
Add Jig to the pip install
Add Jig to the pip install
YAML
bsd-2-clause
robmadole/jig,robmadole/jig
efacfbf41e22bea8cc990ae2ebfc4a5a334964cd
.travis.yml
.travis.yml
language: php before_script: - composer self-update - composer install - php app/console doctrine:database:create --env=test - php app/console doctrine:schema:create --env=test - php app/console doctrine:fixtures:load -n --env=test script: - phpunit -c app notifications: email: - llopez@sopinet.com
language: php before_script: - composer self-update - composer install - mysql -e 'drop database if exists symfony;' - mysql -e 'create database symfony;' - php app/console doctrine:database:create --env=test - php app/console doctrine:schema:create --env=test - php app/console doctrine:fixtures:load -n --env=test script: - phpunit -c app notifications: email: - llopez@sopinet.com
Remove and create database symfony
Remove and create database symfony
YAML
mit
CochicerrosDev/monigotes,molinan2/BasicSymfony,CochicerrosDev/monigotes,s1yamuza/BasicSymfony,sopinet/BasicSymfony,s1yamuza/BasicSymfony,molinan2/BasicSymfony,sopinet/BasicSymfony,s1yamuza/BasicSymfony,CochicerrosDev/monigotes,CochicerrosDev/monigotes,sopinet/BasicSymfony,molinan2/BasicSymfony
4f67a53b9262632693e2d0419ad67339540ca28a
.travis.yml
.travis.yml
os: - linux - osx - windows dist: xenial language: rust cache: cargo rust: - stable - nightly script: - cargo build --verbose - cargo test --verbose
language: rust cache: cargo os: - linux - osx - windows dist: xenial rust: - stable - nightly script: - cargo build --verbose - cargo test --verbose
Reorder entries in the Travis CI configuration.
Reorder entries in the Travis CI configuration.
YAML
mit
google/fleetspeak-rs
8e943b82fa162d77eb8acafdd8b22e50da7abd0f
.travis.yml
.travis.yml
language: python sudo: false python: - 2.7 # The apt packages below are needed for sphinx builds. A full list of packages # that can be included can be found here: # # https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise addons: apt: packages: - graphviz - texlive-latex-extra - dvipng env: global: - SETUP_CMD='test' - CONDA_ADDITIONAL='scipy matplotlib networkx scikit-image h5py' - NP_VER=1.10 - ASTRO_VER=1.0 matrix: - SETUP_CMD='egg_info' matrix: include: # Check for sphinx doc build warnings - we do this first because it # may run for a long time - python: 2.7 env: SETUP_CMD='build_sphinx -w' - python: 2.7 env: NP_VER=1.9 ASTRO_VER=1.0 - python: 2.7 env: NP_VER=1.10 ASTRO_VER=1.0 - python: 2.7 env: NP_VER=1.10 ASTRO_VER=1.1 install: - git clone git://github.com/astropy/ci-helpers.git - source ci-helpers/travis/setup_conda_$TRAVIS_OS_NAME.sh script: - python setup.py $SETUP_CMD
language: python sudo: false python: - 2.7 # The apt packages below are needed for sphinx builds. A full list of packages # that can be included can be found here: # # https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise addons: apt: packages: - graphviz - texlive-latex-extra - dvipng env: global: - SETUP_CMD='test' - CONDA_ADDITIONAL='numpy astropy scipy matplotlib networkx scikit-image h5py' - NP_VER=1.10 - ASTRO_VER=1.0 matrix: - SETUP_CMD='egg_info' matrix: include: # Check for sphinx doc build warnings - we do this first because it # may run for a long time - python: 2.7 env: SETUP_CMD='build_sphinx -w' CONDA_ADDITIONAL=$CONDA_ADDITIONAL' mock' - python: 2.7 env: NP_VER=1.9 ASTRO_VER=1.0 - python: 2.7 env: NP_VER=1.10 ASTRO_VER=1.0 - python: 2.7 env: NP_VER=1.10 ASTRO_VER=1.1 install: - git clone git://github.com/astropy/ci-helpers.git - source ci-helpers/travis/setup_conda_$TRAVIS_OS_NAME.sh script: - python setup.py $SETUP_CMD
Install mock for sphinx build
Install mock for sphinx build
YAML
mit
e-koch/FilFinder
ed84e6e2f2a7336f8766998b23bbb4359cf9ed7f
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - pypy install: - pip install flake8==2.1.0 pep8==1.5.6 - python setup.py install - pip list - flake8 --version script: - python setup.py test -q - flake8 pyflakes setup.py matrix: allow_failures: - python: pypy
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - pypy install: - pip install flake8==2.1.0 pep8==1.5.6 - python setup.py install - pip list - flake8 --version script: - python setup.py test -q - flake8 pyflakes setup.py matrix: allow_failures: - python: pypy
Test Python 3.4 on Travis CI
Test Python 3.4 on Travis CI
YAML
mit
epsy/pyflakes,PyCQA/pyflakes,jayvdb/pyflakes,nikolas/pyflakes,asmeurer/pyflakes,pyflakes/pyflakes,bitglue/pyflakes
4ecaafae366f6aa09d5404b9e4c9e7427aac912c
.travis.yml
.travis.yml
language: python python: - nightly - 3.6 - 3.5 - 3.4 - 3.3 - 2.7 install: - pip install . - pip install -r requirements.txt - pip install nose # command to run tests script: nosetests
language: python python: - nightly - 3.6 - 3.5 - 3.4 - 3.3 - 2.7 install: - pip install . - pip install -r requirements.txt - pip install nose coveralls script: coverage run --source=nbmerge setup.py nosetests after_success: coveralls
Add code coverage via coveralls
Add code coverage via coveralls
YAML
mit
jbn/nbmerge,jbn/nbmerge
07437b808eab8cf5f14bdba33f847bbf4ef9906b
.travis.yml
.travis.yml
sudo: false language: python python: - "3.5" addons: apt: packages: - git install: - pip install -r requirements-py35-linux64.txt - python setup.py develop - if [ "$(git ls-remote --heads git@github.com:gem/oq-hazardlib.git ${TRAVIS_BRANCH})" != "" ]; then BRANCH=$TRAVIS_BRANCH; else BRANCH='master'; fi; git clone -b ${BRANCH} --depth=1 https://github.com/gem/oq-hazardlib.git # We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise # the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found script: # FIXME --with-doctest does not work # - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture - PYTHONPATH=.:$(pwd)/oq-hazardlib nosetests -v -a'!slow' - cat /tmp/webui*
sudo: false language: python python: - "3.5" addons: apt: packages: - git install: - pip install -r requirements-py35-linux64.txt - python setup.py develop - if [ "$(git ls-remote --heads https://github.com/gem/oq-hazardlib.git ${TRAVIS_BRANCH})" != "" ]; then BRANCH=$TRAVIS_BRANCH; else BRANCH='master'; fi; git clone -b ${BRANCH} --depth=1 https://github.com/gem/oq-hazardlib.git # We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise # the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found script: # FIXME --with-doctest does not work # - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture - PYTHONPATH=.:$(pwd)/oq-hazardlib nosetests -v -a'!slow' - cat /tmp/webui*
Replace git@ with https in git ls-remote
Replace git@ with https in git ls-remote
YAML
agpl-3.0
gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine
fddacd6cba52037287c85e6fde67d4399a21cad0
.travis.yml
.travis.yml
language: rust sudo: false language: rust addons: apt: #sources: #- ubuntu-toolchain-r-test packages: - g++-4.8 - libsnappy-dev - zlib1g-dev - libbz2-dev rust: - stable - beta - nightly cache: directories: - $HOME/.cargo - target install: - git clone https://github.com/facebook/rocksdb.git /tmp/rocksdb - pushd /tmp/rocksdb - git checkout v4.2 - env CXX="g++-4.8" CC="gcc-4.8" make install-shared before_script: - | pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH env: global: - LIBRARY_PATH=/usr/local/lib - LD_LIBRARY_PATH=/usr/local/lib script: - | travis-cargo build && travis-cargo test
language: rust sudo: false language: rust addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - libsnappy-dev - zlib1g-dev - libbz2-dev rust: - stable - beta - nightly cache: directories: - $HOME/.cargo - target install: - git clone https://github.com/facebook/rocksdb.git /tmp/rocksdb - pushd /tmp/rocksdb - git checkout v4.2 - env CXX="g++-4.8" CC="gcc-4.8" make install-shared before_script: - | pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH env: global: - LIBRARY_PATH=/usr/local/lib - LD_LIBRARY_PATH=/usr/local/lib script: - | travis-cargo build && travis-cargo test
Use up to date versions of GCC.
Use up to date versions of GCC.
YAML
mit
cstorey/chain-replication-experiment,cstorey/chain-replication-experiment
bd5980030986185c5f4d65cfd46f123ab9b59606
.travis.yml
.travis.yml
language: go go: - 1.5 - 1.6 - 1.7 - master node_js: - "6" before_script: - npm install eslint eslint-config-strict eslint-plugin-filenames script: - go test -v ./... - ./node_modules/eslint/bin/eslint.js js/main.js
language: go go: - 1.5 - 1.6 - 1.7 - master install: - . $HOME/.nvm/nvm.sh - nvm install stable - nvm use stable - npm install eslint eslint-config-strict eslint-plugin-filenames script: - go test -v ./... - ./node_modules/eslint/bin/eslint.js js/main.js
Copy black magic from the internet to fix eslint by upgrading node
Copy black magic from the internet to fix eslint by upgrading node
YAML
mit
DiscoViking/blog,DiscoViking/blog,DiscoViking/blog
66eaf3bcf3054463463f25b9fc66c3c885b3954f
.travis.yml
.travis.yml
language: python python: - "3.4" install: - python setup.py script: - python common/shapp.py - python common/sheventhandler.py - python common/shutil.py - python common/shregistry.py - python engine/restinterface.py - python engine/memorymanager.py
language: python python: - "3.4" install: - python setup.py script: - python common/shapp.py - python common/sheventhandler.py - python common/shutil.py - python common/shregistry.py - python engine/restinterface.py - python engine/memorymanager.py - python feed/feed.home.tracer.py --help - python feed/feed.home.apcups.py --help
Add tracer and apcups to Travis CI
Add tracer and apcups to Travis CI Add new Cement based tracer and apcups feeders to Travis CI to perform basic syntax checking
YAML
apache-2.0
fxstein/SentientHome
9d08ea385262fb778b87e7c63c5cf8ccaee668a1
.travis.yml
.travis.yml
--- language: ruby rvm: - 2.0.0 - 1.9.3 - jruby-19mode before_install: - gem install bundler --version '>= 1.2.2' before_script: 'bundle exec rake appraisal:install' script: 'bundle exec rake appraisal test'
--- language: ruby rvm: - 2.1 - 2.0.0 - 1.9.3 - jruby-19mode before_install: - gem install bundler --version '>= 1.2.2' before_script: 'bundle exec rake appraisal:install' script: 'bundle exec rake appraisal test'
Test against Ruby 2.1 on Travis CI
Test against Ruby 2.1 on Travis CI
YAML
apache-2.0
Heyzap/react-rails,Widdershin/react-rails,yakovenkodenis/react-rails,michaelachrisco/react-rails,Bunlong/react-rails,eins78/react-rails,agileurbanite/react-rails,stevestmartin/react-rails,pthrasher/react-rails,samwgoldman/react-rails,justin808/react-rails,smd686s/react-rails,catprintlabs/react-rails,michaelachrisco/react-rails,yakovenkodenis/react-rails,yakovenkodenis/react-rails,mxaly/react-rails,ashrestha91/react-rails,agileurbanite/react-rails,dv/react-rails,Heyzap/react-rails,ximus/react-rails,ipmobiletech/react-rails,mikesea/react-rails,smd686s/react-rails,masarakki/react-rails,reacuna/react-rails,CarLingo/react-rails,PritiKumr/react-rails,reacuna/react-rails,digideskio/react-rails,zires/react-rails,masarakki/react-rails,Heyzap/react-rails,PritiKumr/react-rails,CarLingo/react-rails,appslingr/react-lite-rails,goodreads/react-rails,ximus/react-rails,mholubowski/react-rails,digideskio/react-rails,suzan2go/react-rails,mxaly/react-rails,Bunlong/react-rails,garbles/react-rails,rubixware/react-rails,producthunt/react-rails,mikesea/react-rails,suzan2go/react-rails,Widdershin/react-rails,dexcodeinc/react-rails,a2ikm/react-rails,LytayTOUCH/react-rails,reactjs/react-rails,zires/react-rails,vipulnsward/react-rails,aratak/react-rails,reactjs/react-rails,gbanis/react-rails,digideskio/react-rails,towry/react-rails,stevestmartin/react-rails,avifoxi/react-rails,LeeChSien/react-rails,gbanis/react-rails,tingi/react-rails,mholubowski/react-rails,mezine/react-rails,suzan2go/react-rails,pthrasher/react-rails,vipulnsward/react-rails,eins78/react-rails,producthunt/react-rails,dexcodeinc/react-rails,tingi/react-rails,pthrasher/react-rails,mipearson/webpack-react-rails,justin808/react-rails,zires/react-rails,ashrestha91/react-rails,rubixware/react-rails,catprintlabs/react-rails,ipmobiletech/react-rails,goodreads/react-rails,aratak/react-rails,stevestmartin/react-rails,mezine/react-rails,smd686s/react-rails,LeeChSien/react-rails,vipulnsward/react-rails,justin808/react-rails,dexcodeinc/react-rails,agileurbanite/react-rails,appslingr/react-lite-rails,mipearson/webpack-react-rails,LytayTOUCH/react-rails,appslingr/react-lite-rails,masarakki/react-rails,eins78/react-rails,producthunt/react-rails,mezine/react-rails,gbanis/react-rails,a2ikm/react-rails,avifoxi/react-rails,Widdershin/react-rails,mipearson/webpack-react-rails,a2ikm/react-rails,samwgoldman/react-rails,towry/react-rails,LytayTOUCH/react-rails,avifoxi/react-rails,michaelachrisco/react-rails,towry/react-rails,mholubowski/react-rails,mxaly/react-rails,LeeChSien/react-rails,aratak/react-rails,mikesea/react-rails,dv/react-rails,goodreads/react-rails,samwgoldman/react-rails,reactjs/react-rails,reacuna/react-rails,PritiKumr/react-rails,Bunlong/react-rails,garbles/react-rails,rubixware/react-rails,tingi/react-rails,CarLingo/react-rails,ashrestha91/react-rails,dv/react-rails,reactjs/react-rails,ximus/react-rails,ipmobiletech/react-rails,catprintlabs/react-rails
3cb6b59b722381f230c910c32f657375d9216bb4
.travis.yml
.travis.yml
# Sample .travis.yml for R projects. # # See README.md for instructions, or for more configuration options, # see the wiki: # https://github.com/craigcitro/r-travis/wiki # # Hack for 'error on warning' except when the warning is about vignette pdfs/html # Thanks to csgillespie for https://github.com/csgillespie/travis-examples/tree/master/bioconductor language: c before_install: - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh - chmod 755 ./travis-tool.sh - sed "s/grep -q WARNING/grep WARNING \| grep -v inst\/doc \| grep -v 'WARNING:.*There was'/" travis-tool.sh > ./tmp.sh - mv tmp.sh travis-tool.sh - chmod 755 ./travis-tool.sh - ./travis-tool.sh bootstrap install: - ./travis-tool.sh bioc_install IRanges - ./travis-tool.sh bioc_install GenomicRanges - ./travis-tool.sh install_deps script: ./travis-tool.sh run_tests after_failure: - ./travis-tool.sh dump_logs notifications: email: on_success: change on_failure: change env: global: - PKG_CFLAGS="-g -O3 -Wall -pedantic" - WARNINGS_ARE_ERRORS=1
# Sample .travis.yml for R projects. # # See README.md for instructions, or for more configuration options, # see the wiki: # https://github.com/craigcitro/r-travis/wiki # # Hack for 'error on warning' except when the warning is about vignette pdfs/html # Thanks to csgillespie for https://github.com/csgillespie/travis-examples/tree/master/bioconductor language: c before_install: - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh - chmod 755 ./travis-tool.sh - sed "s/grep -q WARNING/grep WARNING \| grep -v inst\/doc \| grep -v 'WARNING:.*There was'/" travis-tool.sh > ./tmp.sh - mv tmp.sh travis-tool.sh - chmod 755 ./travis-tool.sh - ./travis-tool.sh bootstrap install: - ./travis-tool.sh bioc_install IRanges - ./travis-tool.sh bioc_install GenomicRanges - ./travis-tool.sh r_binary_install caret - ./travis-tool.sh install_deps script: ./travis-tool.sh run_tests after_failure: - ./travis-tool.sh dump_logs notifications: email: on_success: change on_failure: change env: global: - PKG_CFLAGS="-g -O3 -Wall -pedantic" - WARNINGS_ARE_ERRORS=1
Add 'caret' package for tests.
Add 'caret' package for tests.
YAML
mpl-2.0
Rdatatable/data.table,vlulla/data.table,jangorecki/data.table,jangorecki/data.table,Rdatatable/data.table,Rdatatable/data.table,vlulla/data.table,jangorecki/data.table,vlulla/data.table,Rdatatable/data.table,vlulla/data.table,jangorecki/data.table
4c8096999b7fc703bdcb35744ad73f112a5e3fe1
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: - pip install invoke - pip install https://github.com/django/django/archive/${DJANGO}.zip#egg=django - pip install coveralls - pip install -e . script: - invoke travis env: - DJANGO=1.5.1 - DJANGO=master after_success: coveralls
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: - pip install invoke - pip install https://github.com/django/django/archive/${DJANGO}.zip#egg=django - pip install coveralls - pip install -e . script: - invoke travis env: - DJANGO=1.5.1 - DJANGO=stable/1.6.x after_success: coveralls
Test on 1.6.x only, not master.
Test on 1.6.x only, not master.
YAML
bsd-3-clause
rsalmaso/django-localflavor,django/django-localflavor,M157q/django-localflavor,infoxchange/django-localflavor,agustin380/django-localflavor,maisim/django-localflavor,thor/django-localflavor,yakky/django-localflavor,zarelit/django-localflavor,yakky/django-localflavor,jieter/django-localflavor
c88cc623d2a283840fdfacbf31e36733e43f4af5
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - '0.12' - '4' - '5' before_install: # Log HTTP requests - npm config set loglevel http install: - time npm install
language: node_js sudo: false node_js: - '0.12' - '4' - '5' env: global: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: # Log HTTP requests - npm config set loglevel http install: - time npm install
Install g++ 4.8 so that native compilation works in Node >= 4
Travis: Install g++ 4.8 so that native compilation works in Node >= 4
YAML
mit
EE/gitignore-to-glob
2599c53bf22886d830aba192a7b57ea942c0a1d0
.travis.yml
.travis.yml
language: php sudo: false php: - 5.3 - 5.5 before_script: - if [[ $TRAVIS_PHP_VERSION = '5.5' ]]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; else PHPUNIT_FLAGS=""; fi - curl -s http://getcomposer.org/installer | php - php composer.phar install script: - phpunit -v $PHPUNIT_FLAGS after_script: - if [[ $TRAVIS_PHP_VERSION = '5.5' ]]; then php vendor/bin/coveralls -v; fi
language: php sudo: false php: - 5.3 - 5.5 - 5.6 - 7.0 - 7.1 before_script: - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; else PHPUNIT_FLAGS=""; fi - curl -s http://getcomposer.org/installer | php - php composer.phar install script: - phpunit -v $PHPUNIT_FLAGS after_script: - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then php vendor/bin/coveralls -v; fi
Add later PHP versions to Travis CI build
Add later PHP versions to Travis CI build
YAML
apache-2.0
facile-it/paginator-bundle,facile-it/paginator-bundle
802046908ae2b39c25fa11a056a02fecb0f20a38
.travis.yml
.travis.yml
language: c compiler: - clang - gcc env: - BUILD_TYPE=Debug - BUILD_TYPE=Release matrix: exclude: - compiler: clang env: BUILD_TYPE=Release before_script: - sudo apt-get install cmake libglib2.0-dev - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE script: - make - ./test/test-mock - ./test/test-ring-buffer
language: c compiler: - clang - gcc env: - BUILD_TYPE=Debug - BUILD_TYPE=Release matrix: exclude: - compiler: clang env: BUILD_TYPE=Release before_script: - sudo apt-get install cmake libglib2.0-dev libtiff4-dev - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE script: - make - ./test/test-mock - ./test/test-ring-buffer
Install libtiff4-dev to build file camera
Install libtiff4-dev to build file camera
YAML
lgpl-2.1
ufo-kit/libuca,miq/libuca,miq/libuca,ufo-kit/libuca,miq/libuca,ufo-kit/libuca
36580962c4e7238a0a5525fc9c6d952ea03e2f63
.travis.yml
.travis.yml
language: node_js node_js: - "iojs" - "0.12" - "0.10"
language: node_js node_js: - "5" - "4" - "iojs" - "0.12" - "0.10"
Test against Node.js v4 and v5
Test against Node.js v4 and v5
YAML
mit
bripkens/connect-history-api-fallback
be46757be2583dbe81b9bf23fb083b0c94a08128
.travis.yml
.travis.yml
language: ruby services: - docker addons: apt: update: true env: - VERSION=2.2.4 install: - sudo apt install -y curl ca-certificates - curl -o /tmp/vagrant.deb -L https://releases.hashicorp.com/vagrant/${VERSION}/vagrant_${VERSION}_x86_64.deb - sudo dpkg -i /tmp/vagrant.deb script: - vagrant up after_script: - vagrant destroy -f
language: ruby services: - docker addons: apt: update: true env: - VERSION=2.2.4 install: - sudo apt update -qq - sudo apt install -y curl ca-certificates - curl -o /tmp/vagrant.deb -L https://releases.hashicorp.com/vagrant/${VERSION}/vagrant_${VERSION}_x86_64.deb - sudo dpkg -i /tmp/vagrant.deb script: - vagrant up after_script: - vagrant destroy -f
Update the repositories before installing packages
Update the repositories before installing packages
YAML
mit
moritzheiber/laptop-provisioning,moritzheiber/laptop-provisioning
3e48b33c295a007832b924f1ca19dce15bf51d42
.swiftlint.yml
.swiftlint.yml
disabled_rules: - function_body_length - closing_brace - statement_position - force_cast - force_try - variable_name_min_length included: - Amethyst line_length: 200 file_length: 500 type_body_length: 400 cyclomatic_complexity: 15
disabled_rules: - function_body_length - closing_brace - statement_position - force_cast - force_try - variable_name_min_length included: - Amethyst line_length: 200 file_length: 500 type_body_length: 400 cyclomatic_complexity: 15 identifier_name: excluded: - id
Allow `id` as a variable name
Allow `id` as a variable name
YAML
mit
ianyh/Amethyst,ianyh/Amethyst,ianyh/Amethyst,ianyh/Amethyst,ianyh/Amethyst
b9edffd8762dfcf1f975fb945e215387e2211083
.travis.yml
.travis.yml
language: objective-c osx_image: xcode11.2 install: - brew update - brew outdated carthage || brew upgrade carthage - carthage update --platform mac,ios branches: only: - master script: - ci/script xcode_project: ReactiveBeaver.xcodeproj matrix: include: - xcode_scheme: ReactiveBeaverOSX env: - XCODE_SDK=macosx - XCODE_ACTION="build" - XCODE_DESTINATION="arch=x86_64" - xcode_scheme: ReactiveBeaverOSXTests env: - XCODE_SDK=macosx - XCODE_ACTION="test" - XCODE_DESTINATION="arch=x86_64"
language: objective-c osx_image: xcode11.2 install: - brew update - brew outdated carthage || brew upgrade carthage - carthage update --platform mac branches: only: - master script: - ci/script xcode_project: ReactiveBeaver.xcodeproj matrix: include: - xcode_scheme: ReactiveBeaverOSX env: - XCODE_SDK=macosx - XCODE_ACTION="build" - XCODE_DESTINATION="arch=x86_64" - xcode_scheme: ReactiveBeaverOSXTests env: - XCODE_SDK=macosx - XCODE_ACTION="test" - XCODE_DESTINATION="arch=x86_64"
Remove iOS pplatform from carthage setup for Travis CI
Remove iOS pplatform from carthage setup for Travis CI
YAML
mit
skyylex/ReactiveBeaver,skyylex/SKEPParser,skyylex/ReactiveBeaver
e57ee8be423d47d7303efc8b240c1e4a345128cb
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.5.0 - 2.5.1 - ruby-head gemfile: "gems.rb" before_install: - gem update --system # Due to: https://github.com/travis-ci/travis-ci/issues/8978 before_script: - "ruby lib/initial_setup.rb ../.travis_setup" - "psql -c 'create database slice_test;' -U postgres" - "rails db:migrate" matrix: allow_failures: - rvm: 2.5.1 - rvm: ruby-head
sudo: false language: ruby rvm: - 2.5.0 - 2.5.1 - ruby-head gemfile: "gems.rb" before_script: - "ruby lib/initial_setup.rb ../.travis_setup" - "psql -c 'create database slice_test;' -U postgres" - "rails db:migrate" matrix: allow_failures: - rvm: 2.5.1 - rvm: ruby-head
Revert attempted fix for Travis-CI
Revert attempted fix for Travis-CI
YAML
mit
remomueller/slice,remomueller/slice,remomueller/slice
ca95c3aac8988fa626fc395aa3d840e211139028
.travis.yml
.travis.yml
sudo: false language: ruby install: gem install minitest timecop coveralls rvm: - 2.0.0 - 2.1.9 - 2.2.8 - 2.3.5 - 2.4.2 - 2.5.0 script: rake test
sudo: false language: ruby install: gem install minitest timecop coveralls rvm: - 2.3.5 - 2.4.2 - 2.5.1 script: rake test
Drop ruby < 2.3 support
Drop ruby < 2.3 support in order to create mutable strings with String#+@
YAML
mit
rathrio/punch,rathrio/punch