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 |
|---|---|---|---|---|---|---|---|---|---|
d6e12073660cc30b7a42896d9f834aeb8f56666c | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=3.4.*
- php: 7.1
env: SYMFONY_VERSION=4.0.*
- php: 7.2
env: SYMFONY_VERSION=4.1.*
- php: 7.2
env: SYMFONY_VERSION=4.2.* DEPENDENCIES=dev
- php: 7.3
env: SYMFONY_VERSION=4.... | language: php
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=3.4.*
- php: 7.2
env: SYMFONY_VERSION=4.2.* DEPENDENCIES=dev
- php: 7.3
env: SYMFONY_VERSION=4.3.* DEPENDENCIES=dev
- php: hhvm-stable
dist: trusty
allow_failures:
- php: hhvm-stable
cach... | Drop some builds on EOL Symfony/PHP versions | Drop some builds on EOL Symfony/PHP versions
| YAML | mit | lexik/LexikJWTAuthenticationBundle,chalasr/LexikJWTAuthenticationBundle |
612b0c18bcc26cf82067432d72dec89c96e5945a | .travis.yml | .travis.yml | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-7
- INSTANCE=default-debian-9
- INSTANCE=default-debian-10
... | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-7
- INSTANCE=default-debian-9
- INSTANCE=default-debian-10
... | Remove unit testing in Travis | Remove unit testing in Travis
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/apt,opscode-cookbooks/apt,opscode-cookbooks/apt,chef-cookbooks/apt |
666aae31286ab3205264cc9c531be8c8d865592b | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.1.2
- 2.0.0
- 1.9.3
- rbx-2.2.10
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
cache: bundler
rvm:
- 2.2
- 2.1.2
- 2.0.0
- 1.9.3
- rbx-2.2.10
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Add Ruby 2.2 to Travis CI | Add Ruby 2.2 to Travis CI | YAML | mit | par8o/rspec-rerun,ryanmcgarvey/rspec-rerun,dblock/rspec-rerun |
f7b315924eedb50b2ed308a38397ffa8d858d15d | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.3
- 7.4
- nightly
before_script:
- mkdir -p bootstrap/cache
- chmod 777 bootstrap/cache
- ls -al bootstrap/
- ls -al bootstrap/cache
- composer global require hirak/prestissimo
- if [ "$LARAVEL_DEP" == "5.1.*" ]; then composer require phpunit/phpunit "^5.6" --no-upda... | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
- nightly
before_script:
- mkdir -p bootstrap/cache
- chmod 777 bootstrap/cache
- ls -al bootstrap/
- ls -al bootstrap/cache
- composer global require hirak/prestissimo
- if [ "$LARAVEL_DEP" == "5.1.*" ]; then composer require phpunit/phpunit "^5.6" -... | Drop PHP 7.4 tests to allowed failures, add PHP 7.2 | Drop PHP 7.4 tests to allowed failures, add PHP 7.2
| YAML | mit | Algo-Web/POData-Laravel,CyberiaResurrection/POData-Laravel |
b98457aa47db1cddb65d7c749dd6666a9ae75d19 | .travis.yml | .travis.yml | language: bash
script:
- bash shunit2_test.sh
| language: bash
env:
- SHUNIT_COLOR='always'
script:
- bash shunit2_test.sh
| Set the SHUNIT_COLOR environment variable. | Set the SHUNIT_COLOR environment variable.
| YAML | apache-2.0 | kward/shunit2 |
3b823b45b243da54b481a306161a17cebbb9cdff | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.9.2
script: 'bundle exec rake'
branches:
only:
- master
| language: ruby
rvm:
- 2.1
- 2.0
- 1.9.3
script: 'bundle exec rake'
branches:
only:
- master
| Use latest 2.0.x + 2.1.x Rubies on Travis | Use latest 2.0.x + 2.1.x Rubies on Travis
| YAML | mit | attack/barometer-forecast_io |
311c5d402a5e23bc37d7bbe035dd95e52343d4f4 | .travis.yml | .travis.yml | sudo: required
language: bash
env:
- DOKKU_VERSION=master
before_install: make setup
script: make test
| sudo: required
dist: trusty
language: bash
env:
- DOKKU_VERSION=master
before_install: make setup
script: make test
| Upgrade testing environment to trusty | Upgrade testing environment to trusty | YAML | mit | dokku/dokku-mariadb,dokku/dokku-mariadb |
dabb7810fdbd53a7a56eb522c4e850a72ecfc0cd | .travis.yml | .travis.yml | nguage: ruby
rvm:
- 1.9.3
- 2.0.0
script: "bundle exec rake"
| nguage: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
script: "bundle exec rake"
| Add MRI 2.1.2 to CI | Add MRI 2.1.2 to CI
Yeeeeessss I know I'm fucking failing CI right now -.-
I did this stupid thing where all the gems depend on each other, so
can't udpate any one without updating them all. Stupid idea, I'll go try
to fix that now.
| YAML | mit | JoshCheek/mountain_berry_fields-magic_comments |
77f0d7412f1692c9c6f1016a2bbdf000e9971603 | .travis.yml | .travis.yml | language: c
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y pmake splint
script: pmake
| language: c
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y pmake
script: env LINT= pmake
| Disable lint in a new way | Disable lint in a new way
| YAML | bsd-2-clause | libtrue/libtrue,libtrue/libtrue,libtrue/libtrue,libtrue/libtrue |
c91ab3eb1808a730e3a8dd2155ec039a7232c12c | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
- "9"
script: "npm run-script travis"
| language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
script: "npm run-script travis"
| Stop testing node.js 0.10 and 0.12 on Travis | Stop testing node.js 0.10 and 0.12 on Travis
| YAML | bsd-3-clause | alexjeffburke/unexpected-mitm,unexpectedjs/unexpected-mitm |
ebea9a1d98ff4e6ddd2063b851378e7708a8c69c | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
sudo: false
cache:
directories:
- '$HOME/.m2/repository'
before_install:
- cp src/build/travis-toolchains.xml ~/.m2/toolchains.xml
install: mvn -Ptoolchains -DskipTests=true -Dbasepom.check.skip-all=true -B install
script: mvn -Ptoolchains -B verify
| language: java
sudo: false
# No much sense in keeping jdbi artifacts cached
before_cache:
rm -rf $HOME/.m2/repository/org/jdbi
cache:
directories:
- '$HOME/.m2/repository'
before_install:
- cp src/build/travis-toolchains.xml ~/.m2/toolchains.xml
install: mvn -Ptoolchains -DskipTests=true -Dbasepom.chec... | Split tests, docs, and style checks to their own Travis jobs | Split tests, docs, and style checks to their own Travis jobs
| YAML | apache-2.0 | hgschmie/jdbi,jdbi/jdbi,hgschmie/jdbi,pennello/jdbi,hgschmie/jdbi,jdbi/jdbi,john9x/jdbi,jdbi/jdbi,john9x/jdbi,pennello/jdbi |
c6ba70b131da1fecc9a6fda49ed4c2196bd07b4a | .travis.yml | .travis.yml | language: c
matrix:
include:
- os: linux
compiler: gcc
sudo: false
- os: linux
compiler: clang
sudo: false
- os: osx
compiler: gcc
before_install:
- brew update --quiet >& /dev/null
- brew outdated gcc || brew upgrade gcc
- brew outdated cmake ... | language: c
matrix:
include:
- os: linux
compiler: gcc
sudo: false
- os: linux
compiler: clang
sudo: false
- os: linux
dist: trusty
sudo: required
compiler: gcc
- os: linux
dist: trusty
sudo: required
compiler: clang
- os: osx
co... | Enable Trusty builds in Travis CI. | Enable Trusty builds in Travis CI.
| YAML | lgpl-2.1 | RWTH-ELP/PnMPI,RWTH-ELP/PnMPI,RWTH-ELP/PnMPI,RWTH-HPC/PnMPI,RWTH-HPC/PnMPI,RWTH-HPC/PnMPI |
dc94e4e65af04b0682aed4f24228bfa9c8f69918 | .travis.yml | .travis.yml | # https://travis-ci.org/dr-prodigy/python-holidays
dist: bionic
language: python
cache: pip
before_install:
- pip install --upgrade pip
install:
# hijri-converter not available < python 3.6
- if [[
$TRAVIS_PYTHON_VERSION == '3.9' ||
$TRAVIS_PYTHON_VERSION == '3.8' ||
$TRAVIS_PYTHON_VERSION == '3... | # https://travis-ci.org/dr-prodigy/python-holidays
dist: bionic
language: python
cache: pip
before_install:
- pip install --upgrade pip
install:
# hijri-converter not available < python 3.6
- if [[
# use Python 3.9 to test missing hijri-converter
# $TRAVIS_PYTHON_VERSION == '3.9' ||
$TRAVIS_PYTHON_VERS... | Use Python 3.9 to test missing hijri-converter | Use Python 3.9 to test missing hijri-converter
| YAML | mit | ryanss/holidays.py,dr-prodigy/python-holidays |
43c23e57973acc8a3de3e5cc180d6939761fd6e8 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4'
on:
tags: true
| language: node_js
node_js:
- '4'
branches:
only:
- /^v[0-9]/
| Handle Travis bug for duplicate builds | Handle Travis bug for duplicate builds
- https://github.com/travis-ci/travis-ci/issues/2456
- https://github.com/travis-ci/travis-ci/issues/1532#issuecomment-40115887
| YAML | mit | niksy/modernizr-detects,niksy/modernizr-detects |
7329b2a7e7a45e7d3a880eb680f99004bae879fa | .travis.yml | .travis.yml | language: objective-c
xcode_project: OpenSim.xcodeproj
xcode_scheme: OpenSim
osx_image: xcode7.3
script:
- xcodebuild clean build -project OpenSim.xcodeproj -scheme OpenSim
| language: objective-c
xcode_project: OpenSim.xcodeproj
xcode_scheme: OpenSim
osx_image: xcode8
script:
- xcodebuild clean build -project OpenSim.xcodeproj -scheme OpenSim
| Change OS X image to Xcode 8. | Change OS X image to Xcode 8.
| YAML | mit | luosheng/OpenSim |
96a7d83157682d2774d7ed768fa6e11edd34e34e | .travis.yml | .travis.yml | language: java
matrix:
include:
- os: linux
sudo: false
jdk: oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
- oracle-java8-set-default
script: ./gradlew check
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -f... | language: java
dist: trusty
jdk: openjdk8
script: ./gradlew check
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Use only OpenJDK 8 on Trusty in Travis CI | Use only OpenJDK 8 on Trusty in Travis CI
| YAML | apache-2.0 | polis-mail-ru/2017-highload-kv,polis-mail-ru/2017-highload-kv |
a28469a6b4e433dfbfaa2b6f50a0429513ba8785 | .travis.yml | .travis.yml | language: java
os:
- linux
notifications:
email:
on_success: change
on_failure: always
| language: java
os:
- linux
sudo: false
addons:
apt:
packages:
- oracle-java8-installer
notifications:
email:
on_success: change
on_failure: always
| Use latest Java 8 when running tests | Use latest Java 8 when running tests
| YAML | mit | mini2Dx/miniscript,mini2Dx/miniscript,mini2Dx/miniscript,mini2Dx/miniscript |
c620f95fed51aa39d4d99ec19779fa722931fd2a | .travis.yml | .travis.yml | ---
language: go
os:
- linux
- osx
go:
- 1.3
- 1.4
- 1.5
- tip
| ---
go_import_path: enum-dns
language: go
os:
- linux
- osx
go:
- 1.3
- 1.4
- 1.5
- tip
| Fix path to allow imports | Fix path to allow imports | YAML | apache-2.0 | hadrienk/enum-dns,hadrienk/enum-dns,hadrienk/enum-dns |
0d7d2ce0b412349247dc6982cdc1942bbc519223 | .travis.yml | .travis.yml | cache:
directories:
- $HOME/.platformio
language: python
python:
- "2.6"
- "2.7"
env:
- TOX_ENV=docs
- TOX_ENV=lint
- TOX_ENV=py27
install:
- pip install tox
script:
- tox -e $TOX_ENV
| cache:
directories:
- $HOME/.platformio
language: python
python:
- "2.7"
env:
- TOX_ENV=docs
- TOX_ENV=lint
- TOX_ENV=py27
install:
- pip install tox
script:
- tox -e $TOX_ENV
| Disable Travis Python 2.6 iteration | Disable Travis Python 2.6 iteration
| YAML | apache-2.0 | bkudria/platformio,jrobeson/platformio,platformio/platformio-core,ZachMassia/platformio,TimJay/platformio,awong1900/platformio,bkudria/platformio,bkudria/platformio,atyenoria/platformio,platformio/platformio,awong1900/platformio,mplewis/platformio,valeros/platformio,mcanthony/platformio,eiginn/platformio,TimJay/platfor... |
28d43280be798ec973e45d6dd366034ab786683d | .travis.yml | .travis.yml | language: node_js
node_js:
- '9'
- '8'
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
| language: node_js
node_js:
- '10'
- '9'
- '8'
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
| Add Node.js 10 to Travis CI build matrix | Add Node.js 10 to Travis CI build matrix
| YAML | mit | watson/stackman |
7ff9ae72432a1ee2749b154d05a8d34f4917d5ca | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
# - "3.2" # py.test has no support for Python 3.2
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev" # 3.7 development branch
- "nightly" # currently points to 3.7-dev
- "pypy"
install:
- pip install -r requirements_test.txt
- pip install coveralls
script:
mak... | language: python
python:
- "2.6"
- "2.7"
# - "3.2" # py.test has no support for Python 3.2
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev" # 3.7 development branch
- "nightly" # currently points to 3.7-dev
- "pypy"
install:
- pip install tox
- pip install coveralls
script:
tox
after_success:
cov... | Change the configuration of Travis to use Tox. | Change the configuration of Travis to use Tox.
| YAML | mit | vrcmarcos/python-deprecated |
8ec0255729e45dda364f09fd5b66001dabb9660a | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm: 2.2
addons:
transifex:
username: somebody
password: s3cretz
hostname: https://www.custom-hostname.example.com
install: echo install
script: echo script
after_script:
- cat ~/.transifexrc
| language: ruby
sudo: false
rvm: 2.2
env:
- ZERO=0
- ZERO=1
addons:
transifex:
username: somebody
password: s3cretz
hostname: https://www.custom-hostname.example.com
install: echo install
script:
- echo script
- test $ZERO -eq 0
after_script:
- cat ~/.transifexrc
| Test after_success behavior of transifex | Test after_success behavior of transifex
| YAML | mit | travis-repos/ruby-test-staging |
e1cf30a1ca19c7a2f53b2b29956b2b2a279b265d | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
before_install:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "iojs"
before_install:
- npm install -g grunt-cli
| Drop support for older Node, add io.js. | Drop support for older Node, add io.js.
| YAML | mit | rubenv/json-inspect |
08252e3dd08db5f272652ebc95037725731a1715 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- composer install
script:
- mkdir -p build/logs
- php ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- travis_retry php ./vendor/bin/cover... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- composer install
script:
- mkdir -p build/logs
- php ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- travis_retry php ./vendor/bin/coveralls
se... | Drop PHP 5.3 from Travis CI | Drop PHP 5.3 from Travis CI
| YAML | mit | emonkak/php-database |
6daf7f0c8a709b8018a84bc879d988edbfa653a4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
| language: ruby
rvm:
- 2.0.0-p648
- 2.1.8
- 2.2.4
- 2.3.0
| Update Ruby versions for Travis CI. | Update Ruby versions for Travis CI.
| YAML | mit | rossf7/elasticrawl |
e7f5e3f669436826bf0ffe7a88c1ac180c48bb25 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
| sudo: false
language: ruby
before_install:
- gem install bundler
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
| Add before_install to install bundler | Add before_install to install bundler
| YAML | mit | neilslater/ruby_nex_c,neilslater/ruby_nex_c |
77a974aaa00b0c31b8ecafbf4b1d40166cbda61b | .travis.yml | .travis.yml | language: erlang # no C/shell language support; use least-loaded worker(s)
# Make sure CMake is installed on target
install: sudo apt-get install cmake libcap
# Build a release version and get verbose output
env:
- TEST_OPTS=-v
- DEFAULT_TEST_TARGET=prove
- OPTIONS="-DCMAKE_BUILD_TYPE=Release"
# Run the Build ... | language: erlang # no C/shell language support; use least-loaded worker(s)
# Make sure CMake is installed on target
install: sudo apt-get install cmake
# Build a release version and get verbose output
env:
- TEST_OPTS=-v
- DEFAULT_TEST_TARGET=prove
- OPTIONS="-DCMAKE_BUILD_TYPE=Release"
# Run the Build script
... | Revert "Tell Travis to try to install setcap" | Revert "Tell Travis to try to install setcap"
Travis does not seem to have libcap
Unable to locate package libcap
install: 'sudo apt-get install cmake libcap' returned false.
Done. Build script exited with: 1
This reverts commit 2e207eb8cd13a95db10f86b1093fb2f08682411a.
| YAML | mit | eroullit/dabba,eroullit/dabba,eroullit/dabba,eroullit/dabba |
a0350892f9f2906b65afad36766e8319ec8f5c0b | .travis.yml | .travis.yml | language: ruby
env: DEBUG=true
rvm:
- 2.2.0
- 2.1.0
- 2.0.0
- 1.9.3
- 1.8.7
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode | language: ruby
env: DEBUG=true
rvm:
- 2.2.0
- 2.1.0
- 2.0.0
- 1.9.3
- 1.8.7
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- jruby-9000 # JRuby 9.0.0.0!
| Add jRuby 9k to CI config | Add jRuby 9k to CI config
| YAML | mit | gemfury/gemfury |
a249932002f2e95e0a91b8570c7a25d96250f552 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.12'
- '4.1'
| language: node_js
node_js:
- '0.12'
- '4.1'
notifications:
email: false
| Disable email notifications from Travis CI | Disable email notifications from Travis CI
| YAML | mit | hanamura/gulp-minisite,hanamura/gulp-minisite |
aee9a4f78c22f6a449a36184656bc1bbe4185a75 | .travis.yml | .travis.yml | language: python
cache: pip
python:
- "3.5"
- "3.6"
env:
# the Django version from requirements.txt is used
- $DENV=""
# the latest Django development version is used
- $DENV="pip install --upgrade --pre Django"
# allow the Django pre version to fail without failing the entire build
matrix:
fast_... | language: python
cache: pip
python:
- "3.5"
- "3.6"
- "3.7"
env:
# the Django version from requirements.txt is used
- $DENV=""
# the latest Django development version is used
- $DENV="pip install --upgrade --pre Django"
# allow the Django pre version to fail without failing the entire build
matri... | Add python 3.7 to ci | Add python 3.7 to ci
| YAML | agpl-3.0 | d120/pyfeedback,d120/pyfeedback,d120/pyfeedback,d120/pyfeedback |
e4133738586e0b4c5f93fe047068c1efd9ea2984 | .travis.yml | .travis.yml | script: "bundle exec rake travis"
before_script: ./bin/ci/before_build.sh
rvm:
- 1.9.2
- 1.9.3
notifications:
email:
- didier@nocoffee.fr
- mario@mariovisic.com
irc: "irc.freenode.org#locomotivecms"
branches:
only:
- master
- 2.0.0.rc
| script: "bundle exec rake travis"
before_script: ./bin/ci/before_build.sh
rvm:
- 1.9.2
- 1.9.3
notifications:
email:
- didier@nocoffee.fr
- mario@mariovisic.com
irc: "irc.freenode.org#locomotivecms"
branches:
only:
- master
- 1.0.0
| Test the master and 1.0 stable branches. | Test the master and 1.0 stable branches.
| YAML | mit | emanuel/engine,timsly/engine,Vinagility/engine_old,Sharagoz/engine,furkanayhan/engine,slavajacobson/engine,local-ch/locomotivecms-engine,scarl3tt/engine,LaunchPadLab/engine,StartupWeekend/engine,merqlove/engine,merqlove/engine,local-ch/locomotivecms-engine,Gnuside/contrib-locomotivecms-engine,thirus/engine,boie0025/eng... |
3060a541365cf80b552d88aa399777406aceb28c | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
install:
- "pip install --upgrade pip"
- "pip install -r requirements.txt"
- "python setup.py install"
before_script:
- "flake8 masterqa/*.py"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "firefox --version"
- "nosetests examples/depl... | language: python
sudo: false
python:
- "2.7"
install:
- "pip install --upgrade pip"
- "pip install -r requirements.txt"
- "python setup.py install"
before_script:
- "flake8 masterqa/*.py"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "firefox --version"
- "nosetests examples/depl... | Add a deploy check with pytest | Add a deploy check with pytest
| YAML | mit | mdmintz/MasterQA,masterqa/MasterQA |
f0ff6877bf76bbd8bae60d7c4291cb5825264e96 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
script: echo "code tests" ; npm run test; echo "readme tests" ; npm run test-readme ; echo "documentation example tests" ; npm run test-docs
| language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
script: echo "code tests" ; npm run test; echo "readme tests" ; npm run test-readme ; echo "documentation example tests" ; npm run test-docs
| Test on Node v9, stop testing on 4 and 5 | Travis: Test on Node v9, stop testing on 4 and 5
| YAML | isc | anko/eslisp |
1e98af0b4006708d57bbf888ab008cc7e75f4184 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.2
before_install:
- gem update fastlane --no-ri --no-rdoc --no-document
- git remote set-url origin "https://${GITHUB_TOKEN}@github.com/uias/Pageboy.git"
script:
- .travis/build.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false | language: objective-c
osx_image: xcode8.2
before_install:
- gem update fastlane --no-ri --no-rdoc --no-document
- git remote set-url origin "https://${GITHUB_TOKEN}@github.com/uias/Pageboy.git"
script:
- .travis/build.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false
branches:
... | Add branch restrictions to CI | Add branch restrictions to CI
| YAML | mit | uias/Pageboy,uias/Pageboy |
0e827949ad6431e00fb2b11362a795ca7ea5e82a | .travis.yml | .travis.yml | language: go
go:
- tip
sudo: required
dist: trusty
addons:
apt:
packages:
- python3
- python3-coverage
- libpq-dev
- python3-psycopg2
- python3-numpy
- python3-matplotlib
install:
- go get github.com/olt/libpq
- go get github.com/DATA-DOG/go-sqlmock
- go get github.com/axw/gocov/go... | language: go
go:
- tip
sudo: required
dist: trusty
addons:
apt:
packages:
- python3
- python3-coverage
- libpq-dev
- python3-numpy
- python3-matplotlib
install:
- go get github.com/olt/libpq
- go get github.com/DATA-DOG/go-sqlmock
- go get github.com/axw/gocov/gocov
- go get github.c... | Switch to installing psycopg2 via pip in Travis CI. | Switch to installing psycopg2 via pip in Travis CI.
| YAML | mit | seadsystem/Backend,seadsystem/Backend,seadsystem/Backend,seadsystem/Backend |
bb9e1af0e04ef568a520e717c45343929ffdc83f | .travis.yml | .travis.yml | language: python
dist: trusty
sudo: required
matrix:
include:
- os: linux
sudo: required
python: 2.7
- os: linux
sudo: required
python: 3.4
- os: linux
sudo: required
python: 3.5
- os: linux
sudo: required
python: 3.6
- os: osx
python: 3.6
befo... | language: python
dist: trusty
sudo: required
matrix:
include:
- os: linux
sudo: required
python: 2.7
- os: linux
sudo: required
python: 3.4
- os: linux
sudo: required
python: 3.5
- os: linux
sudo: required
python: 3.6
- os: osx
python: 3.5
befo... | Use Python 3.5 on OS X | Use Python 3.5 on OS X
| YAML | agpl-3.0 | openclimatedata/pymagicc,openclimatedata/pymagicc |
3a8fd4eb3c64f6ec8244c0685269aec7939730f0 | .travis.yml | .travis.yml | language: c
sudo: false
notifications:
email: false
env:
global:
- COMMAND="pytest glue_vispy_viewers --cov glue_vispy_viewers"
- SETUP_XVFB=True
- CONDA_CHANNELS="glueviz"
- CONDA_DEPENDENCIES="glueviz mock pyopengl pyqt pytest-cov qtpy scipy"
- CONDA_CHANNEL_PRIORITY=True
matrix:
- PY... | language: c
sudo: false
notifications:
email: false
env:
global:
- COMMAND="pytest glue_vispy_viewers --cov glue_vispy_viewers"
- SETUP_XVFB=True
- CONDA_CHANNELS="glueviz"
- CONDA_DEPENDENCIES="glueviz mock pyopengl pyqt pytest-cov qtpy scipy"
- CONDA_CHANNEL_PRIORITY=True
- PIP_DEPENDEN... | Include pytest-faulthandler, pytest-qt, and objgraph | Travis: Include pytest-faulthandler, pytest-qt, and objgraph | YAML | bsd-2-clause | astrofrog/glue-3d-viewer,glue-viz/glue-3d-viewer,astrofrog/glue-vispy-viewers,PennyQ/astro-vispy,glue-viz/glue-vispy-viewers |
7c907e948f818d31c1acb90e789dbb04b013d57d | .travis.yml | .travis.yml | language: android
# use container based build infrastructure
sudo: false
jdk:
- oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-24.0.0
- android-24
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
licenses:
- '.... | language: android
# use container based build infrastructure
sudo: false
jdk:
- oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-24.0.2
- android-24
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
licenses:
- '.... | Fix Travis script with new build tools version | Fix Travis script with new build tools version
| YAML | apache-2.0 | zplesac/android_connectionbuddy,zplesac/android_connectify |
73006788a00160af05ff01c65504de15bc4fdd59 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: java
before_install:
- wget https://github.com/sormuras/bach/raw/master/install-jdk.sh
install: mvn install -DskipTests=true -Dgpg.skip=true
jdk:
- openjdk9
- openjdk10
- openjdk11
matrix:
include:
# 9
- env: JDK='Oracle JDK 9'
jdk: oraclejdk9
- env: JD... | sudo: false
dist: trusty
language: java
before_install:
- wget https://github.com/sormuras/bach/raw/master/install-jdk.sh
install: mvn install -DskipTests=true -Dgpg.skip=true
jdk:
- openjdk9
- openjdk10
- openjdk11
matrix:
include:
# 9
- env: JDK='Oracle JDK 9'
jdk: oraclejdk9
- env: JD... | Remove deprecated Oracle JDK 10. | Remove deprecated Oracle JDK 10. | YAML | apache-2.0 | jhalterman/sarge,jhalterman/sarge |
9b3944f45505b16f21b0cbd211d306fd6c3e180c | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| language: node_js
node_js:
- "0.10"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
sudo: false
| Use container-based infra on Travis | Use container-based infra on Travis
| YAML | mit | herojobs/react-router,wesbos/react-router,timuric/react-router,baillyje/react-router,justinanastos/react-router,adityapunjani/react-router,MrBackKom/react-router,gbaladi/react-router,justinanastos/react-router,Reggino/react-router,mikekidder/react-router,Reggino/react-router,rkit/react-router,Gazler/react-router,iNikNi... |
ea9dc90b94db95e62d7d319a10d00ae213e59538 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository -y ppa:biometrics/bob
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-all-dev libblitz1-dev
install:
- "python bootstrap.py"
- "./bin/buildout"
script:
- "./bin/nosetests -sv"
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository -y ppa:biometrics/bob
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-all-dev libblitz1-dev
install:
- "python bootstrap.py"
- "./bin/buildout"
script:
- "./bin/nosetests -sv"
- "./bin/... | Test documentation and documentation generation | Test documentation and documentation generation
| YAML | bsd-3-clause | tiagofrepereira2012/bob.blitz,tiagofrepereira2012/bob.blitz,tiagofrepereira2012/bob.blitz |
d2bc5739223c87bd20b94b1d9ad6e79b494d067b | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit --coverage-clover clover
after_success:
- curl -sL https://bit.ly/artifact-uploader | php
| language: php
php:
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit --coverage-clover clover
after_success:
- curl -sL https://bit.ly/artifact-uploader | php
| Remove the build over PHP 5.3 | Remove the build over PHP 5.3
| YAML | apache-2.0 | potherca-contrib/scrutinizer,potherca-contrib/scrutinizer |
7385cfdaeaa0ba2e2018a5e621d247d656ceb6f0 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
# test command
install:
- python setup.py install
script:
- python setup.py test
- cmark.py README.md
- cmark.py README.md -a
- cmark.py README.md -aj
| sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
# test command
install:
- python setup.py install
script:
- python setup.py test
- cmark.py README.md
- cmark.py README.md -a
- cmark.py README.md -aj
| Enable automated testing on python 3.5 | Enable automated testing on python 3.5 | YAML | bsd-3-clause | lu-zero/CommonMark-py |
d73d70ee2cef8c5a1b6457df758ca483790bbfa4 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- openjdk8
env:
global:
- DITA_OT_VERSION=3.3.4
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| sudo: false
language: java
jdk:
- openjdk8
env:
global:
- DITA_OT_VERSION=3.4
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| Use latest DITA-OT version (3.4) for CI builds | Use latest DITA-OT version (3.4) for CI builds
Signed-off-by: Roger Sheen <a61a1add71dadc74037ae5e44ee30713db9a7451@infotexture.net>
| YAML | apache-2.0 | infotexture/docs,infotexture/docs,dita-ot/docs |
d7bbcb9954d5b4624d382e17496b61bbfbc4dbdd | .travis.yml | .travis.yml | language: java
notifications:
email:
recepients:
- dev@omid.incubator.apache.org
on_success: always
on_failure: always
jdk:
- oraclejdk8
branches:
only:
- master
cache:
directories:
- "~/.m2"
install: true
before_script:
# This is required to avoid failures of HBase minicluster rel... | language: java
notifications:
email:
recepients:
- dev@omid.incubator.apache.org
on_success: always
on_failure: always
jdk:
- oraclejdk8
branches:
only:
- master
- 0.9.0.0
- phoenix-integration
cache:
directories:
- "~/.m2"
install: true
before_script:
# This is required to... | Add 0.9.0.0 and phoenix-integration branches to Travis | [OMID-88] Add 0.9.0.0 and phoenix-integration branches to Travis
Change-Id: Ib3308cfdb20ee84b3a71da8ec976873ff279d54f
| YAML | apache-2.0 | yonigottesman/incubator-omid,yonigottesman/incubator-omid |
2661ad4b78cdf7a34bbe7dc0b66a5338b22f0357 | .travis.yml | .travis.yml | sudo: required
# This moves Kubernetes specific config files.
env:
- CHANGE_MINIKUBE_NONE_USER=true
before_script:
# Download kubectl, which is a requirement for using minikube.
- curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv k... | sudo: required
dist: trusty
group: travis_lts
# This moves Kubernetes specific config files.
env:
- CHANGE_MINIKUBE_NONE_USER=true
before_script:
# Download kubectl, which is a requirement for using minikube.
- curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/linux/amd64/kubectl &... | Add LTS release for CI build in Travis | Add LTS release for CI build in Travis | YAML | apache-2.0 | prateekpandey14/Explorer |
522ef00cc631d5fcc43f80a2e299f36e0f4c9595 | .travis.yml | .travis.yml | language: php
php:
- hhvm
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
include:
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest"
cache:
directories:
- $COMPOSER_CACHE_DIR
before_install:
- composer selfupdate
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
scri... | language: php
php:
- hhvm
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
matrix:
include:
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest"
cache:
directories:
- $COMPOSER_CACHE_DIR
before_install:
- composer selfupdate
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLA... | Add PHP7.1 to build matrix | Add PHP7.1 to build matrix
| YAML | mit | scheb/tombstone,scheb/tombstone,scheb/tombstone |
ed00d8601cfd047a74e107518e1c9e33ea0cfae6 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- 'nightly'
install:
- pip install ${DJANGO} Paver flake8 tmdbsimple
script:
- paver inspect
- paver test
- python setup.py sdist
env:
global:
secure: uI+0MUSsCbTAWlyODiAURJObLDZ1mnLlYQGhDFUW4FGFTIKjbX9aZiNv0J9P0qbQDsO8OrFRuAaa2L2z/09w54g39gsQUW... | language: python
python:
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- 'nightly'
install:
- pip install ${DJANGO} Paver flake8 tmdbsimple
script:
- paver inspect
- paver test
- python setup.py sdist
env:
global:
secure: uI+0MUSsCbTAWlyODiAURJObLDZ1mnLlYQGhDFUW4FGFTIKjbX9aZiNv0J9P0qbQDsO8OrFRuAaa2L2z/09w54g39gsQUW2vBPL/W+... | Drop support for Django 1.4 | Drop support for Django 1.4
Official support from Django project ends soon anyway
| YAML | mit | simon-andrews/movieman2,simon-andrews/movieman2 |
a46b20c13035f128666e665bd15525d99884b6b4 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2
- 2.1
- 2.0
- ruby-head
- rbx-3.74
- jruby-20mode
- jruby-21mode
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3.74
fast_finish: true
before_install: gem install bundler -v 1.14.... | language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2
- 2.1
- 2.0
- ruby-head
- rbx-3.74
- jruby
- jruby-head
env:
global:
- JRUBY_OPTS="--2.0"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3.74
fast_finish: true
before_install: gem install ... | Fix Travis JRuby modes for JRuby 1.7 | Fix Travis JRuby modes for JRuby 1.7
| YAML | mit | jnbt/candy_check |
758e87d07418c693e57c233dbb6028df62fa53ae | .travis.yml | .travis.yml | os:
- linux
language:
- cpp
sudo:
- required
services:
- docker
env:
matrix:
- GCC_VERSION=48
- GCC_VERSION=49
- GCC_VERSION=52
- GCC_VERSION=53
- GCC_VERSION=48 COVERALLS=True
- GCC_VERSION=48 VALGRIND=True
matrix:
include:
- os: osx
osx_image: xcode8
... | os:
- linux
language:
- cpp
sudo:
- required
services:
- docker
env:
matrix:
- GCC_VERSION=48
- GCC_VERSION=49
- GCC_VERSION=52
- GCC_VERSION=53
- GCC_VERSION=48 COVERALLS=True
- GCC_VERSION=48 VALGRIND=True
matrix:
include:
- os: osx
osx_image: xcode7.3
... | Drop apple-clang 8.0 support; conan doesn't yet whitelist that version | Travis: Drop apple-clang 8.0 support; conan doesn't yet whitelist that version
| YAML | agpl-3.0 | imazen/imageflow,imazen/imageflow,imazen/imageflow,imazen/imageflow,imazen/imageflow,imazen/imageflow,imazen/imageflow |
ed2c95816c21744bfa790f2af259e998c14e6411 | .travis.yml | .travis.yml | language: ruby
sudo: false
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler --no-rdoc --no-ri
- bundle --version
install: bundle install --without development
env:
- WITH_REDIS_NAMESPACE="false"
- WITH_REDIS_NAMESPACE="true"
rvm:
-... | language: ruby
sudo: false
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler --no-rdoc --no-ri
- bundle --version
install: bundle install --without development
env:
- WITH_REDIS_NAMESPACE="false"
- WITH_REDIS_NAMESPACE="true"
rvm:
-... | Test against Ruby 2.2.6 (instead of 2.2.0) | Test against Ruby 2.2.6 (instead of 2.2.0)
| YAML | mit | sensortower/sidekiq-throttled,sensortower/sidekiq-throttled,sensortower/sidekiq-throttled |
1d3dffa7afe175de646893496007321c5ecebe05 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake test"
cache: bundler
addons:
code_climate:
repo_token: ae74feb57032eaec34d8b695e504f00fe300d01a2ec0055e41f107a20f512645
| language: ruby
rvm:
- 1.9.3
- 2.1.5
- 2.3.0
- jruby
script: "bundle exec rake test"
cache: bundler
addons:
code_climate:
repo_token: ae74feb57032eaec34d8b695e504f00fe300d01a2ec0055e41f107a20f512645
| Expand ruby versions to test | Expand ruby versions to test
| YAML | artistic-2.0 | bio-miga/miga,bio-miga/miga,bio-miga/miga,bio-miga/miga |
28a586bea873895a97b598fdfd87ae56021b8864 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '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:
- '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/strata,bigeasy/strata |
fc020f9636baab84de4504766338dc629ab7ac4e | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '8'
- '10'
before_script:
- npm install -g gulp
script:
- gulp build
| language: node_js
node_js:
- '8'
- '10'
before_script:
- npm install -g gulp
script:
- gulp build
| Drop testing for Node v6 | Drop testing for Node v6
Fixes build errors due to syntax limitations of Node v6.
| YAML | mit | jakezatecky/d3-funnel,jakezatecky/d3-funnel |
6f9c2142dc618ef35d3656abde3398c6225191f0 | .travis.yml | .travis.yml | sudo: required
services: docker
os: linux
dist: xenial
before_install:
- DEBIAN_FRONTEND=noninteractive sudo -E apt-get -y -qq update
- DEBIAN_FRONTEND=noninteractive sudo -E apt-get -y -qq dist-upgrade
- docker pull ubuntu:latest
language: c
before_script:
- test -d m4 || mkdir m4
- docker run -n temp ubu... | sudo: required
services: docker
os: linux
dist: xenial
before_install:
- docker pull ubuntu:latest
language: c
before_script:
- test -d m4 || mkdir m4
- docker run -n temp ubuntu:latest sh -c 'apt-get -qq -y update && DEBIAN_FRONTEND=noninteractive apt-get -qq -y dist-upgrade && DEBIAN_FRONTEND=noninteractive ... | Remove non-docker apt-get calls for testing | Remove non-docker apt-get calls for testing
| YAML | bsd-2-clause | torsknod/dial-reference,torsknod/dial-reference,torsknod/dial-reference,torsknod/dial-reference |
e507bf175f92ddd2bfb83fd7e3e5b66c4c03548c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_script: git rev-parse --abbrev-ref HEAD
script: bundle exec rake ci -t
| language: ruby
rvm:
- 1.9.3
before_script: git config -l
script: bundle exec rake ci -t
| Debug abort issue with Devtools.notify | Debug abort issue with Devtools.notify
| YAML | unlicense | lgierth/promise.rb |
d64e2b33f0d73cf83c6fa4d4315d1a583e5b6bd3 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
env:
- secure: "EhG2uSD2m1eGxuL2HeQewJJx7MVL4WpjrxyfiUBEgsApemD1yKJPjUnLwAyd\nbPi5HJx5ySm1TTRSvj6/yP85YLYTaJHA8OabKk7p0wFW294qcrYIDGovU7NL\n3YOqZmqN+S3XOBGFCOnByxE+pcxxWW/3/I09EgeW7D6tBPh67G0="
install:
- pip install pytest pytest-xdist 'pytest-cov>=1.8.0' p... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
- pypy3
env:
- secure: "EhG2uSD2m1eGxuL2HeQewJJx7MVL4WpjrxyfiUBEgsApemD1yKJPjUnLwAyd\nbPi5HJx5ySm1TTRSvj6/yP85YLYTaJHA8OabKk7p0wFW294qcrYIDGovU7NL\n3YOqZmqN+S3XOBGFCOnByxE+pcxxWW/3/I09EgeW7D6tBPh67G0="
install:
- pip install pytest pytest-xdist 'pytest-cov>=... | Enable automated testing on PyPy 3 | Enable automated testing on PyPy 3 | YAML | mit | WangHong-yang/wand,samuelmaudo/wand,pellaeon/wand,bpc/wand,dahlia/wand |
7424e7d2242ff42e2fca4191884611c8aaa76c8a | .travis.yml | .travis.yml | language: scala
jobs:
include:
- stage: test
before_install:
- export PATH=${PATH}:./vendor/bundle
install:
- rvm use 2.2.3 --install --fuzzy
- gem update --system
- gem install sass
- gem install jekyll -v 3.2.1
script:
- sbt ++$TRAVIS_SCALA_V... | language: scala
scala:
- 2.12.2
- 2.11.11
jdk:
- oraclejdk8
matrix:
include:
- scala: 2.12.2
jdk: oraclejdk8
env: PUBLISH_SITE=true
before_install:
- export PATH=${PATH}:./vendor/bundle
install:
- rvm use 2.2.3 --install --fuzzy
- gem update --system
- gem install sass
- gem install jeky... | Revert build stages as they don't work; try using matrix builds | Revert build stages as they don't work; try using matrix builds
| YAML | apache-2.0 | DavidGregory084/robots |
e6f1475b0fe86ba758f1a19332787466e78f5107 | .travis.yml | .travis.yml | sudo: required
language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.2
- python: 3.3
- python: 3.4
- python: 3.5
- python: nightly
- python: pypy
- language: generic
os: osx
- language: generic
os: osx
env: PY3=3
install: .ci/travis.sh
scr... | sudo: required
language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.2
- python: 3.3
- python: 3.4
- python: 3.5
- python: nightly
- python: pypy
- language: generic
os: osx
- language: generic
os: osx
env: PY3=3
install: .ci/travis.sh
scr... | Fix for missing py3 on Mac | Fix for missing py3 on Mac
| YAML | mit | vodik/plumbum,pombredanne/plumbum,AndydeCleyre/plumbum,henryiii/plumbum,weka-io/plumbum,fahhem/plumbum,AndydeCleyre/plumbum,vodik/plumbum,tomerfiliba/plumbum,weka-io/plumbum,fahhem/plumbum,tomerfiliba/plumbum,pombredanne/plumbum,henryiii/plumbum |
3f5ed504d1d8fbef503e72a5e5aa1d9de6997727 | .travis.yml | .travis.yml | language: node_js
node_js:
- 8
- 10
- 12
- node
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
node_js:
- 10
- 12
- 14
- node
matrix:
include:
- name: Lint
node_js: 14
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| Drop node.js 8 support, add 14, lint with 14 (semver-major) | Drop node.js 8 support, add 14, lint with 14 (semver-major)
| YAML | bsd-3-clause | papandreou/express-compiless |
a8b4aa911e156753ed48e64e96fcc9ad76f16efa | .travis.yml | .travis.yml | sudo: false
language: php
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- /^release\/.*$/
- feature/travis
- master
php:
- 5.4
env:
- WP_VERSION=latest WP_MULTISITE=0
matrix:
before_script:
- bash bin/install-phpunit.sh
- bash bin/install-wp-tests.sh w... | sudo: false
language: php
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- /^release\/.*$/
- feature/travis
- master
php:
- 5.4
- 5.5
- 5.6
env:
- WP_VERSION=3.7 WP_MULTISITE=0
- WP_VERSION=3.7 WP_MULTISITE=1
matrix:
before_script:
- bash bin/instal... | Test 0.8.12 in WP v3.7 + multisite on PHP v5.4, 5.5, 5.6 | Test 0.8.12 in WP v3.7 + multisite on PHP v5.4, 5.5, 5.6
| YAML | bsd-3-clause | macder/wp-form-validation,macder/wfv-validation,macder/wfv-validation,macder/wp-form-validation |
37d7f8dcb22b4034882d091432fdd535ba366451 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
- /usr/bin/pip install git+git://github.com/pyinvoke/invoke.git
- 'if [ -n "${VAR+x}" ]; then: invoke install-nacl --library=$NACL; fi'
- 'if [ -n "${VAR+x}" ]; then: invoke install --dev; fi'
script:
- invoke tests --suite=$SU... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
- /usr/bin/pip install git+git://github.com/pyinvoke/invoke.git
- 'if [ -n "${VAR+x}" ]; then: invoke install-nacl --library=$NACL; fi'
- 'if [ -n "${VAR+x}" ]; then: invoke install --dev; fi'
script:
- invoke tests --suite=$SU... | Use YAML array syntax to exclude the envvars | Use YAML array syntax to exclude the envvars
| YAML | mit | ucoin-io/cutecoin,lmctv/pynacl,alex/pynacl,lmctv/pynacl,xueyumusic/pynacl,hoffmabc/pynacl,hoffmabc/pynacl,JackWink/pynacl,pyca/pynacl,ucoin-bot/cutecoin,JackWink/pynacl,scholarly/pynacl,reaperhulk/pynacl,xueyumusic/pynacl,xueyumusic/pynacl,Insoleet/cutecoin,ucoin-io/cutecoin,dstufft/pynacl,dstufft/pynacl,scholarly/pyna... |
7308b0053c0b54a7b0e5893a1776f1844c33d4e4 | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '7'
script:
- npm run compile
- npm run lint
- npm run coverage
after_script:
- npm install coveralls
- cat ./coverage/lcov.info | coveralls
| language: node_js
node_js:
- '6'
- '7'
- '8'
script:
- npm run compile
- npm run lint
- npm run coverage
after_script:
- npm install coveralls
- cat ./coverage/lcov.info | coveralls
| Enable Node 8 on Travis CI | Enable Node 8 on Travis CI
| YAML | bsd-2-clause | inukshuk/edtf.js |
6cce1d56073471877e12f49fae042072eee54958 | .travis.yml | .travis.yml | dist: bionic
matrix:
include:
- language: go
sudo: false
go: "1.16"
before_install:
- go get github.com/mattn/goveralls@v0.0.8
install:
- export PATH=$PATH:$GOPATH/bin
script:
- make goinstall
- make check >& /tmp/check.log
- $GOPATH/bin/govera... | dist: bionic
matrix:
include:
- language: go
sudo: false
go: "1.16"
before_install:
- go get github.com/mattn/goveralls@v0.0.8
install:
- export PATH=$PATH:$GOPATH/bin
script:
- make goinstall
- make check >& /tmp/check.log
after_failure:
... | Move coveralls to the after_success lifecycle hook | Move coveralls to the after_success lifecycle hook
| YAML | apache-2.0 | noironetworks/aci-containers,noironetworks/aci-containers |
8063c7a6f73bd2c39d6e1726b2b9ffef591e00df | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
script: bundle exec rspec spec
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
script: bundle exec rspec spec
env:
global:
secure: JyF1/jorG/dGjXhgVV5THQI9BSCvuuktsfkcPbRCuDna2lUXGfQGUrCYRyOUwPzvJTkeI3kjQ7HUEMFHXl4f5Fz2zMrUhjkyPNlNPDGJpe5KZngaHWAgem... | Add CODECLIMATE_REPO_TOKEN as a secure Travis ENV variable | Add CODECLIMATE_REPO_TOKEN as a secure Travis ENV variable
| YAML | mit | pctj101/ruby-progressbar,pctj101/ruby-progressbar |
0e5fc8becf8d01a6992b6b2b08a220dcfbc11d56 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0-rc1
- jruby-19mode
- rbx-2.2
script:
- bundle exec rspec
- bundle exec rubocop
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2.2
script:
- bundle exec rspec
- bundle exec rubocop
| Test against Ruby 2.1 official release on Travis CI | Test against Ruby 2.1 official release on Travis CI
| YAML | mit | backus/guard-rubocop,guard/guard-rubocop,yujinakayama/guard-rubocop |
1575a997539136b7cd5b820cb667ccb470014d4c | .travis.yml | .travis.yml | language: python
dist: trusty
sudo: required
cache: pip
services:
- docker
python: 3.6
env:
- TOX_ENV=integration_tests-docker
EXTRA_ARGS="-n1"
CODECOV=integration
- TOX_ENV=integration_tests_with_jjb_trunk-docker
EXTRA_ARGS="-n1"
- TOX_ENV=integration_tests-not_docker
CODECOV=integration
- TOX_ENV=... | language: python
dist: trusty
sudo: required
cache: pip
services:
- docker
python: 3.6
env:
- TOX_ENV=integration_tests-docker
DOCKER_CONTAINER=jenkins/jenkins
EXTRA_ARGS="-n1"
CODECOV=integration
- TOX_ENV=integration_tests-docker
DOCKER_CONTAINER=jenkins/jenkins:lts
EXTRA_ARGS="-n1 --jenkins-dock... | Add Travis testing against Jenkins LTS release | Add Travis testing against Jenkins LTS release
| YAML | apache-2.0 | OddBloke/jenkins-job-linter |
d37a65d5a698e5e01bfec3a39e2782a272f34894 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.1.0
- 2.2.0
sudo: false
| rvm:
- 1.9.3
- 2.1.9
- 2.2.5
- 2.3.1
- 2.4.0-preview1
sudo: false
| Update the rubies we test against | (chore): Update the rubies we test against
Test against the latest patch version of each
| YAML | mit | sgruhier/foundation_rails_helper,dsandstrom/foundation_rails_helper |
d519f62865a271cd925d7e7771be0db3c0f41723 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
cache: pip
env:
global:
- RANDOM_SEED=12345
install:
- pip install coveralls scrutinizer-ocular
before_script:
- make env
- make depends-ci
script:
- make ci
after_success:
- coveralls
- ocular
notifications:
email:
on_success: never
on_... | sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
cache:
pip: true
directories:
- env
env:
global:
- RANDOM_SEED=12345
install:
- pip install coveralls scrutinizer-ocular
before_script:
- make env
- make depends-ci
script:
- make ci
after_success:
- coveralls
- ocular
notifications:
email... | Deploy Travis CI build 629 to GitHub | Deploy Travis CI build 629 to GitHub
| YAML | mit | jacebrowning/template-python-demo |
4f3fe5d898e0f40ef526b7427774f20529c37997 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
before_install:
- brew update
- brew install carthage || brew upgrade carthage
- brew outdated xctool || brew upgrade xctool
- carthage bootstrap --platform Mac
script:
- xctool -project HSTracker.xcodeproj -scheme HSTracker -sdk macosx clean build CODE_SIGN_IDENTITY=... | language: objective-c
osx_image: xcode7.3
before_install:
- brew update
- brew install carthage || brew upgrade carthage
- brew outdated xctool || brew upgrade xctool
- gem install xcpretty
- carthage bootstrap --platform Mac
script:
- xcodebuild -project HSTracker.xcodeproj -scheme HSTracker -sdk macosx cl... | Replace xctool with xcodebuild | xcpretty | Replace xctool with xcodebuild | xcpretty
xctool seem to make problems with travis | YAML | mit | bmichotte/HSTracker,ifeherva/HSTracker,ifeherva/HSTracker,mattwelborn/HSTracker,jonnguy/HSTracker,bmichotte/HSTracker,jonnguy/HSTracker,mattwelborn/HSTracker,jonnguy/HSTracker,mattwelborn/HSTracker,mattwelborn/HSTracker |
677531b74e74672cc9d0e30bed032a799331a372 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9.1.0.0
- jruby-9.1.7.0
- jruby-9.1.15.0
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby-9.1.0.0
- rvm: jruby-9.1.7.0
- rvm: jruby-9.1.15.0
- rvm: jruby-head
- rvm: ruby-head
before_install:
-... | sudo: required
dist: trusty
language: ruby
before_install: gem update --system
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9.1.0.0
- jruby-9.1.7.0
- jruby-9.1.15.0
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby-9.1.0.0
- rvm: jruby-9.1.7.0
- rvm: jruby-9.1.15.0
- rvm: jruby-head
... | Update rubygems so bundler loads properly | Update rubygems so bundler loads properly
| YAML | lgpl-2.1 | mvz/gir_ffi,mvz/gir_ffi,mvz/gir_ffi |
c99af147435a4a6058c5912a497541bef5ecfdf9 | .travis.yml | .travis.yml | language: php
php:
- '7.1'
- '7.2'
- '7.3'
before_install:
- pecl install mongodb
install:
- composer install
script:
- ./vendor/bin/phpunit
- ./vendor/bin/psalm --show-info=false
after_success:
- bash <(curl -s https://codecov.io/bash)
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular... | language: php
php:
- '7.1'
- '7.2'
- '7.3'
install:
- composer install
script:
- ./vendor/bin/phpunit
- ./vendor/bin/psalm --show-info=false
after_success:
- bash <(curl -s https://codecov.io/bash)
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-cl... | Install mongo only on 7.1 | Install mongo only on 7.1
| YAML | mit | leocavalcante/siler |
69a72aef165f8f21a72dd6ce1290536443d53d5e | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.6
- 7.0
- hhvm
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $set... | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setu... | Remove hhvm and add 7.1 | Remove hhvm and add 7.1
Signed-off-by: crynobone <e1a543840a942eb68427510a8a483282a7bfeddf@gmail.com>
| YAML | mit | orchestral/lumen |
9948161eb9eba66efcc4a2d27890884f059ac3a5 | .travis.yml | .travis.yml | ---
language: python
sudo: false
cache: pip
matrix:
allow_failures:
- python: nightly
- env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
exclude:
- python: "2.7"
env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"... | ---
language: python
sudo: false
cache: pip
matrix:
allow_failures:
- python: nightly
- env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
exclude:
- python: "2.7"
env: DJANGO="Django>=2.0,<2.1"
- python: "2.7"
env: DJANGO="https://github.com/django/django/archive/maste... | Exclude Django 2.0 from testing against Python 2.7 | Exclude Django 2.0 from testing against Python 2.7
| YAML | bsd-3-clause | georgemarshall/django-cryptography |
c3885e1d6f02cebde2978d1742ddca25f0ea43c2 | .travis.yml | .travis.yml | language: go
dist: xenial
go:
- "1.12.5"
sudo: required
install:
- pip install awscli
- snap install hugo
script:
- cd "$TRAVIS_BUILD_DIR/src"
- hugo
before_deploy:
- cd "$TRAVIS_BUILD_DIR/src/public"
deploy:
provider: s3
access_key_id: "$AWS_ACCESS_KEY_ID"
secret_access_key: "$AWS_SECRET_ACCESS_KEY"
... | language: go
dist: xenial
go:
- "1.12.5"
sudo: required
install:
- sudo pip install awscli
- snap install hugo
script:
- cd "$TRAVIS_BUILD_DIR/src"
- hugo
before_deploy:
- cd "$TRAVIS_BUILD_DIR/src/public"
deploy:
provider: s3
access_key_id: "$AWS_ACCESS_KEY_ID"
secret_access_key: "$AWS_SECRET_ACCESS_... | Add sudo to pip install command | Add sudo to pip install command
| YAML | mit | HoangPaul/hoangpaul.com |
904160cf0f8df646ad2ecbb6eff879326433b8b2 | .travis.yml | .travis.yml | language: erlang
notifications:
email: false
otp_release:
- 18.0
- 17.5
- 17.4
- 17.3
install: true
script: "make && make ct"
| language: erlang
notifications:
email: false
otp_release:
- 17.5
- 17.4
- 17.3
install: true
script: "make && make ct"
| Remove otp 18.0 for now | Remove otp 18.0 for now
| YAML | mit | bwegh/erwa,ethrbh/erwa |
4624b1bb66eb64a77bd7c6d0856ff69b25916350 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 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.3
- 2.2.6
after_success:
- bundle exec codeclimate-test-reporter
| Test with latest Ruby version | Test with latest Ruby version
| YAML | mit | jbox-web/gh-preview,jbox-web/gh-preview |
bf2cce701b5f76422c1900c9a8e194f8efd9612b | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.8.x
before_install:
- go get github.com/mattn/goveralls
# Note: Need to ignore all cmd/goggles files because gallium will not work on the linix travis instances.
script:
- rm -rf cmd/goggles/
- $HOME/gopath/bin/goveralls -service=travis-ci
| language: go
sudo: false
go:
- 1.8.x
before_install:
- go get github.com/mattn/goveralls
# Note: Need to ignore all cmd/goggles files because gallium will not work on the linix travis instances.
script:
- rm -rf cmd/goggles/
- $HOME/gopath/bin/goveralls -service=travis-ci -ignore server/assets/bindata_assetfs.... | Remove bindata from coverage report | Remove bindata from coverage report
| YAML | apache-2.0 | KyleBanks/goggles,KyleBanks/goggles,KyleBanks/goggles |
339e7d82e13fed974765196ef4840ec8aaff1ec7 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
after_success:
- npm run coveralls | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
before_install:
- sudo apt-get yaz
after_success:
- npm run coveralls | Install yaz before npm install | Install yaz before npm install
| YAML | mit | dengelke/node-zoom2,dengelke/node-zoom2,dengelke/node-zoom2,dengelke/node-zoom2 |
3c452057c2fb88098691bb16a7c490f91d17d6f2 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'stable'
- '6'
- '4'
sudo: false
env:
- workerCount=3
matrix:
fast_finish: true
branches:
only:
- master
- release-2.5
install:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm install
cache:
directories:
- node_modules
git:
d... | language: node_js
node_js:
- 'stable'
- '6'
- '4'
sudo: false
env:
- workerCount=3
matrix:
fast_finish: true
branches:
only:
- master
- release-2.5
- release-2.6
install:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm install
cache:
directories:
- node_m... | Add release-2.6 to covered branches | Add release-2.6 to covered branches
| YAML | apache-2.0 | kitsonk/TypeScript,donaldpipowitch/TypeScript,donaldpipowitch/TypeScript,nojvek/TypeScript,Eyas/TypeScript,Microsoft/TypeScript,microsoft/TypeScript,basarat/TypeScript,Eyas/TypeScript,microsoft/TypeScript,minestarks/TypeScript,SaschaNaz/TypeScript,kitsonk/TypeScript,weswigham/TypeScript,SaschaNaz/TypeScript,TukekeSoft/... |
7e1e185a84752847f400b6e69c9e2730637bf4b6 | .travis.yml | .travis.yml | language: python
python: "2.7"
install: "python setup.py install"
script: "coverage run --source "." --omit "setup.py,tests/speed_tests.py" -m py.test"
after_success: coveralls
| language: python
python: "2.7"
install: "python setup.py install"
script: 'coverage run --source "." --omit "setup.py,tests/speed_tests.py" -m py.test'
after_success: coveralls
| Fix " YAML was not valid | Fix " YAML was not valid
| YAML | mit | pokerregion/handparser,Seanmcn/poker,pokerregion/poker,marchon/poker |
8dd1686b207fc2b177f0bea6e67d135372eb490f | .travis.yml | .travis.yml | language: python
# ensure use container-based infrastructure for caching
sudo: false
python:
# - "2.6"
- "2.7"
addons:
apt:
packages:
- oracle-java8-installer
# versions of eXist to test against
env:
# - EXIST_DB_VERSION=eXist-3.0.RC1
- EXIST_DB_VERSION=eXist-2.2
before_install:
- export EXIST_... | language: python
# ensure use container-based infrastructure for caching
sudo: false
python:
# - "2.6"
- "2.7"
addons:
apt:
packages:
- oracle-java8-installer
# versions of eXist to test against
env:
- EXIST_DB_VERSION=eXist-3.0.RC1
- EXIST_DB_VERSION=eXist-2.2
before_install:
- export EXIST_DB... | Enable testing on existdb 3.0 RC1 | Enable testing on existdb 3.0 RC1
| YAML | apache-2.0 | emory-libraries/eulexistdb,emory-libraries/eulexistdb,emory-libraries/eulexistdb |
6b75f3ea8146770967d2f3f900a8838281cf3974 | .travis.yml | .travis.yml | language: cpp
sudo: false
os:
- linux
- osx
compiler:
- clang
- gcc
before_install: make math-revert
before_script: echo "CC=$CXX" > make/local
matrix:
fast_finish: true
exclude:
- os: osx
compiler: gcc
env:
- TESTFOLDER=src/test/unit/callbacks
- TESTFOLDER=src/test/unit/io
- TES... | language: cpp
sudo: false
os:
- linux
compiler:
- clang
- gcc
before_install: make math-revert
before_script: echo "CC=$CXX" > make/local
matrix:
fast_finish: true
env:
- TESTFOLDER=src/test/unit/callbacks
- TESTFOLDER=src/test/unit/io
- TESTFOLDER=src/test/unit/lang
- TESTFOLDER=src/test/u... | Test dedupe - for now we run os x tests on Jenkins. | Test dedupe - for now we run os x tests on Jenkins.
And as Travis is the slowest part of Stan builds, we'll cut off the OS X builds to save time
and get feedback to developers sooner. They're still covered by the Jenkins tests.
| YAML | bsd-3-clause | stan-dev/stan,stan-dev/stan,stan-dev/stan,stan-dev/stan,stan-dev/stan |
86731d5aa374696b16d1c6138074ac61b2e89064 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
| Use dynamic node versions on Travis CI | Test(config): Use dynamic node versions on Travis CI | YAML | unlicense | fvdm/nodejs-ns-api |
89cb13dde21c4b39f274c90c604925578a153d2b | .travis.yml | .travis.yml | language: ruby
install: gem install bundler
script: "bundle && bundle exec rake ci"
env:
- JRUBY_OPTS="--server -J-Xms1500m -J-Xmx1500m -J-XX:+UseConcMarkSweepGC -J-XX:-UseGCOverheadLimit -J-XX:+CMSClassUnloadingEnabled"
rvm:
- 2.2.2
- jruby
- jruby-head
- rbx-2
matrix:
allow_failures:
- rvm: jruby-h... | language: ruby
install: gem install bundler
script: "bundle && bundle exec rake ci"
env:
- JRUBY_OPTS="--server -J-Xms1500m -J-Xmx1500m -J-XX:+UseConcMarkSweepGC -J-XX:-UseGCOverheadLimit -J-XX:+CMSClassUnloadingEnabled"
rvm:
- 2.2.2
- jruby
- jruby-head
- rbx-2
matrix:
fast_finish: true
allow_failures... | Enable fast_finish for matrix builds | Enable fast_finish for matrix builds
| YAML | mit | tarcieri/turbine,tarcieri/turbine |
81c7a28210804f8c8a5b07a4818523a93d246378 | .travis.yml | .travis.yml | language: ruby
script: 'script/travis-ci'
rvm:
- 1.9.3
| language: ruby
script: 'script/travis-ci'
rvm:
- 1.9.3
notifications:
email: false | Stop emailing builds to support, thanks. | Stop emailing builds to support, thanks. | YAML | mit | Belthazor2008/git-scm.com,git/git-scm.com,dscho/git-scm.com,jnavila/gitscm-next,beni55/git-scm.com,DAKaufman/git-scm.com,jasonlong/git-scm.com,virgo075/git-scm.com,dscho/git-scm.com,empyrical/git-scm.com,mosoft521/gitscm-next,pwz3n0/git-scm.com,Xia-lj/git-scm.com,dotty2883/git-scm.com,xyztest/git-scm.com,initaldk/git-s... |
0cdd808fb299b337936fafe2231bfb283342ca3a | .travis.yml | .travis.yml | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
env:
global:
- AWS_ACCESS_KEY_ID="MOCK_ACCESS_KEY_ID"
- AWS_SECRET_ACCESS_KEY="MOCK_SECRET_ACCESS_KEY"
matrix:
- DJANGO_VERSION=1.8.*
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11.*
- DJANGO_VERSION=2... | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
env:
global:
- AWS_ACCESS_KEY_ID="MOCK_ACCESS_KEY_ID"
- AWS_SECRET_ACCESS_KEY="MOCK_SECRET_ACCESS_KEY"
matrix:
- DJANGO_VERSION=1.8.*
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11.*
- DJANGO_VERSION=2... | Test the next version of django that is under development | Test the next version of django that is under development
| YAML | mit | datadesk/django-bakery,datadesk/django-bakery,datadesk/django-bakery |
d0cb94447a97f4d4a485574ce41dd0402ec8d9c1 | .travis.yml | .travis.yml | notifications:
recipients:
- bodo@wannawork.de
| notifications:
recipients:
- bodo@wannawork.de
rvm:
- 1.8.7
- 1.9.2
| Build for 1.8 and 1.9 | Build for 1.8 and 1.9 | YAML | mit | putpat/rockstar,kauden/rockstar |
f6a16c2f486e16efc733ec2fb31b806a25c371e9 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
notifications:
email: false
irc:
channels:
- "irc.freenode.org#shogun"
on_success: change
on_failure: always
template:
- "it's %{author}'s turn to pay the next round of drinks for the massacre he caused in %{repository}: %{build_url}"
env:
- INT... | language: cpp
compiler:
- gcc
- clang
notifications:
email: false
irc:
channels:
- "irc.freenode.org#shogun"
on_success: change
on_failure: always
template:
- "it's %{author}'s turn to pay the next round of drinks for the massacre he caused in %{repository}: %{build_url}"
env:
- INT... | Add gdb package for debugging errors in examples | Add gdb package for debugging errors in examples
| YAML | bsd-3-clause | geektoni/shogun,besser82/shogun,karlnapf/shogun,Saurabh7/shogun,lambday/shogun,Saurabh7/shogun,karlnapf/shogun,Saurabh7/shogun,Saurabh7/shogun,lisitsyn/shogun,besser82/shogun,geektoni/shogun,besser82/shogun,Saurabh7/shogun,Saurabh7/shogun,geektoni/shogun,lisitsyn/shogun,lisitsyn/shogun,lisitsyn/shogun,geektoni/shogun,S... |
387c77585909e73773d1c97a782667f951cda67d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.5
- 2.3.1
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: 2.0.0
before_install:
# this is a fix to get rng-tools to work in travis-ci
- sudo apt-get update -qq
- sudo apt-get install --yes rng-tools
- sudo rm -f /dev/random
- sudo mknod -m ... | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: 2.0.0
before_install:
# this is a fix to get rng-tools to work in travis-ci
- sudo apt-get update -qq
- sudo apt-get install --yes rng-tools
- sudo rm -f /dev/rando... | Test against Ruby 2.4 and .5 | [CI] Test against Ruby 2.4 and .5 | YAML | lgpl-2.1 | ueno/ruby-gpgme,ueno/ruby-gpgme,ueno/ruby-gpgme |
010958e53e7ce668eaecf4023e312d3dc4e47371 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "6"
- "4"
install:
- npm install
script: npm test
| sudo: false
language: node_js
node_js:
- "6"
- "4"
install:
- npm install
script: npm test
notifications:
email:
- chico@mercadolibre.com
| Add email for Travis CI notifications | Add email for Travis CI notifications
| YAML | mit | mercadolibre/chico,mercadolibre/chico |
7ebebed1925a8e627fedef758a0363036458e068 | .travis.yml | .travis.yml | language: php
git:
depth: 5
matrix:
include:
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.3
env: MULTITEST='on'
install:
- travis_retry composer self-update
- travis_retry composer install
script:
- if [ "$MULTITEST" != "on" ]; then vendor/bi... | language: php
git:
depth: 5
matrix:
include:
- php: 5.5
dist: precise
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.3
env: MULTITEST='on'
install:
- travis_retry composer self-update
- travis_retry composer install
script:
- if [ "$MULTITEST" != "o... | Use precise dist for PHP 5.5 | Use precise dist for PHP 5.5 | YAML | mit | phug-php/renderer,phug-php/renderer |
fc4dae650c0f117fb6adb7820fcb32ee695ca8d5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs"
- "stable"
- "0.10"
services:
- redis-server
| language: node_js
node_js:
- "node"
- "lts/*"
services:
- redis-server
before_script:
- npm run build
| Change Travis CI config to include the tsc build step before tests | Change Travis CI config to include the tsc build step before tests
| YAML | mit | maritz/nohm,maritz/nohm |
3658aa624678c2f614d9ad1201e417056cee0eb1 | .travis.yml | .travis.yml | language: python
sudo: required
virtualenv:
system_site_packages: true
python:
- "2.7"
before_install:
- "sudo apt-add-repository -y ppa:reddit/ppa"
- "sudo apt-get update -q"
- "sudo apt-get install python-tinycss2 -y"
install:
- "pip install http://github.com/praw-dev/praw/tarball/d0f69dc84f70fc482ac5d6e... | language: python
sudo: required
virtualenv:
system_site_packages: true
python:
- "2.7"
before_install:
- "sudo apt-add-repository -y ppa:reddit/ppa"
- "sudo apt-get update -q"
- "sudo apt-get install python-tinycss2 -y"
install:
- "pip install http://github.com/praw-dev/praw/tarball/d0f69dc84f70fc482ac5d6e... | Use an updated version of rcssmin.py | Use an updated version of rcssmin.py
The old one currently breaks calc statements when minifying. | YAML | mit | 13steinj/reddit-css-deploy |
2694bc0545bf78d893a801c4e749b7cdc8982aa0 | .travis.yml | .travis.yml | sudo: false
language: node_js
branches:
only:
- master
matrix:
fast_finish: true
include:
- os: linux
node_js: '4.3'
env: WEBPACK_VERSION="2.6.0" JOB_PART=test
- os: linux
node_js: '6'
env: WEBPACK_VERSION="2.6.0" JOB_PART=test
- os: linux
node_js: '8'
env: WEBP... | sudo: false
language: node_js
branches:
only:
- master
matrix:
fast_finish: true
include:
- os: linux
node_js: '6'
env: NODE_ENV="test" JOB_PART=test
- os: linux
node_js: '8'
env: NODE_ENV="test" JOB_PART=test
- os: linux
node_js: '8'
env: NODE_ENV="test" JOB_PA... | Remove node 4.6 from test environments | Remove node 4.6 from test environments
| YAML | mit | digitalie/one-loader |
3d0944e8074c5fedfee0773daaaa4056b6484f2e | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.7
- tip
before_install:
- go get github.com/golang/lint/golint
script:
- go install ./...
- go test -v ./...
- go vet -x ./...
- $HOME/gopath/bin/golint -set_exit_status ./...
| sudo: false
language: go
go:
- stable
- master
before_install:
- go get github.com/golang/lint/golint
script:
- go install ./...
- go test -v ./...
- go vet -x ./...
- $HOME/gopath/bin/golint -set_exit_status ./...
| Use Go stable and master with Travis CI | Use Go stable and master with Travis CI
| YAML | mit | cybozu-go/goma |
772f642ead53ddad20505c82f680e24831700bd6 | .travis.yml | .travis.yml | language: android
jdk: oraclejdk7
env:
matrix:
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
- ANDROID_TARGET=android-9 ANDROID_ABI=armeabi
android:
components:
- build-tools-20.0.0
- android-20
- android-9
before_install:
# Emulator
- echo no | android create avd --force -n test -t $... | language: android
jdk: oraclejdk7
env:
matrix:
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
# - ANDROID_TARGET=android-9 ANDROID_ABI=armeabi
android:
components:
- build-tools-20.0.0
- android-20
- android-9
before_install:
# Emulator
- echo no | android create avd --force -n test -t ... | Test only last api level | Test only last api level
| YAML | apache-2.0 | 0359xiaodong/FlowLayout-1,b2b2244424/FlowLayout,Cookizz/FlowLayout,husongzhen/FlowLayout,blazsolar/FlowLayout,fishboil/FlowLayout |
568e14469ebaf8ced00594c2e311d568c1de79eb | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
node_js:
- "0.10"
env:
# Test against the latest version of Twisted.
- TWISTED_VERSION="Twisted"
matrix:
include:
# Test against the oldest version of Twisted that we claim to support
# This is a separate matrix inclusion to avoid spawning unnecessary builds.... | language: python
python:
- "2.6"
- "2.7"
node_js:
- "0.10"
env:
# Test against the latest version of Twisted.
- TWISTED_VERSION="Twisted"
matrix:
include:
# Test against the oldest version of Twisted that we claim to support.
# This is a separate matrix inclusion to avoid spawning unnecessary builds... | Add Riak installation to Travis config. | Add Riak installation to Travis config.
| YAML | bsd-3-clause | harrissoerja/vumi,harrissoerja/vumi,TouK/vumi,vishwaprakashmishra/xmatrix,vishwaprakashmishra/xmatrix,harrissoerja/vumi,TouK/vumi,TouK/vumi,vishwaprakashmishra/xmatrix |
bb8e1314438f12c002c85b5f922feaf7350c389d | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
sudo: required
services:
- docker
env:
- OC_VERSION=9.0
- OC_VERSION=9.1
- OC_VERSION=10.0
before_install:
- travis-build/setup_oc_docker.sh $OC_VERSION
install:
- pip install requests unittest-data-provider six
script:
- cp owncloud/test/c... | language: python
python:
- "2.7"
- "3.5"
sudo: required
services:
- docker
env:
- OC_VERSION=10.0
before_install:
- travis-build/setup_oc_docker.sh $OC_VERSION
install:
- pip install requests unittest-data-provider six
script:
- cp owncloud/test/config.py.sample owncloud/test/config.py
... | Remove eol'd 9.0 and 9.1 | Remove eol'd 9.0 and 9.1 | YAML | mit | owncloud/pyocclient,owncloud/pyocclient |
528c6be4501d1b4af9e43f20df4c95e537da584e | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.5
- 2.3.1
branches:
only:
- master
script: bundle exec rake
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.10
- 2.3.6
- 2.4.3
branches:
only:
- master
script: bundle exec rake
| Test on Ruby 2.4 as well | Test on Ruby 2.4 as well
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/knife-linode,chef/knife-linode |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.