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
deb02644e89eed612c9060a259633ea29f48a818
.travis.yml
.travis.yml
sudo: required services: - docker before_install: - docker build -t bsedg/webapp . script: - npm run lint
sudo: required services: - docker before_install: - docker build -t bsedg/webapp . script: - docker run -it bsedg/webapp npm run lint
Use docker run command for testing
Use docker run command for testing
YAML
mit
bsedg/webapp,bsedg/webapp,bsedg/webapp
1f93d2bd733f470a5a08e29cfba0f01163be36c5
.travis.yml
.travis.yml
sudo: required language: python services: - docker before_install: - sudo apt-get -qq update - sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine install: - pip install molecule # - pip install required driver (e.g. docker, python-vagrant, shade) script: - molecule test
sudo: required language: python services: - docker before_install: - sudo apt-get -qq update - sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine - sudo pip install docker install: - pip install molecule # - pip install required driver (e.g. docker, python-vagrant, shade) script: - molecule test
Add docker python client as dependency
Add docker python client as dependency
YAML
mit
dockerized89/kvm-ansible-role
e69cd6c090ee8eae2269470b51099a2644d82089
.travis.yml
.travis.yml
language: php install: - pear install -fa package.xml php: - 5.4 script: phpunit tests/
language: php install: - pear install -fa package.xml php: - 5.4 - 5.5 - 5.6 - 7.0 - nightly script: pear run-tests tests/
Test across a wider range of PHP versions.
Test across a wider range of PHP versions. Also, use the `pear run-tests` command to execute tests.
YAML
mit
pear/FSM,pear/FSM
9dfe059ba048f9379a86b6905aaeb496e35f1697
.travis.yml
.travis.yml
language: ruby jdk: - oraclejdk8 sudo: false rvm: - 2.3.1 install: - rvm use 2.3.1 - gem install bundler - bundle install script: buildr clean package git: depth: 10
language: ruby jdk: - oraclejdk8 rvm: - 2.3.1 install: - rvm use 2.3.1 - gem install bundler - bundle install script: buildr clean package git: depth: 10
Remove unrecognized sudo configuration section
Remove unrecognized sudo configuration section
YAML
apache-2.0
realityforge/gwt-cache-filter,realityforge/gwt-cache-filter,realityforge/gwt-cache-filter
5d57d414baf876f54b1cf90f0b2384c229b0f2bb
.travis.yml
.travis.yml
--- language: ruby gemfile: ruby/Gemfile script: - cd ruby - rubocop -fs -D - rake test addons: code_climate: repo_token: 92dc5a2cd2a2ecb507ea7aa5bad6dd602dce8ec07c3e58bf595462819bfb7c21
language: ruby gemfile: ruby/Gemfile bundler_args: --gemfile ruby/Gemfile addons: code_climate: repo_token: 92dc5a2cd2a2ecb507ea7aa5bad6dd602dce8ec07c3e58bf595462819bfb7c21
Build did not use custom gemfile location
Build did not use custom gemfile location
YAML
mit
rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism,rootulp/exercism
4f8895823bb988aaa62db32a64d86ce3bd6eb87a
.travis.yml
.travis.yml
--- language: node_js node_js: - "4" sudo: false cache: directories: - node_modules before_install: - npm config set spin false - npm install -g bower - bower --version - npm install phantomjs-prebuilt - node_modules/phantomjs-prebuilt/bin/phantomjs --version install: - npm install - bower install script: - npm test
--- language: node_js node_js: - "6" sudo: false cache: directories: - node_modules before_install: - npm config set spin false - npm install -g bower - bower --version - npm install phantomjs-prebuilt - node_modules/phantomjs-prebuilt/bin/phantomjs --version install: - npm install - bower install script: - npm test
Update default node version for CI.
Update default node version for CI.
YAML
mit
mchat/call-my-congress,mchat/call-my-congress
7fb01b2e651da6f56ce34cf10b2408eefa69f259
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "iojs" after_script: - npm run coveralls
language: node_js node_js: - 4 - 5 after_script: - npm run coveralls
Support node 4 and 5
Support node 4 and 5
YAML
mit
alanshaw/david
e8f5234d1b27b59773809bab82b50845be44e94a
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.11" env: DEBUG=dynamoose* before_script: - npm install -g grunt-cli - wget http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_2015-01-27.tar.gz - tar xfz dynamodb_local_2015-01-27.tar.gz - java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -inMemory &
language: node_js node_js: - "0.10" - "0.12" env: DEBUG=dynamoose* before_script: - npm install -g grunt-cli - wget http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_2015-01-27.tar.gz - tar xfz dynamodb_local_2015-01-27.tar.gz - java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -inMemory &
Add node 0.12 support (remove 0.11)
Add node 0.12 support (remove 0.11)
YAML
mit
asynxis/dynamoose,automategreen/dynamoose,benjcooley/dynamoose,automategreen/dynamoose
829af16f9103229e2c8388aa63fec952e4c51959
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: - 2.1.10 - 2.3.1 - 2.4.1 env: - GRAPHQL_VERSION=1.5.11 RAILS_VERSION=3.2.22 - GRAPHQL_VERSION=1.5.11 RAILS_VERSION=5.0.0 - GRAPHQL_VERSION=1.5.12 RAILS_VERSION=3.2.22 - GRAPHQL_VERSION=1.5.12 RAILS_VERSION=5.0.0 matrix: exclude: - rvm: 2.1.10 env: GRAPHQL_VERSION=1.5.11 RAILS_VERSION=5.0.0 - rvm: 2.1.10 env: GRAPHQL_VERSION=1.5.12 RAILS_VERSION=5.0.0
sudo: false language: ruby cache: bundler rvm: - 2.1.10 - 2.3.1 - 2.4.1 env: - GRAPHQL_VERSION=1.5.11 RAILS_VERSION=3.2.22 - GRAPHQL_VERSION=1.5.11 RAILS_VERSION=5.0.5 - GRAPHQL_VERSION=1.5.12 RAILS_VERSION=3.2.22 - GRAPHQL_VERSION=1.5.12 RAILS_VERSION=5.0.5 matrix: exclude: - rvm: 2.1.10 env: GRAPHQL_VERSION=1.5.11 RAILS_VERSION=5.0.5 - rvm: 2.1.10 env: GRAPHQL_VERSION=1.5.12 RAILS_VERSION=5.0.5
Test on newer Rails patch release
Test on newer Rails patch release
YAML
mit
tjoyal/graphql-client,tjoyal/graphql-client
cd338ddf8d4bed2b5436f8e42080cc911c1c2211
.travis.yml
.travis.yml
language: php sudo: required cache: directories: - $HOME/.composer/cache php: - 5.6 - 7.0 - 7.1 - hhvm install: - sudo apt-get install openssl - composer install - phpunit --self-update script: phpunit -c test/Unit/phpunit.xml.dist after_script: ## Code climate - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then ./vendor/bin/test-reporter; fi
language: php sudo: required cache: directories: - $HOME/.composer/cache php: - 5.6 - 7.0 - 7.1 - hhvm install: - sudo apt-get install openssl - composer install script: phpunit -c test/Unit/phpunit.xml.dist after_script: ## Code climate - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then ./vendor/bin/test-reporter; fi
Fix PHP7 phpunit self update
[CI] Fix PHP7 phpunit self update
YAML
mit
sciphp/numphp,sciphp/numphp,sciphp/numphp,sciphp/numphp
928d25020a06fe780f206235720a4e47ac4f61cd
.travis.yml
.travis.yml
language: php php: - "5.6" - "7.0" before_script: - composer install - composer require satooshi/php-coveralls after_success: - travis_retry php vendor/bin/coveralls -v - wget https://scrutinizer-ci.com/ocular.phar - >- travis_retry php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
language: php php: - "5.6" - "7.0" before_script: - composer install - composer require satooshi/php-coveralls after_success: - travis_retry php vendor/bin/coveralls -v
Revert coverage sending to scrutinizer
Revert coverage sending to scrutinizer
YAML
mit
sop/asn1
911edda25a5c93db51158128c06281d9718b088c
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" install: - pip install -q Django==$DJANGO --use-mirrors - pip install -q -e . - pip install -q -r example/requirements.txt --use-mirrors env: - DJANGO=1.3.1 - DJANGO=1.4.1 notifications: email: false branches: only: - master - testsuite script: - python setup.py test
language: python python: - "2.6" - "2.7" install: - pip install -q Django==$DJANGO --use-mirrors - pip install -q -e . - pip install -q -r example/requirements.txt --use-mirrors env: - DJANGO=1.3.1 - DJANGO=1.4.1 notifications: email: false before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" branches: only: - master - testsuite script: - python setup.py test
Allow browser tests on Travis CI
Allow browser tests on Travis CI
YAML
bsd-3-clause
winzard/django-image-cropping,winzard/django-image-cropping,henriquechehad/django-image-cropping,winzard/django-image-cropping,henriquechehad/django-image-cropping,henriquechehad/django-image-cropping
35d215d14bb0a88614e0b8ef9c2894430dd480c4
.travis.yml
.travis.yml
language: python python: - 3.6 install: - pip install -r requirements.txt - pip install coveralls script: - coverage run --source='.' -m py.test - coverage report -m after_success: - coveralls
language: python cache: pip python: - 3.6 install: - pip install -r requirements.txt - pip install coveralls script: - coverage run --source='.' -m py.test - coverage report -m after_success: - coveralls
Add tentative change to cache pip in Travis
Add tentative change to cache pip in Travis
YAML
mit
afriestad/WikiLinks,afriestad/WikiLinks,afriestad/WikiLinks
ce663c257f11751b82afdc8f30864171c2a96728
.travis.yml
.travis.yml
sudo: required dist: trusty language: ruby rvm: - 2.1.9 - 2.2.6 - 2.3.3 - ruby-head - ruby-head-clang - jruby-9.0 - jruby-head - rbx-3.26 - rbx-3.69 matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head - rvm: ruby-head-clang - rvm: rbx-3.26 - rvm: rbx-3.69 before_install: - sudo apt-get update - sudo apt-get install -y libgirepository1.0-dev gobject-introspection - sudo apt-get install -y gir1.2-tracker-0.16 libtracker-sparql-0.16-dev - sudo apt-get --no-install-recommends install -y tracker # Tests must be run with an X-server to allow D-Bus autolaunch, which # Tracker needs. before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: "DISPLAY=:99.0 bundle exec rake test"
sudo: required dist: trusty language: ruby before_install: - sudo apt-get update - sudo apt-get install -y libgirepository1.0-dev gobject-introspection - sudo apt-get install -y gir1.2-tracker-0.16 libtracker-sparql-0.16-dev - sudo apt-get --no-install-recommends install -y tracker rvm: - 2.3 - 2.4 - 2.5 - jruby-9.1 - ruby-head - ruby-head-clang - jruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head - rvm: ruby-head-clang # Tests must be run with an X-server to allow D-Bus autolaunch, which # Tracker needs. before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: "DISPLAY=:99.0 bundle exec rake test"
Update set of Travis builds
Update set of Travis builds
YAML
lgpl-2.1
mvz/gir_ffi-tracker
6c5728d4cf349fa54103f6e84ed1b620e99e9e82
.travis.yml
.travis.yml
language: node_js notifications: email: on_success: never on_failure: change node_js: - "0.10" - "0.12" - "iojs" after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
language: node_js notifications: email: on_success: never on_failure: change node_js: - "0.12" - "iojs" after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
Remove node 0.10 from Travis
Remove node 0.10 from Travis
YAML
mit
TypeStrong/ts-node,blakeembrey/typescript-node,TypeStrong/ts-node,blakeembrey/typescript-node,TypeStrong/ts-node,TypeStrong/ts-node
6a6af2f4e7b042321d7cc3d39cb932a5245a1f14
.travis.yml
.travis.yml
language: go go: - 1.1 - 1.2 - 1.3 - 1.4
language: go go: - 1.1 - 1.2 - 1.3 - 1.4 - 1.5
Add go 1.5 to CI run
Add go 1.5 to CI run
YAML
mit
eapache/channels
78e8dc862b1d882fb4427d4a034c88586dd6b6df
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: required rvm: - 2.3 - 2.4 - 2.5 notifications: email: recipients: - [email protected] on_failure: change
language: ruby cache: bundler sudo: required rvm: - 2.3 - 2.4 - 2.5 notifications: email: recipients: - [email protected] on_failure: change before_install: gem install bundler
Update to new version of bundler every time due to ruby 2.5 issue.
Update to new version of bundler every time due to ruby 2.5 issue.
YAML
apache-2.0
fhir-crucible/crucible_smart_app,fhir-crucible/crucible_smart_app,fhir-crucible/crucible_smart_app,fhir-crucible/crucible_smart_app
77efbc240851dbf134ff7f6922e9c28040c5fbac
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" install: pip install -e .[test] script: nosetests --with-coverage --cover-package poff --cover-html --cover-branches after_success: # Only deploy coverage from 2.7 - if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then ./travis/deploy_coverage.sh --verbose; fi env: global: # GitHub access token that grants access to thusoys GitHub account - secure: "YPcb4zLaJEfqqNr3Q6TkqShT4x7Ba+sX2xFyhtQ+4gjeMiUp11n8YLAm5WlMtvWgd8Et80XhY/c7DR5v7NAJ5Za2rCfZw5rlWfc7hTFdl2EfpQJhGkllPZjH5RCyMUhX8Cg+HhtR+BRU5c1liLk76TLsXVGSuckLJON9hsa2WKQ="
language: python python: - "2.6" - "2.7" - "3.3" install: pip install -e .[test] script: nosetests --with-coverage --cover-package poff --cover-html --cover-branches after_success: # Only deploy coverage from 2.7 - if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then ./travis/deploy_coverage.sh --verbose; fi env: global: # GitHub access token that grants access to thusoys GitHub account - secure: "YPcb4zLaJEfqqNr3Q6TkqShT4x7Ba+sX2xFyhtQ+4gjeMiUp11n8YLAm5WlMtvWgd8Et80XhY/c7DR5v7NAJ5Za2rCfZw5rlWfc7hTFdl2EfpQJhGkllPZjH5RCyMUhX8Cg+HhtR+BRU5c1liLk76TLsXVGSuckLJON9hsa2WKQ=" notifications: email: false
Disable email notifications of builds
Disable email notifications of builds
YAML
mit
thusoy/poff,thusoy/poff,thusoy/poff
21bd8d48e958d8a2dbcc397419431b0576d529f7
.travis.yml
.travis.yml
sudo: required language: ruby rvm: - 2.3.0 before_install: - sudo apt-get update -qq - sudo apt-get install build-essential cmake -y - wget https://github.com/librsync/librsync/archive/v1.0.1.tar.gz - tar -xzvf v1.0.1.tar.gz - cd v1.0.1 && cmake . && make && sudo make install - gem install bundler -v 1.12.5 install: - bundle install --jobs=3 --retry=3 - bundle exec rake compile
sudo: required language: ruby rvm: - 2.3.0 before_install: - sudo apt-get update -qq - sudo apt-get install build-essential cmake libpopt-dev libbz2-dev -y - wget https://github.com/librsync/librsync/archive/v1.0.1.tar.gz - tar -xzvf v1.0.1.tar.gz - cd librsync-1.0.1 && cmake . && make && sudo make install - gem install bundler -v 1.12.5 install: - bundle install --jobs=3 --retry=3 - bundle exec rake compile
Update packages and folder name
Update packages and folder name
YAML
mit
daveallie/lib_ruby_diff,daveallie/lib_ruby_diff,daveallie/lib_ruby_diff
8dab95d35fa7e697f95696b0635243a11c83db5e
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "4.2" before_install: - wget http://www.us.apache.org/dist/kafka/0.9.0.0/kafka_2.11-0.9.0.0.tgz -O kafka.tgz - mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-components 1 - nohup bash -c "cd kafka && bin/zookeeper-server-start.sh config/zookeeper.properties &" - nohup bash -c "cd kafka && bin/kafka-server-start.sh config/server.properties &" - sleep 5 - kafka/bin/kafka-topics.sh --zookeeper 127.0.0.1:2181 --create --topic kafka-test-topic --partitions 3 --replication-factor 1
language: node_js node_js: - "0.10" - "4.2" before_install: - wget http://www.us.apache.org/dist/kafka/0.9.0.0/kafka_2.11-0.9.0.0.tgz -O kafka.tgz - mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-components 1 - nohup bash -c "cd kafka && bin/zookeeper-server-start.sh config/zookeeper.properties &" - sleep 3 - nohup bash -c "cd kafka && bin/kafka-server-start.sh config/server.properties &" - sleep 7 - kafka/bin/kafka-topics.sh --zookeeper 127.0.0.1:2181 --create --topic kafka-test-topic --partitions 3 --replication-factor 1
Increase startup sleep delays for Travis
Increase startup sleep delays for Travis
YAML
mit
oleksiyk/kafka,hunterloftis/kafka
801add39017a2f72ed8844b487f0b18f1950ef8d
.travis.yml
.travis.yml
language: php dist: trusty cache: directories: - $HOME/.composer/cache/files - $HOME/.cache/composer/files matrix: include: - php: 7.0 - php: 7.1 - php: 7.2 env: UPDATE_COVERAGE=1 - php: nightly fast_finish: true before_script: - composer global require squizlabs/php_codesniffer - composer global require phpmd/phpmd - sh -c "[ -z $UPDATE_COVERAGE ] && phpenv config-rm xdebug.ini || true" script: - PATH=$HOME/.composer/vendor/bin:$PATH ./build.sh
language: php dist: trusty cache: directories: - $HOME/.composer/cache/files - $HOME/.cache/composer/files matrix: include: - php: 7.0 - php: 7.1 - php: 7.2 env: UPDATE_COVERAGE=1 - php: 7.3 - php: nightly fast_finish: true before_script: - composer global require squizlabs/php_codesniffer - composer global require phpmd/phpmd - sh -c "[ -z $UPDATE_COVERAGE ] && phpenv config-rm xdebug.ini || true" script: - PATH=$HOME/.composer/vendor/bin:$PATH ./build.sh
Add php 7.3 checks in
Add php 7.3 checks in
YAML
mit
exussum12/coverageChecker,exussum12/coverageChecker
badf3107c1b801d42e36be93cc639d1e7356f391
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - hhvm before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - phpunit
language: php php: - 5.5.9 - 5.5 - 5.6 - 7.0 - hhvm env: global: - setup=basic matrix: include: - php: 5.5.9 env: setup=lowest - php: 5.5.9 env: setup=stable sudo: false install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi script: vendor/bin/phpunit
Increase the Travis testing matrix, to include Illuminate 5.1 components
Increase the Travis testing matrix, to include Illuminate 5.1 components This whole file was basically lifted from Laravel as is.
YAML
mit
JosephSilber/bouncer,grantholle/bouncer
4912bce475bdbf98c93ee565fdb4f618f01e080b
.travis.yml
.travis.yml
language: ruby rvm: - ruby-1.9.3-p551 - ruby-2.2.2 - jruby-1.7.11 - jruby-head - rbx-2 install: - wget http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.zip --quiet -O spec/dynamodb_temp.zip - unzip -qq spec/dynamodb_temp.zip -d spec/DynamoDBLocal-latest - rm spec/dynamodb_temp.zip script: - gem install bundler; bundle install - bundle exec rake unattended_spec
language: ruby rvm: - ruby-2.0.0-p648 - ruby-2.1.10 - ruby-2.2.5 - ruby-2.3.1 - jruby-1.7.11 - jruby-head - rbx-2 before_install: gem install bundler -v 1.12.5 install: - wget http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.zip --quiet -O spec/dynamodb_temp.zip - unzip -qq spec/dynamodb_temp.zip -d spec/DynamoDBLocal-latest - rm spec/dynamodb_temp.zip script: - bundle install - bundle exec rake unattended_spec
Stop testing 1.9.3 as long dead Ruby; Add testing for recently EOL'd ruby 2.0.0 Add testing for soon to be EOL'd 2.1.10 Update 2.2 testing to 2.2.5 Add 2.3.1 testing Lock version of bundler used for tests to 1.12.5
Stop testing 1.9.3 as long dead Ruby; Add testing for recently EOL'd ruby 2.0.0 Add testing for soon to be EOL'd 2.1.10 Update 2.2 testing to 2.2.5 Add 2.3.1 testing Lock version of bundler used for tests to 1.12.5
YAML
mit
Dynamoid/Dynamoid,Dynamoid/Dynamoid
2d7862233e16fc162e945cc25407ce48ed638fc7
.travis.yml
.travis.yml
sudo: false dist: trusty language: python cache: pip: true python: - "3.4" - "3.5" - "3.6" install: - pip install pipenv && pipenv install --dev --system script: - python manage.py test - make flake8 notifications: email: false
sudo: false dist: trusty language: python cache: pip: true python: - "3.5" - "3.6" - "3.7" - "3.8" install: - pip install pipenv && pipenv install --dev --system script: - python manage.py test - make flake8 notifications: email: false
Add python 3.7 and 3.8 and remove tests for 3.4
Feature: Add python 3.7 and 3.8 and remove tests for 3.4
YAML
bsd-2-clause
pinry/pinry,lapo-luchini/pinry,lapo-luchini/pinry,pinry/pinry,lapo-luchini/pinry,pinry/pinry,pinry/pinry,lapo-luchini/pinry
9f798c555fb6b9ebd20d66ffafed5a95cfa0a9c8
.travis.yml
.travis.yml
language: objective-c before_install: - brew update - brew uninstall xctool && brew install xctool - gem install cocoapods -v "~> 0.26.2" - cd Tests && pod install && cd $TRAVIS_BUILD_DIR script: "make test" notifications: irc: "chat.freenode.net#cocode"
language: objective-c before_install: - brew update - brew uninstall xctool && brew install xctool - gem install cocoapods -v "~> 0.27.1" - cd Tests && pod install && cd $TRAVIS_BUILD_DIR script: "make test" notifications: irc: "chat.freenode.net#cocode"
Update cocoapods to hopefully fix tests
Update cocoapods to hopefully fix tests
YAML
bsd-2-clause
royalwang/CCLDefaults,cocodelabs/CCLDefaults
0aa50143e392424a0ce825f2b7cae1873e2668aa
.travis.yml
.travis.yml
language: ruby dist: trusty sudo: false before_install: - gem update --system - gem update bundler before_script: - bundle update cache: bundler rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10 - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 - ruby-head - jruby-1.7.27 - jruby-9.1.16.0 - jruby-head - rbx-3.100 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head
language: ruby dist: trusty sudo: false before_install: - gem update --system - gem update bundler before_script: - bundle update cache: bundler rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10 - 2.2.10 - 2.3.7 - 2.4.4 - 2.5.1 - ruby-head - jruby-1.7.27 - jruby-9.1.16.0 - jruby-head - rbx-3.100 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head
Update to Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1.
Update to Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1.
YAML
mit
tzinfo/tzinfo
0c28117a1ed4ac79aca89bf9a8a05fcc927fb9ce
.travis.yml
.travis.yml
language: node_js script: make test before_deploy: - npm-prepublish --verbose --lax deploy: provider: npm email: "replace-with-email" api_key: secure: "replace-with-encrypted-api-key" on: all_branches: true tags: true repo: github/fetch
language: node_js script: make test before_deploy: - npm-prepublish --verbose --lax deploy: provider: npm email: [email protected] api_key: secure: ij7AZPB/atfHn/MJI9T6p/awg8zSrFL/FXMorfvSNZdCck8BTZaK1eiiC2Jg1ljZiIeRnc+EEpBWTc1yTLAQUF8dIXf3oyxdSXQzz4GiGHRgqi9vyvPyUXshsqdNY2WzO6lnKJ+XLDCCYyaHcFIBeqPqtYxPe5m8ck8w1kQz8CQ= on: all_branches: true tags: true repo: github/fetch
Add deploy with my npm account for now
Add deploy with my npm account for now
YAML
mit
net-engine/fetch,rektide/fetch,jezell/fetch,steveluscher/fetch,chrisbaldwinj/fetch,jezell/fetch,radnor/fetch,colonsong/fetch,atma/fetch-compat,niftylettuce/fetch,slang800/fetch,rektide/fetch,slang800/fetch,camsong/fetch-ie8,kirill-konshin/fetch,SenecaSystems/fetch,tanzhihang/fetch,lagden/fetch,colonsong/fetch,ziir/fetch,gdamjan/fetch,camsong/fetch-ie8,kevin-klein/fetch,gdamjan/fetch,aleclarson/fetch,zebulonj/fetch-plus,snadn/fetch,kevin-klein/fetch,rektide/fetch,net-engine/fetch,mvader/fetch,chengky/fetch,chrisbaldwinj/fetch,niftylettuce/fetch,matthew-andrews/fetch,bmakuh/fetch,radnor/fetch,lagden/fetch,SenecaSystems/fetch,chengky/fetch,kirill-konshin/fetch,github/fetch,camsong/fetch-ie8,benestudio/fetch,gdi2290/fetch,zebulonj/fetch-plus,kruppel/fetch,benestudio/fetch,undoZen/fetch,JhansiYarnagula/dummy2,net-engine/fetch,bmakuh/fetch,kevin-klein/fetch,mvader/fetch,colonsong/fetch,othree/fetch,atma/fetch-compat,mvader/fetch,ziir/fetch,kruppel/fetch,pluma/fetch,steveluscher/fetch,Driftt/fetch,hilongjw/fetch,Driftt/fetch,slang800/fetch,lagden/fetch,JhansiYarnagula/dummy2,zebulonj/fetch-plus,slang800/fetch,kirill-konshin/fetch,dkfiresky/fetch,hilongjw/fetch,hilongjw/fetch,jezell/fetch,kruppel/fetch,ziir/fetch,chengky/fetch,cloderic/fetch,net-engine/fetch,heruan/fetch,tanzhihang/fetch,matthew-andrews/fetch,othree/fetch,bmakuh/fetch,mitchellmebane/GM_fetch,colonsong/fetch,cloderic/fetch,chengky/fetch,pluma/fetch,bmakuh/fetch,othree/fetch,heruan/fetch,pluma/fetch,chrisbaldwinj/fetch,Driftt/fetch,gdamjan/fetch,camsong/fetch-ie8,radnor/fetch,hilongjw/fetch,mvader/fetch,kruppel/fetch,pluma/fetch,lagden/fetch,gdamjan/fetch,keyanzhang/fetch-xhr,rektide/fetch,chrisbaldwinj/fetch,ziir/fetch,atma/fetch-compat,dkfiresky/fetch,heruan/fetch,SenecaSystems/fetch,u9520107/fetch,tanzhihang/fetch,u9520107/fetch,u9520107/fetch,othree/fetch,keyanzhang/fetch-xhr,kevin-klein/fetch,undoZen/fetch,dkfiresky/fetch,cloderic/fetch,SenecaSystems/fetch,heruan/fetch,benestudio/fetch,tanzhihang/fetch,niftylettuce/fetch,atma/fetch-compat,kirill-konshin/fetch,undoZen/fetch,snadn/fetch,snadn/fetch,snadn/fetch,radnor/fetch,steveluscher/fetch,gdi2290/fetch,u9520107/fetch,keyanzhang/fetch-xhr,cloderic/fetch,jezell/fetch,undoZen/fetch,steveluscher/fetch,JhansiYarnagula/dummy2
f756358fb53f53deaf98db6604017fc151322b87
.travis.yml
.travis.yml
language: node_js node_js: - "8" cache: yarn: true before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4 - export PATH=$HOME/.yarn/bin:$PATH install: - yarn install script: - yarn build - yarn lint #- yarn flow - yarn test # Install Now CLI on Travis before_deploy: npm install now --no-save # Deploy on now.sh deploy: - provider: script script: now --public --team shinkgs --token $NOW_TOKEN && now alias --team shinkgs --token $NOW_TOKEN shinkgs-$TRAVIS_BRANCH && echo "The current build is available at https://shinkgs-$TRAVIS_BRANCH.now.sh" skip_cleanup: true on: all_branches: true master: true
language: node_js node_js: - "8" cache: yarn: true before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4 - export PATH=$HOME/.yarn/bin:$PATH install: - yarn install script: - yarn build - yarn lint #- yarn flow - yarn test # Install Now CLI on Travis before_deploy: npm install now --no-save # Deploy on now.sh deploy: - provider: script script: now rm --team shinkgs --token $NOW_TOKEN -y -s shinkgs && now --public --team shinkgs --token $NOW_TOKEN && now alias --team shinkgs --token $NOW_TOKEN shinkgs-$TRAVIS_BRANCH && echo "The current build is available at https://shinkgs-$TRAVIS_BRANCH.now.sh" skip_cleanup: true on: all_branches: true master: true
Remove unused deployments on now.sh
Remove unused deployments on now.sh
YAML
mit
jkk/shinkgs,jkk/shinkgs
a9df846b58aecc33a384a0c479aa91d9d33eaf67
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.2 script: Support/Scripts/objc-build-scripts/cibuild
language: objective-c osx_image: xcode7.2 script: Support/Scripts/objc-build-scripts/cibuild env: global: - FRAMEWORK_NAME=MagicalRecord before_install: - brew update - brew install carthage before_script: # bootstrap the dependencies for the project # you can remove if you don't have dependencies - carthage bootstrap before_deploy: - carthage build --no-skip-current - carthage archive $FRAMEWORK_NAME
Configure TravisCI to build a carthage archive
Configure TravisCI to build a carthage archive
YAML
mit
simoncoulton/MagicalRecord,simoncoulton/MagicalRecord,spex-app/MagicalRecord,spex-app/MagicalRecord,yiplee/MagicalRecord,pronebird/MagicalRecord,spex-app/MagicalRecord,pronebird/MagicalRecord,yiplee/MagicalRecord
c5e2017f6db097898cd81dc3ef7e9b8bcff72492
stack.yaml
stack.yaml
flags: {} packages: - '.' extra-deps: [] resolver: lts-7.7
flags: {} packages: - '.' - location: git: https://github.com/adscib/haskell-chart commit: 021e5b2ce5b0ddb7c8a71569f8708330068fbf4a subdirs: - chart extra-dep: true extra-deps: [] resolver: lts-7.7
Switch to a custom version of chart
Switch to a custom version of chart
YAML
mit
adscib/monad-bayes,adscib/monad-bayes
a2bdfbb6d18135aa010bbe42e5033cacd8a4398f
.travis.yml
.travis.yml
language: "node_js" node_js: - "4" - "6" - "7" - "8" - "9" after_script: "cat ./build/coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js"
language: "node_js" node_js: - "4" - "6" - "7" - "8" - "9" - "10" after_script: "cat ./build/coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js"
Add support/testing for Node 10
Chore: Add support/testing for Node 10
YAML
mit
platinumazure/eslint-plugin-qunit
9234f269a59efc85d9a793f05d2c7e70b8cfd415
.travis.yml
.travis.yml
language: php dist: precise php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - nightly matrix: allow_failures: - nightly cache: directories: - $HOME/.composer/cache before_script: - travis_retry composer install --no-interaction --prefer-dist script: make sniff test
language: php dist: precise php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - nightly matrix: allow_failures: - nightly cache: directories: - $HOME/.composer/cache before_install: - phpenv config-rm xdebug.ini || true before_script: - travis_retry composer install --no-interaction --prefer-dist script: make sniff test
Disable Xdebug as early as possible
Enhancement: Disable Xdebug as early as possible
YAML
mit
stof/Faker,localheinz/Faker,matriphe/Faker
939be5fabe8c8ed8fcb334b07c84349f99cb0e59
.travis.yml
.travis.yml
language: python cache: pip matrix: include: - os: linux dist: xenial sudo: false python: '2.6' - os: linux dist: xenial sudo: false python: '2.7' - os: linux dist: xenial sudo: false python: '3.2' - os: linux dist: xenial sudo: false python: '3.3' - os: linux dist: xenial sudo: false python: '3.4' - os: linux dist: xenial sudo: false python: '3.5' - os: linux dist: xenial sudo: false python: '3.6' - os: linux dist: xenial sudo: false python: '3.7-dev' - os: linux dist: xenial sudo: false python: 'nightly' - os: linux dist: xenial sudo: false python: 'pypy' - os: linux dist: xenial sudo: false python: 'pypy3' install: - pip install codecov - pip install -r requirements.txt -r devel-requirements.txt - pip install -e . script: - PYTHONPATH=.:$PYTHONPATH python tests/__main__.py after_success: - PYTHONPATH=.:$PYTHONPATH coverage run --omit=*test* tests/__main__.py - codecov
language: python cache: pip matrix: include: - os: linux dist: xenial sudo: false python: '2.6' - os: linux dist: xenial sudo: false python: '2.7' - os: linux dist: xenial sudo: false python: '3.2' - os: linux dist: xenial sudo: false python: '3.3' - os: linux dist: xenial sudo: false python: '3.4' - os: linux dist: xenial sudo: false python: '3.5' - os: linux dist: xenial sudo: false python: '3.6' - os: linux dist: xenial sudo: true python: '3.7' - os: linux dist: xenial sudo: false python: 'nightly' - os: linux dist: xenial sudo: false python: 'pypy' - os: linux dist: xenial sudo: false python: 'pypy3' install: - pip install codecov - pip install -r requirements.txt -r devel-requirements.txt - pip install -e . script: - PYTHONPATH=.:$PYTHONPATH python tests/__main__.py after_success: - PYTHONPATH=.:$PYTHONPATH coverage run --omit=*test* tests/__main__.py - codecov
Switch back to offical Python 3.7 build
Switch back to offical Python 3.7 build It appears that Python 3.7 use in Travis-CI is finally fixed. However, it requires use of xenial distribution and sudo: true. Those have now been added to the matrix.
YAML
bsd-2-clause
etingof/pyasn1
e6a5fe6fa8d36123dba05516530118bb27aeaee8
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.4" env: - DJANGO_VERSION=1.5.11 - DJANGO_VERSION=1.6.8 - DJANGO_VERSION=1.7.8 - DJANGO_VERSION=1.8.0 - DJANGO_VERSION=1.9.9 matrix: exclude: - python: "2.6" env: DJANGO_VERSION=1.7.8 - python: "2.6" env: DJANGO_VERSION=1.8.0 - python: "2.6" env: DJANGO_VERSION=1.9.9 branches: except: - media install: - pip install -q django==$DJANGO_VERSION - pip install -q -e . - pip install -q selenium - pip install -q coveralls script: - coverage run --source publications --omit publications/six.py publications/tests/__main__.py after_success: - coveralls
language: python python: - "2.6" - "2.7" - "3.4" env: - DJANGO_VERSION=1.5.11 - DJANGO_VERSION=1.6.8 - DJANGO_VERSION=1.7.8 - DJANGO_VERSION=1.8.0 - DJANGO_VERSION=1.9.9 - DJANGO_VERSION=1.10.2 matrix: exclude: - python: "2.6" env: DJANGO_VERSION=1.7.8 - python: "2.6" env: DJANGO_VERSION=1.8.0 - python: "2.6" env: DJANGO_VERSION=1.9.9 - python: "2.6" env: DJANGO_VERSION=1.10.2 branches: except: - media install: - pip install -q django==$DJANGO_VERSION - pip install -q -e . - pip install -q selenium - pip install -q coveralls script: - coverage run --source publications --omit publications/six.py publications/tests/__main__.py after_success: - coveralls
Add Django 1.10 to Travis
Add Django 1.10 to Travis
YAML
mit
mbourqui/django-publications-bootstrap,lucastheis/django-publications,lucastheis/django-publications,mbourqui/django-publications-bootstrap,mbourqui/django-publications-bootstrap
6e5522f29ea95697166c500152c90b2292946a22
.travis.yml
.travis.yml
before_script: - sudo apt-get update - sudo apt-get install gccxml - gem uninstall -a --force gccxml_gem - gem install gccxml_gem --platform ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head
before_script: - sudo apt-get update - sudo apt-get install gccxml - gem uninstall -a --force gccxml_gem - gem install gccxml_gem --platform ruby rvm: - 2.0.0 - 2.1.0 - 2.2.0 - 2.3.0 - ruby-head
Update Ruby build matrix on Travis
Update Ruby build matrix on Travis
YAML
mit
jasonroelofs/rbplusplus,jasonroelofs/rbplusplus,jasonroelofs/rbplusplus,jasonroelofs/rbplusplus
e6d8e19b9996498c11ff01208873ccb201967323
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci before_install: - npm install - npm install -g istanbul coveralls
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci install: - yarn install --no-lockfile - yarn global add istanbul coveralls
Install using Yarn at Travis CI.
Install using Yarn at Travis CI.
YAML
mit
bigeasy/cliffhanger
5c09ff95de13cb4cbe676522b70a8f6a88850e28
.travis.yml
.travis.yml
sudo: required language: node_js node_js: - "lts/*" services: - docker branches: only: - master before_install: - sudo apt-get -qq update - sudo apt-get install -y fontforge openjdk-8-jre libbatik-java autoconf libtool pkg-config nasm build-essential install: - npm install script: - npm run deploy deploy: local-dir: _dist/ provider: pages skip-cleanup: true github-token: $GITHUB_TOKEN fqdn: julianxhokaxhiu.com on: branch: master # See https://github.com/travis-ci/travis-ci/issues/9312 edge: branch: v1.8.47
sudo: required language: node_js node_js: - "lts/carbon" services: - docker branches: only: - master before_install: - sudo apt-get -qq update - sudo apt-get install -y fontforge openjdk-8-jre libbatik-java autoconf libtool pkg-config nasm build-essential install: - npm install script: - npm run deploy deploy: local-dir: _dist/ provider: pages skip-cleanup: true github-token: $GITHUB_TOKEN fqdn: julianxhokaxhiu.com on: branch: master # See https://github.com/travis-ci/travis-ci/issues/9312 edge: branch: v1.8.47
Fix LTS NodeJS version to 8.x
Fix LTS NodeJS version to 8.x
YAML
mit
julianxhokaxhiu/julianxhokaxhiu.com,julianxhokaxhiu/julianxhokaxhiu.com
c48c4e292743892667892469c59e7963dcc754ca
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - '12' install: - npm ci
language: node_js node_js: - '12' install: - npm ci
Remove a deprecated sudo key
Travis: Remove a deprecated sudo key
YAML
mit
mgol/jquery.classList
3c460d2ca5bb7a96560925d784edc484ff804264
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.2 before_install: - if test -z $(brew list | grep -i xcproj); then brew install xcproj; fi - if test -z $(brew list | grep -i carthage); then brew install carthage; fi - export LANG=en_US.UTF-8 install: - bundle install --without development --deployment --jobs=3 --retry=3 - bundle exec pod install script: - xctool -workspace QuickTableViewController.xcworkspace -scheme QuickTableViewController-iOS -sdk iphonesimulator clean test - xctool -workspace QuickTableViewController.xcworkspace -scheme Example -sdk iphonesimulator clean build notifications: email: false
language: objective-c osx_image: xcode7.2 cache: directories: - vendor/bundle - Pods before_install: - if test -z $(brew list | grep -i xcproj); then brew install xcproj; fi - if test -z $(brew list | grep -i carthage); then brew install carthage; fi - export LANG=en_US.UTF-8 install: - bundle install --without development --deployment --jobs=3 --retry=3 - bundle exec pod install script: - xctool -workspace QuickTableViewController.xcworkspace -scheme QuickTableViewController-iOS -sdk iphonesimulator clean test - xctool -workspace QuickTableViewController.xcworkspace -scheme Example -sdk iphonesimulator clean build notifications: email: false
Enable Bundler and CocoaPods caching on Travis CI
Enable Bundler and CocoaPods caching on Travis CI
YAML
mit
bcylin/QuickTableViewController,bcylin/QuickTableViewController,bcylin/QuickTableViewController
42fedb697d47e4c3657238e48d1098d5c18e7286
.travis.yml
.travis.yml
language: php branches: # Only test the master branch and SemVer tags. only: - master - /^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+.*$/ php: - 5.4 - 5.5 - 5.6 - 7.0 sudo: false cache: directories: - vendor - $HOME/.composer/cache before_script: - composer install script: - vendor/bin/phpcs --standard=PSR2 -n src - vendor/bin/phpunit after_success: - travis_retry php vendor/bin/coveralls -v
language: php branches: # Only test the master branch and SemVer tags. only: - master - /^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+.*$/ php: - 7.0 - 5.6 - 5.5 - 5.4 sudo: false cache: directories: - vendor - $HOME/.composer/cache before_script: - composer install script: - vendor/bin/phpunit - vendor/bin/phpcs --standard=PSR2 -n src after_success: - travis_retry php vendor/bin/coveralls -v
Change order of tests. Do php 7.0 first, and linting last.
Change order of tests. Do php 7.0 first, and linting last.
YAML
mit
consolidation-org/output-formatters
6d470837c0ffe8e5438913b40b5b5984157def77
.travis.yml
.travis.yml
--- dist: trusty language: node_js node_js: - "lts/*" sudo: required services: - redis-server addons: chrome: stable cache: directories: - $HOME/.npm - $HOME/sockethub env: global: # See https://git.io/vdao3 for details. - JOBS=1 before_install: - npm config set spin false install: - mkdir -p $HOME/sockethub - cd $HOME/sockethub - npm install sockethub - cd node_modules/sockethub - npm install - cd $TRAVIS_BUILD_DIR - npm install before_script: - $HOME/sockethub/node_modules/sockethub/bin/sockethub 2> /dev/null & script: - npm run lint:js - npm test
--- dist: trusty language: node_js node_js: - "lts/*" sudo: required services: - redis-server addons: chrome: stable cache: directories: - $HOME/.npm - $HOME/sockethub env: global: # See https://git.io/vdao3 for details. - JOBS=1 before_install: - npm config set spin false install: - cd $HOME - git clone https://github.com/sockethub/sockethub.git - cd sockethub - npm install - cd $TRAVIS_BUILD_DIR - npm install before_script: - cd $HOME/sockethub - npm start 2> /dev/null & script: - npm run lint:js - npm test
Use Sockethub master from GitHub
Use Sockethub master from GitHub
YAML
mpl-2.0
67P/hyperchannel,67P/hyperchannel
1ab8527ab22f211a7491fd5d0fc86c83b2059995
.travis.yml
.travis.yml
sudo: false language: java jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8 git: submodules: false before_install: git submodule update --init --recursive env: GRADLE_OPTS="-Xms1g -Xmx3g" install: ./gradlew setupCIWorkspace script: ./gradlew build notifications: email: false
sudo: false language: java jdk: - oraclejdk8 git: submodules: false before_install: git submodule update --init --recursive env: GRADLE_OPTS="-Xms1g -Xmx3g" install: ./gradlew setupCIWorkspace script: ./gradlew build notifications: email: false
Remove older JDKs from Travis
Remove older JDKs from Travis
YAML
mit
kenzierocks/SpongeVanilla,DDoS/SpongeVanilla,DDoS/SpongeVanilla,kenzierocks/SpongeVanilla
d4a9dc2697f7a910e810ddf994a0e2e173562bcc
.travis.yml
.travis.yml
language: android android: components: - tools # to get the new `repository-11.xml` - tools # see https://github.com/travis-ci/travis-ci/issues/6040#issuecomment-219367943) - platform-tools - build-tools-25.0.2 - android-25 - extra-android-m2repository - extra-google-m2repository - extra-android-support - extra-google-google_play_services jdk: - oraclejdk8 script: - ./gradlew clean jacocoTestReportDebug
language: android android: components: - tools # to get the new `repository-11.xml` - tools # see https://github.com/travis-ci/travis-ci/issues/6040#issuecomment-219367943) - platform-tools - build-tools-25.0.2 - android-25 - extra-android-m2repository - extra-google-m2repository - extra-android-support - extra-google-google_play_services jdk: - oraclejdk8 script: - ./gradlew clean jacocoTestReportDebug -d
Add debugging info to the build
Add debugging info to the build
YAML
mit
NineWorlds/serenity-android,kingargyle/serenity-android,NineWorlds/serenity-android,kingargyle/serenity-android,kingargyle/serenity-android,NineWorlds/serenity-android
a61e3c37efb9326e29bd4ebbd6a3808ae18696e3
.travis.yml
.travis.yml
#This file is generated by ModuleSync, do not edit. --- sudo: false language: ruby cache: bundler script: "bundle exec rake validate lint spec" matrix: fast_finish: true include: - rvm: 2.1.6 dist: trusty env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-14.04 script: bundle exec rake beaker services: docker sudo: required - rvm: 2.1.6 dist: trusty env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/centos-7 script: bundle exec rake beaker services: docker sudo: required - rvm: 2.1.6 bundler_args: --without system_tests env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes" - rvm: 2.1.6 bundler_args: --without system_tests env: PUPPET_GEM_VERSION="~> 4.0" FUTURE_PARSER="yes" - rvm: 2.1.5 bundler_args: --without system_tests env: PUPPET_GEM_VERSION="~> 4.0" notifications: email: false
#This file is generated by ModuleSync, do not edit. --- sudo: false language: ruby cache: bundler script: "bundle exec rake validate lint spec" matrix: fast_finish: true include: - rvm: 2.1.6 dist: trusty env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-14.04 script: bundle exec rake beaker services: docker sudo: required - rvm: 2.1.6 dist: trusty env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/centos-7 script: bundle exec rake beaker services: docker sudo: required - rvm: 2.1.6 bundler_args: --without system_tests env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes" - rvm: 2.1.5 bundler_args: --without system_tests env: PUPPET_GEM_VERSION="~> 4.0" notifications: email: false
Remove support for furure parser as it is only applies to version 3
Remove support for furure parser as it is only applies to version 3
YAML
apache-2.0
rehanone/puppet-git
f2b94d5e56d2ee8abb2f742701e202c07ce7c67e
.travis.yml
.travis.yml
language : node_js node_js : - "0.12" - "4" - "5" - "6" python: - "2.7" before_install: - sudo apt-get update -y -qq - sudo apt-get install -y graphviz plotutils imagemagick - sudo pip install image scruffy - npm install -g npm before_script : - npm install -g grunt-cli
language : node_js node_js : - "4" - "5" - "6" - "7" python: - "2.7" before_install: - sudo apt-get update -y -qq - sudo apt-get install -y graphviz plotutils imagemagick - sudo pip install image scruffy - npm install -g npm before_script : - npm install -g grunt-cli
Remove Node.js 0.12, add Node.js 7 from CI build
Remove Node.js 0.12, add Node.js 7 from CI build
YAML
mit
prantlf/grunt-scruffy
fd691cf5e97cf8e131a3f368dfbe6389ba9b0ebd
.travis.yml
.travis.yml
language: php sudo: false dist: trusty cache: directories: - $HOME/.composer/cache install: composer install matrix: include: - php: 7.1 - php: nightly allow_failures: - php: nightly script: - vendor/bin/phpunit
language: php sudo: false dist: trusty cache: directories: - $HOME/.composer/cache install: composer install matrix: include: - php: 7.1 - php: nightly allow_failures: - php: nightly script: - vendor/bin/phpunit - vendor/bin/phpspec run
Add phpspec run in Travis CI
Add phpspec run in Travis CI
YAML
mit
zlikavac32/php-enum
e0618e6126e793ce1a65be2b4af38dfc57e0d425
.travis.yml
.travis.yml
before_install: - sudo add-apt-repository --yes ppa:boost-latest/ppa - sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test - sudo apt-get -qq update install: - sudo apt-get install -qq libboost1.55-all-dev gcc-4.8 g++-4.8 clang-3.4 ninja-build language: cpp compiler: clang before_script: - mkdir build - cd build - cmake -G Ninja .. script: - ninja
before_install: - sudo add-apt-repository --yes ppa:boost-latest/ppa - sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test - sudo apt-get -qq update install: - sudo apt-get install -qq libboost1.55-all-dev - sudo apt-get install -qq gcc-4.8 g++-4.8 - sudo apt-get install -qq clang-3.4 language: cpp compiler: clang before_script: - mkdir build - cd build - cmake .. script: - make
Revert "Switch to ninja build system."
Revert "Switch to ninja build system." This reverts commit 40ccdd46d8d2587c0ef3bd3fba3c6ff4b8820e5f.
YAML
bsd-2-clause
fire/tinch_pp,fire/tinch_pp
a24772d2e2d85ac875d89887bc08f56c9717a391
.travis.yml
.travis.yml
language: dart dart: - dev - stable dart_task: - test - dartfmt - dartanalyzer # Only building master means that we don't run two builds for each pull request. branches: only: [master] cache: directories: - $HOME/.pub-cache
language: dart dart: - dev dart_task: - test - dartfmt - dartanalyzer # Only building master means that we don't run two builds for each pull request. branches: only: [master] cache: directories: - $HOME/.pub-cache
Stop running Travis on Stable
Stop running Travis on Stable
YAML
bsd-3-clause
dart-lang/http2
5f0c01bc05f5cb902e96611b881e53b7d82e9be2
.travis.yml
.travis.yml
language: python python: - "2.7" install: # Install Sublime Text 2 # http://askubuntu.com/questions/172698/how-do-i-install-sublime-text-2 - sudo add-apt-repository ppa:webupd8team/sublime-text-2 -y - sudo apt-get update - sudo apt-get install sublime-text -y - sudo ln -s /usr/bin/subl /usr/bin/sublime_text # List Sublime Text info for debugging - sublime_text --version # Install `sublime_plugin_tests` - python setup.py install before_script: # Generate a screen buffer to collect Sublime Text window - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sublime_text & script: # Run our tests - ./test.sh notifications: email: false
language: python python: - "2.7" install: # Install Sublime Text 2 # http://askubuntu.com/questions/172698/how-do-i-install-sublime-text-2 - sudo add-apt-repository ppa:webupd8team/sublime-text-2 -y - sudo apt-get update - sudo apt-get install sublime-text -y - sudo ln -s /usr/bin/subl /usr/bin/sublime_text # List Sublime Text info for debugging - sublime_text --version # Install `sublime_plugin_tests` - python setup.py install before_script: # Generate a screen buffer to collect Sublime Text window - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: # Run our tests - ./test.sh notifications: email: false
Revert "Attempting to start sublime_text in parallel"
Revert "Attempting to start sublime_text in parallel" This reverts commit 18e1427217e540511aef488bfd8af6c6757a13b7.
YAML
unlicense
twolfson/sublime-plugin-tests,twolfson/sublime-plugin-tests
ec85607b715a83bf258da6cc072db9d9529f97af
.travis.yml
.travis.yml
sudo: required language: python jdk: openjdk8 services: - docker python: - "3.6" cache: pip matrix: fast_finish: true env: - FLAGS="-a star" INST=nt NXF_VER=0.27.6 - FLAGS="-a star" INST=nt - FLAGS="-a star -s" INST=nts - FLAGS="-a hisat2" INST=nt NXF_VER=0.27.6 - FLAGS="-a hisat2" INST=nt - FLAGS="-a hisat2 -s" INST=nts install: # Install Singularity if needed - "./tests/install.sh $INST" - "cd ${TRAVIS_BUILD_DIR}/tests/" script: - "nf-core lint $TRAVIS_BUILD_DIR" - "./run_test.sh $FLAGS"
sudo: required language: python jdk: openjdk8 services: - docker python: - "3.6" cache: pip matrix: fast_finish: true env: - FLAGS="-a star" INST=nt NXF_VER=0.27.6 - FLAGS="-a star" INST=nt - FLAGS="-a star -s" INST=nts - FLAGS="-a hisat2" INST=nt NXF_VER=0.27.6 - FLAGS="-a hisat2" INST=nt - FLAGS="-a hisat2 -s" INST=nts install: # Install Singularity if needed - "./tests/install.sh $INST" - "cd ${TRAVIS_BUILD_DIR}/tests/" script: - "nf-core lint $TRAVIS_BUILD_DIR" - "./run_test.sh $FLAGS -b" - "./run_test.sh $FLAGS"
Build the reference genome first
Build the reference genome first
YAML
mit
ewels/NGI-RNAseq,ewels/NGI-RNAseq,ewels/NGI-RNAseq,ewels/NGI-RNAseq,ewels/NGI-RNAseq
6fa36c56719f60608c873dfb2a91d7bb96f10afb
.travis.yml
.travis.yml
sudo: false language: php cache: directories: - $HOME/.composer/cache/files env: global: - TEST_COMMAND="./vendor/bin/phpunit" matrix: fast_finish: true include: - php: 5.5 - php: 5.6 env: - EXECUTE_CS_CHECK=true - php: 7 env: - EXECUTE_COVERAGE=true - TEST_COMMAND="./vendor/bin/phpunit --coverage-clover coverage.clover" - php: hhvm notifications: email: true install: - travis_retry composer install --no-interaction --prefer-dist script: - $TEST_COMMAND - if [[ "$EXECUTE_CS_CHECK" == "true" ]]; then ./vendor/bin/phpcs ; fi after_success: - if [[ "$EXECUTE_COVERAGE" == "true" ]]; then wget https://scrutinizer-ci.com/ocular.phar ; fi - if [[ "$EXECUTE_COVERAGE" == "true" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover ; fi
sudo: false language: php cache: directories: - $HOME/.composer/cache/files env: global: - TEST_COMMAND="./vendor/bin/phpunit" matrix: fast_finish: true include: - php: 5.5 - php: 5.6 env: - EXECUTE_CS_CHECK=true - php: 7 env: - EXECUTE_COVERAGE=true - TEST_COMMAND="./vendor/bin/phpunit --coverage-clover coverage.clover" - php: hhvm notifications: email: true before_install: - if [[ "$EXECUTE_COVERAGE" != "true" ]]; then phpenv config-rm xdebug.ini; fi install: - travis_retry composer install --no-interaction --prefer-dist script: - $TEST_COMMAND - if [[ "$EXECUTE_CS_CHECK" == "true" ]]; then ./vendor/bin/phpcs ; fi after_success: - if [[ "$EXECUTE_COVERAGE" == "true" ]]; then wget https://scrutinizer-ci.com/ocular.phar ; fi - if [[ "$EXECUTE_COVERAGE" == "true" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover ; fi
Disable XDebug when not needed
Disable XDebug when not needed
YAML
mit
woohoolabs/yang
3ab02347d81c4ce82332b560b1b9eac869821eee
.travis.yml
.travis.yml
language: objective-c osx_image: xcode12.2 env: global: - RUBYMOTION_LICENSE=1dcac45cc434293009f74b33037bdf7361a3a1ff # Official license key for open-source projects - TMP_DIR=./tmp # For motion repo, so it doesn't attempt to use /tmp, to which it has no access - OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES before_install: - brew update - brew outdated xctool || brew upgrade xctool - (xcrun simctl list) - wget http://travisci.rubymotion.com/ -O RubyMotion-TravisCI.pkg - sudo installer -pkg RubyMotion-TravisCI.pkg -target / - cp -r /usr/lib/swift/*.dylib /Applications/Xcode.app/Contents/Frameworks/ - touch /Applications/Xcode.app/Contents/Frameworks/.swift-5-staged - sudo mkdir -p ~/Library/RubyMotion/build - sudo chown -R travis ~/Library/RubyMotion - eval "sudo motion activate $RUBYMOTION_LICENSE" - sudo motion update - (motion --version) - (ruby --version) - motion repo script: bundle exec rake spec
language: objective-c osx_image: xcode12.4 env: global: - RUBYMOTION_LICENSE=1dcac45cc434293009f74b33037bdf7361a3a1ff # Official license key for open-source projects - TMP_DIR=./tmp # For motion repo, so it doesn't attempt to use /tmp, to which it has no access - OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES before_install: - brew update - brew outdated xctool || brew upgrade xctool - (xcrun simctl list) - wget http://travisci.rubymotion.com/ -O RubyMotion-TravisCI.pkg - sudo installer -pkg RubyMotion-TravisCI.pkg -target / - cp -r /usr/lib/swift/*.dylib /Applications/Xcode.app/Contents/Frameworks/ - touch /Applications/Xcode.app/Contents/Frameworks/.swift-5-staged - sudo mkdir -p ~/Library/RubyMotion/build - sudo chown -R travis ~/Library/RubyMotion - eval "sudo motion activate $RUBYMOTION_LICENSE" - sudo motion update - (motion --version) - (ruby --version) - motion repo script: bundle exec rake spec
Update the Travis build to the version supported by the RubyMotion-TravisCI.pkg REALLY THIS TIME. (Please let Travis' docs be out of date, because they say 12.2 is most recent...)
Update the Travis build to the version supported by the RubyMotion-TravisCI.pkg REALLY THIS TIME. (Please let Travis' docs be out of date, because they say 12.2 is most recent...)
YAML
mit
mattgreen/motion-sqlite3
ea2026170ea03ae197b0053ca84d34fd58ba3ff9
.travis.yml
.travis.yml
language: objective-c branches: only: - master git: submodules: false before_install: - git submodule update --init --recursive - bundle install podfile: ./Podfile xcode_workspace: ./Devbeers.xcworkspace xcode_scheme: Devbeers script: xctool -workspace ./Devbeers.xcworkspace -sdk iphonesimulator -scheme Devbeers build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO osx_image: xcode7.2
language: objective-c branches: only: - master git: submodules: false before_install: - git submodule update --init --recursive podfile: ./Podfile xcode_workspace: ./Devbeers.xcworkspace xcode_scheme: Devbeers script: xctool -workspace ./Devbeers.xcworkspace -sdk iphonesimulator -scheme Devbeers build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO osx_image: xcode7.2
Remove duplicated bundle install instruction
Remove duplicated bundle install instruction
YAML
apache-2.0
devbeers/devbeers-ios,devbeers/devbeers-ios
40139d1f6c94a913a8e1f51c75f9d18850e074f8
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: - 2.4.1 - 2.3.4 - 2.2.7 before_install: gem install bundler -v 1.15.1 script: - bundle exec rake ci
sudo: false language: ruby cache: bundler rvm: - 2.4.1 - 2.3.4 - 2.2.7 - ruby-head before_install: gem install bundler -v 1.15.1 script: - bundle exec rake ci matrix: allow_failures: - rvm: ruby-head
Test ruby-head on Travis allowing failures
Test ruby-head on Travis allowing failures Refs #97
YAML
mit
ruby-formatter/rufo,ruby-formatter/rufo,ruby-formatter/rufo
1841d725453523af241b60845a5aefab53c154cc
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 2.0.0 script: - cat .gemfile.lock - bundle exec rake spec env: global: - SPEC_OPTS="-fd" matrix: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3" gemfile: .gemfile matrix: fast_finish: true allow_failures: - rvm: 1.9.3 - rvm: 2.0.0 exclude: - rvm: 2.0.0 env: PUPPET_VERSION="~> 2.7.0" notifications: email: false
language: ruby rvm: # EL5 & 6 - 1.8.7 # EL7 - 2.0.0 # Teh f00t00r - ruby-head script: - cat .gemfile.lock - bundle exec rake spec env: global: - SPEC_OPTS="-fd" matrix: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3" gemfile: .gemfile matrix: fast_finish: true allow_failures: - rvm: 1.9.3 - rvm: 2.0.0 - rvm: ruby-head exclude: - rvm: 2.0.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: ruby-head env: PUPPET_VERSION="~> 2.7.0" notifications: email: false
Add ruby-head to test matrix
Add ruby-head to test matrix
YAML
apache-2.0
wcooley/puppet-fail_unconfigured
cd0f282b44847efe776aa2cac653cd6086b6832f
.travis.yml
.travis.yml
language: php php: - "5.5" - "5.6" before_script: - composer self-update - composer install --dev # Fail if... # * phpunit tests fail/error # * phpcs tests indicate that PSR-2 compliance worsened # * phpmd tests indicate a mess script: - vendor/bin/phpunit - vendor/bin/phpcs -s --report-width=120 --standard=PSR2 ./{src,tests} - vendor/bin/phpmd src text cleancode,codesize,controversial,design,naming,unusedcode after_script: - php vendor/bin/coveralls
language: php php: - "5.5" - "5.6" before_script: - composer self-update - composer install --dev # Fail if... # * phpunit tests fail/error # * phpcs tests indicate that PSR-2 compliance worsened # * phpmd tests indicate a mess script: - mkdir -p build/logs - vendor/bin/phpunit - vendor/bin/phpcs -s --report-width=120 --standard=PSR2 ./{src,tests} - vendor/bin/phpmd src text cleancode,codesize,controversial,design,naming,unusedcode after_script: - php vendor/bin/coveralls
Create build path for coveralls
Create build path for coveralls
YAML
mit
webbj74/acquia-platform-cloud-data-model
b0d5468c9c1155cd7bd3eb73075e403a5974e640
.travis.yml
.travis.yml
sudo: false language: android jdk: oraclejdk8 env: global: - GRADLE_OPTS='-Dorg.gradle.daemon=false -Dorg.gradle.parallel=false -Dkotlin.incremental=false -DdisablePreDex' - ANDROID_TARGET=android-26 - ANDROID_BUILD_TOOLS_VERSION=26.0.1 - ANDROID_ABI=armeabi-v7a - ANDROID_EMULATOR_TARGET=android-22 android: components: - tools - build-tools-$ANDROID_BUILD_TOOLS_VERSION - $ANDROID_TARGET - $ANDROID_EMULATOR_TARGET - extra-google-google_play_services - extra-android-support - extra - sys-img-$ANDROID_ABI-$ANDROID_EMULATOR_TARGET licenses: - 'android-sdk-license-.+' before_install: - echo yes | android update sdk --all --filter build-tools-$ANDROID_BUILD_TOOLS_VERSION --no-ui --force script: - echo no | android create avd --force -n test -t $ANDROID_EMULATOR_TARGET --abi $ANDROID_ABI - emulator -avd test -no-window & - ./gradlew check - android-wait-for-emulator - adb shell input keyevent 82 & - ./gradlew :demo:connectedAndroidTest
sudo: true language: android jdk: oraclejdk8 env: global: - GRADLE_OPTS='-Dorg.gradle.daemon=false -Dorg.gradle.parallel=false -Dkotlin.incremental=false -DdisablePreDex' - ANDROID_TARGET=android-26 - ANDROID_BUILD_TOOLS_VERSION=26.0.1 - ANDROID_ABI=armeabi-v7a - ANDROID_EMULATOR_TARGET=android-22 android: components: - tools - build-tools-$ANDROID_BUILD_TOOLS_VERSION - $ANDROID_TARGET - $ANDROID_EMULATOR_TARGET - extra-google-google_play_services - extra-android-support - extra - sys-img-$ANDROID_ABI-$ANDROID_EMULATOR_TARGET licenses: - 'android-sdk-license-.+' before_install: - echo yes | android update sdk --all --filter build-tools-$ANDROID_BUILD_TOOLS_VERSION --no-ui --force before_script: - sudo service postgresql stop || true - sudo service mysql stop || true - sudo service memcached stop || true - sudo service bootlogd stop || true - sudo service elasticsearch stop || true - sudo service mongodb stop || true - sudo service neo4j stop || true - sudo service cassandra stop || true - sudo service riak stop || true - sudo service rsync stop || true - sudo service x11-common stop || true script: - echo no | android create avd --force -n test -t $ANDROID_EMULATOR_TARGET --abi $ANDROID_ABI - emulator -avd test -no-window & - ./gradlew check - android-wait-for-emulator - adb shell input keyevent 82 & - ./gradlew :demo:connectedAndroidTest
Stop unnecessary services for Travis
Stop unnecessary services for Travis
YAML
mit
thyrlian/AwesomeValidation,thyrlian/AwesomeValidation
8e83b9ea18f038a2b3f98b30206550431a5c47a8
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" - "8"
language: node_js node_js: - "6" - "8" - "10"
Stop testing on Node 4, start testing on Node 10
Stop testing on Node 4, start testing on Node 10
YAML
mit
helmetjs/hide-powered-by
be02aa1a86f55178b1ce6ecc9b3fc5a6fdb987dc
.travis.yml
.travis.yml
language: node_js node_js: - "latest" - "8" - "7" script: npm test
language: node_js node_js: - "10" - "9" - "8" - "7" script: npm test
Add node 9 and 10
Add node 9 and 10
YAML
mit
nozzle/react-static,nozzle/react-static
f7d06c6db765ceb22392e5e4f0e4761d380617c8
.travis.yml
.travis.yml
language: cpp compiler: - gcc before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.4 main' >> /etc/apt/sources.list" - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add - - sudo apt-get update -qq - sudo apt-get install -qq llvm-3.4-dev - sudo apt-get install -qq openjdk-7-jdk - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - export "JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/" script: - make check
language: cpp compiler: - gcc before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.4 main' >> /etc/apt/sources.list" - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add - - sudo apt-get update -qq - sudo apt-get install -qq llvm-3.4-dev - sudo apt-get install -qq openjdk-7-jdk - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - export "JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/" script: - make check LLVM_CONFIG=llvm-config-3.4
Enable LLVM support for Travis CI
Enable LLVM support for Travis CI Signed-off-by: Pekka Enberg <[email protected]>
YAML
bsd-2-clause
penberg/hornet,penberg/hornet,penberg/hornet,penberg/hornet
0920d1eb4e6da4e62a92bb7803dc0f8c55eb31b8
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.5" - "3.6" addons: postgresql: "9.4" services: postgresql env: global: - BUILD_ON_TRAVIS=true - DJANGO_SETTINGS_MODULE="application.settings" - PYTHONPATH="/home/travis/build/kiote/cosmopolitan" - PIP_USE_MIRRORS=true matrix: - DJANGO=1.9 DB=postgresql #commands to install dependencies install: - pip install -q Django==$DJANGO - pip install -q -r requirements.txt - pip install coveralls before_script: - psql -c 'create database travis_ci_test;' -U postgres - psql -U postgres -c "create extension postgis" - python manage.py migrate --noinput #command to run the test suite script: - python manage.py test - coverage run --source=cosmopolitan manage.py test after_success: coveralls
language: python python: - "2.7" - "3.5" - "3.6" dist: trusty sudo: false addons: postgresql: "9.5" apt: packages: - postgresql-9.5-postgis-2.3 services: postgresql env: global: - BUILD_ON_TRAVIS=true - DJANGO_SETTINGS_MODULE="application.settings" - PYTHONPATH="/home/travis/build/kiote/cosmopolitan" - PIP_USE_MIRRORS=true matrix: - DJANGO=1.9 DB=postgresql #commands to install dependencies install: - pip install -q Django==$DJANGO - pip install -q -r requirements.txt - pip install coveralls before_script: - psql -c 'create database travis_ci_test;' -U postgres - psql -U postgres -c "create extension postgis" - python manage.py migrate --noinput #command to run the test suite script: - python manage.py test - coverage run --source=cosmopolitan manage.py test after_success: coveralls
Install postgis and postgres directly
Install postgis and postgres directly
YAML
mit
openspending/cosmopolitan
737066450325fa9cfc72749c9e5af38e99f7bd48
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang env: matrix: - BUILD_CONFIGURATION=0 - BUILD_CONFIGURATION=1 - BUILD_CONFIGURATION=2 - BUILD_CONFIGURATION=3 - BUILD_CONFIGURATION=4 - BUILD_CONFIGURATION=5 - BUILD_CONFIGURATION=6 - BUILD_CONFIGURATION=7 branches: only: - master - development - /^release-.*$/ script: - ctest -VV -S ./cmake/usCTestScript_travis.cmake
language: cpp compiler: - gcc - clang env: matrix: - BUILD_CONFIGURATION=0 - BUILD_CONFIGURATION=1 - BUILD_CONFIGURATION=2 - BUILD_CONFIGURATION=3 - BUILD_CONFIGURATION=4 - BUILD_CONFIGURATION=5 - BUILD_CONFIGURATION=6 - BUILD_CONFIGURATION=7 install: - wget -qO- https://cmake.org/files/v2.8/cmake-2.8.12.2-Linux-i386.tar.gz | tar xvz branches: only: - master - development - /^release-.*$/ script: - ./cmake-2.8.12.2-Linux-i386/bin/ctest -VV -S ./cmake/usCTestScript_travis.cmake
Install minimum required cmake version.
Travis: Install minimum required cmake version. Signed-off-by: Sascha Zelzer <[email protected]>
YAML
apache-2.0
CppMicroServices/CppMicroServices,ksubramz/CppMicroServices,CppMicroServices/CppMicroServices,CppMicroServices/CppMicroServices,saschazelzer/CppMicroServices,saschazelzer/CppMicroServices,ksubramz/CppMicroServices,ksubramz/CppMicroServices,ksubramz/CppMicroServices,CppMicroServices/CppMicroServices,ksubramz/CppMicroServices,CppMicroServices/CppMicroServices
9cf0b15726288e0146ca1737b9ce34e6bf71bf1a
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - jruby-19mode - rbx-19mode - 2.0.0 notifications: email: recipients: - [email protected] - [email protected] matrix: allow_failures: - rvm: 1.9.3 - rvm: jruby-19mode - rvm: rbx-19mode
language: ruby rvm: - 1.9.3 - jruby-19mode - rbx-19mode - 2.0.0 notifications: email: recipients: - [email protected] matrix: allow_failures: - rvm: 1.9.3 - rvm: jruby-19mode - rvm: rbx-19mode
Remove sidekiq-spy mailing list from build notifications.
Remove sidekiq-spy mailing list from build notifications. This doesn't work, as Travis CI can't confirm the mailing list subscription. But perhaps it's best not to flood the mailing list with build notifications, anyway. If you'd like to be notified of builds, however, please add your address and send a pull request. :)
YAML
mit
tiredpixel/sidekiq-spy
f433208783a46987b82244c269443c95297fee33
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 notifications: email: - [email protected] env: - PUPPET_VERSION=2.7.25 - PUPPET_VERSION=3.0.2 - PUPPET_VERSION=3.1.1 - PUPPET_VERSION=3.2.4 - PUPPET_VERSION=3.3.2 - PUPPET_VERSION=3.4.2 before_install: - gem --version - gem update --system # todo: workaround for https://github.com/rubygems/rubygems/pull/763 before_script: - bundle list matrix: allow_failures: - rvm: 2.1.0 # broken in puppet < 3.5.0 https://tickets.puppetlabs.com/browse/PUP-1243
rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 notifications: email: - [email protected] env: - PUPPET_VERSION=2.7.25 - PUPPET_VERSION=3.0.2 - PUPPET_VERSION=3.1.1 - PUPPET_VERSION=3.2.4 - PUPPET_VERSION=3.3.2 - PUPPET_VERSION=3.4.2 before_install: - gem --version - gem update --system # todo: workaround for https://github.com/rubygems/rubygems/pull/763 before_script: - bundle list - puppet --version matrix: allow_failures: - rvm: 2.1.0 # broken in puppet < 3.5.0 https://tickets.puppetlabs.com/browse/PUP-1243
Print puppet version before running tests in Travis
Print puppet version before running tests in Travis
YAML
mit
rodjek/librarian-puppet,Qualys/librarian-puppet,jbussdieker/librarian-puppet,brianhks/librarian-puppet,rbramwell/librarian-puppet
c6d5d615d4143a5d77f8bcfdba70acd01a2a4ef7
.travis.yml
.travis.yml
language: r sudo: required r_binary_packages: - ggplot2 - jsonlite - R.oo - plyr scripts: - mvn test
language: r sudo: required r_binary_packages: - ggplot2
Set to only install a single R package
Set to only install a single R package
YAML
epl-1.0
FTSRG/mondo-sam,FTSRG/mondo-sam,FTSRG/mondo-sam,FTSRG/mondo-sam
f381c2dc5903ecfba639abff3ae48fb8c8c4f86b
.travis.yml
.travis.yml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - rvm use 2.3.1 - gem install bundler - bundle install script: buildr clean package git: depth: 10
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - rvm use 2.6.6 - gem install bundler - bundle install script: buildr clean package git: depth: 10
Update the version of ruby used to build project in TravisCI.
Update the version of ruby used to build project in TravisCI.
YAML
apache-2.0
realityforge/gwt-cache-filter,realityforge/gwt-cache-filter,realityforge/gwt-cache-filter
ec0486c7f18c4dad4f61291115c8ec44a4e46fce
.travis.yml
.travis.yml
sudo: false language: php php: - 7.0 - 7.1 - nightly matrix: allow_failures: - php: nightly fast_finish: true install: - composer install - travis/install-eio.sh - travis/install-uv.sh script: - phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml - php vendor/bin/php-cs-fixer --diff --dry-run -v fix after_script: - composer require satooshi/php-coveralls:dev-master - php vendor/bin/coveralls -v cache: directories: - $HOME/.composer/cache
sudo: false language: php php: - 7.0 - 7.1 - nightly matrix: allow_failures: - php: nightly fast_finish: true install: # --ignore-platform-reqs, because https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/2722 - composer update -n --prefer-dist --ignore-platform-reqs - composer require satooshi/php-coveralls dev-master --ignore-platform-reqs - travis/install-eio.sh - travis/install-uv.sh script: - phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml - PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix after_script: - php vendor/bin/coveralls -v cache: directories: - $HOME/.composer/cache
Update Travis to run on PHP 7.2
Update Travis to run on PHP 7.2
YAML
mit
amphp/fs,amphp/file
c57576eddb408d4ef8d51eeebea4dc9a8e95e392
.travis.yml
.travis.yml
language: cpp compiler: gcc before_install: - sudo apt-get update -qq - sudo apt-get install -qq cmake sqlite3 qt4-dev-tools cscope exuberant-ctags before_script: - mkdir build - cd build - cmake .. script: make after_script: - make package - export pkgfile=`ls -1 ./*.deb` - sudo dpkg -i $pkgfile - cqmakedb -v - cqsearch -v - cqmakedb -h - cqsearch -h notifications: email: - [email protected] on_success: change on_failure: always
language: cpp compiler: gcc before_install: - sudo apt-get update -qq - sudo apt-get install -qq cmake sqlite3 qt4-dev-tools cscope exuberant-ctags before_script: - mkdir build - cd build - cmake .. script: make after_script: - make package - export tgzfile=`ls -1 ./*.tar.gz` - tar -ztvf $tgzfile - export debfile=`ls -1 ./*.deb` - sudo dpkg -i $debfile - cqmakedb -v - cqsearch -v - cqmakedb -h - cqsearch -h notifications: email: - [email protected] on_success: change on_failure: always
Test TGZ and DEB using Travis
Test TGZ and DEB using Travis
YAML
mpl-2.0
ruben2020/codequery,ruben2020/codequery,ruben2020/codequery,ruben2020/codequery,ruben2020/codequery
ac692c5f97f879c1869b332b7e3cd40d89bb085f
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '8' - '10' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc script: - nyc npm test
sudo: false language: node_js node_js: - '10' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc script: - nyc npm test
Drop support for Node.js 8 early.
Drop support for Node.js 8 early.
YAML
mit
bigeasy/restrictor
f06ae19d963461c7450894c62a798986cc1dd385
.travis.yml
.travis.yml
language: go go: - 1.3.3 - 1.4.2 - 1.5.2 - tip script: - go test -v ./... - go build
language: go go: - 1.3.3 - 1.4.2 - 1.5.1 - tip script: - go test -v ./... - go build
Revert "Correct Go release version in Travis config (1.5.2)"
Revert "Correct Go release version in Travis config (1.5.2)" This reverts commit 1e1d5137bf425b617046d7c938a7c33f14acf539. There is no 1.5.2 ... No idea where I got that impression!?
YAML
apache-2.0
gosuri/cobra,eparis/cobra,sdomino/cobra,spf13/cobra,anthonyfok/cobra,liggitt/cobra
bd8c321c5df5d7a6172e88cffbe62596f879c98c
.travis.yml
.travis.yml
language: c compiler: gcc sudo: required dist: bionic before_install: - sudo add-apt-repository ppa:vala-team/ppa -y - sudo apt-get update -y - sudo apt-cache search libgee - sudo apt-cache search libvte - sudo apt-get install -y xvfb build-essential gnome-common valac libglib2.0-dev libgtk-3-dev libgee-0.8-dev libjson-glib-dev libsoup2.4-dev libvte-2.91-dev after_success: - bash <(curl -s https://codecov.io/bash) script: - NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make - NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make test-coverage
language: c compiler: gcc sudo: required dist: bionic before_install: - sudo add-apt-repository ppa:vala-team/ppa -y - sudo apt-get update -y - sudo apt-get install -y xvfb build-essential gnome-common valac libglib2.0-dev libgtk-3-dev libgee-dev libjson-glib-dev libsoup2.4-dev libvte-2.90-dev after_success: - bash <(curl -s https://codecov.io/bash) script: - NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make - NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make test-coverage
Fix libgee & libvte versions
Fix libgee & libvte versions
YAML
mit
lcallarec/dockery,lcallarec/gnome-docker-manager
e1a2bead711e6af0ee15887f4a977c9e8c02a2f9
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "0.10" - "0.8" before_install: - npm install npm@2 -g - npm install npm -g notifications: slack: on_success: change on_failure: change rooms: - secure: WDSJTf0kyen9YY7PH4PPc6LftE5w+YH825dX0qUF/3C+U4/qKW9D7U2z+bsbqi0Ir3cGObN6iK73O18E7N4L3vV1eyCj3ds7eyU9/YBroegz8+4KXw89n4lUVGo4jjIp9tzPgqmRdk5S0Flr/wc1HM9+VlnHFN5gE0P7Vui8bbc= - secure: IlvaufTODSJPN3aIeQV4k/9c0YVRReCK4GAkBUj6Q9rMEJ9XQaSC3x5O0i1CM2cODWqfQsqVkII92LJy/Q8bbvIVW6ZYLy5aYi+EIiHAZMZkPb+kyIS97uDeYGL4Oo9OteGftNCIQTIpqu5WwWDx9cu9IoX9Qb19lO6chkCBo2I=
language: node_js sudo: false node_js: - "7" - "6" - "5" - "4" - "0.12" - "0.11" - "0.10" - "0.8" before_install: - npm install npm@2 -g - npm install npm -g notifications: slack: on_success: change on_failure: change rooms: - secure: WDSJTf0kyen9YY7PH4PPc6LftE5w+YH825dX0qUF/3C+U4/qKW9D7U2z+bsbqi0Ir3cGObN6iK73O18E7N4L3vV1eyCj3ds7eyU9/YBroegz8+4KXw89n4lUVGo4jjIp9tzPgqmRdk5S0Flr/wc1HM9+VlnHFN5gE0P7Vui8bbc= - secure: IlvaufTODSJPN3aIeQV4k/9c0YVRReCK4GAkBUj6Q9rMEJ9XQaSC3x5O0i1CM2cODWqfQsqVkII92LJy/Q8bbvIVW6ZYLy5aYi+EIiHAZMZkPb+kyIS97uDeYGL4Oo9OteGftNCIQTIpqu5WwWDx9cu9IoX9Qb19lO6chkCBo2I=
Add more supported node versions
Add more supported node versions
YAML
mit
philnash/twilio-node,wanjunsli/twilio-node,twilio/twilio-node
18d05f2ff94cb1f0e68dd43faf24baec60473954
.travls.yml
.travls.yml
language: python deploy: provider: s3 bucket: phzmapi.org region: us-east-1 acl: public_read on: repo: waldoj/frostline branch: master skip_cleanup: true local_dir: api/ access_key_id: AKIAI57KQU7C2AZT5MEQ
language: python before_install: sudo apt-get install python-dev python-pip python-setuptools build-essential install: pip install csvkit script: ./frostline.py deploy: provider: s3 bucket: phzmapi.org region: us-east-1 acl: public_read on: repo: waldoj/frostline branch: master skip_cleanup: true local_dir: api/ access_key_id: AKIAI57KQU7C2AZT5MEQ
Add Travis build prerequisites, command
Add Travis build prerequisites, command Toward #20.
YAML
mit
waldoj/frostline,waldoj/frostline,waldoj/frostline,waldoj/frostline
c27dac978898a287adb077869a924adf721f1ece
.travis.yml
.travis.yml
language: rust rust: - nightly sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo '<meta http-equiv=refresh content=0;url=filetime/index.html>' > target/doc/index.html && pip install ghp-import --user $USER && $HOME/.local/bin/ghp-import -n target/doc && git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages notifications: email: on_success: never env: global: env: global: secure: dsIj09BQvGF872zKmqzG+WwCl7gfqwsnxcm3GZlAMgyLYm4juvHOwCRhIERCN3BCxPvdlSRKhe9Rwmp1RkiKuqTK3ITUTAy29Maf2vuL1T+zcdpZE0t6JSCU1gbEwzCA2foB1jzgy7Q47EzeJusmGNwibscjYmXKlH6JCFwTobM=
language: rust rust: - nightly - beta - 1.1.0 sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo '<meta http-equiv=refresh content=0;url=filetime/index.html>' > target/doc/index.html && pip install ghp-import --user $USER && $HOME/.local/bin/ghp-import -n target/doc && git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages notifications: email: on_success: never env: global: env: global: secure: dsIj09BQvGF872zKmqzG+WwCl7gfqwsnxcm3GZlAMgyLYm4juvHOwCRhIERCN3BCxPvdlSRKhe9Rwmp1RkiKuqTK3ITUTAy29Maf2vuL1T+zcdpZE0t6JSCU1gbEwzCA2foB1jzgy7Q47EzeJusmGNwibscjYmXKlH6JCFwTobM=
Test on beta/stable as well
Test on beta/stable as well
YAML
apache-2.0
alexcrichton/filetime
1b0fc8e0014fa1ac36812db5147b7d7ac25c1b0e
.travis.yml
.travis.yml
language: bash services: docker install: - git clone https://github.com/docker-library/official-images.git ~/official-images before_script: - env | sort - cd "$VERSION" - image='rails' script: - docker build -t "$image" . - ~/official-images/test/run.sh "$image" - docker build -t "$image:onbuild" onbuild after_script: - docker images # vim:set et ts=2 sw=2:
language: bash services: docker install: - git clone https://github.com/docker-library/official-images.git ~/official-images before_script: - env | sort - image='rails' script: - docker build -t "$image" . - ~/official-images/test/run.sh "$image" - docker build -t "$image:onbuild" onbuild after_script: - docker images # vim:set et ts=2 sw=2:
Fix Travis referencing nonexistent variable
Fix Travis referencing nonexistent variable
YAML
mit
infosiftr/rails,docker-library/rails
df68116a4c4c383e56d23ab06ed381ca4f21e18d
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby - rbx-18mode - rbx-19mode - ree
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby - rbx - rbx-2.0 - ree
Revert "Test against Rubinius in both Ruby 1.8 and 1.9 mode"
Revert "Test against Rubinius in both Ruby 1.8 and 1.9 mode" This reverts commit 9faa27a2e24b74bcf6e7d853991c05dde2df7041.
YAML
mit
nilbus/octokit.rb,iainbeeston/octokit.rb,simon0191/octokit.rb,byroot/octokit.rb,whip112/octokit.rb,LizzHale/octokit.rb,r7kamura/octokit.rb,cocktail-io/octokit.rb,tarebyte/octokit.rb,xantage/octokit.rb,LizzHale/octokit.rb,benbalter/octokit.rb,pwz3n0/octokit.rb,simon0191/octokit.rb,nilbus/octokit.rb,raysrashmi/octokit.rb,pezholio/octokit.rb,octokit/octokit.rb,synmnstr/octokit.rb,stetsenko/octokit.rb,BreemsEmporiumMensToiletriesFragrances/octokit.rb,Neo20067/octokit.rb,whip112/octokit.rb,Tadeirro/octokit.rb,moodyredistribution/octokit.rb,sferik/octokit.rb,pezholio/octokit.rb,pwz3n0/octokit.rb,hoorayimhelping/octokit.rb,hoorayimhelping/octokit.rb,JuanitoFatas/octokit.rb,AnNOtis/octokit.rb,kv109/octokit.rb,BreemsEmporiumMensToiletriesFragrances/octokit.rb,daukantas/octokit.rb,christer155/octokit.rb,synmnstr/octokit.rb,Payro93/octokit.rb,tarebyte/octokit.rb,byroot/octokit.rb,AnNOtis/octokit.rb,christer155/octokit.rb,daukantas/octokit.rb,moodyredistribution/octokit.rb,octokit/octokit.rb,pvdb/octokit.rb,r7kamura/octokit.rb,sferik/octokit.rb,JuanitoFatas/octokit.rb,raysrashmi/octokit.rb,xantage/octokit.rb,Payro93/octokit.rb,Neo20067/octokit.rb,Ladiijae/octokit.rb,benbalter/octokit.rb,Tadeirro/octokit.rb,kv109/octokit.rb,stetsenko/octokit.rb,cocktail-io/octokit.rb,iainbeeston/octokit.rb,Ladiijae/octokit.rb,pvdb/octokit.rb
1cfa3574a2dfc31e71113b55feb6af6599ed08e5
.travis.yml
.travis.yml
language: ruby script: - bundle exec rspec matrix: fast_finish: true allow_failures: - name: TruffleRuby rvm: system include: - rvm: 2.3.0 install: - gem install bundler - bundle install - rvm: 2.5.1 install: - gem install bundler - bundle install - rvm: 2.6.0-preview1 install: - gem install bundler - bundle install - name: TruffleRuby rvm: system install: - export TRUFFLERUBY_VERSION=1.0.0-rc3 - curl -L https://github.com/oracle/truffleruby/releases/download/vm-$TRUFFLERUBY_VERSION/truffleruby-$TRUFFLERUBY_VERSION-linux-amd64.tar.gz | tar xz - export PATH="$PWD/truffleruby-$TRUFFLERUBY_VERSION-linux-amd64/bin:$PATH" - gem install bundler - bundle install
language: ruby script: - bundle exec rspec matrix: fast_finish: true allow_failures: - name: TruffleRuby rvm: system include: - rvm: 2.3.0 install: - gem install bundler - bundle install - rvm: 2.5.1 install: - gem install bundler - bundle install - rvm: 2.6.0-preview3 install: - gem install bundler - bundle install - name: TruffleRuby rvm: system install: - export TRUFFLERUBY_VERSION=1.0.0-rc3 - curl -L https://github.com/oracle/truffleruby/releases/download/vm-$TRUFFLERUBY_VERSION/truffleruby-$TRUFFLERUBY_VERSION-linux-amd64.tar.gz | tar xz - export PATH="$PWD/truffleruby-$TRUFFLERUBY_VERSION-linux-amd64/bin:$PATH" - gem install bundler - bundle install
Update Travis CI to Ruby 2.6.0-preview3
Update Travis CI to Ruby 2.6.0-preview3
YAML
mit
buren/honey_format,buren/honey_format
3631a3ff29cfb29a774e98e12a230f9f6565813f
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" env: - DJANGO=1.4.13 - DJANGO=1.5.8 - DJANGO=1.6.5 install: - pip install -q Django==$DJANGO --use-mirrors script: - python setup.py test
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" env: - DJANGO=1.4.13 - DJANGO=1.5.8 - DJANGO=1.6.5 - DJANGO=1.7 install: - pip install -q Django==$DJANGO --use-mirrors script: - python setup.py test
Add Django 1.7 to Travis config
Add Django 1.7 to Travis config Signed-off-by: Byron Ruth <[email protected]>
YAML
bsd-2-clause
mjschultz/django-tracking2,bruth/django-tracking2,bruth/django-tracking2
edcd25430a5565c8640d6fdb86530cb45fd50a7d
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 script: - phpunit ./php/tests/disposable_email_checker_tests.php
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 script: - phpunit ./php/tests/disposable_email_checker_tests.php
Add PHP v5.6 to Travis config
Add PHP v5.6 to Travis config
YAML
mit
vboctor/disposable_email_checker
54cb542867322654179fe5a6edec3972f0e5a33a
.travis.yml
.travis.yml
language: python python: - 3.3 - 3.4 env: - DJANGO=Django==1.7.1 - DJANGO=https://github.com/django/django/archive/master.zip matrix: # 2014-11-16: global failure due to django-nose failure allow_failures: - env: DJANGO=https://github.com/django/django/archive/master.zip install: - sudo apt-get install libxml2-dev libxslt-dev - pip install $DJANGO - pip install -r requirements.txt - pip install -r requirements-dev.txt script: - cd tests - coverage run --source=django_google_dork --omit=*/migrations/* ./manage.py test # TODO: only w/ django-1.7 and python-3.3 after_success: - coveralls
language: python python: - 3.3 - 3.4 env: - DJANGO=Django==1.7.1 - DJANGO=https://github.com/django/django/archive/master.zip matrix: # 2014-11-16: global failure due to django-nose failure allow_failures: - env: DJANGO=https://github.com/django/django/archive/master.zip install: - sudo apt-get install libxml2-dev libxslt-dev - pip install $DJANGO - pip install -r requirements.txt - pip install -r requirements-dev.txt script: - cd tests - coverage run --source=django_google_dork --omit=*/migrations/* ./manage.py test after_success: - if [[ $TRAVIS_PYTHON_VERSION == 3.3* && $DJANGO == 1.7* ]]; then coveralls; fi
Send coverage report only once (python-3.3 + django-1.7)
Send coverage report only once (python-3.3 + django-1.7)
YAML
bsd-2-clause
chgans/django-google-dork
c11ae8329c098b91f2d2f1368fd17e82ebdc77fa
.travis.yml
.travis.yml
language: go go: - 1.6.x - 1.7.x - 1.8.x - 1.9.x - release - tip script: - go get github.com/stretchr/testify/assert - go test -v ./...
language: go go: - 1.8.1 - tip script: - go get github.com/stretchr/testify/assert - go test -v github.com/tyler-smith/go-bip32
Update Go versions in Travis.
TWEAK: Update Go versions in Travis.
YAML
mit
tyler-smith/go-bip32
be8bc8be1dc932533bd46c4b78b563f8212131f6
.travis.yml
.travis.yml
--- # This is an example .travis. # If you've forked this repo, please make sure to change the notifications section language: bash sudo: required services: docker before_install: - docker pull aaroc/code-rade-sl6-ansible - docker pull aaroc/code-rade-u1404-ansible install: - docker run -v $PWD:$PWD -w $PWD aaroc/code-rade-sl6-ansible ansible-playbook -c local -i handson/inventory.localhost handson/lesson1.yml - docker run -v $PWD:$PWD -w $PWD aaroc/code-rade-u1404-ansible ansible-playbook -c local -i handson/inventory.localhost handson/lesson3.yml notifications: slack: rooms: - ansible4devops2015:It5SDeYANNXDtXh6YmbmO6Rh#testing on_success: always on_failure: always on_start: always
--- # This is an example .travis. # If you've forked this repo, please make sure to change the notifications section sudo: required services: docker before_install: - docker pull aaroc/code-rade-sl6-ansible - docker pull aaroc/code-rade-u1404-ansible install: - docker run -v $PWD:$PWD -w $PWD aaroc/code-rade-sl6-ansible ansible-playbook -c local -i handson/inventory.localhost handson/lesson1.yml - docker run -v $PWD:$PWD -w $PWD aaroc/code-rade-u1404-ansible ansible-playbook -c local -i handson/inventory.localhost handson/lesson3.yml script: - cd course-preparation/Ansible - ansible-lint training-lab.yml notifications: slack: rooms: - ansible4devops2015:It5SDeYANNXDtXh6YmbmO6Rh#testing on_success: always on_failure: always on_start: always
Remove language bash -apparently it's not a thing
Remove language bash -apparently it's not a thing
YAML
apache-2.0
AAROC/AnsibleBootCamp,AAROC/AnsibleBootCamp
ffbe01909db54bb9c138cb89364f5a8ce6a7fa2d
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: - 1.9.3 - 2.1.2 - 2.2.4 - 2.3.1
sudo: false language: ruby cache: bundler rvm: - 1.9.3 - 2.1.2 - 2.2.4 - 2.3.1 before_install: - gem install bundler
Update Bundler before dependencies are installed
Update Bundler before dependencies are installed
YAML
mit
airbnb/stemcell,airbnb/stemcell
f8b8f0d77c2a8ab910bb50b835c7741cb13c04c3
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler script: 'bundle exec rake spec:coverage --trace' rvm: - 2.3.4 - 2.4.1 - ruby-head - jruby-9.1.8.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head notifications: webhooks: urls: - https://webhooks.gitter.im/e/fde2367248d53de4fe70 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always
language: ruby sudo: false cache: bundler script: 'bundle exec rake spec:coverage --trace' rvm: - 2.3.4 - 2.4.1 - ruby-head - jruby-9.1.6.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head notifications: webhooks: urls: - https://webhooks.gitter.im/e/fde2367248d53de4fe70 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always
Use jruby-9.1.6.0 on CI because of a 9.1.8.0 bug
Use jruby-9.1.6.0 on CI because of a 9.1.8.0 bug See: https://travis-ci.org/hanami/router/jobs/246744043
YAML
mit
lotus/router,hanami/router,lotus/router,hanami/router
ef3adaa09fcab8311f77795310e348dc049dad5c
.travis.yml
.travis.yml
language: go go: - tip notifications: # See http://about.travis-ci.org/docs/user/build-configuration/ to learn more # about configuring notification recipients and more. email: recipients: - [email protected]
language: go go: - 1.2 notifications: # See http://about.travis-ci.org/docs/user/build-configuration/ to learn more # about configuring notification recipients and more. email: recipients: - [email protected]
Test w/ 1.2, not tip.
Test w/ 1.2, not tip.
YAML
mit
codahale/chacha20poly1305
145ddbe776ebee31e1307067769c736bf91370c9
.travis.yml
.travis.yml
--- language: ruby bundler_args: --without system_tests --jobs 3 --retry 3 script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'" sudo: false matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.6.0" - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.7.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" notifications: email: false
--- language: ruby bundler_args: --without system_tests --jobs 3 --retry 3 script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'" sudo: false matrix: fast_finish: true include: - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" notifications: email: false
Remove support for Puppet 2.7
Remove support for Puppet 2.7
YAML
apache-2.0
dhoppe/puppet-ntp,dhoppe/puppet-ntp
aca5a1d84acded134978b5fbbc25f1b6251a6a7b
.travis.yml
.travis.yml
branches: only: - python language: python python: - pypy - pypy3 - 2.6 - 2.7 - 3.3 - 3.4 install: - pip install -e . "Werkzeug >= 0.9" coverage coveralls script: - coverage run --source sass,sassc,sassutils setup.py test after_success: - coveralls notifications: irc: channels: - "irc.ozinger.org:8080#hongminhee" on_success: change on_failure: always
branches: only: - python language: python python: - pypy - pypy3 - 2.6 - 2.7 - 3.3 - 3.4 before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq install: - sudo apt-get install -qq g++-4.8 libstdc++-4.8-dev - export CC="gcc-4.8" CXX="g++-4.8" - pip install -e . "Werkzeug >= 0.9" coverage coveralls script: - coverage run --source sass,sassc,sassutils setup.py test after_success: - coveralls notifications: irc: channels: - "irc.ozinger.org:8080#hongminhee" on_success: change on_failure: always
Use C++11 on Travis CI
Use C++11 on Travis CI http://stackoverflow.com/a/22270645/383405
YAML
mit
admire93/libsass-python,dahlia/libsass-python,dahlia/libsass-python,admire93/libsass-python
77b9b6b39f0e730af0bab3a69245cd274da28bcd
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 before_script: # install dependencies - gem update --system - gem install compass - npm install -g grunt-cli bower - bower install script: - grunt test
language: node_js node_js: - 0.10 before_script: # install dependencies - gem update --system - gem install compass - npm install -g grunt-cli bower - bower install script: - grunt test
Update Travis to latest stable Node.
Update Travis to latest stable Node.
YAML
epl-1.0
louismrose/eugenia-live,louismrose/eugenia-live
05dd9e6ed03825d516b1738a1aae99bda59a6b49
.travis.yml
.travis.yml
rvm: - 2.2 git: submodules: false
rvm: - 2.2 - 2.1 - 2.0.0 - rbx-2.2.10 - jruby-19mode - ruby-head - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head git: submodules: false
Expand the supported Ruby versions.
Expand the supported Ruby versions.
YAML
mit
mikz/slack-ruby-client,jlyonsmith/slack-ruby-client,ajmarquez/slack-ruby-client,slack-ruby/slack-ruby-client,ajmarquez/slack-ruby-client,jakedahn/slack-ruby-client,jakedahn/slack-ruby-client,mikz/slack-ruby-client,dblock/slack-ruby-client,dblock/slack-ruby-client,slack-ruby/slack-ruby-client,rkadyb/slack-ruby-client,rkadyb/slack-ruby-client,jlyonsmith/slack-ruby-client
a3051d397fbc49a4409b8e52928bf440715645b7
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.2.3 before_install: gem install bundler -v 1.13.6
sudo: false language: ruby cache: bundler bundler_args: --quiet rvm: - 2.1.10 - 2.2.3 - 2.3.1 before_install: gem install bundler -v 1.13.6
Test also against ruby 2.1/2.3 and cache bundled gems in Travis
Test also against ruby 2.1/2.3 and cache bundled gems in Travis
YAML
mit
bear-metal/rails_routes_analyzer,bear-metal/rails_routes_analyzer
72a5478faa469f9023cc1802367cddfc5270acbb
.travis.yml
.travis.yml
language: go sudo: false go: - 1.3 - 1.4 - 1.5 - 1.6 - 1.7 - 1.8 services: - mysql - postgresql before_install: - mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot - mysql -e "CREATE DATABASE IF NOT EXISTS test_env;" -uroot - psql -c "CREATE DATABASE test;" -U postgres install: - go get -t ./... - go install ./... script: - go test -v ./... - bash test-integration/postgres.sh - bash test-integration/mysql.sh - bash test-integration/mysql-flag.sh - bash test-integration/mysql-env.sh - bash test-integration/sqlite.sh
language: go sudo: false go: - 1.6 - 1.7 - 1.8 services: - mysql - postgresql before_install: - mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot - mysql -e "CREATE DATABASE IF NOT EXISTS test_env;" -uroot - psql -c "CREATE DATABASE test;" -U postgres install: - go get -t ./... - go install ./... script: - go test -v ./... - bash test-integration/postgres.sh - bash test-integration/mysql.sh - bash test-integration/mysql-flag.sh - bash test-integration/mysql-env.sh - bash test-integration/sqlite.sh
Stop testing old Go versions
Stop testing old Go versions
YAML
mit
rubenv/sql-migrate,rubenv/sql-migrate
597c382b4dd436471892a641014a94d8fe17ad39
.travis.yml
.travis.yml
language: python python: - "2.5" - "2.6" - "2.7" - "3.2" - "3.3" # command to install dependencies install: - "pip install ." # command to run tests script: nosetests --nocapture -v
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" # command to install dependencies install: - "pip install ." # command to run tests script: nosetests --nocapture -v
Revert "CI for python 2.5"
Revert "CI for python 2.5" This reverts commit 48046bab4425ddf973169d69f023650e6e18d4e3.
YAML
mit
pmuller/versions,pmuller/versions
1da35a157e9d58842a9f238943a327ca5950bcfe
.travis.yml
.travis.yml
language: cpp sudo: required matrix: include: - os: linux addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-7 env: - MATRIX_EVAL="export CC=gcc-7 && export CXX=g++-7" - os: osx osx_image: xcode9 env: - MATRIX_EVAL="brew update-reset && brew install gcc && CC=gcc-8 && CXX=g++-8" before_install: - eval "${MATRIX_EVAL}" - ./CI/before_install.${TRAVIS_OS_NAME}.sh install: ./CI/install.${TRAVIS_OS_NAME}.sh script: - mkdir build - cd build - cmake .. - make -j4
language: cpp sudo: required matrix: include: - os: linux addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-7 env: - MATRIX_EVAL="export CC=gcc-7 && export CXX=g++-7" - os: osx osx_image: xcode10.2 before_install: - eval "${MATRIX_EVAL}" - ./CI/before_install.${TRAVIS_OS_NAME}.sh install: ./CI/install.${TRAVIS_OS_NAME}.sh script: - mkdir build - cd build - cmake .. - make -j4
Fix OS X build on Travis CI
Fix OS X build on Travis CI
YAML
mit
afritz1/OpenTESArena
a43e8a6c5e13692f035ada9344ce4852bbf2fd09
.travis.yml
.travis.yml
language: objective-c # this is a lie xcode_project: CommandLine.xcodeproj xcode_scheme: CommandLine script: xcodebuild -scheme CommandLine test osx_image: xcode7
language: objective-c # this is a lie xcode_project: CommandLine.xcodeproj xcode_scheme: CommandLine script: xcodebuild -scheme CommandLine test osx_image: xcode7.1
Update Travis builds to Xcode 7.1
Update Travis builds to Xcode 7.1
YAML
apache-2.0
sebcode/CommandLine,jatoben/CommandLine,deszip/CommandLine,IngmarStein/CommandLine,jatoben/CommandLine,deszip/CommandLine,IngmarStein/CommandLine,sebcode/CommandLine,deszip/CommandLine
c6b6ee26490ad6aa0bcecb47db311b1d7a6dcf1d
.travis.yml
.travis.yml
sudo: required services: - docker language: node_js node_js: - "6" env: global: - ACUITY_SERVER_VERSION=0.1.0 - SERVER_IMG=entake/acuity-server - SERVER_TEST_IMG=$SERVER_IMG:$ACUITY_SERVER_VERSION-test - SERVER_RELEASE_IMG=$SERVER_IMG:$ACUITY_SERVER_VERSION before_install: - docker login -u $DOCKER_HUB_USER -p $DOCKER_HUB_PASSWORD install: - docker build --pull -t $SERVER_TEST_IMG ./server script: - docker run -e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN $SERVER_TEST_IMG npm run test-ci after_success: - if [ "$TRAVIS_BRANCH" != "master" ]; then docker push "$SERVER_TEST_IMG"; fi deploy: provider: script script: docker tag $SERVER_TEST_IMG $SERVER_RELEASE_IMG \ && docker tag $SERVER_TEST_IMG $SERVER_IMG:latest \ && docker push $SERVER_IMG:latest \ && docker push $SERVER_RELEASE_IMG on: branch: master
sudo: required services: - docker language: node_js node_js: - "6" env: global: - ACUITY_SERVER_VERSION=0.1.0 - SERVER_IMG=entake/acuity-server - SERVER_TEST_IMG=$SERVER_IMG:$ACUITY_SERVER_VERSION-debug - SERVER_RELEASE_IMG=$SERVER_IMG:$ACUITY_SERVER_VERSION before_install: - docker login -u $DOCKER_HUB_USER -p $DOCKER_HUB_PASSWORD install: - docker build --pull -t $SERVER_TEST_IMG ./server script: - docker run -e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN $SERVER_TEST_IMG npm run test-ci after_success: - if [ "$TRAVIS_BRANCH" != "master" ]; then docker push "$SERVER_TEST_IMG"; fi deploy: provider: script script: docker tag $SERVER_TEST_IMG $SERVER_RELEASE_IMG \ && docker tag $SERVER_TEST_IMG $SERVER_IMG:latest \ && docker push $SERVER_IMG:latest \ && docker push $SERVER_RELEASE_IMG on: branch: master notifications: email: false
Rename test image to *.*.*-debug and disable email notifications
Rename test image to *.*.*-debug and disable email notifications
YAML
mit
Entake/acuity,Entake/acuity,Entake/acuity
4c86cf0841e4160fb36d896705a1483da834c92c
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 notifications: email: - [email protected] script: "npm run lint-ci && npm run css-lint-ci"
language: node_js node_js: - 0.10 notifications: email: - [email protected] script: "npm test && npm run lint-ci && npm run css-lint-ci"
Add npm test to Travis flow
Add npm test to Travis flow
YAML
mit
egovernment/eregistrations,egovernment/eregistrations,egovernment/eregistrations
10e2508d66ffae6f51abb2a95e454cc78f16e880
.travis.yml
.travis.yml
notifications: email: on_success: never on_failure: change language: ruby dist: trusty bundler_args: --without debug release before_install: - ruby -v | (grep -v "rubinius" && gem install bundler) || echo 0 rvm: - 2.2.6 - 2.3.3 - 2.4.0 - rbx-3.69 - jruby-9.1.5.0 - jruby-head - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head
notifications: email: on_success: never on_failure: change language: ruby dist: trusty bundler_args: --without debug release before_install: - ruby -v | (grep -v "rubinius" && gem install bundler) || echo 0 rvm: - 2.2.7 - 2.3.4 - 2.4.1 - rbx-3.75 - jruby-9.1.5.0 - jruby-head - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head
Update CI ruby versions matrix
Update CI ruby versions matrix
YAML
mit
hooktstudios/capistrano-s3
328216db2e584efde7f0fd7bbb93a3552a2216d7
.travis.yml
.travis.yml
language: python python: - "2.6" env: - CFLAGS=-O0 install: - "uname -a" - "lsb_release -a" - "bash -ex .travis/upgrade-couchdb.sh" - "curl http://127.0.0.1:5984/" - "time bash -e .travis/quietly-run-install.sh" - "time python .travis/download-requirements-in-parallel.py requirements/requirements.txt requirements/dev-requirements.txt" - "time pip install Cython --use-mirrors" - "time pip install -r requirements/requirements.txt -r requirements/dev-requirements.txt --use-mirrors" - "bash -e .travis/misc-setup.sh" - "cp .travis/localsettings.py localsettings.py" - "pip install coveralls coverage unittest2 mock" script: "cat .travis/apps_under_test | grep -v '^#' | xargs coverage run manage.py test --noinput --failfast" after_success: - coveralls services: - postgresql - couchdb - rabbitmq - elasticsearch - memcache
language: python python: - "2.6" env: - CFLAGS=-O0 branches: only: - master install: - "uname -a" - "lsb_release -a" - "bash -ex .travis/upgrade-couchdb.sh" - "curl http://127.0.0.1:5984/" - "time bash -e .travis/quietly-run-install.sh" - "time python .travis/download-requirements-in-parallel.py requirements/requirements.txt requirements/dev-requirements.txt" - "time pip install Cython --use-mirrors" - "time pip install -r requirements/requirements.txt -r requirements/dev-requirements.txt --use-mirrors" - "bash -e .travis/misc-setup.sh" - "cp .travis/localsettings.py localsettings.py" - "pip install coveralls coverage unittest2 mock" script: "cat .travis/apps_under_test | grep -v '^#' | xargs coverage run manage.py test --noinput --failfast" after_success: - coveralls services: - postgresql - couchdb - rabbitmq - elasticsearch - memcache
Whitelist only master branch in Travis-CI
Whitelist only master branch in Travis-CI
YAML
bsd-3-clause
qedsoftware/commcare-hq,dimagi/commcare-hq,puttarajubr/commcare-hq,gmimano/commcaretest,qedsoftware/commcare-hq,SEL-Columbia/commcare-hq,SEL-Columbia/commcare-hq,dimagi/commcare-hq,gmimano/commcaretest,dimagi/commcare-hq,qedsoftware/commcare-hq,qedsoftware/commcare-hq,puttarajubr/commcare-hq,puttarajubr/commcare-hq,gmimano/commcaretest,dimagi/commcare-hq,qedsoftware/commcare-hq,dimagi/commcare-hq,puttarajubr/commcare-hq,SEL-Columbia/commcare-hq
31742b66cfd515b1848980be6ede7e0139ee8d09
.travis.yml
.travis.yml
language: objective-c cache: directories: - /Library/Caches/Homebrew - .m2 install: - brew update && brew tap facebook/fb - brew install buck leiningen phantomjs planck script: - mv tests/BUCK.tests tests/BUCK - mv clj-cljs-config/BUCK.example clj-cljs-config/BUCK - TERM=dumb buck build "//..." && buck test "//..."
language: objective-c cache: directories: - /Library/Caches/Homebrew - .m2 install: - brew update && brew tap facebook/fb - brew install buck leiningen phantomjs planck script: - mv tests/BUCK.tests tests/BUCK - mv clj-cljs-config/BUCK.example clj-cljs-config/BUCK - TERM=dumb buck build "//..." && TERM=dumb buck test "//..."
Make TERM=dumb which makes output on Travis readable
RULES/clojure-clojurescript-buck: Make TERM=dumb which makes output on Travis readable
YAML
mit
artemyarulin/clojure-clojurescript-buck,artemyarulin/clojure-clojurescript-buck,artemyarulin/clojure-clojurescript-buck
d23db1f2fea6eb3acfd07f201aeec7422b08ad9a
.travis.yml
.travis.yml
os: linux sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" matrix: include: - language: generic os: osx before_install: - brew update - brew install python3 install: pip2 install tox-travis allow_failures: - os: osx install: pip install tox-travis script: tox
os: linux sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" matrix: include: - language: generic os: osx install: pip2 install tox-travis allow_failures: - os: osx install: pip install tox-travis script: tox
Remove Python 3 install step for OS X build
Remove Python 3 install step for OS X build Looks like Python 3 is now installed by default
YAML
bsd-3-clause
ccpem/mrcfile