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 |
|---|---|---|---|---|---|---|---|---|---|
f69108869e7c63aad079bf1b65655791752c28c8 | .travis.yml | .travis.yml | language: node_js
sudo: false
dist: trusty
before_script:
- node script/create-test-tables.js pg://postgres@127.0.0.1:5432/postgres
env:
- CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres
node_js: "6"
addons:
postgresql: "9.6"
matrix:
include:
- node_js: "4"
addons:
... | language: node_js
sudo: false
dist: trusty
before_script:
- node script/create-test-tables.js pg://postgres@127.0.0.1:5432/postgres
env:
- CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres
matrix:
include:
- node_js: "4"
addons:
postgresql: "9.6"
- node_js: "5"
... | Remove default and normalize Travis-CI matrix | Remove default and normalize Travis-CI matrix
Removes the default node 6 / PG 9.6 combination and adds it to the
Travis-CI matrix of combinations. That way all combinations are
defined in a single place.
| YAML | mit | cricri/node-postgres,brianc/node-postgres,brianc/node-postgres |
57cb0dcac0e9a51b6a5287a0672d30f6827fdc3d | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 7.1
- 7.0
- 5.6
- hhvm
install:
- composer install
after_script:
- CODECLIMATE_REPO_TOKEN=2c24b220853ff7a472533fb97563518380403febe199edfb84094d2f23e40f1e ./vendor/bin/test-reporter
| sudo: false
language: php
php:
- 7.2
- 7.1
- 7.0
- 5.6
- hhvm
install:
- composer install
after_script:
- CODECLIMATE_REPO_TOKEN=2c24b220853ff7a472533fb97563518380403febe199edfb84094d2f23e40f1e ./vendor/bin/test-reporter
| Add php 7.2 for testing | Add php 7.2 for testing | YAML | mit | VIPnytt/SitemapParser |
fc4ecb24b1777c4f55ff463c2c983daa924ece9b | .travis.yml | .travis.yml | language: go
go: 1.2
script:
- go get golang.org/x/tools/cmd/vet
- go get github.com/cloudflare/redoctober
- go test github.com/cloudflare/redoctober...
- go vet github.com/cloudflare/redoctober...
notifications:
email:
recipients:
- nick@cloudflare.com
- kyle@cloudflare.com
on_success: ne... | sudo: false
language: go
go: 1.4
script:
- go get golang.org/x/tools/cmd/vet
- go get github.com/cloudflare/redoctober
- go test github.com/cloudflare/redoctober...
- go vet github.com/cloudflare/redoctober...
notifications:
email:
recipients:
- nick@cloudflare.com
- kyle@cloudflare.com
on... | Migrate Travis to containerised builds; bump Go version | Migrate Travis to containerised builds; bump Go version
- Migrate Travis: see http://docs.travis-ci.com/user/migrating-from-legacy/
- Bump Go version from 1.2 to 1.4: Go 1.2 is outdated
| YAML | bsd-2-clause | Bren2010/redoctober,ejcx/redoctober,ejcx/redoctober,Bren2010/redoctober |
d2ff67e8e6d89f94a0ed1e05e696621904ef452a | .travis.yml | .travis.yml | # http://conda.pydata.org/docs/travis.html
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.4"
- "3.5"
- "3.6"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- wget https://... | # http://conda.pydata.org/docs/travis.html
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.4"
- "3.5"
- "3.6"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- wget https://... | Remove coverage, undo last commit | Remove coverage, undo last commit
| YAML | apache-2.0 | prisae/empymod,prisae/empymod |
7b482389a3ec46a0f1dd2ead050f061d3128166b | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
virtualenv:
system_site_packages: true
before_install:
- git clone https://github.com/ColinDuquesnoy/pyqode-core.git
- cd pyqode-core
- python setup.py install
- cd ..
- sudo apt-get update
- sudo apt-get install -qq python-pyside --fix-missing
- sudo apt-... | language: python
python:
- "2.7"
- "3.2"
virtualenv:
system_site_packages: true
before_install:
- git clone https://github.com/ColinDuquesnoy/pyqode-core.git
- cd pyqode-core
- python setup.py install
- cd ..
- sudo apt-get update
- sudo apt-get install -qq python-pyside --fix-missing
- sudo apt-get instal... | Remove python 3.3: for an unknown reason , PyQt4 nor PySide can be properly imported using python 3.3 (this works fine on a real computer) | Remove python 3.3: for an unknown reason , PyQt4 nor PySide can be properly imported using python 3.3 (this works fine on a real computer)
| YAML | mit | zwadar/pyqode.python,mmolero/pyqode.python,pyQode/pyqode.python,pyQode/pyqode.python |
2be2e942959b8106ce28bf379099291688badaef | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- pypy
before_install:
- git submodule update --init --recursive
- git clone --recursive git://github.com/maxmind/libmaxminddb
- cd libmaxminddb
- ./bootstrap
- ./configure
- make
- sudo make install
- sudo ldconfig
- cd ..
- pip install -... | ---
language: python
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
- pypy
before_install:
- git submodule update --init --recursive
- git clone --recursive git://github.com/maxmind/libmaxminddb
- cd libmaxminddb
- ./bootstrap
- ./configure
- make
- sudo make install
- sudo ldconfig
- cd ..
- pip... | Add email & slack notifications | Add email & slack notifications
| YAML | apache-2.0 | maxmind/GeoIP2-python,maxmind/GeoIP2-python |
f45efbde2b6689db2a31667294355639c0d3c30b | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libqt4-dev
script:
- qmake
- make
- cd tests
- for i in ./tst_*; do ./$i; done
| language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
sudo: false
addons:
apt:
packages:
- libqt4-dev
script:
- qmake && make
- cd tests
- for i in ./tst_*; do ./$i; done
| Migrate to container-based Travis infrastructure | Migrate to container-based Travis infrastructure | YAML | mit | sjinks/qt_socketconnector,sjinks/qt_socketconnector |
a754a2b5ae0cda15eef5060f13cb991511c2a72e | .travis.yml | .travis.yml | # Travis CI Build.
# HOME path: /home/travis
# Git clone path: /home/travis/build/osom8979/tbag
language: cpp
cache:
apt: true
compiler: gcc
before_install:
- export THREAD_NUM=4
- export TPARTY_HOME=$HOME/tparty
- sudo apt-get -qq update
- sudo apt-get install -y git cmake
install:
- echo ... | # Travis CI Build.
# HOME path: /home/travis
# Git clone path: /home/travis/build/osom8979/tbag
language: cpp
cache:
apt: true
compiler: gcc
before_install:
- export THREAD_NUM=4
- export TPARTY_HOME=$HOME/tparty
- export LD_LIBRARY_PATH=$TPARTY_HOME/local/lib:$LD_LIBRARY_PATH
- sudo apt-get -qq... | Fix the error of tparty build script. | Fix the error of tparty build script.
| YAML | mit | osom8979/tbag,osom8979/tbag,osom8979/tbag,osom8979/tbag,osom8979/tbag |
05cfa4c08e5c0a5489adf1a635aecb9eec860ec6 | .travis.yml | .travis.yml | language: python
matrix:
allow_failures:
- os: osx
include:
- os: linux
python: 2.7
cache: pip
env: TOXENV=py27
- os: osx
language: generic
cache: pip
env: TOXENV=py27
- os: linux
python: 3.6
cache: pip
env: TOXENV=py36
- os: osx
cache:... | language: python
matrix:
allow_failures:
- os: osx
include:
- os: linux
python: 2.7
cache: pip
env: TOXENV=py27
- os: osx
language: generic
cache: pip
env: TOXENV=py27
- os: linux
python: 3.6
cache: pip
env: TOXENV=py36
- os: osx
cache:... | Test different versions for python on osx | Test different versions for python on osx
| YAML | mit | sukeesh/Jarvis,sukeesh/Jarvis,appi147/Jarvis,sukeesh/Jarvis,appi147/Jarvis,sukeesh/Jarvis |
9d99e3c1d870c215bce46557006148e87c615241 | .travis.yml | .travis.yml | %YAML 1.1
---
language: python
python:
- '2.7'
- '3.3'
- '3.4'
- pypy
install:
- pip install -e .
- pip install -r test-requirements.txt
- pip install tornado
script: nosetests
after_success:
- coveralls
deploy:
provider: pypi
user: aweber
password:
secure: fdn7NjeIHeo51VHhp+6LnviRYJtfd7As0dCM... | language: python
python:
- '2.7'
- '3.3'
- '3.4'
- pypy
install:
- pip install -e .
- pip install -r test-requirements.txt
- pip install tornado
script: nosetests
after_success:
- coveralls
deploy:
provider: pypi
user: sprockets
password:
secure: qzSC7nsNS1rnDKgiZe2GiojMznf35GLzUeqlf5HESYiKDIl... | Switch to sprockets pypi user. | Switch to sprockets pypi user.
| YAML | bsd-3-clause | sprockets/sprockets.mixins.correlation |
1673faf3632b1de946a647df7c67bc55049a7988 | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '8'
- '10'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
node_js:
- '8'
- '10'
- '12'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| Drop node.js 6 support, add 12 (semver-major) | Drop node.js 6 support, add 12 (semver-major)
| YAML | bsd-3-clause | papandreou/node-pngcrush |
d38e0a6778f82c29a397df73edf1e40a8b47f588 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
matrix:
- TESTBENCH_VERSION=3.1.*
- TESTBENCH_VERSION=3.2.*
- TESTBENCH_VERSION=3.3.*
global:
- COMPOSER_DISCARD_CHANGES=true
- COMPOSER_NO_INTERACTION=1
- COMPOSER_DISABLE_XDEBUG_WARN=1
before_install:
- if [ -n "$GH_TOKEN" ]... | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
matrix:
- TESTBENCH_VERSION=3.1.*
- TESTBENCH_VERSION=3.2.*
- TESTBENCH_VERSION=3.3.*
allow_failures:
- TESTBENCH_VERSION=3.4.*
global:
- COMPOSER_DISCARD_CHANGES=true
- COMPOSER_NO_INTERACTION=1
- COMPOSER_DISABLE_XDEB... | Add Laravel 5.4 to Travis matrix | Add Laravel 5.4 to Travis matrix | YAML | mit | Lykegenes/laravel-locale-switcher |
50be1c8ff5b1a9d22206946911ba9dd60baaf773 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
| language: node_js
node_js:
- "iojs"
- "0.12"
- "0.11"
- "0.10"
| Add io.js testing in Travis | Add io.js testing in Travis
| YAML | mit | resin-io/resin-network-config |
f6a4cbb614b29dbe20b60e57509998119c7d0c43 | .travis.yml | .travis.yml | language: python
cache:
directories:
- $HOME/.cache/pip
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO=1.7.7
- DJANGO=1.8.1
before_install:
- sudo apt-get install libgeoip-dev
install:
- pip install -q Django==$DJANGO
- pip install -e .[testing]
- start_cms_project.py testing testing_dir/ --... | language: python
cache:
directories:
- $HOME/.cache/pip
python:
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO=1.7.7
- DJANGO=1.8.1
before_install:
- sudo apt-get install libgeoip-dev
install:
- pip install -q Django==$DJANGO
- pip install -e .[testing]
- start_cms_project.py testing testing_dir/ --without-... | Remove Python 3.2 from the testing matrix. | Remove Python 3.2 from the testing matrix. | YAML | bsd-3-clause | lewiscollard/cms,lewiscollard/cms,jamesfoley/cms,jamesfoley/cms,danielsamuels/cms,danielsamuels/cms,danielsamuels/cms,jamesfoley/cms,dan-gamble/cms,dan-gamble/cms,jamesfoley/cms,dan-gamble/cms,lewiscollard/cms |
f4e7236c3704e11bb3cc157e6f9de057f04e474e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- ruby-head
| language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- ruby-head
before_install: gem install bundler -v 1.10.6
| Install bundler > 1.10 before running CI | Install bundler > 1.10 before running CI
| YAML | mit | tacahilo/proc_net-tcp,hfm/proc_net-tcp,hfm/proc_net-tcp,tacahilo/proc_net-tcp |
eeea416c105b2f21024230e5e9fcb887ee0f1fe5 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
script: phpunit tests
| language: php
php:
- 5.4
- 5.5
- 5.6
script: phpunit tests
| Remove 5.3 version from tests | Remove 5.3 version from tests
| YAML | mit | PHPAlgorithms/Dijkstra-s-algorithm,ventaquil/Dijkstra-s-algorithm |
ecfe35b6d0b7eb9d1514ec0bf52e23a3a564d11b | .travis.yml | .travis.yml | language: ruby
cache: bundler
os:
- linux
rvm:
- jruby
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- "2.7"
jobs:
include:
- os: osx
rvm: "2.5"
- os: osx
rvm: "2.6"
- stage: deploy
if: repo = travis-ci/travis.rb and branch = master and type = push
os: linux
rvm: "2.6"
... | language: ruby
cache: bundler
os:
- linux
rvm:
- jruby
- "2.4"
- "2.5"
- "2.6"
- "2.7"
jobs:
include:
- rvm: "2.3"
before_script:
- gem install faraday -v 1.0.1
- os: osx
rvm: "2.5"
- os: osx
rvm: "2.6"
- stage: deploy
if: repo = travis-ci/travis.rb and b... | Install compat version of faraday for Ruby 2.3 | Install compat version of faraday for Ruby 2.3
| YAML | mit | travis-ci/travis.rb,travis-ci/travis.rb,travis-ci/travis.rb |
220538bf13233e97e57f49054ace5b7392f8f4d3 | .travis.yml | .travis.yml | branches:
only:
- master
- /release-.*/
language: cpp
os:
- linux
- osx
compiler:
- gcc
- clang
dist: trusty
sudo: false
addons:
apt:
packages:
- automake
- autoconf
- libtool
- pkg-config
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[... | branches:
only:
- master
- /release-.*/
language: cpp
os:
- linux
- osx
compiler:
- gcc
- clang
dist: trusty
sudo: false
addons:
apt:
packages:
- automake
- autoconf
- libtool
- pkg-config
script: ./super-test.sh -j2 quick # limit parallelism due to limited memory on Travis
| Fix Travis build: Homebrew now complains that these are already installed. | Fix Travis build: Homebrew now complains that these are already installed.
| YAML | mit | mologie/capnproto,mologie/capnproto,mologie/capnproto |
2df23b068b7928a4937c5324a8a2d20bdb55b342 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
install: npm install
script: grunt test
notifications:
email:
on_success: never
on_failure: change
| language: node_js
node_js:
- 0.8
install: npm install grunt-cli -g && npm install
script: grunt test
notifications:
email:
on_success: never
on_failure: change
| Install grunt-cli before the dependencies | Install grunt-cli before the dependencies
| YAML | mit | lenniboy/paginator-pageable-merge |
7bacb0f3c601cb4e78ff76812c78f0d3da1cb7d5 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- ruby-head-clang
- jruby-9.0
- jruby-head
- rbx-3.26
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: ruby-head-clang
install:
- bundle install --retry=3
before_install:
# Ne... | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- ruby-head-clang
- jruby-9.0
- jruby-9.1
- jruby-head
- rbx-3.26
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: ruby-head-clang
install:
- bundle install --retry=3
before_i... | Add newest JRuby minor version | Add newest JRuby minor version
| YAML | lgpl-2.1 | mvz/gir_ffi,mvz/gir_ffi,mvz/gir_ffi |
4d18a247d4016618670a9ac830c30c4834ecfec4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- rbx
gemfile:
- gemfiles/rails_3_0.gemfile
- gemfiles/rails_3_1.gemfile
- gemfiles/rails_3_2.gemfile
- gemfiles/rails_4_0.gemfile
- gemfiles/rails_4_1.gemfile
- gemfiles/rails_4_2.gemfile
matrix:
exclude:
- rvm: 2... | language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- rbx
gemfile:
- gemfiles/rails_3_0.gemfile
- gemfiles/rails_3_1.gemfile
- gemfiles/rails_3_2.gemfile
- gemfiles/rails_4_0.gemfile
- gemfiles/rails_4_1.gemfile
- gemfiles/rails_4_2.gemfile
matrix:
exclude:
- rvm: r... | Exclude CI builds on ruby-head for rails 3.* | Exclude CI builds on ruby-head for rails 3.*
| YAML | mit | nambrot/jbuilder,suryasnath/Venture,rails/jbuilder,sue445/jbuilder,ASnow/jbuilder,WellframeInc/jbuilder,jasnow/jbuilder,maclover7/jbuilder,vincentwoo/jbuilder,odedniv/jbuilder |
257c969014ff2b58d17e52f63609cb519d567b8d | .travis.yml | .travis.yml | {
"language": "objective-c",
"osx_image": "xcode9",
"env": "SCHEME=\"MantleSample\" DESTINATION=\"platform=iOS Simulator,name=iPhone 6S\" RUN_TESTS=\"YES\" SEND_TO_COVERALLS=\"YES\"",
"script": [
"if [ $RUN_TESTS == \"YES\" ]; then travis_retry xcodebuild -workspace \"MantleSample.xcwork... | {
"language": "swift",
"osx_image": "xcode9",
"xcode_project": "MantleSample.xcworkspace",
"os": "osx"
}
| Change to basic continuous integration file | Change to basic continuous integration file | YAML | mit | emreozdil/MantleSample,emreozdil/MantleSample |
7246f4e7fd62a0ce5b2e8a1718a750fdc11f0926 | .travis.yml | .travis.yml | language: c++
sudo: true
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- make
- g++-5
before_install:
# Use GCC 5
- export CXX="g++-5" CC="gcc-5"
install:
# Install Boost 1.61
- cd ..
- wget https://sourceforge.net/projects/boos... | language: c++
sudo: true
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- make
- g++-5
before_install:
# Use GCC 5
- sudo update-alternatives --remove-all gcc
- sudo update-alternatives --remove-all g++
- sudo update-alternatives --in... | Use "update-alternatives" to set GCC 5. | Use "update-alternatives" to set GCC 5.
| YAML | mit | Kruecke/BFGenerator |
214b2ac5b5db43adfd3d424d1f654602a1d058f0 | .travis.yml | .travis.yml | sudo: required
dist: xenial
language: python
python:
- "3.6"
before_install:
- sudo apt-get install pkg-config zip g++ zlib1g-dev unzip python3
- wget 'https://github.com/bazelbuild/bazel/releases/download/0.27.0/bazel-0.27.0-installer-linux-x86_64.sh'
- chmod +x bazel-0.27.0-installer-linux-x86_64.sh
- ./b... | sudo: required
dist: xenial
language: python
python:
- "3.6"
before_install:
- sudo apt-get install pkg-config zip g++ zlib1g-dev unzip python3
- wget 'https://github.com/bazelbuild/bazel/releases/download/0.28.1/bazel-0.28.1-installer-linux-x86_64.sh'
- chmod +x bazel-0.28.1-installer-linux-x86_64.sh
- ./b... | Upgrade Bazel in Travis CI build environment to version 0.28.1. | Upgrade Bazel in Travis CI build environment to version 0.28.1.
| YAML | apache-2.0 | google-research/turkish-morphology,google-research/turkish-morphology |
3958403d41fc96e4e4cec33cdff4a41a369ba179 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
- 2.2
script:
- bundle exec rake test_app
- bundle exec rake spec
cache:
- bundler
| language: ruby
rvm:
- 2.1
- 2.2
script:
- bundle exec rake test_app
- bundle exec rake spec
| Remove caching of bundler as that is not available for public projects | Remove caching of bundler as that is not available for public projects
| YAML | bsd-3-clause | berkes/spree_billing_sisow,berkes/spree_billing_sisow |
1635edfeee01b6b03ed472ec916579e6d5df9420 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.12
before_install:
- npm install -g gulp
- npm install
script:
- gulp ci
| language: node_js
node_js:
- 0.12
- 4.0
- 4.1
- 4.2
before_install:
- npm install -g gulp
- npm install
script:
- gulp ci
| Update CI for node 4.x | Update CI for node 4.x
| YAML | bsd-3-clause | radify/stationmaster,radify/stationmaster |
9cbc92c2fd72c81fe5f36881ad7a7b3dbef3926e | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.7-dev"
- "pypy3.5"
install:
- pip install -e .
- pip install --upgrade pytest pytest-cov codacy-coverage
script: py.test -v --color=yes --cov-report xml --cov=canopen test/
after_script: python-codacy-coverage
| dist: xenial
language: python
python:
- "2.7"
- "3.4"
- "3.7"
- "3.8-dev"
- "pypy3.5"
install:
- pip install -e .
- pip install --upgrade pytest pytest-cov codacy-coverage
script: py.test -v --color=yes --cov-report xml --cov=canopen test/
after_script: python-codacy-coverage
| Make Travis test on Python 3.7 and 3.8. | Make Travis test on Python 3.7 and 3.8.
| YAML | mit | christiansandberg/canopen,christiansandberg/canopen |
9b909d3255dc32a06ef5ea14288f12184095bce3 | .travis.yml | .travis.yml | branches:
only:
- master
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
env:
matrix:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.3.0"... | branches:
only:
- master
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
env:
matrix:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.3.0"... | Fix build error: excluded non supported ruby version from Puppet 3.0.0 and Puppet 3.1.0 | Fix build error: excluded non supported ruby version from Puppet 3.0.0 and Puppet 3.1.0
| YAML | apache-2.0 | hundredacres/golja-s3cmd,hundredacres/golja-s3cmd,n1tr0g/golja-s3cmd,n1tr0g/golja-s3cmd |
73cf5c91e46f06d3f2a7c495bb22f2005b07134b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
script: bundle exec rspec
before_install:
- gem update --system
notifications:
webhooks:
urls:
- https://lita-freenode.herokuapp.com/travis
| language: ruby
rvm:
- 2.0.0
script: bundle exec rspec
before_install:
- gem update --system
services:
- redis-server
notifications:
webhooks:
urls:
- https://lita-freenode.herokuapp.com/travis
| Configure Travis to start Redis. | Configure Travis to start Redis.
| YAML | mit | jimmycuadra/lita-urban-dictionary |
7d0a5ff3fc81ef7bb93e3fe9d4659452a1e36c4f | .travis.yml | .travis.yml | language: ruby
rvm:
- "ruby-2.1.0"
script:
- "bundle exec brakeman -z --skip-files config/initializers/secret_token.rb"
- "bundle exec rake db:migrate"
- "bundle exec rake spec:travisci"
env:
global:
- RAILS_ENV=ci
matrix:
- TEST_SUITE=unit
- TEST_SUITE=acceptance_1
- TEST_SUITE=acceptance_... | language: ruby
rvm:
- "ruby-2.1.1"
script:
- "bundle exec brakeman -z --skip-files config/initializers/secret_token.rb"
- "bundle exec rake db:migrate"
- "bundle exec rake spec:travisci"
env:
global:
- RAILS_ENV=ci
matrix:
- TEST_SUITE=unit
- TEST_SUITE=acceptance_1
- TEST_SUITE=acceptance_... | Set ruby version to 2.1.1 when building on Travis-CI. | Set ruby version to 2.1.1 when building on Travis-CI.
| YAML | mit | amatriain/feedbunch,jmwenda/feedbunch,amatriain/feedbunch,amatriain/feedbunch,jmwenda/feedbunch,amatriain/feedbunch,jmwenda/feedbunch |
78857c85ebca254665aaae33e1dbd20b2579b51e | .travis.yml | .travis.yml | script: 'rake'
rvm:
- 1.8.7
- 1.9.2
| script: 'rake'
rvm:
- 1.9.2
- 1.9.3
| Remove 1.8.7 from test suite. | Remove 1.8.7 from test suite.
| YAML | mit | peter-murach/loaf,piotrmurach/loaf,peter-murach/loaf,piotrmurach/loaf,piotrmurach/loaf,piotrmurach/loaf |
c805d2b7ea4da1c73f2a40b722ce43efe545ae8d | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
before_install:
- npm install -g npm@latest
notifications:
email:
recipients:
- kalyons@mit.edu
on_success: never
on_failure: always
| language: node_js
node_js:
- "node"
before_install:
- npm install -g npm@latest
notifications:
email:
recipients:
- kevinandrewlyons@gmail.com
on_success: never
on_failure: always
| Update config.yml with new e-mail | Update config.yml with new e-mail
| YAML | mit | kalyons11/web,kalyons11/web |
af462dd51958a5963254e780e7843fa8ff00cfea | .travis.yml | .travis.yml | language: python
env:
- PHONOPY_VERSION=2.7.0
install:
- python -mpip install phonopy==$PHONOPY_VERSION
- python -mpip install pytest pytest-cov
- python -mpip install codecov coverage
script: python -mpytest tests -ra --cov=./ --log-level=DEBUG
after_success:
- codecov
| language: python
env:
- PHONOPY_VERSION=2.7.0
- PHONOPY_VERSION=2.8.0
install:
- python -mpip install phonopy==$PHONOPY_VERSION
- python -mpip install pytest pytest-cov
- python -mpip install codecov coverage
script: python -mpytest tests -ra --cov=./ --log-level=DEBUG
after_success:
- codecov
| Modify to test also phonopy 2.8.0 | Modify to test also phonopy 2.8.0
| YAML | mit | yuzie007/upho,yuzie007/ph_unfolder |
3c532c26171fe33869f1e4823f1cfb3ac5392de9 | .travis.yml | .travis.yml | language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libboost-all-dev
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
- cd czipperz/vick
- mkdir -p plugins
- cd plugins
# customize me!
- git clon... | language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- hvr-ghc
packages:
- g++-4.8
- libboost-all-dev
- software-properties-common
- cabal-install
- ghc
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
... | Remove references to Makefiles oops | Remove references to Makefiles oops
| YAML | mpl-2.0 | czipperz/vick-move |
70f395b6570b3eaee62a739e830468bc14edfdb2 | .travis.yml | .travis.yml | language: java
branches:
excludes:
- gh-pages
notifications:
email: false
before_install:
- wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz
- tar -zxf android-sdk_r21.0.1-linux.tgz
- export ANDROID_HOME=~/builds/lexs/webimageloader/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOM... | language: java
branches:
excludes:
- gh-pages
notifications:
email: false
before_install:
- wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz
- tar -zxf android-sdk_r21.0.1-linux.tgz
- export ANDROID_HOME=~/builds/lexs/webimageloader/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOM... | Add some nice debug output | Add some nice debug output
| YAML | apache-2.0 | lexs/webimageloader |
85539ee3421b57e6f14c32f435b9b6eed54aff80 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.10
- 2.3.8
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.1
before_install: gem install bundler --no-document
| language: ruby
rvm:
- 2.2.10
- 2.3.8
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.1
| Remove unnecessary step to fix CI | Remove unnecessary step to fix CI
It seems bundler is installed by travis without any setting
https://travis-ci.org/github/yuya-takeyama/flagship/jobs/678123423
```
$ gem install bundler --no-document
ERROR: Error installing bundler:
bundler requires Ruby version >= 2.3.0.
The command "gem install bundler --no-doc... | YAML | mit | yuya-takeyama/flagship,yuya-takeyama/flagship |
66f5020a552ddbe969c7f809acbd55ab5cb91495 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
before_install:
- sudo pip install cpp-coveralls
install:
- sudo apt-get update -qq
- sudo apt-get install -qq python3 python3-dev
- sudo apt-get install -qq check
script: autoreconf --install && ./configure --enable-gcov PYTHON_VERSION=3.2 && make && make... | language: c
compiler:
- gcc
- clang
before_install:
- sudo pip install cpp-coveralls
install:
- sudo apt-get update -qq
- sudo apt-get install -qq python3 python3-dev
- sudo apt-get install -qq check
script: autoreconf --install && ./configure --enable-gcov PYTHON_VERSION=3.2 && make && make... | Add DISTCHECK_CONFIGURE_FLAGS to Travis CI build | Add DISTCHECK_CONFIGURE_FLAGS to Travis CI build
Running `make distcheck` does not pass the original flags
to `./configure` and the Travis CI build server needs to
have `PYTHON_VERSION` defined.
| YAML | mit | robo9k/q3py,robo9k/q3py,robo9k/q3py |
296ecfa4eab16b58e213f181a3fa79048d87d25e | .travis.yml | .travis.yml | language: ruby
branches: master
rvm:
- 1.9.2
- 1.9.3
- ruby-head
| language: ruby
branches: master
rvm:
- 1.9.2
- 1.9.3
| Remove support for Ruby 2.0 | Remove support for Ruby 2.0
(for now) | YAML | mit | irfanah/json_spec,venuenext/json_spec,collectiveidea/json_spec |
d993870293a34b57ef7d866c031df97e80ba7b38 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
env:
- ES_VERSION=1.7.4
- ES_VERSION=2.1.1
matrix:
allow_failures:
- php: hhvm
install:
- wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz
- tar -xzf elasticsearch-${ES_VERSION}.tar.gz
- ./elas... | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- ES_VERSION="2.1.1"
- SYMFONY="~3.0"
matrix:
allow_failures:
- php: hhvm
include:
- php: 7.0
env: ES_VERSION="1.7.4"
- php: 7.0
env: SYMFONY="2.7.*"
install:
- composer require --no-update symfony/s... | Test old versions of Symfony and Elasticsearch only with newest PHP | Test old versions of Symfony and Elasticsearch only with newest PHP
| YAML | mit | martiis/ElasticsearchBundle,saimaz/ElasticsearchBundle,tautrimas/ElasticsearchBundle,trandangtri/ElasticsearchBundle,asev/ElasticsearchBundle,trandangtri/ElasticsearchBundle,martiis/ElasticsearchBundle,murnieza/ElasticsearchBundle,murnieza/ElasticsearchBundle,saimaz/ElasticsearchBundle,asev/ElasticsearchBundle,ongr-io/... |
20ec445f82f9a705790b814a49cc642c7d4efd7b | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
- ruby-head
- jruby-head
script: bundle exec rake test:ruby
notifications:
email: false
#TODO: flowdock: [api token]
services:
- mongodb
branches:
only:
- master
- release
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- ruby-head
- jruby-head
bundler_args: --without deployment
script: bundle exec rake test:ruby
notifications:
email: false
#TODO: flowdock: [api token]
services:
- mongodb
branches:
only:
- master
- release
matrix:
allow_failures:
- rvm: ruby-head... | Revert "minor: remove bundler args" | Revert "minor: remove bundler args"
This reverts commit 2b2d53e8da1afe37a0131a912248e2bc8b256e41.
| YAML | apache-2.0 | fhwang/mongo-ruby-driver,xronos-i-am/mongo-ruby-driver,mongodb/mongo-ruby-driver,pcarrier-packaging/deb-ruby-mongo,fairplace/mongo-ruby-driver,kay-kim/mongo-ruby-driver,saghm/mongo-ruby-driver,aherlihy/mongo-ruby-driver,0x00evil/mongo-ruby-driver,AndyObtiva/mongo-ruby-driver,pcarrier-packaging/deb-ruby-mongo,jonhyman/m... |
ba7b7f0e317ed007fae182211ccee66cee38a0d7 | .travis.yml | .travis.yml | language: java
sudo: false
dist: trusty
env:
- _JAVA_OPTIONS='-Xmx500m'
matrix:
include:
- jdk: oraclejdk8 # JDK 1.8.0_131-b11
- jdk: oraclejdk9 # JDK 9-ea+174 provided by Travis will be replaced by 9+178 in "before_install"
before_install:
- cd ~
- wget http://download.java.net/java... | language: java
sudo: false
dist: trusty
env:
- _JAVA_OPTIONS='-Xmx500m'
matrix:
include:
- jdk: oraclejdk8 # JDK 1.8.0_131-b11 or newer
- jdk: oraclejdk9 # JDK 9+175 or newer
# Don't let Travis CI execute './gradlew assemble' by default
install:
# Display Gradle, Groovy, JVM and other versions
- ./grad... | Use jdk-9 provided by Travis CI | Use jdk-9 provided by Travis CI
| YAML | epl-1.0 | sbrannen/junit-lambda,junit-team/junit-lambda |
e6d51c3c921c8dac3b2326647c58a563fd12c54e | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.0"
- "io.js"
- "0.12"
- "0.10"
sudo: false
after_script: "npm run test-cov && cat ./coverage/lcov.info | codecov && cat ./coverage/lcov.info | coveralls"
webhooks:
urls: https://webhooks.gitter.im/e/237280ed4796c19cc626
on_success: change # options: [always|never|change] d... | language: node_js
node_js:
- node
- io.js
- 0.12
- 0.10
sudo: false
after_script: "npm run test-cov && cat ./coverage/lcov.info | codecov && cat ./coverage/lcov.info | coveralls"
webhooks:
urls: https://webhooks.gitter.im/e/237280ed4796c19cc626
on_success: change # options: [always|never|change] default:... | Use node's latest version when building | Use node's latest version when building
| YAML | apache-2.0 | simov/request,Aloomaio/request,NewGyu/request,watson/request,NewGyu/request,lxe/request,request/request,Aloomaio/request,czardoz/request,lxe/request,watson/request,lalitkapoor/request,chaoliu/request,request/request,chaoliu/request,lalitkapoor/request,simov/request,czardoz/request |
01786a880c4f4c886a09c03c52ab1f52a7c45051 | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- platform-tools
- build-tools-23.0.1
- android-23
- extra-android-m2repository
- extra-google-m2repository
# http://stackoverflow.com/questions/33820638/travis-yml-gradlew-permission-denied
before_install:
- chmod +x gradlew
script:
- ./... | language: android
android:
components:
- platform-tools
- build-tools-23.0.1
- extra-android-m2repository
- extra-google-m2repository
# http://stackoverflow.com/questions/33820638/travis-yml-gradlew-permission-denied
before_install:
- chmod +x gradlew
script:
- ./gradlew build connectedCheck
| Build and SDK tools aren't up-to-date Travis-side. | Build and SDK tools aren't up-to-date Travis-side.
| YAML | mit | ikbenpinda/uitstelgedrag_android |
3c5406fb1940f0cc6f70b2248675e555707bcb37 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
install:
- composer install
- composer require satooshi/php-coveralls
before_script:
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
after_success:
- php vendor/bin/coveralls -v
| language: php
php:
- 5.6
- 7.0
install:
- composer install
- composer require satooshi/php-coveralls
- composer require codacy/coverage
before_script:
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
after_success:
- php vendor/bin/coveralls -v
- php vendor/bin/codacycov... | Add support for codacy coverage | Add support for codacy coverage
| YAML | mit | ofmadsen/livid |
89a5d5c43a397d74730e76b30c9f139bdd3dbf15 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.1
script: bundle exec middleman build --verbose | language: ruby
rvm:
- 2.2.4
script: bundle exec middleman build --verbose
| Use Ruby 2.2.4 on Travis CI | Use Ruby 2.2.4 on Travis CI
| YAML | mit | middleman/middleman-directory,middleman/middleman-directory,middleman/middleman-directory |
2b4aa7a01f16cfbe4a180bd08ab65721020b3a99 | .travis.yml | .travis.yml | language: python
python:
- 3.5
env:
- BUILD=docker
before_script:
- sudo service postgresql stop
script:
- docker-compose -f docker-compose.travis.yml build lutrisfrontend lutrisweb
- docker-compose -f docker-compose.travis.yml run -e DJANGO_SETTINGS_MODULE='lutrisweb.settings.travis' -w '/app' lutrisweb bash... | language: python
python:
- 3.5
env:
- BUILD=docker
before_script:
- sudo service postgresql stop
script:
- docker-compose -f docker-compose.travis.yml build --no-cache lutrisfrontend lutrisweb
- docker-compose -f docker-compose.travis.yml run -e DJANGO_SETTINGS_MODULE='lutrisweb.settings.travis' -w '/app' lut... | Disable caching on Travis CI builds | Disable caching on Travis CI builds
| YAML | agpl-3.0 | lutris/website,lutris/website,lutris/website,lutris/website |
97737cd0ebd45892e06c363e3161c0a50b6e2551 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 1.8.7
- 1.9.3
- '2.0'
- '2.1'
- '2.2'
- '2.3'
| language: ruby
before_install:
- gem install bundler -v 1.11.2
cache: bundler
rvm:
- 1.8.7
- 1.9.3
- '2.0'
- '2.1'
- '2.2'
- '2.3'
| Update bundler for Travis CI | Update bundler for Travis CI
https://github.com/travis-ci/travis-ci/issues/5239
| YAML | mit | tmm1/ripper-tags,tmm1/ripper-tags |
18273ee8a8ad17cc16cfdb04f03313bbfcb2e8b6 | .travis.yml | .travis.yml | language: go
sudo: false
addons:
apt:
packages:
- sqlite3
install:
- go get ./...
go:
- 1.4
- 1.5
- tip
script:
- make test
| language: go
sudo: false
addons:
apt:
packages:
- sqlite3
install:
- go get ./...
go:
- 1.4
- 1.5
- 1.6
- tip
script:
- make test
| Add new go version to Travis | Add new go version to Travis
| YAML | apache-2.0 | gourd/gourd |
f695901c6ca6f86c5929a3879ba4f5d753506497 | .travis.yml | .travis.yml | language: go
services:
- redis-server
go:
- 1.4
install:
- sudo pip install awscli
script:
- ./scripts/build.sh
- ./scripts/test.sh
after_script:
- go test -v -covermode=count -coverprofile=coverage.out .
- goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN
- ./scripts/deploy.sh
| language: go
services:
- redis-server
go:
- 1.4
install:
- pip install --user awscli
- export PATH=$PATH:~/.local/bin
script:
- ./scripts/build.sh
- ./scripts/test.sh
after_script:
- go test -v -covermode=count -coverprofile=coverage.out .
- goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS... | Install AWSCLI as user-mode pip package | fix: Install AWSCLI as user-mode pip package
| YAML | mit | Imgur/incus,Imgur/incus,samuelebistoletti/incus,AdriVanHoudt/incus,samuelebistoletti/incus,samuelebistoletti/incus,AdriVanHoudt/incus,Imgur/incus,AdriVanHoudt/incus |
f0d73f1b22053c9825bd117fe7c143bfcd8ccff0 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- composer install
script: phpunit
| language: php
php:
- 5.3
- 5.4
before_script:
- composer install
script: phpunit --coverage-text
| Add code coverage to Travis | Add code coverage to Travis
| YAML | mit | misd-service-development/php-collections |
b9e5b9b82d80c5ab6aaacd0de1316ee0b0fa3f75 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.4
- tip
services:
- rabbitmq
before_script: ./bin/ci/before_build.sh
script: make
matrix:
allow_failures:
- go: tip
notifications:
email:
- michael@rabbitmq.com
| 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
| Update Go versions in Travis config | Update Go versions in Travis config | YAML | bsd-2-clause | michaelklishin/rabbit-hole,michaelklishin/rabbit-hole |
5216580e2d2be8a79df8009d8f8ea1f3e22cffce | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.1
- 1.2
- 1.3
- 1.4
- tip
install: go get -v ./hipchat
script: go test -v ./hipchat
| language: go
sudo: false
go:
- 1.1
- 1.2
- 1.3
- 1.4
install: go get -v ./hipchat
script: go test -v ./hipchat
| Remove tip from build target | Remove tip from build target
| YAML | apache-2.0 | luyaotsung/hiplog,luyaotsung/hipchat-go,agamatins/hipchat-go,wsdan/hipchat-go,mark-adams/hipchat-go,tbruyelle/hipchat-go |
c16bcf1547fb698b4948e2a151286acade5a2b03 | .travis.yml | .travis.yml | # https://docs.travis-ci.com/user/customizing-the-build/
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2.5
- 2.3.1
notifications:
recipients:
- nesquena@gmail.com
- databyte@gmail.com
before_install:
- gem install bundler
| # https://docs.travis-ci.com/user/customizing-the-build/
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
notifications:
recipients:
- nesquena@gmail.com
- databyte@gmail.com
before_install:
- gem install bundler
| Test against new Ruby 2.4 and 2.5 | [CI] Test against new Ruby 2.4 and 2.5 | YAML | mit | nesquena/rabl,nesquena/rabl,nesquena/rabl |
a1e1a570e0b7e45c8d8a215f10c84ef891581f85 | .travis.yml | .travis.yml | language: scala
script:
- sbt ++$TRAVIS_SCALA_VERSION rpm:packageBin debian:packageBin universal:packageBin
scala:
- 2.10.3
jdk:
- oraclejdk7
notifications:
email:
- sbt-dev-bot@googlegroups.com
before_install:
- cat /etc/hosts # optionally check the content *before*
- sudo hostname "$(hostname | cut -c... | language: scala
script:
- sbt -Dsbt.build.version=1.0.0-M1 ++$TRAVIS_SCALA_VERSION rpm:packageBin debian:packageBin universal:packageBin
scala:
- 2.10.3
jdk:
- oraclejdk7
notifications:
email:
- sbt-dev-bot@googlegroups.com
before_install:
- cat /etc/hosts # optionally check the content *before*
- sudo ... | Add sbt.build.version from CONTRIBUTING to Travis config | Add sbt.build.version from CONTRIBUTING to Travis config
| YAML | apache-2.0 | sbt/sbt,sbt/sbt,sbt/sbt,mdedetrich/sbt,sbt/sbt-launcher-package,mdedetrich/sbt,sbt/sbt,xuwei-k/xsbt,mdedetrich/sbt,xuwei-k/xsbt,xuwei-k/xsbt,sbt/sbt,sbt/sbt,sbt/sbt,mdedetrich/sbt,mdedetrich/sbt,sbt/sbt-launcher-package,mdedetrich/sbt,mdedetrich/sbt,xuwei-k/xsbt,xuwei-k/xsbt |
a9ec8ecd772ab9ad4cfcda98b6ffe4a96b0f0e61 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- pip install .
# command to run tests
script: python setup.py test
# only notify when status changes from success to failure
notifications:
email:
recipients:
- code@ramiro.org
... | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install .
# command to run tests
script: python setup.py test
# only notify when status changes from success to failure
notifications:
email:
recipients:
- code@ramiro.org
... | Remove Python 2.6 from Travis config | Remove Python 2.6 from Travis config
| YAML | mit | yaph/geonamescache,yaph/geonamescache |
732124610658c29c8616683e92a53584afdbff19 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: hhvm
cache:
directories:
- $HOME/.composer/cache/files
install: composer install
script: vendor/bin/phpunit --coverage-text --coverage-clover=co... | language: php
sudo: false
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
cache:
directories:
- $HOME/.composer/cache/files
install: composer install
script: vendor/bin/phpunit --coverage-text --cov... | Add PHP 7.2 to test matrix | Add PHP 7.2 to test matrix
| YAML | mit | VIISON/AddressSplitting |
4fb9aa5ea71a4a56758bf3a24d72b2b032b64cc7 | .travis.yml | .travis.yml | env:
- ghc=7.6.1
- ghc=7.8.1
- ghc=7.10.1
install:
# Set up the Shell to treat the semicolon as &&
- set -o pipefail && set -e
# Install GHC and Cabal
-
travis_retry sudo add-apt-repository -y ppa:hvr/ghc;
travis_retry sudo apt-get update;
travis_retry sudo apt-get install cabal-install-1.22... | env:
- ghc=7.6.1 cabal=1.22
- ghc=7.8.1 cabal=1.22
- ghc=7.10.1 cabal=1.22
- ghc=8.0.1 cabal=1.24
install:
# Set up the Shell to treat the semicolon as &&
- set -o pipefail && set -e
# Install GHC and Cabal
-
travis_retry sudo add-apt-repository -y ppa:hvr/ghc;
travis_retry sudo apt-get update... | Test with GHC-8.0.1 as well | Test with GHC-8.0.1 as well
| YAML | mit | nikita-volkov/base-prelude |
bbbdcd5b6c0fd01d8ff2b90c531510333cb8a237 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
# lock distro so new future defaults will not break the build
dist: precise
# also test against HHVM, but require "trusty" and ignore errors
matrix:
include:
- php: hhvm
dist: trusty
allow_failures:
- php: nightly
- ... | language: php
php:
# - 5.3 # requires old distro, see below
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly # ignore errors, see below
- hhvm # ignore errors, see below
# lock distro so new future defaults will not break the build
dist: trusty
matrix:
include:
- php: 5.3
dist: precise
allow_failu... | Update Travis distro to precise, except for legacy PHP | Update Travis distro to precise, except for legacy PHP
| YAML | mit | reactphp/stream |
8139d7283a858dd2637837211eb24a84636ecad8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
notifications:
irc:
channels:
- "chat.freenode.net#montage"
on_success: false
template:
- "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
| language: node_js
node_js:
- "0.10"
notifications:
irc:
channels:
- "chat.freenode.net#montage"
on_success: false
template:
- "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
| Disable Node.js v0.8 integration tests | Disable Node.js v0.8 integration tests
Travis now errors because of a bad npm certificate.
| YAML | bsd-3-clause | cesine/collections,fredkilbourn/collections,lu4/collections,cesarmarinhorj/collections,cesine/collections |
c25768a9b9e466b997c9ed1ac0644e3947612c3f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
| Test on recent Ruby releases | Test on recent Ruby releases | YAML | mit | mojolingo/adam_signals |
d763f972d76aae521c41a583c54e9f2e5944ae3b | .travis.yml | .travis.yml | language: go
go:
- 1.6.2
install:
- go get github.com/golang/lint/golint
- go get golang.org/x/net/context
- go get golang.org/x/net/context/ctxhttp
script:
- go test -v ./...
- go test -cover -race ./...
- go vet ./...
- test -z "$(find . -name \*.go |... | language: go
go:
- 1.6.x
- 1.7.x
- 1.x
install:
- go get github.com/golang/lint/golint
- go get golang.org/x/net/context
- go get golang.org/x/net/context/ctxhttp
script:
- go test -v ./...
- go test -cover -race ./...
- go vet ./...
- t... | Test against multiple Go versions | Test against multiple Go versions
| YAML | mit | twpayne/go-vali |
d59ba2f28a3472bde14afc8f5244e7f3a9417769 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.11'
# - 'iojs' This isn't working on travis at the moment
before_install:
- npm i npm@latest -g
script: make travis
notifications:
slack:
secure: BiCHWsLTzlEd6MjRZY27BgmtCA3DmBFo5jcSsjSqmInbgla0lzDAA40xfIKTswIwK0pzuQdVaanl5Jy78wul0lfxpa5LLWX/bQmR1LGrygphC5tFG7GD... | language: node_js
node_js:
- '0.10'
- '0.12'
- 'iojs'
before_install:
- npm i npm@latest -g
script: make travis
notifications:
slack:
secure: BiCHWsLTzlEd6MjRZY27BgmtCA3DmBFo5jcSsjSqmInbgla0lzDAA40xfIKTswIwK0pzuQdVaanl5Jy78wul0lfxpa5LLWX/bQmR1LGrygphC5tFG7GDM9Hdjatce5XEYVsSAUddNFEVQtMEUuUkSOiUll7kRq4L... | Set latest node stable on Travis + retry io.js | Set latest node stable on Travis + retry io.js
| YAML | mit | SassDoc/sassdoc |
ea47a16bf54a754e3e3cb6f4186613c42ac33db1 | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.0
- android-26
- extra
- extra-android-m2repository
sudo: false
before_cache:
- rm -rf $HOME/.m2/repository/io/michaelrocks/databindingcompat
- rm -f $HOME/.gradle/caches/modules-2/modules-2.l... | language: android
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.0
- android-26
- extra
- extra-android-m2repository
jdk: oraclejdk8
sudo: false
before_cache:
- rm -rf $HOME/.m2/repository/io/michaelrocks/databindingcompat
- rm -f $HOME/.gradle/caches/modu... | Use JDK 8 for Travis CI builds | Use JDK 8 for Travis CI builds
| YAML | apache-2.0 | MichaelRocks/DataBindingCompat |
1ca18e329902e9ca63240b65add3981de7f9efdd | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.7"
- "4.3"
- "0.12"
- "0.10"
before_install:
- npm install -g npm
before_script:
- npm install -g grunt-cli
after_script:
- grunt coverage
| language: node_js
node_js:
- "6.2"
- "5.11"
- "4.4"
- "0.12"
- "0.10"
before_install:
- npm install -g npm
before_script:
- npm install -g grunt-cli
after_script:
- grunt coverage
| Test with more up-to-date versions of node | Test with more up-to-date versions of node
| YAML | mit | jaubourg/wires |
824b3500509485ed188047b5a5130ba9f9f45aa6 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=FakeSeeder
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.7
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COVERALLS=1 DB=mysql ... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=FakeSeeder
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.7
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COVERALLS=1 DB=mysql ... | Disable PHPCS check in Travis for the moment | Disable PHPCS check in Travis for the moment
We don't fully comply with the CakePHP standard anyway
| YAML | mit | ravage84/cakephp-fake-seeder |
02b911d80ac51da37a440ae7e80f4dcd69f45644 | .travis.yml | .travis.yml | language: ruby
cache: bundler
script: bundle exec rspec
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
| language: ruby
cache: bundler
script: bundle exec rspec
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
| Use the new Travis CI container infrastructure | Use the new Travis CI container infrastructure | YAML | mit | nbibler/rack-canonical-host,tylerhunt/rack-canonical-host |
0c80ccd864460f886efe8b1fd081df1003a72320 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
before_script:
- node test/server.js &
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
| language: node_js
node_js:
- 0.10
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
| Remove server start prior to tests | Remove server start prior to tests
| YAML | apache-2.0 | rtc-io/rtc-plugin-node |
c4640dbc1f81acbf0081d7dfc84e5249581b07e7 | .travis.yml | .travis.yml | install:
- sudo apt-get update -qq
- sudo apt-get install shunit2 zsh ruby
before_script:
- rvm reset
script: make test
| language: c
install:
- sudo apt-get update -qq
- sudo apt-get install shunit2 zsh ruby
script: make test
| Set language to C to disable RVM. | Set language to C to disable RVM.
| YAML | mit | regularfry/chruby,kbrock/chruby,ngpestelos/chruby,eunomie/chgo,postmodern/chruby,ilikepi/chruby,kbrock/chruby,ilikepi/chruby,regularfry/chruby,eunomie/chgo,postmodern/chruby,ngpestelos/chruby |
34909a1ced2f72adff29c58fe5dbcee52d8eb22e | .travis.yml | .travis.yml | language: python
sudo: false
git:
submodules: false
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
python: 3.6
- os: osx
language: generic
env: PYTHON_VERSION=3
before_i... | language: python
sudo: false
git:
submodules: false
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
python: 3.6
- os: osx
language: generic
env: PYTHON_VERSION=3
before_i... | Fix python 3 installation on Travis for macOS | Fix python 3 installation on Travis for macOS
| YAML | bsd-3-clause | SimonSapin/tinycss2 |
455271daf631b22254feef01fcd1f855944f6f21 | .travis.yml | .travis.yml | sudo: false
language: python
matrix:
include:
- python: "2.7"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.3"
env:
- SETUPTOOLS=setuptools~=39.2 PIP="pip<=18.0"
- python: "3.4"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.5"
env:
- SETUPTOOLS=setuptools PIP=... | sudo: false
language: python
matrix:
include:
- python: "2.7"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.3"
env:
- SETUPTOOLS=setuptools~=39.2 PIP="pip<=18.0"
- python: "3.4"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.5"
env:
- SET... | Add Python3.7 and osx to CI | Add Python3.7 and osx to CI
| YAML | mit | PyFilesystem/pyfilesystem2 |
8d83337ee29d947ce76eceaaabd40a4696b5c235 | .travis.yml | .travis.yml | language: objective-c
before_install:
- gem i cocoapods --no-ri --no-rdoc
- brew uninstall xctool; brew install xctool --HEAD;
xcode_workspace: VENTokenField.xcworkspace
xcode_scheme: VENTokenField
xcode_sdk: iphonesimulator
after_success: slather
| language: objective-c
osx_image: xcode7
before_install:
- gem i cocoapods --no-ri --no-rdoc
- brew uninstall xctool; brew install xctool --HEAD;
xcode_workspace: VENTokenField.xcworkspace
xcode_scheme: VENTokenField
xcode_sdk: iphonesimulator
after_success: slather
| Use Xcode 7 OS X image on Travis CI | Use Xcode 7 OS X image on Travis CI
| YAML | mit | venmo/VENTokenField |
f5d58367b908562b01030a824a7057adc91fc6b7 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.4.2
- DJANGO=Django==1.5.0
- DJANGO=https://github.com/django/django/tarball/master
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a --branch --include="email_log/*" --om... | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.4.2
- DJANGO=Django==1.5.0
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a --branch --include="email_log/*" --omit="email_log/tests/*" setup.py test
matrix:
include:
... | Remove Django trunk from Travis | Remove Django trunk from Travis
| YAML | mit | treyhunner/django-email-log,treyhunner/django-email-log |
4ae126b8b201b6b265c5603cfaa95250c2f07acb | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- pip install nose
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors argparse; fi
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
before_install:
- pip install nose
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors argparse; fi
script: nosetests
| Add Python 3.4 & 3.5 to Travis builds | Add Python 3.4 & 3.5 to Travis builds
| YAML | bsd-2-clause | cykl/hprof2flamegraph,cykl/hprof2flamegraph |
881cc0d2536d06bd17e2fa2bd3247abb637c96de | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs-v1.0.4"
- "iojs-v2.1.0"
| language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs-v1.0.4"
- "iojs"
| Use iojs latest target for CI | Use iojs latest target for CI
| YAML | isc | anko/tap-merge |
cbe8bed0698b2a539c115d0cf79523884bb2f3a4 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
addons:
apt:
packages:
- libproj-dev # otherwise gdal raises an error
before_install:
- "wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh"
- "chmod +x miniconda.sh"
- "./miniconda.sh -b"
- "export PAT... | language: python
matrix:
include:
- python: "2.7"
env: CHANNEL=defaults
- python: "3.4"
env: CHANNEL=defaults
- python: "3.5"
env: CHANNEL=defaults
- python: "3.6"
env: CHANNEL=conda-forge
before_install:
- "wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86... | Add Python 3.6 testing to Travis | Add Python 3.6 testing to Travis
In order to add Python 3.6 with all of the dependencies from conda, it
is necessary to use the conda-forge channel (shapely doesn't seem to be
in defaults, despite what the Aanconda documentation claims).
Unfortunately, conda-forge doesn't have the packages for Python 3.4, and
conda i... | YAML | mit | fortyninemaps/karta,fortyninemaps/karta,fortyninemaps/karta |
2a9a785e0ebd496ee1fa0d5c8651a13de94eac44 | .travis.yml | .travis.yml | # Enables support for a docker container-based build
# which should provide faster startup times and beefier
# "machines". This is also required in order to use the
# cache configured below.
sudo: false
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
before_cache:
# The `ivydata-*.prope... | # Enables support for a docker container-based build
# which should provide faster startup times and beefier
# "machines". This is also required in order to use the
# cache configured below.
sudo: false
language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
before_cache:
# The `ivydata-*.properties` & root... | Kill java 6 support - not supported by javapoet. | Kill java 6 support - not supported by javapoet.
| YAML | apache-2.0 | perkuno/forward,perkuno/forward,perkuno/forward |
9dba4af37edd8624bf658a444199831311129225 | .buildkite/pipeline.yml | .buildkite/pipeline.yml | common-params:
&docker-container
docker#v3.8.0:
image: "public.ecr.aws/automattic/android-build-image:v1.1.0"
propagate-environment: true
environment:
# DO NOT MANUALLY SET THESE VALUES!
# They are passed from the Buildkite agent to the Docker container
- "AWS_ACCESS_KEY"
- "AWS_... | common-params:
&docker-container
docker#v3.8.0:
image: "public.ecr.aws/automattic/android-build-image:v1.1.0"
propagate-environment: true
environment:
# DO NOT MANUALLY SET THESE VALUES!
# They are passed from the Buildkite agent to the Docker container
- "AWS_ACCESS_KEY"
- "AWS_... | Update Buildkite publish task path | Update Buildkite publish task path
| YAML | apache-2.0 | tumblr/Backboard |
969f6fc3eccbac5db6da3fb9706865716a49d457 | .github/workflows/codeql-analysis.yml | .github/workflows/codeql-analysis.yml | name: "CodeQL"
on:
workflow_dispatch:
push:
branches: [ develop ]
paths:
- 'CMSIS/Core/**'
- 'CMSIS/Core_A/**'
- 'CMSIS/CoreValidation/**'
- 'Device/ARM/**'
pull_request:
branches: [ develop ]
paths:
- '.github/workflows/codeql-analysis.yml'
- 'CMSIS/Core/**'
... | name: "CodeQL"
on:
workflow_dispatch:
push:
branches: [ develop ]
paths:
- 'CMSIS/Core/**'
- 'CMSIS/Core_A/**'
- 'CMSIS/CoreValidation/**'
- 'Device/ARM/**'
pull_request:
branches: [ develop ]
paths:
- '.github/workflows/codeql-analysis.yml'
- 'CMSIS/Core/**'
... | Update CodeQL workflow to use version 2 actions. | GitHub: Update CodeQL workflow to use version 2 actions.
| YAML | apache-2.0 | ARM-software/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5 |
799c4624b926ee34e547754da889557633f7ee57 | .github/workflows/publish-release.yml | .github/workflows/publish-release.yml | on:
push:
tags:
- "v*" # Push events to matching `v*` version srings. e.g. v1.0, v20.15.10
name: Create and Publish Release
jobs:
build:
name: Create and Publish Release
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
... | on:
push:
tags:
- "v*" # Push events to matching `v*` version srings. e.g. v1.0, v20.15.10
name: Create and Publish Release
jobs:
build:
name: Create and Publish Release
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
... | Use the annotated tag message for release body | Use the annotated tag message for release body
| YAML | apache-2.0 | googlefonts/gftools,googlefonts/gftools |
b4c3ad722a3efefebd580e77f61fdbcc35c5f857 | .travis.yml | .travis.yml | sudo: required
language: python
services:
- docker
before_install:
- docker build -t forresta/docka-docka-docka-test docka-project/
- docker run -d -p 127.0.0.0:80:5000 forresta/docka-docka-docka-test
- docker ps -a
- docker run forresta/docka-docka-docka-test /bin/sh -c "echo 'tests call here'"
script:
... | sudo: required
language: python
services:
- docker
before_install:
- docker build -t forresta/docka-docka-docka-test docka-project/
- docker run -d -p 127.0.0.0:80:5000 forresta/docka-docka-docka-test
- docker ps -a
- docker run forresta/docka-docka-docka-test /bin/sh -c "echo 'tests call here'"
script:
... | Add an echo back for tests. | Add an echo back for tests.
| YAML | mit | gravyboat/docka-docka-docka |
84d71de8c1d4c80dd9656f26b6cb491e8460be2b | .travis.yml | .travis.yml | language: go
go_import_path: go.universe.tf/netboot
go:
- 1.5
- 1.6
- 1.7
- tip
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y atftp
install:
- go get github.com/Masterminds/glide
- go get github.com/golang/lint/golint
before_script:
script:
- glide install
- GO15V... | language: go
go_import_path: go.universe.tf/netboot
go:
- 1.6
- 1.7
- tip
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y atftp
install:
- go get github.com/Masterminds/glide
- go get github.com/golang/lint/golint
before_script:
script:
- glide install
- GO15VENDOREXP... | Remove Go 1.5 from the Travis continuous build. | Remove Go 1.5 from the Travis continuous build.
Policy is to support the latest 2 releases of Go, and some dependent
code just broke on 1.5.
| YAML | apache-2.0 | 4km3/netboot |
b916377721931c621f56a63228d006a6ff0debcd | .travis.yml | .travis.yml | language: rust
sudo: 9000
dist: trusty
rust:
- nightly
script:
- cargo build --verbose
- cargo test --verbose
branches:
except:
- master
notifications:
webhooks: http://build.servo.org:54856/travis
| language: rust
sudo: 9000
dist: trusty
rust:
- nightly
branches:
except:
- master
notifications:
webhooks: http://build.servo.org:54856/travis
| Remove redundant default build/test instructions on Travis CI. | Remove redundant default build/test instructions on Travis CI. | YAML | mpl-2.0 | nnethercote/rust-mozjs,tschneidereit/rust-mozjs,jdm/rust-mozjs,nnethercote/rust-mozjs,servo/rust-mozjs,servo/rust-mozjs,tschneidereit/rust-mozjs,nnethercote/rust-mozjs,jdm/rust-mozjs,nnethercote/rust-mozjs,tschneidereit/rust-mozjs,tschneidereit/rust-mozjs,servo/rust-mozjs,jdm/rust-mozjs,tschneidereit/rust-mozjs,jdm/rus... |
4b0f744cbcadb2e14708c472199db475c853bcaf | .travis.yml | .travis.yml | language: scala
scala:
- 2.12.1
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.ivy2
- $HOME/.sbt/launchers
script:
- ./sbt test
# Trick to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
| language: scala
scala:
- 2.12.1
dist: trusty
jdk:
- openjdk8
cache:
directories:
- $HOME/.ivy2
- $HOME/.sbt/launchers
script:
- ./sbt test
# Trick to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
| Test on trusty (Ubuntu 14.04) with openjdk8 | Travis: Test on trusty (Ubuntu 14.04) with openjdk8
| YAML | apache-2.0 | dbast/spark-scala-template |
ec99876c0c516059305b7d62a321fbb3f1f9e9e7 | .travis.yml | .travis.yml | language: go
go:
- 1.6
- 1.7
- tip
env:
- TURBO_VER=""
- TURBO_VER="1.5.1" CGO_LDFLAGS="-L/tmp/libjpeg-turbo/lib64" CGO_CPPFLAGS="-I/tmp/libjpeg-turbo/include" LD_LIBRARY_PATH="/tmp/libjpeg-turbo/lib64"
before_install:
- ./travis-install-libjpeg-turbo.sh "$TURBO_VER"
- cd $HOME/gopath/src/github.com/pi... | language: go
go:
- 1.6
- 1.7
- 1.8
- 1.9
- "1.10"
- tip
env:
- TURBO_VER=""
- TURBO_VER="1.5.1" CGO_LDFLAGS="-L/tmp/libjpeg-turbo/lib64" CGO_CPPFLAGS="-I/tmp/libjpeg-turbo/include" LD_LIBRARY_PATH="/tmp/libjpeg-turbo/lib64"
before_install:
- ./travis-install-libjpeg-turbo.sh "$TURBO_VER"
- cd $HO... | Test recent versions of Go | Test recent versions of Go
| YAML | bsd-3-clause | pixiv/go-libjpeg,pixiv/go-libjpeg,pixiv/go-libjpeg |
b0b2322eda911ac5f949a2bcf037c3d9830d101a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.0.0
- rbx-2
script: bundle exec rake spec
install: bundle install --jobs=1
cache: bundler
branches:
except:
- legacy-v2
sudo: false
| language: ruby
rvm:
- 2.3.0
- 2.2
- 2.1
- 2.0
- rbx-2
script: bundle exec rake spec
install: bundle install --jobs=1
cache: bundler
branches:
except:
- legacy-v2
sudo: false
| Add more Ruby versions to Travis, including 2.3.0 | Add more Ruby versions to Travis, including 2.3.0
| YAML | mit | jdelStrother/capistrano,maliqq/capistrano,maliqq/capistrano,kirs/capistrano,kylerippey/capistrano,kylerippey/capistrano,harrykiselev/capistrano,harrykiselev/capistrano,capistrano/capistrano,kirs/capistrano,ngpestelos/capistrano,ngpestelos/capistrano,jdelStrother/capistrano,capistrano/capistrano |
0dd8d821b063885f650008cfb89b0f497e8cc69a | .travis.yml | .travis.yml | dist: xenial
sudo: required
language: python
python:
- 3.5
- 3.6
- 3.7
- nightly
install:
- pip install -r requirements.txt
- pip install codecov
- wget https://github.com/kr/beanstalkd/archive/v1.10.tar.gz
- tar -xzvf v1.10.tar.gz
- pushd beanstalkd-1.10 && make && sudo make install && popd
script: m... | dist: xenial
sudo: required
language: python
python:
- 3.5
- 3.6
- 3.7
- nightly
env:
global:
- BEANSTALKD_VERSION=1.11
install:
- pip install -r requirements.txt
- pip install codecov
- wget https://github.com/beanstalkd/beanstalkd/archive/v${BEANSTALKD_VERSION}.tar.gz
- tar -xzvf v${BEANSTALKD_V... | Use beanstalkd 1.11 on CI | Use beanstalkd 1.11 on CI
| YAML | mit | mayhewj/greenstalk |
360d5d01d86ec15fdfd8e3da62b2c39e731fa0d3 | .travis.yml | .travis.yml | language: c
os:
- linux
- osx
install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.install.deps.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./travis.osx.install.deps.sh; fi
before_script:
- mkdir -p build
script:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.script.sh; fi
- if ... | language: c
os:
- linux
- osx
install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.install.deps.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./travis.osx.install.deps.sh; fi
before_script:
- mkdir -p build
script:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.script.sh; fi
- if ... | Revert "Enable email notifications from Travis CI" | Revert "Enable email notifications from Travis CI"
This reverts commit ffb502abcd1d871e41ea0713e6ccdbcd5848d938.
| YAML | mpl-2.0 | Adenilson/prototype-viewing-distance,mdibaiee/servo,wartman4404/servo,akosel/servo,paulrouget/servo,meh/servo,Shraddha512/servo,rnestler/servo,nnethercote/servo,vks/servo,GyrosOfWar/servo,indykish/servo,dagnir/servo,upsuper/servo,runarberg/servo,zentner-kyle/servo,KiChjang/servo,karlito40/servo,jlegendary/servo,saneyuk... |
98267994b93908f42f6561fe45788155c74b37ed | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.10"
| Drop old versions of node | Drop old versions of node
| YAML | mit | elliotf/mocha-sinon,elliotf/mocha-sinon,MarshallOfSound/mocha-sinon,MarshallOfSound/mocha-sinon |
bf10e08641d650dcf157c8539386f22002d6534b | .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-openstreetmap |
435847b518921a0bbce13da32a13ffe8892b1857 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
matrix:
- DJANGO=Django==1.4
- DJANGO=Django==1.5
- DJANGO=Django==1.6
- DJANGO=Django==1.7
install:
- pip install $DJANGO --use-mirrors
- pip install . --use-mirrors
- pip install coverage
branches:
only:
- master
- develop
script:... | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
matrix:
- DJANGO=Django==1.4
- DJANGO=Django==1.5
- DJANGO=Django==1.6
- DJANGO=Django==1.7
install:
- pip install $DJANGO --use-mirrors
- pip install . --use-mirrors
- pip install coverage
branches:
only:
- master
- develop
script:... | Exclude Python 3.3 from testing Django 1.5 | Exclude Python 3.3 from testing Django 1.5
| YAML | mit | joke2k/django-environ,rentapplication/django-environ,themotleyfool/django-environ,adamkal/django-environ,ei-grad/django-environ |
597a3ed53572803c4315e58bcc4bd447eec155d2 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
script:
- cove... | language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphviz
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdi... | Install graphviz for svg generation | Install graphviz for svg generation
| YAML | mit | Artanicus/python-cozify,Artanicus/python-cozify |
0fb3fbda08a785781fe05130c31eb39dbe0ddcc5 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'node'
before_install: yarn global add grunt-cli
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable
on:
branch: master
before_deploy:
- ls -la
env:
global:
- ENCRYPTION_LABEL: '3... | language: node_js
node_js:
- 'node'
before_install: yarn global add grunt-cli
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable
on:
branch: master
before_deploy:
- sed -i '/out\//d' .gitignore
- sed -i '/out-wpt... | Remove out and out-wpt from .gitignore when deploying | Remove out and out-wpt from .gitignore when deploying
| YAML | bsd-3-clause | gpuweb/cts,gpuweb/cts,gpuweb/cts |
78219ba015f3a57696f8e6ee0da162525cccbff1 | .travis.yml | .travis.yml | # Enable C++ support
language: cpp
# # Compiler selection
compiler:
- clang
- gcc
# Build steps
script:
- mkdir build
- cd build
- cmake .. && make
| # Enable C++ support
language: cpp
# # Compiler selection
compiler:
- clang
- gcc
# Build steps
script:
- mkdir build
- cd build
- cmake .. && make
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libjansson-dev
| Add jansson into deps for Travis-CI. | Add jansson into deps for Travis-CI.
| YAML | mit | madf/jwtxx,madf/jwtxx,RealImage/jwtxx,RealImage/jwtxx |
89cd018baeeb12ca71da6f492332a20f40d0d771 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_insta... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
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... | Build with latest Node.js 5 on Travis CI. | Build with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/timezone,bigeasy/timezone,bigeasy/timezone |
ae83a01164b885640b21b9f0524fba31b7608e2d | .travis.yml | .travis.yml | ---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.6"
- PUPPET_GEM_VERSION="~... | ---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
- 2.3.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.6"
- PUPPET_GEM_... | Test against ruby 2.3.0 (prep for Ubuntu 16.04) | Test against ruby 2.3.0 (prep for Ubuntu 16.04)
| YAML | apache-2.0 | digitalmediacenter/puppet-filebeat,pcfens/puppet-filebeat,MiamiOH/puppet-filebeat,digitalmediacenter/puppet-filebeat,MiamiOH/puppet-filebeat,pcfens/puppet-filebeat |
9bb0702b4eb68f72f5301e710dd0ec171a2526f0 | .travis.yml | .travis.yml | language: bash
sudo: false
os:
- osx
- linux
env:
global:
- GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp"
- UNAME="$(uname | tr '[:upper:]' '[:lower:]')"
- GO_VERSIONS="$(< .known-binary-versions-$UNAME) $(< .known-source-versions-$UNAME)"
- GO_ARM_VERSIONS="$(< .known-source-versions-$UNAME)"
before_script: mkdir -p "... | language: bash
sudo: false
os:
- linux
# - osx
env:
global:
- GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp"
- UNAME="$(uname | tr '[:upper:]' '[:lower:]')"
- GO_VERSIONS="$(< .known-binary-versions-$UNAME) $(< .known-source-versions-$UNAME)"
- GO_ARM_VERSIONS="$(< .known-source-versions-$UNAME)"
before_script: mkdir -p... | Trim down Travis output a bit, only test on Linux for now | Trim down Travis output a bit, only test on Linux for now
as the OSX queue is taking tooo loooong
| YAML | mit | travis-ci/gimme,glevand/travis-ci--gimme,meatballhat/gimme,dlsniper/gimme,zenazn/gimme,travis-ci/gimme,kofalt/gimme,solarce/gimme,glevand/travis-ci--gimme |
6131cd6a8514381943980bbd48c2105fe06d6c4e | .travis.yml | .travis.yml | language: python
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=pypy
install:
- "wget -q -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -q -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-all-... | language: python
env:
- TOX_ENV=py27
- TOX_ENV=py33
# TODO Activate when Travis has PyPy 2.x
#- TOX_ENV=pypy
install:
- "wget -q -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -q -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update -q... | Revert "Enable PyPy builds on Travis" | Revert "Enable PyPy builds on Travis"
This reverts commit 15eb1e3ae04dada1267dc1e30a6566a2c78328ed.
| YAML | apache-2.0 | felix1m/pyspotify,mopidy/pyspotify,mopidy/pyspotify,kotamat/pyspotify,jodal/pyspotify,kotamat/pyspotify,kotamat/pyspotify,jodal/pyspotify,felix1m/pyspotify,jodal/pyspotify,felix1m/pyspotify |
2759b25ef37d988e34ce2d30ae04a70c0dd300f8 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- 'node'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- '4'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| Test on Node 4, not latest Node | Travis: Test on Node 4, not latest Node
We'll add latest Node.js when Node.js 5 comes out. We'll still want to support
Node.js 4 as it will be an LTS.
| YAML | mit | EE/jscs-trailing-comma |
f9df22e700317ee039841499cbff7fb35cf8386e | .travis.yml | .travis.yml | language: generic
dist: trusty
addons:
apt:
packages:
- openjdk-7-jdk
- python3.4-dev
- python3.4-venv
env:
- PLAY_VERSION=2.2.1
before_script:
- wget http://downloads.typesafe.com/play/${PLAY_VERSION}/play-${PLAY_VERSION}.zip
- unzip -q play-${PLAY_VERSION}.zip
- python3 -m venv --syste... | language: generic
dist: trusty
addons:
apt:
packages:
- openjdk-7-jdk
- python3.4-dev
- python3.4-venv
env:
- ACTIVATOR_VERSION=1.3.12
before_script:
- wget https://downloads.typesafe.com/typesafe-activator/${ACTIVATOR_VERSION}/typesafe-activator-${ACTIVATOR_VERSION}-minimal.zip
- unzip -q... | Use activator for Travis CI build | Use activator for Travis CI build
| YAML | mit | uq-eresearch/aorra,uq-eresearch/aorra,uq-eresearch/aorra,uq-eresearch/aorra |
360ad511c9b18bb11186d5b265d42825d9065d17 | .travis.yml | .travis.yml | # force run: 1
language: c
compiler:
- clang
- gcc
python:
- "2.7"
sudo: required
before_install:
- whereis clang
- whereis gcc
- sudo -H pip install -r requirements.txt
- sudo -H DEBIAN_FRONTEND=noninteractive apt-get update
script:
sh -x ./scripts/do-test.sh
| # force run: 1
language: c
compiler:
- clang
- gcc
python:
- "2.7"
sudo: required
before_install:
- find / -name clang -type f
- find / -name gcc -type f
- sudo -H pip install -r requirements.txt
- sudo -H DEBIAN_FRONTEND=noninteractive apt-get update
script:
sh -x ./scripts/do-test.sh
| Use "find" instead of "whereis". | Use "find" instead of "whereis".
| YAML | bsd-2-clause | jevonearth/rtpproxy,jevonearth/rtpproxy,sippy/rtpproxy,synety-jdebp/rtpproxy,jevonearth/rtpproxy,dsanders11/rtpproxy,dsanders11/rtpproxy,dsanders11/rtpproxy,jevonearth/rtpproxy,synety-jdebp/rtpproxy,sippy/rtpproxy,synety-jdebp/rtpproxy,sippy/rtpproxy,synety-jdebp/rtpproxy |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.