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 |
|---|---|---|---|---|---|---|---|---|---|
fb155dae31e928c8da3ddb9e1da2e4c3b7276e7a | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
| language: node_js
node_js:
- "0.10"
matrix:
include:
- node_js: "0.10"
env: UNDERSCORE=1.4.4 MAINRUN=false
- node_js: "0.10"
env: UNDERSCORE=1.5 MAINRUN=false
- node_js: "0.10"
env: UNDERSCORE=1.6 MAINRUN=false
env: MAINRUN=true
before_install:
- npm config set ca ""
install:
- npm... | Test against multiple versions of Underscore. | Test against multiple versions of Underscore.
Resolves #2
| YAML | mit | jmeas/consecutive-segments.js,jmeas/consecutive-segments.js |
f405bd9b687a4604b0caede453f910705ff2bf34 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer install
sudo: false
script:
- phpunit
- vendor/bin/athletic --path test/Benchmark --formatter GroupedFormatter | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
before_script:
- composer install
sudo: false
script:
- phpunit
- vendor/bin/athletic --path test/Benchmark --formatter GroupedFormatter | Add PHP 7.1 and nightly to Travis | Add PHP 7.1 and nightly to Travis
| YAML | mit | rdlowrey/Auryn |
464d94156baad0d9d18833f9d8092343d23c01cd | .travis.yml | .travis.yml | language: csharp
mono: none
dotnet: 1.1.1
os: linux
dist: trusty
script:
- dotnet restore
- dotnet build -c release
- dotnet run Odaceo
| language: csharp
mono: none
dotnet: 2.0.0-preview1-005977
os: linux
dist: trusty
script:
- dotnet restore
- dotnet build -c release
- dotnet run Odaceo
| Upgrade the dotnet core version on Travis CI | Upgrade the dotnet core version on Travis CI
| YAML | apache-2.0 | odaceo/lab-hello-world-csharp-linux |
c6e0d3193d84bfb0cd96fca3b875fb54ff267054 | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
env:
- VERSION=1.0.0
cache:
directories:
- $HOME/.m2
install:
- mvn --settings .travis.settings.xml install -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -B -V
before_install:
- if [ ! -z "$GPG_SECRET_KEYS" ]; then echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXE... | language: java
jdk: oraclejdk8
env:
- VERSION=1.0.0
cache:
directories:
- $HOME/.m2
install:
- mvn --settings .travis.settings.xml install -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -B -V
before_install:
- if [ ! -z "$GPG_SECRET_KEYS" ]; then echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXE... | Send GPG Passphrase as command line parameter. | Send GPG Passphrase as command line parameter.
| YAML | apache-2.0 | salte-io/hippo-web-component,salte-io/hippo-web-component,salte-io/hippo-web-component |
d30c91045fd08030e3891a8d828dafdf18375ad9 | .travis.yml | .travis.yml | before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- yes | sudo add-apt-repository ppa:xorg-edgers/ppa
- yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc
- yes | sudo apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise universe'
- sudo apt-get updat... | branches:
only:
- master
before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- yes | sudo add-apt-repository ppa:xorg-edgers/ppa
- yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc
- yes | sudo apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise ... | Disable Travis CI for non master branch in the right way. | Disable Travis CI for non master branch in the right way.
| YAML | lgpl-2.1 | tempbottle/wxRust,tempbottle/wxRust |
d1c9e4d6faae766a40f87fc506609d912f49c098 | .travis.yml | .travis.yml | os: linux
dist: xenial
services:
- docker
language: python
python:
- '2.7'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
install: 'pip install -e .[test]'
script:
- flake8
- pytest -v --cov
after_success:
- codecov
jobs:
include:
- stage: Docker test
python: '3.8'
script: pytest -m 'int and ... | os: linux
dist: xenial
services:
- docker
language: python
python:
- '2.7'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
install: 'pip install -e .[test]'
script:
- flake8
- pytest -v --cov
after_success:
- codecov
jobs:
include:
- stage: Docker test
python: '3.8'
script: pytest -v -m 'int a... | Enable verbose pytest for docker tests. | Enable verbose pytest for docker tests.
| YAML | mit | Fizzadar/pyinfra,Fizzadar/pyinfra |
5bd2813fb51acb7a1c4336ecb9a4338358928feb | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
rvm:
- 2.1.2
install:
- bundle install --quiet
script:
- rubocop -fs -D
- rake test
- bin/fetch-configlet
- bin/configlet .
| ---
language: ruby
sudo: false
rvm:
- 2.1.2
install:
- bundle install --quiet
script:
- rubocop -fs -D
- rake test
- bin/fetch-configlet
- bin/configlet lint .
| Call configlet subcommand on CI | Call configlet subcommand on CI
This changes configlet to pass a subcommand.
For now, we've released a version of configlet which handles both the old command:
configlet path/to/track
as well as the new command:
configlet lint path/to/track
This will let us update all the travis files to include the subco... | YAML | mit | exercism/xruby,NeimadTL/ruby,Insti/xruby,exercism/xruby,Insti/exercism-ruby,NeimadTL/ruby,NeimadTL/ruby,Insti/xruby,Insti/exercism-ruby,Insti/exercism-ruby |
6ab7d30e020fad540433760cd500fafddfec25af | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- 7.3
branches:
only:
- /^master$/
before_install:
- composer install
env:
TRELLIS_CONFIG_DIR=tests/resources/config/
script:
- composer test
| language: php
php:
- 7.1
- 7.2
- 7.3
branches:
only:
- /^main$/
before_install:
- composer install
env:
TRELLIS_CONFIG_DIR=tests/resources/config/
script:
- composer test
| Adjust CI/CD to use main branch | Adjust CI/CD to use main branch
| YAML | apache-2.0 | trellis-ldp/static-ldp,trellis-ldp/static-ldp |
6f9d6451b234dc20ebadbf9137347e50aad0d71d | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
script: nosetests --with-coverage --cover-package=pybib --cover-branches
after_success:
coveralls
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install rednose
script: nosetests --with-coverage --cover-package=pybib --cover-branches --rednose
after_success:
coveralls
| Use rednose to color nosetests output | Use rednose to color nosetests output
| YAML | bsd-3-clause | jgilchrist/pybib |
1e472c423e0c242123a9d78fa97574e043243cde | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
cache:
npm: false
addons:
chrome: stable
node_js:
- "6"
- "8"
- "10"
- "11"
services:
- docker
after_success:
- 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls'
install:
- npm install
before_install:
- ./scripts/start-server.sh
before_scri... | sudo: required
dist: trusty
language: node_js
cache:
npm: false
addons:
chrome: stable
node_js:
- "10"
- "11"
- "12"
- "13"
services:
- docker
after_success:
- 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls'
install:
- npm install
before_install:
- ./scripts/start-server.sh
before_sc... | Update Travis to test the most recent Node.js releases | [KEYCLOAK-12820] Update Travis to test the most recent Node.js releases
| YAML | apache-2.0 | keycloak/keycloak-nodejs-connect,abstractj/keycloak-nodejs-connect,keycloak/keycloak-nodejs-connect,abstractj/keycloak-nodejs-connect,keycloak/keycloak-nodejs-connect,abstractj/keycloak-nodejs-connect |
4be5248dd82b11cf0dcb0a165b7307ef35e43346 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
script: "bundle exec rake coverage"
services:
- rabbitmq
| language: ruby
rvm:
- 1.9.3
- 2.1
- jruby-1.7.16
script: "bundle exec rake coverage"
services:
- rabbitmq
notifications:
email:
- support@travellink.com.au
flowdock: e69dcafad1fea15c6b8c76e9ced965af
| Add jruby, add Ruby 2.1, add notifications | Add jruby, add Ruby 2.1, add notifications
| YAML | mit | sealink/lagomorph |
2310a37d17be4e96fa2d2fb606943baa03a3570f | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk7
before_script:
- git submodule update --init --recursive
script:
- ./gradlew check integrationTest --info
branches:
only:
- /^(develop|hotfix\/.*|feature\/.*)$/
notifications:
slack:
secure: IAA4d9O2Dw1hkpY9cwxJz++VMjkgbV3EuaS09DGFujvHl2eQtpKTloE0/CDF+NZA4tcb... | sudo: false
language: java
jdk:
- oraclejdk7
before_script:
- git submodule update --init --recursive
script:
- ./gradlew check integrationTest --info --stacktrace
branches:
only:
- /^(develop|hotfix\/.*|feature\/.*)$/
notifications:
slack:
secure: IAA4d9O2Dw1hkpY9cwxJz++VMjkgbV3EuaS09DGFujvHl2eQtpKTloE... | Add stacktrace output to CI build | Add stacktrace output to CI build
| YAML | apache-2.0 | robander/dita-ot,infotexture/dita-ot,eerohele/dita-ot,drmacro/dita-ot,shaneataylor/dita-ot,shaneataylor/dita-ot,drmacro/dita-ot,Hasimir/dita-ot,doctales/dita-ot,drmacro/dita-ot,eerohele/dita-ot,doctales/dita-ot,Hasimir/dita-ot,shaneataylor/dita-ot,eerohele/dita-ot,drmacro/dita-ot,Hasimir/dita-ot,dita-ot/dita-ot,Hasimir... |
ec48f59bf789e1e1034f21a0f5eb0b167a2ec559 | .travis.yml | .travis.yml | language: php
php:
# - 5.4
# - 5.5
- 5.6
env:
# - CAKE_VERSION=2.6
- CAKE_VERSION=2.7 DB=postgres
install:
# - git clone git://github.com/cakephp/cakephp ../cakephp && cd ../cakephp && git checkout $CAKE_VERSION
- composer create-project --no-install cakephp/cakephp:$CAKE_VERSION.* ../cakephp
- cd ../ca... | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
env:
- CAKE_VERSION=2 DB=postgres
- CAKE_VERSION=2 DB=mysql
- CAKE_VERSION=2.8 DB=postgres
install:
- composer create-project --no-install cakephp/cakephp:$CAKE_VERSION.* ../cakephp
- cd ../cakephp && CAKE_DIR=`pwd` && cat $CAKE_DIR/lib/Cake/VERSION.txt
... | Test against recent PHP versions and CakePHP 2.x | Test against recent PHP versions and CakePHP 2.x
| YAML | mit | intersective/lapis |
d48a53aaf9accec282d89de876aab24be4d67fff | .travis.yml | .travis.yml | language: rust
env:
global:
- secure: CypapAJnmOcE+/5uf2ad944IfJwD20whIIsbG+6nNjP34JDJ6EonP4+TuPFLTtZ4PPe2sUAI39TO97gwna2zOJEtU9qeNigvT9yQnDnvr6jkb4QzNJ6lOd42uwHUPvzD9vSjlGLpbAo2PUq8IKw52ehZtN5KvTLyehSoAc2eO6U=
install:
- sudo apt-get install libXxf86vm-dev xdotool
- git clone https://github.com/glfw/glfw... | language: rust
env:
global:
- secure: CypapAJnmOcE+/5uf2ad944IfJwD20whIIsbG+6nNjP34JDJ6EonP4+TuPFLTtZ4PPe2sUAI39TO97gwna2zOJEtU9qeNigvT9yQnDnvr6jkb4QzNJ6lOd42uwHUPvzD9vSjlGLpbAo2PUq8IKw52ehZtN5KvTLyehSoAc2eO6U=
script:
- cargo build
- cargo test
- cargo doc
after_script:
# the doc directory needs to... | Remove glfw from build script | Remove glfw from build script
| YAML | apache-2.0 | kvark/genmesh,gfx-rs/genmesh,csherratt/genmesh |
350fd9cef5fc0f48d97bffb9c5ba31921d3c2369 | .travis.yml | .travis.yml | language: go
go:
- 1.3
cache:
directories:
- go
- libmemcached-1.0.18
before_install:
- sudo apt-get update
- sudo apt-get install -y automake
install:
- make memcached
- make
script:
- make simplepush
| language: go
go:
- 1.3
cache:
directories:
- go
- libmemcached-1.0.18
before_install:
- sudo apt-get update
- sudo apt-get install -y automake
install:
- make memcached
- make
script:
- make simplepush
| Fix indentation of cache directories. | Fix indentation of cache directories.
| YAML | mpl-2.0 | mozilla-services/pushgo,jrconlin/pushgo,jrconlin/pushgo,mozilla-services/pushgo |
87364b55ecb9c547ec308a7c1fdbd6c0428658ad | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.1
sudo: false
cache:
directories:
- Carthage
- Inspector/node_modules
script: ./Scripts/build.sh
branches:
only:
- master
env:
- TARGET=WebDriverAgentLib SDK=iphonesimulator ACTION=test DESTINATION='iPad Air 2' IOS='10.1'
- TARGET=WebDriverAgentLib SDK=iphonesimul... | language: objective-c
osx_image: xcode8.3
sudo: false
cache:
directories:
- Carthage
- Inspector/node_modules
script: ./Scripts/build.sh
branches:
only:
- master
env:
- TARGET=WebDriverAgentLib SDK=iphonesimulator ACTION=test DESTINATION='iPad Air 2' IOS='10.3'
- TARGET=WebDriverAgentLib SDK=iphonesimul... | Migrate Travis to new Xcode | Migrate Travis to new Xcode
Summary: Closes https://github.com/facebook/WebDriverAgent/pull/567
Reviewed By: antiarchit
Differential Revision: D5005850
Pulled By: marekcirkos
fbshipit-source-id: fb6228ab8b8301e8f755d6beb6f29ce6c606fe30
| YAML | bsd-3-clause | ymin/WebDriverAgent,ymin/WebDriverAgent,ymin/WebDriverAgent,ymin/WebDriverAgent |
8dab801b0dc7722c501e86b86c081245a9f022ee | .travis.yml | .travis.yml | language: dart
dart:
- dev
dart_task:
- test: --platform vm
xvfb: false
- test: --platform chrome
xvfb: false
sudo: false
| language: dart
dart:
- dev
dart_task:
- test: --platform vm
xvfb: false
sudo: false
| Remove bad copy and paste settings | Remove bad copy and paste settings
| YAML | mit | Daegalus/dart-base32 |
f868f3607af014c0613013fffaaf9384f5b3ce6e | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
script: "./gradlew :plugin:jpi
after_success: if [ $TRAVIS_SECURE_ENV_VARS -eq true ]; then ./gradlew :pl:bintrayUpload -PbinTrayKey=$BINTRAY_KEY -Pversion=0.1.$TRAVIS_BUILD_NUMBER
-x jar -x javadoc -x sourcesJar -x publishMavenJpiPublicationToMavenLocal"; fi
env:
global:
sec... | language: java
jdk:
- oraclejdk7
script: ./gradlew :plugin:jpi
after_success: if [ $TRAVIS_SECURE_ENV_VARS -eq true ]; then ./gradlew :pl:bintrayUpload -PbinTrayKey=$BINTRAY_KEY -Pversion=0.1.$TRAVIS_BUILD_NUMBER
-x jar -x javadoc -x sourcesJar -x publishMavenJpiPublicationToMavenLocal"; fi
env:
global:
secur... | Fix failed build due to Travis syntax error | Fix failed build due to Travis syntax error
| YAML | apache-2.0 | webdizz/deployment-sphere-plugin,jenkinsci/deployment-sphere-plugin,webdizz/deployment-sphere-plugin,webdizz/deployment-sphere-plugin,jenkinsci/deployment-sphere-plugin,jenkinsci/deployment-sphere-plugin,rkovalenko/deployment-sphere-plugin,rkovalenko/deployment-sphere-plugin |
2a7a98b2ffd8e00859720bec40599888e7b5b509 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
env:
- RAILS_ENV=test
script:
- bundle exec rspec
before_script:
- bundle exec rake test_app | language: ruby
rvm:
- 2.1.0
env:
- RAILS_ENV=test
script:
- bundle exec rspec
before_script:
- echo "Y" | bundle exec rake test_app | Add echo 'Y' for rake test_app task | Add echo 'Y' for rake test_app task
| YAML | bsd-3-clause | devartis/Spree-Mercado-Pago-payment-method,devartis/Spree-Mercado-Pago-payment-method,devartis/Spree-Mercado-Pago-payment-method |
f2605804034cc5ffb1ae58d4b6af7d3b0a8a1ba0 | .travis.yml | .travis.yml | language: go
go:
- 1.2.2
- 1.3
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- export GOBIN=~/bin
- export PATH=$GOBIN:$PATH
- go install github.com/rjeczalik/ungocheck/cmd/ungocheck
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
- ungocheck -race -v ./.... | language: go
go:
- 1.3.1
- tip
matrix:
fast_finish: true
env:
global:
- PATH=$HOME/gopath/bin:$PATH
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- go install github.com/rjeczalik/ungocheck/cmd/ungocheck
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./... | Update Travis CI configuration file | Update Travis CI configuration file
| YAML | mit | rjeczalik/ungocheck |
3b533ff3b8c45f85e623fe1618cfa399c9ab048e | .travis.yml | .travis.yml | language: node_js
node_js:
- node
before_script:
- chmod +x travis-ci.sh
- npm install -g gulp-cli
deploy:
- provider: script
script: deploy.sh
on:
branch: master
| language: node_js
node_js:
- node
before_script:
- chmod +x travis-ci.sh
- npm install -g gulp-cli
deploy:
- provider: script
script: deploy.sh ./app gh-pages https://$GITHUB_TOKEN@github.com/jessevdp/web.git
on:
branch: master
| Add arguments to deploy script | Add arguments to deploy script
| YAML | mit | jessevdp/web,jessevdp/web,jessevdp/web |
c66b14c4f590988d065c3f8bebc8205ee38db584 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk7
install: "./installViaTravis.sh"
script: "./buildViaTravis.sh"
cache:
directories:
- "$HOME/.gradle/caches/"
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_d609e95af532_key -iv $encrypted_d609e95af532_iv
-in gradle.properties.e... | language: java
sudo: false
jdk:
- oraclejdk7
install: "./installViaTravis.sh"
script: "./buildViaTravis.sh"
cache:
directories:
- "$HOME/.gradle/caches/"
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_d609e95af532_key -iv $encrypted_d609e95af532_iv
-in gradle.properties.e... | Fix path problem in Travis CI configuration | Fix path problem in Travis CI configuration
| YAML | apache-2.0 | rspieldenner/gradle-extra-configurations-plugin |
e29ee7860946a2f3c8b8fc4c1bd38dea2c006550 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
before_install:
- npm -g install node-gyp node-pre-gyp
before_deploy:
- npm run-script predeploy
- LAST_COMMIT=$(git log -1 --pretty=format:'%h <%an> - %s')
- echo "Deploying changes from $LAST_COMMIT"
- node_modules/gh-pages/bin/gh-pages -d dist/ -m "Updates from $LAST... | language: node_js
node_js:
- "node"
before_install:
- npm -g install node-gyp@3.4.0 node-pre-gyp@0.6.32
before_deploy:
- npm run-script predeploy
- LAST_COMMIT=$(git log -1 --pretty=format:'%h <%an> - %s')
- echo "Deploying changes from $LAST_COMMIT"
- node_modules/gh-pages/bin/gh-pages -d dist/ -m "Updat... | Use node-gyp and node-pre-gyp versions that phantom wants | Use node-gyp and node-pre-gyp versions that phantom wants
| YAML | unlicense | mauriciovieira/mauriciovieira.net,mauriciovieira/mauriciovieira.net |
3f27d08d51f418152e117f2e28e88637c42d6bee | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.11"
- "0.12"
- "4.1"
- "4.2"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/bust... | sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info ... | Update Travis config to latest. Update Travis config to latest. | Update Travis config to latest. Update Travis config to latest.
| YAML | mit | cliffano/couchtato |
e9e3d7fb471455632810075fe5d8bac177529452 | .travis.yml | .travis.yml | language: go
go:
- 1.2.2
- 1.3
- tip
env:
- GOARCH=amd64
before_install:
- sudo apt-get update -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
- sudo apt-get install bzr mercurial git -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
install:
- export PATH="$HOME/gopath/bin:$PATH"
- make get
... | language: go
go:
- 1.2.2
- 1.3
- tip
env:
- GOARCH=amd64
before_install:
- sudo apt-get update -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
- sudo apt-get install bzr mercurial git -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
install:
- export PATH="$HOME/gopath/bin:$PATH"
- make get
... | Fix Travis CI build for forks | Fix Travis CI build for forks
Move package to expected place.
| YAML | bsd-3-clause | flaviamissi/gandalf,marcelometal/gandalf,tsuru/gandalf,marcelometal/gandalf,gleez/gandalf,tsuru/gandalf,scorphus/gandalf,gleez/gandalf,scorphus/gandalf,marcelometal/gandalf,flaviamissi/gandalf,gleez/gandalf |
46ce44bbf53a21452e07736b2b90c08ddc751e98 | .travis.yml | .travis.yml | language: cpp
compiler: clang
script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build .
- ctest
| os:
- linux
- osx
language: cpp
compiler: clang
script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build .
- ctest
| Enable Travis testing on OS X. | Enable Travis testing on OS X. | YAML | mit | gnustep/libobjc2,ngrewe/libobjc2,gnustep/libobjc2,ngrewe/libobjc2 |
d3693acca92875e59d6152dff478b2d8d8816b61 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
env:
- LUA=lua5.1
- LUA=luajit # latest stable version (2.0.4)
- LUA=luajit2.0 # current head of 2.0 branch
- LUA=luajit2.1 # current head of 2.1 branch
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-... | language: cpp
sudo: false
compiler:
- gcc
- clang
env:
- LUA=lua5.1
- LUA=luajit # latest stable version (2.0.4)
- LUA=luajit2.0 # current head of 2.0 branch
- LUA=luajit2.1 # current head of 2.1 branch
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- s... | Migrate from legacy to container-based infrastructure | Migrate from legacy to container-based infrastructure
See https://docs.travis-ci.com/user/migrating-from-legacy/?utm_source=legacy-notice&utm_medium=banner&utm_campaign=legacy-upgrade
| YAML | mit | skozlovf/luax,skozlovf/luax |
cc7b8e6172c844a991d75cfb21032ad6dd4f8d64 | .travis.yml | .travis.yml | # Set language to `none` because if set to `cpp` CXX and C environment variables
# are overriden with those of older versions
language: none
env:
global:
- CXX=g++-5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- lcov
notificati... | # Set language to `none` because if set to `cpp` CXX and C environment variables
# are overriden with those of older versions
language: none
env:
global:
- CXX=g++-5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- lcov
notificati... | Build library examples in Travis CI :metal: | Build library examples in Travis CI :metal:
| YAML | mit | platisd/smartcar_shield,platisd/smartcar_shield |
33300e4c9bc4b914d2f54d0080b127f95fe3c067 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
- pypy
env:
global:
- DATEUTIL=python-dateutil==2.1
- LOCALFLAVOR=
matrix:
- DJANGO=Django==1.3.7
- DJANGO=Django==1.4.8
- DJANGO=Django==1.5.4 DATEUTIL=python-dateutil==2.2
- DJANGO=Django==1.5.4 LOCALFLAVOR=django-localflavor
- DJANGO=... | language: python
python:
- 2.6
- 2.7
- 3.3
- pypy
env:
global:
- DATEUTIL=python-dateutil==2.1
- LOCALFLAVOR=
matrix:
- DJANGO=Django==1.4.8
- DJANGO=Django==1.5.4 DATEUTIL=python-dateutil==2.2
- DJANGO=Django==1.5.4 LOCALFLAVOR=django-localflavor
- DJANGO=https://github.com/django/d... | Stop supporting django 1.3, too old to reliably run tests | Stop supporting django 1.3, too old to reliably run tests
| YAML | bsd-3-clause | jmagnusson/wtforms,skytreader/wtforms,pawl/wtforms,cklein/wtforms,subyraman/wtforms,pawl/wtforms,crast/wtforms,hsum/wtforms,Xender/wtforms,wtforms/wtforms,Aaron1992/wtforms,Aaron1992/wtforms |
5f739cfef24308fbf73884dbf5a37e41e3685b00 | .travis.yml | .travis.yml | before_install:
- gem update --system
- gem install bundler
rvm:
- 2.1.1
- 2.2
- 2.3.0
branches:
only:
- master
# The integration tests need to see installed gems.
script: rspec --color --format progress
| before_install:
- gem update --system
- gem install bundler
rvm:
- 2.2.5
- 2.3.1
branches:
only:
- master
# The integration tests need to see installed gems.
script: rspec --color --format progress
| Test on Ruby 2.2.5 / 2.3.1 | Test on Ruby 2.2.5 / 2.3.1
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/appbundler,chef/appbundler |
9cbe56a35c505a8ae5b5cbb84e495002770c2e9b | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.0"
- "4.1"
- "4.2"
- "4.3"
- "4.4"
- "4.5"
- "4.6.1"
- "6.0"
- "6.1"
- "6.2"
- "6.3"
- "6.4"
- "6.5"
- "6.6"
- "6.7"
- "6.8"
- "6.9"
- "7.0"
- "7.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
... | language: node_js
node_js:
- "4.0"
- "4.1"
- "4.2"
- "4.3"
- "4.4"
- "4.5"
- "4.6.1"
- "4"
- "6.0"
- "6.1"
- "6.2"
- "6.3"
- "6.4"
- "6.5"
- "6.6"
- "6.7"
- "6.8"
- "6.9"
- "6"
- "7.0"
- "7.1"
- "7"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-t... | Build on the latest major versions of node as they get released | Build on the latest major versions of node as they get released
| YAML | mit | bojand/lounge,bojand/lounge |
e28532f0fe25f46c03e18fd9e6a2dd05c388647e | .travis.yml | .travis.yml | language: ruby
script: rake ci
rvm:
- 1.9.3
- 2.0
- 2.1
- ruby-head
- mruby-head
- rbx-2.1
- rbx-2.2
- rbx-2.3
- rbx-2.4
matrix:
include:
- rvm: jruby
gemfile: Gemfile-jruby
- rvm: jruby
gemfile: Gemfile-jruby
env: JRUBY_OPTS='--2.0'
- rvm: jruby-head
gemfile: Gem... | language: ruby
script: rake ci
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- ruby-head
- mruby-head
- rbx-2.1
- rbx-2.2
- rbx-2.3
- rbx-2.4
matrix:
include:
- rvm: jruby
gemfile: Gemfile-jruby
- rvm: jruby
gemfile: Gemfile-jruby
env: JRUBY_OPTS='--2.0'
- rvm: jruby-head
gemf... | Enable rvm 2.2 for the latest and greatest | Enable rvm 2.2 for the latest and greatest
| YAML | mit | usmu/usmu,usmu/usmu |
8cc1cfb186fd08d8558a248440f730fcc354139e | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.2.3"
- "2.1.7"
- "2.0"
- jruby
| language: ruby
rvm:
- "2.2.3"
- "2.1.7"
- "2.0"
| Remove jruby from Travis config | Remove jruby from Travis config
| YAML | mit | cdinger/activerecord-peoplesoft_models,cdinger/activerecord-peoplesoft_models |
1c3c09e2cee2bc434193320322d82581396e56fb | .travis.yml | .travis.yml | addons:
apt:
packages:
- python-numpy
- python-yaml
install:
- pip install flake8 # Not yet available in Ubuntu precise (https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise)
- pip install -r requirements.txt
language: python
python: "2.7"
script: bash run-travis-tests.sh
sud... | addons:
apt:
packages:
- python-yaml
install:
- pip install flake8 # Not yet available in Ubuntu precise (https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise)
- pip install -r requirements.txt
- pip install "numpy >= 1.10" # This is not a requirement but we want Travis to tes... | Install numpy >= 1.10 in Travis | Install numpy >= 1.10 in Travis
| YAML | agpl-3.0 | benjello/openfisca-france,sgmap/openfisca-france,benjello/openfisca-france,SophieIPP/openfisca-france,antoinearnoud/openfisca-france,sgmap/openfisca-france,SophieIPP/openfisca-france,antoinearnoud/openfisca-france |
87fda8116534999e69238b269eb95392094777c0 | .travis.yml | .travis.yml | sudo: false
env:
- NODE_VERSION=0.10
- NODE_VERSION=0.12
- NODE_VERSION=iojs
before_install:
- npm config set spin false
os:
- osx
- linux
script: npm run-script test-all:cover
install:
- (test $TRAVIS_OS_NAME = "osx" && brew update && brew install nvm && source $(brew --prefix nvm)/nvm.sh && brew insta... | sudo: false
env:
- NODE_VERSION=0.10
- NODE_VERSION=0.12
- NODE_VERSION=iojs
before_install:
- npm config set spin false
os:
- osx
- linux
script: npm run-script test-all:cover
install:
- test $TRAVIS_OS_NAME = "osx" && brew update && brew install nvm && source $(brew --prefix nvm)/nvm.sh && brew instal... | Revert "use ( .. ) in shell script" | Revert "use ( .. ) in shell script"
This reverts commit d09971701043d66f4cb7fafc87f8cc0583005632.
| YAML | mit | josemarluedke/ember-cli,Turbo87/ember-cli,tobymarsden/ember-cli,pzuraq/ember-cli,joaohornburg/ember-cli,raycohen/ember-cli,williamsbdev/ember-cli,rtablada/ember-cli,trabus/ember-cli,kamalaknn/ember-cli,alefteris/ember-cli,mohlek/ember-cli,yaymukund/ember-cli,kamalaknn/ember-cli,kategengler/ember-cli,szines/ember-cli,jg... |
c2747312789de3008c36ab656eb9b22c6db7d697 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1
- 2.2
env:
matrix:
- SPROCKETS_VERSION="~> 3.3.0"
- SPROCKETS_VERSION="~> 3.4.0"
- SPROCKETS_VERSION="~> 3.5.0"
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1
- 2.2.4
- 2.3.0
env:
matrix:
- SPROCKETS_VERSION="~> 3.3.0"
- SPROCKETS_VERSION="~> 3.4.0"
- SPROCKETS_VERSION="~> 3.5.0"
| Test against Ruby 2.3.0 on Travis CI | Test against Ruby 2.3.0 on Travis CI
| YAML | mit | tricknotes/ember-handlebars-template,tricknotes/ember-handlebars-template |
655f3c56718eca41f744ef5ba7b4d0614eb31c85 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
branches:
only:
- master
before_install:
- npm install
install: gem install jekyll html-proofer
script: npm run travis
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
| language: node_js
node_js:
- '5'
- '4'
branches:
only:
- master
install:
- gem install jekyll html-proofer
- npm install
script: npm run travis
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
| Change the language on Travis CI | Change the language on Travis CI
| YAML | mit | jomjose/jomjose.github.io,dojocon-japan/dojocon2017.coderdojo.jp,leo424y/leo424y.github.io,ixkaito/frasco,dojocon-japan/dojocon2017teaser,dojocon-japan/dojocon2017teaser,dojocon-japan/dojocon2017teaser,ixkaito/frasco,dojocon-japan/dojocon2017.coderdojo.jp,leo424y/leo424y.github.io,jomjose/jomjose.github.io,ixkaito/fras... |
a63b9f943154609db78291bb33889bcc44324379 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 4 on Travis CI. | Test with latest Node.js 4 on Travis CI.
| YAML | mit | bigeasy/restrictor |
108ffc6608123749f494c5cd8bd00f2b4ce6c4a8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- sudo apt-get install gfortran
install:
... | language: python
python:
- "2.7"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- export LD_LIBRARY_PATH=/usr/local/lib:$L... | Add LD_LIBRARY_PATH to fix Travis CI failures. | BLD: Add LD_LIBRARY_PATH to fix Travis CI failures.
| YAML | apache-2.0 | keir-rex/zipline,humdings/zipline,gwulfs/zipline,DVegaCapital/zipline,dhruvparamhans/zipline,joequant/zipline,zhoulingjun/zipline,dhruvparamhans/zipline,ronalcc/zipline,dmitriz/zipline,chrjxj/zipline,joequant/zipline,ChinaQuants/zipline,wilsonkichoi/zipline,DVegaCapital/zipline,otmaneJai/Zipline,jimgoo/zipline-fork,mor... |
ca722aa6df7fe0a56b237115267454d2642cf0b6 | .travis.yml | .travis.yml | language: objective-c
before_install:
# install xctool
- brew update
- brew remove xctool
- brew install xctool
# FIX: https://github.com/CocoaPods/CocoaPods/issues/1121
- gem install cocoapods
- gem update cocoapods
# print version summary
- pod --version
- xctool -version
... | language: objective-c
before_install:
# install xctool
- brew update
- brew remove xctool
- brew install xctool
# FIX: https://github.com/CocoaPods/CocoaPods/issues/1121
- gem install cocoapods
- gem update cocoapods
# print version summary
- pod --version
- xctool -version
... | Fix attempt for Travis xctool bundle installation failure. | Fix attempt for Travis xctool bundle installation failure.
| YAML | mit | michalkonturek/MKFoundationKit,Thesaurus/MKFoundationKit,Thesaurus/MKFoundationKit,michalkonturek/MKFoundationKit,Thesaurus/MKFoundationKit,michalkonturek/MKFoundationKit,michalkonturek/MKFoundationKit,Thesaurus/MKFoundationKit |
bf3c8cbf4d62bd5c08fda9460f9ed14be333905b | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- stable
- beta
- nightly
go:
- tip
install:
- nvm install stable
- nvm use stable
- npm install ffi glob
- gem install ffi
script:
- cargo build
- cd c && gcc main.c -L ../target/debug -lstringtools -o main && LD_LIBRARY_PATH=../target/debug ./main
- cd ../go && L... | sudo: false
language: rust
rust:
- stable
- beta
- nightly
ghc:
- 7.8
go:
- tip
install:
- nvm install stable
- nvm use stable
- npm install ffi glob
- gem install ffi
script:
- cargo build
- cd c && gcc main.c -L ../target/debug -lstringtools -o main && LD_LIBRARY_PATH=../target/debug ./main
- ... | Check if GHC would work. | Check if GHC would work. | YAML | mit | zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools |
3d93f282fb5ad683d9b125e0b7d05ab85100ec7a | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "4"
- "6"
- "8"
- "node"
| language: node_js
sudo: false
node_js:
- "4"
- "6"
- "8"
- "9"
| Add Node 9, restore older stable versions | Add Node 9, restore older stable versions
| YAML | apache-2.0 | tyduptyler13/ejs,mde/ejs |
6be178b56138e4f8a3b3b7e391011cebe6b8456a | .travis.yml | .travis.yml | sudo: false
language: scala
scala:
- 2.11.1
# before_install:
# - "sudo apt-get update"
# - "sudo apt-get install openjdk-6-jdk openjdk-7-jdk"
script: "mvn test verify"
jdk:
# - openjdk6
# - openjdk7
- oraclejdk7
- oraclejdk8
| sudo: false
language: scala
scala:
- 2.11.6
# before_install:
# - "sudo apt-get update"
# - "sudo apt-get install openjdk-6-jdk openjdk-7-jdk"
script: "mvn test verify"
jdk:
# - openjdk6
# - openjdk7
- oraclejdk7
- oraclejdk8
| Make sure to use same Scala version as csv-validator-parent/pom.xml | Make sure to use same Scala version as csv-validator-parent/pom.xml
| YAML | mpl-2.0 | valydia/csv-validator,adamretter/csv-validator,digital-preservation/csv-validator,rhubner/csv-validator |
3d91023f9ca82c0964ab27d34c0f6ec4a379744d | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
services:
- redis-server
before_script:
- mysql -e "CREATE DATABASE goat"
- mysql goat < res/mysql/announce_log.sql
- mysql goat < res/mysql/api_keys.sql
- mysql goat < res/mysql/files.sql
- mysql goat < res/mysql/files_users.sql
- mysql goat < res/mysql/scrape_log.sql
-... | language: go
go:
- 1.1
- 1.2
services:
- redis-server
before_script:
- mysql -e "CREATE DATABASE goat"
- mysql goat < res/mysql/announce_log.sql
- mysql goat < res/mysql/api_keys.sql
- mysql goat < res/mysql/files.sql
- mysql goat < res/mysql/files_users.sql
- mysql goat < res/mysql/scrape_log.sql
-... | Disable ql build and test | Disable ql build and test
| YAML | mit | mdlayher/goat |
549f8744394d4f867911c4ae5bcbcc8c153a577e | .travis.yml | .travis.yml | sudo: required
arch:
packages:
- llvm
- cmake
- boost
script:
- cmake .
- make
- make test
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"
| language: cpp
sudo: required
dist: trusty
matrix:
include:
- os:linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-4.9']
before_script:
- pip install --user git+git://github.com/eddyxu... | Add coveralls--but it's prly broken | Add coveralls--but it's prly broken
| YAML | apache-2.0 | chigraph/chigraph,GuapoTaco/chigraph,chigraph/chigraph,chigraph/chigraph,russelltg/chigraph,GuapoTaco/chigraph,russelltg/chigraph |
c6149d83cbc4078147478b51905844bdb56b4376 | .travis.yml | .travis.yml | dist: xenial
language: node_js
node_js: '8'
env:
global:
- ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
script:
- yarn test
cache:
yarn: true
directories:
- node_modules
- '$HOME/.electron'
- '$HOME/... | dist: xenial
language: node_js
node_js: '8.9'
env:
global:
- ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
script:
- yarn dist
cache:
yarn: true
directories:
- node_modules
- '$HOME/.electron'
- '$HOM... | Enable TravisCI for Linux builds and Node 8.9.0 | Enable TravisCI for Linux builds and Node 8.9.0
| YAML | mit | paul-roman/vitrine,paul-roman/vitrine,paul-roman/vitrine,paul-roman/vitrine,paul-roman/vitrine |
0a6473efcb5714c632140625fec3e35a2e025cac | .travis.yml | .travis.yml | sudo: required
language: java
jdk:
- oraclejdk8
before_script:
- sudo apt-get -qq update
- sudo apt-get install ant-optional -y
- 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... | sudo: required
language: java
jdk:
- oraclejdk8
before_script:
- sudo apt-get -qq update
- sudo apt-get install ant-optional -y
- 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... | Update IDEA versions to build against. | Update IDEA versions to build against.
| YAML | apache-2.0 | eliasku/intellij-haxe,EricBishton/intellij-haxe,winmain/intellij-haxe,TiVo/intellij-haxe,eliasku/intellij-haxe,TiVo/intellij-haxe,winmain/intellij-haxe,winmain/intellij-haxe,HaxeFoundation/intellij-haxe,EricBishton/intellij-haxe,eliasku/intellij-haxe,EricBishton/intellij-haxe,HaxeFoundation/intellij-haxe,TiVo/intellij-... |
363a7051723365193eaef16853eff8a52e5dd47a | .travis.yml | .travis.yml | language: cpp
sudo: required
dist: trusty
compiler:
- gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-4.9', 'valgrind']
env: CXX=g++-4.9
os:
- linux
before_install:
- echo $LANG
- echo $LC_ALL
- sudo apt-get -qq update
- sudo apt-get install -y libsqlite3-dev libboost-all-dev ... | language: cpp
sudo: required
dist: trusty
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-4.9']
env: COMPILER=g++-4.9
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubu... | Add second compiler to build matrix | Add second compiler to build matrix
| YAML | mit | chyla/slas,chyla/slas,chyla/pat-lms,chyla/slas,chyla/pat-lms,chyla/slas,chyla/pat-lms,chyla/pat-lms,chyla/pat-lms,chyla/slas,chyla/pat-lms,chyla/slas,chyla/pat-lms,chyla/slas |
b50a77e86b1098735b593f5dee02efd7f51c11ee | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
script: bundle exec rake
before_install:
- gem update --system
services:
- redis-server
| language: ruby
rvm:
- 2.1
services:
- redis-server
sudo: false
cache: bundler
| Update Travis to use containers | Update Travis to use containers
| YAML | mit | esigler/lita-jira |
8b934f7ada86bdbbc8df6753d649359860c498d8 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "8.0"
- "10.0"
- "node"
addons:
hosts:
- nic.localhost
- tim.localhost
- nicola.localhost
before_install:
- npm install -g npm@latest
install:
- npm ci
script:
# Test the code
- npm run standard
- npm run nyc
# Test global install of the packa... | sudo: false
language: node_js
node_js:
- "8.0"
- "10.0"
- "node"
addons:
hosts:
- nic.localhost
- tim.localhost
- nicola.localhost
before_install:
- echo "No GitHub dependencies allowed" &&
! grep '"github:' package-lock.json
- npm install -g npm@latest
install:
- npm ci
script:
# Te... | Check for GitHub dependencies on Travis. | Check for GitHub dependencies on Travis.
| YAML | mit | linkeddata/ldnode,linkeddata/ldnode |
9d3523c513de9d4a9f6aa5a1f1c0dd49c23983c3 | .travis.yml | .travis.yml | os:
- linux
language: bash
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
before_script:
- chmod +x ./hack/make.sh
script:
- ./hack/make.sh test
| os:
- linux
language: bash
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
before_script:
- chmod +x ./hack/make.sh
script:
- ./hack/make.sh test
notifications:
email:
on_success: never
| Remove email notifications on success | Remove email notifications on success
| YAML | mit | jasperes/personal-distro-configurator,personal-distro-configurator/personal-distro-configurator |
5d3472e9933f88f9e6db9bc7b9490913b5580f1a | .travis.yml | .travis.yml | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- pip install -U pip
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install python-setuptools
- sudo apt-ge... | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- pip install -U pip
- pip install -U setuptools
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install -qq... | Update setuptools via pip in Travis-CI | Update setuptools via pip in Travis-CI
| YAML | agpl-3.0 | Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide |
ffc1b6cc5876af89d1c77d96011b9701176523fc | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.3
env:
# NOTE: Ancient versions of Elasticsearch have different download URLs
- ES_VERSION=2.3.5 ES_DOWNLOAD_URL=https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-${ES_VERSION}.tar.gz
- ES_VERSION=5.6.4 ES_DOW... | language: ruby
rvm:
- 2.3.3
env:
# NOTE: Ancient versions of Elasticsearch have different download URLs
- ES_VERSION=2.3.5 ES_DOWNLOAD_URL=https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-${ES_VERSION}.tar.gz
- ES_VERSION=5.6.4 ES_DOW... | Remove allowed failures from ES 5.X Travis CI builds | Remove allowed failures from ES 5.X Travis CI builds
| YAML | mit | github/elastomer-client,github/elastomer-client |
8602c647378178849f3ff3ea81acf749f3e3b109 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.4
- 0.6
- 0.8
| language: node_js
node_js:
- "0.4"
- "0.6"
- "0.8"
- "0.10"
- "0.11"
| Add Travis-ci integration for Node.js v0.10 and v0.11 | Add Travis-ci integration for Node.js v0.10 and v0.11
| YAML | mit | Submersible/self |
26c6a4395afbb1cd8d515021256e526cae18f394 | .travis.yml | .travis.yml | language: rust
script: make travis
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
addons:
apt:
packages:
- kcov
deploy:
provider: releases
api_key: '$GITHUB_API_KEY'
file: 'target/release/request_log_analyzer'
skip_cleanup: true
on:
tags: true
rust: s... | language: rust
script: make travis
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
deploy:
provider: releases
api_key: '$GITHUB_API_KEY'
file: 'target/release/request_log_analyzer'
skip_cleanup: true
on:
tags: true
rust: stable
all_branches: true
| Revert "kcov is required for code coverage" | Revert "kcov is required for code coverage"
This reverts commit 9162d7b4fa7627c714a4904db31e79cc0462595c.
| YAML | mit | pixelistik/request_log_analyzer,pixelistik/request_log_analyzer,pixelistik/request_log_analyzer |
825452f12d279b51eb12013069dbe153e4782227 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
sudo: required
services:
- docker
env:
global:
- DOCKER_VERSION=1.12.0-0~trusty
- DOCKER_COMPOSE_VERSION=1.6.2
before_install:
- apt-cache madison docker-engine
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
- sudo... | language: python
python:
- "2.7"
sudo: required
services:
- docker
env:
global:
- DOCKER_VERSION=1.12.0-0~trusty
- DOCKER_COMPOSE_VERSION=1.6.2
before_install:
- apt-cache madison docker-engine
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
- sudo... | Add missing / in sed statement | Add missing / in sed statement
| YAML | mit | nkhumphreys/django-documentregister,nkhumphreys/django-documentregister,nkhumphreys/django-documentregister |
31c28aaac2112bf464259a92f66314104a64edb1 | .travis.yml | .travis.yml | language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: aoVXZyLOBmB4Q2lLK... | language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: dOR1qtgrZag95Ah3w... | Update CI build system credentials | Update CI build system credentials
| YAML | mit | xebialabs-community/xlr-xldeploy-plugin,xebialabs-community/xlr-xldeploy-plugin,xebialabs-community/xlr-xldeploy-plugin,xebialabs-community/xlr-xldeploy-plugin |
64d78b8eb5d5afffa7b47e172f5e24cad86bc393 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
gemfile:
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
| language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
- 2.5.1
gemfile:
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
| Test against Ruby 2.5.1 on CI. | Test against Ruby 2.5.1 on CI.
| YAML | mit | thoughtbot/shoulda,thoughtbot/shoulda |
514bc130ff1c232cb5ab75942a5f57653739b36f | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.2.3"
- "2.1.7"
- "2.0"
| language: ruby
rvm:
- "2.3.1"
- "2.2.5"
| Update rubies to test under Travis | Update rubies to test under Travis
Remove old rubies (incompatible with Rails 5) and add 2.3.
| YAML | mit | cdinger/activerecord-peoplesoft_models,cdinger/activerecord-peoplesoft_models |
89367e7b8c97ffef808456cf9322904a66668ef3 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-18mode
- rvm: rbx-19mode
- rvm: ruby-head
| Allow Rubinius to fail for now | Allow Rubinius to fail for now
| YAML | bsd-3-clause | koraktor/rbzip2,koraktor/rbzip2 |
0a42999d4ed744b506487bb5e6f39ea6f406ef8d | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "4"
- "5"
- "6"
- "7"
| language: node_js
node_js:
- "4"
- "6"
- "8"
- "10"
| Change test matrix to current stable Node.js versions | Change test matrix to current stable Node.js versions
| YAML | mit | bripkens/proxrox,bripkens/proxrox |
c23d2d4d5e969007e5b7c1e962ae810fd0b97ff8 | .travis.yml | .travis.yml | language: java
branches:
only:
- master
jdk:
- oraclejdk8
before_install: "git clone -b travis `git config --get remote.origin.url` target/travis"
script: "mvn deploy --settings target/travis/settings.xml -Dsettings.security=target/travis/settings-security.xml"
after_success:
- mvn cobertura:cobertura co... | language: java
branches:
only:
- master
jdk:
- oraclejdk8
before_install: "git clone -b travis `git config --get remote.origin.url` target/travis"
script: "mvn deploy --settings target/travis/settings.xml -Dsettings.security=target/travis/settings-security.xml -Dmaven.javadoc.skip=true"
after_success:
- ... | Update Travis settings to avoid jdoc issues. | Update Travis settings to avoid jdoc issues.
| YAML | apache-2.0 | meincs/cron-utils,jmrozanec/cron-utils |
22fbf91da4620b08e9ec6836586613c56a753bf7 | .travis.yml | .travis.yml | language: d
d:
- dmd-2.067.0
# - ldc-0.15.1
install:
- sudo apt-get update -qq
- sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers
script:
- dub run --build=release --compiler=${DC} :algebra -- 32
- dub run --build=release --compiler=${DC} :bp -- 32
- dub run --build=release --compiler=${DC... | language: d
d:
- dmd-2.067.0
# - ldc-0.15.1
install:
- sudo apt-get update -qq
- sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers
script:
- dub run --build=profile --compiler=${DC} :algebra -- 32
- dub run --build=profile --compiler=${DC} :bp -- 32
- dub run --build=profile --compiler=${DC... | Build with code coverage enabled and postprocess with coverall. | Build with code coverage enabled and postprocess with coverall.
| YAML | mit | dmakarov/clop |
292f0debfc5cba9b53f2ac34ca36bcc3478bf412 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
before_install: gem update --system && gem install bundler
branches:
only:
- master
bundler_args: --without development system_tests
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.9
- 2.3.1
- 2.4.0
matrix:
allow_failures:
- rvm: 1.8.7
| ---
language: ruby
sudo: false
before_install: gem update --system && gem install bundler
branches:
only:
- master
bundler_args: --without development system_tests
rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.3.1
- 2.4.0
| Stop testing against Ruby 1.8.7 | Stop testing against Ruby 1.8.7
| YAML | mit | rodjek/puppet-lint |
0e7ed257edc4e58a0a90e9194696adfe15ff5520 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
secure: m/9uIj9YUvDtVj4qelwVCYzXbaJ3M+zqeazDXDrvClIB6CSt1PaPxcKSdcUPm74+9CBKBX6XRxjz8M1Dgtu1nHPfP8BzcyAgXcpGYpBkIW1cjcwi6p9LRQS7Dg3VWZlAgSvEqEDSOLjCxtmtQ2Spea4CrLfq2nsO2O86hbSsi6M=
before_install:
- sud... | sudo: false
language: rust
cache: cargo
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
secure: m/9uIj9YUvDtVj4qelwVCYzXbaJ3M+zqeazDXDrvClIB6CSt1PaPxcKSdcUPm74+9CBKBX6XRxjz8M1Dgtu1nHPfP8BzcyAgXcpGYpBkIW1cjcwi6p9LRQS7Dg3VWZlAgSvEqEDSOLjCxtmtQ2Spea4CrLfq2nsO2O86hbSsi... | Use container-based infrastructure and caching on Travis | Use container-based infrastructure and caching on Travis
| YAML | apache-2.0 | robo9k/rust-magic-sys |
8694639c03dfa0b92da837ac8acd59c0091075f8 | .travis.yml | .travis.yml | language: java
# Enable container-based infrastructure
# see http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
jdk:
- openjdk7
cache:
directories:
- $HOME/.m2/repository
script:
- mvn -Prun-its clean install || tail -n 100 srcdeps-maven-plugin/target/it/simple-it/build.log && exit 1 | language: java
# Enable container-based infrastructure
# see http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2/repository
script:
- mvn -Prun-its clean install || tail -n 100 srcdeps-maven-plugin/target/it/simple-it/build.log && exit... | Make Travis use Java 8 for now | Make Travis use Java 8 for now | YAML | apache-2.0 | l2x6/srcdeps-maven-plugin,srcdeps/srcdeps-maven,jpkrohling/srcdeps-maven-plugin,l2x6/srcdeps,l2x6/srcdeps,srcdeps/srcdeps-core |
62d2ea9b8ea829dbae37e4851dae97507a35cf6f | .travis.yml | .travis.yml | language: ruby
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-18mode
- rbx-19mode
- jruby-18mode
- jruby-19mode
script: "bundle exec rake test"
| language: ruby
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-18mode
- rbx-19mode
- jruby-18mode
- jruby-19mode
script: "bundle exec rake test"
matrix:
# https://github.com/jruby/jruby/issues/573
allow_failures:
- rvm: jruby-18mode
- rvm: jruby-19mode
| Allow failures on jRuby for now | Allow failures on jRuby for now
| YAML | mit | transloadit/rails-sdk |
25f40e62fdcf06ece6585d23efd451d038fe03a8 | .travis.yml | .travis.yml | language: go
go:
- 1.6.2
sudo: false
install:
- go get -d -v ./...
- go get github.com/mattn/goveralls
script:
- GOOS=darwin go build
- GOOS=windows go build
- GOOS=linux go build
- $HOME/gopath/bin/goveralls -service=travis-ci | language: go
go:
- 1.8
sudo: false
install:
- go get -d -v ./...
- go get github.com/mattn/goveralls
script:
- GOOS=darwin go build
- GOOS=windows go build
- GOOS=linux go build
- $HOME/gopath/bin/goveralls -service=travis-ci | Bump Go version to 1.8.0. | Bump Go version to 1.8.0.
Brings support for sub-tests.
| YAML | mit | containous/flaeg |
59acde50db280bba3ad3837db9964c11b7457395 | .travis.yml | .travis.yml | language: objective-c
os: osx
osx_image: xcode7
env:
matrix:
- NAME='iPhone 6' OS=8.1
- NAME='iPhone 6' OS=8.2
- NAME='iPhone 6' OS=8.3
- NAME='iPhone 6' OS=8.4
- NAME='iPhone 4S' OS=9.0
- NAME='iPhone 5S' OS=9.0
- NAME='iPhone 6' OS=9.0
- NAME='iPhone 6 Plus' OS=9.0
- NAME='iPad... | language: objective-c
os: osx
osx_image: xcode7
env:
matrix:
- NAME='iPhone 6' OS=8.1
- NAME='iPhone 6' OS=8.2
- NAME='iPhone 6' OS=8.3
- NAME='iPhone 6' OS=8.4
- NAME='iPhone 4S' OS=9.0
- NAME='iPhone 5S' OS=9.0
- NAME='iPhone 6' OS=9.0
- NAME='iPhone 6 Plus' OS=9.0
- NAME='iPad... | Use the workspace and not the project | Use the workspace and not the project
| YAML | mit | CooperRS/RMActionController,CooperRS/RMActionController,Rash-ML/RMActionController,Rash-ML/RMActionController |
0b86b48bf9659bd9cdf8c3eabfaf2e7788973bd6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- "2.0"
- "2.1"
- jruby-19mode
- rbx-2
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_VERSION="~> 4.2.0.beta1"
- ACTIVE_RECORD_VERSION="~> 4.1.0"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIVE_RECORD_VERSION="~> 3.1.0"
- ACTIVE_... | language: ruby
rvm:
- 1.9.3
- "2.0"
- "2.1"
- jruby-19mode
- rbx-2
install:
- bundle install --retry=3
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_VERSION="~> 4.2.0.beta1"
- ACTIVE_RECORD_VERSION="~> 4.1.0"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIV... | Fix rbx builds on Travis | Fix rbx builds on Travis
See travis-ci/travis-ci#2821.
| YAML | mit | Casecommons/with_model |
75b14f6e6ee090fb96adb6e80ebd63d3b56a3490 | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3.3
- 1.4.2
- 1.5
- tip
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq iptables ipset
script:
- go test -v ./...
| language: go
go:
- 1.4.2
- 1.5
- tip
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq iptables ipset
script:
- go test -v ./...
| Remove legacy versions from CI. | Remove legacy versions from CI.
| YAML | mit | gmccue/go-ipset |
3e4c9a101cfdcf80198c7ed37f1ba982ebdd5739 | .travis.yml | .travis.yml | language: ruby
sudo: false
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundle --version
# Install pahantomjs
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD... | language: ruby
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundle --version
# Install pahantomjs
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phan... | Drop unused sudo: false Travis directive | CI: Drop unused sudo: false Travis directive | YAML | mit | sensortower/sidekiq-throttled,sensortower/sidekiq-throttled,sensortower/sidekiq-throttled |
b9309bc7b1aef651631a58b3bdaaa0e44ef154a9 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- if [[ "$(php -v | grep 'PHP 7')" ]]; then phpenv config-rm xdebug.ini; fi
- rm composer.lock
- composer update --no-scripts
- cp .env.testing .env
- php artisan clear-compiled
- php artis... | language: php
php:
- 7.0
- 7.1
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- if [[ "$(php -v | grep 'PHP 7')" ]]; then phpenv config-rm xdebug.ini; fi
- rm composer.lock
- composer update --no-scripts
- cp .env.testing .env
- php artisan clear-compiled
- php artis... | Stop Travis from building weird branches. | Stop Travis from building weird branches.
| YAML | agpl-3.0 | firefly-iii/firefly-iii,firefly-iii/firefly-iii,JC5/firefly-iii,JC5/firefly-iii,firefly-iii/firefly-iii,firefly-iii/firefly-iii |
46b754b42ec658c2c56af82b260e66c27bd91071 | .travis.yml | .travis.yml | language: php
php:
- "5.5"
- "5.6"
- "7.0"
- "hhvm"
install:
- composer install
- composer dumpautoload
before_script:
- curl http://cs.sensiolabs.org/get/php-cs-fixer.phar -o php-cs-fixer.phar
script:
- output=$(php -n php-cs-fixer.phar fix -v --dry-run --level=psr2 src); if [[ $output ]]; then whil... | language: php
php:
- "5.6"
- "7.0"
install:
- composer install
- composer dumpautoload
before_script:
- curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v1.12.4/php-cs-fixer.phar -o php-cs-fixer
script:
- output=$(php -n php-cs-fixer fix -v --dry-run --level=psr2 src); if [[ $output... | Test only on php5.6+ (as per Laravel 5.3 requirements). | Test only on php5.6+ (as per Laravel 5.3 requirements).
| YAML | mit | taskforcedev/crud-api,taskforcedev/crud-api |
952bbe1f6ab426eefc78f5ba01c9c56ed5f1c69f | .travis.yml | .travis.yml | sudo: false
language: go
go:
- tip
before_install:
- go get -v github.com/mitchellh/gox
- go get -v github.com/tcnksm/ghr
after_success:
# Cross compile go project
- gox -os="linux darwin windows" -arch="386 amd64" -output "pkg/{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags="-X main.Version=`git describe --tags --match... | sudo: false
language: go
go:
- tip
before_install:
- go get -v github.com/mitchellh/gox
- go get -v github.com/tcnksm/ghr
after_success:
# Cross compile go project
- gox -os="linux darwin windows" -arch="386 amd64" -output "pkg/{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags="-X main.Version=`git describe --tags --match... | Use --version instead of version | Use --version instead of version
| YAML | mit | uetchy/nv |
c14ca9a1a994fe5786907943bbb86c1210c257de | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm test:integration
| language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm run test:integration
| Fix NPM script execution of integration testing via Travis | Fix NPM script execution of integration testing via Travis | YAML | mit | saguijs/sagui,saguijs/sagui |
3b0bb30aa2a69c09bb44308d20591bd20bca7f26 | .travis.yml | .travis.yml | language: java
script: mvn package
jdk:
- oraclejdk8
- oraclejdk9
- openjdk8
| language: java
script: mvn clean package
jdk:
- oraclejdk8
- oraclejdk9
- openjdk8
| Clean working directory before building | Travis: Clean working directory before building
| YAML | apache-2.0 | SchunterKino/kinoapi |
acb7c92d279ee69ac2dcc51f264a0f5c77128115 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
- jruby-9.1.5.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
- jruby-9.1.5.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
| Test with latest Ruby version | Test with latest Ruby version
| YAML | mit | pitluga/keepassx |
43c50ef43d811bc9ff67a77fc1a2452ec6a97089 | .travis.yml | .travis.yml | language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- go get github.com/stretchr/testify/assert
- go get github.com/edsrzf/mmap-go
script:
- $HOME/gopath/bin/goveral... | language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- go get github.com/stretchr/testify/assert
- go get github.com/edsrzf/mmap-go
script:
- $HOME/gopath/bin/goveral... | Remove service arg for goveralls | Remove service arg for goveralls | YAML | apache-2.0 | blacklabeldata/m3 |
771081dc70b514da4884936aceb1a4de0f3a1768 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install: "python setup.py install"
script:
- "nosetests --with-coverage --cover-package=phreeqpython"
| language: python
python:
- "2.7"
- "3.5"
install: "python setup.py install"
script:
- "nosetests --with-coverage --cover-package=phreeqpython"
| Add python 3 to unit testing | Add python 3 to unit testing | YAML | apache-2.0 | VitensTC/phreeqpython |
300fb559f77b6631714178179685cdb2a77926fa | .travis.yml | .travis.yml | ---
language: java
install: true
script: $TARGET
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
env:
matrix:
- TARGET='mvn test'
- TARGET='./gradlew test -s'
notifications:
email:
- michael@mosmann.de
- m.joehren@gmail.com
| ---
language: java
install: true
script: $TARGET
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
env:
matrix:
- TARGET='mvn test'
- TARGET='./gradlew test -s'
notifications:
email:
- michael@mosmann.de
- m.joehren@gmail.com
cache:
directories:
- $HOME/.m2/repository
| Add Maven repository to the Travis cache | Add Maven repository to the Travis cache
This speeds up Travis because dependencies can be cached between builds. | YAML | apache-2.0 | flapdoodle-oss/de.flapdoodle.embed.mongo,flapdoodle-oss/de.flapdoodle.embed.mongo |
ff7946d57fc9d323cc7587bfd15adfbd637f53a9 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
script:
- npm install
- grunt | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
script:
- grunt | Modify Flow of CI Script | Modify Flow of CI Script
| YAML | apache-2.0 | Workiva/wf-grunt |
48b114a5fdb07695be65d6dfb4a237e277422629 | .travis.yml | .travis.yml | language: go
go:
- 1.6
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- go test -v ./...
- $HOME/gopath/bin/goveralls -service=travis-ci
| language: go
go:
- 1.6
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/lawrencewoodman/roveralls
script:
- go test -v ./...
- $HOME/gopath/bin/roveralls
- $HOME/gopath/bin/goveralls -coverprofile=roveralls.coverprofile -service=travi... | Use roveralls to get coverage | Use roveralls to get coverage
| YAML | mit | vlifesystems/rhkit |
195ddc4fbbdc2dc37d1fa74ac8885cb86060bb92 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
# - openjdk7
# - openjdk6
env:
global:
- secure: "pmNBqCAW1rc4WKHEmnroZNwAMus18K1VWhRYwt+CN0acH8griJp612tjwWcI\n9XkZcSPR0CJx1TZqGDZZTFH44Pkm6ELU1kc54xtJR6WMXnubEVoEom0tcv/1\nNyzxv9UFJfaNgaTESww+OXSlO9wQre5ZS0/wn2xrz0+twtOPYDU="
- secure: "CZ9mejMLJdrh+a5TFXsNSiYyK9K/zNYO... | language: java
jdk:
- oraclejdk7
# - openjdk7
# - openjdk6
env:
global:
- secure: "pmNBqCAW1rc4WKHEmnroZNwAMus18K1VWhRYwt+CN0acH8griJp612tjwWcI\n9XkZcSPR0CJx1TZqGDZZTFH44Pkm6ELU1kc54xtJR6WMXnubEVoEom0tcv/1\nNyzxv9UFJfaNgaTESww+OXSlO9wQre5ZS0/wn2xrz0+twtOPYDU="
- secure: "CZ9mejMLJdrh+a5TFXsNSiYyK9K/zNYO... | Use report goal instead of cobertura. | Use report goal instead of cobertura.
| YAML | mit | psiniemi/coveralls-maven-plugin,trautonen/coveralls-maven-plugin,psiniemi/coveralls-maven-plugin,velo/coveralls-maven-plugin,andrioli/coveralls-maven-plugin,psiniemi/coveralls-maven-plugin,velo/coveralls-maven-plugin,manish-hike/coveralls-maven-plugin,manish-hike/coveralls-maven-plugin,andrioli/coveralls-maven-plugin,t... |
ec02fc328950f80099a77d0c8025f91b316d2dfd | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2
matrix:
include:
- rvm: 2.1
env: "RAILS_VERSION=4.2.1"
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
matrix:
- "RAILS_VERSION=4.1.10"
- "RAILS_VERSION=4.2.1"
notifications:
email:
recipients:
- "ul-dlt-hydra@lists.psu.e... | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
matrix:
- "RAILS_VERSION=4.2.3"
notifications:
email:
recipients:
- "ul-dlt-hydra@lists.psu.edu"
on_success: "change"
on_failure: "always"
irc:
channels:
- "irc.freenode... | Test on a single version of ruby/rails to speed up tests | Test on a single version of ruby/rails to speed up tests
| YAML | apache-2.0 | samvera/hyrax,samvera/hyrax,samvera/hyrax,samvera/hyrax |
2307bb75625706a37427fa101a7e77af43342e2f | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.8 cmake libboost1.48-all-dev libxi-dev libxmu-dev freeglut3-dev
- git clone https://github.com/nigels-com/glew.git glew
- ... | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.8 cmake libboost1.48-all-dev libglew-dev libxi-dev libxmu-dev freeglut3-dev
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"... | Revert "Build glew from source for Travis-CI" | Revert "Build glew from source for Travis-CI"
This reverts commit 742f759a249a65ff5a69251670fb69e7d134f01d.
Not a good idea, perhaps the GLEW guys should consider automated build tests, too...
| YAML | mit | ukoeln-vis/ctpperf,szellmann/visionaray,tu500/visionaray,tu500/visionaray,ukoeln-vis/ctpperf,szellmann/visionaray |
f00863e21e832adeed73d836ba4e29bbe94dd8b7 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
git:
submodules: false
sudo: false # Enables running on faster infrastructure.
install:
- pip install -r dev-requirements.txt
- pip install coveralls
- pip install pep8
script:
- ./checkstyle.sh
- coverage run --source willie -m py.test .
- coverage report --s... | language: python
python:
- "2.7"
- "3.3"
git:
submodules: false
sudo: false # Enables running on faster infrastructure.
cache:
directories:
- $HOME/.cache/pip
install:
- pip install -r dev-requirements.txt
- pip install coveralls
- pip install pep8
script:
- ./checkstyle.sh
- coverage run --sourc... | Enable pip caching for CI tests. | Enable pip caching for CI tests.
| YAML | mit | Uname-a/knife_scraper,Uname-a/knife_scraper,Uname-a/knife_scraper |
f68049d757e4ebc1a804f62b086358766fde0f05 | .travis.yml | .travis.yml | script: "script/test_all"
bundler_args: "--standalone --binstubs --without documentation"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- ree
- rbx-18mode
- rbx-19mode
- 2.0.0
| script: "script/test_all"
bundler_args: "--standalone --binstubs --without documentation"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- ree
- rbx-18mode
- rbx-19mode
- 2.0.0
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: rbx-18mode
| Revert "rbx build is green; let us try to keep it that way" | Revert "rbx build is green; let us try to keep it that way"
This reverts commit aa473cdf4651f7530f44ea0e905e8e230f4e0e35.
| YAML | mit | danielfone/rspec-expectations,yaoshipu/rspec-expectations,AEgan/rspec-expectations,bjpcjp/rspec-expectations,sferik/rspec-expectations,rspec/rspec-expectations,alexaltair/rspec-expectations,danielfone/rspec-expectations,jdax/rspec-expectations,unmanbearpig/rspec-expectations,chrisarcand/rspec-expectations,unmanbearpig/... |
5e81d2098e91c8bfc2106d7facf7e8da480acdd3 | .travis.yml | .travis.yml | sudo: required
language: node_js
cache:
yarn: true
directories:
- node_modules
install:
- yarn
jobs:
include:
- stage: Build
script:
- yarn lint
- yarn build
node_js: "8"
- script:
- yarn lint
- yarn build
node_js: "10"
- stage: Tests
s... | sudo: required
language: node_js
cache:
yarn: true
directories:
- node_modules
install:
- yarn
jobs:
include:
- &build
- stage: Build
script:
- yarn lint
- yarn build
node_js: "10"
- <<: *build
node_js: '8'
- &unit
- stage: Tests
script: yar... | Remove duplication from Travis config | Remove duplication from Travis config
| YAML | mit | pkarw/vue-storefront,pkarw/vue-storefront,DivanteLtd/vue-storefront,DivanteLtd/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront |
35d754633d76d0d309cac69d5790189e58c92ba7 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.12.10
- 4.3.0
- 5.7.0
| language: node_js
node_js:
- 0.12.18
- 4.7.2
- 5.12.0
- 6.9.4
- 7.4.0
| Test on all the major node versions | Test on all the major node versions
| YAML | mit | EventSource/eventsource,aslakhellesoy/eventsource,aslakhellesoy/eventsource-node,EventSource/eventsource,aslakhellesoy/eventsource,aslakhellesoy/eventsource-node |
f77d187f1322acf801b004a72e51fefddfbb30bb | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "7"
env:
global:
- COVERALLS_REPO_TOKEN=sqDxXMd01aMtd3rb6tzOL8BsrsUOV4I66
cache:
directories:
- node_modules
after_script:
- npm run coveralls
sudo: false
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
env:
global:
- COVERALLS_REPO_TOKEN=sqDxXMd01aMtd3rb6tzOL8BsrsUOV4I66
cache:
directories:
- node_modules
after_script:
- npm run coveralls
sudo: false
| Add Node.js 8 to Travis | Add Node.js 8 to Travis
| YAML | mit | tarunc/gulp-jsbeautifier |
048900e05204a015f1c965d50e90ded797ef771b | .travis.yml | .travis.yml | language: ruby
dist: focal
matrix:
include:
- name: "RuboCop lint on pre-installed Ruby version"
rvm: 2.7.1 # Pre-installed Ruby version
before_install:
- gem install bundler
script: bundle exec rake rubocop # ONLY lint once, first
- rvm: 2.6.7
before_script:
- curl -L... | language: ruby
dist: focal
matrix:
include:
- name: "RuboCop lint on pre-installed Ruby version"
rvm: 2.7.1 # Pre-installed Ruby version
before_install:
- gem install bundler
script: bundle exec rake rubocop # ONLY lint once, first
- rvm: 2.6.7
before_script:
- curl -L... | Add Ruby 3.1 to Travis | Add Ruby 3.1 to Travis
| YAML | mit | elabs/pundit |
5f019e7808fe355f53e9e8815d50b6f941bdfd76 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
before_script:
- pip install -r build/build_requirements.txt
install:
- pip install .
script:
- coverage run --source="." trumpatron.py -c conf/ro.cfg -k
- coverage run --source="." trumpatron.py -c conf/ro.cfg -t
-... | sudo: false
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
before_script:
- pip install -r build/build_requirements.txt
install:
- pip install .
script:
- coverage run --source="." trumpatron.py -c conf/ro.cfg -k
- coverage run --source="." trumpatron.py -c conf/ro.cfg -t
-... | Add Fix For Error-Testing Code Coverage Tests on Travis CI | Add Fix For Error-Testing Code Coverage Tests on Travis CI
| YAML | mit | magneticstain/TrumpaTron,magneticstain/TrumpaTron |
4c6fcdd655ec4f02e94cfcbadd3ae9a4a1ac91ca | .travis.yml | .travis.yml | os:
- linux
language: cpp
dist: trusty
sudo: required
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
artifacts: true
env:
- MATRIX_EVAL="CC=gcc-4.9 && CXX=... | os:
- linux
language: cpp
dist: trusty
sudo: required
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
artifacts: true
env:
- MATRIX_EVAL="CC=gcc-4.9 && CXX=... | Test GCC 7 with Travis | Test GCC 7 with Travis
| YAML | bsd-3-clause | dm/gearmand,dm/gearmand,dm/gearmand,dm/gearmand |
1f4125e420e9c6bace5e3ffda69e70fcabcf0d82 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
script:
- php bread register
- php bread test
- php bread test tests/testcases
notifications:
on_success: always
on_failure: always
| language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
script:
- php bread register
- php bread test
- php bread test tests/testcases
notifications:
on_success: always
on_failure: always
| Write test for MakeResource class | feat(package): Write test for MakeResource class
Write test for MakeResource class
see #21
| YAML | mit | huytbt/laravel-bread |
cadbd07536968c1f872187b994e8f28f3ecef7d9 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- ree
- jruby-head
- jruby-19mode
- rbx
| language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-head
- jruby-19mode
- rbx
| Remove one more ruby from CI for the same reasons as previous commit. | Remove one more ruby from CI for the same reasons as previous commit. | YAML | mit | eirc/spells |
331b06eafc8d5b6ed690ba337c1edc837121ea3c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.2.2
- jruby-19mode
| Add ruby 2.2.2 to the build matrix | Add ruby 2.2.2 to the build matrix
| YAML | apache-2.0 | prometheus/client_ruby,crewton/client_ruby |
a6e85b8a4fc4ba3fcddf4e20cec8ff5ca9d422d7 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
install: mvn install -DskipTests=true -Dgpg.skip=true
after_script: mvn cobertura:cobertura coveralls:cobertura
notifications:
email:
recipients:
- dev@maxmind.com
on_success: change
on_failure: always
sudo: false
env:... | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
install: mvn install -DskipTests=true -Dgpg.skip=true
after_script: mvn cobertura:cobertura coveralls:cobertura
notifications:
email:
recipients:
- dev-ci@maxmind.com
on_success: change
on_failure: always
sudo: false
e... | Send all emails to dev-ci@mm | Send all emails to dev-ci@mm | YAML | apache-2.0 | maxmind/GeoIP2-java,maxmind/GeoIP2-java |
3254ccbfc8cbb744ffe149a37dbc1e6e9d8aa716 | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 2.0.0
script:
- bundle exec rspec --no-drb --format progress | ---
language: ruby
rvm:
- 2.1.2
script:
- bundle exec rspec --no-drb --format progress | Update Ruby version used on Travis | Update Ruby version used on Travis
| YAML | mit | paulfioravanti/toy_robot |
baa60ba7fa91b7fc54812b6a5985e375fca5ef82 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.6
- 7.0
- hhvm
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $set... | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setu... | Remove hhvm and add 7.1 | Remove hhvm and add 7.1
Signed-off-by: crynobone <e1a543840a942eb68427510a8a483282a7bfeddf@gmail.com>
| YAML | mit | orchestral/memory |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.