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 |
|---|---|---|---|---|---|---|---|---|---|
5b17032e036541d08f15990f6166e0c82f915d26 | .travis.yml | .travis.yml | language: node_js
node_js:
-"node"
-"7"
install:
- npm install
script:
- npm test
| language: node_js
node_js:
-7
install:
- npm install
script:
- npm test
| Update Travis for latest NodeJS version | Update Travis for latest NodeJS version | YAML | mit | GuyKh/10bis.Slackbot,GuyKh/10bis.Slackbot,GuyKh/10bis.Slackbot |
52fc07797c84455aee452e55e2c3b60d30d8f02c | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
| language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
| Revert "Add Node 8 to CI" | Revert "Add Node 8 to CI"
This reverts commit c9befe9ebd61176d60f1ef765876db67ca905ab3.
| YAML | apache-2.0 | fgodino/box-node-sdk |
a14aaf47721bd1728897c1b527a1326a3ca7fbb0 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'stable'
- '6'
- '4'
sudo: false
env:
- workerCount=3
matrix:
fast_finish: true
branches:
only:
- master
install:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm install
cache:
directories:
- node_modules
git:
depth: 1
| language: node_js
node_js:
- 'stable'
- '6'
- '4'
sudo: false
env:
- workerCount=3
matrix:
fast_finish: true
branches:
only:
- master
- release-2.5
install:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm install
cache:
directories:
- node_modules
git:
depth: 1
| Add release-2.5 to covered branches | Add release-2.5 to covered branches
| YAML | apache-2.0 | nojvek/TypeScript,microsoft/TypeScript,TukekeSoft/TypeScript,Microsoft/TypeScript,synaptek/TypeScript,weswigham/TypeScript,weswigham/TypeScript,TukekeSoft/TypeScript,alexeagle/TypeScript,minestarks/TypeScript,minestarks/TypeScript,Eyas/TypeScript,SaschaNaz/TypeScript,kpreisser/TypeScript,basarat/TypeScript,donaldpipowitch/TypeScript,Eyas/TypeScript,SaschaNaz/TypeScript,synaptek/TypeScript,SaschaNaz/TypeScript,TukekeSoft/TypeScript,donaldpipowitch/TypeScript,Eyas/TypeScript,basarat/TypeScript,RyanCavanaugh/TypeScript,donaldpipowitch/TypeScript,alexeagle/TypeScript,RyanCavanaugh/TypeScript,microsoft/TypeScript,alexeagle/TypeScript,basarat/TypeScript,nojvek/TypeScript,synaptek/TypeScript,kpreisser/TypeScript,nojvek/TypeScript,donaldpipowitch/TypeScript,synaptek/TypeScript,SaschaNaz/TypeScript,Microsoft/TypeScript,RyanCavanaugh/TypeScript,kitsonk/TypeScript,kitsonk/TypeScript,Microsoft/TypeScript,minestarks/TypeScript,basarat/TypeScript,microsoft/TypeScript,kpreisser/TypeScript,nojvek/TypeScript,Eyas/TypeScript,kitsonk/TypeScript,weswigham/TypeScript |
e18174a3b326bd1a80204be01cf95f9f4a463a08 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
cache: bundler
rvm:
- 2.5.0@osem --ignore-gemsets
branches:
except:
- /^depfu/.*$/
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- "echo `phantomjs -v`"
addons:
chrome: stable
notifications:
email:
on_success: change
on_failure: change
irc:
channels:
- "chat.freenode.net#osem"
on_success: change
on_failure: change
before_script:
- RAILS_ENV=test bundle exec rake db:bootstrap --trace
script:
- "./travis_script.sh $TEST_SUITE"
env:
global:
- OSEM_DB_ADAPTER=sqlite3
- OSEM_DB_HOST=''
- OSEM_DB_PORT=''
- OSEM_DB_NAME='osem_test'
matrix:
- TEST_SUITE=ability
- TEST_SUITE=features
- TEST_SUITE=linters
- TEST_SUITE=models
- TEST_SUITE=controllers
- TEST_SUITE=rest
matrix:
fast_finish: true
| sudo: required
dist: xenial
addons:
apt:
packages:
- chromium-browser
language: ruby
cache: bundler
rvm:
branches:
except:
- /^depfu/.*$/
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v $(tail -n 1 Gemfile.lock)
notifications:
email:
on_success: change
on_failure: change
irc:
channels:
- "chat.freenode.net#osem"
on_success: change
on_failure: change
before_script:
- RAILS_ENV=test bundle exec rake db:bootstrap --trace
- RAILS_ENV=test bundle exec bin/rails webdrivers:chromedriver:update
script:
- "./travis_script.sh $TEST_SUITE"
env:
global:
- OSEM_DB_ADAPTER=sqlite3
- OSEM_DB_HOST=''
- OSEM_DB_PORT=''
- OSEM_DB_NAME='osem_test'
matrix:
- TEST_SUITE=ability
- TEST_SUITE=features
- TEST_SUITE=linters
- TEST_SUITE=models
- TEST_SUITE=controllers
- TEST_SUITE=rest
matrix:
fast_finish: true
| Update CI to ubuntu xenial and chromium | Update CI to ubuntu xenial and chromium
trusty is rather old, living on the edge baby! Also switch to chromium for
testing, the latest google-chrome version has problems to start with webdrivers
(DevToolsActivePort file doesn't exist).
| YAML | mit | openSUSE/osem,SeaGL/osem,AndrewKvalheim/osem,hennevogel/osem,differentreality/osem,hennevogel/osem,SeaGL/osem,differentreality/osem,openSUSE/osem,differentreality/osem,openSUSE/osem,AndrewKvalheim/osem,SeaGL/osem,hennevogel/osem,differentreality/osem,hennevogel/osem,AndrewKvalheim/osem |
51ad915f6114207096d9e91135f84a5d9dedfe7a | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
notifications:
email: dean.wilson@gmail.com
| ---
language: ruby
sudo: false
rvm:
- 2.2.0
- 2.3.0
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
notifications:
email: dean.wilson@gmail.com
| Remove old versions of ruby | Remove old versions of ruby
Only officially support newer versions of ruby so we can upgrade the required gems. The code should still work on older versions but there are no guarantees.
| YAML | mit | deanwilson/puppet-lint-absolute_template_path-check |
b00191660db2c1c50826524af75ffc1f79b67527 | .travis.yml | .travis.yml | language: objective-c
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
| language: objective-c
env:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
| Test stable and beta channel | Test stable and beta channel
| YAML | mit | adrianlee44/atom-aligner |
4b86bbff48dbe420563d285abf1770d293e01313 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "4"
- "5"
| language: node_js
node_js:
- "0.12"
- "4"
- "5"
after_script:
- "npm run build"
| Build style guide on Travis CI. | Build style guide on Travis CI.
| YAML | mit | styleguidist/react-styleguidist,sapegin/react-styleguidist,bluetidepro/react-styleguidist,styleguidist/react-styleguidist,styleguidist/react-styleguidist,sapegin/react-styleguidist |
30a477c24d3202bcdb21a6c3150f03922eecb71c | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '7'
sudo: false
branches:
only:
- master
- develop
- /^v?(\d\.){2}\d$/
- /^greenkeeper-.*$/
notifications:
email:
- nfantone@gmail.com
before_install:
- npm i -g npm
script: npm run integrate
services:
- rabbitmq
after_success:
- test $TRAVIS_NODE_VERSION == '7' && bash <(curl -s https://codecov.io/bash)
deploy:
provider: npm
email: nfantone@gmail.com
api_key:
secure: PKTP7urawBqTihUIyVUqtAysnfaJRXTWaAtRyT+z5fdb19/SqyKKSyu3j6VuBPtn/GGYj3xulZ5qzMfiE2mwcM1UQcq6LVB4tSoXgEMZ3MGfSNQ3Jjca6eWLG6KJl1LOxhCe5y2kEJrcLTHpc9LE7g5J7JDP/s+egUVYaozcEwI=
on:
tags: true
repo: senecajs/seneca-amqp-transport
node_js: '7'
cache:
bundler: true
directories: node_modules
| language: node_js
node_js:
- '6'
- '7'
sudo: false
branches:
only:
- master
- develop
- /^v?(\d\.){2}\d$/
- /^greenkeeper-.*$/
notifications:
email:
- nfantone@gmail.com
before_install:
- npm i -g npm
script: npm run integrate
services:
- rabbitmq
after_success:
- test $TRAVIS_NODE_VERSION == '7' && bash <(curl -s https://codecov.io/bash)
deploy:
provider: npm
email: nfantone@gmail.com
api_key:
secure: PKTP7urawBqTihUIyVUqtAysnfaJRXTWaAtRyT+z5fdb19/SqyKKSyu3j6VuBPtn/GGYj3xulZ5qzMfiE2mwcM1UQcq6LVB4tSoXgEMZ3MGfSNQ3Jjca6eWLG6KJl1LOxhCe5y2kEJrcLTHpc9LE7g5J7JDP/s+egUVYaozcEwI=
on:
tags: true
repo: senecajs/seneca-amqp-transport
node_js: '7'
cache:
directories: node_modules
| Remove bogus cache option on Travis build | Remove bogus cache option on Travis build
| YAML | mit | seneca-contrib/seneca-amqp-transport,disintegrator/seneca-amqp-transport,senecajs/seneca-amqp-transport,senecajs/seneca-amqp-transport |
59a8d67052ae40aa3ebbde642507ec3960f7f7b4 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- openjdk11
- openjdk13
script:
- travis_wait 20 ./gradlew check --info --stacktrace -PexcludeGroups=statistics
| sudo: false
language: java
jdk:
- openjdk11
- openjdk14
script:
- travis_wait 20 ./gradlew check --info --stacktrace -PexcludeGroups=statistics
| Add build for Java 14. | Add build for Java 14.
| YAML | apache-2.0 | jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics |
30c34b388572835103973d055e5d46d830881774 | .travis.yml | .travis.yml | language: ruby
cache: bundler
dist: trusty
sudo: false
addons:
postgresql: "9.6"
env:
global:
- LOGIDZE_DB_USER=postgres
- LOGIDZE_DB_NAME=logidze
before_script:
- bundle exec rake dummy:db:create
- psql -U postgres -d logidze -c 'CREATE EXTENSION IF NOT EXISTS hstore;'
- bundle exec rake dummy:db:test:prepare
matrix:
include:
- rvm: ruby-head
gemfile: gemfiles/railsmaster.gemfile
- rvm: 2.4.1
gemfile: gemfiles/rails5.gemfile
- rvm: 2.3.1
gemfile: gemfiles/rails42.gemfile
allow_failures:
- rvm: ruby-head
gemfile: gemfiles/railsmaster.gemfile
| language: ruby
cache: bundler
dist: trusty
sudo: false
addons:
postgresql: "9.6"
env:
global:
- LOGIDZE_DB_USER=postgres
- LOGIDZE_DB_NAME=logidze
before_script:
- gem update --system
- bundle exec rake dummy:db:create
- psql -U postgres -d logidze -c 'CREATE EXTENSION IF NOT EXISTS hstore;'
- bundle exec rake dummy:db:test:prepare
matrix:
include:
- rvm: ruby-head
gemfile: gemfiles/railsmaster.gemfile
- rvm: 2.5.0
gemfile: gemfiles/rails5.gemfile
- rvm: 2.4.1
gemfile: gemfiles/rails5.gemfile
- rvm: 2.3.1
gemfile: gemfiles/rails42.gemfile
allow_failures:
- rvm: ruby-head
gemfile: gemfiles/railsmaster.gemfile
| Add ruby 2.5 to CI | Add ruby 2.5 to CI
| YAML | mit | palkan/logidze,palkan/logidze,palkan/logidze |
d9ce1024f2057b75edc6d847cc87127c9527ac63 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk11
- openjdk8
after_success:
- chmod -R 777 ./travis/after_success.sh
- ./travis/after_success.sh | language: java
jdk:
- openjdk15
- openjdk14
- openjdk13
- openjdk11
- openjdk8
after_success:
- chmod -R 777 ./travis/after_success.sh
- ./travis/after_success.sh | Add openjdk 13 through 15 | [ci] Add openjdk 13 through 15
| YAML | apache-2.0 | hazendaz/mybatis-2,hazendaz/mybatis-2,hazendaz/mybatis-2,mybatis/ibatis-2 |
a35caa261af787b43b18061cd3233ffa2023f9ad | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
# command to install dependencies
install: "pip install -r dev-requirements.txt"
# command to run tests
script: python runtests.py
| language: python
python:
- "2.7"
- "3.3"
# command to install dependencies
install: "pip install -r dev-requirements.txt"
# command to run tests
script: python runtests.py --db $DB
# handle multiple databases in build matrix
env:
- DB=sqlite
- DB=postgres
services:
- postgresql
before_script:
- python manage.py -c test db create
| Test with multiple databases on Travis | Test with multiple databases on Travis
| YAML | mit | singingwolfboy/seamless-karma,singingwolfboy/seamless-karma |
c61c722d7852665eb6373421496d9c8c8e52cad8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
install: pip install tox-travis flake8 codecov
script:
- tox
- flake8
after_success:
- codecov
| language: python
python:
- "3.5"
install: pip install tox-travis flake8 codecov
script:
- tox
- flake8
after_success:
- codecov
| Remove testing of python 2.7 from Travis as ruamel.yaml fails to install | Remove testing of python 2.7 from Travis as ruamel.yaml fails to install
| YAML | mit | jic-dtool/dtool-create |
dd28f8f62996da4f8109dce2d53e033921dec7fa | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- jruby-head
branches:
only:
- master
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
rvm:
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
branches:
only:
- master
| Drop ruby-1.9.2 support (keep 1.9.3, 2.0.0, jruby) | Drop ruby-1.9.2 support (keep 1.9.3, 2.0.0, jruby)
| YAML | mit | petervandenabeele/dbd |
4ca28b11fd4dfef4763593264abcd00532c1c908 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
# required to test HHVM
# see https://travis-ci.org/php-amqplib/php-amqplib/jobs/259347861
dist: trusty
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- vendor/bin/phpunit -d zend.enable_gc=0 --coverage-text --coverage-clover=coverage.clover
after_script:
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
services:
rabbitmq
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
# required to test HHVM
# see https://travis-ci.org/php-amqplib/php-amqplib/jobs/259347861
dist: trusty
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- vendor/bin/phpunit -d zend.enable_gc=0 --coverage-text --coverage-clover=coverage.clover
after_script:
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
services:
rabbitmq
| Test with php 5.3 and 7.2 | Test with php 5.3 and 7.2
| YAML | lgpl-2.1 | php-amqplib/php-amqplib,videlalvaro/php-amqplib |
5749ce8a13b16087dede0b885db6bf13d0c04c38 | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
- 1.3
- tip
| language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- tip
| Add go 1.4 to build matrix | Add go 1.4 to build matrix
| YAML | mit | bamiaux/rez,bamiaux/rez,donlzx/rez,donlzx/rez |
9afa89cee8df916488f01f06e8eb9d33b1cf0723 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_script:
- psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
- psql -c 'create database test;' -U postgres
- mysql -e 'create database IF NOT EXISTS test;'
- mysql -uroot test < ./tests/sql/mysql.sql
- psql test postgres -f ./tests/sql/pgsql.sql | language: node_js
node_js:
- "0.11"
- "0.10"
before_script:
- psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
- psql -c 'create database test;' -U postgres
- mysql -e 'create database IF NOT EXISTS test;'
- mysql -v -uroot test < ./tests/sql/mysql.sql
- psql test postgres -f ./tests/sql/pgsql.sql | Add a verbose flag to mysql import to see where it is failing | Add a verbose flag to mysql import to see where it is failing
| YAML | mit | timw4mail/node-query,timw4mail/node-query |
f17acf4fe55a83d19e4f6c111126ae0554c260d4 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- openjdk8
script:
- mvn package docker:build | dist: trusty
sudo: required
before_install:
- sudo add-apt-repository ppa:openjdk-r/ppa
- sudo apt-get update
- sudo apt-get install openjdk-8-jdk
language: java
script:
- mvn package docker:build | Use trusty and install openjdk-8-jdk | CI: Use trusty and install openjdk-8-jdk | YAML | apache-2.0 | codeurjc/spring-cloud-aws-sample,codeurjc/spring-cloud-aws-sample |
87546e597a8a454affd04095996e927dc74bb864 | .travis.yml | .travis.yml | rvm:
- 1.8.6
- 1.8.7
- 1.9.2
- 1.9.3 | rvm:
- 1.8.7
- 1.9.2
- 1.9.3 | Remove 186, rspec is not supported | Remove 186, rspec is not supported
| YAML | mit | sosedoff/lxc-ruby |
83e8d43369df0834ca1826704a9066192b4d7d1a | .travis.yml | .travis.yml | language: python
dist: trusty
python:
- "2.7"
install:
- pip install requests configargparse bcrypt
- pip install coverage nose
script:
- nosetests --with-coverage --cover-xml --cover-package=xclib
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: python
dist: trusty
sudo: required
python:
- "3.5"
install:
- sudo apt install libdb5.3-dev
- pip install requests configargparse bcrypt bsddb3
- pip install coverage nose rednose
script:
- nosetests --with-coverage --cover-xml --cover-package=xclib
after_success:
- bash <(curl -s https://codecov.io/bash)
| Switch Travis to Python 3 | Switch Travis to Python 3 | YAML | mit | jsxc/xmpp-cloud-auth,jsxc/xmpp-cloud-auth,jsxc/xmpp-cloud-auth,jsxc/xmpp-cloud-auth |
2e609bc166a6b5758ef0f591abf6fb3f8b96a1c0 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --dev --prefer-source
script:
- composer test
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_install:
- composer self-update
before_script:
- composer install --dev --prefer-source
script:
- composer test
| Update composer itself in the before_install section | Fix: Update composer itself in the before_install section
| YAML | mit | localheinz/config-service-provider,tomphp/container-configurator,tomphp/config-service-provider |
303421720b2cfd90adca203023ec996941cf1ea6 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_install: cp tests/TravisTestConfiguration.php tests/TestConfiguration.php
script: ./.travis/run-tests.sh
| language: php
php:
- 5.3.3
- 5.3
- 5.4
before_install: cp tests/TravisTestConfiguration.php tests/TestConfiguration.php
script: ./.travis/run-tests.sh
| Add PHP v5.3.3 to the matrix build | [Travis] Add PHP v5.3.3 to the matrix build | YAML | bsd-3-clause | peterkokot/zf2,taro-asahi/zf2,0livier/zf2,KarimBea/test,dvsavenkov/zf2,olearys/zf2,levelfivehub/zf2,mikicaivosevic/zf2,inwebo/zf2,sasezaki/zf2,pepeam/zend,AICIDNN/zf2,prolic/zf2,keradus/zf2,coolmic/zf2,campersau/zf2,dkemper/zf2,sasezaki/zf2,nandadotexe/zf2,guilherme-santos/zf2,david-sann/zf2,bondvt04/zf2test,MadCat34/zf2,desenvuno/zf2,dkarvounaris/zf2,sasezaki/zf2,samsonasik/zf2,TheBestSoftInTheWorld/zf2,svycka/zf2,bullandrock/zf2,sntsikdar/zf2,dvsavenkov/zf2,dntmartins/zf2,taogb/zf2,KarimBea/test,artpoplsh/zf2,machnicki/zf2,awd-git/zf2,bourkhimehaytam/zf2,echampet/zf2,huangchaolei55/firstSite,bullandrock/zf2,pembo210/zf2,svycka/zf2,DASPRiD/zf2,mpalourdio/zf2,dntmartins/zf2,vrkansagara/zf2,stefanotorresi/zf2,walberjefferson/zf2,david-sann/zf2,bullandrock/zf2,freax/zf2,Heshan-Sandamal/zf2,Brucewyh/zf2,bondvt04/zf2test,0livier/zf2,peterkokot/zf2,ChrisSchreiber/zf2,samsonasik/zf2,DASPRiD/zf2,kanellov/zf2,bourkhimehaytam/zf2,shitikovkirill/zf2,stefanotorresi/zf2,zf2timo/zf2,echampet/zf2,0livier/zf2,zendframework/zf2,samsonasik/zf2,felipemaksy/zf2,campersau/zf2,emilgeorgiev89/ZFTEST,webmozart/zf2,dntmartins/zf2,roheim/zf2,campersau/zf2,mmetayer/zf2,echampet/zf2,noopable/zf2,pepeam/zend,machnicki/zf2,roko79/zf2,stefanotorresi/zf2,Sineth-N/zf2,mmauri04/zf2,emilgeorgiev89/ZFTEST,keradus/zf2,enjoy2000/zf2,webmozart/zf2 |
f57f78b2cb79fb9d87f666630ddd2ef784bf2ebd | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- "4.0"
- "4.1"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation. | Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
| YAML | mit | cliffano/sendman |
e7bdb16533a54e9111e5e31aef3f3b2fbc393b16 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.3
- python: 3.4
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq --force-yes libatlas-dev libatlas-base-dev liblapack-dev
- pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --use-wheel sphinx nose numpy scipy
install:
- python bootstrap-buildout.py
- ./bin/buildout
script:
- ./bin/nosetests -sv
- ./bin/sphinx-build -b doctest doc sphinx
- ./bin/sphinx-build -b html doc sphinx
| language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.3
- python: 3.4
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq --force-yes libatlas-dev libatlas-base-dev liblapack-dev
- pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --use-wheel sphinx nose numpy scipy
install:
- python bootstrap-buildout.py
- ./bin/buildout
script:
- ./bin/nosetests -sv
- ./bin/sphinx-build -b doctest doc sphinx
- ./bin/sphinx-build -b html doc sphinx
- ./bin/paper.py
| Test paper script on Travis | Test paper script on Travis
| YAML | bsd-3-clause | anjos/rrbob,anjos/rrpack |
76943d31a3a63dbbcdc0d2992da5eabc52ef18c9 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake ci"
env:
- TRAVIS=true
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
matrix:
allow_failures:
- rvm: 2.1.2 # still segfaults on stack overflow on define_method
- rvm: rbx-2 # Travis does not take care about RBX
notifications:
irc:
channels:
- irc.freenode.org#mutant
on_success: never
on_failure: change
| language: ruby
script: "bundle exec rake ci"
env:
- TRAVIS=true
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.1.3
- rbx-2
matrix:
allow_failures:
- rvm: 2.1.3 # unparser needs to be patched for 2.1.3 parser changes
notifications:
irc:
channels:
- irc.freenode.org#mutant
on_success: never
on_failure: change
| Include whitelisted 2.1.3 in matrix and remove excludes for 2.1.2 / rbx | Include whitelisted 2.1.3 in matrix and remove excludes for 2.1.2 / rbx
| YAML | mit | backus/mutest,kbrock/mutant,tjchambers/mutant,backus/mutest,nepalez/mutant,backus/mutant |
d31db90f643162d2f900ad350c8b2cf3b61df7dd | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
addons:
apt:
packages:
- cython
install:
- pip install -e .[testing]
script:
- py.test
| language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
matrix:
allow_failures:
- python: 3.3
- python: 3.4
- python: 3.5
addons:
apt:
packages:
- cython
install:
- pip install -e .[testing]
script:
- py.test
| Allow failure for python 3 | Allow failure for python 3
| YAML | bsd-3-clause | ESGF/esgf-pyclient,bird-house/esgf-pyclient |
e703b762fcd2f09b2d521e28ded825dcf4a8eae6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: rbx-19mode
- rvm: ruby-head
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: rbx-19mode
- rvm: ruby-head
| Add Ruby 2.2 to Travis runs | Add Ruby 2.2 to Travis runs
| YAML | mit | adhearsion/matrioska |
fd4feef6ce9ea4ed1f633cf57d7af604515e876a | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7
- hhvm
env:
- CALCULATOR=GMP
- CALCULATOR=BCMath
- CALCULATOR=Native
before_script:
- composer self-update
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
| language: php
php:
- 5.6
- 7
- hhvm
env:
- CALCULATOR=GMP
- CALCULATOR=BCMath
- CALCULATOR=Native
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
| Remove composer self-update from Travis build | Remove composer self-update from Travis build
This command is not mandatory and is responsible of too many build errors.
| YAML | mit | rizqidjamaluddin/math,brick/math,beealone/math |
f3cd55f6ec16c01ab6f4008524ba653cbde0255a | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
notifications:
slack:
secure: UjSpOIXxnH3JLZc109j+EzVwzVVvlNPsFoTRUf9uSfkwSCcAU/UQGOennJANOgloFychYl+YytWF9+Qi9AfF5OyFsXWqs4cx8CylQlN9YbEzUkCtGt4CX1AZqUCiH9oAzSExIS8FTpn/Viu8YtF91djaMdX5s+Nfj9IcVwWbrUE=
sudo: false
| language: java
jdk:
- openjdk8
notifications:
slack:
secure: UjSpOIXxnH3JLZc109j+EzVwzVVvlNPsFoTRUf9uSfkwSCcAU/UQGOennJANOgloFychYl+YytWF9+Qi9AfF5OyFsXWqs4cx8CylQlN9YbEzUkCtGt4CX1AZqUCiH9oAzSExIS8FTpn/Viu8YtF91djaMdX5s+Nfj9IcVwWbrUE=
sudo: false
| Switch Travis from Oracle JDK to Open JDK | Switch Travis from Oracle JDK to Open JDK
| YAML | apache-2.0 | openmhealth/schemas,openmhealth/schemas,openmhealth/schemas,openmhealth/schemas |
826abfacbf4e0bf6b26a0edd6ab8c441371ee131 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "5.8"
notifications:
email: false
after_success:
- npm run coveralls
| language: node_js
node_js:
- "4"
- "6"
- "7"
notifications:
email: false
after_success:
- npm run coveralls
| Drop nodejs 0.x and 5.x support | Drop nodejs 0.x and 5.x support
| YAML | mit | lo1tuma/pr-log |
e840fb28261f1ec72f0dd2fc390d0c99bbb0307e | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- rbx-18mode
- rbx-19mode
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
matrix:
include:
- rvm: jruby-18mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: ruby-head # travis broken
notifications:
irc:
channels:
- irc.freenode.org#rom-rb
on_success: never
on_failure: change
| language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- ree
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
- rbx-18mode
- rbx-19mode
matrix:
include:
- rvm: jruby-18mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
notifications:
irc:
channels:
- irc.freenode.org#rom-rb
on_success: never
on_failure: change
| Update testing matrix to be more inclusive | Update testing matrix to be more inclusive
| YAML | mit | dkubb/memoizable |
36958f51ceee7b4b744969ed71c213d4a5ba7995 | .travis.yml | .travis.yml | sudo: false
cache: bundler
language: ruby
rvm:
- 2.2
before_install: gem update --remote bundler
install:
- bundle install
script:
- bin/rake
| sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.2
before_install: gem update --remote bundler
install:
- bundle install
script:
- bin/rake
| Set the CI build to run on Ruby 2.2.2 | Set the CI build to run on Ruby 2.2.2
| YAML | mit | decomplect-io/simple_activemodel_validators,decomplect-io/simple_activemodel_validators |
2a53b78ccd08b957ace15d6bc239b53e79a885de | .travis.yml | .travis.yml | language: python
python:
- 2.7
# Setup anaconda
before_install:
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-3.3.0-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.3.0-Linux-x86_64.sh -O miniconda.sh; fi
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
# Install packages
install:
- conda install --yes pip python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib cython
- pip install nose-cov python-coveralls
# - pip install -r requirements.txt
- python setup.py install
# Run test
script:
- nosetests --with-cov --cov simpegEM --cov-config .coveragerc
# Calculate coverage
after_success:
- coveralls --config_file .coveragerc
notifications:
email:
- rowanc1@gmail.com
- sgkang09@gmail.com
- lindseyheagy@gmail.com
| language: python
python:
- 2.7
# Setup anaconda
before_install:
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.8.3-Linux-x86_64.sh -O miniconda.sh; fi
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
# Install packages
install:
- conda install --yes pip python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib cython
- pip install nose-cov python-coveralls
- pip install -r requirements.txt
- python setup.py install
# Run test
script:
- nosetests --with-cov --cov simpegEM --cov-config .coveragerc
# Calculate coverage
after_success:
- coveralls --config_file .coveragerc
notifications:
email:
- rowanc1@gmail.com
- sgkang09@gmail.com
- lindseyheagy@gmail.com
| Update the miniconda version 3.3.0 --> 3.8.3 Reverse other changes. | Update the miniconda version 3.3.0 --> 3.8.3
Reverse other changes.
| YAML | mit | simpeg/simpegem,simpeg/discretize,lheagy/simpegem,simpeg/simpeg,simpeg/discretize,simpeg/discretize |
009ae1cdb75f37ecd16e519dd52ce689ff085a02 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.0"
- "4.2.2"
matrix:
fast_finish: true
script: "npm run-script test-travis"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
| language: node_js
node_js:
- "4.0"
- "4.2.3"
- "5"
matrix:
fast_finish: true
script: "npm run-script test-travis"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
sudo: false
| Update Travis CI to container-based infrastructure, Node.js v4.2.3/v5 | Update Travis CI to container-based infrastructure, Node.js v4.2.3/v5
Update away from the deprecated old infrastructure and include
Node.js v4.2.3/v5 in the test matrix
| YAML | mit | yanickrochon/promise-events |
456ebaf423ce2122bf8faa36da464c5d90361204 | .travis.yml | .travis.yml | notifications:
email: false
services:
- postgresql
addons:
postgresql: "9.4"
language: go
go_import_path: "miniflux.app"
go:
- "1.11"
- "1.12"
before_install:
- npm install -g jshint
- go get -u golang.org/x/lint/golint
script:
- jshint ui/static/js/*.js
- make lint
- make test
- make integration-test
| notifications:
email: false
services:
- postgresql
addons:
postgresql: "9.4"
language: go
go_import_path: "miniflux.app"
go:
- "1.11"
- "1.12"
- "1.13"
before_install:
- npm install -g jshint
- go get -u golang.org/x/lint/golint
script:
- jshint ui/static/js/*.js
- make lint
- make test
- make integration-test
| Add Go 1.13 to test matrix | Add Go 1.13 to test matrix
| YAML | apache-2.0 | miniflux/miniflux,xqin/miniflux,xqin/miniflux,xqin/miniflux,xqin/miniflux,miniflux/miniflux,miniflux/miniflux |
0f0b86a8c35d8a26aefe90d8a72143e817e7cd7a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.0
- 2.1.5
- 2.0.0
- 1.9.3
- jruby-19mode
| language: ruby
rvm:
- 2.1.5
- 2.0.0
- 1.9.3
- jruby-19mode
| Work on Ruby 2.2 support in a branch | Work on Ruby 2.2 support in a branch
| YAML | mit | koppen/csv_query |
35131823bf400abe74ec8bdf900072c69f3d60dd | .travis.yml | .travis.yml | language: ruby
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
matrix:
include:
- rvm: 2.4.0
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_4.2.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_4.2.gemfile
| language: ruby
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
matrix:
include:
- rvm: 2.4.0
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_4.2.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_5.0.gemfile
| Test rails 5 on ruby 2.3 | Test rails 5 on ruby 2.3
| YAML | mit | apsislabs/slayer_rails,apsislabs/slayer_rails |
26d536648875852f74f42f60450317b6af24a1eb | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.3.0
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
| rvm:
- 2.2
- 2.3
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx
| Update tested ruby versions on Travis CI | Update tested ruby versions on Travis CI
| YAML | mit | dblock/numbers_and_words,kslazarev/numbers_and_words |
8f0cd6a8a305976766edc2da72ded82070b30a4d | .travis.yml | .travis.yml | language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- ALCOTEST_SHOW_ERRORS=1
- REVDEPS="irmin-indexeddb"
- PINS="irmin.dev:. irmin-mem.dev:. irmin-fs.dev:. irmin-http.dev:. irmin-git.dev:. irmin-mirage.dev:. irmin-unix.dev:."
matrix:
- OCAML_VERSION=4.03 PACKAGE="irmin-fs.dev" TESTS=true
- OCAML_VERSION=4.04 PACKAGE="irmin-mem.dev" TESTS=true
- OCAML_VERSION=4.03 PACKAGE="irmin-git.dev" TESTS=true
- OCAML_VERSION=4.04 PACKAGE="irmin-http.dev" TESTS=true
- OCAML_VERSION=4.03 PACKAGE="irmin-mirage.dev"
- OCAML_VERSION=4.04 PACKAGE="irmin-unix.dev" TESTS=true EXTRA_DEPS=inotify
| language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- ALCOTEST_SHOW_ERRORS=1
- REVDEPS="irmin-indexeddb"
- PINS="irmin.dev:. irmin-mem.dev:. irmin-fs.dev:. irmin-http.dev:. irmin-git.dev:. irmin-mirage.dev:. irmin-unix.dev:. irmin-chunk.dev:."
matrix:
- OCAML_VERSION=4.03 PACKAGE="irmin-fs.dev" TESTS=true
- OCAML_VERSION=4.04 PACKAGE="irmin-mem.dev" TESTS=true
- OCAML_VERSION=4.03 PACKAGE="irmin-git.dev" TESTS=true
- OCAML_VERSION=4.04 PACKAGE="irmin-http.dev" TESTS=true
- OCAML_VERSION=4.04 PACKAGE="irmin-chunk.dev" TESTS=true
- OCAML_VERSION=4.03 PACKAGE="irmin-mirage.dev"
- OCAML_VERSION=4.04 PACKAGE="irmin-unix.dev" TESTS=true EXTRA_DEPS=inotify
| Add irmin-chunk to the Travis matrix | Add irmin-chunk to the Travis matrix
| YAML | isc | mirage/irmin,mirage/irmin |
5d74324f2d83156161201aac42129a1e63e4526d | .travis.yml | .travis.yml | language: python
R:
- "3.2.4"
python:
- "2.7"
branches:
only:
- dev
addons:
apt:
sources:
- r-packages-precise
packages:
- r-base
- randomForest
#r_packages:
#- randomForest
# Setup anaconda
install:
# - sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment atlas numpy scipy nose pandas scikit-learn matplotlib
- source activate test-environment
- pip install rpy2
script: "nosetests tests"
| language: python
R:
- "3.2.4"
python:
- "2.7"
branches:
only:
- dev
addons:
apt:
sources:
- r-packages-precise
packages:
- r-base
- r-cran-randomforest
#r_packages:
#- randomForest
# Setup anaconda
install:
# - sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment atlas numpy scipy nose pandas scikit-learn matplotlib
- source activate test-environment
- pip install rpy2
script: "nosetests tests"
| Correct the random forest package name | Correct the random forest package name
| YAML | apache-2.0 | KarchinLab/2020plus,KarchinLab/2020plus |
cad373976a0b3dd968491c3aaaf39311ba4d0dd3 | .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 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
| sudo: required
language: ruby
rvm:
- 2.3.0
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y build-essential cmake libpopt-dev libbz2-dev libruby ruby-dev
- wget https://github.com/librsync/librsync/archive/v2.0.0.tar.gz
- tar -xzvf v2.0.0.tar.gz
- cd librsync-2.0.0 && cmake . && make && sudo make install
- gem install bundler -v 1.12.5
install:
- bundle install --jobs=3 --retry=3
- bundle exec rake compile
| Update librsync version and include ruby dev package | Update librsync version and include ruby dev package
| YAML | mit | daveallie/lib_ruby_diff,daveallie/lib_ruby_diff,daveallie/lib_ruby_diff |
1264463f2ebbf9566d3c9e0f928166c810e715bf | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
matrix:
include:
- rvm: 2.5
env: WITH_COVERALLS=true
- rvm: 2.4
env: WITH_COVERALLS=true
- rvm: 2.3
env: WITH_COVERALLS=false
install:
- if [[ $WITH_COVERALLS = "true" ]]; then
bundle install --without debug extra;
else
bundle install --without debug extra coverage;
fi
script:
- if [[ $WITH_COVERALLS = "true" ]]; then
bundle exec rake test_with_coveralls;
else
bundle exec rake;
fi
notifications:
email:
recipients:
- sylvester@keil.or.at
on_success: change
on_failure: change
| language: ruby
sudo: false
cache: bundler
matrix:
include:
- rvm: 2.5
env: WITH_COVERALLS=true
- rvm: 2.4
env: WITH_COVERALLS=false
- rvm: 2.3
env: WITH_COVERALLS=false
install:
- if [[ $WITH_COVERALLS = "true" ]]; then
bundle install --without debug extra;
else
bundle install --without debug extra coverage;
fi
script:
- if [[ $WITH_COVERALLS = "true" ]]; then
bundle exec rake test_with_coveralls;
else
bundle exec rake;
fi
notifications:
email:
recipients:
- sylvester@keil.or.at
on_success: change
on_failure: change
| Send only 2.5 coverage report | Send only 2.5 coverage report
| YAML | mit | inukshuk/jekyll-scholar |
0aa06985b6f933888ab9f04b9b772eba87b9e1b2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.0"
addons:
apt:
packages:
- ruby1.9.3-full
- python2
- python3
- golang-go
env:
- GOARCH="amd64" GOPATH="/home/travis/.gimme/versions/go1.4.1.linux.amd64/"
before_script:
- node --version
- python2 --version
- python3 --version
- ruby --version
- go version
- go get github.com/SSSaaS/go-libtest
- cd $GOPATH/src/github.com/SSSaaS/go-libtest
- mkdir libs
- cd libs
- git clone https://github.com/SSSaaS/sssa-golang
- git clone https://github.com/SSSaaS/sssa-python
- git clone https://github.com/SSSaaS/sssa-js
- git clone https://github.com/SSSaaS/sssa-ruby
- cd sssa-js
- npm install
- cd ../
- cd sssa-golang
- go test
- cd ../sssa-python
- python2 ./utils_tests.py
- python2 ./sssa_tests.py
- python3 ./utils_tests.py
- python3 ./sssa_tests.py
- cd ../sssa-ruby
- ruby ./tests/all.rb
- cd ../sssa-js
- node ./test/sssa.js
- cd ../../
script:
- go run ./go-libtest.go ./specs/travis/*.json
| language: node_js
node_js:
- "4.0"
addons:
apt:
packages:
- ruby1.9.3-full
- python2
- python3
- golang-go
env:
- GOARCH="amd64"
before_script:
- node --version
- python2 --version
- python3 --version
- ruby --version
- go version
- go get github.com/SSSaaS/go-libtest
- cd $GOPATH/src/github.com/SSSaaS/go-libtest
- mkdir libs
- cd libs
- git clone https://github.com/SSSaaS/sssa-golang
- git clone https://github.com/SSSaaS/sssa-python
- git clone https://github.com/SSSaaS/sssa-js
- git clone https://github.com/SSSaaS/sssa-ruby
- cd sssa-js
- npm install
- cd ../
- cd sssa-golang
- go test
- cd ../sssa-python
- python2 ./utils_tests.py
- python2 ./sssa_tests.py
- python3 ./utils_tests.py
- python3 ./sssa_tests.py
- cd ../sssa-ruby
- ruby ./tests/all.rb
- cd ../sssa-js
- node ./test/sssa.js
- cd ../../
script:
- go run ./go-libtest.go ./specs/travis/*.json
| Clean up; working TravisCI integration | Clean up; working TravisCI integration
| YAML | mit | SSSaaS/go-libtest |
1502f1f2454f5cb5e00357a86e5d2b6ed11bf865 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
cache:
- pip
before_install:
- export TZ=America/Denver
install:
- pip install --upgrade pip
- pip install codecov
- pip install .
- pip install -r requirements.txt
- pip install requests_mock
- pip install pylint
script:
- coverage run -m unittest discover && pylint --py3k --errors-only omniture
after_success:
- coverage report -m
- bash <(curl -s https://codecov.io/bash)
- codecov
| language: python
dist: xenial
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
cache:
- pip
before_install:
- export TZ=America/Denver
install:
- pip install --upgrade pip
- pip install codecov
- pip install .
- pip install -r requirements.txt
- pip install requests_mock
- pip install pylint
script:
- coverage run -m unittest discover && pylint --py3k --errors-only omniture
after_success:
- coverage report -m
- bash <(curl -s https://codecov.io/bash)
- codecov
| Update to run on xenial for Travis CI so it can run py3.7 | Update to run on xenial for Travis CI so it can run py3.7
| YAML | mit | dancingcactus/python-omniture,dancingcactus/python-omniture,dancingcactus/python-omniture |
c053a358edfc4c850dbe61dd05ba58e22e17d085 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- ruby-head
- jruby-18mode
- rbx-18mode
| language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- jruby-18mode
- rbx-18mode
| Add separated Ruby 1.9.3 and Ruby 2.0.0, instead of Ruby HEAD | Add separated Ruby 1.9.3 and Ruby 2.0.0, instead of Ruby HEAD
| YAML | mit | ai/darian |
4b10ae48638709fc534c61294ad904f179d3a85a | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.6
env: ENABLE_REDIS_EXT=0
- php: 5.6
env: ENABLE_REDIS_EXT=1
- php: 7.0
env: ENABLE_REDIS_EXT=0
- php: 7.0
env: ENABLE_REDIS_EXT=1
- php: hhvm
env: ENABLE_REDIS_EXT=0
before_script:
- sh -c "if [ $ENABLE_REDIS_EXT -eq 1 ]; then echo \"extension=redis.so\" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi"
- composer install
| language: php
php:
- 5.6
- 7.0
- hhvm
matrix:
exclude:
- php: hhvm
env: ENABLE_REDIS_EXT=1
env:
- ENABLE_REDIS_EXT=0
- ENABLE_REDIS_EXT=1
before_script:
- sh -c "if [ $ENABLE_REDIS_EXT -eq 1 ]; then echo \"extension=redis.so\" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi"
- composer install
| Use Matrix Exclude instead of hard-coded matrix | Use Matrix Exclude instead of hard-coded matrix
While the current .travis.yml setup works, and the reasoning makes sense, it's far less readable than the previous configuration. This suggested patch presents an alternative approach to the same result, which uses the matrix->exclude array to filter out invalid tests, instead of hard-coding every valid combination as the current file does. This seems more readable, at least to me. | YAML | mit | danhunsaker/php-resque,chrisboulton/php-resque,CatchoftheDay/php-resque |
7e10df0648fadfeee0f000cc0b30a7074b6e953e | .travis.yml | .travis.yml | language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
| language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls | Fix whitespace in YAML: tabs no longer allowed | Fix whitespace in YAML: tabs no longer allowed
| YAML | artistic-2.0 | briandfoy/Module-Extract-DeclaredMinimumPerl,briandfoy/Module-Extract-DeclaredMinimumPerl |
9b640da9d11ebea785cf78898e3fe9c5d58c1e8a | .travis.yml | .travis.yml | sudo: required
language: c
install:
- wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script:
- bash -ex .travis-opam.sh
env:
global:
- PACKAGE=webaudio
matrix:
- OCAML_VERSION=4.01
- OCAML_VERSION=4.02
| sudo: required
language: c
install:
- wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script:
- bash -ex .travis-opam.sh
env:
global:
- PACKAGE=webaudio
- EXTRA_REMOTES=git://github.com/johnelse/opam-repo-johnelse
matrix:
- OCAML_VERSION=4.01
- OCAML_VERSION=4.02
| Add extra opam repo for webtest | Add extra opam repo for webtest
Signed-off-by: John Else <37b74501daa612e48fea94f9846ed4ddeb6a8f07@gmail.com>
| YAML | mit | johnelse/ocaml-webaudio,johnelse/ocaml-webaudio,johnelse/ocaml-webaudio |
6c8f090b73bfb5beacc8991e076058540b82f9b7 | .travis.yml | .travis.yml | language: perl6
sudo: false
perl6:
- latest
install:
- rakudobrew build-panda
- panda installdeps .
| language: perl6
sudo: false
perl6:
- latest
install:
- rakudobrew build-zef
- zef install .
| Use zef instead of panda | Use zef instead of panda
| YAML | artistic-2.0 | Altai-man/perl6-Compress-Bzip2-Raw |
37ed22333300106bffe217b7334c23fe5ca31235 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2
- 2.3.6
- 2.4.3
- 2.5.0
notifications:
email: false
| language: ruby
before_install: gem update --system
cache: bundler
sudo: false
rvm:
- 2.2
- 2.3.6
- 2.4.3
- 2.5.0
notifications:
email: false
| Fix Travis build on Ruby update | Fix Travis build on Ruby update | YAML | mit | editorconfig/editorconfig-core-ruby |
feaefa6f7182ca89019c94305d78965ffd4b65b7 | .travis.yml | .travis.yml | language: rust
matrix:
include:
- rust: stable
os: linux
- rust: stable
os: osx
script:
- cargo test
| language: rust
matrix:
include:
- rust: stable
- rust: stable
os: osx
- rust: beta
- rust: nightly
script:
- cargo test
| Add Rust beta and nightly | [Travis] Add Rust beta and nightly
| YAML | apache-2.0 | nvzqz/static-assertions-rs |
cff1a983b40feddd00a8479f06063b891eaeedb4 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
script: bundle exec rake spec
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
deploy:
provider: rubygems
api_key:
secure: 0pFmsvwqf1MKY8QGw3VDE6G6yi5b2JwA1zJIbxyv+12rNiA35Q8FszKK2cRdtpxczXt2aNanMqbwYGU+JDSo894l9vZVfbeSCZX1yg7mTxnjlvSloFtt4VMiRcJ7DANdtdmisYzJL2t5Pzaea/C8/hvjZGZrS34f/78+uO2Vln0=
on:
tags: true
| language: ruby
bundler_args: --without development
script: bundle exec rake spec
rvm:
- 1.8.7
- 1.9.3
- 2.1.1
deploy:
provider: rubygems
api_key:
secure: 0pFmsvwqf1MKY8QGw3VDE6G6yi5b2JwA1zJIbxyv+12rNiA35Q8FszKK2cRdtpxczXt2aNanMqbwYGU+JDSo894l9vZVfbeSCZX1yg7mTxnjlvSloFtt4VMiRcJ7DANdtdmisYzJL2t5Pzaea/C8/hvjZGZrS34f/78+uO2Vln0=
on:
tags: true
| Test on 1.8.7, 1.9.3, 2.1.1 | Test on 1.8.7, 1.9.3, 2.1.1 | YAML | mit | balanced/balanced-ruby |
9544cf221fdaec944f1d0246ae8e4b4378c87c6c | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "7"
- "8"
os:
- linux
- osx
matrix:
include:
- os: osx
osx_image: xcode8
env:
- MATRIX_EVAL="brew install gcc5 && CC=gcc-5 && CXX=g++-5"
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env:
- MATRIX_EVAL="CC=gcc-5 && CXX=g+5"
before_install:
- eval "${MATRIX_EVAL}" | language: node_js
node_js:
- "6"
- "7"
- "8"
os:
- linux
- osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gcc@5 ; fi
| Install gcc5 on os x | Install gcc5 on os x
| YAML | mit | tuananh/camaro,tuananh/camaro,tuananh/camaro,tuananh/camaro |
3fac585809ae4686ee885a7c96d6758d5175dc3a | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug --without doc
env:
- CI=true
rvm:
- "1.9.3"
- "2.0.0"
- "jruby-19mode"
- "rbx"
script: bundle exec rspec spec
matrix:
allow_failures:
- rvm: "rbx"
| language: ruby
bundler_args: --without debug --without doc
env:
- CI=true
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.1"
- "jruby-19mode"
- "rbx"
script: bundle exec rspec spec
matrix:
allow_failures:
- rvm: "rbx"
| Add ruby 2.1.1 as a CI test target | Add ruby 2.1.1 as a CI test target
| YAML | mit | avit/stockboy |
ec6feea0bd8d04dd64d1d7efb38a61062a51bebb | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 4 on Travis CI. | Test with latest Node.js 4 on Travis CI.
| YAML | mit | bigeasy/sequester |
912dff3377d9549de946f679d8ff5d4ca1101997 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7
- 7.1
- hhvm
env:
- CALCULATOR=GMP
- CALCULATOR=BCMath
- CALCULATOR=Native
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
| language: php
sudo: false
php:
- 5.6
- 7
- 7.1
- hhvm
env:
- CALCULATOR=GMP
- CALCULATOR=BCMath
- CALCULATOR=Native
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
| Use the container-based infrastructure on Travis CI | Use the container-based infrastructure on Travis CI
| YAML | mit | brick/math |
de8017ff0e02b29423b01ed3be0bd2e375bf728f | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- openjdk7
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi
- wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz
- echo "Installing android SDK into ${PWD}/android-sdk-linux"
- tar -xzf android-sdk_r21.0.1-linux.tgz
- export ANDROID_HOME=${PWD}/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
- android update sdk --filter platform-tools,android-16 --no-ui --force
install: mvn install clean --fail-never --quiet -DskipTests=true -Dinvoker.skip=true
script: mvn verify
notifications:
email: false
branches:
except:
- gh-pages
| language: java
jdk:
- oraclejdk7
- openjdk7
before_install:
- sudo apt-get install -qq libstdc++6:i386 lib32z1
- export COMPONENTS=build-tools-19.0.1,android-16
- curl -L https://raw.github.com/embarkmobile/android-sdk-installer/version-1/android-sdk-installer | bash /dev/stdin --install=$COMPONENTS
- source ~/.android-sdk-installer/env
install: mvn install clean --fail-never --quiet -DskipTests=true -Dinvoker.skip=true
script: mvn verify
notifications:
email: false
branches:
except:
- gh-pages
| Use a simpler means of installing the Android SDK. | Use a simpler means of installing the Android SDK.
| YAML | apache-2.0 | gk5885/dagger,e10dokup/dagger,Suninus/dagger,hansonchar/dagger,goinstant/dagger,DirtyUnicorns/android_external_square_dagger,vamsirajendra/dagger,b-cuts/dagger,elijah513/dagger,ze-pequeno/dagger,dushmis/dagger,msdgwzhy6/dagger,Jalsoncc/dagger,tasomaniac/dagger,Jalsoncc/dagger,MaTriXy/dagger,Gurtz/dagger,jgabrielfreitas/dagger,ze-pequeno/dagger,byterom/android_external_square_dagger,wangqi504635/dagger,18611480882/dagger,tasomaniac/dagger,square/dagger,DavidMihola/dagger,DavidMihola/dagger,18611480882/dagger,byterom/android_external_square_dagger,google/dagger,ronshapiro/dagger,marcelohd/dagger,ThirdProject/android_external_square_dagger,murugespandian/dagger,NorbertSandor/dagger,square/dagger,yawkat/dagger,cgruber/dagger,AttwellBrian/dagger,tieusangaka/dagger,vogellacompany/dagger,NorbertSandor/dagger,google/dagger,andyao/dagger,egyp7/dagger,wangqi504635/dagger,vamsirajendra/dagger,msdgwzhy6/dagger,mondoktamas/dagger,yangpeiyong/dagger,IgorGanapolsky/dagger,egyp7/dagger,ThirdProject/android_external_square_dagger,AttwellBrian/dagger,qwe3243002/dagger,andyao/dagger,ravn/dagger,b-cuts/dagger,cgruber/dagger,awesome-niu/dagger,amudev007/dagger,square/dagger,elijah513/dagger,elijah513/dagger,bboyfeiyu/dagger,talkxin/dagger,Gurtz/dagger,yongjhih/dagger2-sample,ravn/dagger,hejunbinlan/dagger,goinstant/dagger,PAC-ROM/android_external_square_dagger,CQUMonk/dagger,cgruber/dagger,b-cuts/dagger,byterom/android_external_square_dagger,amudev007/dagger,ronshapiro/dagger,murugespandian/dagger,tasomaniac/dagger,yangpeiyong/dagger,yongjhih/dagger2-sample,jgabrielfreitas/dagger,bboyfeiyu/dagger,vamsirajendra/dagger,marcelohd/dagger,chundongwang/dagger,18611480882/dagger,Godchin1990/dagger,hanks-zyh/dagger,tieusangaka/dagger,PAC-ROM/android_external_square_dagger,gk5885/dagger,google/dagger,cgpllx/dagger,MaTriXy/dagger,google/dagger,msdgwzhy6/dagger,hansonchar/dagger,hansonchar/dagger,ThirdProject/android_external_square_dagger,vogellacompany/dagger,Godchin1990/dagger,MaTriXy/dagger,amudev007/dagger,cgpllx/dagger,chundongwang/dagger,gk5885/dagger,IgorGanapolsky/dagger,hejunbinlan/dagger,yawkat/dagger,Suninus/dagger,hanks-zyh/dagger,qwe3243002/dagger,yawkat/dagger,dushmis/dagger,jgabrielfreitas/dagger,ze-pequeno/dagger,e10dokup/dagger,DirtyUnicorns/android_external_square_dagger,Jalsoncc/dagger,yongjhih/dagger2-sample,qwe3243002/dagger,yangpeiyong/dagger,wangqi504635/dagger,awesome-niu/dagger,mondoktamas/dagger,adriancole/dagger,hejunbinlan/dagger,adriancole/dagger,talkxin/dagger,egyp7/dagger,Suninus/dagger,adriancole/dagger,CQUMonk/dagger,ze-pequeno/dagger,Gurtz/dagger,awesome-niu/dagger,murugespandian/dagger,mondoktamas/dagger,PAC-ROM/android_external_square_dagger,ronshapiro/dagger,ravn/dagger,marcelohd/dagger,CQUMonk/dagger |
05c60ab9d0e23176f0ddabf689fb2559a358975f | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.6"
# This, with tox-travis, and our tox.ini, will test on these Django versions
# across all our specified python versions:
env:
- DJANGO=1.11
- DJANGO=2.0
matrix:
include:
# This will also run the coverage test only on this python version:
- python: "3.6"
env: TOXENV="coverage"
# command to install dependencies
install:
- pip install tox tox-travis coverage coveralls
# command to run tests
script:
- tox
after_success:
- coveralls
# containers
sudo: false
cache: pip
| language: python
python:
- '3.5'
- '3.6'
env:
- DJANGO=1.11
- DJANGO=2.0
matrix:
include:
- python: '3.6'
env: TOXENV="coverage"
install:
- pip install tox tox-travis coverage coveralls
script:
- tox
after_success:
- coveralls
sudo: false
cache: pip
notifications:
slack:
secure: QKqSaM/Om3Lem5H9OgT9EdgOXtkLEaZq6b7UTMrYFVkQkss2FXiPPRmO3uieWA8uAAqq5qaDzko2FMiJ4icGeL5wPVRI9SihyR3/5YlLQV5itr/TANjy8Dhf3rlToAqiuiwkSKLSxA96RpT9n+it3TzHoFGPJwTTnBfaWo85RyoirVBc792W3gnQyAHD6YNO+sMvB12W9BBIeXUp3k+4+0C6uB/HPOGfTtko7Z/GtohAPejlu+4i9x4oPDWBFmRM2gsrjUlSR9iocM+rlMWv/Y1Tdf8oNfEulybVb+4+5u59LGK8tU/QImx5NlxgaedYM62lnI1XDIbFTpURtJHTz2ng9ga1p0+GtOmkzaa4N/YT5U3We8TJUJbXm/PSlZ6wLNk6v1Jx5JNbc2gZgBu6as6G4EjpcyUjkTZ3pefD5s4+uVZzBM57t2OYetuMNO55rcy3aTPqSph1Y+kdQ5FAj2TnyHaEIFHqWdOF/rOXWtxb3cMl/V1my1nh/FurlXt/gRQz1XnVglVsz3ZWEB/W+R8ZcqEPrYEcGuoJqOyBirjcl2xkfllAYhY8/dEcauWtfAh8djl3lLxB8MRZbtB45zJxz65UTGtIhwlNYZC6YbAB7tuBBBi+HTHaaIQvZgI7rK+5AQrgGZV4ktYOQHSyQVyYEZSFNgdD8m+znCteYPU=
| Add Slack notifications to Travis setup | Add Slack notifications to Travis setup
| YAML | mit | philgyford/django-spectator,philgyford/django-spectator,philgyford/django-spectator |
49a190fdd5a680eadcd6a41989864ee0c6ca564b | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0
- 2.1
gemfile:
- gemfiles/rails2.3.gemfile
- gemfiles/rails3.0.gemfile
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
matrix:
exclude:
- rvm: 2.0
gemfile: gemfiles/rails2.3.gemfile
- rvm: 2.0
gemfile: gemfiles/rails3.0.gemfile
- rvm: 2.1
gemfile: gemfiles/rails2.3.gemfile
- rvm: 2.1
gemfile: gemfiles/rails3.0.gemfile
bundler_args: --no-deployment
script: bundle exec rake test
| language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
gemfile:
- gemfiles/rails2.3.gemfile
- gemfiles/rails3.0.gemfile
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
sudo: false
bundler_args: --no-deployment
script: bundle exec rake test
matrix:
exclude:
- rvm: 2.0
gemfile: gemfiles/rails2.3.gemfile
- rvm: 2.0
gemfile: gemfiles/rails3.0.gemfile
- rvm: 2.1
gemfile: gemfiles/rails2.3.gemfile
- rvm: 2.1
gemfile: gemfiles/rails3.0.gemfile
| Use the new build env on Travis | Use the new build env on Travis
more ram, dedicated cpu cores, faster vm boot times, better networking | YAML | mit | bquorning/ar_mysql_flexmaster,gabetax/ar_mysql_flexmaster,osheroff/ar_mysql_flexmaster |
21469ebf01306a7a9ad072a1d499c3d7ed9be282 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.8.0
services:
- mongodb
sudo: false
bundler_args: --without development
# Gitter integration
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/4d6749e48eb60321640e
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
rvm:
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.8.0
jdk:
- oraclejdk8
services:
- mongodb
sudo: false
bundler_args: --without development
# Gitter integration
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/4d6749e48eb60321640e
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 Java 8 for JRuby | Use Java 8 for JRuby
| YAML | apache-2.0 | reidmorrison/semantic_logger,rocketjob/semantic_logger |
13ec565ba0159cf7f81fb2651aac396bce55c1db | .travis.yml | .travis.yml | language: node_js
node_js:
- node
- lts/*
script:
- npm install
- npm run build
before_install:
- npm install -g npm
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
after_success: 'npm run coveralls'
| language: node_js
node_js:
- node
- lts/*
script:
- npm install
- npm run test
- npm run build
- npm run build-example
before_install:
- npm install -g npm
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
after_success: 'npm run coveralls'
| Add test and build-example scripts | Add test and build-example scripts
| YAML | mit | ua-oira/react-super-responsive-table |
a023e1ebbf653e1dc01d40c0cbb977283dea29c6 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# use it to install system wide python packages such as scipy
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy python-scipy python-glpk libglpk-dev glpk-utils
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install --upgrade pip
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install pep8
- pip list
- python -c "import nltk; nltk.download('stopwords'); nltk.download('punkt')"
# test for pep8
before_script:
- "pep8 potara/summarizer.py potara/document.py potara/similaritymeasures.py"
# command to run tests, e.g. python setup.py test
script:
- "python tests/test_all.py"
- "python setup.py test"
- "coverage run --omit=potara/takahe.py --source=potara setup.py test"
after_success:
coveralls | language: python
python:
- "2.7"
# use it to install system wide python packages such as scipy
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy python-scipy python-glpk libglpk-dev glpk-utils
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install --upgrade pip
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install pep8
- pip list
- python -c "import nltk; nltk.download('stopwords'); nltk.download('punkt')"
# test for pep8
before_script:
- "pep8 potara/summarizer.py potara/document.py potara/similaritymeasures.py"
# command to run tests, e.g. python setup.py test
script:
- "python setup.py test"
- "coverage run --omit=potara/takahe.py --source=potara setup.py test"
after_success:
coveralls | Remove temporary call to test_all | Remove temporary call to test_all
| YAML | mit | sildar/potara |
88697a015cc042a3f9322f2306fed03c883c3e47 | roles/sudo/tasks/main.yml | roles/sudo/tasks/main.yml | ---
- name: Enable sudo access for wheel group
become: yes
copy:
content: '%wheel ALL=(ALL) ALL'
dest: /etc/sudoers.d/10-grant-wheel-group
validate: 'visudo -cf %s'
tags:
- sudo
| ---
# Using multiline for content is important, sudo needs newline
- name: Enable sudo access for wheel group
become: yes
copy:
content: |
%wheel ALL=(ALL) ALL
dest: /etc/sudoers.d/10-grant-wheel-group
validate: 'visudo -cf %s'
tags:
- sudo
- name: Use neovim as editor
become: yes
copy:
content: |
Defaults editor="/bin/nvim"
dest: /etc/sudoers.d/20-neovim-as-editor
validate: 'visudo -cf %s'
tags:
- sudo
| Configure neovim as editor for sudo/visudo | Configure neovim as editor for sudo/visudo
| YAML | mit | henrik-farre/ansible,henrik-farre/ansible,henrik-farre/ansible |
b077fe7e30c966f2a4c3101677de95e4e21ff518 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "iojs"
- "iojs-v1.0.4" | language: node_js
node_js:
- 0.10
- 0.12
- iojs | Use same Travis CI config as hapi.js | Use same Travis CI config as hapi.js
| YAML | mit | GamingCoder/hapi-features |
4695416b71d3577c7d3bc8fa05901fa8fc8fc7a8 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- oraclejdk8
- oraclejdk11
- openjdk7
- openjdk8
- openjdk11
- openjdk-ea
after_success:
- mvn clean test jacoco:report coveralls:report -Ptravis-jacoco | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- oraclejdk8
- oraclejdk11
- openjdk7
- openjdk8
- openjdk11
- openjdk12
- openjdk-ea
after_success:
- mvn clean test jacoco:report coveralls:report -Ptravis-jacoco | Add OpenJDK 12 to Travis builds. | Add OpenJDK 12 to Travis builds. | YAML | apache-2.0 | apache/commons-fileupload,apache/commons-fileupload |
fe9a84019cf3e8c9185465c2e2d238e1a22c8fac | .travis.yml | .travis.yml | language: python
python:
- "3.8"
install:
- pip install -r dev-requirements.txt
script:
py.test -v --pep8 guestbook
| language: python
python:
- "3.8"
install:
- pip install -r dev-requirements.txt
script:
py.test -v --pycodestyle guestbook
| Migrate checking pep8 tool from '--pep8' to '--pycodestyle' | Migrate checking pep8 tool from '--pep8' to '--pycodestyle'
| YAML | bsd-3-clause | raimon49/pypro2-guestbook-webapp,raimon49/pypro2-guestbook-webapp |
3a22892f2fc9b9c96bf280242000cfd6873efe2c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
coverage run --source=rest_framework_se runtests.py
after_success:
coveralls
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.4.19
- DJANGO_VERSION=1.6.10
- DJANGO_VERSION=1.7.4
- REST_FRAMEWORK_VERSION=3.0.5
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=1.7.4
- python: "3.2"
env: DJANGO_VERSION=1.4.19
- python: "3.3"
env: DJANGO_VERSION=1.4.19
- python: "3.4"
env: DJANGO_VERSION=1.4.19
install:
- pip install Django==$DJANGO_VERSION djangorestframework==$REST_FRAMEWORK_VERSION
- pip install coveralls
script:
coverage run --source=rest_framework_se runtests.py
after_success:
coveralls
| Set up Travis build matrix | Set up Travis build matrix
| YAML | bsd-2-clause | JamesRitchie/django-rest-framework-sav |
585d6d60d87d908360f029ed26701c5dce77b821 | .travis.yml | .travis.yml | language: python
env:
global:
- COVERAGE_CMD="coverage run -m"
- COVERAGE_DEP="coverage"
matrix:
include:
- python: "2.7"
env: TOX_ARGS="-e py27-install-extensions,py27-disable-extensions,py27-without-extensions"
- python: "3.4"
env: TOX_ARGS="-e py34-install-extensions,py34-disable-extensions,py34-without-extensions"
- python: "3.5"
env: TOX_ARGS="-e py35-install-extensions,py35-disable-extensions,py35-without-extensions"
- python: "3.6"
env: TOX_ARGS="-e py36-install-extensions,py36-disable-extensions,py36-without-extensions"
- python: "pypy3.5"
env: TOX_ARGS="-e pypy-without-extensions"
install:
- pip install tox coveralls
script:
- tox --skip-missing-interpreters $TOX_ARGS
after_script:
- coverage combine
- coveralls
| language: python
env:
global:
- COVERAGE_CMD="coverage run -m"
- COVERAGE_DEP="coverage"
matrix:
include:
- python: "2.7"
env: TOX_ARGS="-e py27-install-extensions,py27-disable-extensions,py27-without-extensions"
- python: "3.4"
env: TOX_ARGS="-e py34-install-extensions,py34-disable-extensions,py34-without-extensions"
- python: "3.5"
env: TOX_ARGS="-e py35-install-extensions,py35-disable-extensions,py35-without-extensions"
- python: "3.6"
env: TOX_ARGS="-e py36-install-extensions,py36-disable-extensions,py36-without-extensions"
- python: "3.7"
env: TOX_ARGS="-e py37-install-extensions,py37-disable-extensions,py37-without-extensions"
- python: "pypy3.5"
env: TOX_ARGS="-e pypy-without-extensions"
install:
- pip install tox coveralls
script:
- tox $TOX_ARGS
after_script:
- coverage combine
- coveralls
| Add TravisCI test for Python 3.7. | Add TravisCI test for Python 3.7.
| YAML | bsd-2-clause | GrahamDumpleton/wrapt,GrahamDumpleton/wrapt |
7d837a3ffae03a34ff6e8c2d512d7534aee164e7 | .travis.yml | .travis.yml | # This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0
language: python
sudo: required
dist: bionic
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
install:
- pip install .
# Install code formatter black, but only on versions where it is available
- pip install black || true
before_script:
- sudo ./.travis-setup.sh "$USER"
# Disable one specific test that often fails on Travis.
# This is due to a deadlock in the Python interpreter or used libraries
# and this is difficult to fix, but occurs only in high-load environments.
- sed -i benchexec/test_integration/__init__.py -e '/test_simple_parallel/ i \ @unittest.skip("Fails nondeterministically on Travis, probably #656")'
script:
- python setup.py test
# Revert local modification before checking source format
- git checkout .
- if which black; then black . --check --diff; fi
notifications:
email:
- benchexec-dev@googlegroups.com
| # This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0
language: python
sudo: required
dist: bionic
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
install:
- pip install .
# Install code formatter black, but only on versions where it is available
- pip install black || true
before_script:
- sudo ./.travis-setup.sh "$USER"
# Disable one specific test that often fails on Travis.
# This is due to a deadlock in the Python interpreter or used libraries
# and this is difficult to fix, but occurs only in high-load environments.
- sed -i benchexec/test_integration/__init__.py -e '/test_simple_parallel/ i \ @unittest.skip("Fails nondeterministically on Travis, probably issue 656")'
script:
- python setup.py test
# Revert local modification before checking source format
- git checkout .
- if which black; then black . --check --diff; fi
notifications:
email:
- benchexec-dev@googlegroups.com
| Fix yaml syntax (it was accidentally creating a comment) | Fix yaml syntax (it was accidentally creating a comment)
| YAML | apache-2.0 | sosy-lab/benchexec,dbeyer/benchexec,sosy-lab/benchexec,sosy-lab/benchexec,ultimate-pa/benchexec,sosy-lab/benchexec,sosy-lab/benchexec,ultimate-pa/benchexec,ultimate-pa/benchexec,dbeyer/benchexec,dbeyer/benchexec,ultimate-pa/benchexec,ultimate-pa/benchexec,ultimate-pa/benchexec,sosy-lab/benchexec,dbeyer/benchexec |
5120497bc97c1ed4c762d355a84dac9ca4e37dda | .travis.yml | .travis.yml | language: ruby
before_install:
- gem update bundler
cache: bundler
matrix:
include:
- rvm: 2.4.9
- rvm: 2.5.7
- rvm: 2.6.5
- rvm: jruby-9.2.9.0
- rvm: 2.6.5
install: true # This skips 'bundle install'
script: gem build *.gemspec && gem install *.gem
notifications:
email: false
| language: ruby
before_install:
- gem update bundler
cache: bundler
matrix:
include:
- rvm: 2.5.8
- rvm: 2.6.6
- rvm: 2.7.1
- rvm: jruby-9.2.11.1
- rvm: 2.7.1
install: true # This skips 'bundle install'
script: gem build *.gemspec && gem install *.gem
notifications:
email: false
| Test with latest Ruby/JRuby versions | Test with latest Ruby/JRuby versions
Removed 2.4 as its EOL since 2020-03-31.
https://www.ruby-lang.org/en/downloads/branches/
| YAML | mit | twingly/twingly-search-api-ruby,twingly/twingly-analytics-api-ruby |
80b43c2cd6cee13f3bedb4f4248422a0c9ae60b9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
script:
sh -x ./test_opensips.sh
| language: python
python:
- "2.7"
before_install:
- apt-get install -qq python-twisted
script:
sh -x ./test_opensips.sh
| Use before_install in order to install python-twisted. | Use before_install in order to install python-twisted.
| YAML | bsd-2-clause | hongbinz/voiptests,sippy/voiptests,sippy/voiptests,hongbinz/voiptests |
0676239f4bb5fc23da719f26b02b7f24af5621ee | .travis.yml | .travis.yml | language: ruby
script:
- bundle exec rspec
- bundle exec rubocop --display-cop-names
sudo: false
rvm:
- ruby-1.9.3-p551
- ruby-2.0.0-p648
- ruby-2.1.10
- ruby-2.2.7
- ruby-2.3.4
- ruby-2.4.1
- jruby-9.1.5.0
| language: ruby
script:
- bundle exec rspec
- bundle exec rubocop --display-cop-names
sudo: false
rvm:
- jruby-9.2
- ruby-2.3
- ruby-2.4
- ruby-2.5
| Drop support for old rubies | Drop support for old rubies
- try to start JRuby first, cuz it slower in Travis
- add Ruby 2.5
- use RVM version specifiers that allow newer versions
| YAML | mit | covermymeds/fetching-gem |
c2b751f3b8a014a19b6656875a62b792df4bde06 | .travis.yml | .travis.yml | language: python
env:
- PYTHON_VERSION=3.4
- PYTHON_VERSION=2.7
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:$PATH
# Update conda itself
- conda update --yes conda
install:
- conda create --yes -n env_name python=$PYTHON_VERSION pip nose pep8 openpyxl=1.8.2 pandas ipython pyzmq
- source activate env_name
- pip
- pip install coveralls
- pip install .
script:
- ipython profile create qiita_general --parallel
- ipython profile create qiita_demo --parallel
- ipython profile create qiita_reserved --parallel
- qiita_env start_cluster --cluster general
- qiita_env start_cluster --cluster demo
- qiita_env start_cluster --cluster reserved
- qiita_env make_env --env test
- nosetests --with-doctest --with-coverage
- pep8 qiita_db qiita_core qiita_pet setup.py
# we need to run the test suite from setup.py for coveralls to grab the info
# - coverage run setup.py test
# - coverage report -m
services:
- redis-server
after_success:
- coveralls
| language: python
env:
- PYTHON_VERSION=3.3
- PYTHON_VERSION=2.7
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:$PATH
# Update conda itself
- conda update --yes conda
install:
- conda create --yes -n env_name python=$PYTHON_VERSION pip nose pep8 openpyxl=1.8.2 pandas ipython pyzmq
- source activate env_name
- pip
- pip install coveralls
- pip install .
script:
- ipython profile create qiita_general --parallel
- ipython profile create qiita_demo --parallel
- ipython profile create qiita_reserved --parallel
- qiita_env start_cluster --cluster general
- qiita_env start_cluster --cluster demo
- qiita_env start_cluster --cluster reserved
- qiita_env make_env --env test
- nosetests --with-doctest --with-coverage
- pep8 qiita_db qiita_core qiita_pet setup.py
# we need to run the test suite from setup.py for coveralls to grab the info
# - coverage run setup.py test
# - coverage report -m
services:
- redis-server
after_success:
- coveralls
| Change python 3 testing to version 3.3 | Change python 3 testing to version 3.3
Used to be 3.4, which was breaking pyqi, which is required for biom
| YAML | bsd-3-clause | RNAer/qiita,biocore/qiita,wasade/qiita,RNAer/qiita,antgonza/qiita,josenavas/QiiTa,ElDeveloper/qiita,squirrelo/qiita,squirrelo/qiita,antgonza/qiita,biocore/qiita,adamrp/qiita,biocore/qiita,antgonza/qiita,wasade/qiita,squirrelo/qiita,adamrp/qiita,wasade/qiita,squirrelo/qiita,ElDeveloper/qiita,adamrp/qiita,josenavas/QiiTa,adamrp/qiita,RNAer/qiita,biocore/qiita,RNAer/qiita,ElDeveloper/qiita,josenavas/QiiTa,antgonza/qiita,josenavas/QiiTa,ElDeveloper/qiita |
63620dbb3b1b6528591b57c08bfb1013a8414c69 | .travis.yml | .travis.yml | language: node_js
cache: yarn
node_js:
- 8
- 10
- 11
- node
install:
- yarn
script:
- yarn ci
| language: node_js
cache: yarn
node_js:
- 8
- 10
- 11
- 12
- node
install:
- yarn
script:
- yarn ci
| Add Node 12 to CI config. | Add Node 12 to CI config.
| YAML | mit | octet-stream/form-data,octet-stream/form-data |
f62e95d79c6068a62461700f8c9b31edff798eb5 | .travis.yml | .travis.yml | sudo: required
language: go
services:
- docker
go:
- 1.16.x
arch:
- amd64
- arm64
os:
- linux
jobs:
include:
- os: linux
arch: amd64
- os: linux
arch: arm64
- stage: Push Docker manifest
env:
- DOCKER_CLI_EXPERIMENTAL=enabled
script:
- if [ "$TRAVIS_OS_NAME" == "linux" -a ! -z "$TRAVIS_TAG" ]; then
echo "Executing release-manifest on tag build $TRAVIS_TAG";
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
make release-manifest;
fi
before_install:
- go get -v github.com/mattn/goveralls
install:
- make setup
script:
- make build
- make test-race
- make check
- make bench-race
- make coveralls
after_success:
- if [ "$TRAVIS_BUILD_STAGE_NAME" == "test" -a "$TRAVIS_OS_NAME" == "linux" -a ! -z "$TRAVIS_TAG" ]; then
echo "Executing release on tag build $TRAVIS_TAG";
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
ARCH=linux CPU_ARCH="$TRAVIS_CPU_ARCH" make release;
else
echo "Not executing release on non-tag build";
fi
| sudo: required
language: go
services:
- docker
go:
- 1.19.x
arch:
- amd64
- arm64
os:
- linux
jobs:
include:
- os: linux
arch: amd64
- os: linux
arch: arm64
- stage: Push Docker manifest
env:
- DOCKER_CLI_EXPERIMENTAL=enabled
script:
- if [ "$TRAVIS_OS_NAME" == "linux" -a ! -z "$TRAVIS_TAG" ]; then
echo "Executing release-manifest on tag build $TRAVIS_TAG";
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
make release-manifest;
fi
before_install:
- go get -v github.com/mattn/goveralls
install:
- make setup
script:
- make build
- make test-race
- make check
- make bench-race
- make coveralls
after_success:
- if [ "$TRAVIS_BUILD_STAGE_NAME" == "test" -a "$TRAVIS_OS_NAME" == "linux" -a ! -z "$TRAVIS_TAG" ]; then
echo "Executing release on tag build $TRAVIS_TAG";
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
ARCH=linux CPU_ARCH="$TRAVIS_CPU_ARCH" make release;
else
echo "Not executing release on non-tag build";
fi
| Upgrade Travis to use go 1.19.x | Upgrade Travis to use go 1.19.x
| YAML | bsd-3-clause | jtblin/kube2iam,jtblin/kube2iam |
93cd4fa571ed8e0b64ebe2d77577cb7f71450d3b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.4
script: bundle exec rake test
| language: ruby
branches:
only:
- master
rvm:
- 2.1.4
script: bundle exec rake test
| Enable `Build pushes` when only master branch | Enable `Build pushes` when only master branch
| YAML | mit | gongo/itamae-plugin-resource-firewalld,hanazuki/itamae-plugin-resource-firewalld |
2803f6c81befbed9a36e071bd8c85797842a23c8 | .travis.yml | .travis.yml | language: python
# Python releases to test
python:
- 2.5
- 2.6
- 2.7
- 3.2
# Django releases
env:
- DJANGO_VERSION=Django==1.3.5
- DJANGO_VERSION=Django==1.4.3
# 1.5 release candidate
- DJANGO_VERSION=git+git://github.com/django/django.git@f23d3ce8d47cc3ec58cb7fb1b32d3d3237c025f5
# Exclude some Django releases depending on Python version
matrix:
exclude:
- python: 3.2
env: DJANGO_VERSION=Django==1.3.5
- python: 3.2
env: DJANGO_VERSION=Django==1.4.3
- python: 2.5
env: DJANGO_VERSION=git+git://github.com/django/django.git@f23d3ce8d47cc3ec58cb7fb1b32d3d3237c025f5
install:
- pip install -q --use-mirrors $DJANGO_VERSION
- python setup.py install -q
script: make test
notifications:
email:
on_success: never
on_failure: change
| language: python
# Python releases to test
python:
- 2.5
- 2.6
- 2.7
- 3.2
# Django releases
env:
- DJANGO_VERSION=Django==1.3.5
- DJANGO_VERSION=Django==1.4.3
# 1.5 release candidate
- DJANGO_VERSION=git+git://github.com/django/django.git@f23d3ce8d47cc3ec58cb7fb1b32d3d3237c025f5
# Exclude some Django releases depending on Python version
matrix:
exclude:
- python: 3.2
env: DJANGO_VERSION=Django==1.3.5
- python: 3.2
env: DJANGO_VERSION=Django==1.4.3
- python: 2.5
env: DJANGO_VERSION=git+git://github.com/django/django.git@f23d3ce8d47cc3ec58cb7fb1b32d3d3237c025f5
install:
- if [[ $TRAVIS_PYTHON_VERSION < '2.7' ]]; then pip install -q --use-mirrors argparse; fi
- pip install -q --use-mirrors $DJANGO_VERSION
- python setup.py install -q
script: make test
notifications:
email:
on_success: never
on_failure: change
| Fix Python < 2.7 testing | Fix Python < 2.7 testing
| YAML | bsd-3-clause | nkuttler/django-webmaster-verification,nkuttler/django-webmaster-verification |
8876cce6a0f6224374ec93006af29350caf5e63d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- "4.0"
- "4.1"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Drop iojs and add v4.0 and v4.1 to CI run. | Drop iojs and add v4.0 and v4.1 to CI run.
| YAML | mit | cliffano/bagofcli |
815dfe9ddc87502bc02d7b791502cafdad96c758 | .travis.yml | .travis.yml | dist: trusty
language: python
cache:
directories:
- /home/travis/download
- /home/travis/.cache/pip
# This matrix tests that the code works on Python 2.7,
# 2.7.8, 3.5, 3.6, and passes lint.
matrix:
fast_finish: true
include:
- env: PYTHON_VERSION="2.7"
- env: PYTHON_VERSION="2.7.8"
- env: PYTHON_VERSION="3.5"
- env: PYTHON_VERSION="3.6"
- env: PYTHON_VERSION="2.7" RUN_FLAKE8="true" SKIP_TESTS="true"
notifications:
email: false
install: source build_tools/travis/install.sh
script: bash build_tools/travis/test_script.sh
after_success: source build_tools/travis/after_success.sh
| dist: trusty
language: python
cache:
directories:
- /home/travis/download
- /home/travis/.cache/pip
# This matrix tests that the code works on Python 2.7,
# 2.7.8, 3.5, 3.6, and passes lint.
matrix:
fast_finish: true
include:
- env: PYTHON_VERSION="2.7" COVERAGE="true"
- env: PYTHON_VERSION="2.7.8" COVERAGE="true"
- env: PYTHON_VERSION="3.5" COVERAGE="true"
- env: PYTHON_VERSION="3.6" COVERAGE="true"
- env: PYTHON_VERSION="2.7" RUN_FLAKE8="true" SKIP_TESTS="true"
notifications:
email: false
install: source build_tools/travis/install.sh
script: bash build_tools/travis/test_script.sh
after_success: source build_tools/travis/after_success.sh
| Add COVERAGE=true env vars to test matrix | Add COVERAGE=true env vars to test matrix
| YAML | bsd-3-clause | pytorch/text,pytorch/text,pytorch/text,pytorch/text |
00ea9067c26f3910321e4747f3ee781e7ecfe13d | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
gemfile:
- Gemfile
- gemfiles/Gemfile.rails-3.2.x
- gemfiles/Gemfile.rails-4.0.x
- gemfiles/Gemfile.rails-4.1.x
- gemfiles/Gemfile.rails-5.0.x
matrix:
exclude:
# has test/unit/testcase removed, and also 3.2.x is too old to support
# ruby 2.2.0. so ignoring this combination.
- rvm: 2.2.0
gemfile: gemfiles/Gemfile.rails-3.2.x
# rack with rails 5 cannot be installed in ruby versions prior to 2.2.2
- rvm: 2.0.0
gemfile: gemfiles/Gemfile.rails-5.0.x
- rvm: 2.1.10
gemfile: gemfiles/Gemfile.rails-5.0.x
script:
- bundle exec rake --trace
| language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
gemfile:
- Gemfile
- gemfiles/Gemfile.rails-3.2.x
- gemfiles/Gemfile.rails-4.0.x
- gemfiles/Gemfile.rails-4.1.x
- gemfiles/Gemfile.rails-5.0.x
matrix:
exclude:
# has test/unit/testcase removed, and also 3.2.x is too old to support
# ruby 2.2.0. so ignoring this combination.
- rvm: 2.2.0
gemfile: gemfiles/Gemfile.rails-3.2.x
# rack with rails 5 cannot be installed in ruby versions prior to 2.2.2
- rvm: 2.0.0
gemfile: gemfiles/Gemfile.rails-5.0.x
- rvm: 2.1.10
gemfile: gemfiles/Gemfile.rails-5.0.x
script:
- bundle exec rake --trace
| Update ruby 2.1.5 > 2.1.10, 2.2.0 > 2.2.9 & add 2.3.6 | Update ruby 2.1.5 > 2.1.10, 2.2.0 > 2.2.9 & add 2.3.6
| YAML | mit | code-mancers/invoicing,code-mancers/invoicing,code-mancers/invoicing |
91e7213c515d1beb81c5611c28140ae19c8d1af7 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
env:
- CI=true
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
- jruby
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby
dist: trusty
| language: ruby
bundler_args: --without debug
env:
- CI=true
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
- jruby
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby
- rvm: 2.7
dist: trusty
| Allow 2.7 to fail, for now. | Allow 2.7 to fail, for now.
| YAML | unlicense | ruby-rdf/rdf-trig |
3842901080220388c674d532ff93783a46730498 | .travis.yml | .travis.yml | language: ruby
before_install: 'gem update bundler'
install: 'bundle install --jobs=3 --retry=3' # Suppress the --deployment flag'
rvm:
- 2.2.2
- 2.3.0
- 2.3.1
notifications:
irc: "irc.freenode.org#jeweler"
| language: ruby
before_install: 'gem update bundler'
install: 'bundle install --jobs=3 --retry=3' # Suppress the --deployment flag'
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
notifications:
irc: "irc.freenode.org#jeweler"
| Test on new Ruby versions | Test on new Ruby versions | YAML | mit | technicalpickles/jeweler,technicalpickles/jeweler |
9cc3d4b672385130e33a62ab4d1852561ae7edd3 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.4.3
- 1.5.3
- 1.6
- tip
before_script:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- go test -v -covermode=count -coverprofile=coverage.out
after_success:
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci
| language: go
sudo: false
go:
- 1.4.3
- 1.5.3
- 1.6
- 1.7
- tip
before_script:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- go test -v -covermode=count -coverprofile=coverage.out
after_success:
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci
| Add support to test with go 1.7 | Add support to test with go 1.7 | YAML | mit | scorphus/gothumbor,globocom/gothumbor,scorphus/gothumbor,globocom/gothumbor |
00afc2092ecc6ffd93b37eba73a8b8079565f03b | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
os:
- linux
- osx
script:
- go test -v ./...
| language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
script:
- go test -v ./...
| Remove Mac OS test from Travis (for now) | Remove Mac OS test from Travis (for now)
| YAML | bsd-3-clause | yookoala/gofast,yookoala/gofast,yookoala/gofast,yookoala/gofast |
6b651e87b093288bf39ad5ef5c3fad313931ee95 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "4"
sudo: false
cache:
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-1.13
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
- env: EMBER_TRY_SCENARIO=ember-beta
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:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
| ---
language: node_js
node_js:
- "4"
sudo: false
cache:
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-1.13
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-1.13
- env: EMBER_TRY_SCENARIO=ember-canary
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:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
| Make Ember 1.13 optional and ember-beta required | Make Ember 1.13 optional and ember-beta required
| YAML | mit | cowboyd/ember-microstates,cowboyd/ember-microstates |
c3d641a8f234b86e20c2601bc527d0206c604e0a | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libgirepository1.0-dev gobject-introspection
- sudo apt-get install -y gir1.2-gtk-3.0 gir1.2-gtk-2.0
- gem update --system
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
- jruby-9.1.15.0
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake test"
branches:
only:
- master
| sudo: required
dist: trusty
language: ruby
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libgirepository1.0-dev gobject-introspection
- sudo apt-get install -y gir1.2-gtk-3.0 gir1.2-gtk-2.0
- gem update --system
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
- jruby-9.1
- jruby-9.2
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake test"
branches:
only:
- master
| Test on JRuby 9.1 and 9.2 | Test on JRuby 9.1 and 9.2
| YAML | lgpl-2.1 | mvz/gir_ffi-gtk |
e9f85d9bc70fd00f7771daa25bed3885ee968818 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
cache:
directories:
- $HOME/.gradle
# workaround for buffer overflow
# see https://github.com/travis-ci/travis-ci/issues/5227
before_install:
- cat /etc/hosts # optionally check the content *before*
- sudo hostname "$(hostname | cut -c1-63)"
- sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/" /etc/hosts | sudo tee /etc/hosts
- cat /etc/hosts # optionally check the content *after*
| language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
cache:
directories:
- $HOME/.gradle
# workaround for buffer overflow
# see https://github.com/travis-ci/travis-ci/issues/5227
before_install:
- cat /etc/hosts # optionally check the content *before*
- sudo hostname "$(hostname | cut -c1-63)"
- sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/" /etc/hosts | sudo tee /etc/hosts
- cat /etc/hosts # optionally check the content *after*
| Remove openjdk6 from Travis CI | Remove openjdk6 from Travis CI
| YAML | apache-2.0 | michel-kraemer/bson4jackson |
3836e23d2fd82c87ff59ac4bbe839c50db543b9a | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "4"
- "0.12"
| language: node_js
node_js:
- "6"
- "4"
| Remove node.js 0.12 from Travis CI because of ESLint | Remove node.js 0.12 from Travis CI because of ESLint
| YAML | mit | postcss/postcss-simple-vars |
3da7d342bb8d515bf43e007469ddf911c65b25ac | .travis.yml | .travis.yml | matrix:
include:
- os: linux
dist: trusty
sudo: required
language: node_js
node_js:
- '6'
# Install dependencies for snaps
# before_install:
# - sudo add-apt-repository -y ppa:snappy-dev/tools
# - sudo apt-get -qq update
# - sudo apt-get install -y rpm g++-multilib snapcraft
- os: osx
osx_image: xcode7.3.1
language: generic
node_js:
- '6'
branches:
only:
- master
- develop
addons:
apt:
packages:
- rpm
- g++-multilib
before_script:
- chmod +x ./scripts/travis-build.sh
script: ./scripts/travis-build.sh
cache:
directories:
- node_modules
notifications:
email:
on_success: never
on_failure: change
| matrix:
include:
- os: linux
dist: trusty
sudo: required
language: node_js
node_js:
- '6'
# Install dependencies for snaps
# before_install:
# - sudo add-apt-repository -y ppa:snappy-dev/tools
# - sudo apt-get -qq update
# - sudo apt-get install -y rpm g++-multilib snapcraft
- os: osx
osx_image: xcode7.3.1
language: generic
node_js:
- '6'
branches:
only:
- master
- develop
addons:
apt:
packages:
- rpm
- g++-multilib
- libx11-dev:i386
- libxext-dev:i386
- libxss-dev:i386
before_script:
- chmod +x ./scripts/travis-build.sh
script: ./scripts/travis-build.sh
cache:
directories:
- node_modules
notifications:
email:
on_success: never
on_failure: change
| Fix build for linux 32 bits | Fix build for linux 32 bits
| YAML | mit | RocketChat/Rocket.Chat.Electron,ZedTheYeti/Rocket.Chat.Electron,ZedTheYeti/Rocket.Chat.Electron,RocketChat/Rocket.Chat.Electron,ZedTheYeti/Rocket.Chat.Electron,RocketChat/Rocket.Chat.Electron |
c08ef35508a4b7b89b3a90744ee74e2f41710dc7 | .travis.yml | .travis.yml | language: php
sudo: false
dist: trusty
php:
- 7.1
- 7.2
- 7.3
- nightly
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.1
env: deps=low
fast_finish: true
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- echo "extension = mongodb.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- if [ "$deps" == "low" ]; then composer update --prefer-dist --prefer-lowest --prefer-stable; fi
- if [ "$deps" != "low" ]; then composer install --prefer-dist; fi
script: composer test
| language: php
sudo: false
dist: trusty
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.1
env: deps=low
fast_finish: true
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- echo "extension = mongodb.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- if [ "$deps" == "low" ]; then composer update --prefer-dist --prefer-lowest --prefer-stable; fi
- if [ "$deps" != "low" ]; then composer install --prefer-dist; fi
script: composer test
| Test on php 7.4 only | Test on php 7.4 only
| YAML | mit | Seldaek/monolog,pomaxa/monolog |
31553846007f3161877f55c6c43f5c88fdc6280b | .travis.yml | .travis.yml | # Travis CI build file for Kitura HTTP2 package.
# Kitura runs on OS X and Linux (Ubuntu).
# See the following URLs for further details on Travis CI
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/docker/
# https://docs.travis-ci.com/user/multi-os/
# whitelist (branches that should be built)
branches:
only:
- master
notifications:
email: false
matrix:
include:
- os: linux
dist: trusty
sudo: required
- os: osx
osx_image: xcode8.2
sudo: required
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./build.sh ; fi
- git clone https://github.com/IBM-Swift/Package-Builder.git
script:
- ./Package-Builder/build-package.sh -projectDir $TRAVIS_BUILD_DIR
| # Travis CI build file for Kitura HTTP2 package.
# Kitura runs on OS X and Linux (Ubuntu).
# See the following URLs for further details on Travis CI
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/docker/
# https://docs.travis-ci.com/user/multi-os/
# whitelist (branches that should be built)
branches:
only:
- master
notifications:
email: false
matrix:
include:
- os: linux
dist: trusty
sudo: required
- os: osx
osx_image: xcode8.2
sudo: required
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./build.sh ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install curl --with-nghttp2 ; fi
- git clone https://github.com/IBM-Swift/Package-Builder.git
script:
- ./Package-Builder/build-package.sh -projectDir $TRAVIS_BUILD_DIR
| Install curl with nghttp2 on MacOS for the tests | Install curl with nghttp2 on MacOS for the tests
| YAML | apache-2.0 | ymesika/Kitura-HTTP2,ymesika/Kitura-HTTP2,ymesika/Kitura-HTTP2 |
be73ee84a5dd4aebfb8ea61165353b0a8a73c239 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0-rc1
branches:
only:
- master
script: rake
env:
- DB=mysql
- DB=postgresql
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
branches:
only:
- master
script: rake
env:
- DB=mysql
- DB=postgresql
| Build against Ruby 2.1.0 \o/ | Build against Ruby 2.1.0 \o/
| YAML | bsd-3-clause | mixandgo/alchemy_cms,mamhoff/alchemy_cms,nielspetersen/alchemy_cms,IngoAlbers/alchemy_cms,heisam/alchemy_cms,akra/alchemy_cms,clst/alchemy_cms,AlchemyCMS/alchemy_cms,mtomov/alchemy_cms,getkiwicom/alchemy_cms,heisam/alchemy_cms,watg/alchemy_cms,robinboening/alchemy_cms,akra/alchemy_cms,thomasjachmann/alchemy_cms,jsqu99/alchemy_cms,phaedryx/alchemy_cms,phaedryx/alchemy_cms,thomasjachmann/alchemy_cms,Domenoth/alchemy_cms,mtomov/alchemy_cms,mixandgo/alchemy_cms,akra/alchemy_cms,kinsomicrote/alchemy_cms,paperculture/alchemy_cms,chalmagean/alchemy_cms,phaedryx/alchemy_cms,paperculture/alchemy_cms,akra/alchemy_cms,phaedryx/alchemy_cms,jsqu99/alchemy_cms,robinboening/alchemy_cms,robinboening/alchemy_cms,AlchemyCMS/alchemy_cms,mixandgo/alchemy_cms,mtomov/alchemy_cms,jsqu99/alchemy_cms,nielspetersen/alchemy_cms,clst/alchemy_cms,Domenoth/alchemy_cms,getkiwicom/alchemy_cms,thomasjachmann/alchemy_cms,mamhoff/alchemy_cms,heisam/alchemy_cms,cygnus6/alchemy_cms,mixandgo/alchemy_cms,clst/alchemy_cms,clst/alchemy_cms,AlchemyCMS/alchemy_cms,thomasjachmann/alchemy_cms,nielspetersen/alchemy_cms,chalmagean/alchemy_cms,IngoAlbers/alchemy_cms,IngoAlbers/alchemy_cms,watg/alchemy_cms,chalmagean/alchemy_cms,watg/alchemy_cms,getkiwicom/alchemy_cms,IngoAlbers/alchemy_cms,chalmagean/alchemy_cms,jsqu99/alchemy_cms,kinsomicrote/alchemy_cms,cygnus6/alchemy_cms,paperculture/alchemy_cms,Domenoth/alchemy_cms,nielspetersen/alchemy_cms,kinsomicrote/alchemy_cms,watg/alchemy_cms,mtomov/alchemy_cms,Domenoth/alchemy_cms,mamhoff/alchemy_cms,heisam/alchemy_cms,paperculture/alchemy_cms,kinsomicrote/alchemy_cms,getkiwicom/alchemy_cms,cygnus6/alchemy_cms,cygnus6/alchemy_cms |
40759f14c8fc89973203e2e89635ccad2ed77af8 | .travis.yml | .travis.yml | os: osx
osx_image: xcode10.2
language: cpp
compiler:
- clang
install:
- git submodule update --init
- git submodule update --init --recursive dependencies/mbedtls
env:
matrix:
- XCODE_PROJECT=build/PomdogTest.xcodeproj BUILD_CONFIG=Debug TEST_APP=build/build/Debug/PomdogUnitTest
- XCODE_PROJECT=build/PomdogTest.xcodeproj BUILD_CONFIG=Release TEST_APP=build/build/Release/PomdogUnitTest
- XCODE_PROJECT=examples/QuickStart/Builds/QuickStart.xcodeproj BUILD_CONFIG=Debug TEST_APP=true
- XCODE_PROJECT=examples/QuickStart/Builds/QuickStart.xcodeproj BUILD_CONFIG=Release TEST_APP=true
- XCODE_PROJECT=build.cmake/Pomdog.xcodeproj BUILD_CONFIG=Debug TEST_APP=build.cmake/test/Debug/PomdogTest
- XCODE_PROJECT=build.cmake/Pomdog.xcodeproj BUILD_CONFIG=Release TEST_APP=build.cmake/test/Release/PomdogTest
script:
- mkdir build.cmake && cd build.cmake
- cmake -G Xcode ..
- cd ..
- xcodebuild -project $XCODE_PROJECT clean
- xcodebuild -project $XCODE_PROJECT -configuration $BUILD_CONFIG
- $TEST_APP
notifications:
email: false
| os: osx
osx_image: xcode10.2
language: cpp
compiler:
- clang
addons:
homebrew:
packages:
- cmake
update: true
install:
- git submodule update --init
- git submodule update --init --recursive dependencies/mbedtls
env:
matrix:
- XCODE_PROJECT=build/PomdogTest.xcodeproj BUILD_CONFIG=Debug TEST_APP=build/build/Debug/PomdogUnitTest
- XCODE_PROJECT=build/PomdogTest.xcodeproj BUILD_CONFIG=Release TEST_APP=build/build/Release/PomdogUnitTest
- XCODE_PROJECT=examples/QuickStart/Builds/QuickStart.xcodeproj BUILD_CONFIG=Debug TEST_APP=true
- XCODE_PROJECT=examples/QuickStart/Builds/QuickStart.xcodeproj BUILD_CONFIG=Release TEST_APP=true
- XCODE_PROJECT=build.cmake/Pomdog.xcodeproj BUILD_CONFIG=Debug TEST_APP=build.cmake/test/Debug/PomdogTest
- XCODE_PROJECT=build.cmake/Pomdog.xcodeproj BUILD_CONFIG=Release TEST_APP=build.cmake/test/Release/PomdogTest
script:
- mkdir build.cmake && cd build.cmake
- cmake -G Xcode ..
- cd ..
- xcodebuild -project $XCODE_PROJECT clean
- xcodebuild -project $XCODE_PROJECT -configuration $BUILD_CONFIG
- $TEST_APP
notifications:
email: false
| Use homebrew package for using latest cmake | Use homebrew package for using latest cmake
| YAML | mit | mogemimi/pomdog,mogemimi/pomdog,mogemimi/pomdog |
cafee3ef98db9f85ae591c80f21f9ec4e92478b9 | .travis.yml | .travis.yml | before_install:
- git lfs pull
- sudo apt-get update
- sudo apt-get install -y syslinux cmake libcap-dev libbz2-dev zlib1g-dev
- pushd vendor
- tar -xvf cdrkit-1.1.11-fedora29-patched.tar.gz
- pushd cdrkit-1.1.11
- mkdir build
- pushd build
- cmake ..
- make
- popd
- popd
- popd
language: python
os: linux
arch:
- amd64
- s390x
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
script:
- PATH=vendor/cdrkit-1.1.11/build/genisoimage:$PATH LD_LIBRARY_PATH=vendor/cdrkit-1.1.11/build/libusal/:vendor/cdrkit-1.1.11/build/librols:$LD_LIBRARY_PATH PYCDLIB_TRACK_WRITES=1 py.test --verbose tests
| before_install:
- sudo apt-get update
- sudo apt-get install -y cmake git-lfs libbz2-dev libcap-dev syslinux zlib1g-dev
- git lfs pull
- pushd vendor
- tar -xvf cdrkit-1.1.11-fedora29-patched.tar.gz
- pushd cdrkit-1.1.11
- mkdir build
- pushd build
- cmake ..
- make
- popd
- popd
- popd
language: python
os: linux
arch:
- amd64
- s390x
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
script:
- PATH=vendor/cdrkit-1.1.11/build/genisoimage:$PATH LD_LIBRARY_PATH=vendor/cdrkit-1.1.11/build/libusal/:vendor/cdrkit-1.1.11/build/librols:$LD_LIBRARY_PATH PYCDLIB_TRACK_WRITES=1 py.test --verbose tests
| Make sure to install git-lfs | Make sure to install git-lfs
Signed-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@openrobotics.org>
| YAML | lgpl-2.1 | clalancette/pycdlib,clalancette/pyiso |
33198503698bbac703b52d03903db9b6b7b33316 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.1
- nightly
cache:
directories:
- $HOME/.composer/cache
before_script:
- pecl install ds
- mkdir -p build-logs
- composer install --prefer-source --no-interaction
matrix:
allow_failures:
- php: nightly
fast_finish: true
notifications:
email: true
script:
- make test
- make coverage
after_success:
- travis_retry php vendor/bin/coveralls
| language: php
sudo: false
php:
- 7.1
- nightly
cache:
directories:
- $HOME/.composer/cache
before_script:
- pecl install ds
- mkdir -p build-logs
- composer install --prefer-source --no-interaction
matrix:
allow_failures:
- php: nightly
fast_finish: true
notifications:
email: true
script:
- make test
- make sniff
- make coverage
after_success:
- travis_retry php vendor/bin/coveralls
| Add code sniffing to Travis tests | Add code sniffing to Travis tests
| YAML | mit | rubberydub/snout |
7ec0d9d1063647b2e2ce60100a30882b68f1d3d2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_script:
- cp spec/db/database.yml{.example,}
- mysql -e 'create database acts_as_geocodable_test;'
- createdb acts_as_geocodable_test -U postgres
notifications:
webhooks:
urls:
- http://buildlight.collectiveidea.com/
on_start: true
| language: ruby
rvm:
- 1.9.3
- "2.0"
- "2.1"
before_script:
- cp spec/db/database.yml{.example,}
- mysql -e 'create database acts_as_geocodable_test;'
- createdb acts_as_geocodable_test -U postgres
notifications:
webhooks:
urls:
- http://buildlight.collectiveidea.com/
on_start: true
| Test against Ruby 2.0 and 2.1 | Test against Ruby 2.0 and 2.1
| YAML | mit | collectiveidea/acts_as_geocodable,kornhammer/acts_as_geocodable |
7386aa917c78c53b1c4f71e6edb61c6d8f43b56a | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx-2
- rbx
- jruby-1
- jruby
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3
- rbx-2
- rbx
- jruby-1
- jruby
| Test Ruby 2.3 in Travis | Test Ruby 2.3 in Travis
| YAML | mit | chaps-io/access-granted |
17f9344626ae07e0a187c2ba4079e2090f4ab9b4 | .travis.yml | .travis.yml | language: php
php:
- 7.1
services:
- rabbitmq
before_script:
- composer self-update
- cd ui/console && composer install --prefer-source --no-interaction
- cd ../messaging && composer install --prefer-source --no-interaction
- cp .env.travis .env.tests
- cd ../web && composer install --prefer-source --no-interaction
- npm install -g phantomjs-prebuilt
- cd ../../ewallet && composer install --prefer-source --no-interaction
- cp .env.travis .env.tests
script:
- make check
| language: php
php:
- 7.2
services:
- rabbitmq
before_script:
- composer self-update
- cd ui/console && composer install --prefer-source --no-interaction
- cd ../messaging && composer install --prefer-source --no-interaction
- cp .env.travis .env.tests
- cd ../web && composer install --prefer-source --no-interaction
- npm install -g phantomjs-prebuilt
- cd ../../ewallet && composer install --prefer-source --no-interaction
- cp .env.travis .env.tests
script:
- make check
| Update PHP version for Travis | chore: Update PHP version for Travis
| YAML | mit | MontealegreLuis/php-testing-tools,MontealegreLuis/php-testing-tools |
50786a3692250d34105162fed4696b55548d77cc | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.8'
before_install: npm install
sudo: false
env:
global:
- secure: Us1Ti22sb1n8tDbVlV9W0nVEVZIRGskDTirk6q+G1W+XwL+8LyV++pkxZjiWmnjmGEkaSxZmjt8vdN9WbnqhYqFA4QeeNY9VlcnN3wFN1vWD3u0K2zE9mKFLBXjKlWxp75BgJnL/1Y+j3Vx/0sKniYK1zTtKwI6oEUrDIVA3LjY=
- secure: W03n0vCsdL9bWsSs+NMF31R3O/WcXw7NubFjOUj8Khu6R1kT6xghgN3aI2rPSgQGmLSg/kz9giE+Zq3iqWZvABuIssSGw2qh2YtonIqFMm7pI6Kv++T4Y6fyWStzKl3PhdmfUyzuWLeCNRux6owaOBb9RryvM6+Nh9VsK+1NLVE=
| language: node_js
node_js:
- '0.10'
- '0.8'
sudo: false
before_install: npm install -g npm@'=1.4.3'
env:
global:
- secure: Us1Ti22sb1n8tDbVlV9W0nVEVZIRGskDTirk6q+G1W+XwL+8LyV++pkxZjiWmnjmGEkaSxZmjt8vdN9WbnqhYqFA4QeeNY9VlcnN3wFN1vWD3u0K2zE9mKFLBXjKlWxp75BgJnL/1Y+j3Vx/0sKniYK1zTtKwI6oEUrDIVA3LjY=
- secure: W03n0vCsdL9bWsSs+NMF31R3O/WcXw7NubFjOUj8Khu6R1kT6xghgN3aI2rPSgQGmLSg/kz9giE+Zq3iqWZvABuIssSGw2qh2YtonIqFMm7pI6Kv++T4Y6fyWStzKl3PhdmfUyzuWLeCNRux6owaOBb9RryvM6+Nh9VsK+1NLVE=
| Revert "Testing npm install without prefix." | Revert "Testing npm install without prefix."
This reverts commit 722242b8c1cff29283abc97691cbea600e7a4cd6.
| YAML | apache-2.0 | stormpath/stormpath-sdk-node,stormpath/stormpath-sdk-node,ck-lee/stormpath-sdk-node,peebles/stormpath-sdk-node,peebles/stormpath-sdk-node |
c4c83493b85943a15f2006aa25e0130ce6aaae32 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
before_install:
- gem update --system
before_script:
- "mysql -e 'create database thinking_sphinx;' > /dev/null"
- "psql -c 'create database thinking_sphinx;' -U postgres >/dev/null"
env:
- DATABASE=mysql2 SPHINX_BIN=/usr/local/sphinx-2.0.10/bin/ SPHINX_VERSION=2.0.10
- DATABASE=postgresql SPHINX_BIN=/usr/local/sphinx-2.0.10/bin/ SPHINX_VERSION=2.0.10
- DATABASE=mysql2 SPHINX_BIN=/usr/local/sphinx-2.1.8/bin/ SPHINX_VERSION=2.1.8
- DATABASE=postgresql SPHINX_BIN=/usr/local/sphinx-2.1.8/bin/ SPHINX_VERSION=2.1.8
- DATABASE=mysql2 SPHINX_BIN=/usr/local/sphinx-2.2.2/bin/ SPHINX_VERSION=2.2.2
- DATABASE=postgresql SPHINX_BIN=/usr/local/sphinx-2.2.2/bin/ SPHINX_VERSION=2.2.2
gemfile:
- gemfiles/rails_3_2.gemfile
- gemfiles/rails_4_0.gemfile
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
before_install:
- gem update --system
before_script:
- "mysql -e 'create database thinking_sphinx;' > /dev/null"
- "psql -c 'create database thinking_sphinx;' -U postgres >/dev/null"
env:
- DATABASE=mysql2 SPHINX_BIN=/usr/local/sphinx-2.0.10/bin/ SPHINX_VERSION=2.0.10
- DATABASE=postgresql SPHINX_BIN=/usr/local/sphinx-2.0.10/bin/ SPHINX_VERSION=2.0.10
- DATABASE=mysql2 SPHINX_BIN=/usr/local/sphinx-2.1.8/bin/ SPHINX_VERSION=2.1.8
- DATABASE=postgresql SPHINX_BIN=/usr/local/sphinx-2.1.8/bin/ SPHINX_VERSION=2.1.8
- DATABASE=mysql2 SPHINX_BIN=/usr/local/sphinx-2.2.2-beta/bin/ SPHINX_VERSION=2.2.2
- DATABASE=postgresql SPHINX_BIN=/usr/local/sphinx-2.2.2-beta/bin/ SPHINX_VERSION=2.2.2
gemfile:
- gemfiles/rails_3_2.gemfile
- gemfiles/rails_4_0.gemfile
| Include -beta in path for Sphinx 2.2.2 | Include -beta in path for Sphinx 2.2.2
| YAML | mit | jdelStrother/thinking-sphinx,ghedamat/thinking-sphinx,musik/thinking-sphinx,pat/thinking-sphinx,pat/thinking-sphinx |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.