commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
5e6343b3f52d5b557c8cc6c0462479f91ac3ebea | .travis.yml | .travis.yml | language: python
# This (sudo: false) is needed to "run on container-based infrastructure" on
# which cache: is available
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
cache: pip
env: PIP_ALLOW_EXTERNAL=PIL PIP_ALLOW_UNVERIFIED=PIL
script: python manage.py test registry --sett... | language: python
# This (sudo: false) is needed to "run on container-based infrastructure" on
# which cache: is available
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
cache: pip
env: PIP_ALLOW_EXTERNAL=PIL PIP_ALLOW_UNVERIFIED=PIL
script: PYTHONPATH=./omero_qa:$PYTHONPATH pyt... | Prepend omero_qa to the PYTHONPATH | Prepend omero_qa to the PYTHONPATH
| YAML | agpl-3.0 | sbesson/registry,openmicroscopy/registry,sbesson/registry,sbesson/registry,openmicroscopy/registry,openmicroscopy/registry |
cb97d17c87a0a97bbe1a2e50a4361501c94935a1 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake"
sudo: false
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- jruby-head
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rv... | language: ruby
script: "bundle exec rake"
sudo: false
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- jruby-head
- jruby-18mode
- jruby-19mode
- rbx # It's actually RBX 3
- rbx-2
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-he... | Test against RBX 2 and 3 | Test against RBX 2 and 3
Former RBX version definitions are not supported anymore.
See: https://docs.travis-ci.com/user/languages/ruby#Rubinius
| YAML | mit | typhoeus/typhoeus,tinfoil/typhoeus |
50d056ea611190321f158e82081d00758d7b63b5 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
install:
- pip install python-coveralls
script: "make test"
after_success:
coveralls
| language: python
python:
- "2.7"
- "3.5"
install:
- pip install python-coveralls
script: "make test"
after_success:
coveralls
services:
- redis-server
env:
- REDIS_URL=localhost:6379
| Add redis which is apparently needed for tests :-[ | Add redis which is apparently needed for tests :-[
| YAML | mit | cmheisel/project-status-dashboard,cmheisel/project-status-dashboard,cmheisel/project-status-dashboard |
79f42b7c9b9e06c2b729eb8af017872945bd8dd0 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- ree
before_script:
- 'git clone git://github.com/puppetlabs/puppetlabs-apt.git spec/fixtures/modules/apt'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.14
- PUPPET_VERSION=2.7.19
matrix:
exclude:
- rvm: 1.9.2
env: PUPPET_VERSION=2.6.14
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- ree
before_script:
- 'git clone git://github.com/puppetlabs/puppetlabs-apt.git spec/fixtures/modules/apt'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.17
- PUPPET_VERSION=2.7.19
matrix:
exclude:
- rvm: 1.9.2
env: PUPPET_VERSION=2.6.14
| Update Travis CI config to use latest Puppet 2.6.x | Update Travis CI config to use latest Puppet 2.6.x
| YAML | apache-2.0 | gini/puppet-googlechrome |
4fe67cec6e1adaf75767ab99210e34b777273a2b | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.5
before_script:
- cp app/config/parameters.yml.travis app/config/parameters.yml
- composer install
- php app/console doctrine:database:create --env=test
- php app/console doctrine:schema:create --env=test
- php app/console doctrine:fixtures:load -n --env=test
#script:
... | sudo: false
language: php
php:
- 5.5
before_script:
- cp app/config/parameters.yml.travis app/config/parameters.yml
- composer install
- php app/console doctrine:database:create --env=test
- php app/console doctrine:schema:create --env=test
- php app/console doctrine:fixtures:load -n --env=test
script:
... | Use default test command for phpunit | Use default test command for phpunit
| YAML | mit | InsaLan/insalan.fr,Teanan/insalan.fr,Teanan/insalan.fr,Teanan/insalan.fr,InsaLan/insalan.fr,InsaLan/insalan.fr,Teanan/insalan.fr |
d25ebb62bfcdc0a75b504238d8e0b5e18339faf8 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- 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=em... | ---
language: node_js
node_js:
- "0.12"
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- 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
b... | Remove sudo: false to see if pip can install properly | Remove sudo: false to see if pip can install properly
| YAML | mit | CrshOverride/ember-web-api,CrshOverride/ember-web-api |
095fabdcb9ff5fdc3e11dc20d19a90cc8d8833b7 | .travis.yml | .travis.yml | language: haskell
notifications:
email: false
before_script:
- cabal configure --enable-tests
- cabal build
script:
- cabal test --show-details=always --test-options="--color"
- cabal run Junior
| language: haskell
notifications:
email: false
before_script:
- cabal configure --enable-tests
- cabal build
script:
- cabal test --show-details=always --test-options="--color"
- cabal configure
- cabal run Junior
| Add run Junior haskell interpreter to Travis | Add run Junior haskell interpreter to Travis
| YAML | apache-2.0 | holoed/Junior,holoed/Junior,holoed/Junior,holoed/Junior |
0d4c31dd6d2250cbff73e812ab6416d04e1e465d | .travis.yml | .travis.yml | language: go
go:
- 1.8
- 1.9
- 1.x
- master
install: go get -t ./...
matrix:
fast_finish: true
| language: go
go:
- 1.8
- 1.9
- 1.x
- master
install: go get -t ./...
matrix:
allow_failures:
- go: master
fast_finish: true
| Allow test failures for golang HEAD | Allow test failures for golang HEAD
| YAML | apache-2.0 | deepmind/objecthash-proto,deepmind/objecthash-proto |
70e47cbf4f40c4f08be9da1da7f7bd7a6f75f7b0 | .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/bob |
969fe5c61df8e8c5def6fec8b30c99b497546633 | .travis.yml | .travis.yml | branches: master
gemfile:
- gemfiles/rails30.gemfile
- gemfiles/rails31.gemfile
- gemfiles/rails32.gemfile
- gemfiles/rails40.gemfile
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
before_install:
- gem update bundler
before_script:
- unset RAILS_ENV
- unset RACK_ENV
matrix:
exclude:
- ... | branches: master
gemfile:
- gemfiles/rails30.gemfile
- gemfiles/rails31.gemfile
- gemfiles/rails32.gemfile
- gemfiles/rails40.gemfile
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
before_install:
- gem update bundler
before_script:
- unset RAILS_ENV
- unset RACK_ENV
matrix:
exclude:
- ... | Use a more restrictive gemfile for the coverage test run | Use a more restrictive gemfile for the coverage test run
For some reason, on Travis, installing the bundle for the generic
gemfile takes more than 20 minutes to resolve the dependencies.
| YAML | mit | NYULibraries/figs,7091lapS/figaro,danimashu/figaro,vgvinay2/figaro,z2s8/figaro,Mario245/figaro,mumer92/figaro,fny/figaro,cantonyselim/figaro,laserlemon/figaro |
17ac420541ba5cea16369775d6836adf53ed4391 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO_VERSION=1.7.11
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9
install:
- pip install -q Django==$DJANGO_VERSION
- pip install -e .
script:
- py.test tests
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO_VERSION=1.7.11
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9
install:
- pip install -q Django==$DJANGO_VERSION
- pip install -e .
script:
- py.test tests
| Remove python 3.2 from test due to compatibility issues in pyandoc/markdown | Remove python 3.2 from test due to compatibility issues in pyandoc/markdown
| YAML | mit | nocarryr/django-safe-project |
4cedbc3a7185ca20fc2558477fd1dd750524ad44 | .travis.yml | .travis.yml | language: python
python:
- 2.7
install: pip install tox --use-mirrors
script: tox
| language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
install: pip install tox --use-mirrors
script: tox
| Add Python versions to Travis conf. | Add Python versions to Travis conf.
| YAML | mit | ulule/django-linguist |
4c91abbe1af47908616f7762eb9664c998775abf | .travis.yml | .travis.yml | language: csharp
dist: trusty
sudo: required
mono: none
dotnet: 1.0.0-preview2.1-003177
mono:
- latest
os:
- linux
node_js:
- '7'
before_install:
- nvm install 7.10.0
- nvm use 7.10.0
- npm install compare-obj diff fs path child_process
- npm install -g z-schema
install:
- sh script/setup.sh
- sh scri... | language: csharp
dist: trusty
sudo: required
mono: none
dotnet: 1.0.0-preview2.1-003177
mono:
- latest
os:
- linux
node_js:
- '7'
before_install:
- nvm install 7.10.0
- nvm use 7.10.0
- cd test && npm install && cd ../
- npm install -g z-schema
install:
- sh script/setup.sh
- sh script/cibuild.sh
- ... | Fix installing of tests packages | Fix installing of tests packages
| YAML | mit | binore/linterhub-cli,repometric/linterhub-cli,repometric/linterhub-cli,binore/linterhub-cli,repometric/linterhub-cli,binore/linterhub-cli |
0bdbf929cfcb103c7a2cc69cfe73f6df71883968 | .travis.yml | .travis.yml | language: bash
matrix:
include:
- os: linux
dist: bionic # 18.04 (EOL @ April 2023)
- os: linux
dist: xenial # 16.04 (EOL @ April 2021)
- os: osx
osx_image: xcode12 # 10.15.5
- os: osx
osx_image: xcode11.3 # 10.14.6
- os: osx
osx_image: xcode10.1 # 10.13
- os: os... | language: bash
matrix:
include:
- os: linux
dist: bionic # 18.04 (EOL @ April 2023)
- os: linux
dist: xenial # 16.04 (EOL @ April 2021)
- os: osx
osx_image: xcode12 # 10.15.5
- os: osx
osx_image: xcode11.3 # 10.14.6
- os: osx
osx_image: xcode10.1 # 10.13
install: tr... | Remove Xcode 9.2 from the tests as homebrew is broken | Remove Xcode 9.2 from the tests as homebrew is broken
| YAML | apache-2.0 | canha/golang-tools-install-script |
f0f6dc9235a8ff7063d12b81c7d357f0b81f5e8a | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.5.9
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
| language: php
dist: trusty
sudo: false
php:
- 5.4
- 5.5
- 5.5.9
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
matrix:
include:
- php: 5.3
dist: precise
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
| Fix PHP 5.3 on Travis CI | Fix PHP 5.3 on Travis CI
| YAML | bsd-3-clause | vlucas/phpdotenv |
b9af4f2a2755e9898c4a74d3785aa834ef03280e | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
install: npm install
services:
- postgresql
env:
- NODE_ENV=test
before_script:
- psql -c 'create database postit_db_test;' -U postgres
- npm run build-server
- sequelize db:migrate
- sequelize db:seed:all
script: npm test
after_success: npm run coverage
cache:
directories:
-... | language: node_js
node_js:
- "stable"
install: npm install
services:
- postgresql
env:
- NODE_ENV=test
before_script:
- psql -c 'create database postit_db_test;' -U postgres
- npm run build-server
- sequelize db:migrate
- sequelize db:seed:all
script: npm test
after_script: sudo service postgresql stop
after_success: n... | Enable coverage reporting after Travis build | Enable coverage reporting after Travis build
| YAML | mit | Philipeano/post-it,Philipeano/post-it |
5e164f12f7c8eed34f14cb644c8e5bba8084cc72 | .travis.yml | .travis.yml | before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
bundler_args: --without development production --quiet
env:
- GEM=api DB=sqlite
- GEM=api DB=mysql
- GEM=api DB=postgres
- GEM=backend DB=sqlite
- GEM=backend DB=mysql
- GEM=backend DB=postgres
- GEM=core DB=sqlite
- GEM=core DB=my... | before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
bundler_args: --without development production --quiet
env:
- GEM=api DB=sqlite
- GEM=api DB=mysql
- GEM=api DB=postgres
- GEM=backend DB=sqlite
- GEM=backend DB=mysql
- GEM=backend DB=postgres
- GEM=core DB=sqlite
- GEM=core DB=my... | Use rake spec to run tests instead of rspec spec | Use rake spec to run tests instead of rspec spec [ci skip]
| YAML | bsd-3-clause | mindvolt/spree,Lostmyname/spree,jsurdilla/solidus,softr8/spree,odk211/spree,sideci-sample/sideci-sample-spree,Engeltj/spree,gregoryrikson/spree-sample,softr8/spree,TimurTarasenko/spree,shekibobo/spree,athal7/solidus,priyank-gupta/spree,surfdome/spree,Boomkat/spree,jsurdilla/solidus,mleglise/spree,kewaunited/spree,proje... |
aefe40bf26f8d6329ba2522d1328d94612739b95 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
addons:
postgresql: "9.3"
services:
- rabbitmq
- elasticsearch
- memcached
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y npm libxml2-dev libxslt1-dev
- npm install -g less
- sudo ln -s /usr/local/lib/node_modules/less/bin/lessc /usr/local/bin
... | language: python
python:
- "2.6"
addons:
postgresql: "9.3"
services:
- rabbitmq
- memcached
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y npm libxml2-dev libxslt1-dev
- wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.9.deb
- sudo dpkg -i el... | Install ES 0.90 in Travis | Install ES 0.90 in Travis
| YAML | mpl-2.0 | linearregression/socorro,twobraids/socorro,m8ttyB/socorro,cliqz/socorro,linearregression/socorro,m8ttyB/socorro,Serg09/socorro,AdrianGaudebert/socorro,mozilla/socorro,spthaolt/socorro,m8ttyB/socorro,AdrianGaudebert/socorro,twobraids/socorro,Tchanders/socorro,luser/socorro,Tchanders/socorro,Tayamarn/socorro,yglazko/soco... |
bfd1c9443c5f7473e13b09d4bce93c392b42acc4 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "6"
install:
- npm install
script:
- npm run check
- npm run build
- npm run validate
after_success:
- npm run coveralls
| language: node_js
node_js:
- "4"
- "6"
- "7"
install:
- npm install
script:
- npm run check
- npm run build
- npm run validate
after_success:
- npm run coveralls
| Add Node.js v7 to Travis CI configuration | Add Node.js v7 to Travis CI configuration
| YAML | mit | kendaleiv/jquery-js-refactor,kendaleiv/jquery-js-refactor |
f4a4ef7f10ebc250e565c3632bf02fdb27a924c8 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
before_install:
- chmod +x gradlew
after_success:
- test "${TRAVIS_PULL_REQUEST}" == "false" && test “${TRAVIS_JDK_VERSION}” == “oraclejdk7″ && test "${TRAVIS_TAG}" != "" && ./gradlew publishSnapshotOrRelease
| language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
before_install:
- chmod +x gradlew
after_success:
- test "${TRAVIS_PULL_REQUEST}" == "false" && test “${TRAVIS_JDK_VERSION}” == “oraclejdk7″ && ./gradlew publishSnapshotOrRelease
| Deploy to OJO only done with Oracle JDK7 | Fix: Deploy to OJO only done with Oracle JDK7 | YAML | mit | yatechorg/jedis-utils,yatechorg/jedis-utils |
5f341d3c6609fedc2531c37258ef5593573cd5b0 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: beta
- rust: nightly
dist: trusty
sudo: false
addons:
apt:
packages:
- python3-pip
install:
- pip3 install --user --upgrade mypy flake8
- mypy --version
before_script:
- car... | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: beta
- rust: nightly
dist: trusty
sudo: false
addons:
apt:
packages:
- python3-pip
install:
- pip3 install --user --upgrade mypy flake8
- mypy --version
before_script:
# If ... | Add comments explaining the rustfmt installation dance. | Add comments explaining the rustfmt installation dance.
| YAML | apache-2.0 | stoklund/cretonne,stoklund/cretonne,stoklund/cretonne |
1006e9cb6906e03875bb807f7bfd9d40c8516209 | .travis.yml | .travis.yml | sudo: required
services:
- docker
before_install:
- apt-get -qq update
- apt-get install -y qemu-kvm bridge-utils libvirt-bin
- cd docker/qemu-nvme/
- lsmod | grep kvm
install:
- docker build -t ljishen/qemu-nvme .
before_script:
- wget -O img/vm.img http://cloud-images.ubuntu.com/xenial/current/xenia... | sudo: required
services:
- docker
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y qemu-kvm bridge-utils libvirt-bin
- lsmod | grep kvm
- cd docker/qemu-nvme/
install:
- docker build -t ljishen/qemu-nvme .
before_script:
- wget -O img/vm.img http://cloud-images.ubuntu.com/xenial/cur... | Add sudo to the apt-get build command | Add sudo to the apt-get build command
| YAML | mit | ljishen/nvme-env |
eeae4b2f43af7ee67630691a24975ee7c126dfd6 | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
- '7.1'
- hhvm
- nightly
install: composer install
script:
- vendor/bin/phpunit --bootstrap ./tests/bootstrap.config.sqlite.php tests/
- vendor/bin/phpunit --bootstrap ./tests/bootstrap.config.mysql.php tests/
| language: php
php:
- '5.6'
- '7.0'
- '7.1'
- hhvm
- nightly
install: composer install
script:
- vendor/bin/phpunit --bootstrap ./tests/bootstrap.config.sqlite.php tests/
| Remove not implemented mysql tests | Remove not implemented mysql tests
| YAML | mit | pips-/core,pragma-framework/core |
a744789bc3eb1bfc5303722d905be2be0789590f | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 1.9.3
- 2.1.3
- jruby-19mode
- rbx
bundler_args: --jobs=1
script: bundle exec rspec
| language: ruby
sudo: false
env:
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOSION=1
- MATRIX_EXPLOS... | Throw a big matrix at staging | Throw a big matrix at staging
| YAML | mit | travis-repos/ruby-test-staging |
9907b53ba6d05af0cf63104aab1ab6472a4ce61a | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.4.1
- 2.0.0
before_install: gem install bundler -v 1.15.2
| sudo: false
language: ruby
rvm:
- 2.4.1
- 2.5.0
- 2.6.0
- 2.7.0
before_install: gem install bundler
| Add Ruby 2.5, 2.6 and 2.7 to test matrix & don't specify what bundler version to install | Add Ruby 2.5, 2.6 and 2.7 to test matrix & don't specify what bundler version to install
| YAML | mit | buren/wayback_archiver |
54277d93660e3b5bbe1ef384275faabea9bfe549 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
- 2.7.0
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.2.gemfile
matrix:
exclude:
- rvm: 2.0.0
gemfile: gemfiles/rails_5.2.gemfile
- rvm: 2.1.10
gemfile: ge... | language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
- 2.7.0
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.2.gemfile
matrix:
exclude:
- rvm: 2.0.0
gemfile: gemfiles/rails_5.2.gemfile
- rvm: 2.1.10
gemfile: ge... | Fix the Travis CI configuration | Fix the Travis CI configuration
| YAML | mit | pienkowb/active_record-events |
c99650056cdff221feacb5bef33554cffab0793e | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7 | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
notifications:
slack:
secure: nXhFZW/4NNGkc1WUpwn2YqEEtoACiwYHUkv6p5CTUGV+HWvlBFKgtskeM3rdJ6GYuSq1W69enmT1Pv09s2mqIU1gkfPkMxzHwCu+XUq68pnM32mxpDGxchhHNIq4PDApNA9kLklYeKXRYAKKNWcthJdCdnNoeBodEDue6AM5wwnsewEfqilu7Ozb7yI7+9wkcdG7TnGrrlsrR1sVdrlLdatqcxt02tfCWBO... | Add Slack integration with TravisCI | Add Slack integration with TravisCI
| YAML | mpl-2.0 | CrystalCraftMC/PvPStorm |
c880c55e0e4d7b836505df7bc271611d0a773249 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- openjdk7
- openjdk8
- oraclejdk8
- openjdk10
- openjdk11
branches:
only:
- master
| sudo: false
language: java
jdk:
- openjdk8
- openjdk11
branches:
only:
- master
| Drop Java 7 build, need Java 8 for moditect | Drop Java 7 build, need Java 8 for moditect
| YAML | apache-2.0 | FasterXML/aalto-xml |
02c8cc65722e4ac7c089c51bc76db815bc69f4c0 | .travis.yml | .travis.yml | sudo: required
language: ruby
bundler_args: --without benchmarks development
before_install:
- gem --version
- bash .travis_setup.sh
os:
- linux
addons:
hosts:
- mysql2gem.example.com
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ree
- rbx-2
- ruby-head
matrix:
include:
- rvm: 2.0.0
... | sudo: required
language: ruby
bundler_args: --without benchmarks development
before_install:
- gem --version
- bash .travis_setup.sh
os:
- linux
addons:
hosts:
- mysql2gem.example.com
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ree
- rbx-2
- ruby-head
matrix:
include:
- rvm: 2.0.0
... | Remove Travis OS X DB=mysql because it is a moving target | Remove Travis OS X DB=mysql because it is a moving target
| YAML | mit | brianmario/mysql2,jeremy/mysql2,yui-knk/mysql2,jconroy77/mysql2,jconroy77/mysql2,kamipo/mysql2,kamipo/mysql2,yui-knk/mysql2,jeremy/mysql2,bigcartel/mysql2,tamird/mysql2,bigcartel/mysql2,bigcartel/mysql2,yui-knk/mysql2,kamipo/mysql2,sodabrew/mysql2,kamipo/mysql2,tamird/mysql2,tamird/mysql2,jeremy/mysql2,tamird/mysql2,br... |
bc21ac4dd8486b34db673dd98715f4b34c5b1fe4 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 0.8
- 0.6
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:
- npm install
- npm ... | language: node_js
node_js:
- '0.10'
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:
- npm install
- npm install istanb... | Build only on 0.0.10 at Travis CI. | Build only on 0.0.10 at Travis CI.
Closes #67.
| YAML | mit | bigeasy/arguable |
72cc5e03dc08d378c393e6f6771e3220fa439237 | .travis.yml | .travis.yml | language: perl
perl:
- "5.14"
before_install:
- "cpanm -n Devel::Cover::Report::Coveralls"
after_install:
- "cpanm git://github.com/istreeter/BioSD.git"
script:
perl Build.PL && ./Build build && cover -test -report coveralls | language: perl
perl:
- "5.14"
before_install:
- "cpanm -n Devel::Cover::Report::Coveralls"
- "cpanm Module::Build::Pluggable Module::Build::Pluggable::CPANfile"
- "cpanm git://github.com/istreeter/BioSD.git"
before_script:
script:
perl Build.PL && ./Build build && cover -test -report coveralls | Make BioSD install before it is required | Make BioSD install before it is required
| YAML | apache-2.0 | EMBL-EBI-GCA/EpiRR,EMBL-EBI-GCA/EpiRR |
dac79cbef1fb4aa6ec1f933b7192a5acb8559ba4 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.12
- 4.0
before_install:
- npm install gulp
- npm install
script:
- gulp
| language: node_js
node_js:
- 0.12
- 4.0
- 4.1
- 4.2
before_install:
- npm install gulp
- npm install
script:
- gulp
| Update CI for node 4.x | Update CI for node 4.x
| YAML | bsd-3-clause | radify/geometry.js,radify/geometry.js |
196fedffc8237afe3dbb604868c9e1791010c8cf | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.5.8
- DJANGO_VERSION=1.6.5
install:
- pip install -q Django==$DJANGO_VERSION
- pip install -r requirements.txt
script: python setup.py test
notifications:
email: false
irc:
channels: "chat.freenode.net#platal"
o... | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.5.8
- DJANGO_VERSION=1.6.7
- DJANGO_VERSION=1.7
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=1.7
install:
- pip install -q Django==$DJANGO_VERSION
- pip install -r requirements.txt
script: python setup... | Update Django version for Travis | Update Django version for Travis
https://www.djangoproject.com/download/ says:
* latest = 1.7
* previous = 1.6.5
Django >=1.7 is no longer compatible with Python 2.6.
| YAML | bsd-2-clause | Polytechnique-org/django-authgroupex |
327c9180f51c420ed8b0b06a9f3dbcade50391f7 | .travis.yml | .travis.yml | dist: trusty
sudo: required
services:
- docker
cache:
directories:
- /home/travis/.cache/go-build
language: go
go:
- 1.10beta1
env:
- BUCKET=MISC
- BUCKET=PPS1
- BUCKET=PPS2
- BUCKET=PPS3
branches:
except:
- /^v[0-9]/
before_install:
- sudo etc/testing/ci/before_install.sh
before_script:
- docker version
# ... | dist: trusty
sudo: required
services:
- docker
cache:
directories:
- /home/travis/.cache/go-build
language: go
go:
- 1.10beta1
env:
- BUCKET=MISC
# If you want to update the number of PPS workers, you'll need to update
# the value in ./etc/build/PPS_BUILD_BUCKET_COUNT
- BUCKET=PPS1
- BUCKET=PPS2
- BUCKET=PPS3
bra... | Add a comment pointing to the pps bucket counter | Add a comment pointing to the pps bucket counter
| YAML | apache-2.0 | pachyderm/pfs,pachyderm/pfs,pachyderm/pfs |
764896311816772fcd1ef79bf1f65a6413ac995b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '7'
- '6'
- '4'
| sudo: false
language: node_js
node_js:
- '8'
- '6'
- '4'
| Add node v8 to Travis CI | Test(config): Add node v8 to Travis CI
| YAML | unlicense | fvdm/nodejs-gtmetrix |
ab77c1fa4d01725a0ff1f78e9b79b0ceefbdd03e | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
- hhvm
before_install:
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
- sudo apt-get install --yes nodejs
- npm install -g grunt-cli
install:
- npm install
- composer install
script:
- grunt
after_script:
- php vendor/bin/coveralls -v
- chmod +... | language: php
php:
- 7.0
- 7.1
- hhvm
before_install:
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
- sudo apt-get install --yes nodejs
- npm install -g grunt-cli
install:
- npm install
- composer install
script:
- grunt
after_script:
- php vendor/bin/coveralls -v
- chmod +... | Update Code Climate repo token. | Update Code Climate repo token. | YAML | mit | gomoob/php-websocket-server,gomoob/php-websocket-server,gomoob/php-websocket-server |
d15955c976f97d1695b72d533c65515cbf30de93 | .travis.yml | .travis.yml | language: erlang
notifications:
email:
- hello@alind.io
otp_release:
- 17.0
- R16B03-1
- R16B
- R15B03
before_script: "make get-deps"
script: "make all"
| language: erlang
notifications:
email:
- hello@alind.io
otp_release:
- 17.3
- 17.1
- 17.0
- R16B03-1
- R16B
- R15B03
before_script: "make get-deps"
script: "make all"
| Add Erlang 17.1 and 17.3 to build targets list | Add Erlang 17.1 and 17.3 to build targets list | YAML | apache-2.0 | lilrooness/meck,kivra/meck,basho/meck,apache/couchdb-meck,eproxus/meck,norton/meck,edgurgel/meck,ptuckey/meck,soranoba/meck |
e3d03fe28a1bfaa093a6445a432e8cd40b039f29 | .travis.yml | .travis.yml | sudo: required
language: ruby
services:
- docker
script:
- bundle exec rake rubocop
- bundle exec rake
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push suhlig/concourse-rss-resource;
fi
| sudo: required
language: ruby
services:
- docker
script:
- bundle exec rake rubocop
- bundle exec rake
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push suhlig/concourse-rss-resource;
fi
| Remove deprecated -e flag from docker login | Remove deprecated -e flag from docker login
| YAML | mit | suhlig/concourse-rss-resource,suhlig/concourse-rss-resource |
025e9f58462112b9fb636708374467aef7161289 | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
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
- go get github.com/stretchr/testify/assert
script:
- $HOME/gopath/bin/goveral... | language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
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
- go get github.com/stretchr/testify/assert
script:
- $HOME/gopath/bin/goveral... | Fix goveralls not supporting race detector now | Fix goveralls not supporting race detector now
Removed race detector flag (-race) from goveralls and adding an
extra step `go test -race` to test race conditions.
Basically now it tests the code twice.
| YAML | mit | carlescere/scheduler,going/scheduler |
80f7de34463b0ed3d7c61303e5619efe1b227f92 | .travis.yml | .travis.yml | language: go
sudo: false
services:
- redis-server
go:
- 1.4
- 1.5
- 1.6
- tip
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- go vet $(go list ./... | grep -v /vendor/)
- go test -v -race ./...
| language: go
sudo: false
services:
- redis-server
go:
- 1.4
- 1.5
- 1.6
- 1.7
- tip
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- go vet $(go list ./... | grep -v /vendor/)
- go test -v -race ./...
| Add Go 1.7 to Travis config | Add Go 1.7 to Travis config | YAML | apache-2.0 | garyburd/redigo,gomodule/redigo |
9cb2e6ba16c5cb9aa8b562893b4342c638e21228 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
branches:
only:
- master
notifications:
recipients:
- wiking@jol.hu
email:
on_success: change
on_failure: alwaye
before_install:
- sudo apt-get update -qq
- sudo apt-get build-dep -qq shogun
- sudo apt-get install -qq libeigen3-dev
before_script: cd ./src
script:... | language: cpp
compiler:
- gcc
branches:
only:
- master
notifications:
recipients:
- wiking@jol.hu
email:
on_success: change
on_failure: alwaye
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq cdbs libeigen3-dev libarpack2-dev libatlas-base-dev libblas-dev libglpk-dev libhdf... | Remove interfaces and install minimum libshogun | Remove interfaces and install minimum libshogun
| YAML | bsd-3-clause | geektoni/shogun,shogun-toolbox/shogun,Saurabh7/shogun,sorig/shogun,Saurabh7/shogun,Saurabh7/shogun,karlnapf/shogun,Saurabh7/shogun,besser82/shogun,lisitsyn/shogun,Saurabh7/shogun,besser82/shogun,sorig/shogun,geektoni/shogun,sorig/shogun,lisitsyn/shogun,lambday/shogun,geektoni/shogun,lisitsyn/shogun,shogun-toolbox/shogu... |
2d3fddb992ff75728f8994243a73c75cfe49f2ba | .travis.yml | .travis.yml | language: clojure
lein: lein2
before_script:
- lein2 test-server & # start the web server
- sleep 45 # give the server time to start
- /usr/local/phantomjs/bin/phantomjs --version # sanity check that phantomjs hasn't moved
script: lein2 test!
branches:
only:
- master
jdk:
- oraclejdk7
services:
- redis-... | language: clojure
lein: lein2
before_script:
- lein2 test-server & # start the web server
- sleep 45 # give the server time to start
- /usr/local/phantomjs/bin/phantomjs --version # sanity check that phantomjs hasn't moved
script: lein2 test!
branches:
only:
- master
- dev
jdk:
- oraclejdk7
services:
... | Add dev branch to the Travis CI tests. | Add dev branch to the Travis CI tests.
| YAML | mpl-2.0 | SnootyMonkey/coming-soon |
0809f02e904bb853308e83f0a9bf916f32def679 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1
- 2.2.4
- 2.3.0
before_install: gem install bundler -v 1.11.2
| language: ruby
rvm:
- 1.9.3
- 2.1
- 2.2.4
- 2.3.1
before_install: gem install bundler -v 1.12.3
| Update Ruby and Bundle versions | Update Ruby and Bundle versions
Signed-off-by: Grant Ramsay <4ab1b2fdb7784a8f9b55e81e3261617f44fd0585@gmail.com>
| YAML | mit | seapagan/update_repo,seapagan/update_repo,seapagan/update_repo,seapagan/update_repo |
e6b0a819d5cce6c5f1e52b81126610064beffd42 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "7"
- "6"
after_success: npm run coverage
| language: node_js
node_js:
- "node"
- "7"
- "6"
cache:
directories:
- node_modules
after_success: npm run coverage
| Add node modules cache setting for Travis CI. | Add node modules cache setting for Travis CI.
| YAML | mit | arenahito/instant-mock,arenahito/instant-mock |
9997419c9985549105f0746b2a534dd26bfa117d | .travis.yml | .travis.yml | language: objective-c
branches:
only:
- master
xcode_project: SkyFloatingLabelTextField/SkyFloatingLabelTextField.xcodeproj
xcode_scheme: SkyFloatingLabelTextField
osx_image: xcode9
xcode_sdk: iphonesimulator11.2
script:
- bundle exec rake ci
| language: objective-c
branches:
only:
- master
xcode_project: SkyFloatingLabelTextField/SkyFloatingLabelTextField.xcodeproj
xcode_scheme: SkyFloatingLabelTextField
osx_image: xcode9.3
xcode_sdk: iphonesimulator11.2
script:
- bundle exec rake ci
| Make it work take: 2 | [CI/Release] Make it work take: 2
| YAML | apache-2.0 | Skyscanner/SkyFloatingLabelTextField,Skyscanner/SkyFloatingLabelTextField |
06fc26bd3220761167c912bb4a07cc4d8d3d7ac3 | .travis.yml | .travis.yml | language: ruby
env:
- TEST_CXX=1 TEST_NODE=1
- TEST_CXX=1 SUDO=1
- TEST_RUBY=1 TEST_RUBY_VERSION=1.8.7 TEST_RUBYGEMS_VERSION=1.8.25
- TEST_RUBY=1 TEST_RUBY_VERSION=1.9.3 TEST_USH=1
- TEST_NGINX=1 TEST_STANDALONE=1
- TEST_APACHE2=1
- TEST_SOURCE_PACKAGING=1
install: "true"
script: ./dev/ci/run_travis.sh
... | language: ruby
env:
- TEST_CXX=1 TEST_NODE=1
- TEST_CXX=1 SUDO=1
- TEST_RUBY=1 TEST_RUBY_VERSION=1.8.7-p374 TEST_RUBYGEMS_VERSION=1.8.25
- TEST_RUBY=1 TEST_RUBY_VERSION=1.9.3 TEST_USH=1
- TEST_NGINX=1 TEST_STANDALONE=1
- TEST_APACHE2=1
- TEST_SOURCE_PACKAGING=1
install: "true"
script: ./dev/ci/run_travi... | Adjust to updated Travis CI environment. | Adjust to updated Travis CI environment. | YAML | mit | phusion/passenger,clemensg/passenger,phusion/passenger,phusion/passenger,clemensg/passenger,clemensg/passenger,clemensg/passenger,phusion/passenger,phusion/passenger,clemensg/passenger,phusion/passenger,phusion/passenger,phusion/passenger,clemensg/passenger,clemensg/passenger,clemensg/passenger |
223a248fb7fd4c8a6611084cee47c0ee4e04db8a | .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 ... | # 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 ... | Add OpenJDK 12 to Travis builds. | Add OpenJDK 12 to Travis builds. | YAML | apache-2.0 | apache/commons-collections,apache/commons-collections,apache/commons-collections |
a1d993955980103948631a048db963cbe2b89f52 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
before_script:
- bower install | language: node_js
node_js:
- 0.8
before_script:
- bower install
- 'npm install -g grunt-cli'
- 'npm install -g karma-jasmine' | Build failing due to missing jasmine fmw? | Travis: Build failing due to missing jasmine fmw?
| YAML | mit | goliatone/gmodule |
0de1054fa5565661179195ddc23b9bed0e401687 | .travis.yml | .travis.yml | language: minimal
sudo: required
env:
matrix:
- OS_VERSION=6 OSG_VERSION=3.4
- OS_VERSION=7 OSG_VERSION=3.4
services:
- docker
before_install:
- sudo docker pull centos:centos${OS_VERSION}
script:
# Run tests in Container
- sudo docker run --rm=true -v `pwd`:/osg-configure:rw centos:centos${OS_VERSION} /... | language: minimal
sudo: required
env:
matrix:
- OS_VERSION=7 OSG_VERSION=3.5
services:
- docker
before_install:
- sudo docker pull centos:centos${OS_VERSION}
script:
# Run tests in Container
- sudo docker run --rm=true -v `pwd`:/osg-configure:rw centos:centos${OS_VERSION} /bin/bash /osg-configure/tests/tes... | Drop el6 from CI and use 3.5 | Drop el6 from CI and use 3.5
| YAML | apache-2.0 | matyasselmeci/osg-configure,opensciencegrid/osg-configure,opensciencegrid/osg-configure,matyasselmeci/osg-configure |
e9895fa401332640f87979f350d4fa48c9138fa3 | .travis.yml | .travis.yml | language: cpp
branches:
only:
- master
compiler:
- gcc
- clang
env:
- VARIANT=debug
- VARIANT=release
before_install:
- sudo apt-get update -qq
- wget https://github.com/boostorg/build/raw/develop/src/contrib/boost.jam -O ~/boost.jam
- echo -e 'import boost ;\nboost.use-project ;\n using gcc ;\n... | language: cpp
compiler:
- gcc
- clang
env:
- VARIANT=debug
- VARIANT=release
before_install:
- sudo apt-get update -qq
- wget https://github.com/boostorg/build/raw/develop/src/contrib/boost.jam -O ~/boost.jam
- echo -e 'import boost ;\nboost.use-project ;\n using gcc ;\n using clang ;' > ~/user-config.... | Speed up Travis CI runs | Speed up Travis CI runs
Run two compile jobs in parallel.
Download lcov 1.11 so it is possible to collect coverage statistics on only files of interest.
| YAML | apache-2.0 | rogiervd/meta,rogiervd/meta |
68c75620edba316ccc800296d8056be598e0923e | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
script: "cd FrontEnd && mvn test && cd ../Scanner && mvn test"
| language: java
jdk: oraclejdk8
script: "cd FrontEnd && mvn -Dmaven.test.skip=true package && cd ../Scanner && mvn -Dmaven.test.skip=true package"
| Change Travis script to only build the project withought running the unit tests because they require connection to DB that does not provide a public IP. | Change Travis script to only build the project withought running the unit tests because they require connection to DB that does not provide a public IP.
| YAML | apache-2.0 | IrimieBogdan/DistributedMonitoring,IrimieBogdan/DistributedMonitoring,IrimieBogdan/DistributedMonitoring |
55cb28a9627e2ce13c9cfe4d409dc86fefd32ac9 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.6
- 1.7
- 1.8
os:
- linux
cache:
directories:
- $HOME/.cache
before_install:
- export CACHE=$HOME/.cache
- mkdir -p $CACHE
# Fetch the Go Appengine SDK
- export FILE=$(curl https://storage.googleapis.com/appengine-sdks/ | grep -o 'go_appengine_sdk_linux_amd64-... | sudo: false
language: go
go:
- 1.7
- 1.8
os:
- linux
cache:
directories:
- $HOME/.cache
before_install:
- export CACHE=$HOME/.cache
- mkdir -p $CACHE
# Fetch the Go Appengine SDK
- export FILE=$(curl https://storage.googleapis.com/appengine-sdks/ | grep -o 'go_appengine_sdk_linux_amd64-[^\<]*' ... | Drop support for Go 1.6. | Drop support for Go 1.6.
| YAML | apache-2.0 | bramp/myip,bramp/myip,bramp/myip |
cde62cf9114e16f0afb182ea6b10e29a5af7e851 | .travis.yml | .travis.yml | language: rust
matrix:
include:
- os: linux
rust: stable
dist: trusty
- os: linux
rust: nightly
dist: trusty
- os: osx
rust: stable
- os: osx
rust: nightly
script:
- rustc --version
- cargo install clippy || touch clippy_failed
- RUST_BACKTRACE=1 cargo build
... | language: rust
matrix:
include:
- os: linux
rust: stable
dist: trusty
- os: linux
rust: nightly
dist: trusty
- os: osx
rust: stable
- os: osx
rust: nightly
script:
- rustc --version
- cargo install clippy || touch clippy_failed
- RUST_BACKTRACE=1 cargo build
... | Test C interface as well | Test C interface as well
| YAML | mit | GuillaumeGomez/sysinfo,GuillaumeGomez/sysinfo |
5050301ace4d47ece47fa0c5ff8be9fbab1d9c60 | .travis.yml | .travis.yml | language: java
jdk:
# - openjdk6
# - oraclejdk7
# - oraclejdk8
- openjdk7
before_install:
- mvn install -DskipTests=true -e
script:
- mvn test -X
after_success:
- mvn clean cobertura:cobertura coveralls:report -P ci
branches:
except:
- gh-pages
| language: java
jdk:
# - openjdk6
# - oraclejdk7
# - oraclejdk8
- openjdk7
before_install:
- mvn install -DskipTests=true -e -B
script:
- mvn test -B
after_success:
- mvn clean cobertura:cobertura coveralls:report -B -P ci
branches:
except:
- gh-pages
| Make Maven build on Travis less verbose | Make Maven build on Travis less verbose
| YAML | mit | sarxos/webcam-capture,sarxos/webcam-capture,sarxos/webcam-capture,sarxos/webcam-capture,sarxos/webcam-capture |
247373d7d66532a9bc2d2bc6646405a83ebe0125 | .travis.yml | .travis.yml | language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
env:
global:
- KAFKA_PEERS=localhost:9091,localhost:9092,localhost:9093,localhost:9094,localhost:9095
- TOXIPROXY_ADDR=http://localhost:8474
- KAFKA_INSTALL_ROOT=/home/travis/kafka
- KAFKA_HOSTNAME=localhost
- DEBUG=true
matrix:
- KAFKA_VERSION=1.1.1 KAFKA_SC... | language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
env:
global:
- KAFKA_PEERS=localhost:9091,localhost:9092,localhost:9093,localhost:9094,localhost:9095
- TOXIPROXY_ADDR=http://localhost:8474
- KAFKA_INSTALL_ROOT=/home/travis/kafka
- KAFKA_HOSTNAME=localhost
- DEBUG=true
matrix:
- KAFKA_VERSION=2.0.1 KAFKA_SC... | Remove Kafka 1.1.0 from CI matrix | Remove Kafka 1.1.0 from CI matrix
| YAML | mit | DataDog/sarama,Shopify/sarama,DataDog/sarama,VividCortex/sarama,Shopify/sarama,VividCortex/sarama |
84105a2a551ba08215c825ef78d7e8993ae8ba92 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
sudo: false
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- bundle exec rake test_app
script:
- bundle exec rspec spec
| language: ruby
rvm:
- 2.1
- 2.2
- ruby-head
matrix:
allow_failures:
- rvm: 2.2
- rvm: ruby-head
sudo: false
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- bundle exec rake test_app
script:
- bundle exec rspec spec
| Add ruby 2.2 to build matrix. | Add ruby 2.2 to build matrix.
| YAML | bsd-3-clause | mysmallidea/spree_editor,spree-contrib/spree_editor,jdar/spree_admin_s3,elia/spree_editor,spree-contrib/spree_editor,mysmallidea/spree_editor,jdar/spree_admin_s3,mysmallidea/spree_editor,elia/spree_editor,spree-contrib/spree_editor,jdar/spree_admin_s3,elia/spree_editor |
22b86e0af8bb16d7ce9df33c09fec787f85a0a6c | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
#install:
# - npm -g install yarn
# - yarn
#before_script:
# - export TZ=Europe/Madrid
script: npm run travis
#after_success:
# - 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls'
#cache:
# directories:
# - ~/.yarn
# - ~/.nvm
| language: node_js
node_js:
- "stable"
install:
- npm -g install yarn
- yarn
before_script:
- export TZ=Europe/Madrid
script: npm run travis
after_success:
- 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls'
cache:
directories:
- ~/.yarn
- ~/.nvm
| Revert Travis CI config simplification | Revert Travis CI config simplification
| YAML | mit | guigrpa/jest-html,guigrpa/jest-html |
de853eb2d77880a446575230303dbaeaa5309b40 | .travis.yml | .travis.yml | os:
- linux
- osx
language: go
addons:
artifacts:
paths:
- maputnik
install:
- nvm install 6
- nvm use 6
- go get github.com/fsnotify/fsnotify
- go get github.com/gorilla/handlers
- go get github.com/gorilla/mux
- go get github.com/gorilla/websocket
- go get github.com/urfave/cli
- go get github.com/elazarl/g... | os:
- linux
- osx
language: go
go:
- 1.7.x
addons:
artifacts:
paths:
- maputnik
install:
- nvm install 6
- nvm use 6
- go get github.com/fsnotify/fsnotify
- go get github.com/gorilla/handlers
- go get github.com/gorilla/mux
- go get github.com/gorilla/websocket
- go get github.com/urfave/cli
- go get github.c... | Use Go 1.7 explicitely in Travis | Use Go 1.7 explicitely in Travis
| YAML | mit | maputnik/desktop |
5ac0cfbbb7513632984e4a801b9ce995ee8f4821 | .travis.yml | .travis.yml | sudo: required
language: python
python:
- 3.6
services:
- docker
install:
# Setup a development virtual environment
- make director-venv
before_script:
# Download Codeclimate test reporter
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
... | sudo: required
language: python
python:
- 3.6
services:
- docker
install:
# Setup a development virtual environment
- make director-venv
before_script:
# Download Codeclimate test reporter
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
... | Update Travis config to check that notif now work | Update Travis config to check that notif now work
| YAML | apache-2.0 | stencila/hub,stencila/hub,stencila/hub,stencila/hub,stencila/hub |
8ba08bb3d7baed4ae61c107417cf91b4759264c9 | .travis.yml | .travis.yml | language: python
python:
- 2.7
before_install:
- sudo apt-get install expect
- git clone --depth=1 -b master git://github.com/neovim/neovim nvim
- cd /opt && sudo git clone --depth=1 git://github.com/tarruda/neovim-deps && cd -
install:
- pip install .
- prefix="/opt/neovim-deps"
- eval $($prefix/bin/luar... | language: python
python:
- 2.7
before_install:
- sudo apt-get install expect
- git clone --depth=1 -b master git://github.com/neovim/neovim nvim
- cd /opt && sudo git clone --depth=1 git://github.com/neovim/deps neovim-deps && cd -
install:
- pip install .
- prefix="/opt/neovim-deps"
- eval $($prefix/bin/... | Fix URL of prebuilt neovim dependencies | Fix URL of prebuilt neovim dependencies
| YAML | apache-2.0 | 0x90sled/python-client,bfredl/python-client,fwalch/python-client,brcolow/python-client,0x90sled/python-client,traverseda/python-client,justinmk/python-client,bfredl/python-client,brcolow/python-client,meitham/python-client,zchee/python-client,neovim/python-client,starcraftman/python-client,Shougo/python-client,zchee/py... |
2ec5fcadd8564deb57b9dc47a2073bd7c86c906f | .travis.yml | .travis.yml | language: ruby
cache: bundler
dist: xenial
bundler_args: --without development
matrix:
include:
- rvm: 2.3
- rvm: 2.4
- rvm: 2.5
- rvm: 2.6
env: NIO4R_PURE=true
- rvm: 2.6
- rvm: 2.6
os: osx
- rvm: truffleruby
- rvm: truffleruby
env: NIO4R_PURE=true
- rvm: jruby
... | language: ruby
cache: bundler
dist: xenial
bundler_args: --without development
matrix:
include:
- rvm: 2.3
- rvm: 2.4
- rvm: 2.5
- rvm: 2.6
env: NIO4R_PURE=true
- rvm: 2.6
- rvm: 2.6
os: osx
- rvm: truffleruby
env: TRUFFLERUBY_RECOMPILE_OPENSSL=true
- rvm: trufflerub... | Set TRUFFLERUBY_RECOMPILE_OPENSSL to workaround OpenSSL issues | Set TRUFFLERUBY_RECOMPILE_OPENSSL to workaround OpenSSL issues
* See https://github.com/oracle/truffleruby/issues/1676
| YAML | mit | celluloid/nio4r,celluloid/nio4r,celluloid/nio4r |
6583dbaf6fdc7a16ea085f3f39a5d907f677466a | .travis.yml | .travis.yml | language: python
python:
- 2.7
# command to install dependencies
install:
- pip install -r requirements.txt
- python setup.py build_ext --inplace
# command to run tests
script: nosetests
| language: python
python:
- 2.7
before_install:
- sudo apt-get install gfortran libopenblas-dev liblapack-dev
# command to install dependencies
install:
- pip install -r requirements.txt
- python setup.py build_ext --inplace
# command to run tests
script: nosetests
| Install blas and lapack for scipy | Install blas and lapack for scipy
Travis CI failed because blas and lapack were not available. Updated
.travis.yml to install these packages.
| YAML | apache-2.0 | NLeSC/cptm,NLeSC/cptm |
9690f9d3116431817bf6d7a08eba027fa0e8afe1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
- "7"
- "6"
script:
- npm run build
| language: node_js
node_js:
- "10"
- "9"
- "8"
script:
- npm run build
| Tweak Travis CI node environments | Tweak Travis CI node environments
| YAML | mit | ohtomi/react-whiteboard,ohtomi/react-whiteboard |
6a7a4b8a794635adc1e64128b85f98262777d08c | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
sudo: false
script:
- npm install
- npm test
- npm run coverage-report || true | sudo: false
language: node_js
node_js: stable
script:
- npm install
- npm test
- npm run coverage-report || true
| Use stable Node.js version for Travis | Use stable Node.js version for Travis | YAML | mit | Andersos/fodselsnummer |
0ab1d2fbc09d9956a3d2d7916d1f9946ee3eb1d8 | .travis.yml | .travis.yml | language: php
php:
- '7.0'
- nightly
services:
- postgresql
addons:
postgresql: "9.2"
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini
- echo "no" | pecl install apcu-5.1.3
script:
- ./bin/test | language: php
php:
- '7.0'
- nightly
services:
- postgresql
addons:
postgresql: "9.2"
cache:
directories:
- $HOME/.composer/cache
before_install:
- if [[ "$TRAVIS_PHP_VERSION" != 7* ]]; then phpenv config-rm xdebug.ini; fi
- echo "no" | pecl install apcu-5.1.3
script:
- ./bi... | Fix "The command "phpenv config-rm xdebug.ini" failed and exited with 1 during ." | Fix "The command "phpenv config-rm xdebug.ini" failed and exited with 1 during ." | YAML | mit | plachance/simple-time-tracker,plachance/simple-time-tracker,plachance/simple-time-tracker,plachance/simple-time-tracker |
13e70a7da491f7c84726cab495e4fb912d67ccfe | .travis.yml | .travis.yml | language: go
go:
- 1.3
install:
- make memcached
- make
script:
- make simplepush
before_deploy:
- mkdir -p build
- gzip simplepush
- cp simplepush.gz build/simplepush-linux-$TRAVIS_BRANCH-$TRAVIS_COMMIT.gz
deploy:
provider: s3
access_key_id: AKIAJPJ3YT7MAF55UGDA
secret_access_key:
secure: Iyc3eLG0H/pFot1eNds... | language: go
go:
- 1.3
install:
- make memcached
- make
script:
- make simplepush
before_deploy:
- mkdir -p build/server
- gzip simplepush
- cp simplepush.gz build/server/simplepush-linux-$TRAVIS_BUILD_NUMBER-$TRAVIS_COMMIT.gz
deploy:
provider: s3
access_key_id: AKIAJPJ3YT7MAF55UGDA
secret_access_key:
secure:... | Tweak to upload to a simplepush-server folder on S3. | Tweak to upload to a simplepush-server folder on S3.
| YAML | mpl-2.0 | jrconlin/pushgo,jrconlin/pushgo,mozilla-services/pushgo,mozilla-services/pushgo |
0417404fee731db06c5c445a012a9f397d0edaa0 | .travis.yml | .travis.yml | before_install:
- sudo chmod 755 ./vendor/bin/youtube-dl
- sudo apt-get update -qq
rvm:
- 1.9.3 # EOL, but still supporting
- 2.0.0 # Oldest stable
- 2.2.3 # Current stable
- jruby-head # JRuby
- rbx-2 # Rubinius
cache: bundler
matrix:
allow_failures:
rvm:
- jruby-head
notifications:
slack: layer8x:cvix... | before_install:
- sudo chmod 755 ./vendor/bin/youtube-dl
- sudo apt-get update -qq
rvm:
- 1.9.3 # EOL, but still supporting
- 2.0.0 # Oldest stable
- 2.2.3 # Current stable
- jruby-head # JRuby
- rbx-2 # Rubinius
cache: bundler
matrix:
allow_failures:
- rvm: jruby-head
notifications:
slack: layer8x:cvixULdjCI... | Use the correct allow_failures syntax. | Use the correct allow_failures syntax.
| YAML | mit | layer8x/youtube-dl.rb |
105403a35a76cfba38728ea4cda9d4911814f324 | .travis.yml | .travis.yml | before_install: bundle init --gemspec=.gemspec
script: bacon -q -Ilib -I. test/*_test.rb
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx
| before_install: bundle init --gemspec=.gemspec
script: bacon -q -Ilib -I. test/*_test.rb
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby
- rbx
| Test on Ruby 2 patched versions | Test on Ruby 2 patched versions | YAML | mit | cldwalker/hirb,pik/hirb |
204bc79686b1f05c4ea12edb2d279ab02882e525 | .travis.yml | .travis.yml | rvm:
- 2.6.3
- 2.5.5
- ruby-head
before_install:
- |
if [[ "$BUNDLER_VERSION" ]]
then
rvm @default,@global do gem uninstall bundler --all --executables
gem install bundler -v "$BUNDLER_VERSION"
fi
- bundle --version
matrix:
- BUNDLE_GEMFILE=$PWD/gemfiles/Gemfile.rails-2.x
- BUNDLE_GEM... | rvm:
- 2.6.3
- ruby-head
gemfile:
- gemfiles/Gemfile.rails-2.x
- gemfiles/Gemfile.rails-3.x
- gemfiles/Gemfile.rails-4.x
- Gemfile
notifications:
recipients:
- jarmo@jarmopertman.com
matrix:
allow_failures:
- rvm: ruby-head
| Remove Ruby 2.5.5 from Travis build since it errors out | Remove Ruby 2.5.5 from Travis build since it errors out
| YAML | mit | watir/watir-rails |
88c8b6de8c49cfdcd77671e480fdac0d604ea382 | .travis.yml | .travis.yml | language: python
cache:
pip: true
directories:
- $HOME/.m2
- $HOME/.cache/bower/
python:
- "3.4"
- "3.5"
env:
# the Django version from requirements.txt is used
- $DENV=""
# the latest Django stable version is used
- $DENV="pip install --upgrade Django"
# the latest Django development ver... | language: python
cache:
pip: true
directories:
- $HOME/.m2
- $HOME/.cache/bower/
python:
- "3.4"
- "3.5"
env:
# the Django version from requirements.txt is used
- $DENV=""
# the latest Django stable version is used
- $DENV="pip install --upgrade Django"
# the latest Django development ver... | Add clothing app to coverage | Add clothing app to coverage
| YAML | agpl-3.0 | d120/pyophase,d120/pyophase,d120/pyophase,d120/pyophase |
228450b66b13347b683f61577b2d6f010e80420c | docs/antora.yml | docs/antora.yml | name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: '1.31'
nav:
- modules/ROOT/nav.adoc
| name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: ~
nav:
- modules/ROOT/nav.adoc
| Switch back the docs version | Switch back the docs version
| YAML | mit | tejasbubane/rubocop,rrosenblum/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,tejasbubane/rubocop |
be01c665bb7f9783893e88efc628346dbae6c7af | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk7
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install:
- ./gradlew assemble
before_script:
- echo -e "gradle.publish.key=$APIKEY\ngradle.publish.secret=$APISECRET" > $H... | language: java
sudo: false
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install:
- ./gradlew assemble
before_script:
- echo -e "gradle.publish.key=$APIKEY\ngradle.publish.secret=$APISECRET" > $H... | Move build to JDK 8 | Move build to JDK 8
| YAML | apache-2.0 | IntershopCommunicationsAG/gradle-release-plugins,IntershopCommunicationsAG/gradle-release-plugins |
1170adba74653d67fa90f2a1a24c00c5b6bd173d | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5"
- "6"
before_install:
- npm install react-addons-test-utils
| language: node_js
node_js:
- "4"
- "5"
- "6"
before_install:
- npm install react-addons-test-utils
addons:
code_climate:
repo_token: d72f1e1053fa2af89bef224409c23b0a2910e71bf7fd4cf4f1c73e96c84b427a
| Integrate code climate test coverage | Integrate code climate test coverage | YAML | mit | adamgruber/mochawesome-report-generator |
99476dd1efde01a7522308a19f7bef788ca7314f | .travis.yml | .travis.yml | language: ruby
install: bundle install --without integration --deployment --jobs=3 --retry=3
sudo: false
cache:
directories:
- vendor/bundle
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec rake travis
| language: ruby
sudo: false
bundler_args: --without integration --deployment --jobs=3 --retry=3
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec rake travis
| Switch Travis-CI bundler custom install with custom args | Switch Travis-CI bundler custom install with custom args | YAML | apache-2.0 | webtatic-cookbooks/yum-webtatic,webtatic-cookbooks/yum-webtatic |
3efa4e92ea9130d13d0711ed84209c4da805afb9 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.7
- 2.3.6
- 2.4.3
- 2.5.0
- ruby-head
sudo: false
matrix:
allow_failures:
- rvm: ruby-head
branches:
only:
- master
before_install:
- 'cp config/database.yml.sqlite3 config/database.yml'
- gem install bundler
before_script:
- 'RAILS_ENV=test bundle exec rake s... | language: ruby
rvm:
- 2.3.6
- 2.4.3
- 2.5.0
- ruby-head
sudo: false
matrix:
allow_failures:
- rvm: ruby-head
branches:
only:
- master
before_install:
- 'cp config/database.yml.sqlite3 config/database.yml'
- gem install bundler
before_script:
- 'RAILS_ENV=test bundle exec rake setup'
- ... | Drop to support Ruby 2.2 | Drop to support Ruby 2.2
| YAML | mit | fastladder/fastladder,fastladder/fastladder,id774/fastladder,fastladder/fastladder,id774/fastladder,id774/fastladder |
7bc8e6592a58a0feecd6c8f06a6f108d8899a487 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.2
- 2.3.0
env:
-
- ACTIVE_RECORD_VERSION=4.0.0
- ACTIVE_RECORD_VERSION=4.1.0
- ACTIVE_RECORD_VERSION=4.2.0
- ACTIVE_RECORD_VERSION=5.0.0
cache: bundler
before_install:
- gem update --system
- gem --version
script:
- 'bundle exec rake'
notifications:
email: false... | language: ruby
sudo: false
rvm:
- 2.2
- 2.3.0
env:
-
- ACTIVE_RECORD_VERSION=4.0.0
- ACTIVE_RECORD_VERSION=4.1.0
- ACTIVE_RECORD_VERSION=4.2.0
- ACTIVE_RECORD_VERSION=5.0.0
cache: bundler
before_install:
- gem update --system
- gem --version
- gem update bundler
- bundler --version
script:
- 'bu... | Update bundler before using it | Update bundler before using it
| YAML | mit | dtaniwaki/acts_as_hashids,dtaniwaki/acts_as_hashids |
86006b41483fdcfc3a37d2842e646fa94fc1e942 | .travis.yml | .travis.yml | language: rust
sudo: false
cache: cargo
# kcov dependencies (coverage)
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
- cmake
sources:
- kalakris-cmake
# Test the trains
rust:
- stable
- beta
- nightly
# build whitelist
branch... | language: rust
sudo: false
cache: cargo
# kcov dependencies (coverage)
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- zlib1g-dev
- libiberty-dev
- binutils-dev
- cmake
sources:
- kalakris-cmake
# Test the trains
rust:
- stable
-... | Build all the branches on Travis | Build all the branches on Travis
| YAML | apache-2.0 | jzhu98/telescope |
78f00a3de4fa8687bf010dbf0baeadab6fbb0c64 | .travis.yml | .travis.yml | language: c
sudo: false
env:
global:
- LUAROCKS=2.2.1
matrix:
- LUA=lua5.1
- LUA=lua5.2
- LUA=lua5.3
- LUA=luajit # latest stable version (2.0.3)
- LUA=luajit2.0 # current head of 2.0 branch
- LUA=luajit2.1 # current head of 2.1 branch
cache:
- apt
- /usr/local/share/lua
before_... | language: c
sudo: false
env:
global:
- LUAROCKS=2.2.1
matrix:
- LUA=lua5.1
- LUA=lua5.2
- LUA=lua5.3
- LUA=luajit # latest stable version (2.0.3)
- LUA=luajit2.0 # current head of 2.0 branch
- LUA=luajit2.1 # current head of 2.1 branch
cache:
- apt
- /usr/local/share/lua
before_... | Fix coveralls to only include moonscript files | Fix coveralls to only include moonscript files
| YAML | mit | losinggeneration/LunoPunk |
6dae5bd21b7cc644913714eb8e68d5b533d2ccdd | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.2.4
bundler_args: --without development --jobs=9 --retry=2 --quiet
before_script:
- cp config/config.yml.sample config/config.yml
- cp config/database.yml.sample config/database.yml
script:
- bundle exec rake db:migrate
- bundle exec rake spec
- bundle exec rake cucu... | language: ruby
sudo: false
git:
depth: 10
rvm:
- 2.2.4
bundler_args: --without development --jobs=9 --retry=2 --quiet
before_script:
- cp config/config.yml.sample config/config.yml
- cp config/database.yml.sample config/database.yml
script:
- bundle exec rake db:migrate
- bundle exec rake spec
- bun... | Set Travis CI git clone depth to 10 | Set Travis CI git clone depth to 10
| YAML | mit | tip4commit/tip4commit,tip4commit/tip4commit,tip4commit/tip4commit |
ddcafb6ebcdb8715b494590e8d86362dc2638acb | .travis.yml | .travis.yml | language: python
cache: pip
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
install: make bootstrap
script: make
branches:
except:
- /^v[0-9]/
after_success: coveralls
| language: python
cache: pip
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: make bootstrap
script: make
branches:
except:
- /^v[0-9]/
after_success: coveralls
| Remove PyPy from the build matrix for now. | Remove PyPy from the build matrix for now. | YAML | mit | uber/doubles |
e1ad02cc3087e604fb72277a387fbff4cb1b9133 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "3.5"
addons:
apt:
packages:
- git
env:
global:
- PYTHONPATH=$TRAVIS_BUILD_DIR/oq-engine:$TRAVIS_BUILD_DIR/oq-hazardlib
install:
- pip install -r requirements-py35-linux64.txt
- if [ "$(git ls-remote --heads https://github.com/gem/oq-hazardlib.git ${TRA... | sudo: false
language: python
python:
- "3.5"
addons:
apt:
packages:
- git
env:
global:
- PYTHONPATH=$TRAVIS_BUILD_DIR/oq-engine:$TRAVIS_BUILD_DIR/oq-hazardlib
install:
- pip install -r requirements-py35-linux64.txt
- if [ "$(git ls-remote --heads https://github.com/gem/oq-hazardlib.git ${TRA... | Make sure PYTHONPATH is not set when testing setup.py | Make sure PYTHONPATH is not set when testing setup.py
Former-commit-id: bbf4998fd71fb83c769a8737c78fdc5df4c5a8ca [formerly 0c6731c4e1e8e13b46f11f81ee19f0e2609b5be0] [formerly 0c6731c4e1e8e13b46f11f81ee19f0e2609b5be0 [formerly 5edc9205b1be7d8b511e1f9e81cee5acbb3c71a6]]
Former-commit-id: 9b8bee11ecc663adf820049126e145c... | YAML | agpl-3.0 | gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine |
0df63789b2ea0acf4153972d8de9f669b54a4946 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "1.2"
after_success: npm run coveralls
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
after_success: npm run coveralls
| Test io.js instead of a specific version | Test io.js instead of a specific version
| YAML | mit | jstransformers/jstransformer-pug,jstransformers/jstransformer-pug,jstransformers/jstransformer-jade,jstransformers/jstransformer-jade |
1a35ada803b07f67525b87faa95a9d0e9d3d6e2c | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.9
- 2.2.10
- 2.3.7
- 2.5.1
| language: ruby
rvm:
- 2.3
- 2.5
- 2.6
| Test with newer versions of Ruby. | Test with newer versions of Ruby.
| YAML | mit | mdub/clamp |
b9dc066789223deaf5a2d9521611d4275dddf150 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
os:
- linux
addons:
apt:
sources:
- llvm-toolchain-precise-3.8
packages:
- clang-3.9
- gcc-multilib
- flex
- bison
install:
- mkdir deps && cd deps
- git clone git://git.savannah.gnu.org/grub.git && cd grub
- ./aut... | language: cpp
compiler:
- clang
os:
- linux
addons:
apt:
sources:
- llvm-toolchain-precise-3.8
packages:
- clang-3.8
- gcc-multilib
- flex
- bison
install:
- mkdir deps && cd deps
- git clone git://git.savannah.gnu.org/grub.git && cd grub
- ./aut... | Use clang 3.8 instead of 3.9 | Use clang 3.8 instead of 3.9
| YAML | mit | feliwir/benny,feliwir/benny,feliwir/benny |
81223c123a7c4ed06b8a6a407223896dcde55d5b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install:
- rvm use 1.9.3
install:
- npm install -g grunt-cli
- npm install
- gem install --no-document jekyll "sass:3.2.0"
matrix:
fast_finish: true
| language: node_js
node_js:
- "0.10"
before_install:
- rvm use 1.9.3
install:
- npm install -g grunt-cli
- npm install
- gem install --no-document "jekyll:1.4.2" "sass:3.2.0"
matrix:
fast_finish: true
| Set Jekyll version to 1.4.2 in Travis. | Set Jekyll version to 1.4.2 in Travis.
v1.4.3 has a Windows bug.
| YAML | mit | Diaosir/ratchet,kkirsche/ratchet,mbowie5/playground2,ctkjose/ratchet-1,Holism/ratchet,wallynm/ratchet,hashg/ratchet,artemave/ratchet,coderstudy/ratchet,Samda/ratchet,jimjin/ratchet,AladdinSonni/ratchet,kujian/web-frame,cslgjiangjinjian/ratchet,AndBicScadMedia/ratchet,liangxiaojuan/ratchet,jamesrom/ratchet,asonni/ratche... |
4361e1f2ab67afac7d27bfa834c5beae9de58924 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/weppos/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- cd $TRAVIS_BUILD_DIR/dnsimple
- $HOME/gopath/bin/g... | sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/weppos/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- cd $TRAVIS_BUILD_DIR/dnsimple
- "$HOME/gopath/bin/goveralls -v -s... | Add notification to our internal slack channel | Add notification to our internal slack channel
| YAML | mit | aetrion/dnsimple-go,weppos/go-dnsimple |
171a80c3e11aa600e7e1d12fa863a1d03830fed6 | .travis.yml | .travis.yml | dist: trusty
language: cpp
compiler:
- clang
- gcc
addons:
apt:
packages:
- wget
- coreutils
- pkg-config
before_install:
- wget https://github.com/bazelbuild/bazel/releases/download/0.4.4/bazel_0.4.4-linux-x86_64.deb
- sudo dpkg -i bazel_0.4.4-linux-x86_64.deb
script:
- bazel b... | dist: trusty
language: cpp
compiler:
- clang
- gcc
addons:
apt:
packages:
- wget
- coreutils
- pkg-config
before_install:
- wget https://github.com/bazelbuild/bazel/releases/download/0.4.4/bazel_0.4.4-linux-x86_64.deb
- sudo dpkg -i bazel_0.4.4-linux-x86_64.deb
script:
- bazel b... | Set testing in CI to detailed | Set testing in CI to detailed
| YAML | mit | Foran/wsdl2cpp,Foran/wsdl2cpp |
bc8c86e0c377455839799edf97bb6f8ff80addf3 | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
cache:
directories:
- vendor/
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
notifications:
email: false
irc:
channels:
- "irc.iiens.net#Clicky"
on_success: change
on_failure: always
before_script:
- rm composer.lock
... | language: php
dist: trusty
sudo: false
cache:
directories:
- vendor/
php:
- 7.1
- 7.2
- 7.3
- 7.4
- nightly
notifications:
email: false
irc:
channels:
- "irc.iiens.net#Clicky"
on_success: change
on_failure: always
before_script:
- rm composer.lock
... | Test with PHP >= 7.1 | Test with PHP >= 7.1
| YAML | bsd-3-clause | fpoirotte/XRL |
af636ac79c9faa0f458a09f1b797b6892551db84 | .travis.yml | .travis.yml | language: "node_js"
node_js:
- 0.4
- 0.6
| language: "node_js"
node_js:
- 0.4
- 0.6
- 0.8
| Test on Node 0.8 using Travis CI. | Test on Node 0.8 using Travis CI.
| YAML | mit | jaredhanson/passport-oauth,matuszeman/passport-oauth |
a80bf5b92b8879ab98210e02cde2a7947dd90e21 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: go
go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- tip
services:
- rabbitmq
before_script: ./bin/ci/before_build.sh
script: make
matrix:
allow_failures:
- go: tip
notifications:
email:
- michael@rabbitmq.com
| sudo: required
dist: trusty
language: go
go:
- 1.6
- 1.7
- tip
services:
- rabbitmq
before_script: ./bin/ci/before_build.sh
script: make
matrix:
allow_failures:
- go: tip
notifications:
email:
- michael@rabbitmq.com
| Test against Go 1.6+ only | Test against Go 1.6+ only | YAML | bsd-2-clause | michaelklishin/rabbit-hole,michaelklishin/rabbit-hole |
fcc8366ce31d7f64135994bc33039234d2cba0db | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
# Runkit
- git clone https://github.com/zenovich/runkit.git
- sh -c "cd runkit && phpize && ./configure && make && sudo make install"
- echo "extension=runkit.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
# Composer
- curl -s http... | language: php
php:
- 5.4
- 5.5
before_script:
# Runkit
- git clone https://github.com/zenovich/runkit.git
- sh -c "cd runkit && phpize && ./configure && make && sudo make install"
- echo "extension=runkit.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
# Composer
- curl -s http... | Build against PHP versions ~5.4 and ~5.5. | Build against PHP versions ~5.4 and ~5.5.
| YAML | mit | phuedx/pinkerton |
157036a9d2d257479a9f7d696e6936e456d10f68 | .travis.yml | .travis.yml | language: clojure
lein: lein2
jdk:
- openjdk7
addons:
postgresql: "9.3"
before_script:
- createdb -e -U postgres -E UTF-8 -O $USER tamarack
- sudo apt-add-repository -y ppa:chris-lea/node.js
- sudo apt-get update -q
- sudo apt-get install phantomjs nodejs
- sudo npm install -g karma
- sudo npm install... | language: clojure
lein: lein2
jdk:
- openjdk7
addons:
postgresql: "9.3"
before_script:
- createdb -e -U postgres -E UTF-8 -O $USER tamarack
- sudo apt-add-repository -y ppa:chris-lea/node.js
- sudo apt-get update -q
- sudo apt-get install phantomjs nodejs
- sudo npm install -g karma
- sudo npm install... | Update binary location for karma on Travis | Update binary location for karma on Travis
| YAML | bsd-3-clause | mhallin/tamarack,mhallin/tamarack |
7b7566feae4662c260c7b4fa0b29d1056ee4eb3c | .travis.yml | .travis.yml | language: csharp
dist: trusty
sudo: required
mono: none
dotnet: 1.0.0-preview3-004056
solution: src/IterationZero.Core.sln
script:
- ./build.sh --quiet verify | language: csharp
dist: trusty
sudo: required
mono: none
dotnet: 1.0.0-preview3-004056
solution: src/IterationZero.Core.sln
before_script:
- chmod a+x ./build.sh
script:
- ./build.sh --quiet verify | Fix security for Travis build. | Fix security for Travis build.
| YAML | mit | iteration-zero/dotnet.core,iteration-zero/dotnet.core |
68ffe761a3c659cd66813b305cf24243ec580c10 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- rubinius-2
- rubinius-3
- rubinius
- jruby-1
- jruby
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx
- rbx-2
- jruby-1
- jruby
allow_failures:
- rvm: rbx
- rvm: rbx-2
| Remove unsupported by Travis MRI versions and allow failures for Rubinius, since it's broken on Travis | Remove unsupported by Travis MRI versions and allow failures for Rubinius, since it's broken on Travis
| YAML | mit | chaps-io/access-granted |
06e1dfded7d03622f8611e89c7b19c8b59a769ae | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- rbx
matrix:
allow_failures:
- rvm: rbx
cache: bundler
| language: ruby
rvm:
- 2.1.2
- 2.0.0
- 1.9.3
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
cache: bundler
| Update rbx string for Travis, Ruby 2.1.x version | Update rbx string for Travis, Ruby 2.1.x version
| YAML | mit | gregbeech/sandal |
ac9f17e779b955b11d6efcdff9351a659b176cb6 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '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'
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/supersede,bigeasy/supersede |
6d592a1b0f91593cc49d4a5a7e8fa12fb5de9f42 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer install --dev --prefer-source
script: ./bin/phpspec run
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
before_script:
- composer install --dev --prefer-source
script: ./bin/phpspec run
| Test PHP 5.6 and HHVM | Test PHP 5.6 and HHVM
| YAML | mit | thewilkybarkid/temporal-collections |
d65d91861e9f441821755677ace4c952763b3e2e | .travis.yml | .travis.yml | #
# This is the default Travis CI configuration.
#
# It uses a GitHub OAuth token when fetching composer dependencies
# to avoid IP-based API throttling.
#
# It also allows publication of artifacts via an additional build.
#
language: php
php: ["5.5", "hhvm"]
env:
global:
- ARCHER_PUBLISH_VERSION=5.5
- secu... | #
# This is the default Travis CI configuration.
#
# It uses a GitHub OAuth token when fetching composer dependencies
# to avoid IP-based API throttling.
#
# It also allows publication of artifacts via an additional build.
#
language: php
php: ["5.5"]
env:
global:
- ARCHER_PUBLISH_VERSION=5.5
- secure: "eNk... | Revert "Let's try HHVM again, why not." | Revert "Let's try HHVM again, why not."
This reverts commit 6aa52b5f0630c03adbbd8d9d187cc1b4f46715b7.
Composer can't detect a PHP version, at least on Travis:
https://travis-ci.org/recoilphp/recoil/jobs/16394188#L34
| YAML | mit | recoilphp/recoil,recoilphp/react |
352d664ae9c1e1d7d545bcd223e95734c9ccb440 | .travis.yml | .travis.yml | language: node_js
sudo: false
before_install:
- "export CODECLIMATE_REPO_TOKEN=75f11dd1965d32050fe735ad6c96f374d74f437651fd7a0ea31fbb021f6c36da"
install:
- "npm install grunt-cli codeclimate-test-reporter -g"
- "npm install"
script:
- "grunt ci"
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "iojs-v1"
- "... | language: node_js
sudo: false
before_install:
- "export CODECLIMATE_REPO_TOKEN=75f11dd1965d32050fe735ad6c96f374d74f437651fd7a0ea31fbb021f6c36da"
install:
- "npm install grunt-cli codeclimate-test-reporter -g"
- "npm install"
script:
- "grunt ci"
node_js:
- "0.10"
- "0.12"
- "4"
- "iojs-v1"
- "iojs-v2"... | Remove node v5 for now | Remove node v5 for now
| YAML | mit | tandrewnichols/indeed |
50ed0e71a6d21afe6b0350b012a61445859dfb29 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
- 0.9
- 0.10
branches:
only:
- master
before_install:
- npm install
script:
- "make test"
notifications:
email: true
| language: node_js
node_js:
- 0.10
- 0.11
- 0.12
- iojs-v1.0.4
- iojs-v2.0.2
- iojs-v3.0.0
branches:
only:
- master
before_install:
- npm install
script:
- "make test"
notifications:
email: true
| Remove testing for ancient versions of Node.js, add current ones. | Remove testing for ancient versions of Node.js, add current ones.
| YAML | mit | wilmoore/selectn,wilmoore/selectn.js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.