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 |
|---|---|---|---|---|---|---|---|---|---|
14ca12346728fcc97827e0aa1f784100bf036ae5 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- nightly
script:
- php composer.phar self-update
- php composer.phar install --dev
- ./vendor/bin/phpunit
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- nightly
- hhvm
script: phpunit
| Use more up-to-date example of Travis config :P | Use more up-to-date example of Travis config :P
| YAML | mit | hyperized/wefact |
db3f5bfc9d355d5ecbf4e8bec83bc3855bb24ab3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "lts/*"
- "6"
before_script:
- yarn prepare
script:
- yarn test
- node lib/cli.js --version
- node lib/cli.js test/fixtures/valid.graphql
notifications:
email: false
| language: node_js
node_js:
- "node"
- "lts/*"
- "8"
before_script:
- yarn prepare
script:
- yarn test
- node lib/cli.js --version
- node lib/cli.js test/fixtures/valid.graphql
notifications:
email: false
| Drop support for node v6 | Drop support for node v6
It is EOL. | YAML | mit | cjoudrey/graphql-schema-linter |
74cc01d70c4afe88c0e68b2c32e094175248e64d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
| Test on node version `4` and `5` | Test on node version `4` and `5`
| YAML | mit | gillstrom/yard |
861646b058f4eef8f835eecd34ba2f8472df57fc | .travis.yml | .travis.yml | language: node_js
addons:
firefox: "85.0"
node_js:
- "12"
matrix:
fast_finish: true
services:
- xvfb
env:
- TF=test
- TF=addons/Dexie.Observable/test/unit
- TF=addons/Dexie.Observable/test/integration
- TF=addons/Dexie.Syncable/test/unit
- TF=addons/Dexie.Syncable/test/integration
- TF=addons/dexie-... | language: node_js
before_install: if [[ `npm -v` != 7* ]]; then npm i -g npm@7; fi
addons:
firefox: "85.0"
node_js:
- "12"
matrix:
fast_finish: true
services:
- xvfb
env:
- TF=test
- TF=addons/Dexie.Observable/test/unit
- TF=addons/Dexie.Observable/test/integration
- TF=addons/Dexie.Syncable/test/unit
... | Make sure npm version 7 is used | Make sure npm version 7 is used
| YAML | apache-2.0 | dfahlander/Dexie.js,dfahlander/Dexie.js,jimmywarting/Dexie.js,jimmywarting/Dexie.js,dfahlander/Dexie.js,jimmywarting/Dexie.js,jimmywarting/Dexie.js,dfahlander/Dexie.js |
1331f79dc928848325d522ae07ec61354d1bf5c4 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
install: pip install -U pytest pytest-runner
script: python setup.py ptr
| sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
matrix:
allow_failures:
- python: "pypy"
- python: "pypy3"
install: pip install -U pytest pytest-runner
script: python setup.py ptr
| Allow pypy/pypy3 to fail for now | Allow pypy/pypy3 to fail for now
| YAML | mit | tldr-pages/tldr-python-client,Anmol-Singh-Jaggi/tldr-python-client |
4efcaa1134885cd18a4b5a8b6ff0e7c59b6cbba9 | .travis.yml | .travis.yml | language: php
# Use container-based infrastructure
sudo: false
php:
- 5.6
- 7.0
before_script:
- mkdir -p /home/travis/.phpenv/versions/$(phpenv version-name)/etc/conf.d
- composer self-update
- composer install --prefer-source
script: vendor/bin/codecept run unit --coverage --report --cover... | language: php
# Use container-based infrastructure
sudo: false
php:
- 5.6
- 7.0
- 7.1
before_script:
- mkdir -p /home/travis/.phpenv/versions/$(phpenv version-name)/etc/conf.d
- composer self-update
- composer install --prefer-source
script: vendor/bin/codecept run unit --coverage --repor... | Add PHP 7.1 to the Travis CI build matrix | Add PHP 7.1 to the Travis CI build matrix
| YAML | mit | nordsoftware/lumen-elasticsearch,digiaonline/lumen-elasticsearch |
6b9bd07835aee1d163bf27e27e3cd299018ee22f | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
env:
global:
- PHPUNIT_BIN='vendor/bin/phpunit'
- PHPUNIT_CONFIG='phpunit.xml.dist'
- PHPUNIT_FLAGS='--stop-on-failure --verbose'
- UPLOAD_CLOVER='wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-c... | language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
env:
global:
- PHPUNIT_BIN='vendor/bin/phpunit'
- PHPUNIT_CONFIG='phpunit.xml.dist'
- PHPUNIT_FLAGS='--stop-on-failure --verbose'
- GUZZLE_VERSION="~6.2"
matrix:
include:
- php: '5.6'
env:
- PHPUNIT_FLAGS="--stop-on-failur... | Send Clover in the 'after_script' section | Send Clover in the 'after_script' section
| YAML | mit | alexdebril/feed-io,alexdebril/feed-io,alexdebril/feed-io |
ccd0de196507abb7cecc128f5cb0ee25a2f179e5 | .travis.yml | .travis.yml | language: objective-c
xcode_project: CSyncSDK.xcodeproj # path to your xcodeproj folder
xcode_scheme: CSyncSDK-iOS
osx_image: xcode8.2
before_script:
- brew update
- brew install carthage
- carthage update
- /usr/libexec/PlistBuddy -c "Set CSYNC_HOST $CSYNC_HOST" CSyncSDKTests/Config.plist
- /usr/libexec/Pli... | language: objective-c
xcode_project: CSyncSDK.xcodeproj # path to your xcodeproj folder
xcode_scheme: CSyncSDK-iOS
osx_image: xcode8.2
before_script:
- brew update
- brew install carthage
- carthage update
- /usr/libexec/PlistBuddy -c "Set CSYNC_HOST $CSYNC_HOST" CSyncSDKTests/Config.plist
- /usr/libexec/Pli... | Change to only build on master | Change to only build on master
| YAML | apache-2.0 | csync/csync-swift,csync/csync-swift,csync/csync-swift |
21e1d77f715c43b558b885485fd00c800ef68dd1 | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- sys-img-armeabi-v7a-android-22
licenses:
- 'android-sdk-license-.+'
before_script:
- echo no | android create avd --force -n ... | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- sys-img-armeabi-v7a-android-16
licenses:
- 'android-sdk-license-.+'
before_script:
- echo no | android create avd --force -n ... | Change emulator version to 16. | Change emulator version to 16.
| YAML | apache-2.0 | kubode/Wiggle |
086377be9a6366598c805fef703d6b90d999c11f | .travis.yml | .travis.yml | dist: xenial
sudo: required
# xcode8 has jdk8
osx_image: xcode8
# Not technically required but suppresses 'Ruby' in Job status message.
language: java
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
... | dist: xenial
sudo: required
# Not technically required but suppresses 'Ruby' in Job status message.
language: java
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
OS=linux
fi
BAZEL=$(cat ".... | Use default image for osx on Travis. | Use default image for osx on Travis.
xcode8 (macOS: 10.11, jdk:1.8.0_92-b14) is too old and is not compatible with Bazel 2.0.0+. The default config uses Xcode 9.4.1, macOS 10.13 and jdk 10.0.1+10 and works with Bazel 2.0.
PiperOrigin-RevId: 308727886
| YAML | apache-2.0 | google/jsinterop-base,google/jsinterop-base,google/jsinterop-base |
ba4946abc6fa40d669b5c91c4af6a4b5120bfd88 | .travis.yml | .travis.yml | language: node_js
before_install:
- sudo apt-get install libgmp3-dev
- npm install --upgrade npm -g
node_js:
- "0.10"
notifications:
email:
- lloyd@mozilla.com
- benadida@mozilla.com
- warner@mozilla.com
| language: node_js
before_install:
- sudo apt-get install libgmp3-dev
- npm install --upgrade npm -g
node_js:
- "0.10"
notifications:
irc:
channels:
- "irc.mozilla.org#fxa"
use_notice: false
skip_join: false
| Replace email notifications with IRC ones | Replace email notifications with IRC ones
| YAML | mpl-2.0 | vladikoff/browserid-crypto,vladikoff/browserid-crypto,mozilla/browserid-crypto,mozilla/browserid-crypto,vladikoff/browserid-crypto,mozilla/browserid-crypto |
c684cebb10dde5e9354427dd8f20bfd90df26604 | .travis.yml | .travis.yml | language: minimal
services:
- docker
jobs:
include:
- env: DOCKER_IMAGE=maven:3.6.2-jdk-8
- env: DOCKER_IMAGE=maven:3.5.4-jdk-9 # There are no newer images with Maven for this JDK
- env: DOCKER_IMAGE=maven:3.6.0-jdk-10 # There are no newer images with Maven for this JDK
- env: DOCKER_IMAGE=maven:3... | language: minimal
services:
- docker
jobs:
include:
- env: DOCKER_IMAGE=maven:3.6.3-jdk-8
- env: DOCKER_IMAGE=maven:3.5.4-jdk-9 # There are no newer images with Maven for this JDK
- env: DOCKER_IMAGE=maven:3.6.0-jdk-10 # There are no newer images with Maven for this JDK
- env: DOCKER_IMAGE=maven:3... | Use newer maven docker images | RAT-272: Use newer maven docker images
| YAML | apache-2.0 | apache/creadur-rat,apache/creadur-rat,apache/creadur-rat,apache/creadur-rat,apache/creadur-rat,apache/creadur-rat |
43ab76a363a6e1b60e599b6198bc46a6ae9c8b83 | .travis.yml | .travis.yml | osx_image: xcode7.3
language: objective-c
rvm: 2.2
branches:
only:
- master
- develop
before_install:
- sysctl -n machdep.cpu.brand_string
- sysctl hw
- ./scripts/before_install
install:
- ./scripts/bootstrap
env:
- workspace="Example/StylingKit.xcworkspace" scheme="StylingKit-Example" destination="... | osx_image: xcode7.3
language: objective-c
rvm: 2.2
branches:
only:
- master
- develop
before_install:
- sysctl -n machdep.cpu.brand_string
- sysctl hw
install:
- ./scripts/bootstrap
env:
- workspace="Example/StylingKit.xcworkspace" scheme="StylingKit-Example" destination="platform=iOS Simulator,name=... | Remove explicit call to before install as it is also called in bootstrap | Remove explicit call to before install as it is also called in bootstrap
| YAML | apache-2.0 | StylingKit/StylingKit,StylingKit/StylingKit,StylingKit/StylingKit,StylingKit/StylingKit |
5dd17305b7921bb0a9e553170f452a7134f2f926 | .travis.yml | .travis.yml | notifications:
recipients:
- vallentin@icir.org
email:
on_success: change
on_failure: change
branches:
only:
- master
language: cpp
compiler:
- gcc
- clang
env:
global:
- PREFIX=$HOME/builds/mavam/prefix # The prefix for dependencies.
- CONCURRENCY=4
matrix:
- BUILD_TYPE=--enab... | notifications:
recipients:
- vallentin@icir.org
email:
on_success: change
on_failure: change
branches:
only:
- master
language: cpp
compiler:
- gcc
- clang
env:
global:
- PREFIX=$HOME/builds/mavam/prefix # The prefix for dependencies.
- CONCURRENCY=4
matrix:
- BUILD_TYPE=--enab... | Fix order issue in Travis CS script. | Fix order issue in Travis CS script.
| YAML | bsd-3-clause | vast-io/vast,mavam/vast,mavam/vast,pmos69/vast,vast-io/vast,vast-io/vast,mavam/vast,pmos69/vast,pmos69/vast,mavam/vast,pmos69/vast,vast-io/vast,vast-io/vast |
816a46c2aab08b5ca004dac5cac248d5e3c3b7d3 | .travis.yml | .travis.yml | language: go
go:
- 1.6
install:
- ./install_dependencies.sh
script:
- ./lint_gofmt.sh
- ./run_tests.sh
- ./lint_metalinter.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- 1.7
install:
- ./install_dependencies.sh
script:
- ./lint_gofmt.sh
- ./run_tests.sh
- ./lint_metalinter.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
| Use go 1.7 in CI. | Use go 1.7 in CI.
| YAML | apache-2.0 | TNG/openpgp-validation-server,TNG/gpg-validation-server,TNG/gpg-validation-server,TNG/openpgp-validation-server |
99246aa5d5e00830a07cc050fea9945fc0f3bf8f | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 7.1
before_install:
- phpenv config-rm xdebug.ini
- composer self-update
install:
- composer install
script:
- ./vendor/bin/simple-phpunit
# this checks that the source code... | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 7.1
before_install:
- phpenv config-rm xdebug.ini
- composer self-update
install:
- composer install
script:
- ./vendor/bin/simple-phpunit
# this checks that the source code... | Add validation of the composer files on Travis | Add validation of the composer files on Travis
This performs validation of the composer metadata to ensure they are valid:
- composer.json does not contain any error
- composer.json does not trigger any warning (thanks to the strict mode)
- composer.lock is uptodate
| YAML | mit | TomasVotruba/symfony-demo,yceruto/symfony-demo,symfony/symfony-demo,TomasVotruba/symfony-demo,javiereguiluz/symfony-demo,yceruto/symfony-demo,bocharsky-bw/symfony-demo,symfony/symfony-demo,symfony/symfony-demo,voronkovich/symfony-demo,voronkovich/symfony-demo,Codeception/symfony-demo,bocharsky-bw/symfony-demo,javieregu... |
beec8469a7271014da8eded51c03f7c8809645b1 | .travis.yml | .travis.yml | sudo: false
language: objective-c
os: osx
matrix:
include:
- osx_image: xcode6.4
- osx_image: xcode7
before_install:
- brew update
install:
- mkdir -p $(brew --repo)/Library/Taps/travis
- ln -s $PWD $(brew --repo)/Library/Taps/travis/homebrew-testtap
- brew tap --repair
- gem install rubocop --no-do... | sudo: false
language: objective-c
os: osx
matrix:
include:
- osx_image: xcode6.4
- osx_image: xcode7
before_install:
- brew update; brew update
install:
- mkdir -p $(brew --repo)/Library/Taps/travis
- ln -s $PWD $(brew --repo)/Library/Taps/travis/homebrew-testtap
- brew tap --repair
- gem install ru... | Work around annoying Homebrew bug | Work around annoying Homebrew bug
Something like this was probably bound to happen eventually.
See Homebrew/homebrew#42553.
| YAML | mit | jasonmp85/homebrew-iwyu |
654f96a8a2113d62f8ff4918964d828b3e33aaf0 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- echo $LANG
- echo $LC_ALL
before_script:
script: |
set -e
rvm get head # Workaround 'shell_session_update: command not found'
make test
python setup.py build
python setup.py test
branches:
only:
- master
notifications:
recipien... | language: cpp
compiler:
- gcc
- clang
before_install:
- echo $LANG
- echo $LC_ALL
before_script:
script:
- rvm get head # Workaround 'shell_session_update: command not found'
- make test
- python setup.py build
- python setup.py test
branches:
only:
- master
notifications:
recipients:
... | Make TravisCI fail when tests fail. | Make TravisCI fail when tests fail.
TravisCI used to ignore return code of make test
and report success even when tests failed.
| YAML | apache-2.0 | Neeke/jsonnet,google/jsonnet,google/jsonnet,google/jsonnet,google/jsonnet,sparkprime/jsonnet,sparkprime/jsonnet,sparkprime/jsonnet,sparkprime/jsonnet,Neeke/jsonnet,sparkprime/jsonnet,Neeke/jsonnet,google/jsonnet,Neeke/jsonnet,google/jsonnet,Neeke/jsonnet,sparkprime/jsonnet |
99c64bb5a33430d7f9c065924d8e245da37a3215 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libhdf5-serial-dev
install:
- pip install cython numpy numexpr
- pip install -r requirements.txt
- pip install coveralls
script: py.test -v --cov psyrun
after_success: coveralls
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libhdf5-serial-dev
install:
- pip install cython numpy numexpr
- pip install -r requirements.txt
- pip install coveralls
- python setup.py develop
script: py.test -v --cov psyrun
after_... | Install psyrun on Travis-CI for testing. | Install psyrun on Travis-CI for testing.
| YAML | mit | jgosmann/psyrun |
6cca2da4f6626fde083ad8111660e7aa53988c72 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9.1
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail
# build sample app for simulator (also builds framework)
- xcodebuild -project ISHPullUpSample/ISHPullUpSample.xcodeproj -scheme ISHPullUpSample -destination 'platform=iOS ... | language: objective-c
osx_image: xcode9.2
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail
# build sample app for simulator (also builds framework)
- xcodebuild -project ISHPullUpSample/ISHPullUpSample.xcodeproj -scheme ISHPullUpSample -destination 'platform=iOS ... | Use Xcode 9.2 and iOS 11.2 for CI | Use Xcode 9.2 and iOS 11.2 for CI
| YAML | mit | iosphere/ISHPullUp,iosphere/ISHPullUp,iosphere/ISHPullUp |
8be3ea101418f4971ce3c082568f9144478e9b47 | .travis.yml | .travis.yml | language: java
script: mvn clean verify
jdk:
- oraclejdk8
- openjdk8
# suggested by travis support.
sudo: required
dist: trusty
group:
sudo: required
| language: java
script: mvn clean verify
jdk:
- oraclejdk8
- openjdk8
# suggested by travis support.
sudo: required
dist: trusty
group:
sudo: required
notifications:
slack:
on_failure: always
on_success: always
secure: YUeHcLIxXFLOokSc8ljuRWfA8q02+1Us8dalaRLWatJXqnGTGasbPc7PPeg0/hesjJA6j4KTohbtLCjt0Eto+... | Add Slack notifications for Travis builds. | WS-2053: Add Slack notifications for Travis builds.
| YAML | apache-2.0 | rosette-api/java,rosette-api/java,rosette-api/java |
9b23995ecf2bb729b70f4f237fcbfe849341143a | .travis.yml | .travis.yml | language: node_js
cache:
directories:
- elm-stuff/build-artifacts
node_js:
- "4.3"
install:
- npm install -g elm@0.17.0
- elm-package install -y
script:
- sh runtests.sh
- elm make src/Main.elm --output=tictactoe.js
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "maste... | language: node_js
node_js:
- "4.3"
install:
- npm install -g elm@0.17.0
- elm-package install -y
script:
- sh runtests.sh
- elm make src/Main.elm --output=tictactoe.js
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash deploy.sh
| Remove caching (seems to be causing issues on Travis) | Remove caching (seems to be causing issues on Travis)
| YAML | mit | jjst/elmtimate-tictactoe,jjst/elmtimate-tictactoe |
161aa2d319954c3b9aef37ca58895c595c5820a1 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# Apparently six must be installed first, otherwise setup.py will be unhappy
install:
- pip install six
- pip install --upgrade -r requirements_dev.txt
script: py.test --cov .
after_success: coveralls
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# Apparently six must be installed first, otherwise setup.py will be unhappy
install:
- pip install six
- pip install --upgrade -r requirements_dev.txt
script: py.test --cov .
after_success: coveralls
| Drop Python 3.3 support as latest setuptools doesn't support it | Drop Python 3.3 support as latest setuptools doesn't support it
Also add Python 3.6 to Travis tests.
| YAML | mit | OpenDataServices/flatten-tool |
1dbfe643d5e037eec24d57a99d03902a8c692fe3 | .travis.yml | .travis.yml | sudo: false
language: python
cache: pip
matrix:
fast_finish: true
include:
- python: 3.4
env: TOXENV=py34-django20
- python: 3.5
env: TOXENV=py35-django20
- python: 3.6
env: TOXENV=py36-django20
- python: 3.7
env: TOXENV=py37-django20
dist: xenial
sudo: true
... | dist: xenial
sudo: false
language: python
cache: pip
matrix:
fast_finish: true
include:
- python: 3.4
env: TOXENV=py34-django20
- python: 3.5
env: TOXENV=py35-django20
- python: 3.6
env: TOXENV=py36-django20
- python: 3.7
env: TOXENV=py37-django20
- python: 3.5
env... | Use 'dist: xenial' in Travis to simplify configuration | Use 'dist: xenial' in Travis to simplify configuration
Allows using recent Python versions without sudo declarations.
Travis officially added support for Xenial on 2018-11-08.
https://blog.travis-ci.com/2018-11-08-xenial-release
| YAML | bsd-2-clause | jdufresne/django-decorator-include,jdufresne/django-decorator-include,twidi/django-decorator-include,twidi/django-decorator-include |
f6deb493da0b7adc81821d38abdbbe9fb575bafd | .travis.yml | .travis.yml | language: go
env:
- GIMME_OS=linux GIMME_ARCH=amd64 RUN_TESTS=1
- GIMME_OS=darwin GIMME_ARCH=amd64
- GIMME_OS=windows GIMME_ARCH=amd64
go:
- 1.3
- 1.4
- tip
before_install:
- go get -u github.com/axw/gocov/gocov
- go get -u github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- go get -d... | language: go
env:
- GIMME_OS=linux GIMME_ARCH=amd64 RUN_TESTS=1
- GIMME_OS=darwin GIMME_ARCH=amd64
- GIMME_OS=windows GIMME_ARCH=amd64
go:
- 1.3
- 1.4
- tip
matrix:
allow_failures:
- go: tip
before_install:
- go get -u github.com/axw/gocov/gocov
- go get -u github.com/mattn/goveralls
- go get golang.org/... | Allow go tip to fail | Allow go tip to fail
| YAML | mit | moul/go-kryptos,ultreme/go-kryptos |
19f11e0ec721b99025126bfc1cae98f15c6da1dc | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "6"
- "7"
- "10"
env:
- TRAVIS_SWI_VERSION="stable"
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y build-essential autoconf curl chrpath pkg-config ncurses-dev libreadline-dev libedit-dev libunwind-dev libgmp-dev libssl-dev unixodbc-dev zlib1g-dev li... | language: node_js
node_js:
- "4"
- "6"
- "7"
- "10"
env:
- TRAVIS_SWI_VERSION="stable"
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y build-essential autoconf curl chrpath pkg-config ncurses-dev libreadline-dev libedit-dev libgmp-dev libssl-dev unixodbc-dev zlib1g-dev libarchive-dev l... | Remove some required packages for Travis CI | Remove some required packages for Travis CI
| YAML | mit | fnogatz/xsd2json,fnogatz/xsd2json |
fe7c35493c95284194545d0af67eca28d54a47a7 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install:
- pip install -e .
script:
- python setup.py nosetests
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install -e .
script:
- python setup.py nosetests
| Test on python 3.x also | Test on python 3.x also
| YAML | mit | rkhleics/police-api-client-python |
486e2cc64c8a337852643f26f2eb484bfe8bde60 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: 2.7
env:
- TOXENV=py27
- python: 3.6
env:
- TOXENV=py36
- python: 3.7
env:
- TOXENV=py37
env:
matrix:
- TOXENV=go
- TOXENV=lua LUA="lua 5.1"
- TOXENV=lua LUA="lua 5.2"
- TOXENV=lua LUA="lua 5.3"
-... | language: python
matrix:
include:
- python: 2.7
env:
- TOXENV=py27
- python: 3.6
env:
- TOXENV=py36
- python: 3.7
dist: xenial
env:
- TOXENV=py37
env:
matrix:
- TOXENV=go
- TOXENV=lua LUA="lua 5.1"
- TOXENV=lua LUA="lua 5.2"
- TOXENV=lua ... | Use dist: xenial with Python 3.7 | Use dist: xenial with Python 3.7 | YAML | apache-2.0 | eddelbuettel/annoy,spotify/annoy,spotify/annoy,eddelbuettel/annoy,spotify/annoy,eddelbuettel/annoy,spotify/annoy,eddelbuettel/annoy |
72b1d5be07c3ad80e98cecfea8b301f77ac3bd48 | .travis.yml | .travis.yml | language: erlang
addons:
apt:
packages:
- xsltproc
- python3
otp_release:
- R16B03-1
- 17.5
- 18.0
script: EICONV=1 make samples
cache:
apt: true
| # vim:sw=2:et:
dist: xenial
sudo: false
language: erlang
addons:
apt:
packages:
- xsltproc
- python3
cache:
apt: true
otp_release:
- 21.3
before_script:
- elixir --version
# The checkout made by Travis is a "detached HEAD" and branches
# information is missing. Our Erlang.mk's git_rmq f... | Update Travis CI with what rabbitmq-server uses | Update Travis CI with what rabbitmq-server uses
| YAML | mpl-2.0 | gotthardp/rabbitmq-email |
fe345a852488c244a3844f918a3e431cad9328f0 | .travis.yml | .travis.yml | language: ruby
before_install:
- gem install bundler # the default bundler version on travis is very old and causes 1.9.3 build issues
rvm:
- 1.9.3
- jruby-1.7.26
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- jruby-9.1.7.0
| language: ruby
before_install:
- gem install bundler # the default bundler version on travis is very old and causes 1.9.3 build issues
rvm:
- 1.9.3
- jruby-1.7.26
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- jruby-9.1.7.0
- rbx-3
| Add Rubinius to test matrix again | Add Rubinius to test matrix again
Based on https://travis-ci.org/rubinius/travis-canary/builds/199402063
it looks like `rbx` doesn't work, but `rbx-3` does.
| YAML | mit | lorcan/mutations,cypriss/mutations |
6d8505d5a48773086830f51a75e8f1d86cecf6a9 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.2"
# By default, the gh-pages branch is not built unless added to the whitelist.
branches:
only:
- gh-pages
# See https://docs.travis-ci.com/user/gui-and-headless-browsers/#Starting-a-Web-Server
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep... | language: node_js
node_js:
- "4.2"
# See https://docs.travis-ci.com/user/gui-and-headless-browsers/#Starting-a-Web-Server
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # Give Xvfb some time to start.
- npm run server &
- sleep 3 # Give the web server some time to bind to s... | Build all branches in Travis to more easily test CI issues | Build all branches in Travis to more easily test CI issues
| YAML | mit | heremaps/map-linkbuilder-app,heremaps/map-linkbuilder-app,heremaps/map-linkbuilder-app |
fc6be7801284532e14bdbaf83f8a5b52edbbf8d5 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install: pip install -r .travis-requirements.txt --use-mirrors
script: python setup.py test
| language: python
python:
- "2.7"
- "3.3"
install: pip install -r .travis-requirements.txt --use-mirrors
script: python setup.py test
| Test by Travis for Python 2.7 and 3.3 | Py3: Test by Travis for Python 2.7 and 3.3
| YAML | mit | j2a/pytils,Forever-Young/pytils |
78705b2f4f177dfade99ebe57b9e4bbfe999095b | .travis.yml | .travis.yml | language: dart
sudo: false
dart:
- dev
- stable
- 1.23.0
dart_task:
- test: --platform vm
xvfb: false
- test: --platform firefox
- test: --platform dartium
install_dartium: true
- dartfmt
- dartanalyzer
# Only building master means that we don't run two builds for each pull request.
branches:
... | language: dart
dart:
- dev
- stable
- 1.23.0
dart_task:
- test: --platform vm
xvfb: false
- test: --platform firefox
- dartfmt
- dartanalyzer
# Only building master means that we don't run two builds for each pull request.
branches:
only: [master]
cache:
directories:
- $HOME/.pub-cache
| Stop running tests with Dartium | Stop running tests with Dartium | YAML | bsd-3-clause | dart-lang/http_parser |
98a6b018e236b110a08b9cf3f8588e72606d8f5f | .travis.yml | .travis.yml | before_install:
- "sudo add-apt-repository -y ppa:cjwatson/launchpad"
- "sudo apt-get update"
- "sudo apt-get -y install libsodium-dev"
cache: "cargo"
git:
depth: 1
install:
- "which cargo || cargo install diesel_cli"
language: "rust"
notifications:
email: false
irc: "chat.freenode.net#ruma"
rust:
- "ni... | before_install:
- "sudo add-apt-repository -y ppa:cjwatson/launchpad"
- "sudo apt-get update"
- "sudo apt-get -y install libsodium-dev"
cache: "cargo"
git:
depth: 1
install:
- "which diesel || cargo install diesel_cli"
language: "rust"
notifications:
email: false
irc: "chat.freenode.net#ruma"
rust:
- "n... | Check for `diesel`, not `cargo`. | Check for `diesel`, not `cargo`.
| YAML | mit | yblein/ruma,yblein/ruma |
3e1e77a2a9d7d25fa16ccc2cace1dbaa66a80d54 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
before_install:
- gem update --system 2.1.11 # rubygems 2.2.0 have a bug for 1.8.7 ?
- gem --version
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
| Drop Ruby 1.8.7 support, Add 2.2.0 support | Drop Ruby 1.8.7 support, Add 2.2.0 support
| YAML | mit | hotchpotch/http-dump |
7b0590821bfa3d436f90b0d21e83c83caef86ad5 | .travis.yml | .travis.yml | language: c
before_script:
- sudo apt-get install cmake libglib2.0-dev
- mkdir build
- cd build
- cmake ..
script:
- make
- ./test/test-mock
| language: c
compiler:
- clang
- gcc
before_script:
- sudo apt-get install cmake libglib2.0-dev
- mkdir build
- cd build
- cmake ..
script:
- make
- ./test/test-mock
| Enable both gcc and clang | Enable both gcc and clang
| YAML | lgpl-2.1 | miq/libuca,miq/libuca,ufo-kit/libuca,ufo-kit/libuca,miq/libuca,ufo-kit/libuca |
7fcae1664b44e705b73f551616d840a75d21661b | .travis.yml | .travis.yml | language: rust
rust:
- nightly
- beta
- stable
script: make test
notifications:
webhooks: http://build.servo.org:54856/travis
| language: rust
rust:
- nightly
- beta
- stable
- 1.15.0
script: make test
notifications:
webhooks: http://build.servo.org:54856/travis
| Build with Rust 1.15 on Travis | Build with Rust 1.15 on Travis
| YAML | apache-2.0 | servo/rust-url,servo/rust-url,cGuille/rust-url,cGuille/rust-url |
f809d0e441d002723f70a17d2249e51df2d3dd41 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.11'
- '0.12'
- 'iojs-1'
- 'iojs-2'
- '5.11'
- '7.40'
after_script:
- npm run coveralls
| language: node_js
node_js:
- '5.11'
- '7.4'
after_script:
- npm run coveralls
| Remove support for old versions of node | Remove support for old versions of node
| YAML | mit | alexlangberg/node-chronostore |
3693d56f9557561a79bb9de35823c804981cbbcb | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
# Download bundle of python eggs, and use it as download cache
- "wget http://depot.makina-corpus.org/public/geotrek/geotrek-bundle.tar.gz -O /tmp/geotrek-bundle.tar.gz || true"
- "tar -zxf /tmp/geotrek-bundle.tar.gz --directory=$HOME || true"
- echo -e "[build... | language: python
python:
- "2.7"
before_install:
# Download bundle of python eggs, and use it as download cache
- "wget http://depot.makina-corpus.org/public/geotrek/geotrek-bundle.tar.gz -O /tmp/geotrek-bundle.tar.gz || true"
- "tar -zxf /tmp/geotrek-bundle.tar.gz --directory=$HOME || true"
- echo -e "[build... | Add casperjs and phantomjs to local bin | Travis: Add casperjs and phantomjs to local bin
| YAML | bsd-2-clause | Anaethelion/Geotrek,GeotrekCE/Geotrek-admin,mabhub/Geotrek,johan--/Geotrek,makinacorpus/Geotrek,mabhub/Geotrek,Anaethelion/Geotrek,camillemonchicourt/Geotrek,GeotrekCE/Geotrek-admin,Anaethelion/Geotrek,GeotrekCE/Geotrek-admin,makinacorpus/Geotrek,makinacorpus/Geotrek,camillemonchicourt/Geotrek,johan--/Geotrek,johan--/G... |
99d8e957571bb5e7192385d37f150afdc4d304ba | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 1.9.3
gemfile:
- gemfiles/Gemfile.activesupport-3.x
- gemfiles/Gemfile.activesupport-4.x
matrix:
exclude:
- rvm: 1.9.3
gemfile: gemfiles/Gemfile.activesupport-3.x
- rvm: 2.0.0
gemfile: gemfiles/Gemfile.activesupport-3.x
env:
global:
secure: T3becyAvdUz5P62ri... | language: ruby
rvm:
- 2.0.0
- 1.9.3
| Test 2.0.0 and 1.9.3 on Travis CI | Test 2.0.0 and 1.9.3 on Travis CI
| YAML | mit | rspec-api/rspec-api-matchers |
12357b96e0d5a0c48421d8d87c44195f7f9baeee | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v 1.17.3"
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
f... | ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v 1.17.3"
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
... | Change to allow failure on jruby | Change to allow failure on jruby
| YAML | mit | piotrmurach/tty-spinner,peter-murach/tty-spinner,piotrmurach/tty-spinner |
c59b6f3dcd22a5e17309fef5583853c0bf9e4ae1 | .travis.yml | .travis.yml | language: ruby
rvm:
# - 2.2
- 2.3
# - 2.4
# - rbx-2
# - rbx
# - jruby-1.7
# - jruby
gemfile:
- spec/gemfiles/Gemfile.edge
# - spec/gemfiles/Gemfile.rails-3.2.x
# - spec/gemfiles/Gemfile.rails-4.0.x
# - spec/gemfiles/Gemfile.rails-4.1.x
# - spec/gemfiles/Gemfile.rails-4.2.x
# - spec/gemfiles/... | language: ruby
rvm:
- 2.2
- 2.3
- 2.4
# - rbx-2
# - rbx
# - jruby-1.7
# - jruby
gemfile:
- spec/gemfiles/Gemfile.edge
- spec/gemfiles/Gemfile.rails-3.2.x
- spec/gemfiles/Gemfile.rails-4.0.x
- spec/gemfiles/Gemfile.rails-4.1.x
- spec/gemfiles/Gemfile.rails-4.2.x
- spec/gemfiles/Gemfile.sequel... | Enable some more Ruby, Postgres and Rails versions. | Enable some more Ruby, Postgres and Rails versions.
| YAML | mit | heroku/que,chanks/que |
92010d7ceeab71fd2ca36749d997eee47c77283b | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2.0
- 2.1.5
- 2.0.0
branches:
only:
- develop
- master
env:
global:
- secure: "D3z4RvKc32obw+Tnd92VLwpGHca5HP3oMpCrMo1AbzsZcEpTuiIlQ+8byQt0MfnPABfJy/MNnXJNefVjZr7rOkGH6NiIAR2zH0Ajb0HJytXocG5a4KIYY6BJtavwdX4PLTbOHassdfxkuOrMkF0lVcxBPeGIFUYUytahnYDw9q0="
| language: ruby
cache: bundler
rvm:
- 2.4.0
- 2.3.3
branches:
only:
- develop
- master
env:
global:
- secure: "D3z4RvKc32obw+Tnd92VLwpGHca5HP3oMpCrMo1AbzsZcEpTuiIlQ+8byQt0MfnPABfJy/MNnXJNefVjZr7rOkGH6NiIAR2zH0Ajb0HJytXocG5a4KIYY6BJtavwdX4PLTbOHassdfxkuOrMkF0lVcxBPeGIFUYUytahnYDw9q0="
| Use only the most recent Ruby versions | Use only the most recent Ruby versions | YAML | mit | asaaki/ryodo |
cd9ca056c0a2046ac1df4d9b3320b8560944d13f | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
cache:
directories:
- "$HOME/.m2/repository"
branches:
only:
- master
- "/^iterator-fixtures-[0-9]+\\.[0-9]+\\.[0-9]+/"
| language: java
jdk:
- oraclejdk8
cache:
directories:
- "$HOME/.m2/repository"
branches:
only:
- master
- "/^iterator-fixtures-[0-9]+\\.[0-9]+\\.[0-9]+/"
after_success:
- mvn clean test jacoco:report coveralls:report
env:
global:
secure: WojAofzPO32jARvbcX3XJoEJj0kGiITz582DwoXqqV7s4tGP5NyZ7wDJDnnXJMnYy... | Add Coveralls integration to Travis build | Add Coveralls integration to Travis build | YAML | apache-2.0 | iteratoruk/iterator-fixtures |
25850d3b4baf0e1eff90528bd383d28a679446d2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
notifications:
email: false
before_script: cp config/local.json.sample config/local.json
secure: "gZS1RyUlebqTVKwq0CpDQOJZoaVcHST1hP5Ffx2iSZaYAidFsWQDhkfDGS82U7SwTKeERvwF7S3M+COQ+NukC9UX4bQx1VQ8wJAVYv8gtj3JcZWhSTchk6zciJapVDRuoUuOt2OCXZvI5d/C8R+r1bAh4qECZfg2e/z17Qry24s="
| language: node_js
node_js:
- '0.10'
notifications:
email: false
before_script: cp config/local.json.sample config/local.json
env:
global:
secure: X/vfBLZiMb2iX++kczwBodfFNCqi1bPsTinZHMS8dT2heOFzG6xlRJsT8HYJd/3Rvrf6iVwuQ0M/jn+hek+MGn/bqEb+qdz23XEVMbQ8amneOo6wnjQmIbQnESXUC24qLGzrIno2Spo0sDdgpiAFizBGXs5/Bj0vlawWKf... | Update API key for Travis. | Update API key for Travis.
| YAML | mit | christhomson/roomular,christhomson/roomular |
be71b0dbf2c3fc0225a2abfc2dbd018a274b8bf8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.0.0
- 2.1
- jruby-9000
env:
- RAILS_VERSION="~>3.2"
- RAILS_VERSION="~>4.0.0"
- RAILS_VERSION="~>4.1.0"
- RAILS_VERSION="~>4.2.0"
script: "rake spec:all"
before_install:
- sudo apt-get update
- sudo apt-get install idn
- gem update bundler
notifications:
email:
rec... | language: ruby
rvm:
- 2.2
- 2.0.0
- 2.1
- jruby-9000
env:
- RAILS_VERSION="~>3.2"
- RAILS_VERSION="~>4.0.0"
- RAILS_VERSION="~>4.1.0"
- RAILS_VERSION="~>4.2.0"
script: "bundle exec rake spec:all"
before_install:
- sudo apt-get update
- sudo apt-get install idn
- gem update bundler
notifications:
em... | Use bundler to execute test | Use bundler to execute test
| YAML | apache-2.0 | saicheems/google-api-ruby-client,sqrrrl/google-api-ruby-client,googleapis/google-api-ruby-client,austin-wang/google-api-ruby-client,saicheems/google-api-ruby-client,googleapis/google-api-ruby-client,sqrrrl/google-api-ruby-client,austin-wang/google-api-ruby-client |
7853234a61f4b11422042c16e0bf1e25fb38cd82 | .travis.yml | .travis.yml | matrix:
include:
- os: linux
dist: trusty
sudo: false
- os: osx
before_install:
- brew update
- brew list protobuf &>/dev/null || brew install protobuf
addons:
apt:
packages:
- libprotobuf-dev
- protobuf-compiler
language: ruby
rvm:
- 2.6.0
- 2.5.0
- 2... | matrix:
include:
- os: linux
dist: xenial
sudo: false
- os: linux
dist: trusty
sudo: false
- os: osx
before_install:
- brew update
- brew list protobuf &>/dev/null || brew install protobuf
addons:
apt:
packages:
- libprotobuf-dev
- protobuf-c... | Test on Ubuntu Xenial 16.04 on Travis CI | Test on Ubuntu Xenial 16.04 on Travis CI
| YAML | apache-2.0 | akihikodaki/cld3-ruby,akihikodaki/cld3-ruby |
9f657b7863cb39d83efd46eb5a69231fbed726df | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- rbx-2.2
- jruby-19mode
script: "bundle exec rake spec"
| rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- jruby-19mode
script: "bundle exec rake spec"
| Revert "Rubinius version for Travis" | Revert "Rubinius version for Travis"
This reverts commit 6cc2d62c3ee66f44c96c259b32ee100077653998.
| YAML | mit | laurynas/royal_mail_scraper |
8300375a624432cc8935459a7db45ca5b44adbd8 | .travis.yml | .travis.yml | language: php
php:
- "7.0"
- "5.6"
script: phpunit tests
after_success: bash <(curl -s https://codecov.io/bash)
| language: php
php:
- "7.0"
- "5.6"
script: phpunit --coverage-clover=coverage.xml tests
after_success: bash <(curl -s https://codecov.io/bash)
| Add coverage output to Travis CI test script. | Add coverage output to Travis CI test script.
| YAML | bsd-2-clause | direvus/php-decimal |
69bcae7bcd7af309eaa69669a8e2565308197707 | .travis.yml | .travis.yml | ---
language: python
python: "2.7"
# Use the new container infrastructure
sudo: false
# Install ansible
addons:
apt:
packages:
- python-pip
install:
# Install ansible
- pip install ansible
# Check ansible version
- ansible --version
# Create ansible.cfg with correct roles_path
- printf '[defa... | ---
language: python
python: "2.7"
# Use the new container infrastructure
sudo: false
# Install ansible
addons:
apt:
packages:
- python-pip
install:
# Install ansible
- pip install ansible
# Check ansible version
- ansible --version
# Create ansible.cfg with correct roles_path
- printf '[defa... | Correct name for role in test | Correct name for role in test
| YAML | mit | Jimdo/ansible-fastly |
7628d2f634603b737b6df022f66264fdb5fb844b | .travis.yml | .travis.yml | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
branches:
... | language: csharp
sudo: false
dist: trusty
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
osx_image: xcode8.2
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == ... | Update Travis to macOS Sierra | Update Travis to macOS Sierra
[skip appveyor]
| YAML | apache-2.0 | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore |
15d3933ab540c171d75be8af448befbbdc62c0cf | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: groovy
before_install:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker run -d -p 27017:27017 mongo:latest
script:
- docker build -t sdkman/sdkman-broadcast:2.0.0-SNAPSHOT .
- docker run -d -p 9001:9001 --net=host sdkman/sdkman-... | sudo: required
services:
- docker
language: groovy
before_install:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
script:
- docker build -t sdkman/sdkman-broadcast:2.0.0-SNAPSHOT .
- docker run -d -p 9001:9001 --net=host sdkman/sdkman-broadcast:2.0.0-SNAPSHOT
- "./gradlew check"... | Remove manual start of docker on CI. | Remove manual start of docker on CI.
| YAML | apache-2.0 | gvmtool/gvm-broadcast-api,sdkman/sdkman-broadcast-api |
9d75d5716b67f4806781e9eb7bac96aee49d0459 | .travis.yml | .travis.yml | language: php
php:
- 5.4
before_script:
- composer install --dev --prefer-source
script: vendor/bin/phpunit --configuration ./build/travis-ci.xml
notifications:
email: false
irc:
channels:
- "irc.freenode.org#phpunit"
use_notice: true
| language: php
php:
- 5.4
- 5.5
before_script:
- composer install --dev --prefer-source
script: vendor/bin/phpunit --configuration ./build/travis-ci.xml
notifications:
email: false
irc:
channels:
- "irc.freenode.org#phpunit"
use_notice: true
| Enable PHP 5.5 for Travis CI | Enable PHP 5.5 for Travis CI
| YAML | bsd-3-clause | sebastianbergmann/phpunit,Firehed/phpunit |
646b8b6aa4af943f6cd9becf77565657ddaf5de9 | .travis.yml | .travis.yml | language: php
php: [5.3, 5.4, 5.5]
services: redis-server
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- composer selfupdate
- composer install --prefer-source
| language: php
php: [5.4, 5.5]
services: redis-server
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- composer selfupdate
- composer install --prefer-source
| Remove support for php 5.3 | Remove support for php 5.3
| YAML | mit | blablacar/redis-client |
e80c0f89631fb8b05e7727fc502236a392de385c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# We need to set all the required env variables before running any test
before_script:
export WORKSHOPVENUES_ADMIN_NAME="Your Name"
export WORKSHOPVENUES_... | language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# We need to set all the required env variables before running any test
before_script:
- export WORKSHOPVENUES_ADMIN_NAME="Your Name"
- export WORKSHOPVEN... | Fix syntax of the TravisCI configuration file. | Fix syntax of the TravisCI configuration file.
| YAML | bsd-3-clause | andreagrandi/workshopvenues |
3cab3c1531764741cae12781004bd45e17699014 | .travis.yml | .travis.yml | language: node_js
python:
- "2.7"
node_js:
- 10
install:
- pip install pytest
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: node_js
python:
- "3.5"
node_js:
- 10
install:
- pip install pytest
after_success:
- bash <(curl -s https://codecov.io/bash)
| Change Travis Python version to 3.5 | Change Travis Python version to 3.5
The Travis build crashed during pip install pytest with a permission denied error, but there were also InsecurePlatformWarning messages that recommended a newer Python version. | YAML | mit | thinkulum/generator-python-cmd,thinkulum/generator-python-cmd |
6e6b4e8a91f62aac8e15b9a4f95b67d158d1938f | .travis.yml | .travis.yml | language: php
sudo: false
env:
global:
- SYMFONY_VERSION="2.8.*"
- RUN_PHPCS="no"
- COMPOSER_FLAGS=""
matrix:
include:
- php: 5.5
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
- php: 5.6
env: SYMFONY_VERSION="2.7.*"
- php: 5.6
env: RUN_PHPCS="yes" S... | language: php
sudo: false
env:
global:
- SYMFONY_VERSION="2.8.*"
- RUN_PHPCS="no"
- COMPOSER_FLAGS=""
matrix:
include:
- php: 5.5
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
- php: 5.6
env: SYMFONY_VERSION="2.7.*"
- php: 5.6
env: RUN_PHPCS="yes" S... | Remove HHVM from test matrix | Remove HHVM from test matrix
| YAML | lgpl-2.1 | joomla-framework/renderer |
40a33207bfa2e78b0ca62ddd0d2b8328ffffde2d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '12'
- '14'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
| Build with Node.js 16 at Travis CI. | Build with Node.js 16 at Travis CI.
See #31.
| YAML | mit | bigeasy/cliffhanger |
0ec4419b6424af8056280d194459383f6e887ddd | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.4
- 2.5
before_script:
- cp config/database.yml_travis config/database.yml
- bundle exec rake db:create
after_success:
- bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 77087e4bd5341508f7b5fd16196425c54cb6fed60935c5a635b14bcff877... | language: ruby
cache: bundler
sudo: false
services:
- postgresql
rvm:
- 2.4
- 2.5
before_script:
- cp config/database.yml_travis config/database.yml
- bundle exec rake db:create
after_success:
- bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 77087e4bd5341508f7b5fd16196425c54cb... | Make sure postgresql is running | Make sure postgresql is running
| YAML | mit | kif-ev/oskiosk-server,kif-ev/oskiosk-server |
f198395e0b16364cdda9153b62c7d2f29b893017 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
| language: node_js
node_js:
- "0.11"
- "0.10"
| Remove support for node 0.8 | Remove support for node 0.8
| YAML | apache-2.0 | crosswalk-project/DEPRECATED-crosswalk-apk-generator,crosswalk-project/DEPRECATED-crosswalk-apk-generator,crosswalk-project/DEPRECATED-crosswalk-apk-generator,crosswalk-project/DEPRECATED-crosswalk-apk-generator |
2e320d5252f1d00b9af3cea298acce8e30080935 | .travis.yml | .travis.yml | language: haskell
install:
- ghc --version
- cabal --version
- sudo apt-get install libfcgi-dev
- cabal unpack wai-logger
- mv wai-logger-* wai-logger
- cabal install hspec doctest HTTP cabal-meta cabal-src
- cabal-meta install --force-reinstalls
script: mega-sdist --test
| language: haskell
ghc:
- 7.6
- 7.8
install:
- ghc --version
- cabal --version
- sudo apt-get install libfcgi-dev
- cabal unpack wai-logger
- mv wai-logger-* wai-logger
- cabal install hspec doctest HTTP cabal-meta cabal-src
- cabal-meta install --force-reinstalls
script: mega-sdis... | Enable Travis testing on GHC 7.6 and 7.8 | Enable Travis testing on GHC 7.6 and 7.8
This verifies that the doctest/fast-logger issues are all resolved on GHC 7.6 and 7.8.
| YAML | mit | dylex/wai,utdemir/wai,urbanslug/wai,rgrinberg/wai,sordina/wai,creichert/wai,ygale/wai,utdemir/wai,awpr/wai,awpr/wai,dylex/wai,tolysz/wai,tolysz/wai,awpr/wai,urbanslug/wai,erikd/wai,dylex/wai,jberryman/wai,erikd/wai,mfine/wai,AndrewRademacher/wai,rgrinberg/wai,iquiw/wai,mfine/wai,iquiw/wai,ygale/wai,frontrowed/wai,iquiw... |
a4a433fa64a484b25639a8806d2a68bba6661f2b | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
notifications:
irc:
channels: chat.freenode.net#bitsquare.io
template:
- '%{message} (%{repository}#%{build_number}, %{duration})'
- '%{repsitory}/%{branch} %{commit} %{author}: %{commit_message}'
- '%{build_url}'
on_success: always
on_failure: always
... | language: java
jdk: oraclejdk8
notifications:
irc:
channels: chat.freenode.net#bitsquare.io
template:
- '%{message} (%{repository}#%{build_number}, %{duration})'
- '%{repsitory}/%{branch} %{commit} %{author}: %{commit_message}'
- '%{build_url}'
on_success: always
on_failure: always
... | Set skip_join to false in Travis IRC config | Set skip_join to false in Travis IRC config
Per http://docs.travis-ci.com/user/notifications/#IRC-notification.
Bypassing joining the room cuts down on login/logout noise in the IRC
channel. But because #bitsquare.io currently has the -n flag set we
need to explicitly log in.
See #86
| YAML | agpl-3.0 | sakazz/exchange,bisq-network/exchange,ManfredKarrer/exchange,myteer/bitsquare,bisq-network/exchange,myteer/bitsquare,metabit/bitsquare,ManfredKarrer/exchange,haiqu/bitsquare,haiqu/bitsquare,bitsquare/bitsquare,metabit/bitsquare,bitsquare/bitsquare,sakazz/exchange |
1b06e774d172d8d309cb4f7a994bc043315a8823 | .travis.yml | .travis.yml | language: node_js
before_install:
- yarn config set ignore-engines true
node_js:
- "4"
- "6"
- "8"
- "10"
| language: node_js
before_install:
- yarn config set ignore-engines true
node_js:
- "6"
- "8"
- "10"
| Update Travis since yarn fails on node v4 | Update Travis since yarn fails on node v4
| YAML | mit | 101100/xbee-rx |
376d1bf69938ef1b03ae2daae5793b69caa2a9e0 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
before_install:
- gem install ruby-debug-ide
- nvm install 8.11.3
- echo "8.11.3" > .nvmrc
before_script:
- nvm use
- npm install -g typescript -v 2.1.5
- npm install
- cd client && npm install && cd ..
- cd server && npm install && cd ..
- npm run... | language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
before_install:
- gem install ruby-debug-ide
- nvm install 8.11.3
- echo "8.11.3" > .nvmrc
before_script:
- nvm use
- npm install
- cd client && npm install && cd ..
- cd server && npm install && cd ..
- npm run compile
script: nvm use && npm run tes... | Remove global typescript install on Travis | Remove global typescript install on Travis
| YAML | mit | rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby |
655bf34180a29bd409f7d8d26a34c31547fc6ae3 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --no-interaction
script:
- composer validate --strict
- find src tests -name *.php | xargs -n 1 -P4 php -l
- vendor/bin/phpunit
| language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --no-interaction
script:
- composer validate --strict
- find src tests -name *.php | xargs -n 1 -P4 php -l
- vendor/bin/phpunit
| Remove PHP 5.5 target, add 7.1 target | Travis: Remove PHP 5.5 target, add 7.1 target | YAML | bsd-2-clause | mollie/oauth2-mollie-php |
5782e0a4635ab1d0e50c70c1043df84ed7607cdf | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
| sudo: false
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
| Configure Travis CI for better build performance | [TASK] Configure Travis CI for better build performance
* set sudo: false to allow Travis to use the container-based infrastructure
* enable bundler caching
| YAML | mit | neomadara/rails_best_practices,flyerhzm/rails_best_practices,neomadara/rails_best_practices,beanieboi/rails_best_practices,sideci-sample/sideci-sample-rails_best_practices,flyerhzm/rails_best_practices,railsbp/rails_best_practices,beanieboi/rails_best_practices,andela-iokonkwo/rails_best_practices,railsbp/rails_best_pr... |
50e17f4af116091acc0378731e5547f2e14a702f | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.11'
| language: node_js
node_js:
- '0.10'
- '0.11'
- '0.12'
- 'iojs'
sudo: false
| Add tests for node 0.12 and iojs, container-based | Add tests for node 0.12 and iojs, container-based
| YAML | mit | klei/gulp-inject,klei/gulp-inject |
caa9193208ddb9cbb3ff5abbce0f5f696d9b1333 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
- SYMFONY_VERSION=2.6.*
matrix:
include:
- php: 5.3.3
env: SYMFONY_VERSION=2.3.* COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php:... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
- SYMFONY_VERSION=2.6.*
matrix:
include:
- php: 5.3.3
env: SYMFONY_VERSION=2.3.* COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php:... | Make Symfony 2.7 support a requirement | Make Symfony 2.7 support a requirement | YAML | mit | symfony-cmf/RoutingAuto |
25288e3b0fa5be95140039c5dbcc16a7a42c5ebf | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rake ci"
cache: false
rvm:
- 2.1.3
- 2.1.6
- 2.2.3
- 2.3.0
sudo: false
services:
- redis-server
addons:
code_climate:
repo_token: 9b8c58a49bdfba5582d6a766fbe198e3720158e5e65c2ae00b1667e5e1bb8769
env: CI=yes
before_install: 'gem install b... | language: ruby
bundler_args: --without debug
script: "bundle exec rake ci"
cache: false
rvm:
- 2.1.3
- 2.1.6
- 2.2.3
- 2.3.0
sudo: false
services:
- redis-server
addons:
code_climate:
repo_token: 9b8c58a49bdfba5582d6a766fbe198e3720158e5e65c2ae00b1667e5e1bb8769
env: CI=yes
before_install: 'gem install b... | Allow Travis failures for unsupported Rubies | Allow Travis failures for unsupported Rubies
Krikri is still in version 0.x. DPLA develops with Ruby version 2.1.3
and is still deploying with that version. Bundler 1.13.0 was recently
released, and it generates errors evaluating our Gemfile. The
known-good version of bundler, 1.11, can be installed with
before_insta... | YAML | mit | dpla/KriKri,dpla/KriKri,dpla/KriKri,dpla/KriKri |
2d8139c0e3bbdb9f6abe5dbd9d064b11dd8fca16 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "2.7"
- "2.6"
install:
- "pip install . --use-mirrors"
script: python -m test.test_facebook
env:
global:
- FACEBOOK_APP_ID=198798870326423
- FACEBOOK_SECRET=2db4d76fe8a336cf292470c20a5a5684
| language: python
python:
- "3.3"
- "2.7"
- "2.6"
install:
- "pip install flake8 --use-mirrors"
- "pip install . --use-mirrors"
before_script: flake8 --exclude=docs,setup.py .
script: python -m test.test_facebook
env:
global:
- FACEBOOK_APP_ID=198798870326423
- FACEBOOK_SECRET=2db4d76fe8a336c... | Add flake8 to Travis configuration. | Add flake8 to Travis configuration.
| YAML | apache-2.0 | Aloomaio/facebook-sdk,mobolic/facebook-sdk |
0ab6959493613d503d166e1ab7fbd29d73b7d810 | .travis.yml | .travis.yml | sudo: false # or required
language: python
python:
- 2.7
- 3.5
os: trusty
env:
- YAMBO_VERSION=4.1 PW_version=5.4
# - any combination of versions
matrix:
allow_failures:
- python: 3.5 # Builds using this version can fail without compromising the end result
fast_finish: true # Don't wait... | sudo: false # or required
language: python
python:
- 2.7
- 3.5
os: trusty
env:
- YAMBO_VERSION=4.1 PW_VERSION=5.4
# - any combination of versions
matrix:
allow_failures:
- python: 3.5 # Builds using this version can fail without compromising the end result
fast_finish: true # Don't wait... | Add call to test script | Add call to test script
| YAML | bsd-3-clause | alexandremorlet/yambopy,henriquemiranda/yambopy,alexmoratalla/yambo-py,palful/yambopy,alexmoratalla/yambo-py,alexmoratalla/yambopy,palful/yambopy,alexandremorlet/yambopy,henriquemiranda/yambo-py,henriquemiranda/yambo-py,henriquemiranda/yambopy,alexmoratalla/yambopy |
93e21316a1b11d75c395a442d0f0c6002ba1f100 | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
branches:
- /.*/
install:
- npm install
script:
- npm test
| language: node_js
node_js:
- "stable"
services:
- docker
branches:
- /.*/
before_install:
- docker build -t lgallinaro/rr3js .
- docker run lgallinaro/rr3js /bin/bash -c "npm test"
install:
- npm install
script:
- npm test
after_success:
- if ["$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$D... | Add docker push settings/build step to pipeline | Add docker push settings/build step to pipeline
| YAML | mit | GLNRO/react-redux-threejs,GLNRO/react-redux-threejs |
0da11f1827027446ea377f873135564942b4c31e | .travis.yml | .travis.yml | before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- sudo apt-get update
install:
- sudo apt-get install rust-nightly
script:
- make
- sudo make install
- sudo make uninstall
- make clean
- make doc
| env:
global:
- secure: eEAXQP0S4A9RQv4rQYGbGDgdQ2McwCGtjW4QA6oaWXxPnQLaaylRRmdKvNpgfVmWQr6gf2mcpJKar6Ys4OF7xBUTze2ObSCfBIqS4ovK72XMA4kOAonqeq7pxq/OXzKd4eN5BX2DyXxZ5nlPqr2HT7Wb/CjpazKyQ+fCsjKtyzY=
before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- sudo apt-get update
install:
- sudo apt-get ... | Enable Rust CI doc upload | Enable Rust CI doc upload
| YAML | apache-2.0 | sebcrozet/alga,sebcrozet/alga,WaDelma/alga,WaDelma/algebra |
f66434d84c40014268959727e7573caa65394086 | .travis.yml | .travis.yml | # See:
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/languages/python
language: python
python:
#- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # currently points to 3.6-dev
install:
- pip install -r re... | # See:
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/languages/python
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # currently points to 3.6-dev
install:
- pip install -r requirements.txt
- p... | Change Python versions for Travis | Change Python versions for Travis
| YAML | isc | araile/python-botutil |
beed86ff3770f2b90ba6a4a86e8acf02f2c35c61 | .travis.yml | .travis.yml | dist: trusty
language: node_js
node_js:
- "10"
script:
- yarn test --coverage
- yarn e2e
after_success:
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
| dist: trusty
language: node_js
node_js:
- "10"
cache:
# cache both npm modules and Cypress binary
directories:
- ~/.npm
- ~/.cache
script:
- yarn test --coverage
- yarn e2e
after_success:
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
| Update for accessing missing binary | Update for accessing missing binary
| YAML | mit | gillesdemey/mermaid,knsv/mermaid,knsv/mermaid,gillesdemey/mermaid,gillesdemey/mermaid |
62c8279e9745bf5e90bc0f4648fb6427d9854813 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.1
| sudo: false
language: ruby
cache: bundler
rvm: 2.3.1
deploy:
provider: rubygems
api_key:
secure: hL0h5W084SQgCMufhUYzzrLq0krzt+C5WgmobbB81f684XJ+2FG6SvouPSzrAKLjgv/Ksk3G+oqr6kvTSV7L20+le+dpkE7c1lXDuwzs8Kd/VVr1ZJxDOu5Mn0NcVGvEdl+qKT8GLrz1KskK7QQdld0e+k3F7U+7ixtd2uz9GSZfBBjFSYTc38aa9O9EM0DqzYp717oDxZKChlB5p5G6bt... | Deploy to rubgems on new tags | Deploy to rubgems on new tags
| YAML | mit | kjg/slate-installer,kjg/slate-installer |
fa20bb0131333e84acfdac80962aca3496153990 | .travis.yml | .travis.yml | # YAML definition for travis-ci.com continuous integration.
# See https://docs.travis-ci.com/user/languages/c
language: c
compiler:
- gcc
before_script:
- mkdir build
- cd build
- cmake -G 'Unix Makefiles' ..
script:
- make
after_success:
- sudo apt-get install python3
- ../scripts/run-... | # YAML definition for travis-ci.com continuous integration.
# See https://docs.travis-ci.com/user/languages/c
language: c
compiler:
- gcc
before_script:
- mkdir build
- cd build
- CFLAGS='-g -O0 --coverage' cmake -G 'Unix Makefiles' ..
script:
- make
after_success:
- sudo apt-get install py... | Create coverage data and upload them to coverage.io. | .trevis.yml: Create coverage data and upload them to coverage.io.
| YAML | mit | mity/md4c,mity/md4c,mity/md4c |
8b1fb8933c76f5dd2eafc28a02624302e6ef14fc | .travis.yml | .travis.yml | language: java
deploy:
provider: releases
api_key:
secure: "d4ehSZ2dgGAjBmwWeRX1HJNZOXdI9/fv1OR5mObQnHcrKj6efg53VAUfG0fFjp8+1HaxPp9NJO3ZbglhayiJN2RSuxBHYU/f6qqRqUAThLLG5Wt0OEqG8IHcxZhYHS3LHLQMo0dK5ihHwV3MoU1B9FdCq0Ci1yMLBvBAxBOOr4U="
file-glob: true
file: "build/libs/NBT-*.jar"
skip_cleanup: true
on:
... | language: java
deploy:
provider: releases
api_key:
secure: "d4ehSZ2dgGAjBmwWeRX1HJNZOXdI9/fv1OR5mObQnHcrKj6efg53VAUfG0fFjp8+1HaxPp9NJO3ZbglhayiJN2RSuxBHYU/f6qqRqUAThLLG5Wt0OEqG8IHcxZhYHS3LHLQMo0dK5ihHwV3MoU1B9FdCq0Ci1yMLBvBAxBOOr4U="
file-glob: true
file: "build/libs/NBT-*.jar"
skip_cleanup: true
on:
... | Switch Travis builds to container-based infrastructure | Switch Travis builds to container-based infrastructure
| YAML | mit | Codeski/NBT |
f3945035e60fdeeebde6145b55c0ee100ce821db | .travis.yml | .travis.yml | language: ruby
bundler_args: --without profile
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- rbx
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-hea... | language: ruby
bundler_args: --without profile
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby... | Add ruby 2.2 to TravisCI and allow to use minor version of 2.0, 2.1 | Add ruby 2.2 to TravisCI and allow to use minor version of 2.0, 2.1
| YAML | mit | mromulus/axlsx,woto/axlsx,Debiancc/axlsx,VueOps/axlsx,bradstewart/axlsx,alexanderfrankel/axlsx,kappiah/axlsx,raghavendra-prithvi/axlsx,pedrogarrett/axlsx,romuloceccon/axlsx,sh-ft/axlsx,clarkcutler/axlsx,legitscript/axlsx,randym/axlsx |
47b961584b64e93935f4d0dbe4c6580a0c97962a | .travis.yml | .travis.yml | language: python
python:
- 2.7
install:
- pip install -r requirements.txt
script:
- cd tests
- nosetests --cover-tests --with-coverage --cover-package=dyfunconn
| language: python
python:
- 2.7
install:
- pip install -r requirements.txt
script:
- cd /home/travis/build/makism/dyfunconn/tests/
- nosetests --cover-tests --with-coverage --cover-package=dyfunconn
| Change to the tests directory | Change to the tests directory | YAML | bsd-3-clause | makism/dyfunconn |
aa589135055eb3addf7ca6e14c18d93244bf8722 | .travis.yml | .travis.yml | language: ruby
cache: bundler
addons:
apt:
packages:
- redis-server
services:
- redis-server
before_install:
- sudo sed -e 's/^bind.*/bind 127.0.0.1/' /etc/redis/redis.conf > redis.conf
- sudo mv redis.conf /etc/redis
- sudo service redis-server start
- echo PING | nc localhost 6379
rvm:
- ... | language: ruby
cache: bundler
addons:
apt:
packages:
- redis-server
services:
- redis-server
before_install:
- sudo sed -e 's/^bind.*/bind 127.0.0.1/' /etc/redis/redis.conf > redis.conf
- sudo mv redis.conf /etc/redis
- sudo service redis-server start
- echo PING | nc localhost 6379
rvm:
- ... | Update TravisCI config to remove unsupported Rubies | Update TravisCI config to remove unsupported Rubies
This was missed in 83c90c14.
While here, update the existing list of Rubies we do support.
| YAML | mit | brigade/mock_redis |
621fe461557e640cdd6cece708b046ccf5a8ded6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
sudo: false
script:
- npm run test-with-cov
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info
git:
depth: 10 | language: node_js
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
sudo: false
script:
- npm run test-with-cov
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info
git:
depth: 10
| Add node 8 to build process | Add node 8 to build process
Signed-off-by: Peter Reid <4b8373d016f277527198385ba72fda0feb5da015@reidweb.com>
| YAML | mit | ReidWeb/GitInspector-CSV |
465dddd74073a3fcf8e21e1628369b66deba4fed | .travis.yml | .travis.yml | language: ruby
cache: bundler
before_install:
- gem install bundler
rvm:
- 2.2
- 2.1
- 2.0
matrix:
fast_finish: true
| language: ruby
cache: bundler
before_install:
- gem install bundler
rvm:
- 2.3
- 2.2
matrix:
fast_finish: true
| Add Ruby v2.3 to Travis config | Add Ruby v2.3 to Travis config
| YAML | mit | vitalie/webshot |
aff5eb3c0bd100187e1eec7bd643df0a6cce9104 | .travis.yml | .travis.yml | language: c
script: bash -ex .travis-ci.sh
env:
- OCAML_VERSION=4.01.0 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0
- OCAML_VERSION=4.00.1 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0
- OCAML_VERSION=4.00.1 MIRAGE_BACKEND=xen OPAM_VERSION=1.1.0
- OCAML_VERSION=4.01.0 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0 XARCH=arm
| language: c
script: bash -ex .travis-ci.sh
env:
- OCAML_VERSION=4.01.0 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0
- OCAML_VERSION=4.00.1 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0
- OCAML_VERSION=4.00.1 MIRAGE_BACKEND=xen OPAM_VERSION=1.1.0
- OCAML_VERSION=4.01.0 MIRAGE_BACKEND=xen OPAM_VERSION=1.1.0
- OCAML_VERSIO... | Add 4.01.0+xen to the Travis build matrix | Add 4.01.0+xen to the Travis build matrix
| YAML | isc | mato/mirage-solo5,mato/mirage-solo5 |
91cabb3641da0bdc1c2c360afb55210169080905 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_script:
- sudo add-apt-repository ppa:eyecreate/haxe -y
- sudo apt-get update
- sudo apt-get install haxe -y
- mkdir ~/haxelib
- haxelib setup ~/haxelib
- haxelib install hxjava
- haxelib git debugger https://github.com/TiVo/debugger.git
- mkdir build
- mkdir report
script: make ... | language: java
jdk:
- oraclejdk8
before_script:
- sudo add-apt-repository ppa:eyecreate/haxe -y
- sudo apt-get update
- sudo apt-get install haxe -y
- mkdir ~/haxelib
- haxelib setup ~/haxelib
- haxelib install hxjava
- haxelib git debugger https://github.com/TiVo/debugger.git
- mkdir build
- mkdir report
script: make ... | Update Travis builds for 2016.3 to 2016.3.1 | Update Travis builds for 2016.3 to 2016.3.1
| YAML | apache-2.0 | eliasku/intellij-haxe,winmain/intellij-haxe,EricBishton/intellij-haxe,HaxeFoundation/intellij-haxe,TiVo/intellij-haxe,HaxeFoundation/intellij-haxe,TiVo/intellij-haxe,EricBishton/intellij-haxe,HaxeFoundation/intellij-haxe,winmain/intellij-haxe,EricBishton/intellij-haxe,eliasku/intellij-haxe,eliasku/intellij-haxe,TiVo/in... |
20de3ce38442b0120a367aa8c9fe1825a908b0a4 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_install:
- if [ ! -f "$HOME/apache-maven-3.3.9/bin/mvn" ]; then wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip && unzip -qq apache-maven-3.3.9-bin.zip -d $HOME; fi
- export M2_HOME=$HOME/apache-maven-3.3.9
- export PATH=$M2_HOME... | language: java
jdk:
- oraclejdk8
before_install:
- if [ ! -f "$HOME/apache-maven-3.3.9/bin/mvn" ]; then wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip && unzip -qq apache-maven-3.3.9-bin.zip -d $HOME; fi
- export M2_HOME=$HOME/apache-maven-3.3.9
- export PATH=$M2_HOME... | Switch to java 8 for deploy target | Switch to java 8 for deploy target
| YAML | epl-1.0 | PDOK/featured-shared,PDOK/featured-shared |
efc506a9211bfdf42f68183330c81c00ceedee78 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx
- rbx-2
- jruby-1
- jruby
allow_failures:
- rvm: rbx
- rvm: rbx-2
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby-1
- jruby
| Remove Rubinius from matrix for now | Remove Rubinius from matrix for now
| YAML | mit | chaps-io/access-granted |
f679583af85ab99ed558b7c20c6ff48b65778a5d | .travis.yml | .travis.yml | # Travis CI Configuration
language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run -m nose
- pycodestyle yvs/*.py
after_success:
- coveralls
| # Travis CI Configuration
language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run -m nose
after_success:
- coveralls
| Remove flake8 from CI pipeline | Remove flake8 from CI pipeline
| YAML | mit | caleb531/youversion-suggest,caleb531/youversion-suggest |
08a444920e7257e12d51a71962a81795b9ba346f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "1.8"
- "2.5"
- "3.3"
- "4"
- "6"
- "7"
- "8"
script: "npm run-script build"
| language: node_js
node_js:
- "4"
- "6"
- "7"
- "8"
script: "npm run-script build"
| Remove CI for older Node | Remove CI for older Node
| YAML | mit | mazhlekov/tsc-resolve,mazhlekov/tsc-resolve |
01dab9eb0a02867a940d7523d287d726c26bf4a8 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
before_install:
- composer install --dev -n --prefer-source
- if [ "5.5" == $TRAVIS_PHP_VERSION ]; then curl -sOL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar; fi
- phpenv rehash
script:
- mkdir -p build/logs
- if [ "... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
before_install:
- composer install --dev -n --prefer-source
- if [ "5.5" == $TRAVIS_PHP_VERSION ]; then curl -sOL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar; fi
- phpenv rehash
script:
- mkdir -p build/logs
- if [ "... | Use phpunit from Composer with Travis | Use phpunit from Composer with Travis
| YAML | apache-2.0 | maxmind/GeoIP2-php,maxmind/GeoIP2-php |
a97b0250ac0f7130415477b7d51751322ec24acb | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: "9"
- node_js: "8"
- node_js: "6"
- node_js: "4"
env: BABEL=true
- node_js: "0.12"
env: BABEL=true
- node_js: "0.10"
env: BABEL=true
script: "[[ $BABEL == true ]] && npm run test:babel || npm test"
after_success:
- npm run trav... | language: node_js
matrix:
include:
- node_js: "9"
- node_js: "8"
- node_js: "6"
- node_js: "4"
env: BABEL=true
script: "[[ $BABEL == true ]] && npm run test:babel || npm test"
after_success:
- npm run travis-coverage
| Remove official support for node < v4 | Remove official support for node < v4
| YAML | mit | garthenweb/bubleify |
b4b0f83522eddc430d22649c45d05a500323f5d9 | .travis.yml | .travis.yml | language: perl
perl:
- 5.14
- 5.16
- 5.18
- 5.20
- 5.22
before_install:
cpanm -n Devel::Cover::Report::Coveralls
script:
perl Build.PL && ./Build && cover -test -report coveralls
| language: perl
sudo: false
perl:
- 5.14
- 5.16
- 5.18
- 5.20
- 5.22
before_install:
cpanm -n Devel::Cover::Report::Coveralls
script:
perl Build.PL && ./Build && cover -test -report coveralls
| Use new Travis CI container builders | Use new Travis CI container builders
Hope to make builds faster :)
| YAML | mit | zakame/hashids.pm,zakame/hashids.pm |
8548bdd3d7fcd0cc96f63209d560f8824cadb981 | .travis.yml | .travis.yml | os:
- linux
sudo: required
dist: trusty
language: node_js
node_js:
- "7"
before_install:
- sudo apt-get install -y chromium-browser
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
script:
- npm run lint
- npm run test
after_success:
-... | os:
- linux
sudo: required
dist: trusty
language: node_js
node_js:
- "7"
before_install:
- sudo apt-get install -y chromium-browser
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
script:
- npm run lint
- npm run test
after_success:
-... | Test change to see user name | Test change to see user name
| YAML | mit | cloady/powerbi-visuals-trello,cloady/powerbi-visuals-trello |
069c7002ddc90d7323a8b512de9af2319e31a0bf | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
| language: node_js
node_js:
- '0.10'
- '0.11'
matrix:
fast_finish: true
allow_failures:
- node_js: '0.11'
| Add test for node 0.11 | Add test for node 0.11 | YAML | mit | easy-node/generator-easy-node |
8806c3e36be82ae6d685c8f10c9bddaa9386f309 | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-... | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTAN... | Update for Chef 15 license agreement and Chef Workstation | Update for Chef 15 license agreement and Chef Workstation
| YAML | apache-2.0 | chef-cookbooks/yum-pgdg |
2525554221777a45d02380467a2925b6c9ebd676 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.7.3
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
script:
- make tes... | sudo: false
language: go
go:
- 1.8
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
script:
- make test
... | Update Go version in Travis CI. | Update Go version in Travis CI.
Signed-off-by: Krzysztof Wilczynski <9bf091559fc98493329f7d619638c79e91ccf029@linux.com>
| YAML | apache-2.0 | kwilczynski/packer-provisioner-itamae-local |
6452d03afb4cce5cac73d66003229f4fb5f6c149 | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
- ruby-head
- jruby
- rbx-2
before_install:
- gem install bundler
script: rake spec
matrix:
allow_failures:
- 1.9.3
- jruby
- rbx-2
| ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
- ruby-head
- jruby
- rbx-2
before_install:
- gem install bundler
script: rake spec
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: jruby
- rvm: rbx-2
| Fix allow_failures on Travis CI | :white_check_mark: Fix allow_failures on Travis CI
| YAML | mit | mrkn/IMF,mrkn/IMF |
efcf63d01f00dc09756d7e5e9f5e4e743361aae0 | .travis.yml | .travis.yml | language: ruby
dist: xenial
cache:
bundler: true
bundler_args: --jobs 1 --retry 5 --without development --path vendor/bundle
rvm:
- '2.5'
- '2.6'
- '2.7'
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
branches:
only:
- master
notifications:
email:
on_success: never
o... | language: ruby
dist: xenial
cache:
bundler: true
bundler_args: --jobs 1 --retry 5 --without development --path vendor/bundle
rvm:
- '2.5'
- '2.6'
- '2.7'
- '3.0'
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
allow_failures:
- rvm: '3.0'
branches:
only:
- master
notifi... | Add Ruby 3.0 to Travis CI | Add Ruby 3.0 to Travis CI
Signed-off-by: Krzysztof Wilczyński <5f1c0be89013f8fde969a8dcb2fa1d522e94ee00@linux.com>
| YAML | apache-2.0 | kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz |
6ed2b68facf43348f2b2c17bcc70ffe0a8d75280 | .travis.yml | .travis.yml | language: go
go:
- '1.0'
- '1.3'
| language: go
go:
- '1.2'
- '1.3'
- '1.4'
- '1.5'
- '1.6'
- '1.7'
- '1.8'
| Add more versions of Go | Add more versions of Go
| YAML | apache-2.0 | chambbj/content-hasher |
a6a821975819707f7915ee98f66d8065cf423fb5 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
# - jruby
- ree
| rvm:
- 1.8.7
- 1.9.3
- jruby
- ree
| Revert "Giving up on JRuby for now" | Revert "Giving up on JRuby for now"
This reverts commit f757f6a2b0be8e038afde5726b37255723120b3d.
| YAML | apache-2.0 | zendesk/prop |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.