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 |
|---|---|---|---|---|---|---|---|---|---|
089ddc6f41b10357ae87e79a934dc3662b0eab04 | .travis.yml | .travis.yml | language: php
php:
- "5.5"
- "5.4"
- "5.3"
script:
- ./setup.sh ~/kaltura/cli https://www.kaltura.com $PARTNER_ID $ADMIN_SECRET && ./tests/sanity.sh ~/kaltura/cli $PARTNER_ID
| language: php
php:
- "5.5"
- "5.4"
- "5.6"
- "7.0"
- "7.1"
script:
- ./setup.sh ~/kaltura/cli https://www.kaltura.com $PARTNER_ID $ADMIN_SECRET && ./tests/sanity.sh ~/kaltura/cli $PARTNER_ID
| Add PHP versions to test matrix | Add PHP versions to test matrix
| YAML | agpl-3.0 | kaltura/KalturaGeneratedAPIClientsCLI,kaltura/KalturaGeneratedAPIClientsCLI |
dc33c41af6bdeac7bbe5060d115ac08cf0a66e74 | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.3
- 1.2
- release
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
install:
- export LD_LIBRARY_PATH="/usr/local/lib"
- cd $HOME... | language: go
go:
- 1.4
- 1.3
- 1.2
- release
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
install:
- export LD_LIBRARY_PATH="/usr/local/lib"
- cd $HOME... | Fix typo: test -> unittest | Fix typo: test -> unittest
| YAML | mit | r9y9/gossp,r9y9/gossp |
bf6f09ee024b9790b794fc646c8e1e5c29d73ed8 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4"
- "5"
cache:
directories:
- node_modules
after_script:
npm run coveralls
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4"
- "5"
after_script:
npm run coveralls
| Update travsi build, disable caching | Update travsi build, disable caching
| YAML | isc | mcollina/fastseries |
72edacd877f59c2f471b2366d60d0fb051734aed | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.10"
before_install:
- "export CHROME_BIN=/usr/bin/google-chrome"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
before_script:
- npm install
script:
- gulp test
- gulp coverage
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
notifications:
slac... | language: node_js
node_js:
- "5.10"
before_install:
- "export CHROME_BIN=/usr/bin/google-chrome"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
before_script:
- npm install
script:
- gulp build
- gulp test
- gulp coverage
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
notifi... | Make Travis to deploy built files for tags | Make Travis to deploy built files for tags
See https://docs.travis-ci.com/user/deployment/releases
| YAML | mit | potatopeelings/Chart.js,rvaidya/Chart.js,ldwformat/Chart.js,simonbrunel/Chart.js,el-ee/Chart.js,rvaidya/Chart.js,chartjs/Chart.js,touletan/Chart.js,ritesrnjn/charts,ritesrnjn/charts,jtcorbett/Chart.js,amir-hadzic/Chart.js,supernovel/Chart.js,supernovel/Chart.js,bokysan/Chart.js,avlcodemonkey/Chart.js,salzhrani/Chart.js... |
6b76067d5aee19d68f6e5bfda12e9db28241729e | .travis.yml | .travis.yml | # .travis.yml
language: ruby
cache:
bundler: true
apt: true
services:
- redis-server
rvm:
- 2.3.1
before_install:
- gem update --system
- gem install bundler
- sudo apt-get update
- sudo apt-get install -y sphinxsearch
script:
- RAILS_ENV=test bin/rake db:drop db:create db:schema:load ts:configure
-... | # .travis.yml
language: ruby
cache:
bundler: true
apt: true
services:
- redis-server
rvm:
- 2.3.1
before_install:
- gem update --system
- gem install bundler
- sudo apt-get update
- sudo apt-get install -y sphinxsearch
script:
- RAILS_ENV=test bin/rake db:drop db:create db:schema:load ts:configure
-... | Remove unnecessary statement in Travis setup | Remove unnecessary statement in Travis setup
| YAML | agpl-3.0 | alabs/nolotiro.org,alabs/nolotiro.org,alabs/nolotiro.org,alabs/nolotiro.org |
68872ad66773624e8204529f222d551f94951e17 | .travis.yml | .travis.yml | language: rust
rust:
- nightly
- beta
- stable
after_success:
- |
test ${TRAVIS_PULL_REQUEST} == "false" && \
test ${TRAVIS_BRANCH} == "master" && \
test "${TRAVIS_BUILD_NUMBER}.3" == "${TRAVIS_JOB_NUMBER}" && \
bash deploy.sh
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
after_success:
- |
test ${TRAVIS_PULL_REQUEST} == "false" && \
test ${TRAVIS_BRANCH} == "master" && \
test "${TRAVIS_BUILD_NUMBER}.1" == "${TRAVIS_JOB_NUMBER}" && \
bash deploy.sh
| Allow Travis-CI build failures for nightly | Allow Travis-CI build failures for nightly
| YAML | mit | telegram-rs/telegram-bot,White-Oak/telegram-bot,LukasKalbertodt/telegram-bot |
8cf59f52576739e6bf23e38cd579b7c233d48740 | .travis.yml | .travis.yml | language: php
cache:
directories:
- vendor
matrix:
include:
- php: 5.3
env: PHP_VER=5
- php: 5.4
env: PHP_VER=5
- php: 5.5
env: PHP_VER=5
- php: 5.6
env: PHP_VER=5
- php: 7.0
env: PHP_VER=7
- php: hhvm
env: PHP_VER=hhvm
- php: nightly
env: PH... | language: php
cache:
directories:
- vendor
matrix:
include:
- php: 5.3
env: PHP_VER=5
- php: 5.4
env: PHP_VER=5
- php: 5.5
env: PHP_VER=5
- php: 5.6
env: PHP_VER=5
- php: 7.0
env: PHP_VER=7
- php: hhvm
env: PHP_VER=hhvm
- php: nightly
env: PH... | Remove hhvm from allowed_failures in Travis CI | Remove hhvm from allowed_failures in Travis CI
| YAML | mit | dyweb/redis-cache,dyweb/redis-cache |
f6c2fee541b934d1411b12213b5ffc1a1817afe1 | .travis.yml | .travis.yml | language: go
matrix:
include:
- go: "1.10.x"
script: go test -v ./...
- go: "1.11.x"
script: go test -v -mod=vendor ./...
env:
- GO111MODULE=on
install: true
after_success:
# Check for updated CloudFormation resources, and submit a PR
- test "${TRAVIS_EVENT_TYPE}" = "cron" && ./generate/... | language: go
matrix:
include:
- go: "1.10.x"
script: go test -v ./...
- go: "1.11.x"
script: go test -v -mod=vendor ./...
env:
- GO111MODULE=on
install: true
after_success:
# Check for updated CloudFormation resources, and submit a PR
- test "${TRAVIS_EVENT_TYPE}" = "cron" && ./generate/... | Update TravisCI configuration for semantic-release to use jobs | fix(CI): Update TravisCI configuration for semantic-release to use jobs
| YAML | apache-2.0 | PaulMaddox/goformation,PaulMaddox/goformation,PaulMaddox/goformation,PaulMaddox/goformation |
f797a1313c6628409a6d2c5ea5f46de884559685 | .travis.yml | .travis.yml | language: erlang
env:
global:
- PLATFORM=linux
- LUAROCKS_VER=2.1.0
matrix:
- LUA=lua5.1 LUA_SFX=
- LUA=lua5.2 LUA_SFX=
- LUA=luajit LUA_SFX=jit
branches:
only:
- master
before_install:
- bash .travis/setup_lua.sh
- sudo pip install cpp-coveralls
install:
- su... | language: erlang
env:
global:
- PLATFORM=linux
- LUAROCKS_VER=2.1.0
matrix:
- LUA=lua5.1 LUA_SFX=
- LUA=lua5.2 LUA_SFX=
- LUA=luajit LUA_SFX=jit
branches:
only:
- master
before_install:
- bash .travis/setup_lua.sh
- sudo pip install cpp-coveralls
install:
- su... | Use my fork of LuaCov | Use my fork of LuaCov
| YAML | mit | ignacio/lua-travis-example,moteus/lua-travis-example,xpol/lua-travis-example,ignacio/lua-travis-example,moteus/lua-travis-example,daurnimator/lua-travis-example,istr/lua-travis-example,starius/lua-travis-example,daurnimator/lua-travis-example,istr/lua-travis-example,xpol/lua-travis-example,starius/lua-travis-example |
437b7d9e26f603c8b381437cb9a1d48f2223f577 | .travis.yml | .travis.yml | # Travis-CI Build for libadt
# see travis-ci.org for details
language: c
compiler:
- gcc-4.9
- clang
os:
- linux
env:
global:
- SECRET_TOKEN=rPPjmuNMjbdspnrrTxqf
branches:
only:
- master
before_script:
- make clean
script:
- make
- make tests
- make vg_tests
after_success:
- bash <(cu... | # Travis-CI Build for libadt
# see travis-ci.org for details
language: c
compiler:
- gcc-4.9
- clang
os:
- linux
env:
global:
- SECRET_TOKEN=rPPjmuNMjbdspnrrTxqf
branches:
only:
- master
before_script:
- make clean
script:
- make
- make tests
- make vg_tests
after_success:
- bash <(cu... | Add valgrind installation to TravisCI test. | Add valgrind installation to TravisCI test.
| YAML | mit | vndmtrx/libadt |
61921aae1a6f98601db6904aae596237f4189767 | .travis.yml | .travis.yml | language: node_js
sudo: false
dist: trusty
before_script:
- node script/create-test-tables.js pg://postgres@127.0.0.1:5432/postgres
env:
- CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres
matrix:
include:
- node_js: "4"
addons:
postgresql: "9.6"
- node_js: "5"
... | language: node_js
sudo: false
dist: trusty
before_script:
- node script/create-test-tables.js pg://postgres@127.0.0.1:5432/postgres
env:
- CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres
matrix:
include:
- node_js: "4"
addons:
postgresql: "9.6"
- node_js: "5"
... | Add node 8.x to Travis-CI matrix | Add node 8.x to Travis-CI matrix
| YAML | mit | brianc/node-postgres,brianc/node-postgres,cricri/node-postgres |
a67ca6c4e5e59452f9716095ba6bf3251bdf912e | .travis.yml | .travis.yml | language: php
php:
- 7.2
- 7.3
- 7.4
matrix:
include:
- php: 7.2
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
script:
- vendor/bin/phpunit
- vendor/bin/phpcs --st... | language: php
php:
- 7.2
- 7.3
- 7.4
matrix:
include:
- php: 7.2
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
script:
- vendor/bin/phpunit
- vendor/bin/phpcs src ... | Correct which PHPCS code standard to use | Correct which PHPCS code standard to use
| YAML | mit | thephpleague/tactician-doctrine |
58f9c8c48fc881b9d0894342dadc4298e539d406 | .travis.yml | .travis.yml | ---
branches:
only:
- master
language: ruby
bundler_args: --without development
script: bundle exec rake spec SPEC_OPTS='--format documentation'
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
matrix:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPE... | ---
language: ruby
bundler_args: --without development
script: bundle exec rake spec SPEC_OPTS='--format documentation'
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
matrix:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
- ... | Allow Travis to run on non-master branches | Allow Travis to run on non-master branches
| YAML | apache-2.0 | aaam/puppetlabs-reboot,puppetlabs/puppetlabs-reboot,cyberious/puppetlabs-reboot,puppetlabs/puppetlabs-reboot,ferventcoder/puppetlabs-reboot,cyberious/puppetlabs-reboot,ferventcoder/puppetlabs-reboot,aaam/puppetlabs-reboot |
63018b47adf7b24cdcf181d235bb9aab0f0a9837 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
- pip install coveralls
script:
make test
after_success:
coveralls | language: python
python:
- "2.7"
- "3.6"
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
- pip install coveralls
script:
make test
after_success:
coveralls
| Test on python 3.6 too | Test on python 3.6 too
| YAML | mit | vrcmarcos/elasticmock |
2e891be530b175c95d7ef4a1c4b3d6d1aa52210b | .travis.yml | .travis.yml | language: cpp
dist: trusty
sudo: required
before_install:
- sudo apt-get install unixodbc unixodbc-dev
script:
- mkdir build && cd build && cmake .. && make -j4 | language: cpp
dist: trusty
sudo: required
before_install:
- sudo apt-get install unixodbc unixodbc-dev
- sudo apt-get install libboost-all-dev
script:
- mkdir build && cd build && cmake .. && make -j4 | Add boost to build requirements | Add boost to build requirements
| YAML | mit | blue-yonder/turbodbc,blue-yonder/turbodbc,blue-yonder/turbodbc,blue-yonder/turbodbc |
e78424022c91beae4895f2fcfb5156c84aebe974 | .travis.yml | .travis.yml | language: node_js
node_js:
- 6
services:
- memcached
after_success:
- './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'
| language: node_js
node_js:
- 6
- 8
- 10
services:
- memcached
after_success:
- './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'
| Test on Node 8 and 10 too. | Test on Node 8 and 10 too.
| YAML | mit | ysugimoto/node-memcached-client |
e1f26efc6abc69a76872e1d6911854a2a2df95ef | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm: 2.2
env:
global:
- secure: "fYE4XBc2dUJxu51JfH8Mj6WDN5qy3xGkn4PrXF0I2rcoBpU8kGEjIpmbirh3yjykFX4VlMbyL4bO9rRAu/twwtMu0IEsrPWnzcTdjz6yvqAyIlbcOMpvSzUIOSbi2XtVP0QzC6BcQ4AV2gGgXONC8O3vEd1vW3U2FysyI4d5HBE="
install:
- bundle install
- curl -s https://raw.githubusercontent.com/paul... | sudo: false
language: ruby
rvm: 2.2
env:
global:
- secure: "fYE4XBc2dUJxu51JfH8Mj6WDN5qy3xGkn4PrXF0I2rcoBpU8kGEjIpmbirh3yjykFX4VlMbyL4bO9rRAu/twwtMu0IEsrPWnzcTdjz6yvqAyIlbcOMpvSzUIOSbi2XtVP0QzC6BcQ4AV2gGgXONC8O3vEd1vW3U2FysyI4d5HBE="
jdk:
- oraclejdk8
install:
- bundle install
- curl -s https://raw.githu... | Use JDK8 for tut in Travis, hopefully. | Use JDK8 for tut in Travis, hopefully.
| YAML | mit | typelevel/typelevel.github.com,typelevel/typelevel.github.com,melrief/typelevel.github.com,melrief/typelevel.github.com,melrief/typelevel.github.com,typelevel/typelevel.github.com,melrief/typelevel.github.com |
f72dc9812c2657583aa884c612cefe01489f2a11 | .travis.yml | .travis.yml | language: php
sudo: false
before_install:
- composer self-update
install: travis_retry composer install
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
allow_failures:
- php: 7.0
before_script:
- [[ ... | language: php
sudo: false
before_install:
- composer self-update
install: travis_retry composer install
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
include:
- php: 5.4
env: 'COMPOSER_FLAGS="... | Add lowest PHP version with lowest possible dependencies | Add lowest PHP version with lowest possible dependencies
| YAML | mit | kreait/php-boilerplate |
79f6490928210bf668d0f1df3142b9574ab7b5b0 | .travis.yml | .travis.yml | language: python
python:
- "3.2"
install:
- sudo apt-get install python3-nose
script: nosetests3
notifications:
email: false
| language: python
services:
- redis-server
python:
- "3.2"
install:
- sudo apt-get install python3-nose
script: nosetests3
notifications:
email: false
| Add redis database for testing pub/sub | Add redis database for testing pub/sub
| YAML | isc | sieben/pycolo |
91a67a628f76f1e8b6870953fbad802b6bc22b5d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
# whitelist
branches:
only:
- master
notifications:
email:
- kempdogg@gmail.com
| sudo: false
language: node_js
node_js:
- '8'
- '6'
- '4'
# whitelist
branches:
only:
- master
notifications:
email:
- kempdogg@gmail.com
| Update node versions in CI. | Update node versions in CI.
| YAML | mit | jonkemp/qunit-phantomjs-runner |
6f3081befd47dc6c57e39afd84f30a6589231576 | .travis.yml | .travis.yml | language: ruby
rvm:
# TODO reenable ruby-head when issues sorted out
# - ruby-head
- jruby-head
# - "1.8.7"
- "1.9.3"
# - jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
# - rbx-18mode
- rbx-19mode
# uncomment this line if your project needs to run something other than `rake`:
# sc... | language: ruby
rvm:
# TODO reenable ruby-head when issues sorted out
# - ruby-head
- jruby-head
# - "1.8.7"
- "1.9.3"
# - jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
# - rbx-18mode
# - rbx-19mode
# uncomment this line if your project needs to run something other than `rake`:
# ... | Remove expired rbx targets from Travis CI | Remove expired rbx targets from Travis CI
| YAML | mit | nikhaldi/exception_notification-rake |
030d324f11763ef48ca0a7c1383505b828bf654b | .travis.yml | .travis.yml | dist: trusty
language: ruby
sudo: required
cache: bundler
bundler_args: --without tools
script: 'bundle exec rake spec'
after_success:
- '[ -d coverage ] && bundle exec codeclimate-test-reporter'
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.12.0
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
- COVERAGE='... | dist: trusty
language: ruby
sudo: required
cache: bundler
bundler_args: --without tools
before_script: gem update --system
script: 'bundle exec rake spec'
after_success:
- '[ -d coverage ] && bundle exec codeclimate-test-reporter'
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- 2.5.0
- jruby-9.1.12.0
env:
global:
- JR... | Add Ruby 2.5 to CI matrix | Add Ruby 2.5 to CI matrix
| YAML | mit | solnic/transproc |
7eb9bbe20913d416242bba66ec6eeb904582de7b | .travis.yml | .travis.yml | notifications:
email: false
irc:
channels:
- "irc.mysociety.org#pmo"
use_notice: true
language: python
env:
- MODULES="Django>=1.6,<1.7"
install:
- sudo apt-get update -qq
- sudo apt-get install python-virtualenv curl yui-compressor
- gem install --no-ri --no-rdoc compass -v 0.12.7
- gem ... | notifications:
email: false
irc:
channels:
- "irc.mysociety.org#pmo"
use_notice: true
language: python
env:
- MODULES="Django>=1.6,<1.7"
install:
- sudo apt-get update -qq
- sudo apt-get install python-virtualenv curl yui-compressor
- gem install --no-ri --no-rdoc compass -v 0.12.7
- gem ... | Remove the unnecessary run of migrations | Remove the unnecessary run of migrations
Thanks to @dracos for pointing out that this isn't needed.
| YAML | agpl-3.0 | openstate/yournextrepresentative,openstate/yournextrepresentative,datamade/yournextmp-popit,openstate/yournextrepresentative,mysociety/yournextrepresentative,DemocracyClub/yournextrepresentative,mysociety/yournextrepresentative,YoQuieroSaber/yournextrepresentative,datamade/yournextmp-popit,YoQuieroSaber/yournextreprese... |
eecb28c6e55e1d9d835d9c49284bf86c12d0f97b | .travis.yml | .travis.yml | language: go
before_install:
- REPO_NAME=$(basename $PWD)
- GITHUB_PATH=$(dirname $(dirname $PWD))
- SYMANTEC_PROJECT_DIR=${GITHUB_PATH}/Symantec/${REPO_NAME}
- mkdir -p ${SYMANTEC_PROJECT_DIR}
- rsync -az ${TRAVIS_BUILD_DIR}/ ${SYMANTEC_PROJECT_DIR}/
- export TRAVIS_BUILD_DIR=${SYMANTEC_PROJECT_DIR}
- cd ${SYMANTEC_PR... | language: go
before_install:
- REPO_NAME=$(basename $PWD)
- GITHUB_PATH=$(dirname $(dirname $PWD))
- SYMANTEC_PROJECT_DIR=${GITHUB_PATH}/Symantec/${REPO_NAME}
- mkdir -p ${SYMANTEC_PROJECT_DIR}
- rsync -az ${TRAVIS_BUILD_DIR}/ ${SYMANTEC_PROJECT_DIR}/
- export TRAVIS_BUILD_DIR=${SYMANTEC_PROJECT_DIR}
- cd ${SYMANTEC_PR... | Fix broken build with breaking changes from go.uber.org/zap | Fix broken build with breaking changes from go.uber.org/zap
| YAML | apache-2.0 | Symantec/proxima,Symantec/proxima |
ce8409f6dfa5ec345178ac44719f42c0d4491a5f | .travis.yml | .travis.yml | language: ruby
sudo: false
before_install: gem update --system 3.0.2
rvm:
- 2.3.8
- 2.4.5
- 2.5.5
- 2.6.2
- jruby-9.1.17.0
- jruby-9.2.6.0
branches:
only:
- master
cache: bundler
| language: ruby
sudo: false
before_install: gem update --system 3.0.3
rvm:
- 2.3.8
- 2.4.5
- 2.5.5
- 2.6.2
- jruby-9.1.17.0
- jruby-9.2.6.0
branches:
only:
- master
cache: bundler
| Use latest rubygems in CI | Use latest rubygems in CI
| YAML | mit | activeadmin/arbre,activeadmin/arbre |
e9c8d89a50b3e2bd06087157920d8e5f49aed3c5 | .travis.yml | .travis.yml | sudo: false
language: python
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
env:
- PARSER=native
addons:
apt:
packages:
- mediainfo
- ffmpeg
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
before_install:
- pip install --upgrade... | sudo: false
language: python
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9
env:
- PARSER=native
addons:
apt:
packages:
- mediainfo
- ffmpeg
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
before_install:
- pip i... | Add Python 3.8, and 3.9 to classifiers | Add Python 3.8, and 3.9 to classifiers
| YAML | mit | ratoaq2/knowit |
63c10ace80e48487446f7687269f0636f3cb94aa | .travis.yml | .travis.yml | language: ruby
os:
- linux
- osx
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
matrix:
exclude:
- os: osx
rvm: 2.3.0
addons:
apt:
packages:
- libkrb5-3
- libkrb5-26-heimdal
cache:
- bundler
- apt
script: bundle exec bash run_tests.sh | language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
addons:
apt:
packages:
- libkrb5-3
- libkrb5-26-heimdal
cache:
- bundler
- apt
script: bundle exec bash run_tests.sh | Revert "Add OS X to Travis" | Revert "Add OS X to Travis"
This reverts commit 1b1f6629ad1fa82a9e7edf3f72e9c44becf4e21b.
| YAML | mit | stupidpupil/kerberos_authenticator,stupidpupil/kerberos_authenticator |
82d63cc084334462f26a1b84b7aba6ac3b247d91 | .travis.yml | .travis.yml | before_install:
- gem update bundler
rvm:
- 2.2.0
- 2.3.0
- rbx
| before_install:
- gem update bundler
rvm:
- 2.2.0
- 2.3.0 | Remove rbx ruby version for ci | Remove rbx ruby version for ci
| YAML | mit | hhorikawa/omniauth-openid-connect |
0a3c4b60b82f79c18e897bc4d61ab5299a0c86fa | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1404
- INSTANCE=defau... | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1604
- INSTANCE=defau... | Remove Ubuntu 14.04 testing for 18.04 | Remove Ubuntu 14.04 testing for 18.04
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/ubuntu,chef-cookbooks/ubuntu,opscode-cookbooks/ubuntu,opscode-cookbooks/ubuntu |
7308174c6cfe59c10b6f3145144d655a8fd8ced7 | .travis.yml | .travis.yml | language: android
sudo: required
android:
components:
- tools
- build-tools-23.0.3
- android-23
- extra
before_install:
- git clone https://github.com/urho3d/android-ndk.git $HOME/android-ndk-root
- export ANDROID_NDK_HOME=$HOME/android-ndk-root
before_script:
- echo no | android create avd -... | language: android
sudo: required
android:
components:
- tools
- build-tools-24.0.0
- android-24
- extra
before_install:
- git clone https://github.com/urho3d/android-ndk.git $HOME/android-ndk-root
- export ANDROID_NDK_HOME=$HOME/android-ndk-root
before_script:
- echo no | android create avd -... | Update build tools to sdk 24 | Update build tools to sdk 24
| YAML | apache-2.0 | requery/sqlite-android,requery/sqlite-android,requery/sqlite-android |
5869ce037a4d6359eeb9baf34ab06883e47ab439 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.5
env:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django --pre"
install:
- pip install -q $DJANGO coveralls
script:
- coverage run --source=axes runtests.py
- coverage report
after_success:
- coveralls
deploy:
provider: pypi
user: jazzband
distributions: ... | language: python
python:
- 2.7
- 3.5
env:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
install:
- pip install -q $DJANGO coveralls
script:
- coverage run --source=axes runtests.py
- coverage report
after_success:
- coveralls
deploy:
provider: pypi
user: jazzband
distribut... | Add Django 1.10 to test matrix | Add Django 1.10 to test matrix
| YAML | mit | django-pci/django-axes,jazzband/django-axes |
804961c7da0e96865b40dca1dba802799e6173b1 | .travis.yml | .travis.yml | language: php
node_js:
- 0.12
php:
- 7.0
- 7.1
- 7.2
matrix:
fast_finish: true
include:
- php: 7.2
env: SYMFONY_VERSION=3.3.*
- php: 7.2
env: SYMFONY_VERSION=3.4.*
- php: 7.2
env: SYMFONY_VERSION=4.0.*
before_install:
- composer selfupdate
- if [ "$SYMFONY_VERSION" != "... | language: php
node_js:
- 0.12
php:
- 7.0
- 7.1
- 7.2
matrix:
fast_finish: true
include:
- php: 7.2
env: SYMFONY_VERSION=2.8.*
- php: 7.2
env: SYMFONY_VERSION=3.3.*
- php: 7.2
env: SYMFONY_VERSION=3.4.*
- php: 7.2
env: SYMFONY_VERSION=4.0.*
before_install:
- comp... | Add Symfony 2.8 to Travis testing matrix. | Add Symfony 2.8 to Travis testing matrix.
| YAML | mit | hshn/base64-encoded-file |
657ad83c29a2145ca1f625bf8fc25f7cd6e3b624 | .travis.yml | .travis.yml | language: rust
rust:
- nightly
cache: cargo
before_script:
- (cargo install xargo || true)
- (cargo install rustfmt || true)
- PATH=$PATH:~/.cargo/bin
sudo: false
notifications:
on_success: never
on_failure: change
addons:
apt:
packages:
- nasm
script: bash scripts... | language: rust
rust:
- nightly
cache: cargo
install:
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
- source ~/.cargo/env
- rustup component add rust-src
- (cargo install xargo || true)
- (cargo install rustfmt || true)
sudo: false
notifications:
on_success: ... | Fix CI for Xargo 0.2.0 | Fix CI for Xargo 0.2.0
| YAML | mit | ESALP/ESALP-1,ESALP/ESALP-1 |
24188f1686a966c2e94f58b54360770e523f523d | .travis.yml | .travis.yml | # NB: don't set `language: haskell` here
# The following enables several GHC versions to be tested; often it's
# enough to test only against the last release in a major GHC version. Feel
# free to omit lines listings versions you don't need/want testing for.
env:
- GHCVER=7.8.2 # see note about Alex/Happy
# Note: t... | language: haskell
before_install:
# Instructions taken from https://github.com/commercialhaskell/stack/wiki/Downloads
- wget -q -O- http://download.fpcomplete.com/ubuntu/fpco.key | sudo apt-key add -
- echo 'deb http://download.fpcomplete.com/ubuntu/precise stable main' | sudo tee /etc/apt/sources.list.d/fpco.li... | Use stack to build on Travis CI | Use stack to build on Travis CI
| YAML | mit | cawinkelmann/api-server,bendyworks/api-server,twopoint718/api-server |
91f4cd928b971ca2949e91cc5b12ff4d8a1ba9fd | .travis.yml | .travis.yml | language: c
sudo: required
service: docker
install:
- wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-docker.sh
- cp mocks/mock.ml lib/nvml.ml
- cp mocks/mock.c stubs/nvml_stubs.c
script: bash -ex .travis-docker.sh
env:
global:
- PACKAGE=gpumon
- PINS="gpumon:."
- BAS... | language: c
sudo: required
service: docker
install:
- wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-docker.sh
- cp mocks/mock.ml lib/nvml.ml
- cp mocks/mock.c stubs/nvml_stubs.c
script: bash -ex .travis-docker.sh
env:
global:
- PACKAGE=gpumon
- PINS="gpumon:."
- BAS... | Use OCaml 4.07 for Travis | Use OCaml 4.07 for Travis
Signed-off-by: Christian Lindig <4f88b50bc9dba63c9a7d9e208d4b3ac6f1a52800@citrix.com>
| YAML | isc | xenserver/gpumon |
2fb141cd905e727447da23b1ac7f3e37308f36c3 | .travis.yml | .travis.yml | language: Objective-C
osx_image: xcode8
before_install:
- bundle
- pod install --project-directory=PPEventRegistryAPI
notifications:
email: false
script:
- xcodebuild build test -workspace "PPEventRegistryAPI/PPEventRegistryAPI.xcworkspace" -scheme "PPEventRegistry" -sdk iphonesimulator -destination "platform=iOS... | language: Objective-C
osx_image: xcode8
before_install:
- bundle
- pod install --project-directory=PPEventRegistryAPI
notifications:
email: false
script:
- xcodebuild build test -workspace "PPEventRegistryAPI/PPEventRegistryAPI.xcworkspace" -scheme "PPEventRegistry" -sdk iphonesimulator -destination "platform=iOS... | Add CODE_SIGN_IDENTITY and CODE_SIGNING_REQUIRED to Travis config | Add CODE_SIGN_IDENTITY and CODE_SIGNING_REQUIRED to Travis config
| YAML | mit | pantuspavel/PPEventRegistryAPI,pantuspavel/PPEventRegistryAPI,pantuspavel/PPEventRegistryAPI |
349dbb1523dec2df3ad3af5eb1bc70645cbf4af0 | .travis.yml | .travis.yml | sudo: required
os:
- linux
language: php
php:
- 7.0
- 7.1
- 7.2
services:
- docker
install:
- composer install
- docker-compose up -d | sudo: required
os:
- linux
language: php
php:
- 7.0
- 7.1
- 7.2
services:
- docker
install:
- composer install
- docker-compose up -d
script: phpunit --configuration phpunit.xml --debug | Add the debug line to phpunit. | Add the debug line to phpunit.
| YAML | apache-2.0 | pact-foundation/pact-php,pact-foundation/pact-php |
013b247f99f74855884a6a558b0714a24e500db0 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
install:
- pip install rply
- pip install coveralls
script:
coverage run test.py
after_success:
coveralls
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/b81f9ec6e179a91aaca0
on_success: change
on_failure: always
on_start: fals... | language: python
sudo: false
python:
- "2.7"
install:
- pip install rply
- pip install coveralls
script:
make coverage
after_success:
coveralls
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/b81f9ec6e179a91aaca0
on_success: change
on_failure: always
on_start: false
| Make Travis use the Makefile | Make Travis use the Makefile
| YAML | mit | djc/runa,djc/runa,djc/runa,djc/runa |
08ad586482caa3330b56a6610ceb08a664d437c9 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- 2.6
- 2.7
cache:
pip: true
directories:
- $HOME/perl5
install:
- export PERL5LIB=~/perl5/lib/perl5
- export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages)
- export PATH=~/perl5/bin:$PATH
- pip install coverage
- curl -L https://cpa... | sudo: false
language: python
matrix:
include:
- dist: trusty
python: 2.6
- dist: xenial
python: 2.7
addons:
apt:
packages:
- scons
cache:
pip: true
install:
- export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages)
- pip install coverage flask
- git clon... | Update for latest Travis, remove Perl | Update for latest Travis, remove Perl
| YAML | lgpl-2.1 | salilab/cryptosite-web,salilab/cryptosite-web |
609ea32e1a1f1dd340ba48dcdd31473f8b8ec201 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.8"
| language: node_js
node_js:
- "0.10"
- "0.12"
| Change node version number in CI config | Change node version number in CI config
| YAML | mit | katiefenn/parker,tzi/parker,joshuacc/parker,tpgmartin/parker,researchgate/parker,seanislegend/parker |
fa9ab5dc416e39a3b90e898e8798862e1d1c9375 | .travis.yml | .travis.yml | language: go
os:
- linux
- osx
go:
# 1.12 is no longer supported by apimachinery; we recommend 1.13
- "1.13"
- "1.14"
go_import_path: k8s.io/kops
script:
- GOPROXY=https://proxy.golang.org make nodeup examples test
jobs:
# Exclude GO 1.14 for OSX until it becomes the default because of limited availabi... | language: go
os:
- linux
- osx
go:
# 1.12 is no longer supported by apimachinery; we recommend 1.13
- 1.13.x
- 1.14.x
go_import_path: k8s.io/kops
script:
- GOPROXY=https://proxy.golang.org make nodeup examples test
jobs:
# Exclude GO 1.14 for OSX until it becomes the default because of limited availabi... | Use latest patch version for GO in tests | Use latest patch version for GO in tests
| YAML | apache-2.0 | justinsb/kops,kubernetes/kops,kubernetes/kops,justinsb/kops,justinsb/kops,kubernetes/kops |
a72279b897111c3be5f9d721e5509c9a24136bf7 | .travis.yml | .travis.yml | cache: bundler
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3.0
script: bundle exec rake
notifications:
email: false
sudo: false
git:
depth: 10
| cache: bundler
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3.0
- 2.4.1
script: bundle exec rake
notifications:
email: false
sudo: false
git:
depth: 10
| Add Ruby 2.4.1 to the Travis build matrix | Add Ruby 2.4.1 to the Travis build matrix
We may as well have the most recent version of Ruby in here as well.
| YAML | mit | brandur/json_schema |
2f893eb24b0f6704ec9a543cc4ac13ba1f03ca5e | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
matrix:
fast_finish: true
include:
- php: 7.0
env: PHPCS=1
- php: 7.0
env: COVERAGE=1
before_script:
- phpenv rehash
install:
- composer self-update
- composer install --prefer-dist --no-interaction --dev
script:
- sh -c "if [ '$PHPCS' !=... | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
matrix:
fast_finish: true
include:
- php: 7.3
env: PHPCS=1
- php: 7.3
env: COVERAGE=1
before_script:
- phpenv rehash
install:
- composer self-update
- composer install --prefer-dist --no-interaction --dev
script:
- sh -c "... | Add PHP 7.2 and 7.3 builds | Add PHP 7.2 and 7.3 builds
| YAML | mit | markstory/asset_compress,markstory/asset_compress,markstory/asset_compress |
012389cc3d00d45b154be3651d9502e51f81e51f | .travis.yml | .travis.yml | language: python
dist: trusty
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
services:
- docker
before_script:
# @see https://medium.com/@mtparet/install-mysql-server-5-7-on-travis-96f2ebc0f339
# @see https://hub.docker.com/_/mysql/
- sudo docker run -e MYSQL_ALLOW_EMPTY_PASSWORD=yes -d -p 3306:3306 ... | language: python
dist: trusty
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
services:
- docker
before_script:
# @see https://medium.com/@mtparet/install-mysql-server-5-7-on-travis-96f2ebc0f339
# @see https://hub.docker.com/_/mysql/
- sudo service mysql stop # stop any running MySQL server
- sudo ... | Stop the current MySQL server instance | Stop the current MySQL server instance
| YAML | mit | macbre/index-digest,macbre/index-digest |
472bbe8375f6243421fd9491c6af2841f4349bde | .travis.yml | .travis.yml |
language: c
git:
depth: 3
dist:
trusty
branches:
only:
- master
- dev
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq check
matrix:
include:
- compiler: gcc
env: ENABLE_COVERAGE=--enable-gcov
after_success:
- coveralls --exclude tests --exclud... |
language: c
git:
depth: 3
dist:
trusty
branches:
only:
- master
- dev
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq check
matrix:
include:
## Coverage test
- compiler: gcc
env: ENABLE_COVERAGE=--enable-gcov
before_install: pip install --user cpp... | Fix errors in Travis-CI config. | Fix errors in Travis-CI config.
| YAML | mit | JoaoRodrigues/freesasa,mittinatten/freesasa,JoaoRodrigues/freesasa,JoaoRodrigues/freesasa,mittinatten/freesasa,JoaoRodrigues/freesasa,mittinatten/freesasa,mittinatten/freesasa |
dae0f3f8631b59a105ba6d6c1d61b83e2c944af5 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.8"
- "2.2.4"
- "2.3.0"
- "jruby-19mode"
- "rbx"
gemfile:
- "gemfiles/capistrano2.gemfile"
- "gemfiles/capistrano3.gemfile"
- "gemfiles/no_dependencies.gemfile"
- "gemfiles/padrino.gemfile"
- "gemfiles/rails-3.2.gemfile"
- "gemfiles/... | sudo: false
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.8"
- "2.2.4"
- "2.3.0"
- "jruby-19mode"
gemfile:
- "gemfiles/capistrano2.gemfile"
- "gemfiles/capistrano3.gemfile"
- "gemfiles/no_dependencies.gemfile"
- "gemfiles/padrino.gemfile"
- "gemfiles/rails-3.2.gemfile"
- "gemfiles/rails-4.0.... | Tweak Travis build for Rails 5 | Tweak Travis build for Rails 5
| YAML | mit | matrinox/appsignal-ruby,appsignal/appsignal-ruby,matrinox/appsignal-ruby,matrinox/appsignal-ruby,appsignal/appsignal-ruby,stijnster/appsignal-ruby,appsignal/appsignal,stijnster/appsignal-ruby,stijnster/appsignal-ruby,appsignal/appsignal-ruby,appsignal/appsignal-ruby,appsignal/appsignal |
a59db788a79813dd1c065007998c0f68e15f5fe0 | .travis.yml | .travis.yml | language: ruby
# This is going to enable build on VMs instead of containers
sudo: required
dist: trusty
cache:
bundler: true
directories:
- $HOME/.nvm/versions/node
rvm:
- 2.2.5
- 2.3.1
env:
- "DB=postgresql"
before_install:
- nvm install v6.7.0
- node -v
- npm -v
- npm install -g phantomjs-p... | language: ruby
# This is going to enable build on VMs instead of containers
sudo: required
dist: trusty
cache:
bundler: true
directories:
- $HOME/.nvm/versions/node
rvm:
- 2.2.5
- 2.3.1
env:
- "DB=postgresql"
before_install:
- nvm install v6.7.0
- node -v
- npm -v
- npm install -g phantomjs-p... | Update virtual screen on CI config file | Update virtual screen on CI config file
| YAML | agpl-3.0 | privatt/privatt-agile-tracker,privatt/privatt-agile-tracker,privatt/privatt-agile-tracker |
9d68eecfced1c8a188eba5466fd200cce6249a70 | .travis.yml | .travis.yml | language: python
sudo: required
services:
- cassandra
- redis-server
- mysql
- postgresql
dist: xenial # required for Python >= 3.7
python:
- "3.6"
- "3.7"
- "3.7-dev" # 3.7 development branch
- "3.8-dev" # 3.8 development branch
- "pypy3.5"
before_install:
- mysql -e 'CREATE DATABASE eventsou... | language: python
sudo: required
services:
- cassandra
- redis-server
- mysql
- postgresql
dist: xenial # required for Python >= 3.7
python:
- "3.6"
- "3.7"
- "3.7-dev" # 3.7 development branch
- "3.8-dev" # 3.8 development branch
- "nightly" # nightly build
before_install:
- mysql -e 'CREATE ... | Revert "Changed Travis config, to run tests with Python 3.7." | Revert "Changed Travis config, to run tests with Python 3.7."
This reverts commit 2b147375
| YAML | bsd-3-clause | johnbywater/eventsourcing,johnbywater/eventsourcing |
f3155c04c555ff0eb083fbe671dd2bd5e93dae2d | .travis.yml | .travis.yml | language: node_js
sudo: required
node_js:
- "4.4.3"
- "6.9.1"
services:
- docker
before_install:
- sudo apt-get update
- sudo apt-get install --assume-yes apache2-utils
- npm install -g npm@2.13.5
- npm install -g grunt-cli
- npm config set strict-ssl false
install: npm install
env:
- MONGODB_VERSION=... | language: node_js
sudo: required
node_js:
- 4
- 6
services:
- docker
before_install:
- sudo apt-get update
- sudo apt-get install --assume-yes apache2-utils
- npm install -g grunt-cli
- npm config set strict-ssl false
install: npm install
env:
- MONGODB_VERSION=2.4
- MONGODB_VERSION=3.2
script:
- gr... | Update CI process to use supported versions | Update CI process to use supported versions
| YAML | apache-2.0 | feedhenry/fh-mbaas-api,feedhenry/fh-mbaas-api |
75d6ddd451747801683bc5dd151e297b7025db74 | .travis.yml | .travis.yml | language: node_js
# https://github.com/nodejs/LTS
node_js:
- '7'
- '6'
- '4'
git:
depth: 5
cache:
directories:
- ~/.npm
before_install:
- npm config set spin false --global
script:
- if [[ "$TRAVIS_JOB_NUMBER" == *.1 ]]; then npm run lint && npm run check && npm run cover:lcov; else npm run testo... | language: node_js
# https://github.com/nodejs/LTS
node_js:
- '7'
- '6'
- '4'
git:
depth: 5
cache: yarn
before_install:
- npm config set spin false --global
script:
- if [[ "$TRAVIS_JOB_NUMBER" == *.1 ]]; then npm run lint && npm run check && npm run cover:lcov; else npm run testonly; fi
after_success:... | Use Yarn in CI cache | Use Yarn in CI cache
Should give us faster builds.
| YAML | mit | graphql/graphql-relay-js,graphql/graphql-relay-js |
2d0fd07bf83e7c0df3ae9c77a7f7241520cc84e2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
services:
- mongodb
env:
- NODE_ENV=test
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls" | language: node_js
node_js:
- "0.10"
services:
- mongodb
env:
- NODE_ENV=test
script: "npm run test-travis" | Remove automated coveralls script cause its getting annoying | Remove automated coveralls script cause its getting annoying
| YAML | bsd-3-clause | miraculixx/modeify,arunnair80/modeify-1,amigocloud/modified-tripplanner,tismart/modeify,tismart/modeify,arunnair80/modeify-1,arunnair80/modeify,amigocloud/modeify,amigocloud/modified-tripplanner,arunnair80/modeify,miraculixx/modeify,amigocloud/modified-tripplanner,amigocloud/modeify,amigocloud/modeify,miraculixx/modeif... |
c08a51f7379735c7ccac9ab12f5b68502e46f71c | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
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'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build on Travis CI with latest Node.js 6. | Build on Travis CI with latest Node.js 6.
| YAML | mit | bigeasy/staccato |
83febbb83261fe21bc6fa1ef301b55baea62aa27 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development --jobs 4
env:
- DB=postgresql
- DB=mysql
- DB=sqlite3
rvm:
- 2.0.0
- 2.1.6
- 2.2.2
before_script:
- sudo apt-get update -qq
- sudo apt-get install -qq imagemagick ghostscript
- psql -c 'CREATE DATABASE brimir_test;' -U postgres
- mysql -e 'create... | language: ruby
cache: bundler
bundler_args: --without development --jobs 4
sudo: false
addons:
apt:
packages:
- imagemagick
- ghostscript
env:
- DB=postgresql
- DB=mysql
- DB=sqlite3
rvm:
- 2.0.0
- 2.1.6
- 2.2.2
before_script:
- psql -c 'CREATE DATABASE brimir_test;' -U postgres
- ... | Use newer Travis container builds with caching | Use newer Travis container builds with caching
| YAML | agpl-3.0 | ivaldi/brimir,hadifarnoud/brimir,git-jls/brimir,paradime/brimir,himeshp/brimir,Gitlab11/brimir,Gitlab11/brimir,mbchandar/brimir,himeshp/brimir,viddypiddy/brimir,mbchandar/brimir,fiedl/brimir,Gitlab11/brimir,git-jls/brimir,viddypiddy/brimir,himeshp/brimir,paradime/brimir,ivaldi/brimir,hadifarnoud/brimir,Gitlab11/brimir,... |
e35ee6616c87cc97843aed1d8f92b3b7286abace | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2.2
- 2.3.0
- rbx
env:
- ACTIVERECORD=3.0.0
- ACTIVERECORD=3.1.0
- ACTIVERECORD=3.2.0
- ACTIVERECORD=4.0.0
- ACTIVERECORD=4.1.0
- ACTIVERECORD=4.2.0
- ACTIVERECORD=5.0.0
matrix:
exclude:
- rvm: 2.0
env: ACTIVERECORD=5.0.0... | sudo: false
language: ruby
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2.2
- 2.3.0
- 2.4.0
- rbx
env:
- ACTIVERECORD=3.0.0
- ACTIVERECORD=3.1.0
- ACTIVERECORD=3.2.0
- ACTIVERECORD=4.0.0
- ACTIVERECORD=4.1.0
- ACTIVERECORD=4.2.0
- ACTIVERECORD=5.0.0
matrix:
exclude:
- rvm: 2.0
env: ACTIVERE... | Add MRI 2.4.0 to Travis build matrix | Add MRI 2.4.0 to Travis build matrix
| YAML | mit | attr-encrypted/attr_encrypted,attr-encrypted/attr_encrypted |
5df9e87eae8400af60afd332d9aca84a6eae45a0 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.12'
before_install:
- 'npm install -g bower gulp typescript'
script:
- 'npm install && bower install && gulp build'
| sudo: false
language: node_js
node_js:
- '4.1'
before_install:
- 'npm install -g bower gulp typescript'
script:
- 'npm install && bower install && gulp build'
| Move the Travis-CI node.js version from 0.12.x version to 4.1.x version | Move the Travis-CI node.js version from 0.12.x version to 4.1.x version
| YAML | apache-2.0 | mtho11/hawkular-charts,mtho11/hawkular-charts,tsegismont/hawkular-charts,mtho11/hawkular-charts,ammendonca/hawkular-charts,hawkular/hawkular-charts,tsegismont/hawkular-charts,ammendonca/hawkular-charts,hawkular/hawkular-charts,hawkular/hawkular-charts,ammendonca/hawkular-charts,tsegismont/hawkular-charts |
c41fb111c47ca84095edeb0227968f1dc3bd94d0 | .travis.yml | .travis.yml | language: python
python: 2.7
install: pip install ply
script: python setup.py test
| language: python
python:
- 2.7
- 3.2
install: pip install ply
script: python setup.py test
| Add Python 3 to CI | Add Python 3 to CI
| YAML | bsd-3-clause | jiyuren/plyj,silverjam/plyj,Craxic/plyj,musiKk/plyj |
605dc593c9fcf2559c1145f269947508e6f3da5b | .travis.yml | .travis.yml | sudo: false
language: c
branches:
except:
- /^[0-9]+\.[0-9]+\.[0-9]$/
matrix:
include:
- os: linux
language: python
python: "2.6"
- os: linux
language: python
python: "2.7"
- os: linux
language: python
python: "3.2"
- os: linux
language: python
pyt... | sudo: false
language: c
branches:
except:
- /^[0-9]+\.[0-9]+\.[0-9]$/
matrix:
include:
- os: linux
dist: trusty
language: python
python: "2.6"
- os: linux
dist: bionic
language: python
python: "2.7"
- os: linux
dist: trusty
language: python
pytho... | Update to latest Travis CI config | Update to latest Travis CI config
| YAML | mit | wbond/certvalidator |
a10ea7055ef3259b63e588280863bd5a694111dd | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy2.7-6.0"
- "pypy3.5-6.0"
# command to install dependencies
install:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-py3.txt; else pip install -r requirements-py2.txt; fi
# command to run tests
script: nosetests tes... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
# command to install dependencies
install:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-py3.txt; else pip install -r requirements-py2.txt; fi
# command to run tests
script: nosetests tests
sudo: fals... | Use the pypy aliases to always match the default release for Travis CI | Use the pypy aliases to always match the default release for Travis CI
| YAML | mit | onyxfish/journalism,wireservice/agate,onyxfish/agate |
920c37ee1c80481df3730091b0f49430aa2d2b48 | .travis.yml | .travis.yml | language: node_js
node_js:
- '8'
- '6'
- '4'
script: npm test
notifications:
email: false
cache: yarn | language: node_js
node_js:
- '8'
- '6'
- '4'
script: npm test
notifications:
email: false
cache: yarn
addons:
chrome: stable
dist: trusty | Add headless chrome binary for tests to work | Add headless chrome binary for tests to work
| YAML | mit | mattlewis92/generator-angular-library,mattlewis92/generator-angular-library,mattlewis92/generator-angular-library |
f7d384d5746a33a86321d41fe52c8d0793f8ca81 | .travis.yml | .travis.yml | language: java
install: echo "do not execute installed gradle but gradle wrapper"
script:
- chmod 755 gradlew
- TERM=dumb ./gradlew test
jdk:
- oraclejdk7
- openjdk6
- openjdk7
| language: java
install: echo "do not execute installed gradle but gradle wrapper"
script:
- chmod 755 gradlew
- TERM=dumb ./gradlew test
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
| Enable JDK8 tests on Travis CI | Enable JDK8 tests on Travis CI
| YAML | apache-2.0 | Klortho/citeproc-java,michel-kraemer/citeproc-java,Klortho/citeproc-java |
f8a3e02afb82604fb38a57c6fa7e53f641082542 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- iojs
- "0.12"
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| Add support for iojs and node 0.12 | Add support for iojs and node 0.12
| YAML | mit | Rowno/grunt-mocha-cli |
77abff9ad60841dbcc53fcea46f194c5b8d44b72 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
fast_finish: true
before_install:
- travis_retry composer self-update
install:
- composer install --prefer-source
script: phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
-... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
fast_finish: true
before_install:
- travis_retry composer self-update
install:
- composer install --prefer-source
script: phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- i... | Use Ubuntu Trusty for Travis (HHVM tests) | Use Ubuntu Trusty for Travis (HHVM tests)
| YAML | isc | FlameCore/Gatekeeper |
85ac8c90b3195f2e9566a52d4932b758003505b6 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- ... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_ins... | Test with Node.js 5.1 on Travis CI. | Test with Node.js 5.1 on Travis CI.
| YAML | mit | bigeasy/hotspot,bigeasy/hotspot |
f9e0403d675dcd9f1c845ff7255b72d6092d00ad | .travis.yml | .travis.yml | language: php
sudo: false
php:
- "hhvm"
- "5.6"
- "5.5"
- "5.4"
install: composer install | language: php
sudo: false
php:
- "hhvm"
- "5.6"
- "5.5"
- "5.4"
install: composer install --prefer-source --no-interaction
cache:
directories:
- vendor | Add Composer caching to Travis builds. | Add Composer caching to Travis builds.
| YAML | mit | alanly/picnik |
34c0b92f0d4a2e437858054d82cb90452c6fd330 | .travis.yml | .travis.yml | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake --trace"
rvm:
- 2.0
- 2.1
- jruby
notifications:
irc: "irc.freenode.org#savon"
| # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake --trace"
rvm:
- 2.0
- 2.1
- 2.2
- jruby
notifications:
irc: "irc.freenode.org#savon"
| Test against ruby 2.2 on Travis CI | Test against ruby 2.2 on Travis CI
| YAML | mit | Eric-Guo/savon,savonrb/savon,oafridi/savon,zerobatu/savon,latortuga/savon,rtrepo/savon,SICSoftwareGmbH/savon,billr578/savon,enahum/savon |
6569c92d3c45c98dab0b8b70e35665fb294634ff | .travis.yml | .travis.yml | sudo: false
language: python
python:
- '2.7'
- '3.4'
env:
global:
- DB=postgres
- NOSE_NOLOGCAPTURE=True
matrix:
- DJANGO=">=1.7,<1.8"
- DJANGO=">=1.8,<1.9"
- DJANGO=">=1.9,<1.10"
install:
- pip install -q coveralls coverage flake8 Django$DJANGO django-nose>=1.4
- pip install -r requirem... | sudo: false
language: python
python:
- '2.7'
- '3.4'
addons:
postgresql: '9.5'
env:
global:
- DB=postgres
- NOSE_NOLOGCAPTURE=True
matrix:
- DJANGO=">=1.7,<1.8"
- DJANGO=">=1.8,<1.9"
- DJANGO=">=1.9,<1.10"
install:
- pip install -q coveralls coverage flake8 Django$DJANGO django-nose>=1.4... | Use postgresql 9.5 for testing | Use postgresql 9.5 for testing
| YAML | mit | jaredlewis/django-entity-history,ambitioninc/django-entity-history |
6bb5480b75e35d298422e5632f4cc851a8b9960b | .travis.yml | .travis.yml | language: haskell
before_install:
- git clone https://github.com/pavelkogan/reactive-banana-gtk.git
- cabal sandbox init
- cabal sandbox add-source ./reactive-banana-gtk/
| language: haskell
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libglib2.0-dev libcairo2-dev libpango1.0-dev libgtk2.0-dev
- git clone https://github.com/pavelkogan/reactive-banana-gtk.git
- cabal sandbox init
- cabal sandbox add-source ./reactive-banana-gtk/
| Add system dependencies for Travis | Add system dependencies for Travis
| YAML | bsd-3-clause | pavelkogan/NeuroSpider |
b88a480d1c0557aae947788eabace47f5a29b6a2 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.3
- 2.5.5
- 2.4.6
- ruby-head
- jruby-9.2.5.0
before_install:
- gem update --system
- gem install bundler --no-document
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- ... | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.5
- 2.5.7
- 2.4.9
- ruby-head
- jruby-9.2.5.0
before_install:
- gem update --system
- gem install bundler --no-document
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- ... | Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/simple_navigation_bootstrap |
9d6c428dc6ec872b8e00134d4c4876914c98c2bb | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
- "pypy"
- "pypy3"
install:
- pip install coveralls
- pip install -r requirements.txt
script:
coverage run --source=cantools setup.py test
after_success:
coveralls
| language: python
python:
- "2.7"
- "3.6"
install:
- pip install coveralls
- pip install -r requirements.txt
script:
coverage run --source=cantools setup.py test
after_success:
coveralls
| Revert "Test with pypy on TravisCI." | Revert "Test with pypy on TravisCI."
This reverts commit 7031b263d98dd10211462f987c2187b3c443c611.
| YAML | mit | cantools/cantools,eerimoq/cantools |
ad20a8c35cfc537e6864092bee17967bb267ef77 | .travis.yml | .travis.yml | gemfile:
- Gemfile
- gemfiles/rails3_1.gemfile
- gemfiles/rails3_2.gemfile
language: ruby
rvm:
- 1.8.7
- ree
- 1.9.3
notifications:
email: false
bundler_args: --without development
| gemfile:
- Gemfile
- gemfiles/rails3_1.gemfile
- gemfiles/rails3_2.gemfile
language: ruby
rvm:
- 1.8.7
- ree
- 1.9.3
notifications:
email: false
bundler_args: --without development
services: mongodb
| Declare TravisCI mongo service dependency. | Declare TravisCI mongo service dependency.
Attempt to fix Travis build by enabling the mongo service.
This service was disabled by default and now requires an explicit service config.
| YAML | mit | dhemmat/mongomapper,mongomapper/mongomapper,kachick/mongomapper |
f4b939c082c1399546dba8cffc705d3662f0f616 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.5
- php: 7
env: DB=MYSQL CORE_RELEASE=3.6
- php: 7
env: DB=MYSQL CORE_RELEASE=3
before_script:
- phpenv rehash
- git clone -b prefer-source git://github.com/kinglozzer/silverstripe-travis-support.gi... | language: php
sudo: false
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.5
- php: 7.0
env: DB=MYSQL CORE_RELEASE=3.6
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3
before_script:
- phpenv rehash
- git clone -b prefer-source git://github.com/kinglozzer/silverstripe-travis-suppor... | Fix Travis builds on PHP 7 | Fix Travis builds on PHP 7 | YAML | bsd-3-clause | bigfork/silverstripe-oauth-login |
d4ab842b33f05560bc6e2c4895175fa9f5f181f2 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system --no-document
- sudo gem install bundler --no-document -n /usr/local/bin
- sudo chown -R $(whoami) ${TRAVIS_BUILD_DIR} # ensure tmp/ is writable for bundler
- sudo bundle install
script:
- bundle exec rake
- bundle exe... | language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system --no-document
- sudo gem install bundler --no-document -n /usr/local/bin
- sudo chown -R $(whoami) ${TRAVIS_BUILD_DIR} # ensure tmp/ is writable for bundler
- bundle install
script:
- bundle exec rake
- bundle exec sol... | Stop running bundle install w sudo | Stop running bundle install w sudo
| YAML | mit | pivotal-sprout/sprout-exemplar,pivotal-sprout/sprout-exemplar |
9ba1e9e6683b1c6e0ad30b8754beb92c0ffa6279 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.1
- 1.9.2
- 1.9.3
| language: ruby
rvm:
- 1.9.2
- 1.9.3
| Remove 1.9.1 from Travis CI build since they don't support it. | Remove 1.9.1 from Travis CI build since they don't support it.
| YAML | mit | hamzakc/curator,SavithaK/curator,baoquan-hq/curator,braintree/curator,braintree/curator |
776711d2ebf64f6a3f408c595946f4ab517c2207 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
before_install:
openssl aes-256-cbc -K $encrypted_2d62c455ca1f_key -iv $encrypted_2d62c455ca1f_iv -in pari_qa.pem.enc -out pari_qa.pem -d
install:
- pip install ansible==2.0
- pip install six
- pip install -r requirements.dev.txt
services: postgresql
before_script:
- createuser pari
-... | language: python
python:
- '2.7'
before_install:
openssl aes-256-cbc -K $encrypted_2d62c455ca1f_key -iv $encrypted_2d62c455ca1f_iv -in pari_qa.pem.enc -out pari_qa.pem -d
install:
- pip install ansible==2.2.1
- pip install six
- pip install -r requirements.dev.txt
services: postgresql
before_script:
- createuser pari... | Update ansible version for CI | Update ansible version for CI
| YAML | bsd-3-clause | PARINetwork/pari,PARINetwork/pari,PARINetwork/pari,PARINetwork/pari |
95effaec82021fcb335ba561e60f0e3c4eb86b40 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
... | language: php
matrix:
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 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 HHV... | Remove PHP 5.3 support as it is way past EOL | Remove PHP 5.3 support as it is way past EOL
| YAML | lgpl-2.1 | php-amqplib/php-amqplib,videlalvaro/php-amqplib |
2718e7ae945e3dbc899be2b970b9b4efdedbdbf8 | .travis.yml | .travis.yml | language: node_js
node_js:
- iojs
- "0.12"
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
before_script:
- npm install -g grunt-cli
| Remove support for node 0.11 | Remove support for node 0.11
| YAML | mit | Rowno/medic |
aa07bc9f413ddeb12e43c301337d82dfc8a2e4cf | .travis.yml | .travis.yml | sudo: false # Explicitly use container-based infrastructure
language: go
go:
- 1.5
before_install:
- wget https://downloads.giantswarm.io/builder/0.11.0/builder
- chmod +x ./builder
- export PATH=$PATH:$PWD
script:
- make lint
- make ci-test
- make ci-build
- ./formica
| sudo: false # Explicitly use container-based infrastructure
language: go
go:
- 1.5
notifications:
email: false
before_install:
- wget https://downloads.giantswarm.io/builder/0.11.0/builder
- chmod +x ./builder
- export PATH=$PATH:$PWD
script:
- make lint
- make ci-test
- make ci-build
- ./formica
| Switch off notification emails completely | Switch off notification emails completely
| YAML | apache-2.0 | giantswarm/inago,giantswarm/inago,giantswarm/inago,giantswarm/inago,giantswarm/inago |
d86e7006a8b3ce7517a31b1f7c0cd49d76f46d3b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
- 2.2
- 2.3.1
gemfile:
- Gemfile
script: bundle exec rake test
sudo: false
| language: ruby
rvm:
- 2.1
- 2.2
- 2.3.6
- 2.4.3
- 2.5.0
gemfile:
- Gemfile
script: bundle exec rake test
sudo: false
| Update Ruby versions on Travis | Update Ruby versions on Travis
| YAML | apache-2.0 | uken/fluent-plugin-elasticsearch,cosmo0920/fluent-plugin-elasticsearch |
f21180a4f69e69d4b464353dcabd20a03736de24 | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- tip
go_import_path: github.com/versent/unicreds
install:
- echo noop
env:
- "PATH=/home/travis/gopath/bin:$PATH"
script:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- golint ./...
- make updatedeps
- ma... | language: go
go:
- 1.5
- 1.6
# - tip
go_import_path: github.com/versent/unicreds
install:
- echo noop
env:
- "PATH=/home/travis/gopath/bin:$PATH"
script:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- golint ./...
- make updatedeps
- m... | Disable tip due to errors with golint. | Disable tip due to errors with golint.
| YAML | mit | Versent/unicreds |
0f93a0091593b35456da185051bdfe4d3514594a | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
after_success: npm run coveralls
| language: node_js
node_js:
- "0.10"
- "iojs"
after_success: npm run coveralls
| Test against io.js on Travis CI | Test against io.js on Travis CI
| YAML | mit | OEvgeny/postcss-assets,glebmachine/postcss-assets,justinanastos/postcss-assets,assetsjs/postcss-assets,borodean/postcss-assets |
96a3a8c6c11bae31fdc79e67f8706f48882fc611 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk8
sudo: false
cache:
directories:
- $HOME/.m2
- $HOME/.gradle
install: /bin/true
script: ./gradlew wrapper --gradle-version 4.6 clean test | language: java
jdk:
- openjdk8
sudo: false
cache:
directories:
- $HOME/.m2
- $HOME/.gradle
install: /bin/true
script: ./gradlew test
| Simplify how Travis calls Gradle | Simplify how Travis calls Gradle
There is no need to call the wrapper task with a version here as we
already use the wrapper script, and that one will bootstrap the Gradle
version as specified in gradle/wrapper/gradle-wrapper.properties.
Also, there is no need to call the clean task as each Travis build
starts from s... | YAML | mit | kotlintest/kotlintest,kotlintest/kotlintest,kotlintest/kotlintest,sksamuel/ktest |
4c9d00105628d4f289952c07c4197e8bc3dd3ff1 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
rvm:
- 2.0.0
| language: ruby
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
rvm:
- 2.0.0
| Install development dependencies in CI environment | Install development dependencies in CI environment
| YAML | mit | munirent/tolk,tolk/tolk,rdunlop/tolk,MyMedsAndMe/tolk,MyMedsAndMe/tolk,tolk/tolk,tolk/tolk,rdunlop/tolk,MyMedsAndMe/tolk,rdunlop/tolk,munirent/tolk |
55bdf1ab8c2b77bfab0726c41169b273ad917bb1 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.2.*
- php: 7.0
- php: 7.1
- php: hhvm-stable
sudo: required
dist: trusty
group: edge
allow_failures:
- php: hhvm-stable
cach... | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.2.*
- php: 7.0
- php: 7.1
- php: hhvm-stable
sudo: required
dist: trusty
group: edge
allow_failures:
- php: hhvm-stable
cach... | Remove unused env var (minor) | Remove unused env var (minor)
| YAML | mit | Batch1211/LexikJWTAuthenticationBundle,chalasr/LexikJWTAuthenticationBundle,lexik/LexikJWTAuthenticationBundle |
0f69755aebd0c540fad059f5eaf4e58b5af9ec94 | .travis.yml | .travis.yml | branches:
only:
- master
language: objective-c
notifications:
email:
on_success: never
on_failure: change
script: ./script/cibuild
| branches:
only:
- master
git:
depth: 10
sudo: false
os:
- linux
- osx
addons:
apt:
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
env:
global:
- APM_TEST_PACKAGES="language-latex pdf-view"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
not... | Migrate Travis CI builds to container infrastructure | Migrate Travis CI builds to container infrastructure
| YAML | mit | thomasjo/atom-latex,thomasjo/atom-latex,thomasjo/atom-latex |
be29d67fd0cbc794f08f488fef6546b3ed7a16bb | .travis.yml | .travis.yml | sudo: required
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
- sudo apt-get install -y nodejs
- npm install npm@latest -g
install:
- python setup.py deps_install
script:
- python setup.py lint
- python se... | sudo: required
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- nvm install 6
install:
- python setup.py deps_install
script:
- python setup.py lint
- python setup.py test
- python setup.py e2e_test
| Install Node.js 6 via NVM. | Install Node.js 6 via NVM.
| YAML | bsd-2-clause | nvdv/vprof,nvdv/vprof,nvdv/vprof |
29abef2c4a4ed309433029efae575952a8a8bf62 | .travis.yml | .travis.yml | language: python
dist: trusty
sudo: required
before_install:
- sudo dpkg --add-architecture i386
- sudo add-apt-repository ppa:ubuntu-wine/ppa -y
- sudo apt-get update
- sudo apt-get install --no-install-recommends -y wine1.8
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- pip install pytest... | language: python
dist: trusty
sudo: required
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo dpkg --add-architecture i386
- sudo add-apt-repository ppa:ubuntu-wine/ppa -y
- sudo apt-get update
- sudo apt-get install --no-install-recommends -y wine1.8
- pip install pytest pytest-cov code... | Fix duplicate in Travis config | Fix duplicate in Travis config
| YAML | agpl-3.0 | openclimatedata/pymagicc,openclimatedata/pymagicc |
84d0027562d47d7c47969ff7fe7c9ae4d9c19008 | .travis.yml | .travis.yml | language: python
python:
# - "2.7"
# - "3.5"
- "3.6"
# command to install dependencies
cache: pip
install:
- pip install cython
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install .
- pip install -r requirements.txt
- pip install coveralls
# com... | language: python
python:
- "2.7"
- "3.5"
- "3.6"
# command to install dependencies
cache: pip
install:
- pip install cython
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install .
- pip install -r requirements.txt
- pip install coveralls
# comma... | Revert changes to fix build issues | Revert changes to fix build issues
| YAML | mit | alexprey/pysd,JamesPHoughton/pysd,alexprey/pysd |
721ad36a4606948bbc34c0b4b1f329bdb9ae7dc2 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
script:
- cargo build --verbose --all
- cargo test --verbose --all
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
script:
- cargo build --verbose --all
- cargo test --verbose --all
before_install:
- sudo apt-get install -y libzmq3-dev
| Update Travis configuration to install libzmq3-dev | Update Travis configuration to install libzmq3-dev
| YAML | apache-2.0 | google/evcxr,google/evcxr,google/evcxr |
b0a923a99c81c0523e9df303e5b9eab330a73971 | .travis.yml | .travis.yml | # reference: http://www.objc.io/issue-6/travis-ci.html
language: objective-c
script:
- xctool test -workspace Example/PINRemoteImage.xcworkspace -scheme PINRemoteImage -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
| # reference: http://www.objc.io/issue-6/travis-ci.html
# whitelist
branches:
only:
- master
language: objective-c
env:
matrix:
- TEST_SDK=iphonesimulator7.0
- TEST_SDK=iphonesimulator7.1
- TEST_SDK=iphonesimulator8.1
script:
- xctool test -test-sdk $TEST_SDK -simulator iphone -workspace Example/P... | Add Travis tests for older SDKs. Only build master. | Add Travis tests for older SDKs. Only build master.
| YAML | apache-2.0 | pinterest/PINRemoteImage,pinterest/PINRemoteImage,pinterest/PINRemoteImage,pinterest/PINRemoteImage |
d22946bdf28c9d70db89395a68df792a0a4274b6 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- ruby-head
before_install:
- gem update --system || gem install rubygems-update -v '<3' && update_rubygems
- gem update bundler || gem install bundler -v '<2'
| sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- ruby-head
before_install:
- |
if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then
gem install rubygems-update -v '<3' && update_rubygems
gem install bundler -v '<2'
else
gem update --system
gem u... | Update Bundler to the latest version of 1.x on Ruby < 2.3 | Update Bundler to the latest version of 1.x on Ruby < 2.3
`gem update bundler` command does not return error code on Ruby < 2.3.
| YAML | mit | emsk/mask_sql,emsk/mask_sql |
8457e586050940e040d5a41f8926a04a704b9d1a | .travis.yml | .travis.yml | language: python
python: 2.7
env:
#- TOX_ENV=py34
- TOX_ENV=py33
# - TOX_ENV=py32
- TOX_ENV=py27
- TOX_ENV=py26
install:
- pip install tox
- pip install python-coveralls
script:
- tox -e $TOX_ENV
after_success:
coveralls
sudo: false
| language: python
python: 2.7
env:
- TOX_ENV=py33
- TOX_ENV=py27
- TOX_ENV=py26
install:
- pip install tox
- pip install python-coveralls
script:
- tox -e $TOX_ENV
after_success:
coveralls
sudo: false
| Remove commented out versions of code | Remove commented out versions of code
| YAML | mit | ftobia/pytest-ordering |
eb26ea24dd1e247c0adc7c9fc7deddd6daf1d037 | .travis.yml | .travis.yml | script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree | script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- rbx-2.0.0pre
- ree | Add Rubinius 2.0.pre to the CI matrix | Add Rubinius 2.0.pre to the CI matrix
| YAML | mit | ruby-amqp/amq-protocol,ruby-amqp/amq-protocol,travis-repos/amq-protocol,travis-repos/amq-protocol |
695b44a327be22fd042c4a06161440396c8a99cd | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
- 0.6
- 0.4
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| language: node_js
node_js:
- 0.9
- 0.8
- 0.6
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| Add node 0.9, drop 0.4 since TravisCI is going to retire it. | Add node 0.9, drop 0.4 since TravisCI is going to retire it.
| YAML | mit | cliffano/bagofholding |
157e29d8372e57e2705f43f3d44347e02655dde6 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --dev --prefer-source
script: bin/phpspec run -fpretty --verbose
| language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --no-interaction --prefer-source
script: bin/phpspec run -fpretty --verbose
| Fix invalid deps and move AttributeFactory to component | Fix invalid deps and move AttributeFactory to component
| YAML | mit | Sylius/Pricing |
72bf154ba3ec7342cb797d849b57c611118545f6 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install --upgrade pip
- pip install -q six
- pip install virtualenv
script: python tests.py
branches:
only:
- master
sudo: false
addons:
apt:
packages:
- pandoc
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install --upgrade pip
- pip install -q six
- pip install virtualenv
script: python tests.py
branches:
only:
- master
sudo: false
| Remove test dependency on pandoc since 4b984d3 | Remove test dependency on pandoc since 4b984d3
| YAML | bsd-2-clause | sjkingo/virtualenv-api |
6c6a08bd7e7dc14587adf880d9d9bccfd718defb | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
script:
- npm test
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.*"
script:
- npm test
| Test on node 4 instead of iojs. | Test on node 4 instead of iojs.
| YAML | isc | ceejbot/jumpsuit,ceejbot/jumphash,ceejbot/jumphash,ceejbot/jumphash,ceejbot/jumpsuit,ceejbot/jumpsuit |
5ce4bb49d2a7f8009e599b9652ed3df4798312a6 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
- oraclejdk8
| language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
- oraclejdk8
script: "mvn verify"
| Make Travis CI build with mvn verify, instead of mvn test. | Make Travis CI build with mvn verify, instead of mvn test.
| YAML | apache-2.0 | chrisvest/stormpot,chrisvest/stormpot |
4b2e24a0ad9b7480ec936cbf06ffd04c2a3bcf47 | .travis.yml | .travis.yml | language: go
go:
- tip
- 1.3
script: go get code.google.com/p/go.tools/cmd/vet && go get code.google.com/p/go.tools/cmd/goimports && go get github.com/golang/lint/golint && go get github.com/kisom/whitelist/... && $HOME/gopath/bin/golint *.go && go test github.com/kisom/whitelist/... && go vet github.co... | language: go
go:
- tip
- 1.3
script: go get code.google.com/p/go.tools/cmd/vet && go get code.google.com/p/go.tools/cmd/goimports && go get github.com/golang/lint/golint && go get github.com/kisom/whitelist/... && [ -z "$($HOME/gopath/bin/golint *.go)" ] && go test github.com/kisom/whitelist/... && go v... | Make it an error if goimports or golint find problems. | Make it an error if goimports or golint find problems.
| YAML | isc | kisom/whitelist |
78723bc3985e1ea0e9cf60a0200d69945c5967e3 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-19mode
- jruby-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-19mode
- jruby-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| Test on recent Ruby releases | Test on recent Ruby releases | YAML | mit | adhearsion/ruby_fs |
cb8afc01aea682183ac16e2f404e73976e54a062 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- composer self-update -q
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
- composer require phpunit/phpunit:${PHPUNIT_VERSION}
script:
- composer install --no-dev
- vendor/bin... | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- composer self-update -q
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
- composer require phpunit/phpunit:${PHPUNIT_VERSION}
script:
- composer install --no-dev
- vendor/bin... | Change CI default phpunit version to 4.7. | Change CI default phpunit version to 4.7.
| YAML | mit | iakio/phpunit-growlprinter |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.