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 |
|---|---|---|---|---|---|---|---|---|---|
920c37ee1c80481df3730091b0f49430aa2d2b48 | .travis.yml | .travis.yml | language: node_js
node_js:
- '8'
- '6'
- '4'
script: npm test
notifications:
email: false
cache: yarn | language: node_js
node_js:
- '8'
- '6'
- '4'
script: npm test
notifications:
email: false
cache: yarn
addons:
chrome: stable
dist: trusty | Add headless chrome binary for tests to work | Add headless chrome binary for tests to work
| YAML | mit | mattlewis92/generator-angular-library,mattlewis92/generator-angular-library,mattlewis92/generator-angular-library |
f7d384d5746a33a86321d41fe52c8d0793f8ca81 | .travis.yml | .travis.yml | language: java
install: echo "do not execute installed gradle but gradle wrapper"
script:
- chmod 755 gradlew
- TERM=dumb ./gradlew test
jdk:
- oraclejdk7
- openjdk6
- openjdk7
| language: java
install: echo "do not execute installed gradle but gradle wrapper"
script:
- chmod 755 gradlew
- TERM=dumb ./gradlew test
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
| Enable JDK8 tests on Travis CI | Enable JDK8 tests on Travis CI
| YAML | apache-2.0 | Klortho/citeproc-java,michel-kraemer/citeproc-java,Klortho/citeproc-java |
f8a3e02afb82604fb38a57c6fa7e53f641082542 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- iojs
- "0.12"
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| Add support for iojs and node 0.12 | Add support for iojs and node 0.12
| YAML | mit | Rowno/grunt-mocha-cli |
77abff9ad60841dbcc53fcea46f194c5b8d44b72 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
fast_finish: true
before_install:
- travis_retry composer self-update
install:
- composer install --prefer-source
script: phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
-... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
fast_finish: true
before_install:
- travis_retry composer self-update
install:
- composer install --prefer-source
script: phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- i... | Use Ubuntu Trusty for Travis (HHVM tests) | Use Ubuntu Trusty for Travis (HHVM tests)
| YAML | isc | FlameCore/Gatekeeper |
85ac8c90b3195f2e9566a52d4932b758003505b6 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- ... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_ins... | Test with Node.js 5.1 on Travis CI. | Test with Node.js 5.1 on Travis CI.
| YAML | mit | bigeasy/hotspot,bigeasy/hotspot |
f9e0403d675dcd9f1c845ff7255b72d6092d00ad | .travis.yml | .travis.yml | language: php
sudo: false
php:
- "hhvm"
- "5.6"
- "5.5"
- "5.4"
install: composer install | language: php
sudo: false
php:
- "hhvm"
- "5.6"
- "5.5"
- "5.4"
install: composer install --prefer-source --no-interaction
cache:
directories:
- vendor | Add Composer caching to Travis builds. | Add Composer caching to Travis builds.
| YAML | mit | alanly/picnik |
34c0b92f0d4a2e437858054d82cb90452c6fd330 | .travis.yml | .travis.yml | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake --trace"
rvm:
- 2.0
- 2.1
- jruby
notifications:
irc: "irc.freenode.org#savon"
| # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake --trace"
rvm:
- 2.0
- 2.1
- 2.2
- jruby
notifications:
irc: "irc.freenode.org#savon"
| Test against ruby 2.2 on Travis CI | Test against ruby 2.2 on Travis CI
| YAML | mit | Eric-Guo/savon,savonrb/savon,oafridi/savon,zerobatu/savon,latortuga/savon,rtrepo/savon,SICSoftwareGmbH/savon,billr578/savon,enahum/savon |
6569c92d3c45c98dab0b8b70e35665fb294634ff | .travis.yml | .travis.yml | sudo: false
language: python
python:
- '2.7'
- '3.4'
env:
global:
- DB=postgres
- NOSE_NOLOGCAPTURE=True
matrix:
- DJANGO=">=1.7,<1.8"
- DJANGO=">=1.8,<1.9"
- DJANGO=">=1.9,<1.10"
install:
- pip install -q coveralls coverage flake8 Django$DJANGO django-nose>=1.4
- pip install -r requirem... | sudo: false
language: python
python:
- '2.7'
- '3.4'
addons:
postgresql: '9.5'
env:
global:
- DB=postgres
- NOSE_NOLOGCAPTURE=True
matrix:
- DJANGO=">=1.7,<1.8"
- DJANGO=">=1.8,<1.9"
- DJANGO=">=1.9,<1.10"
install:
- pip install -q coveralls coverage flake8 Django$DJANGO django-nose>=1.4... | Use postgresql 9.5 for testing | Use postgresql 9.5 for testing
| YAML | mit | jaredlewis/django-entity-history,ambitioninc/django-entity-history |
6bb5480b75e35d298422e5632f4cc851a8b9960b | .travis.yml | .travis.yml | language: haskell
before_install:
- git clone https://github.com/pavelkogan/reactive-banana-gtk.git
- cabal sandbox init
- cabal sandbox add-source ./reactive-banana-gtk/
| language: haskell
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libglib2.0-dev libcairo2-dev libpango1.0-dev libgtk2.0-dev
- git clone https://github.com/pavelkogan/reactive-banana-gtk.git
- cabal sandbox init
- cabal sandbox add-source ./reactive-banana-gtk/
| Add system dependencies for Travis | Add system dependencies for Travis
| YAML | bsd-3-clause | pavelkogan/NeuroSpider |
b88a480d1c0557aae947788eabace47f5a29b6a2 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.3
- 2.5.5
- 2.4.6
- ruby-head
- jruby-9.2.5.0
before_install:
- gem update --system
- gem install bundler --no-document
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- ... | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.5
- 2.5.7
- 2.4.9
- ruby-head
- jruby-9.2.5.0
before_install:
- gem update --system
- gem install bundler --no-document
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- ... | Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/simple_navigation_bootstrap |
9d6c428dc6ec872b8e00134d4c4876914c98c2bb | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
- "pypy"
- "pypy3"
install:
- pip install coveralls
- pip install -r requirements.txt
script:
coverage run --source=cantools setup.py test
after_success:
coveralls
| language: python
python:
- "2.7"
- "3.6"
install:
- pip install coveralls
- pip install -r requirements.txt
script:
coverage run --source=cantools setup.py test
after_success:
coveralls
| Revert "Test with pypy on TravisCI." | Revert "Test with pypy on TravisCI."
This reverts commit 7031b263d98dd10211462f987c2187b3c443c611.
| YAML | mit | cantools/cantools,eerimoq/cantools |
ad20a8c35cfc537e6864092bee17967bb267ef77 | .travis.yml | .travis.yml | gemfile:
- Gemfile
- gemfiles/rails3_1.gemfile
- gemfiles/rails3_2.gemfile
language: ruby
rvm:
- 1.8.7
- ree
- 1.9.3
notifications:
email: false
bundler_args: --without development
| gemfile:
- Gemfile
- gemfiles/rails3_1.gemfile
- gemfiles/rails3_2.gemfile
language: ruby
rvm:
- 1.8.7
- ree
- 1.9.3
notifications:
email: false
bundler_args: --without development
services: mongodb
| Declare TravisCI mongo service dependency. | Declare TravisCI mongo service dependency.
Attempt to fix Travis build by enabling the mongo service.
This service was disabled by default and now requires an explicit service config.
| YAML | mit | dhemmat/mongomapper,mongomapper/mongomapper,kachick/mongomapper |
f4b939c082c1399546dba8cffc705d3662f0f616 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.5
- php: 7
env: DB=MYSQL CORE_RELEASE=3.6
- php: 7
env: DB=MYSQL CORE_RELEASE=3
before_script:
- phpenv rehash
- git clone -b prefer-source git://github.com/kinglozzer/silverstripe-travis-support.gi... | language: php
sudo: false
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.5
- php: 7.0
env: DB=MYSQL CORE_RELEASE=3.6
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3
before_script:
- phpenv rehash
- git clone -b prefer-source git://github.com/kinglozzer/silverstripe-travis-suppor... | Fix Travis builds on PHP 7 | Fix Travis builds on PHP 7 | YAML | bsd-3-clause | bigfork/silverstripe-oauth-login |
d4ab842b33f05560bc6e2c4895175fa9f5f181f2 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system --no-document
- sudo gem install bundler --no-document -n /usr/local/bin
- sudo chown -R $(whoami) ${TRAVIS_BUILD_DIR} # ensure tmp/ is writable for bundler
- sudo bundle install
script:
- bundle exec rake
- bundle exe... | language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system --no-document
- sudo gem install bundler --no-document -n /usr/local/bin
- sudo chown -R $(whoami) ${TRAVIS_BUILD_DIR} # ensure tmp/ is writable for bundler
- bundle install
script:
- bundle exec rake
- bundle exec sol... | Stop running bundle install w sudo | Stop running bundle install w sudo
| YAML | mit | pivotal-sprout/sprout-exemplar,pivotal-sprout/sprout-exemplar |
9ba1e9e6683b1c6e0ad30b8754beb92c0ffa6279 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.1
- 1.9.2
- 1.9.3
| language: ruby
rvm:
- 1.9.2
- 1.9.3
| Remove 1.9.1 from Travis CI build since they don't support it. | Remove 1.9.1 from Travis CI build since they don't support it.
| YAML | mit | hamzakc/curator,SavithaK/curator,baoquan-hq/curator,braintree/curator,braintree/curator |
776711d2ebf64f6a3f408c595946f4ab517c2207 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
before_install:
openssl aes-256-cbc -K $encrypted_2d62c455ca1f_key -iv $encrypted_2d62c455ca1f_iv -in pari_qa.pem.enc -out pari_qa.pem -d
install:
- pip install ansible==2.0
- pip install six
- pip install -r requirements.dev.txt
services: postgresql
before_script:
- createuser pari
-... | language: python
python:
- '2.7'
before_install:
openssl aes-256-cbc -K $encrypted_2d62c455ca1f_key -iv $encrypted_2d62c455ca1f_iv -in pari_qa.pem.enc -out pari_qa.pem -d
install:
- pip install ansible==2.2.1
- pip install six
- pip install -r requirements.dev.txt
services: postgresql
before_script:
- createuser pari... | Update ansible version for CI | Update ansible version for CI
| YAML | bsd-3-clause | PARINetwork/pari,PARINetwork/pari,PARINetwork/pari,PARINetwork/pari |
95effaec82021fcb335ba561e60f0e3c4eb86b40 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
... | language: php
matrix:
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
# required to test HHV... | Remove PHP 5.3 support as it is way past EOL | Remove PHP 5.3 support as it is way past EOL
| YAML | lgpl-2.1 | php-amqplib/php-amqplib,videlalvaro/php-amqplib |
2718e7ae945e3dbc899be2b970b9b4efdedbdbf8 | .travis.yml | .travis.yml | language: node_js
node_js:
- iojs
- "0.12"
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
before_script:
- npm install -g grunt-cli
| Remove support for node 0.11 | Remove support for node 0.11
| YAML | mit | Rowno/medic |
aa07bc9f413ddeb12e43c301337d82dfc8a2e4cf | .travis.yml | .travis.yml | sudo: false # Explicitly use container-based infrastructure
language: go
go:
- 1.5
before_install:
- wget https://downloads.giantswarm.io/builder/0.11.0/builder
- chmod +x ./builder
- export PATH=$PATH:$PWD
script:
- make lint
- make ci-test
- make ci-build
- ./formica
| sudo: false # Explicitly use container-based infrastructure
language: go
go:
- 1.5
notifications:
email: false
before_install:
- wget https://downloads.giantswarm.io/builder/0.11.0/builder
- chmod +x ./builder
- export PATH=$PATH:$PWD
script:
- make lint
- make ci-test
- make ci-build
- ./formica
| Switch off notification emails completely | Switch off notification emails completely
| YAML | apache-2.0 | giantswarm/inago,giantswarm/inago,giantswarm/inago,giantswarm/inago,giantswarm/inago |
d86e7006a8b3ce7517a31b1f7c0cd49d76f46d3b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
- 2.2
- 2.3.1
gemfile:
- Gemfile
script: bundle exec rake test
sudo: false
| language: ruby
rvm:
- 2.1
- 2.2
- 2.3.6
- 2.4.3
- 2.5.0
gemfile:
- Gemfile
script: bundle exec rake test
sudo: false
| Update Ruby versions on Travis | Update Ruby versions on Travis
| YAML | apache-2.0 | uken/fluent-plugin-elasticsearch,cosmo0920/fluent-plugin-elasticsearch |
f21180a4f69e69d4b464353dcabd20a03736de24 | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- tip
go_import_path: github.com/versent/unicreds
install:
- echo noop
env:
- "PATH=/home/travis/gopath/bin:$PATH"
script:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- golint ./...
- make updatedeps
- ma... | language: go
go:
- 1.5
- 1.6
# - tip
go_import_path: github.com/versent/unicreds
install:
- echo noop
env:
- "PATH=/home/travis/gopath/bin:$PATH"
script:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- golint ./...
- make updatedeps
- m... | Disable tip due to errors with golint. | Disable tip due to errors with golint.
| YAML | mit | Versent/unicreds |
0f93a0091593b35456da185051bdfe4d3514594a | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
after_success: npm run coveralls
| language: node_js
node_js:
- "0.10"
- "iojs"
after_success: npm run coveralls
| Test against io.js on Travis CI | Test against io.js on Travis CI
| YAML | mit | OEvgeny/postcss-assets,glebmachine/postcss-assets,justinanastos/postcss-assets,assetsjs/postcss-assets,borodean/postcss-assets |
96a3a8c6c11bae31fdc79e67f8706f48882fc611 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk8
sudo: false
cache:
directories:
- $HOME/.m2
- $HOME/.gradle
install: /bin/true
script: ./gradlew wrapper --gradle-version 4.6 clean test | language: java
jdk:
- openjdk8
sudo: false
cache:
directories:
- $HOME/.m2
- $HOME/.gradle
install: /bin/true
script: ./gradlew test
| Simplify how Travis calls Gradle | Simplify how Travis calls Gradle
There is no need to call the wrapper task with a version here as we
already use the wrapper script, and that one will bootstrap the Gradle
version as specified in gradle/wrapper/gradle-wrapper.properties.
Also, there is no need to call the clean task as each Travis build
starts from s... | YAML | mit | kotlintest/kotlintest,kotlintest/kotlintest,kotlintest/kotlintest,sksamuel/ktest |
4c9d00105628d4f289952c07c4197e8bc3dd3ff1 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
rvm:
- 2.0.0
| language: ruby
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
rvm:
- 2.0.0
| Install development dependencies in CI environment | Install development dependencies in CI environment
| YAML | mit | munirent/tolk,tolk/tolk,rdunlop/tolk,MyMedsAndMe/tolk,MyMedsAndMe/tolk,tolk/tolk,tolk/tolk,rdunlop/tolk,MyMedsAndMe/tolk,rdunlop/tolk,munirent/tolk |
55bdf1ab8c2b77bfab0726c41169b273ad917bb1 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.2.*
- php: 7.0
- php: 7.1
- php: hhvm-stable
sudo: required
dist: trusty
group: edge
allow_failures:
- php: hhvm-stable
cach... | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.2.*
- php: 7.0
- php: 7.1
- php: hhvm-stable
sudo: required
dist: trusty
group: edge
allow_failures:
- php: hhvm-stable
cach... | Remove unused env var (minor) | Remove unused env var (minor)
| YAML | mit | Batch1211/LexikJWTAuthenticationBundle,chalasr/LexikJWTAuthenticationBundle,lexik/LexikJWTAuthenticationBundle |
0f69755aebd0c540fad059f5eaf4e58b5af9ec94 | .travis.yml | .travis.yml | branches:
only:
- master
language: objective-c
notifications:
email:
on_success: never
on_failure: change
script: ./script/cibuild
| branches:
only:
- master
git:
depth: 10
sudo: false
os:
- linux
- osx
addons:
apt:
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
env:
global:
- APM_TEST_PACKAGES="language-latex pdf-view"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
not... | Migrate Travis CI builds to container infrastructure | Migrate Travis CI builds to container infrastructure
| YAML | mit | thomasjo/atom-latex,thomasjo/atom-latex,thomasjo/atom-latex |
be29d67fd0cbc794f08f488fef6546b3ed7a16bb | .travis.yml | .travis.yml | sudo: required
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
- sudo apt-get install -y nodejs
- npm install npm@latest -g
install:
- python setup.py deps_install
script:
- python setup.py lint
- python se... | sudo: required
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- nvm install 6
install:
- python setup.py deps_install
script:
- python setup.py lint
- python setup.py test
- python setup.py e2e_test
| Install Node.js 6 via NVM. | Install Node.js 6 via NVM.
| YAML | bsd-2-clause | nvdv/vprof,nvdv/vprof,nvdv/vprof |
29abef2c4a4ed309433029efae575952a8a8bf62 | .travis.yml | .travis.yml | language: python
dist: trusty
sudo: required
before_install:
- sudo dpkg --add-architecture i386
- sudo add-apt-repository ppa:ubuntu-wine/ppa -y
- sudo apt-get update
- sudo apt-get install --no-install-recommends -y wine1.8
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- pip install pytest... | language: python
dist: trusty
sudo: required
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo dpkg --add-architecture i386
- sudo add-apt-repository ppa:ubuntu-wine/ppa -y
- sudo apt-get update
- sudo apt-get install --no-install-recommends -y wine1.8
- pip install pytest pytest-cov code... | Fix duplicate in Travis config | Fix duplicate in Travis config
| YAML | agpl-3.0 | openclimatedata/pymagicc,openclimatedata/pymagicc |
84d0027562d47d7c47969ff7fe7c9ae4d9c19008 | .travis.yml | .travis.yml | language: python
python:
# - "2.7"
# - "3.5"
- "3.6"
# command to install dependencies
cache: pip
install:
- pip install cython
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install .
- pip install -r requirements.txt
- pip install coveralls
# com... | language: python
python:
- "2.7"
- "3.5"
- "3.6"
# command to install dependencies
cache: pip
install:
- pip install cython
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install .
- pip install -r requirements.txt
- pip install coveralls
# comma... | Revert changes to fix build issues | Revert changes to fix build issues
| YAML | mit | alexprey/pysd,JamesPHoughton/pysd,alexprey/pysd |
721ad36a4606948bbc34c0b4b1f329bdb9ae7dc2 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
script:
- cargo build --verbose --all
- cargo test --verbose --all
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
script:
- cargo build --verbose --all
- cargo test --verbose --all
before_install:
- sudo apt-get install -y libzmq3-dev
| Update Travis configuration to install libzmq3-dev | Update Travis configuration to install libzmq3-dev
| YAML | apache-2.0 | google/evcxr,google/evcxr,google/evcxr |
b0a923a99c81c0523e9df303e5b9eab330a73971 | .travis.yml | .travis.yml | # reference: http://www.objc.io/issue-6/travis-ci.html
language: objective-c
script:
- xctool test -workspace Example/PINRemoteImage.xcworkspace -scheme PINRemoteImage -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
| # reference: http://www.objc.io/issue-6/travis-ci.html
# whitelist
branches:
only:
- master
language: objective-c
env:
matrix:
- TEST_SDK=iphonesimulator7.0
- TEST_SDK=iphonesimulator7.1
- TEST_SDK=iphonesimulator8.1
script:
- xctool test -test-sdk $TEST_SDK -simulator iphone -workspace Example/P... | Add Travis tests for older SDKs. Only build master. | Add Travis tests for older SDKs. Only build master.
| YAML | apache-2.0 | pinterest/PINRemoteImage,pinterest/PINRemoteImage,pinterest/PINRemoteImage,pinterest/PINRemoteImage |
d22946bdf28c9d70db89395a68df792a0a4274b6 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- ruby-head
before_install:
- gem update --system || gem install rubygems-update -v '<3' && update_rubygems
- gem update bundler || gem install bundler -v '<2'
| sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- ruby-head
before_install:
- |
if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then
gem install rubygems-update -v '<3' && update_rubygems
gem install bundler -v '<2'
else
gem update --system
gem u... | Update Bundler to the latest version of 1.x on Ruby < 2.3 | Update Bundler to the latest version of 1.x on Ruby < 2.3
`gem update bundler` command does not return error code on Ruby < 2.3.
| YAML | mit | emsk/mask_sql,emsk/mask_sql |
8457e586050940e040d5a41f8926a04a704b9d1a | .travis.yml | .travis.yml | language: python
python: 2.7
env:
#- TOX_ENV=py34
- TOX_ENV=py33
# - TOX_ENV=py32
- TOX_ENV=py27
- TOX_ENV=py26
install:
- pip install tox
- pip install python-coveralls
script:
- tox -e $TOX_ENV
after_success:
coveralls
sudo: false
| language: python
python: 2.7
env:
- TOX_ENV=py33
- TOX_ENV=py27
- TOX_ENV=py26
install:
- pip install tox
- pip install python-coveralls
script:
- tox -e $TOX_ENV
after_success:
coveralls
sudo: false
| Remove commented out versions of code | Remove commented out versions of code
| YAML | mit | ftobia/pytest-ordering |
eb26ea24dd1e247c0adc7c9fc7deddd6daf1d037 | .travis.yml | .travis.yml | script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree | script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- rbx-2.0.0pre
- ree | Add Rubinius 2.0.pre to the CI matrix | Add Rubinius 2.0.pre to the CI matrix
| YAML | mit | ruby-amqp/amq-protocol,ruby-amqp/amq-protocol,travis-repos/amq-protocol,travis-repos/amq-protocol |
695b44a327be22fd042c4a06161440396c8a99cd | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
- 0.6
- 0.4
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| language: node_js
node_js:
- 0.9
- 0.8
- 0.6
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| Add node 0.9, drop 0.4 since TravisCI is going to retire it. | Add node 0.9, drop 0.4 since TravisCI is going to retire it.
| YAML | mit | cliffano/bagofholding |
157e29d8372e57e2705f43f3d44347e02655dde6 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --dev --prefer-source
script: bin/phpspec run -fpretty --verbose
| language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --no-interaction --prefer-source
script: bin/phpspec run -fpretty --verbose
| Fix invalid deps and move AttributeFactory to component | Fix invalid deps and move AttributeFactory to component
| YAML | mit | Sylius/Pricing |
72bf154ba3ec7342cb797d849b57c611118545f6 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install --upgrade pip
- pip install -q six
- pip install virtualenv
script: python tests.py
branches:
only:
- master
sudo: false
addons:
apt:
packages:
- pandoc
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install --upgrade pip
- pip install -q six
- pip install virtualenv
script: python tests.py
branches:
only:
- master
sudo: false
| Remove test dependency on pandoc since 4b984d3 | Remove test dependency on pandoc since 4b984d3
| YAML | bsd-2-clause | sjkingo/virtualenv-api |
6c6a08bd7e7dc14587adf880d9d9bccfd718defb | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
script:
- npm test
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.*"
script:
- npm test
| Test on node 4 instead of iojs. | Test on node 4 instead of iojs.
| YAML | isc | ceejbot/jumpsuit,ceejbot/jumphash,ceejbot/jumphash,ceejbot/jumphash,ceejbot/jumpsuit,ceejbot/jumpsuit |
5ce4bb49d2a7f8009e599b9652ed3df4798312a6 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
- oraclejdk8
| language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
- oraclejdk8
script: "mvn verify"
| Make Travis CI build with mvn verify, instead of mvn test. | Make Travis CI build with mvn verify, instead of mvn test.
| YAML | apache-2.0 | chrisvest/stormpot,chrisvest/stormpot |
4b2e24a0ad9b7480ec936cbf06ffd04c2a3bcf47 | .travis.yml | .travis.yml | language: go
go:
- tip
- 1.3
script: go get code.google.com/p/go.tools/cmd/vet && go get code.google.com/p/go.tools/cmd/goimports && go get github.com/golang/lint/golint && go get github.com/kisom/whitelist/... && $HOME/gopath/bin/golint *.go && go test github.com/kisom/whitelist/... && go vet github.co... | language: go
go:
- tip
- 1.3
script: go get code.google.com/p/go.tools/cmd/vet && go get code.google.com/p/go.tools/cmd/goimports && go get github.com/golang/lint/golint && go get github.com/kisom/whitelist/... && [ -z "$($HOME/gopath/bin/golint *.go)" ] && go test github.com/kisom/whitelist/... && go v... | Make it an error if goimports or golint find problems. | Make it an error if goimports or golint find problems.
| YAML | isc | kisom/whitelist |
78723bc3985e1ea0e9cf60a0200d69945c5967e3 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-19mode
- jruby-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-19mode
- jruby-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| Test on recent Ruby releases | Test on recent Ruby releases | YAML | mit | adhearsion/ruby_fs |
cb8afc01aea682183ac16e2f404e73976e54a062 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- composer self-update -q
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
- composer require phpunit/phpunit:${PHPUNIT_VERSION}
script:
- composer install --no-dev
- vendor/bin... | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- composer self-update -q
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
- composer require phpunit/phpunit:${PHPUNIT_VERSION}
script:
- composer install --no-dev
- vendor/bin... | Change CI default phpunit version to 4.7. | Change CI default phpunit version to 4.7.
| YAML | mit | iakio/phpunit-growlprinter |
82640809eaf3ca7b61ad1b09876c074c0e853cff | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
| language: ruby
rvm:
- 1.8.6
- 1.8.7
- 1.9.2
- 1.9.3
| Add Ruby 1.8.6 to Travis config | Add Ruby 1.8.6 to Travis config
| YAML | mit | KensoDev/git_tracker,KensoDev/git_tracker,stevenharman/git_tracker,stevenharman/git_tracker |
ca6517f1d2024f42060fc5ddf451f8323c282318 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
install:
- python setup.py -q install
script:
- make ci
| language: python
python:
- "2.6"
- "2.7"
- "pypy"
- "3.2"
install:
- python setup.py -q install
script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then
make test pep8
else
make ci
fi
| Add pypy and attempt to detect py3k to exclude pyflakes | Add pypy and attempt to detect py3k to exclude pyflakes
| YAML | unlicense | michaeljoseph/righteous,michaeljoseph/righteous |
5263eeafdff6594306be228675d588d1930f2ba9 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.12
- 0.10
after_script: npm run functional
| sudo: false
language: node_js
node_js:
- 0.12
- 0.10
after_script: npm run functional
| Set sudo false to use faster container based builds | Set sudo false to use faster container based builds
| YAML | mit | pelias/openaddresses,pelias/openaddresses |
9e9708ebe0cb319f977026a5097378c1d8b67388 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit --coverage-text
| language: php
php:
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit --coverage-text
| Remove tests for 5.4 since phergie-irc-bot-react no longer supports it | Remove tests for 5.4 since phergie-irc-bot-react no longer supports it
| YAML | bsd-2-clause | phergie/phergie-irc-plugin-react-twitter |
133873b322f82c2e37bead0792b7305b38a577eb | .travis.yml | .travis.yml | # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
env:
global:
- COMPOSER_ROOT_VERSION=4.0.x-dev
- CORE_RELEASE=4
matrix:
fast_finish: true
include:
- php: 5.6
env: DB=MYSQL PHPUNIT_TEST=1 PHPCS_TEST=1
- php: 7.0
env: DB=M... | # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
env:
global:
- COMPOSER_ROOT_VERSION=4.0.x-dev
- CORE_RELEASE=4
matrix:
fast_finish: true
include:
- php: 5.6
env: DB=MYSQL PHPUNIT_TEST=1 PHPCS_TEST=1
- php: 7.0
env: DB=M... | Add dev version of framework to Travis builds | Add dev version of framework to Travis builds
| YAML | mit | lekoala/silverstripe-debugbar,lekoala/silverstripe-debugbar |
de2a44779837d41d4d89274b65584804ee7b9863 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libmicrohttpd-dev libjansson-dev libnice-dev libssl-dev libsrtp-dev libsofia-sip-ua-dev libglib2.0-dev libogg-dev libini-conf... | language: node_js
node_js:
- 0.10
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libmicrohttpd-dev libjansson-dev libnice-dev libssl-dev libsrtp-dev libsofia-sip-ua-dev libglib2.0-dev libopus-dev libogg-dev... | Add libopus-dev to the apt deps | Add libopus-dev to the apt deps
| YAML | apache-2.0 | rtc-io/rtc-janus |
0a7b5047e3901b48b118db0a1c64c0f9edb8a9ea | .travis.yml | .travis.yml | sudo: required
language:
- c
compiler:
- gcc
env:
matrix:
- BOARD=atlys TARGET=base
- BOARD=atlys TARGET=hdmi2usb
- BOARD=atlys TARGET=hdmi2ethernet
- BOARD=opsis TARGET=base
- BOARD=opsis TARGET=hdmi2usb
install:
- wget -q -O- https://raw.githubusercontent.com/mithro/travis-trusty/master/setup... | sudo: required
language:
- c
compiler:
- gcc
env:
matrix:
- BOARD=atlys TARGET=base
- BOARD=atlys TARGET=hdmi2usb
- BOARD=atlys TARGET=hdmi2ethernet
- BOARD=opsis TARGET=base
- BOARD=opsis TARGET=hdmi2usb
matrix:
allow_failures:
- env: BOARD=opsis TARGET=hdmi2usb
install:
- wget -q -O- ht... | Allow failure for Opsis HDMI2USB target for now. | Allow failure for Opsis HDMI2USB target for now.
| YAML | bsd-2-clause | mithro/HDMI2USB-litex-firmware,mithro/HDMI2USB-litex-firmware,cr1901/HDMI2USB-litex-firmware,cr1901/HDMI2USB-litex-firmware,cr1901/HDMI2USB-litex-firmware,mithro/HDMI2USB-litex-firmware,cr1901/HDMI2USB-litex-firmware,mithro/HDMI2USB-litex-firmware |
eee217fe6cfe4193baff966c8fc270f9654421b9 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
node_js:
- "6"
os:
- linux
# - osx
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
sudo apt-get --yes install haskell-platform;
else
... | sudo: false
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
language: node_js
node_js:
- "6"
os:
- linux
# - osx
addons:
apt:
packages:
# Stack dependencies
- libgmp-dev
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/b... | Switch Travis-CI build to use stack | Switch Travis-CI build to use stack
| YAML | mit | hoovercj/vscode-ghc-mod,hoovercj/vscode-ghc-mod |
239a71a95606ba15738f43381ca8c333019975d4 | .travis.yml | .travis.yml | language: python
env:
- TWISTED=Twisted==12.0 RUNTESTS=trial
- TWISTED=Twisted==12.1 RUNTESTS=trial
- TWISTED=Twisted==12.2 RUNTESTS=trial
- TWISTED=Twisted==12.3 RUNTESTS=trial
- TWISTED=Twisted==13.0 RUNTESTS=trial
- TWISTED=Twisted==13.1 RUNTESTS=trial
- TWISTED=Twisted==13.2 RUNTESTS=tr... | language: python
env:
- TWISTED=Twisted==12.0 RUNTESTS=trial
- TWISTED=Twisted==12.1 RUNTESTS=trial
- TWISTED=Twisted==12.2 RUNTESTS=trial
- TWISTED=Twisted==12.3 RUNTESTS=trial
- TWISTED=Twisted==13.0 RUNTESTS=trial
- TWISTED=Twisted==13.1 RUNTESTS=trial
- TWISTED=Twisted==13.2 RUNTESTS=tr... | Disable 3.3 until Twisted setup.py works. | Disable 3.3 until Twisted setup.py works.
| YAML | mit | itamarst/crochet,wrmsr/crochet,rolando/crochet |
c06f10de168fbf7f7b4a29087593b4240376bafd | .travis.yml | .travis.yml | language: csharp
solution: ATL.sln
mono: none
dotnet: 1.0.3
dist: trusty
script:
- dotnet restore
- xbuild /p:Configuration=Release ./ATL.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./ATL.test/bin/Release/ATL.test.dll | language: csharp
solution: ATL.sln | Revert "Tinkering with build options" | Revert "Tinkering with build options"
This reverts commit 4da4586c0218f822c8a5d83ef643d26bb4b662f3.
| YAML | mit | Zeugma440/atldotnet |
2054d171f05e55fa871f800fb7b936dfdfd9b374 | .travis.yml | .travis.yml | sudo: false
osx_image: xcode7
language: objective-c
cache:
edge: true
bundler: true
cocoapods: true
directories:
- .nvm
- node_modules
- vendor/bundle
before_install:
- brew reinstall nvm
- mkdir -p .nvm
- export NVM_DIR="$PWD/.nvm"
- source $(brew --prefix nvm)/nvm.sh
install:
- nvm insta... | sudo: false
osx_image: xcode8
language: objective-c
cache:
edge: true
bundler: true
cocoapods: true
directories:
- .nvm
- node_modules
- vendor/bundle
before_install:
- brew reinstall nvm
- mkdir -p .nvm
- export NVM_DIR="$PWD/.nvm"
- source $(brew --prefix nvm)/nvm.sh
install:
- nvm insta... | Update xcode version, move to yarn | chore(ci): Update xcode version, move to yarn
| YAML | mit | moqada/GHReader,moqada/GHReader,moqada/GHReader,moqada/GHReader |
fce5aabcc82670c750e401f3ed414f0b77331745 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 8
- 6
cache:
directories:
- node_modules
install:
- npm i -g npm@latest
- npm install
script:
- npm test
| sudo: false
language: node_js
node_js:
- 'stable'
- 12
- 10
cache:
directories:
- node_modules
install:
- npm i -g npm@latest
- npm install
script:
- npm test
| Update Node.js version to use in CI tests | Update Node.js version to use in CI tests
Signed-off-by: Takuya Noguchi <b6ff22f4ae6fe3ca1371a0ef8d104f1c4bca551b@gmail.com>
| YAML | mit | cthackers/adm-zip |
b88ed9d0505db906c26c49a4eb69b286ca80c01b | .travis.yml | .travis.yml | language: rust
rust:
- stable
- nightly
os:
- linux
- osx
- windows
env:
matrix:
- RELEASE=
- RELEASE=--release
before_script:
# rustfmt may not always be available in nightly
- if [[ "$TRAVIS_RUST_VERSION" != *nightly* ]]; then rustup component add rustfmt; fi
script:
# We cannot run `cargo... | language: rust
rust:
- stable
- nightly
os:
- linux
- osx
- windows
env:
matrix:
- RELEASE=
- RELEASE=--release
install:
# rustfmt may not always be available in nightly
- if [[ "$TRAVIS_RUST_VERSION" != *nightly* ]]; then rustup component add rustfmt; fi
- if [[ "$TRAVIS_OS_NAME" == "windo... | Switch Windows CI builds from windows-gnu to windows-msvc. | Switch Windows CI builds from windows-gnu to windows-msvc.
The Travis default of windows-gnu suffers from rust-lang/rust#47048, I
think. I don't see an easy way to address this right now, but switching
our Windows builds to windows-msvc will avoid this and is more realistic
target anyway.
| YAML | mpl-2.0 | mozilla/mp4parse-rust |
8afbec6699117be69122f95b13639fc6f93ed8d0 | .travis.yml | .travis.yml | language: php
before_script:
- composer install --dev --prefer-dist
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
| language: php
before_script:
- composer install --dev --prefer-source
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
| Use --prefer-source instead --prefer-dist for composer packages installation | Use --prefer-source instead --prefer-dist for composer packages installation | YAML | mit | aztech-dev/Phraseanet-PHP-SDK,aztech-dev/Phraseanet-PHP-SDK |
aade215f3e85452b67c536618325913bea25878b | .travis.yml | .travis.yml | rvm:
- 1.9.3
- rbx-19mode
language: ruby
before_script:
- "rake servers:jasig:prep"
- "rake servers:jasig:start &"
- "rake servers:callback:start &"
| rvm:
- 1.8.7
- 1.9.3
- rbx-19mode
language: ruby
before_script:
- "rake servers:jasig:prep"
- "rake servers:jasig:start &"
- "rake servers:callback:start &"
| Check the build on 1.8.7, too. | Check the build on 1.8.7, too.
Some applications using Castanet are still stuck on that.
| YAML | mit | NUBIC/castanet |
8bfbb3b098a9dac69ae30b3ad48456fe432f7721 | .travis.yml | .travis.yml | addons:
sauce_connect:
username: "karlitowhoelse"
access_key: "d45485e6-5775-4719-b001-c2c4409feae6"
deploy:
default: true
keyfile: Cook AdLib-629247c92d53.json
on:
tags: true
all_branches: true
project: cook-adlib
provider: gae
skip_cleanup: true
before_install:
- openssl aes-256-cbc -K $... | addons:
sauce_connect:
username: "karlitowhoelse"
access_key: "d45485e6-5775-4719-b001-c2c4409feae6"
deploy:
default: true
keyfile: Cook AdLib-629247c92d53.json
on:
tags: true
all_branches: true
project: cook-adlib
provider: gae
skip_cleanup: true
before_install:
- openssl aes-256-cbc -K $... | Set scripts directory as executable in Travis before_install | Set scripts directory as executable in Travis before_install
| YAML | bsd-3-clause | cookadlib/www.cookadlib.com,cookadlib/www.cookadlib.com,cookadlib/www.cookadlib.com |
3e1b02ea0186c5b1019680c0668ddf2c60d6dae1 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
before_script:
- mysql -e 'create database snippets character set utf8;'
before_install:
- git submodule update --init --recursive
- pip install flake8 requests
- flake8 snippets --exit-zero | python bin/comment-on-pr.py
install:
- pip install -r requirements/compiled.txt
- pip install ... | sudo: false
language: python
python:
- '2.6'
before_script:
- mysql -e 'create database snippets character set utf8;'
before_install:
- git submodule update --init --recursive
- pip install flake8 requests
- flake8 snippets --exit-zero | python bin/comment-on-pr.py
install:
- pip install -r requirements/compiled.txt
- ... | Set sudo=false to run on containers. | Set sudo=false to run on containers.
| YAML | mpl-2.0 | akatsoulas/snippets-service,akatsoulas/snippets-service,Osmose/snippets-service,schalkneethling/snippets-service,mozmar/snippets-service,akatsoulas/snippets-service,mozilla/snippets-service,schalkneethling/snippets-service,mozmar/snippets-service,glogiotatidis/snippets-service,glogiotatidis/snippets-service,Osmose/snip... |
08c4297062a66342c0055ad1681f8e1265c30080 | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.3.0"
- "jruby-9.1.5.0"
env:
- "RAILS_VERSION=rails3"
"JRUBY_OPTS=''"
- "RAILS_VERSION=rails4"
"JRUBY_OPTS=''"
- "RAILS_VERSION=rails5"
"JRUBY_OPTS=''"
- "RAILS_VERSION=pojs"
"JRUBY_OPTS=''"
sudo: false
script: "if [ $PERFORMANCE_SPECS ];then bundl... | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.3.0"
env:
- "RAILS_VERSION=rails3"
- "RAILS_VERSION=rails4"
- "RAILS_VERSION=pojs"
sudo: false
script: "if [ $PERFORMANCE_SPECS ];then bundle exec rake performance_specs --trace; else bundle exec rake --trace; fi"
install:
- bundle install --retry=3
matrix:
... | Clean up jruby matrix entries | Clean up jruby matrix entries
| YAML | mit | amandamholl/jasmine-gem,amandamholl/jasmine-gem,amandamholl/jasmine-gem |
ab82b12008a44af8d494297dc771880511f7cc35 | .travis.yml | .travis.yml | language: java
os:
- linux
- osx
jdk:
- oraclejdk8
- openjdk7
- openjdk6
addons:
apt:
packages:
- autoconf
- javahelp2
- tidy
- liblcms2-dev
- libtiff4-dev
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx... | language: java
os:
- linux
jdk:
- oraclejdk8
- openjdk7
- openjdk6
addons:
apt:
packages:
- autoconf
- javahelp2
- tidy
- liblcms2-dev
- libtiff4-dev
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; th... | Remove Travis CI osx target because apt packages does not work for osx | Remove Travis CI osx target because apt packages does not work for osx
| YAML | bsd-3-clause | ktgw0316/LightZone,ktgw0316/LightZone,MarinnaCole/LightZone,MarinnaCole/LightZone,ktgw0316/LightZone,MarinnaCole/LightZone,MarinnaCole/LightZone,ktgw0316/LightZone,MarinnaCole/LightZone,MarinnaCole/LightZone,MarinnaCole/LightZone,ktgw0316/LightZone,ktgw0316/LightZone,ktgw0316/LightZone |
5be53cf4aa0a58a2b40ec12152fd34a7d354a7a3 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- composer install
script:
- phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
- test $TRAVIS_PULL_REQUEST == ... | language: php
dist: trusty
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- composer install
script:
- phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
- test $TRAVIS_PUL... | Set dist to trusty for hhvm testing | Set dist to trusty for hhvm testing | YAML | apache-2.0 | gossi/php-code-generator,gossi/php-code-generator |
1e2d6cf1e27532a35736ea9cb3c7f38f2a8022e1 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
| Test against Ruby 2.0.0 on Travis CI. | Test against Ruby 2.0.0 on Travis CI.
| YAML | apache-2.0 | twitter/twitter-text,twitter/twitter-text,masonkmeyer/twitter-text,joebos/twitter-text-py,megaserg/twitter-text,zhaoguohui/twitter-text,aaronsakowski/twitter-text,aaronsakowski/twitter-text,masonkmeyer/twitter-text,masonkmeyer/twitter-text,megaserg/twitter-text,aaronsakowski/twitter-text,silentroach/twitter-text,zhaogu... |
7964c45a54347dcdcd9ea1640c62dac7b3d71809 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | Add OpenJDK 8 to Travis builds. | Add OpenJDK 8 to Travis builds. | YAML | apache-2.0 | apache/commons-lang,britter/commons-lang,britter/commons-lang,MarkDacek/commons-lang,apache/commons-lang,MarkDacek/commons-lang,britter/commons-lang,MarkDacek/commons-lang,apache/commons-lang |
2938a632b70d982d527122e6425ae0c300eeed9e | .travis.yml | .travis.yml | os:
- osx
- linux
sudo: false
language: go
go: 1.5.1
addons:
apt:
sources:
- deadsnakes
packages:
- libonig-dev
- python3.5
- python3.5-dev
install:
- ./tasks/general/ci/install.sh lib
script:
- ./tasks/general/ci/run_tests.sh lib
- ./tasks/local/ci/check_gen.sh
- ./t... | os:
- osx
- linux
sudo: false
language: go
go: 1.5.1
addons:
apt:
sources:
- deadsnakes
packages:
- libonig-dev
- python3.5
- python3.5-dev
- xsel
install:
- ./tasks/general/ci/install.sh lib
script:
- ./tasks/general/ci/run_tests.sh lib
- ./tasks/local/ci/check_g... | Add xsel for clipboard support. | Add xsel for clipboard support.
| YAML | bsd-2-clause | limetext/lime-backend,limetext/lime-backend,limetext/backend,limetext/lime-backend,limetext/lime-backend |
c17c7e76d35947e54fe337d17953c1472ee95100 | .travis.yml | .travis.yml | language: ruby
notifications:
slack:
secure: dSwRumGlIAdGDAaH/fzh/KsQhRqPBcNpbGYrMbAzacFMm8nGyLCShxR3EP/ZxkBp14ZsJ8ys4F5DMVlri7EbGNgBf1nOKAtzme6lV8oqrUxW2QULgvrP4W/+xTg1ULX758qF5NgwqErfS4Y1etofMbOuGriJ6kIxFWRjidmFPYo=
| language: ruby
rvm:
- 2.1.1
- 2.0.0
- 1.9.3
- 1.9.2
notifications:
slack:
secure: dSwRumGlIAdGDAaH/fzh/KsQhRqPBcNpbGYrMbAzacFMm8nGyLCShxR3EP/ZxkBp14ZsJ8ys4F5DMVlri7EbGNgBf1nOKAtzme6lV8oqrUxW2QULgvrP4W/+xTg1ULX758qF5NgwqErfS4Y1etofMbOuGriJ6kIxFWRjidmFPYo=
| Add test target to 1.9.2 - 2.1.0 | Add test target to 1.9.2 - 2.1.0
| YAML | mit | atton-/noir |
8fda22304c86f0bb1f36ea2bd85db84342d2dfc6 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
- "pypy"
env:
- NSQ_VERSION=0.3.5 GO_VERSION=1.4.2
- NSQ_VERSION=0.3.6 GO_VERSION=1.5.1
- NSQ_VERSION=0.3.7 GO_VERSION=1.6
- NSQ_VERSION=0.3.8 GO_VERSION=1.6.2
- NSQ_VERSION=1.0.... | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
- "pypy"
env:
- NSQ_VERSION=1.0.0-compat GO_VERSION=1.8
- NSQ_VERSION=1.1.0 GO_VERSION=1.10.3
matrix:
include:
- env: TOXENV=docs
- env: TOXENV=lint
install:
- sudo apt-g... | Remove < 1.0 nsq compatibility | Remove < 1.0 nsq compatibility
| YAML | bsd-3-clause | wtolson/gnsq,wtolson/gnsq |
7465444718b4bab6551adfc7b5d56af40bef136d | .travis.yml | .travis.yml | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
env:
- DB=MYSQL CORE_RELEASE=3.2
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.1... | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
sudo: false
dist: precise
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
env:
- DB=MYSQL CORE_RELEASE=3.2
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYSQL C... | Use precise distro for PHP 5.3 support | Use precise distro for PHP 5.3 support | YAML | bsd-2-clause | silverstripe/silverstripe-lumberjack,silverstripe/silverstripe-lumberjack,silverstripe/silverstripe-lumberjack |
2e67459fc5dc7a6d97969397524ede487fd2bbde | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
services:
- mongodb
install:
- "pip install coverage"
- "pip install nose"
- "pip install coveralls"
- "pip install -e ."
script: "python setup.py nosetests --with-coverage --cover-package=depot --cover-erase"
after_success:
cove... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
services:
- mongodb
secure: "AOD+7FtWk9oHqLwtbS/aCoKNPsYA/uNsC9N3js7UZO7/5qQAYzvYvWiEiRUAtI620+hsAyTd8hyHZkI7Yk+BFqtdA1XWbDIjYam5WI2euW2ME+FtokxyT3LoLu2fNAabMaNdru0JxSThW+bOurFwshRDEwxvkAgAkgZIMashMVs="
secure: "Ub7LbB1M9Uh1qBXZTyOyP65bgZrn6... | Make the testsuite run on AWS | Make the testsuite run on AWS
| YAML | mit | miraculixx/depot,amol-/depot,eprikazc/depot,miraculixx/depot,rlam3/depot |
44e9434e7ff3e144f6c8d0db0eba3aa4716433ff | .travis.yml | .travis.yml | language: node_js
branches:
only:
- master
node_js:
- 0.6
- 0.7
notifications:
email:
- travis@nodejitsu.com
irc: "irc.freenode.org#nodejitsu"
| language: node_js
branches:
only:
- master
node_js:
- 0.6
- 0.8
notifications:
email:
- travis@nodejitsu.com
irc: "irc.freenode.org#nodejitsu"
| Test on node 0.8 instead of 0.7 | [test] Test on node 0.8 instead of 0.7
| YAML | mit | pocketjoso/director,webx32/director,meleslilijing/director,mylikes/director,lzhengms/director,lzhengms/director,cpg1111/director,sheldonzf/director,vitalsource/director,meleslilijing/director,GerHobbelt/director,mylikes/director,flatiron/director,pandoraui/director,pandoraui/director,andradedev/director,cpg1111/directo... |
6be235f61de45c746476fee3085fd99e37847568 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- ruby-head
- jruby
- jruby-head
- rbx-2
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
notifications:
irc: "irc.freenode.org#celluloid"
| rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- jruby
- jruby-head
- rbx-2
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
notifications:
irc: "irc.freenode.org#celluloid"
| Test against Ruby 2.2.4 & 2.3.0 | Test against Ruby 2.2.4 & 2.3.0
| YAML | mit | copiousfreetime/timers,celluloid/timers |
e89f9ed73ebff6a41ff2f48265070b26e2d81e45 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.4"
matrix:
allow_failures:
- python: "2.7"
- python: "3.4"
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install stomp.py
- pip install python-daemon
- pip install python-ldap
... | language: python
python:
- "2.6"
- "2.7"
- "3.4"
matrix:
allow_failures:
- python: "2.7"
- python: "3.4"
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install stomp.py
- pip install python-daemon
- pip install python-ldap
... | Add TMPDIR env variable to Travis file | Add TMPDIR env variable to Travis file
- Add exporting of TMPDIR env variable (where TMPDIR=$PWD/tmp) to Travis
file so that tests don't try to create temp files in an unwritable area.
| YAML | apache-2.0 | tofu-rocketry/ssm,apel/ssm,tofu-rocketry/ssm,apel/ssm,stfc/ssm,stfc/ssm |
58ed002da64284badc0d054caae58cf14cf07895 | .travis.yml | .travis.yml | language: go
go:
- "1.9.x"
- "1.10.x"
- "1.13.x"
- master
os:
- linux
- osx
install:
- go get -t ./...
script:
- make test
| language: go
go:
- "1.10.x"
- master
os:
- linux
- osx
install:
- go get -t ./...
script:
- make test | Revert "try more go versions, just to see what happens" | Revert "try more go versions, just to see what happens"
This reverts commit 0ecaed062361bce9a4f6146c636050afe5829cf3.
| YAML | bsd-3-clause | attilagyorffy/puma-dev,attilagyorffy/puma-dev,attilagyorffy/puma-dev,puma/puma-dev,attilagyorffy/puma-dev,puma/puma-dev,puma/puma-dev,puma/puma-dev |
ef78b698054f43ebde880166973570a87d9d4ccc | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 1.9.3
- jruby-19mode
- rbx-19mode
- 2.0.0
branches:
only:
- master
notifications:
email:
recipients:
- dev@tabeso.com
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-19mode
- rvm: 2.0.0 | ---
language: ruby
rvm:
- 1.9.3
- jruby-19mode
- rbx-19mode
- 2.0.0
branches:
only:
- master
notifications:
email:
recipients:
- dev@tabeso.com
services:
- mongodb
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-19mode
- rvm: 2.0.0 | Add MongoDB to Travis CI config | Add MongoDB to Travis CI config
| YAML | mit | tabeso/contraband |
079b69ea01dd3359461b159aa2a70889c74fc5e7 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO=django>=1.4,<1.5
- DJANGO=django>=1.6,<1.7
- DJANGO=django>=1.7,<1.8
install:
- psql -c 'CREATE DATABASE orderable' -U postgres;
- pip install $DJANGO --use-mirrors
- pip install -r requirements.txt
- pip install -e .
script: "make test"... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO='django>=1.4,<1.5'
- DJANGO='django>=1.6,<1.7'
- DJANGO='django>=1.7,<1.8'
install:
- psql -c 'CREATE DATABASE orderable' -U postgres;
- pip install $DJANGO --use-mirrors
- pip install -r requirements.txt
- pip install -e .
script: "make... | Add quotes to django versions | Add quotes to django versions
| YAML | bsd-2-clause | incuna/django-orderable,incuna/django-orderable |
2c9b76297c9a6905eaeccd4e06ef85188f246d96 | .travis.yml | .travis.yml | language: objective-c
before_install:
- gem install slather -N
script:
- xctool -project libPhoneNumber.xcodeproj -scheme libPhoneNumber -sdk iphonesimulator clean build test ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_success: slather
| language: objective-c
before_install:
- gem install slather -N
script:
- xctool -project libPhoneNumber.xcodeproj -scheme libPhoneNumber -destination "platform=iOS Simulator,name=iPhone 6" -sdk iphonesimulator clean build test ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES... | Add destination option for testing | Add destination option for testing
| YAML | apache-2.0 | dmaclach/libPhoneNumber-iOS,iziz/libPhoneNumber-iOS,iziz/libPhoneNumber-iOS,dmaclach/libPhoneNumber-iOS,wheniwork/libPhoneNumber-iOS,dmaclach/libPhoneNumber-iOS,wheniwork/libPhoneNumber-iOS,opentable/libPhoneNumber-iOS,opentable/libPhoneNumber-iOS,wheniwork/libPhoneNumber-iOS,dmaclach/libPhoneNumber-iOS,wheniwork/libPh... |
54126b2560538a61318509a7fd15a4c1cdea2a19 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# - "3.2" # setuptools 30.0.0 (and above) dropped support for Python 3.2
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
os:
- linux
# - osx # See https://github.com/travis-ci/travis-ci/issues/4729
env:
- CXX=clang++-4.0
- CXX... | language: python
python:
- "2.7"
# - "3.2" # setuptools 30.0.0 (and above) dropped support for Python 3.2
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
os:
- linux
# - osx # See https://github.com/travis-ci/travis-ci/issues/4729
compiler:
- clang++-4.0
- g+... | Add more compiler testing for Travis CI | Add more compiler testing for Travis CI
| YAML | cc0-1.0 | hajimes/mmh3,hajimes/mmh3,hajimes/mmh3 |
ffbcbd12e3a23463f9129044da86a5de3351cc2a | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
sudo: false
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
script:
- travis-cargo build
- travis-cargo test
- travis-cargo doc
after_success:
- git config user.name "Travis-CI Doc Bot"
- git ... | language: rust
sudo: false
rust:
- stable
matrix:
allow_failures:
- rust: nightly
include:
- rust: beta
script:
- travis-cargo build
- travis-cargo test
- travis-cargo doc
- rust: nightly
script:
- travis-cargo build... | Allow nightly builds to fail | Allow nightly builds to fail
| YAML | mit | Twinklebear/tray_rust |
657e0dbab0f65c640bec0d666623cb5a621762ce | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "pypy"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install requests
- pip install httpretty
- python setup.py install
script:
- python -W always setup.py test | language: python
python:
- "2.6"
- "2.7"
- "pypy"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install requests
- pip install httpretty
- pip install coverage
- pip install coveralls
- python setup.py install
script:
- nosetests --with-coverage agms/test/unit/*
after_success:
- coveralls | Update script to fire nosetests | Update script to fire nosetests
| YAML | mit | agmscode/agms_python |
32fa7d17e4fbd3a9db2703cba5922695cecb5df8 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
install:
- travis_retry composer self-update
- travis_retry composer --version
- travis_retry composer update --prefer-dist --no-interaction
script:
- sh ./maketests.sh
- php vendor/bin/codecept run | language: php
matrix:
include:
- php: '5.4'
dist: precise
- php: '5.5'
dist: precise
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- '7.1'
- '7.2'
- '7.3'
install:
- travis_retry composer self-update
- travis_retry composer --version
- travis_retry composer update --prefer-dist --no-in... | Fix builds on 5.4 5.5 | Fix builds on 5.4 5.5
| YAML | mit | fr05t1k/codeception-progress-reporter,fr05t1k/codeception-progress-reporter |
9faa27a2e24b74bcf6e7d853991c05dde2df7041 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx
- rbx-2.0
- ree
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx-18mode
- rbx-19mode
- ree
| Test against Rubinius in both Ruby 1.8 and 1.9 mode | Test against Rubinius in both Ruby 1.8 and 1.9 mode
| YAML | mit | LizzHale/octokit.rb,Ladiijae/octokit.rb,daukantas/octokit.rb,stetsenko/octokit.rb,JuanitoFatas/octokit.rb,kv109/octokit.rb,tarebyte/octokit.rb,BreemsEmporiumMensToiletriesFragrances/octokit.rb,pvdb/octokit.rb,byroot/octokit.rb,raysrashmi/octokit.rb,pvdb/octokit.rb,hoorayimhelping/octokit.rb,LizzHale/octokit.rb,nilbus/o... |
0936acd96a8c19c4c64fa9ff07bf700eff4dcb46 | .travis.yml | .travis.yml | language: node_js
node_js:
- "8.10"
- "9.9"
services:
- mongodb
cache:
directories:
- node_modules
git:
depth: 3
script:
- yarn test:check-coverage
after_script:
- yarn report-coverage
| language: node_js
node_js:
- "8.10"
- "9.9"
services:
- mongodb
cache:
directories:
- node_modules
git:
depth: 3
script:
- yarn test:check-coverage
after_script:
- yarn report-coverage
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.5.1
- export PATH=$HOME/.yarn... | Upgrade yarn to latest version on Travis | Upgrade yarn to latest version on Travis
| YAML | mit | KunalKapadia/express-mongoose-es6-rest-api,KunalKapadia/express-mongoose-es6-rest-api |
281f9972a7b6dddea400cc9fd2730426b47bc17c | .travis.yml | .travis.yml | sudo: false
cache:
directories:
- $TRAVIS_BUILD_DIR/mnist
- $TRAVIS_BUILD_DIR/cifar10
- $TRAVIS_BUILD_DIR/binarized_mnist
branches:
only:
- master
language: python
python:
- "2.7"
- "3.4"
before_install:
- wget -q http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda... | sudo: false
cache:
directories:
- $TRAVIS_BUILD_DIR/mnist
- $TRAVIS_BUILD_DIR/cifar10
- $TRAVIS_BUILD_DIR/binarized_mnist
branches:
only:
- master
language: python
python:
- "2.7"
- "3.4"
before_install:
- wget -q http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda... | Add NumPy install to Travis. | Add NumPy install to Travis.
| YAML | mit | orhanf/picklable_itertools,dmitriy-serdyuk/picklable-itertools,mila-udem/picklable-itertools |
95c361ed06372895528b8033c0326fe1635077ae | .travis.yml | .travis.yml | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: true
node_js:
- 'node'
- '4'
before_install:
- npm i -g npm@^4.0.0
script:
- istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec
- codecov
before_script:
- npm prune
after_success:
- 'curl -Lo... | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: true
node_js:
- 'node'
- '4'
before_install:
- npm i -g npm@^4.0.0
before_script:
- npm prune
script:
- node build
- istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec
- codecov
after_success... | Add missing build step to coverage | chore(CI): Add missing build step to coverage
| YAML | mit | lukastaegert/fluent-arguments |
c5b64c38dd5e21c6bbcf3cda97a6b476a0e92f47 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
services:
- riak
before_install:
- gem install dep
- ulimit -n 4096
install:
- dep install
| language: ruby
rvm:
- 1.9.3
- 2.0.0
before_install:
- curl http://apt.basho.com/gpg/basho.apt.key | sudo apt-key add -
- sudo bash -c "echo deb http://apt.basho.com $(lsb_release -sc) main > /etc/apt/sources.list.d/basho.list"
- sudo apt-get update
- gem install dep
- ulimit -n 4096
install:
- yes n |... | Install last Riak DB to fix Travis. This is a temporal fix. | Install last Riak DB to fix Travis. This is a temporal fix.
Travis uses riak 1.2.x and pagination needs 1.4.x.
| YAML | mit | emancu/ork |
fd3f16c92d74a3b6401a1e5f07e0fb8d0c9dee8d | .travis.yml | .travis.yml | # reference: http://www.objc.io/issue-6/travis-ci.html
# whitelist
branches:
only:
- master
language: objective-c
os: osx
osx_image: xcode7
env:
matrix:
- TEST_SDK=iphonesimulator7.0
- TEST_SDK=iphonesimulator7.1
- TEST_SDK=iphonesimulator8.1
script:
- xctool test -test-sdk $TEST_SDK -workspace E... | # reference: http://www.objc.io/issue-6/travis-ci.html
# whitelist
branches:
only:
- master
language: objective-c
os: osx
osx_image: xcode7
env:
matrix:
- TEST_SDK=iphonesimulator7.1
- TEST_SDK=iphonesimulator8.1
- TEST_SDK=iphonesimulator9.0
script:
- xctool test -test-sdk $TEST_SDK -workspace E... | Add iOS 9 testing, drop iOS 7 | Add iOS 9 testing, drop iOS 7
| YAML | apache-2.0 | pinterest/PINRemoteImage,pinterest/PINRemoteImage,pinterest/PINRemoteImage,pinterest/PINRemoteImage |
39abf4a585ee6ac89dac0393f6ec0bf56b196686 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "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:
make test
after_success:
coveralls | 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... | Remove "3.2" from the Travis configuration file because py.test has no support for Python 3.2. | Remove "3.2" from the Travis configuration file because py.test has no support for Python 3.2.
| YAML | mit | vrcmarcos/python-deprecated |
e3d6e19dac0a066dc49697e5903dcd416d2f0df8 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
fast_finish: true
before_install:
- travis_retry composer self-update
install:
- composer install --prefer-source
before_script:
- php -S localhost:8000 -t tests/web/
script: phpunit --cover... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
fast_finish: true
before_install:
- travis_retry composer self-update
install:
- composer install --prefer-source
before_script:
- php -S localhost:8000 -t tests/web/
script: phpunit --cover... | Switch to Travis' container-based infrastructure | Switch to Travis' container-based infrastructure
| YAML | isc | FlameCore/Webtools,FlameCore/Webtools |
d95d90bf65c07cc232666922528e6b5ac099b79d | .travis.yml | .travis.yml | sudo: required
services: docker
os: linux
dist: xenial
before_install:
- sudo apt-get -y -qq update
- sudo apt-get -y -qq dist-upgrade
- 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 && apt-get -qq -y dist-upgra... | sudo: required
services: docker
os: linux
dist: xenial
before_install:
- sudo apt-get -y -qq update
- sudo apt-get -y -qq dist-upgrade
- 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=nonintera... | Set DEBIAN_FRONTEND to noninteractive in Travis CI configuration | Set DEBIAN_FRONTEND to noninteractive in Travis CI configuration
| YAML | bsd-2-clause | torsknod/dial-reference,torsknod/dial-reference,torsknod/dial-reference,torsknod/dial-reference |
1cd0f7374610809871ca44549cfd3390887d1bb2 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | Build and test on both AMD64 and ARM64 | Build and test on both AMD64 and ARM64
Use 'arm64' instead of 'arm64-graviton2'
The Graviton2 builder is available only on travis-ci.com. Apache uses travis-ci.org
Install Maven explicitly because it is not pre-installed on the ARM64 image for Trusty
| YAML | apache-2.0 | apache/httpcomponents-client |
1df2d044b289990ebe5aae631bbf9cb7fb250f76 | .travis.yml | .travis.yml | sudo: false
rvm:
- 2.1.5
script:
- bundle exec rake db:migrate RAILS_ENV=test
- bundle exec rake settings:update_defaults RAILS_ENV=test
- bundle exec rspec
before_script:
- cp config/channel.constants.sample.yml config/channel.constants.yml
- cp config/advanced.constants.sample.yml config/advanced.constants.yml
no... | sudo: false
rvm:
- 2.1.5
script:
- bundle exec rake db:migrate RAILS_ENV=test
- bundle exec rake settings:update_defaults RAILS_ENV=test
- bundle exec rspec
before_script:
- cp config/channel.constants.sample.yml config/channel.constants.yml
- cp config/advanced.constants.sample.yml config/advanced.constants.yml
notifi... | Add slack notifier for Travis | Add slack notifier for Travis
| YAML | mit | joegattnet/joegattnet_v3,joegattnet/joegattnet_v3,nembrotorg/nembrot,nembrotorg/nembrot,joegattnet/joegattnet_v3,nembrotorg/nembrot |
3b0f494e674c3374fc1431cbac5acf9a033a83b2 | manifest.yml | manifest.yml | ---
applications:
- name: kiss-bluemix-demo
host: kiss-bluemix-demo
memory: 128M
instances: 1
path: .
buildpack: https://github.com/cloudfoundry/php-buildpack.git
env:
DISPLAY_ERRORS: false
USE_DI_CACHE: false
USE_DOTENV_FILE: false
USE_LATTE_CACHE: false | ---
applications:
- name: kiss-bluemix-demo
host: kiss-bluemix-demo
memory: 128M
instances: 1
path: .
buildpack: https://github.com/cloudfoundry/php-buildpack.git
env:
DISPLAY_ERRORS: false
USE_DI_CACHE: false
USE_DOTENV_FILE: false
USE_LATTE_CACHE: false
| Add new line to end of file | Add new line to end of file
| YAML | mit | plispe/kiss,plispe/kiss,plispe/kiss |
e9c542671d102ebc0647b3f109cb5085c73482f3 | manifest.yml | manifest.yml | ---
instances: 3
buildpack: go_buildpack
memory: 512M
domains:
- cloudfoundry.org
- cfapps.io
applications:
- name: plugins
env:
GO15VENDOREXPERIMENT: 1
| ---
applications:
- name: plugins
env:
GOPACKAGENAME: github.com/cloudfoundry-incubator/cli-plugin-repo
instances: 2
buildpack: https://github.com/cloudfoundry/go-buildpack#develop
memory: 128M
domains:
- cloudfoundry.org
- cfapps.io
| Switch to experimental gvt-supported buildpack | Switch to experimental gvt-supported buildpack
[#117634419]
Signed-off-by: Chris Hendrix <f9e38fc3e1ff46784bdcadbf77d17f93932faf2c@pivotal.io>
| YAML | apache-2.0 | cloudfoundry-incubator/cli-plugin-repo,guidowb/cli-plugin-repo,guidowb/cli-plugin-repo,kkellner/cli-plugin-repo,cloudfoundry-incubator/cli-plugin-repo,kkellner/cli-plugin-repo,cloudfoundry-incubator/cli-plugin-repo,brybwy/cli-plugin-repo,brybwy/cli-plugin-repo,guidowb/cli-plugin-repo,guidowb/cli-plugin-repo,brybwy/cli-... |
c4bbf1d8913b568d7c9eae663bd6ea5c6d9be13f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
| Use the standard Jade Travis configuration | Use the standard Jade Travis configuration
| YAML | mit | jadejs/jade-walk,pugjs/jade-walk |
4a381274c7d4362a090ddcf4b742047812b67be8 | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.2
language: python
python:
- "3.4"
install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/relea... | sudo: required
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.2
language: python
python:
- "3.4"
install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/relea... | Test setting URL for coveralls | Test setting URL for coveralls
| YAML | mit | uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged |
18c0bff379be625313aaa0728b51a49ee7be972e | .travis.yml | .travis.yml | sudo: false
language: go
before_script:
- export GOPROBE_TMPL="../templates/*"
go:
- 1.4
script:
- go vet ./...
- go test ./...
| sudo: false
language: go
before_script:
- export GOPROBE_TMPL="../templates/*"
go:
- 1.5
script:
- go vet ./...
- go test ./...
| MOve over to go version 1.5 | MOve over to go version 1.5
| YAML | apache-2.0 | samitpal/goProbe,samitpal/goProbe |
46e672ebabe19c51402b48d4f9c742fbafa7e14e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
- 2.3.0
- ruby-head
branches:
only:
- "master"
- "/^release-/"
before_install: gem install bundler
cache: bundler
sudo: false
git:
depth: 1
| language: ruby
rvm:
- 2.2.2
- 2.3.0
- ruby-head
branches:
only:
- "master"
- "/^release-/"
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
before_install: gem install bundler
cache: bundler
sudo: false
git:
depth: 1
| Allow ruby-head to fail on Travis CI | Allow ruby-head to fail on Travis CI
| YAML | mit | ddfreyne/markbook,ddfreyne/markbook |
ab7239f630b673aac1a5c923d65f0c41ebd16e88 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
before_script:
- bundle exec berks install
script:
- bundle exec foodcritic -f any .
- bundle exec rspec --color --format progress
- bundle exec rubocop
| rvm:
- 2.0.0
before_script:
- bundle exec berks install
script:
- bundle exec foodcritic -f any .
- bundle exec rspec --color --format progress
- bundle exec rubocop
| Remove testing on Ruby 1.9.3 | Remove testing on Ruby 1.9.3
Ruby 1.9.3 is EOL. The cookbook currently runs on 1.9.3 but the standard
Chef development environment increasingly does not.
| YAML | apache-2.0 | stevendanna/tmux,bitmonk/chef-tmux,stevendanna/tmux,stevendanna/tmux,bitmonk/chef-tmux,bitmonk/chef-tmux |
a788ab24acc298fd4b9a91f297d1ff16d0430355 | .travis.yml | .travis.yml | branches:
except:
- gh-pages
language: perl6
sudo: false
perl6:
- latest
# - 2015.09
install:
- rakudobrew build-panda
- panda installdeps .
| branches:
except:
- gh-pages
language: perl6
sudo: false
perl6:
- latest
- 2016.03
install:
- rakudobrew build-panda
- panda installdeps .
| Test on 2016.03 (Travis CI) | Test on 2016.03 (Travis CI)
| YAML | mit | retupmoca/P6-Compress-Zlib-Raw |
949a071e870a9c90a18f6958229f5a7589aa2b31 | .travis.yml | .travis.yml | language: c
sudo: false
notifications:
email: false
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS="conda-forge"
- CONDA_DEPENDENCIES="glueviz pytest mock pyopengl pyqt=4"
- CONDA_CHANNEL_PRIORITY=True
matrix:
- PYTHON_VERSION=2.7
- PYTHON_VERSION=3.5
- PYTHON_VERSION=2.7 PIP_DEPEN... | language: c
sudo: false
notifications:
email: false
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS="conda-forge"
- CONDA_DEPENDENCIES="glueviz pytest mock pyopengl pyqt=4.11.3"
- CONDA_CHANNEL_PRIORITY=True
matrix:
- PYTHON_VERSION=2.7
- PYTHON_VERSION=3.5
- PYTHON_VERSION=2.7 PIP_... | Make sure we don't use PyQt4 from conda-forge | Make sure we don't use PyQt4 from conda-forge
| YAML | bsd-2-clause | PennyQ/astro-vispy,glue-viz/glue-vispy-viewers,astrofrog/glue-3d-viewer,glue-viz/glue-3d-viewer,astrofrog/glue-vispy-viewers,PennyQ/glue-3d-viewer |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.