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 |
|---|---|---|---|---|---|---|---|---|---|
a75956eb0606e3f13492bf2419e132371fab3a87 | .travis.yml | .travis.yml | # Test configuration for Travis CI. See <https://travis-ci.org/>.
language: cpp
compiler:
- gcc
- clang
env:
global:
- OMP_NUM_THREADS=4
before_install:
- sudo apt-get update -qq
# Install OpenMPI and libprimesieve
install:
- sudo apt-get install -y openmpi-bin libopenmpi-dev
- rm -rf primesieve-mas... | # Test configuration for Travis CI. See <https://travis-ci.org/>.
language: cpp
compiler:
- gcc
- clang
env:
global:
- OMP_NUM_THREADS=4
before_install:
- sudo apt-get update -qq
# Install OpenMPI and libprimesieve
install:
- sudo apt-get install -y openmpi-bin libopenmpi-dev cppcheck
- rm -rf prime... | Add Cppcheck static C/C++ code analysis | Add Cppcheck static C/C++ code analysis | YAML | bsd-2-clause | kimwalisch/primecount,kimwalisch/primecount,kimwalisch/primecount |
40061bd142815579544d3be7239de610b8668538 | .travis.yml | .travis.yml | language: objective-c
matrix:
include:
- osx_image: xcode8.2
- osx_image: xcode8.1
before_install:
- gem install cocoapods --no-ri --no-rdoc
- gem install xcpretty --no-ri --no-rdoc
install:
- make deps
script:
- make ci
env:
- TRAVIS=1 | language: objective-c
matrix:
include:
- osx_image: xcode8.2
- osx_image: xcode8.1
- osx_image: xcode8
- osx_image: xcode7.3
- osx_image: xcode6.4
before_install:
- gem install cocoapods xcpretty --no-ri --no-rdoc
install:
- make deps
script:
- make ci
env:
- TRAVIS=1 | Add more version of xcode | Add more version of xcode
| YAML | mit | oleander/bitbar,oleander/bitbar,oleander/bitbar |
e3d6b9cee410c92b93cf845f48be85b65e5411c5 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.3.8"
- "2.4.5"
- "2.5.3"
- "ruby-head"
gemfile:
- gemfiles/rails_4.2.10.gemfile
- gemfiles/rails_5.1.6.gemfile
- gemfiles/rails_5.2.1.gemfile
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: "ruby-head"
script:
- cd test/dummy
- RAILS_ENV=test bundle exec r... | language: ruby
rvm:
- "2.3.8"
- "2.4.5"
- "2.5.3"
- "ruby-head"
gemfile:
- gemfiles/rails_4.2.10.gemfile
- gemfiles/rails_5.1.6.gemfile
- gemfiles/rails_5.2.1.gemfile
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: "ruby-head"
script:
- cd test/dummy
- RAILS_ENV=test bundle exec r... | Use schema:load instead of migrate in test script | Use schema:load instead of migrate in test script
| YAML | mit | RST-J/human_attribute_values,RST-J/human_attribute_values,RST-J/human_attribute_values |
a6db15eb97ccf5f225c75907cd2983fc09293add | .travis.yml | .travis.yml | script: "gem install foodcritic -v 1.4.0 && foodcritic -f any -t ~FC023 -t ~FC005 -t ~FC017 ."
rvm:
- 1.9.3
| script: "gem install foodcritic -v 1.4.0 && foodcritic -f any -t ~FC023 -t ~FC022 -t ~FC005 -t ~FC017 ."
rvm:
- 1.9.3
| Exclude false positive with foodcritic rule | Exclude false positive with foodcritic rule
| YAML | apache-2.0 | hopshadoop/chef-glassfish,realityforge/chef-glassfish,predictivelogic/chef-glassfish,hopshadoop/chef-glassfish,predictivelogic/chef-glassfish,realityforge/chef-glassfish,hopshadoop/chef-glassfish,predictivelogic/chef-glassfish,realityforge/chef-glassfish |
59e7fb95a9a315abc8b016eca2ba68e062708589 | .travis.yml | .travis.yml | language: cpp
before_install:
- sudo apt-get install gfortran
- sudo apt-get install bc
- sudo apt-get update -qq
- sudo apt-get install -qq libpcre3 libpcre3-dev gromacs
compiler:
- gcc
- clang
script:
- sudo sh devtools/ci/install.sh
- export OPENMM_INCLUDE_PATH=/usr/local/openmm/inclu... | language: cpp
before_install:
- sudo apt-get install gfortran
- sudo apt-get install bc
- sudo apt-get update -qq
- sudo apt-get install -qq libpcre3 libpcre3-dev gromacs
- sudo apt-get install libnetcdf-dev
- sudo apt-get install netcdf-bin
compiler:
- gcc
- clang
script:
- sudo sh ... | Make sure NetCDF package is built. | Make sure NetCDF package is built.
| YAML | mit | swails/omm_cphmd,swails/omm_cphmd,swails/omm_cphmd,swails/omm_cphmd |
9437ac86b76632319d32b4e6d258e99024a6e767 | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk7
- oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-23.0.2
- android-23
- extra-google-m2repository
- extra-android-m2repository
licenses:
- android-sdk-license-5be876d5
sudo: false
cache:
directories:
- $HOME/.gradle
| language: android
jdk:
- oraclejdk7
- oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-23.0.2
- android-23
- extra-google-m2repository
- extra-android-m2repository
licenses:
- android-sdk-license-5be876d5
sudo: false
before_cache:
- rm -f $HOME/.gradle/cache... | Fix so gradle cache not uploaded each build | Fix so gradle cache not uploaded each build
See https://docs.travis-ci.com/user/languages/java#Caching
Signed-off-by: Greg Meiste <8a8f45e57c045ec63dc7e56e5eda862ea8c7cd4f@gmail.com>
| YAML | apache-2.0 | meisteg/RaspberryPiTempAlarm,meisteg/RaspberryPiTempAlarm,meisteg/RaspberryPiTempAlarm |
9a8fc526ac8663a3d79a1434d1ba054836df79fa | .travis.yml | .travis.yml | git:
depth: 1
language: "rust"
notifications:
email: false
irc:
channels:
- "chat.freenode.net#ruma"
use_notice: true
script: "make ci"
services:
- "docker"
sudo: "required"
| before_install:
- "sudo rm /usr/local/bin/docker-compose"
- "curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose"
- "chmod +x docker-compose"
- "sudo mv docker-compose /usr/local/bin/"
env:
DOCKER_COMPOSE_VERSION: "1.7.1"
... | Install a newer version of Docker Compose on Travis. | Install a newer version of Docker Compose on Travis.
| YAML | mit | yblein/ruma,yblein/ruma |
27d697b323314c611fba87bbabc329501d982cba | .travis.yml | .travis.yml | language: node_js
node_js:
- '6.1'
- '5.11'
- '4.4'
- '0.12'
- '0.11'
- '0.10'
| language: node_js
node_js:
- '8'
- '7'
- '6.1'
- '5.11'
- '4.4'
- '0.12'
- '0.11'
- '0.10'
| Add v7 and v8 to the build matrix | [ci] Add v7 and v8 to the build matrix
| YAML | mit | bugsnag/bugsnag-node |
72f22dc1fc9b813f2f29df05ffbd4049e925ea2d | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
after_success:
- bundle exec codeclimate-test-reporter
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
after_success:
- bundle exec codeclimate-test-reporter
| Test with latest Ruby versions | Test with latest Ruby versions | YAML | mit | jbox-web/gh-preview,jbox-web/gh-preview |
cf315415356c26f72d8d1ae03bf62a6d0fbb67a2 | .travis.yml | .travis.yml | rvm:
- 2.1
cache:
- bundler
before_script:
- bundle exec berks install
script:
- bundle exec foodcritic -f correctness .
- bundle exec rubocop
- bundle exec rspec
branches:
only:
- master
| rvm:
- 2.1
cache:
- bundler
before_script:
- bundle exec berks install
script:
- bundle exec foodcritic -f correctness .
- bundle exec rubocop
- bundle exec rspec
branches:
only:
- master
sudo: false
| Update to use the Travis containers | Update to use the Travis containers
| YAML | apache-2.0 | Rud5G/chef-zf2,Rud5G/chef-zf2,Rud5G/chef-zf2 |
b36dee9121ceefa3d169ea8c1cbd962f6c2a90e2 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
before_install:
- mkdir tests/files
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then rm phpunit.xml; fi;'
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then mv phpunit.hhvm.xml phpunit.xml; fi;'
install:
- travis_retry compo... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
before_install:
- mkdir tests/files
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then rm phpunit.xml; fi;'
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then mv phpu... | Test against the highest and lowest dependencies | [Travis] Test against the highest and lowest dependencies
| YAML | mit | oswaldderiemaecker/flysystem,dstockto/flysystem,hannesvdvreken/flysystem,dshafik/flysystem,mhlavac/flysystem,sachintaware/flysystem,farmisen/flysystem,mhlavac/flysystem,nao-pon/flysystem,Amrit01/flysystem,sohelrana820/flysystem,twistor/flysystem,twistor/flysystem |
11d5bc30e387972e35c55eee9f638e7e8c7d5d09 | config.reek | config.reek | IrresponsibleModule:
enabled: false
UncommunicativeVariableName:
enabled: true
exclude: []
reject:
- !ruby/regexp /[0-9]$/
- !ruby/regexp /[A-Z]/
accept:
- _
# Removed " - !ruby/regexp /^.$/" to allow single character (frequent at loops and maps)
| IrresponsibleModule:
enabled: false
DuplicateMethodCall:
enabled: true
exclude: []
max_calls: 2
allow_calls: []
UncommunicativeVariableName:
enabled: true
exclude: []
reject:
- !ruby/regexp /[0-9]$/
- !ruby/regexp /[A-Z]/
accept:
- _
# Removed " - !ruby/regexp /^.$/" to allow single character (... | Allow 2 invocations to the same method | Allow 2 invocations to the same method
At least 2 is really useful for common scenarios of doing something with
a value if that value is present:
`my_hash['xxx'] = something.value if something.value`
| YAML | bsd-3-clause | splashblot/dronedb,CartoDB/cartodb,CartoDB/cartodb,splashblot/dronedb,CartoDB/cartodb,CartoDB/cartodb,CartoDB/cartodb,splashblot/dronedb,splashblot/dronedb,splashblot/dronedb |
7f01f0b451b2ab0d80015071012241c1a7719a2a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
script: python setup.py test
| language: python
python:
- "2.7"
- "pypy"
script: python setup.py test
| Remove python 2.6, add pypy | Remove python 2.6, add pypy
| YAML | mit | gosquadron/squadron,gosquadron/squadron |
fb5a22c60255a4a9397d0c6b0c09a041b6cbdd68 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
branches:
only:
- master
- develop
env:
global:
- secure: "P1byZUAJVawA9oURn3e5aNHC5c4VPSSwRzbuQl0RAsOvMP0BXeVU94BpU7/Qmi51O2zTuu3AaQ2y+l2o3EWwlzzBl45JCNnU8LUm9ggBhryb9BA9/E0p/v4aurLVdVJZjNapBxcUYr4tHJrVQiIOzM7JkCVYISppiMvqH2nEs9c="
before_install:
- npm install -g grunt-... | language: node_js
node_js:
- "0.10"
branches:
only:
- master
- develop
env:
global:
- secure: "LbcaSrPsBZEur3QqmGkzHz4b+vUfWmdV5nuO8zxGKDJiJGJdOrruEF8vDzS0hqJX6cFVpa73iBKbRdGNVHV4zjDw3jC3wSzplWa1ACzyJrO2DZi3tqbNYDLdclXRhIYrnru+iO9ThFPMNzoLGpJPgRLOfebnf2fixO4cJmtIEgU="
before_install:
- npm install -g grunt-... | Update GitHub token after revocation | Update GitHub token after revocation
| YAML | mit | hpe-idol/login-page,hpe-idol/login-page,hpe-idol/login-page,hpautonomy/login-page,hpautonomy/login-page,hpautonomy/login-page |
7f8a5ae3aad76454a217801305b915e4f9876200 | .travis.yml | .travis.yml | language: go
# TODO: test on 1.3 and 1.4 (or gotip?)
go:
- 1.3
install: go get -t -v ./...
script: go test github.com/alexandershov/goslow
| language: go
go:
- 1.3
- 1.4
- tip
install: go get -t -v ./...
script: go test github.com/alexandershov/goslow
| Test on go-1.4 and gotip | Test on go-1.4 and gotip
| YAML | mit | alexandershov/goslow,alexandershov/goslow |
5d905b4cf8e4c2857891cbce6ae6f5ec7b6e8758 | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- platform-tools
- build-tools-24.0.2
- android-24
- extra-android-m2repository
- sys-img-armeabi-v7a-android-18
jdk:
- oraclejdk8
before_script:
# Create and start an emulator for instrumentation tests.
- echo no | android create avd --f... | language: android
android:
components:
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- sys-img-armeabi-v7a-android-18
jdk:
- oraclejdk8
before_script:
# Create and start an emulator for instrumentation tests.
- echo no | android create avd --f... | Update the Travis script to download API 25 stuffs | Update the Travis script to download API 25 stuffs
| YAML | mit | fcostaa/kotlin-rxjava-android,fcostaa/kotlin-rxjava-android |
4bff5bc3131736e993d7b195dc365b0333640ff5 | .travis.yml | .travis.yml | language: python
# Run slow PyPy* first, to give them a headstart and reduce waiting time.
# Run latest 3.x and 2.x next, to get quick compatibility results.
# Then run the remainder.
python:
- "pypy"
- "pypy3"
- 3.5
- 2.7
- 2.6
- 3.2
- 3.3
- 3.4
- nightly
install:
- travis_retry pip install pillo... | language: python
python:
- pypy
- pypy3
- 3.5
- 2.7
- 3.2
- 3.3
- 3.4
- nightly
install:
- travis_retry pip install pillow
- travis_retry pip install -r testsuite/requirements.txt
script:
- cd testsuite
- ./run.py --help
- ./run.py convert
- ./run.py scale
- ./run.py blur
- ./run.py c... | Update command, allow 2.6 to fail | Update command, allow 2.6 to fail
| YAML | mit | python-pillow/pillow-perf,python-pillow/pillow-perf |
c069e30712e0f5298af67cdddd26994bb758f6d6 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
services:
- docker
node_js:
- '8.2.1'
cache:
directories:
- node_modules
- server/node_modules
env:
- NODE_ENV=production
install:
- npm install --dev
script:
- npm test
- npm run build
after_success:
- export REPO=martijnhols/wowanalyzer
- export TA... | sudo: required
dist: trusty
language: node_js
services:
- docker
node_js:
- '8.2.1'
cache:
directories:
- node_modules
- server/node_modules
env:
- NODE_ENV=production
install:
- npm install --dev
script:
- npm test
- npm run build
after_success:
- export REPO=martijnhols/wowanalyzer
- export TA... | Fix issue where PRs might get the wrong container tags | Fix issue where PRs might get the wrong container tags
| YAML | agpl-3.0 | yajinni/WoWAnalyzer,enragednuke/WoWAnalyzer,fyruna/WoWAnalyzer,anom0ly/WoWAnalyzer,FaideWW/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,yajinni/WoWAnalyzer,ronaldpereira/WoWAnalyzer,anom0ly/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,Juko8/WoWAnalyzer,hasseboulen/WoWAnalyzer,yajinni/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,Yuyz0112/WoWAnaly... |
603eeaef4a865714339f0d6b186aab3b17fdd350 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
matrix:
allow_failures:
- php: 5.6
sudo: false
services:
- redis-server
before_script:
- composer self-update
- composer install
script:
- phpunit
after_script:
- php vendor/bin/php-cs-fixer fix src/ --verbose --dry-run --diff | language: php
php:
- 7.4
- 8.0
sudo: false
services:
- redis-server
before_script:
- composer self-update
- composer install
script:
- phpunit
after_script:
- php vendor/bin/php-cs-fixer fix src/ --verbose --dry-run --diff | Update PHP version on TravisCI | Update PHP version on TravisCI
| YAML | mit | ada-u/chocoflake |
449716e933c8cd01d18bd842ae1d9a5ec2f72dbc | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| Build with Node.js 16 on Travis CI. | Build with Node.js 16 on Travis CI.
| YAML | mit | bigeasy/addendum,bigeasy/addendum |
c7099c53ce96f182aba1e752a6c3c0b47bc7b058 | .travis.yml | .travis.yml | language: python
# TODO: https://docs.travis-ci.com/user/multi-os/
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
- "pypy"
- "pypy3"
install:
- pip install coveralls
script: nosetests
after_success: coveralls
sudo: false
matrix:
allow_failures:
- python: 3.2 # Broke when ... | language: python
# TODO: https://docs.travis-ci.com/user/multi-os/
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
- "pypy"
- "pypy3"
install:
- pip install coveralls
script: nosetests
after_success: coveralls
sudo: false
matrix:
allow_failures:
- python: "3.2" # Broke whe... | Fix the "ignore 3.2 failures" commit | Fix the "ignore 3.2 failures" commit
(Forgot to quote "3.2" in the YAML)
| YAML | mit | ssokolow/get_user_headers |
3ca371106e598b87c11e669e17c32e16481540c1 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: c
compiler:
- clang
- gcc
addons:
apt:
packages:
- cmake
- libopenblas-dev
script:
- mkdir build
- cd build
- cmake ..
- cmake --build .
| sudo: required
dist: trusty
language: c
compiler:
- clang
- gcc-4.9
addons:
apt:
packages:
- cmake
- libopenblas-dev
script:
- mkdir build
- cd build
- cmake ..
- cmake --build .
| Update to gcc-4.9 for TravisCI | Update to gcc-4.9 for TravisCI
| YAML | mit | jnbraun/bcnn,jnbraun/bcnn |
ad323c76fffeb6c1e8193240ea575a7f59778ef4 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 0.8
before_install:
- npm install -g grunt-cli
| language: node_js
node_js:
- '0.10'
- '0.8'
before_install:
- npm install -g grunt-cli
| Use a string so 0.10 doesn't get interpreted as 0.1 | Use a string so 0.10 doesn't get interpreted as 0.1
| YAML | mit | goalzen/grunt-vows-runner |
3abb86374a491439e5303e44fbfb38b0b8c5d04e | .travis.yml | .travis.yml | language: python
python:
- '2.7'
before-install:
- pip install pytest pytest-cov
- pip install coveralls
script:
- py.test --doctest-modules --ignore setup.py --cov dabbiew
after_success:
- coveralls
cache:
- pip
| language: python
python:
- '2.7'
install:
- 'pip install -r requirements.txt --use-mirrors'
- 'pip install coveralls'
script:
- 'py.test --doctest-modules --ignore setup.py --cov dabbiew'
after_success:
- 'coveralls'
| Fix Travis CI build configuration | Fix Travis CI build configuration
| YAML | mit | agtumulak/dabbiew |
62219dc51179d0d27b4aaa4c4a1a06002a3c5123 | .travis.yml | .travis.yml | addons:
code_climate:
repo_token: 8a344833c6693733b163f09a5243fa12dd7be0b69f0358b146c64dd4becabc60
bundler_args: --jobs=3 --retry=3
cache: bundler
gemfile:
- gemfiles/Gemfile.rails-3.2.x
- gemfiles/Gemfile.rails-4.0.x
- Gemfile
- gemfiles/Gemfile.rails-4.2.x
language: ruby
matrix:
exclude:
- gemfile... | addons:
code_climate:
repo_token: 8a344833c6693733b163f09a5243fa12dd7be0b69f0358b146c64dd4becabc60
bundler_args: --clean --jobs=3 --retry=3
cache: bundler
gemfile:
- gemfiles/Gemfile.rails-3.2.x
- gemfiles/Gemfile.rails-4.0.x
- Gemfile
- gemfiles/Gemfile.rails-4.2.x
language: ruby
matrix:
exclude:
-... | Remove unused gems from cache after bundling for CI builds | Remove unused gems from cache after bundling for CI builds
| YAML | mit | AlbertoBarrago/active_scaffold,AlbertoBarrago/active_scaffold,activescaffold/active_scaffold,activescaffold/active_scaffold,mallikarjunayaddala/active_scaffold,mallikarjunayaddala/active_scaffold,activescaffold/active_scaffold,budree/active_scaffold,mallikarjunayaddala/active_scaffold,budree/active_scaffold,AlbertoBarr... |
e54c13fc0533258c459c937aad18287a58c5d217 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "6"
- "4"
before_script: npm run lint
script: npm run coveralls
| language: node_js
node_js:
- "node"
- "8"
- "6"
- "4"
before_script: npm run lint
script: npm run coveralls
| Add node v8 to CI. | Add node v8 to CI.
| YAML | mit | dashmug/webmerge-node |
07c6148e97a6f94623682a6acdd9fe216f79c2b5 | .travis.yml | .travis.yml | language: go
go:
- 1.13
- stable
| language: go
env:
- GO111MODULE=on
go:
- 1.11
- 1.12
- 1.13
- stable
| Drop go < 1.11 CI support due to go modules | Drop go < 1.11 CI support due to go modules
and update build go version matrix.
| YAML | mit | dweidenfeld/plexdrive,dweidenfeld/plexdrive |
0f4fe97e3820338e149d3a6c19c3e7e0fa180760 | .travis.yml | .travis.yml | language: rust
sudo: false
language: rust
rust:
- stable
- beta
- nightly
cache:
directories:
- $HOME/.cargo
- target
install:
- git clone https://github.com/facebook/rocksdb.git /tmp/rocksdb
- pushd /tmp/rocksdb
- git checkout v4.2
- make install-shared
before_script:
- |
pip install 'travis-c... | language: rust
sudo: false
language: rust
rust:
- stable
- beta
- nightly
cache:
directories:
- $HOME/.cargo
- target
install:
- git clone https://github.com/facebook/rocksdb.git /tmp/rocksdb
- pushd /tmp/rocksdb
- git checkout v4.2
- env CXX="g++-4.8" CC="gcc-4.8" make install-shared
before_script... | Use up to date versions of GCC. | Use up to date versions of GCC.
| YAML | mit | cstorey/chain-replication-experiment,cstorey/chain-replication-experiment |
ed28555a5777bb781b752b729585789cc382c66d | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install:
- wget http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb
- sudo dpkg -i influxdb_latest_amd64.deb
- sudo /etc/init.d/influxdb start
| language: node_js
node_js:
- "0.10"
- iojs
before_install:
- wget http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb
- sudo dpkg -i influxdb_latest_amd64.deb
- sudo /etc/init.d/influxdb start
| Test with io.js on Travis. | Test with io.js on Travis.
| YAML | isc | ceejbot/numbat-collector,numbat-metrics/numbat-collector |
5d64794a56e2dd155a821104da8ee29101452d99 | .travis.yml | .travis.yml | language: ruby
cache: bundler
jdk:
- openjdk7
rvm:
- 2.1.1
- 2.1.2
- jruby-19mode
- jruby-head
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- rename 's/\.yml.hudson$/\.yml/' config/*.yml.hudson
- RACK_ENV=test bundle ex... | language: ruby
cache: bundler
jdk:
- openjdk7
rvm:
- 2.1.1
- 2.1.2
- jruby-19mode
- jruby-head
services:
- postgresql
env: JRUBY_OPTS=--2.0
addons:
postgresql: "9.3"
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- rename 's/\.yml.hudson$/\.yml/' config/*.yml.hudson
- ... | Add jruby configuration for jruby build | Add jruby configuration for jruby build
| YAML | apache-2.0 | astopy/Panoptes,srallen/Panoptes,astopy/Panoptes,marten/Panoptes,astopy/Panoptes,parrish/Panoptes,marten/Panoptes,zooniverse/Panoptes,rogerhutchings/Panoptes,zooniverse/Panoptes,edpaget/Panoptes,zooniverse/Panoptes,srallen/Panoptes,edpaget/Panoptes,camallen/Panoptes,parrish/Panoptes,marten/Panoptes,astopy/Panoptes,zoon... |
31a34fe62c61bca618609d8c6c979224f98412ac | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "cp ./config/travis_database.yml database.yml"
- "bundle exec rake db:migrate"
- "bundle exec rake db:test:prepare"
| language: ruby
rvm:
- 1.9.3
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "cp ./config/travis_database.yml ./config/database.yml"
- "bundle exec rake db:migrate"
- "bundle exec rake db:test:prepare"
| Fix route for database.yml in Travis | Fix route for database.yml in Travis
| YAML | mit | crowdint/blog.crowdint.com,crowdint/blog.crowdint.com,crowdint/blog.crowdint.com,Angelguardianmx/angelguardian-mx,Angelguardianmx/angelguardian-mx,crowdint/blog.crowdint.com,Angelguardianmx/angelguardian-mx |
272c2e38f47e922b96ec20b5b32dea33a290808e | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs-v2.3.1"
cache:
directories:
- node_modules
after_success:
- 'cat ./coverage/lcov.info | ./node_modules/.bin/codecov'
addons:
apt:
packages:
- time
sudo: false
| language: node_js
node_js:
- "4.1"
cache:
directories:
- node_modules
after_success:
- 'cat ./coverage/lcov.info | ./node_modules/.bin/codecov'
addons:
apt:
packages:
- time
sudo: false
| Test on more recent versions of node.js | Test on more recent versions of node.js
| YAML | mit | mathphreak/ReliefValve,mathphreak/ReliefValve |
0b08094cf7268b9dd0b6c4ab48a9388568213e1a | .travis.yml | .travis.yml | env:
- GHCVER=7.0.4
- GHCVER=7.2.2
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.1
- GHCVER=head
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update -qq
- sudo apt-get install -qq cabal-install-1.18 ghc-$GHCVER
- export PATH="/opt/ghc/$GHCVER/bin:$PATH"
install:
- cabal-1.18 update
... | env:
- GHCVER=7.0.4
- GHCVER=7.2.2
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.2
- GHCVER=head
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update -qq
- sudo apt-get install -qq cabal-install-1.18 ghc-$GHCVER
- export PATH="/opt/ghc/$GHCVER/bin:$PATH"
install:
- cabal-1.18 update
... | Test with GHC 7.8.2 instead of 7.8.1. | Test with GHC 7.8.2 instead of 7.8.1.
| YAML | bsd-3-clause | haskell-opengl/OpenGLRaw,phaazon/OpenGLRaw,mfpi/OpenGLRaw |
ed8517917613e3b0469fb067f22cbf79d1d1c50b | .travis.yml | .travis.yml | dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- wget
- pkg-config
before_install:
- wget https://github.com/bazelbuild/bazel/releases/download/0.3.1/bazel_0.3.1-linux-x86_64.deb
- sudo dpkg -i bazel_0.3.1-linux-x86_64.deb
script:
- bazel build ...
| dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- wget
- pkg-config
before_install:
- wget https://github.com/bazelbuild/bazel/releases/download/0.9.0/bazel_0.9.0-linux-x86_64.deb
- sudo dpkg -i bazel_0.9.0-linux-x86_64.deb
script:
- bazel build ...
| Update to latest bazel version. | Update to latest bazel version.
| YAML | apache-2.0 | google/cel-spec,google/cel-spec |
2339e606b80a7a6d01986d48147d7a9682b3c918 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5"
- "6"
script:
- npm run test
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: node_js
node_js:
- "6"
- "7"
- "8"
script:
- npm run test
after_success:
- bash <(curl -s https://codecov.io/bash)
| Update Travis to use modern Node | chore: Update Travis to use modern Node
| YAML | mit | reactabular/treetabular |
6becc2e4484da523db6a018865d77750c92f2c23 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
install:
- bundle install --without vagrant
- bundle exec berks install
script:
- bundle exec rake travis
| language: ruby
rvm:
- 2.1
install:
- bundle install --without vagrant
- bundle exec berks install
script:
- bundle exec rake travis
| Update to test on Ruby v2.1 | Update to test on Ruby v2.1
| YAML | apache-2.0 | evertrue/archiva-cookbook,evertrue/archiva-cookbook,evertrue/archiva-cookbook |
780bb623ce24584d110486d7f4cc033397eb4469 | .travis.yml | .travis.yml | language: ruby
sude: false
cache: bundler
before_install:
- gem update --system # use the very latest Rubygems
- gem install bundler # use the very latest Bundler
script:
- bundle exec rake test
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
gemfile:
- gemfiles/rails4.1.gemfile
- gemfiles/rails4.2.gemfile
- gemfiles/... | language: ruby
sude: false
cache: bundler
before_install:
- gem update --system # use the very latest Rubygems
- gem install bundler # use the very latest Bundler
script:
- bundle exec rake test
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
gemfile:
- gemfiles/rails4.1.gemfile
- gemfiles/rails4.2.gemfile
- gemfiles/... | Add Rails 5.1 and 5.2 builds | Add Rails 5.1 and 5.2 builds
| YAML | mit | javierjulio/salesforce_bulk |
45648bea54c8be6f198d0c298b536c2d5f8cd53a | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.1
- 7.2
env:
global:
- coverage=no
matrix:
- setup=basic
- setup=lowest
- setup=stable
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-d... | language: php
sudo: false
php:
- 7.1
- 7.2
- nightly
env:
global:
- coverage=no
matrix:
- setup=basic
- setup=lowest
- setup=stable
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer instal... | Update to test on php nightly. | Update to test on php nightly.
Signed-off-by: Mior Muhammad Zaki <e1a543840a942eb68427510a8a483282a7bfeddf@gmail.com>
| YAML | mit | orchestral/messages |
63baa17d2a55d559d6f99f52859e6926c4ceda80 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: cpp
os: linux
compiler:
- gcc
- clang
addons:
apt:
packages:
- libboost-all-dev
before_script:
- mkdir build
script:
- cd build
- cmake -DCMAKE_VERBOSE_MAKEFILE=ON ..
- make -j 2
- make test
| sudo: false
dist: trusty
language: cpp
os: linux
compiler:
- gcc
- clang
addons:
apt:
packages:
- libboost-all-dev
matrix:
include:
- os: osx
compiler: clang
env: CONFIG=Release
before_script:
- mkdir build
script:
- cd build
- cmake -DC... | Enable OS X build on Travis-CI | Enable OS X build on Travis-CI
Only Release builds are tested
since this build image is limited on Travis-CI (long queues).
| YAML | bsd-3-clause | andrewprock/pokerstove,andrewprock/pokerstove,andrewprock/pokerstove,andrewprock/pokerstove |
4447086b3de708b8bedda5ff7e2d1141e22387bf | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk8
script: mvn clean package
env:
global:
- JAVA_OPTS="-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Xmn48M -Xmx512M"
- NUM_THREADS=2
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/969b5598af30afd3e0a2
on_success: always
on_... | language: java
sudo: false
jdk:
- oraclejdk8
script: mvn clean package
env:
global:
- JAVA_OPTS="-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Xmn48M -Xmx512M"
- NUM_THREADS=2
- NODE_VERSION="8.11.3"
before_install:
- nvm install $NODE_VERSION
- nvm install -g @angular/cli
notifications:
w... | Include angular dependencies in pom | Include angular dependencies in pom | YAML | apache-2.0 | PDXFinder/pdxfinder,PDXFinder/pdxfinder,PDXFinder/pdxfinder,PDXFinder/pdxfinder |
482f21d40e9dcfb7fecc2b3de0fd568685888cec | .travis.yml | .travis.yml | language: node_js
node_js: 7
addons:
ssh_known_hosts: kotlin.link
apt:
packages:
- oracle-java8-installer
- oracle-java8-set-default
before_script:
- npm test
- openssl aes-256-cbc -K $encrypted_83630750896a_key -iv $encrypted_83630750896a_iv -in deploy@morty.enc -out ~/.ssh/deploy@morty -d
- ... | language: node_js
node_js: 7
addons:
ssh_known_hosts: kotlin.link
apt:
packages:
- oracle-java8-installer
- oracle-java8-set-default
before_script:
- npm test
- openssl aes-256-cbc -K $encrypted_83630750896a_key -iv $encrypted_83630750896a_iv -in deploy@morty.enc -out ~/.ssh/deploy@morty -d
- ... | Set java 8 to default. | Set java 8 to default.
| YAML | apache-2.0 | KotlinBy/awesome-kotlin,KotlinBy/awesome-kotlin,KotlinBy/awesome-kotlin,KotlinBy/awesome-kotlin |
3ad1e45cc00bb23924a50bf14a6104beea36af91 | .travis.yml | .travis.yml | dist: xenial
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
before_install:
- sudo apt-get install -y net-tools
install:
- pip install -U pip codecov tox tox-travis
script:
- tox
after_success:
- codecov
| dist: xenial
language: python
matrix:
include:
- python: "2.7"
- python: "3.4"
- python: "3.5"
- python: "3.6"
- python: "3.7"
- python: "3.8"
dist: bionic
before_install:
- sudo apt-get install -y net-tools
install:
- pip install -U pip codecov tox tox-travis
script:
- tox
a... | Add Python 3.8 support to Travis config | Add Python 3.8 support to Travis config
| YAML | bsd-3-clause | ftao/python-ifcfg |
adbaa87eb78a18c7ba9e10ea7a0193f7162127fe | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
| Add Ruby 1.8.7 to Travis config | Add Ruby 1.8.7 to Travis config
| YAML | mit | stevenharman/git_tracker,KensoDev/git_tracker,KensoDev/git_tracker,stevenharman/git_tracker |
154c4573b9227e617c4c30a47ba4a5ef0cb6cdd9 | .travis.yml | .travis.yml | language: go
go:
- 1.7
- tip
matrix:
allow_failures:
- go: tip
script:
- go build ./cmd/...
- go run ./cmd/gotty-client/main.go --help || true
| language: go
go:
- 1.7
- 1.8
- tip
matrix:
allow_failures:
- go: tip
script:
- go build ./cmd/...
- go run ./cmd/gotty-client/main.go --help || true
| Test on more Travis versions | Test on more Travis versions
| YAML | mit | moul/gotty-client,moul/gotty-client,moul/gotty-client,moul/gotty-client |
48980bec2d74ed4ffa56ceadbb1195ae3a8ebb21 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit --disallow-test-output --report-useless-tests --coverage-clover ./clover.xml
- ./vendor/bin/phpunit --disallow-test-output --report-useless-tests
- ./vendor/bin/p... | language: php
sudo: false
php:
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit
- ./vendor/bin/phpunit --disallow-test-output --report-useless-tests --coverage-clover ./clover.xml
after_script:
- sh .travis.coverage.sh
matrix:
allow_failu... | Put clover tests as last | Put clover tests as last
| YAML | mit | malukenho/kawaii-gherkin,malukenho/kawaii-gherkin |
54817bc5e1bb02ed7a699ba7ec56ec3b5a2518e0 | .travis.yml | .travis.yml | language: ruby
sudo: false
script: bundle exec rake test
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
- jruby-19mode
env:
- FOG_MOCK=true
- FOG_MOCK=false
| language: ruby
sudo: false
script: bundle exec rake test
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.5
- 2.3.1
- jruby-19mode
- jruby-9.0.5.0
env:
- FOG_MOCK=true
- FOG_MOCK=false
| Update Ruby versions in Travis configuration | Update Ruby versions in Travis configuration | YAML | mit | fog/fog-local |
4c8e89a8f1822ad2dbed435450af46c404cf5495 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.12"
- "0.10"
| sudo: false
language: node_js
node_js:
- 0.12
- 0.10
- 4.0
- 4.1
- 4.2
- 4.3
- 5.6
matrix:
allow_failures:
- node_js: 4.0
- node_js: 4.1
- node_js: 4.2
- node_js: 4.3
- node_js: 5.6
env:
global:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-tool... | Add the rest of our standard TravisCI config | Add the rest of our standard TravisCI config
| YAML | mit | pelias/geonames,pelias/geonames |
76140e0ec67c0e1a5da23c429e86c71204732a95 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
- "7"
- "node"
- "iojs"
sudo: false
# download test suite and run tests... submodule? meta testing project with
# all of the reference implementations?
script:
- npm run test-all
notifications:
email:
on_success: change
on_failur... | language: node_js
node_js:
- "6"
- "7"
- "node"
sudo: false
# download test suite and run tests... submodule? meta testing project with
# all of the reference implementations?
script:
- npm run test-all
notifications:
email:
on_success: change
on_failure: change
| Drop support for node < 6.x. | Drop support for node < 6.x.
| YAML | bsd-3-clause | digitalbazaar/jsonld-signatures |
06a917d2513fb1e30300271fa834141296331309 | .travis.yml | .travis.yml | script: "rspec"
language: "ruby"
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- jruby-19mode
- rbx
| script: "rspec"
language: "ruby"
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.3.6
- jruby-19mode
| Remove rbx, add ruby 2.3.6 | Remove rbx, add ruby 2.3.6
| YAML | mit | jamoes/ring_sig |
fb3f71e6362966c293182ffb8c94d01c0fc20031 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- nightly
sudo: false
matrix:
fast_finish: true
include:
- php: '7.2'
env:
- COVERAGE="true"
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
allow_failures:
- php: nightly
- php: 7.0
install:
- composer update
script... | language: php
php:
- 7.1
- 7.2
- nightly
sudo: false
matrix:
fast_finish: true
include:
- php: '7.2'
env:
- COVERAGE="true"
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
allow_failures:
- php: nightly
env: NIGHLTY=true
- php: 7.0
install:
-... | Add phpunit8 for php8, nightly tests | Add phpunit8 for php8, nightly tests | YAML | mit | bueltge/marksimple,bueltge/marksimple |
35634c72fdc7e910a51c6f059604fc137000c1d6 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- jruby
- rbx
notifications:
email:
- dblock@dblock.org
| rvm:
- 2.0.0
- 1.9.2
- 1.9.3
- jruby
notifications:
email:
- dblock@dblock.org
| Remove rbx, add Ruby 2.0. | Remove rbx, add Ruby 2.0.
| YAML | mit | dblock/heroku-commander |
ea5c834f633856b81886dd68346c827ddee562c5 | .travis.yml | .travis.yml | language: rust
# run builds for both the nightly and beta branch
rust:
- nightly
- beta
# load travis-cargo
before_script:
- git clone --depth 1 https://github.com/huonw/travis-cargo
# make a short alias (`alias` itself doesn't work)
- ln -s ./travis-cargo/travis-cargo.py tc
# the main build
script:
- |
... | language: rust
# run builds for both the nightly and beta branch
rust:
- nightly
- beta
# load travis-cargo
before_script:
- git clone --depth 1 https://github.com/huonw/travis-cargo
# make a short alias (`alias` itself doesn't work)
- ln -s ./travis-cargo/travis-cargo.py tc
# the main build
script:
- |
... | Use explicit paths for tc invocation. | Use explicit paths for tc invocation.
| YAML | apache-2.0 | huonw/tz-search |
1458e17929a59305b9ca2e6abfdc3cfd9fe37e14 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.5
- 2.3.1
before_script:
- psql -c 'create database order_as_specified_test;' -U postgres
script: bundle exec rspec
addons:
postgresql: "9.3"
code_climate:
repo_token: 781c439d68cbb928316deaec1c7136f98423e1db87238f99cbc95183de94df9e
env:
matrix:
- AR_VERSION="~> 4.2.0"
- AR... | language: ruby
rvm:
- 2.2.5
- 2.3.1
before_script:
- psql -c 'create database order_as_specified_test;' -U postgres
script: bundle exec rspec
addons:
postgresql: "9.3"
code_climate:
repo_token: 781c439d68cbb928316deaec1c7136f98423e1db87238f99cbc95183de94df9e
env:
matrix:
- AR_VERSION="~> 4.2.0"
- AR... | Add AR 5.1 to CI build | Add AR 5.1 to CI build
| YAML | mit | panorama-ed/order_as_specified |
7c924925cdc10dac86437e79f57abb2a6135d516 | .travis.yml | .travis.yml | language: go
go:
- 1.11.x
env:
- GO111MODULE=on
install:
- go get -v $(go list ./... | grep -v /examples)
script:
- go vet $(go list ./... | grep -v /examples)
- go test -race -v $(go list ./... | grep -v /examples)
| language: go
go:
- 1.11.x
env:
- GO111MODULE=on
install:
- go get -v $(go list ./... | grep -v /examples)
script:
- go test -race -v $(go list ./... | grep -v /examples)
| Remove extra go vet during build | Remove extra go vet during build
| YAML | mit | ebarkie/weatherlink |
f8514e3d0e5ebd1b6591bfc711eca4a5c66807d8 | .travis.yml | .travis.yml | language: cpp
os:
- linux
- osx
env:
- CFLAGS="-O0 -g" QMAKEFLAGS="-config debug" PATH=/opt/qt59/bin:/usr/local/opt/qt5/bin:$PATH
addons:
apt:
sources:
- sourceline: 'ppa:beineri/opt-qt593-trusty'
packages:
- qt59base valgrind
install:
- if [ "${TRAVIS_OS_NAME}" != "linux" ]; then
... | language: cpp
matrix:
include:
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:beineri/opt-qt593-trusty'
packages:
- qt59base valgrind
- g++-7
env:
- QMAKESPEC=linux-g++
- EVAL="C... | Test Clang and release GCC builds in Travis | Test Clang and release GCC builds in Travis
Signed-off-by: Thiago Macieira <0ed1648d92ca0373297a182b1dba1b974ad10d88@intel.com>
| YAML | mit | thiagomacieira/tinycbor,01org/tinycbor,intel/tinycbor,intel/tinycbor,intel/tinycbor,thiagomacieira/tinycbor,01org/tinycbor,intel/tinycbor,thiagomacieira/tinycbor,thiagomacieira/tinycbor,01org/tinycbor |
1b1b4c18dedb6b9eef1396ffe43e9b37e3cb4db4 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.4.6"
- "5"
- "6"
sudo: false
script: "npm test"
after_success:
- npm run coveralls
addons:
code_climate:
repo_token: 98bfd4f81ea2ddbdfd3aa5cbe4dacb2ab09c70d86009fa3a5c04eccb77c1b1eb
| language: node_js
node_js:
- "4.4.6"
- "5"
- "6"
sudo: false
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.16.0
- export PATH="$HOME/.yarn/bin:$PATH"
cache:
yarn: true
script: "yarn test"
after_success:
- npm run coveralls
addons:
code_climate:
repo_token: 98b... | Update Travis to use Yarn | Update Travis to use Yarn
| YAML | mit | perflint/perflint |
8685ed143b0eef800e879a1da714c33befea7c70 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.1.5
- 2.2.0
script: bundle exec rspec --color --format=documentation
addons:
code_climate:
repo_token: &codeclimate_token 6d4a51b47839a35d44ba7a899bd12e7cb4c519664cf2508724f8765210493ba2
env:
global:
- CODECLIMATE_REPO_TOKEN: *codeclimate_token
- CI... | language: ruby
sudo: false
cache: bundler
rvm:
- 2.1.5
- 2.1
- 2.2
- 2.3
script: bundle exec rspec --color --format=documentation
addons:
code_climate:
repo_token: &codeclimate_token 6d4a51b47839a35d44ba7a899bd12e7cb4c519664cf2508724f8765210493ba2
env:
global:
- CODECLIMATE_REPO_TOKEN: *codeclimate_... | Use latest minor versions of Ruby in Travis-CI | Use latest minor versions of Ruby in Travis-CI | YAML | bsd-3-clause | rapid7/nexpose-client,nbirnel/nexpose-client |
f210a2c53af04cc50d69c3371d614730c41efd4a | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "python setup.py sdist"
- "mkdir tmp"
- "cd tmp"
- "pip install --upgrade pip"
- "pip install $(echo ../dist/skyfield-*.tar.gz)'[tests]'"
- "pip... | # Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "python setup.py sdist"
- "mkdir tmp"
- "cd tmp"
- "pip install --upgrade pip"
- "pip install $(echo ../dist/skyfield-*.tar.gz)'[tests]'"
- "pip... | Add missing “fi” at end of bash snippet | Add missing “fi” at end of bash snippet
| YAML | mit | skyfielders/python-skyfield,skyfielders/python-skyfield |
c3123a74bd94f02203f24d8a060453e40cbe84ab | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
after_success:
- mvn jacoco:report coveralls:report
| language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
script: mvn verify
after_success:
- mvn coveralls:report
| Update Travis CI: don't just run the tests, also run other checks | Update Travis CI: don't just run the tests, also run other checks
| YAML | bsd-3-clause | saeg/opal |
e099d5edb511efadfd0ef3bd9d3cf08fad5e9d30 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
sudo: false
services:
- postgresql
- mysql
# skip installation as this is also done during the script step
install: true
# allow gui testing on travis
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- psq... | language: java
jdk:
- oraclejdk8
sudo: false
services:
- postgresql
- mysql
# skip installation as this is also done during the script step
install: true
# allow gui testing on travis
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- psq... | Disable build abort when integrationTest fails | Disable build abort when integrationTest fails
| YAML | mit | Siedlerchr/jabref,mredaelli/jabref,mredaelli/jabref,grimes2/jabref,ayanai1/jabref,mredaelli/jabref,Siedlerchr/jabref,tschechlovdev/jabref,obraliar/jabref,ayanai1/jabref,shitikanth/jabref,mairdl/jabref,motokito/jabref,oscargus/jabref,Braunch/jabref,ayanai1/jabref,tschechlovdev/jabref,mredaelli/jabref,Siedlerchr/jabref,M... |
a0b1f5676e3f7307443b674e43c1bd93382ba501 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.0-rc2
- 2.5.3
- 2.4.5
- 2.3.8
- jruby-9.2.5.0
before_install:
- gem update --system
- gem install bundler --no-document
gemfile:
- gemfiles/rails_4.2.10.gemfile
- gemfiles/rails_5.0.7.gemfile
- gemfiles/rails_5.1.6.gemfile
- gemfiles/rails_5.2.0... | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.0
- 2.5.3
- 2.4.5
- 2.3.8
- jruby-9.2.5.0
before_install:
- gem update --system
- gem install bundler --no-document
gemfile:
- gemfiles/rails_4.2.10.gemfile
- gemfiles/rails_5.0.7.gemfile
- gemfiles/rails_5.1.6.gemfile
- gemfiles/rails_5.2.0.gem... | Test with Ruby 2.6 final | Test with Ruby 2.6 final
| YAML | mit | crohr/syslogger |
276f2581663442c9a42dbc5948cc49905c13893b | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | Add Java 13 build on Travis CI (openjdk-ea is now Java 14). | Add Java 13 build on Travis CI (openjdk-ea is now Java 14).
| YAML | apache-2.0 | apache/commons-text,apache/commons-text |
a2589da2ddc032fc5bb5a7c6df14842af146de29 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.2.3
- 2.1.0
- 2.0.0
- 1.9.3
- 1.8.7
| sudo: false
language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
- 2.0.0
- 1.9.3
- 1.8.7
| Use latest MRI major/minor versions for Travis | Use latest MRI major/minor versions for Travis
| YAML | mit | cpjolicoeur/bb-ruby |
487f1d6da9220d1c5d6996c2b532f8433157934f | .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-babel |
84b4e3b977228aaa8d2ed4491565c0d2b13a9f79 | .travis.yml | .travis.yml | language: node_js
notifications:
email:
on_success: never
on_failure: change
node_js:
- "0.10"
- "0.12"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| language: node_js
notifications:
email:
on_success: never
on_failure: change
node_js:
- "stable"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| Test on stable node.js versions | Test on stable node.js versions
| YAML | mit | blakeembrey/server-address |
0f4771b0be4127197464cca6f952d66a71a9d8a3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
branches:
except:
- gh-pages
script:
- npm test
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
| language: node_js
node_js:
- "0.10"
- "0.11"
branches:
except:
- gh-pages
script:
- npm test
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
| Remove node 0.8 support for package | Remove node 0.8 support for package
| YAML | mit | yahoo/pngjs-image |
748785446518992e07f85e6811ea9963a3f16879 | .travis.yml | .travis.yml | addons:
apt:
packages:
- zsh
- ncurses-dev
- autoconf
- yodl
- man
cache:
apt: true
directories:
- $HOME/.zvm
dist: trusty
matrix:
include:
- env: ZVM_VERSION='5.0.8'
- env: ZVM_VERSION='5.1.1'
- env: ZVM_VERSION='5.2'
- env: ZVM_VERSION='5.3.1'
install:
-... | addons:
apt:
packages:
- zsh
- ncurses-dev
- autoconf
- yodl
- man
cache:
apt: true
directories:
- $HOME/.zvm
dist: trusty
matrix:
include:
- env: ZVM_VERSION='5.0.8'
- env: ZVM_VERSION='5.1.1'
- env: ZVM_VERSION='5.2'
- env: ZVM_VERSION='5.3.1'
install:
-... | Update ZUnit version and switch to verbose output | Update ZUnit version and switch to verbose output
| YAML | mit | zulu-zsh/zulu |
3d49cedd0bd42a49507c63b5a306ead5bb3662f7 | .travis.yml | .travis.yml | language: rust
sudo: false
dist: trusty # still in beta, but required for the prebuilt TF binaries
cache:
cargo: true
rust:
- stable
- beta
- nightly
env:
global:
- RUST_BACKTRACE=1
- CC="gcc-4.9"
- CXX="g++-4.9"
matrix:
- TF_RUST_BUILD_FROM_SRC=true
- TF_RUST_BUILD_FROM_SRC=false
m... | language: rust
sudo: false
dist: trusty # still in beta, but required for the prebuilt TF binaries
cache:
cargo: true
rust:
- stable
- beta
- nightly
env:
global:
- RUST_BACKTRACE=1
- CC="gcc-4.9"
- CXX="g++-4.9"
matrix:
# Building TensorFlow in Travis is not working properly, probably du... | Disable building TensorFlow from source | Travis: Disable building TensorFlow from source
| YAML | apache-2.0 | adamcrume/tensorflow-rust,adamcrume/tensorflow-rust,adamcrume/tensorflow-rust,adamcrume/tensorflow-rust,tensorflow/rust,tensorflow/rust,tensorflow/rust,tensorflow/rust |
7f36ef2b9828f9bc8b34ba6bb1b22a8c286a6e68 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
install: true
script: mvn install -Psnapshots
notifications:
email:
recipients:
- ksclarke@gmail.com
on_failure: change
on_success: never
irc:
channels:
- irc.freenode.org#freelibrary
on_failure: always
on_success: always
slack:
secure: eMZg... | language: java
jdk:
- oraclejdk8
install: true
script: mvn install -Psnapshots
cache:
directories:
- $HOME/.m2
notifications:
email:
recipients:
- ksclarke@gmail.com
on_failure: change
on_success: never
irc:
channels:
- irc.freenode.org#freelibrary
on_failure: always
on_succ... | Add Maven cache to Travis config | Add Maven cache to Travis config
| YAML | bsd-3-clause | ksclarke/vertx-pairtree |
bff611a8b998e0706bd9d642b96f1fd91b7e8874 | .travis.yml | .travis.yml | language: ruby
rvm: 2.2.2
env:
- DB=mysql
sudo: false
before_script:
- bundle exec rake db:setup
script:
- bundle exec rspec spec
| language: ruby
rvm: 2.2.2
env:
- DB=mysql
sudo: false
before_script:
- bundle exec rake db:setup
script:
- bundle exec rspec spec
notifications:
email: false
hipchat: 823d4c11858ce2bb9471e5b05d1925@678334
| Add Hipchat notification for Travis | Add Hipchat notification for Travis
| YAML | mit | nusmodifications/nusmods-cloud,tgxworld/nusmods-cloud,nusmodifications/nusmods-cloud,nusmodifications/nusmods-cloud,tgxworld/nusmods-cloud |
ccc172bfd347f3ede352ec8eb1479eda165bf535 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -U pip setuptools
- pip install tox-travis
script: tox
| sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -U pip setuptools
- pip install tox-travis
script:
- tox
- git diff-tree --no-commit-id --name-only -r $REVISION | xargs pre-commit run --files
| Add pre-commit to Travis CI | Add pre-commit to Travis CI
| YAML | bsd-3-clause | oasis-open/cti-python-stix2 |
3dd53e374e13abbb3b342b374159126549cd7be9 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
directories:
- $HOME/.npm
env:
global:
# See https://git.io/vdao3 for detail... | ---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
directories:
- $HOME/.npm
env:
global:
# See https://git.io/vdao3 for detail... | Use npm@5 on TravisCI builds | Use npm@5 on TravisCI builds
| YAML | mit | locks/ember-localstorage-adapter,locks/ember-localstorage-adapter,kurko/ember-localstorage-adapter,kurko/ember-localstorage-adapter |
a86116b9154ba12451e9926851145046194df68d | .travis.yml | .travis.yml | language: ruby
sudo: false
script: "bundle exec rake"
env:
- RAILS_4_2=true DB=sqlite3
- RAILS_4_2=true DB=postgres
- RAILS_4_2=true DB=mysql
- RAILS_4_1=true DB=sqlite3
- RAILS_4_1=true DB=postgres
- RAILS_4_1=true DB=mysql
- RAILS_4_0=true DB=sqlite3
- RAILS_4_0=true DB=postgres
- RAILS_4_0=true DB=... | language: ruby
sudo: false
script: "bundle exec rake"
# Per https://github.com/travis-ci/travis-ci/issues/2821
install:
- bundle install --retry=3
env:
- RAILS_4_2=true DB=sqlite3
- RAILS_4_2=true DB=postgres
- RAILS_4_2=true DB=mysql
- RAILS_4_1=true DB=sqlite3
- RAILS_4_1=true DB=postgres
- RAILS_4_1=tr... | Fix the way bundler works with rbx on CI | Fix the way bundler works with rbx on CI
Per #380 | YAML | mit | aalfson/globalize,distribusion/globalize,Buyapowa/globalize,awernick/globalize,2947721120/globalize,goarch/globalize,ASnow/globalize |
62cb6573235657d248004f3e53fef35116a6b9c5 | .travis.yml | .travis.yml | # Since we really don't want any of Travis' Python
language: generic
sudo: false
os:
- linux
- osx
env:
global:
- MINICONDA_DIR="$HOME/miniconda"
matrix:
- Python=3.4
- Python=3.5
before_install:
# Taken from: http://conda.pydata.org/docs/travis.html
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
... | # Since we really don't want any of Travis' Python
language: generic
sudo: false
os:
- linux
- osx
env:
global:
- MINICONDA_DIR="$HOME/miniconda"
matrix:
- Python=3.4
- Python=3.5
before_install:
# Taken from: http://conda.pydata.org/docs/travis.html
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
... | Increase timeout for running cells. | Increase timeout for running cells.
| YAML | mit | julienchastang/unidata-python-workshop,julienchastang/unidata-python-workshop,Unidata/unidata-python-workshop |
65d20ac76e9ca6b453b8123b5d526f1629a0d552 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
before_script:
- git submodule update --init --recursive
- ant init-ivy
- ant jar
- ant -f src/main/integrator.xml strict
script: ant test integration-test
env: CLASSPATH=src/test/lib:src/test/resources:src/main/lib/dost.jar:src/main/lib/dost-configuration.jar:src/main:src/mai... | language: java
jdk:
- oraclejdk7
before_script:
- git submodule update --init --recursive
- ant init-ivy
- ant jar
- ant -f src/main/integrator.xml strict
script: ant test integration-test
env: CLASSPATH=src/test/lib:src/test/resources:src/main/lib/dost.jar:src/main/lib/dost-configuration.jar:src/main:src/main/lib:src/... | Add Slack to Travis-CI configuration | Add Slack to Travis-CI configuration
| YAML | apache-2.0 | shaneataylor/dita-ot,dita-ot/dita-ot,drmacro/dita-ot,queshaw/dita-ot,Hasimir/dita-ot,queshaw/dita-ot,queshaw/dita-ot,Hasimir/dita-ot,robander/dita-ot,Hasimir/dita-ot,eerohele/dita-ot,shaneataylor/dita-ot,doctales/dita-ot,doctales/dita-ot,drmacro/dita-ot,dita-ot/dita-ot,jelovirt/muuntaja,robander/dita-ot,dita-ot/dita-ot... |
1fa166d18595d1bfa12eed57ea76ac38b1dfd1d0 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- jruby-19mode
- rbx-19mode
- 2.0.0
notifications:
email:
recipients:
- tp@tiredpixel.com
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: jruby-19mode
- rvm: rbx-19mode
| language: ruby
rvm:
- 2.0.0
- 1.9.3
- jruby-19mode
- rbx-19mode
notifications:
email:
recipients:
- tp@tiredpixel.com
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: jruby-19mode
- rvm: rbx-19mode
| Tweak build list, sorting order. | Tweak build list, sorting order.
| YAML | mit | tiredpixel/sidekiq-spy |
cd6e44cfbb7ea5a7fc9db0c8458233b671a25954 | .travis.yml | .travis.yml | language: generic
matrix:
include:
- os: linux
dist: xenial
sudo: required
# - os: osx
# osx_image: xcode8.2
# sudo: required
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then eval "$(curl -sL https://github.com/odaceo/script-ubuntu-swiftenv/raw/master/install.sh)" ; fi
# - if [... | language: generic
matrix:
include:
- os: linux
dist: xenial
sudo: required
- os: osx
osx_image: xcode8.3
sudo: required
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then eval "$(curl -sL https://github.com/odaceo/script-ubuntu-swiftenv/raw/master/install.sh)" ; fi
script:
-... | Enable the build on MacOS | Enable the build on MacOS
| YAML | apache-2.0 | odaceo/lab-hello-world-swift-linux |
431bd793d03b9163ff96ab54a2703ed5158d88d0 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
sudo: false
before_script:
- composer self-update
- composer update
script:
- php vendor/bin/phpunit
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.pha... | language: php
php:
- 7.0
- 7.1
- 7.2
- hhvm
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSE... | Update Travis configuration to remove PHP <7.0 | Update Travis configuration to remove PHP <7.0
| YAML | mit | tomzx/ditto |
cde9a22bfff02c17e69ea6853be06bfda63fa95e | .travis.yml | .travis.yml | language: bash
sudo: required
dist: trusty
group: deprecated-2017Q4
services:
- docker
env:
matrix:
- MY_RUBY_VERSION=2.4.2 RUBY_RAILS_VERSION=5.1.4
# Installing a newer Docker version
before_install:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository ... | language: bash
sudo: required
dist: trusty
services:
- docker
env:
matrix:
- MY_RUBY_VERSION=2.4.2 RUBY_RAILS_VERSION=5.1.4
# Installing a newer Docker version
before_install:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https:/... | Move to Latest Travis Image | Move to Latest Travis Image
| YAML | mit | taufek/dockery,taufek/dockery |
e1a364832707577213d34d3bab5e3be4fb6b00f9 | .travis.yml | .travis.yml | dist: trusty
sudo: required
services:
- docker
language: go
go:
- 1.6
branches:
except:
- /^v[0-9]/
before_install:
- echo 'DOCKER_OPTS="-H unix:///var/run/docker.sock -s devicemapper"' | sudo tee /etc/default/docker
> /dev/null
- sudo apt-get install -qq pkg-config fuse
- sudo modprobe fuse
- sudo chmod 666 /d... | dist: trusty
sudo: required
services:
- docker
language: go
go:
- 1.6
branches:
except:
- /^v[0-9]/
before_install:
- echo 'DOCKER_OPTS="-H unix:///var/run/docker.sock -s devicemapper"' | sudo tee /etc/default/docker
> /dev/null
- sudo apt-get install -qq pkg-config fuse
- sudo modprobe fuse
- sudo chmod 666 /d... | Change order of CI test suites to validate config change | Change order of CI test suites to validate config change
Which should allow up to 20min for fuse tests
| YAML | apache-2.0 | pachyderm/pfs,pachyderm/pfs,pachyderm/pfs |
b90205cd8490d11cd8cb0312e6a5bbff632c5505 | .travis.yml | .travis.yml |
language: python
python:
- 2.7
- 3.4
- 3.5
install:
- travis_retry pip install coveralls jedi ipyparallel
- travis_retry python setup.py install
- cd metakernel_python
- python setup.py install
- cd ..
script:
- ipcluster start -n=3 &
- nosetests --exe -v --with-doctest --with-co... |
language: python
env:
global:
- JEDI="jedi"
matrix:
include:
- python: 2.7
env: JEDI="jedi==0.9"
- python: 3.4
- python: 3.5
install:
- travis_retry pip install coveralls ipyparallel $JEDI
- travis_retry python setup.py install
- cd metakernel_python
- python setup.py instal... | Test with jedi 0.9 also. | Test with jedi 0.9 also.
| YAML | bsd-3-clause | Calysto/metakernel |
d8a402ae5bcfbea627967531f7ec35cf77946b4a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
# Use new Travis infrastructure (Docker can't sudo yet)
sudo: false
# No need to install any deps.
install: true
before_install:
# Need this for the git tests to succeed.
- git config --global user.email "spack@example.com"
- git config --global user.name "Test User... | language: python
python:
- "2.6"
- "2.7"
# Use new Travis infrastructure (Docker can't sudo yet)
sudo: false
# No need to install any deps.
install: true
before_install:
# Need this for the git tests to succeed.
- git config --global user.email "spack@example.com"
- git config --global user.name "Test User... | Add compiler info and a simple libdwarf build to the checks. | Add compiler info and a simple libdwarf build to the checks.
| YAML | lgpl-2.1 | TheTimmy/spack,iulian787/spack,mfherbst/spack,krafczyk/spack,EmreAtes/spack,lgarren/spack,krafczyk/spack,skosukhin/spack,lgarren/spack,LLNL/spack,mfherbst/spack,EmreAtes/spack,skosukhin/spack,LLNL/spack,TheTimmy/spack,iulian787/spack,LLNL/spack,TheTimmy/spack,EmreAtes/spack,mfherbst/spack,matthiasdiener/spack,krafczyk/... |
c8b12147bdd7774cf441a2a169f93c7fa7b8cd69 | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-1.7.3
| language: ruby
before_install: gem install bundler
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-1.7.10
| Change testing jruby to 1.7.10 | Change testing jruby to 1.7.10
| YAML | mit | joonty/pessimize |
d7a59872b233b53e5d78608f07246dcd9b1146bc | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: generic
cache:
directories:
- $HOME/.ccache
env:
global:
- CCACHE_DIR=$HOME/.ccache
matrix:
- ROS_DISTRO="indigo" ROS_REPO=ros NOT_TEST_INSTALL=true
- ROS_DISTRO="indigo" ROS_REPO=ros-shadow-fixed NOT_TEST_INSTALL=true
- ROS_DISTRO="kineti... | sudo: required
dist: trusty
language: generic
cache:
directories:
- $HOME/.ccache
env:
global:
- CCACHE_DIR=$HOME/.ccache
matrix:
- ROS_DISTRO="indigo" ROS_REPO=ros NOT_TEST_INSTALL=true
- ROS_DISTRO="indigo" ROS_REPO=ros-shadow-fixed NOT_TEST_INSTALL=true
- ROS_DISTRO="kineti... | Enable clang-format checking in CI | Enable clang-format checking in CI
| YAML | apache-2.0 | UniversalRobots/Universal_Robots_Client_Library,UniversalRobots/Universal_Robots_Client_Library |
7425edbd6c19f06ffbcebd9dd29d004e8848a522 | .travis.yml | .travis.yml | sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-trusty to install the stable release
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:
- mas... | sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-trusty to install the stable release
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- mast... | Switch back to stable ChefDK builds for testing | Switch back to stable ChefDK builds for testing
| YAML | apache-2.0 | protec-cookbooks/chef_handler,chef-cookbooks/chef_handler,opscode-cookbooks/chef_handler |
81c7ebbd004cf25eeac22118bed9fa1d47b931fe | .travis.yml | .travis.yml | language: python
python:
- "2.7"
jdk:
- openjdk7
virtualenv:
system_site_packages: true
install:
# Install Spark
- wget http://d3kbcqa49mib13.cloudfront.net/spark-1.1.0-bin-hadoop2.4.tgz
- tar -xzf spark-1.1.0-bin-hadoop2.4.tgz
- sudo apt-get install -qq python-numpy python-scipy python-pandas python-skle... | language: python
python:
- "2.7"
jdk:
- openjdk7
virtualenv:
system_site_packages: true
install:
# Install Spark
- wget http://d3kbcqa49mib13.cloudfront.net/spark-1.1.0-bin-hadoop2.4.tgz
- tar -xzf spark-1.1.0-bin-hadoop2.4.tgz
- sudo apt-get install -qq python-numpy python-scipy python-pandas python-skle... | Revert silenting - Travis assumed failure due to no output for 10 minutes | Revert silenting - Travis assumed failure due to no output for 10 minutes
| YAML | apache-2.0 | taynaud/sparkit-learn,lensacom/sparkit-learn,taynaud/sparkit-learn,lensacom/sparkit-learn |
2fa63fd96fcb2c7cd836fc02672deff0d7821605 | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
before_install:
- sudo apt-get update
install:
- sudo apt-get install libtagc0-dev php5-cli php5-json
before_script:
- go get code.google.com/p/go.crypto/bcrypt
- go get code.google.com/p/go.crypto/pbkdf2
- go get github.com/go-martini/martini
- go get github.com/jmoiron/sql... | language: go
go:
- 1.1
- 1.2
before_install:
- sudo apt-get update
install:
- sudo apt-get install libtagc0-dev php5-cli php5-json
before_script:
- go get ./...
script:
- make
- ./bin/wavepipe -test &
- sleep 5
- php ./res/wavepipe_test.php localhost:8080
- sleep 30
- make test
| Use much simpler go get syntax for Travis | Use much simpler go get syntax for Travis
| YAML | mit | mdlayher/wavepipe,mdlayher/wavepipe |
98d6cb66ce0f6fe4e17f333c39368592667b8951 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 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
-... | 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 +... | Remove PHP 5.6 from Travis configuration. | Remove PHP 5.6 from Travis configuration. | YAML | mit | gomoob/php-websocket-server,gomoob/php-websocket-server,gomoob/php-websocket-server |
a6363bcda6646c51d728dac91e1a3349171687d0 | .travis.yml | .travis.yml | language: go
go:
- 1.7.x
- 1.8.x
- tip
script:
- go test -v $(go list ./... | grep -v /vendor/)
| language: go
go:
- 1.7.x
- 1.8.x
- tip
before_install:
- go get github.com/mattn/goveralls
script:
- go test -v $(go list ./... | grep -v /vendor/)
- $HOME/gopath/bin/goveralls -service=travis-ci
| Add test coverage to Travic build | Add test coverage to Travic build
| YAML | mit | yl2chen/cidranger |
2ceddf7e793feb99c5b6a76998efe238965b22cd | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
- 0.10
| language: node_js
node_js:
- 0.8
- 0.10
env:
- OPTIONALS=Y
- OPTIONALS=N
install:
- if [[ "$OPTIONALS" == "Y" ]]; then npm install; fi
- if [[ "$OPTIONALS" == "N" ]]; then npm install --no-optional; fi
| Test with and without optional dependencies | TravisCI: Test with and without optional dependencies
| YAML | apache-2.0 | seegno-forks/request,sean3z/request,chaoliu/request,niklabh/request,NewGyu/request,blabno/request,niklabh/request,rbramwell/request,chaoliu/request,sean3z/request,HAKASHUN/request,request/request,linalu1/request,ryanwholey/request,linalu1/request,whembed197923/request,czardoz/request,udp/request,Jonekee/request,pho3nix... |
176b85e55660c006d55bfd079aa14cd5e71099fc | .travis.yml | .travis.yml | sudo: required
services:
- docker
install:
docker pull debian:stretch
script:
docker run -v "$PWD:/workspace/igd-exporter" -w /workspace/igd-exporter debian:stretch './.travis-build.sh'
| dist: trusty
sudo: required
language: generic
services:
- docker
install:
docker pull debian:stretch
script:
docker run -v "$PWD:/workspace/igd-exporter" -w /workspace/igd-exporter debian:stretch './.travis-build.sh'
| Build on trusty & use generic language | Build on trusty & use generic language
| YAML | mit | yrro/igd-exporter,yrro/igd-exporter |
e24da5a0484266662355ae1cfedfc85b6c30034d | .travis.yml | .travis.yml | language: java
script:
- ant jar
- bash sample/test-sample.sh
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
notifications:
email:
on_success: change
on_failure: change
| language: java
script:
- ant jar
- bash sample/test-sample.sh
sudo: false
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
notifications:
email:
on_success: change
on_failure: change
| Fix Travis/Jacoco problem on OpenJDK | Fix Travis/Jacoco problem on OpenJDK
* Instructed in support email to add "sudo: false" to config
* Says this ensures that Travis jobs will run on containerized infrastructure, not a GCE environment, which is where the memory problem is occurring
| YAML | mit | mariten/kanatools-java,mariten/kanatools-java |
93cc371ee6826e5f4d17e262f8be7cada5fa5b43 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 10 on Travis CI. | Build with Node.js 10 on Travis CI.
| YAML | mit | bigeasy/kibitz,bigeasy/kibitz |
6b9d0c957937724e81b3799f5478a623bdc58bdd | .travis.yml | .travis.yml | rvm:
- 1.8.6
- 1.8.7
- 1.9.2
- ruby-head
| rvm:
- 1.8.6
- 1.8.7
- 1.9.2
- ruby-head
- rbx
- jruby
| Test against Rubinius and JRuby | Test against Rubinius and JRuby
| YAML | mit | irfanah/json_spec,venuenext/json_spec,collectiveidea/json_spec |
4888e064ed4360eb4747e2fd935e6ebeb851ac9e | metadata/rocks.poopjournal.flashy.yml | metadata/rocks.poopjournal.flashy.yml | Categories:
- System
License: Apache-2.0
AuthorName: Crazy Marvin & Contributors
AuthorEmail: marvin@poopjournal.rocks
WebSite: https://poopjournal.rocks/Flashy/
SourceCode: https://github.com/Crazy-Marvin/Flashy
IssueTracker: https://github.com/Crazy-Marvin/Flashy/issues
Translation: https://crowdin.com/project/flas... | Categories:
- System
License: Apache-2.0
AuthorName: Crazy Marvin & Contributors
AuthorEmail: marvin@poopjournal.rocks
WebSite: https://poopjournal.rocks/Flashy/
SourceCode: https://github.com/Crazy-Marvin/Flashy
IssueTracker: https://github.com/Crazy-Marvin/Flashy/issues
Translation: https://crowdin.com/project/flas... | Update Flashy to 1.1 (2) | Update Flashy to 1.1 (2)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
2546364b738d4a6da50a0c92a7476f0eeccf336d | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8
script:
- xcodebuild test -scheme Ampere -sdk iphonesimulator -destination "name=iPhone 6s" | xcpretty && exit ${PIPESTATUS[0]}
| language: objective-c
osx_image: xcode8
script:
# The pipefail option sets the exit status to the last commond with a non-zero status code, which would usually be xcodebuild
- set -o pipefail && xcodebuild test -scheme Ampere -sdk iphonesimulator -destination "name=iPhone 6s" | xcpretty
| Use pipefail option on Travis CI command | Use pipefail option on Travis CI command
| YAML | mit | ole/Ampere |
c21808f02bd87b7b066c5668686e4f8857114bb7 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
before_script:
- sudo apt-get update -y
- sudo apt-get install qemu-kvm -y
- sudo apt-get install clang -y
- git submodule update --init --recursive
script:
- CC=clang ./buildme.sh -qq -- -F ACLFLAGS=-m32 -F ACLFLAGS=-march=i686
- make clean
- make RUMPRUN_PRESENT=no
- s... | language: c
compiler:
- gcc
- clang
before_script:
- sudo apt-get update -y
- sudo apt-get install qemu-kvm -y
- git submodule update --init --recursive
script:
- ./buildme.sh -qq -- -F ACLFLAGS=-m32 -F ACLFLAGS=-march=i686
- make clean
- make RUMPRUN_PRESENT=no
- size rk.bin rk.bin.gdb
- make RU... | Build with both gcc and clang | Build with both gcc and clang
The implicit idea is that gcc doesn't support C++11
while clang does, and both cases get tested.
Sort of a shaky idea, but works for now ...
| YAML | bsd-2-clause | rumpkernel-attic/rumprun-baremetal,rumpkernel-attic/rumprun-baremetal,rumpkernel-attic/rumprun-baremetal |
154edf8574118128f189fe05adb5be77caf49d85 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
script: bundle exec rake
before_install:
- gem update --system
notifications:
webhooks:
urls:
- https://lita-freenode.herokuapp.com/travis
| language: ruby
rvm:
- 2.0.0
script: bundle exec rake
before_install:
- gem update --system
services:
- redis-server
notifications:
webhooks:
urls:
- https://lita-freenode.herokuapp.com/travis
| Add redis-server to Travis services. | Add redis-server to Travis services.
| YAML | mit | crimsonknave/lita,prsimp/lita,MatthewKrey/lita,litaio/lita,elia/lita,tristaneuan/lita,mcgain/lita,jimmycuadra/lita,brodock/lita,crimsonknave/lita,sadiqmmm/lita,byroot/lita,liamdawson/lita,chriswoodrich/lita,PatrickTulskie/lita,litaio/lita,brodock/lita,chriswoodrich/lita,natesholland/lita,tristaneuan/lita,MatthewKrey/li... |
7d805315a5cb04cadd2ae8b7a332f57f6830a815 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install python-numpy
- pip install pytest pytest-cov
- pip install coveralls
script:
- py.test
after_success:
- coveralls
| language: python
python:
- "2.7"
- "3.4"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install python-numpy
- pip install pytest pytest-cov
- pip install coveralls
script:
- py.test
after_success:
- coveralls
| Test both Python 2 and 3 | Test both Python 2 and 3
| YAML | bsd-3-clause | jni/maths.py |
1edf749aeb08a4012ccb6d382d334d7d068b234e | .travis.yml | .travis.yml | language: scala
scala:
- 2.11.11
- 2.12.7
jdk:
- oraclejdk8
script:
- sbt clean testAll
| language: scala
scala:
- 2.11.11
- 2.12.7
jdk:
- openjdk8
script:
- sbt clean testAll
| Fix Travis by using OpenJDK | Fix Travis by using OpenJDK
| YAML | apache-2.0 | pauldijou/jwt-scala,pauldijou/jwt-scala |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.