doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
54997ddd-deba-461f-a473-0df11b504b65 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
```
Test against multiple versions of Underscore. | ```yaml
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:... |
7bfc8171-ae37-4d85-8a5e-ef8938b9b243 | {
"language": "YAML"
} | ```yaml
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```
Add PHP 7.1 and nightly to Travis | ```yaml
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``` |
c8774724-f657-4e25-bd3e-0b7b98239fca | {
"language": "YAML"
} | ```yaml
language: csharp
mono: none
dotnet: 1.1.1
os: linux
dist: trusty
script:
- dotnet restore
- dotnet build -c release
- dotnet run Odaceo
```
Upgrade the dotnet core version on Travis CI | ```yaml
language: csharp
mono: none
dotnet: 2.0.0-preview1-005977
os: linux
dist: trusty
script:
- dotnet restore
- dotnet build -c release
- dotnet run Odaceo
``` |
ca7c9d0e-0277-47c5-b0a2-448139b07873 | {
"language": "YAML"
} | ```yaml
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 | ... | ```yaml
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 | ... |
8db7588a-fccb-42a9-943c-61a19ff478f7 | {
"language": "YAML"
} | ```yaml
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-g... | ```yaml
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/ ... |
f6244e61-149a-4a29-8c01-29901aeee352 | {
"language": "YAML"
} | ```yaml
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 '... | ```yaml
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 -... |
99a1fd4c-2251-4336-9d4d-a0fc2252666b | {
"language": "YAML"
} | ```yaml
---
language: ruby
sudo: false
rvm:
- 2.1.2
install:
- bundle install --quiet
script:
- rubocop -fs -D
- rake test
- bin/fetch-configlet
- bin/configlet .
```
Call configlet subcommand on CI | ```yaml
---
language: ruby
sudo: false
rvm:
- 2.1.2
install:
- bundle install --quiet
script:
- rubocop -fs -D
- rake test
- bin/fetch-configlet
- bin/configlet lint .
``` |
e6b8da95-8d9a-48c8-a857-d66498680ebc | {
"language": "YAML"
} | ```yaml
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
```
Adjust CI/CD to use main branch | ```yaml
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
``` |
b8f23661-136b-43b4-9dee-71824fc82695 | {
"language": "YAML"
} | ```yaml
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
```
Use rednose to color nosetests output | ```yaml
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
``` |
64db4d9b-6e5f-4f7d-b24e-5634e9b3be86 | {
"language": "YAML"
} | ```yaml
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
bef... | ```yaml
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
b... |
31921764-5c8f-4ba4-b857-339065f0b707 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
script: "bundle exec rake coverage"
services:
- rabbitmq
```
Add jruby, add Ruby 2.1, add notifications | ```yaml
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
``` |
31aa1763-a895-47db-bdfc-3b36ea5f65dc | {
"language": "YAML"
} | ```yaml
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... | ```yaml
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++VMjkgbV3EuaS09DGFujvHl2e... |
205ed17a-9887-4fb1-8229-daac2a7e4733 | {
"language": "YAML"
} | ```yaml
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
- ... | ```yaml
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/VERSIO... |
4bdb2502-d5aa-4023-b744-d7679de80267 | {
"language": "YAML"
} | ```yaml
language: rust
env:
global:
- secure: CypapAJnmOcE+/5uf2ad944IfJwD20whIIsbG+6nNjP34JDJ6EonP4+TuPFLTtZ4PPe2sUAI39TO97gwna2zOJEtU9qeNigvT9yQnDnvr6jkb4QzNJ6lOd42uwHUPvzD9vSjlGLpbAo2PUq8IKw52ehZtN5KvTLyehSoAc2eO6U=
install:
- sudo apt-get install libXxf86vm-dev xdotool
- git clone https://github.com/g... | ```yaml
language: rust
env:
global:
- secure: CypapAJnmOcE+/5uf2ad944IfJwD20whIIsbG+6nNjP34JDJ6EonP4+TuPFLTtZ4PPe2sUAI39TO97gwna2zOJEtU9qeNigvT9yQnDnvr6jkb4QzNJ6lOd42uwHUPvzD9vSjlGLpbAo2PUq8IKw52ehZtN5KvTLyehSoAc2eO6U=
script:
- cargo build
- cargo test
- cargo doc
after_script:
# the doc directory ... |
46aa7bd3-8003-4d96-9433-26db9e0d5771 | {
"language": "YAML"
} | ```yaml
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. | ```yaml
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
``` |
056441f8-cbdc-4327-b559-c4e643416c3f | {
"language": "YAML"
} | ```yaml
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=iph... | ```yaml
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=iph... |
f0462fb0-5f8e-4460-82b3-0f2cfb955676 | {
"language": "YAML"
} | ```yaml
language: dart
dart:
- dev
dart_task:
- test: --platform vm
xvfb: false
- test: --platform chrome
xvfb: false
sudo: false
```
Remove bad copy and paste settings | ```yaml
language: dart
dart:
- dev
dart_task:
- test: --platform vm
xvfb: false
sudo: false
``` |
7864b619-ba55-4267-930b-ec63c5fa9656 | {
"language": "YAML"
} | ```yaml
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:... | ```yaml
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:
... |
cfffdfd6-7107-45f8-9622-ea40d8c6b7d0 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1.0
env:
- RAILS_ENV=test
script:
- bundle exec rspec
before_script:
- bundle exec rake test_app```
Add echo 'Y' for rake test_app task | ```yaml
language: ruby
rvm:
- 2.1.0
env:
- RAILS_ENV=test
script:
- bundle exec rspec
before_script:
- echo "Y" | bundle exec rake test_app``` |
3785f683-7908-4e82-8ee0-85baf4adfbf1 | {
"language": "YAML"
} | ```yaml
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 -rac... | ```yaml
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 -ra... |
ac4c14f3-d9af-4b59-8c88-7d23c341a307 | {
"language": "YAML"
} | ```yaml
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
```
Add arguments to deploy script | ```yaml
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
``` |
b01607eb-ceda-4063-8017-43e5ef1397be | {
"language": "YAML"
} | ```yaml
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.prop... | ```yaml
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.prop... |
ecf7b9f5-85e1-4225-aec5-af8e1f15fada | {
"language": "YAML"
} | ```yaml
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 fr... | ```yaml
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/ -... |
ce54e94f-3d9e-4a64-8b6e-7bb62433d46c | {
"language": "YAML"
} | ```yaml
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/cover... | ```yaml
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/lc... |
1ca27c09-f44c-4dad-8747-5cade6268e3a | {
"language": "YAML"
} | ```yaml
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"
- m... | ```yaml
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"
- m... |
26d1c054-0ac1-4bd3-bf8d-5f06df0db2f6 | {
"language": "YAML"
} | ```yaml
language: cpp
compiler: clang
script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build .
- ctest
```
Enable Travis testing on OS X. | ```yaml
os:
- linux
- osx
language: cpp
compiler: clang
script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build .
- ctest
``` |
9834f4b4-6e2d-4942-a7a4-9175d2e6ec54 | {
"language": "YAML"
} | ```yaml
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
- s... | ```yaml
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... |
470940f7-4a61-473e-b562-831ce31f9eed | {
"language": "YAML"
} | ```yaml
# 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
no... | ```yaml
# 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
no... |
6fce7a91-31da-49b9-bf01-0dfa6195aaff | {
"language": "YAML"
} | ```yaml
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
-... | ```yaml
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/... |
60ceef11-265a-4562-9f50-c7bbccb4704b | {
"language": "YAML"
} | ```yaml
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
```
Test on Ruby 2.2.5 / 2.3.1 | ```yaml
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
``` |
0449026b-0945-4fad-83e9-b6e8e3697526 | {
"language": "YAML"
} | ```yaml
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... | ```yaml
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-toolc... |
1475fd38-3f4f-4e3e-85cd-7edfa07bb5b9 | {
"language": "YAML"
} | ```yaml
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
gemf... | ```yaml
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
... |
3051ac6d-9c39-40f5-9156-3a32799799de | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- "2.2.3"
- "2.1.7"
- "2.0"
- jruby
```
Remove jruby from Travis config | ```yaml
language: ruby
rvm:
- "2.2.3"
- "2.1.7"
- "2.0"
``` |
cc1e57ca-fef4-4f2a-bc78-c4d7dc0533d4 | {
"language": "YAML"
} | ```yaml
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-test... | ```yaml
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 Travi... |
0afd8f9c-e1c0-4f91-b042-28e09a0fc93d | {
"language": "YAML"
} | ```yaml
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 && br... | ```yaml
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 && bre... |
89dab142-2a14-434b-98ff-529054387a19 | {
"language": "YAML"
} | ```yaml
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"
```
Test against Ruby 2.3.0 on Travis CI | ```yaml
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"
``` |
03c485ae-8b15-4e77-8132-13df729f3409 | {
"language": "YAML"
} | ```yaml
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
```
Change the language on Travis CI | ```yaml
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
``` |
1e20cf0e-3740-44b8-aa78-c8dcd931e1c5 | {
"language": "YAML"
} | ```yaml
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
```
Test with latest Node.js 4 on Travis CI. | ```yaml
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
``` |
b841bab8-d1cb-4566-b576-8a32af9a881c | {
"language": "YAML"
} | ```yaml
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
in... | ```yaml
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/loca... |
f31978a1-6fc1-4a57-b966-7ef6f8569f43 | {
"language": "YAML"
} | ```yaml
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 -v... | ```yaml
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 -v... |
018e515f-26c4-4cfd-818d-683c5e60df01 | {
"language": "YAML"
} | ```yaml
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 ..... | ```yaml
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 ./m... |
e79295b6-91ce-4025-8f47-d908df27ac12 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- "4"
- "6"
- "8"
- "node"
```
Add Node 9, restore older stable versions | ```yaml
language: node_js
sudo: false
node_js:
- "4"
- "6"
- "8"
- "9"
``` |
4b7ac393-7bae-4f5f-a6c5-ca620af43bd9 | {
"language": "YAML"
} | ```yaml
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
```
Make sure to use same S... | ```yaml
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
``` |
852fd094-9912-4519-82c5-1404168a48ba | {
"language": "YAML"
} | ```yaml
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... | ```yaml
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... |
575a8e77-7b09-4266-a562-946b66b79f9f | {
"language": "YAML"
} | ```yaml
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"
```
Add coveralls--but it's prly broken | ```yaml
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.co... |
071a205c-5362-4c06-963b-406028f2cd34 | {
"language": "YAML"
} | ```yaml
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'
-... | ```yaml
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'
... |
0c3131a4-1bca-474a-94a2-ef4f4489586f | {
"language": "YAML"
} | ```yaml
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 ... | ```yaml
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 ... |
f96127f3-6467-457b-af8b-1b7b38f59dba | {
"language": "YAML"
} | ```yaml
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-... | ```yaml
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:
source... |
3edae6a9-0f76-4dc9-9051-bf3babae41bb | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1
script: bundle exec rake
before_install:
- gem update --system
services:
- redis-server
```
Update Travis to use containers | ```yaml
language: ruby
rvm:
- 2.1
services:
- redis-server
sudo: false
cache: bundler
``` |
00c72129-b373-49c0-899b-39b318bdaf7a | {
"language": "YAML"
} | ```yaml
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 t... | ```yaml
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... |
a6ab903a-7177-4d0e-a4fd-4ac26e8ba668 | {
"language": "YAML"
} | ```yaml
os:
- linux
language: bash
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
before_script:
- chmod +x ./hack/make.sh
script:
- ./hack/make.sh test
```
Remove email notifications on success | ```yaml
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
``` |
0c93a667-dbac-4763-b666-17c31ce85fb8 | {
"language": "YAML"
} | ```yaml
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
- sud... | ```yaml
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 ins... |
3be8ba26-e39d-47cb-8712-e2c22a56a93f | {
"language": "YAML"
} | ```yaml
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.... | ```yaml
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.... |
77f0b978-bc41-41d0-a3f0-f45f2ad3c453 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.4
- 0.6
- 0.8
```
Add Travis-ci integration for Node.js v0.10 and v0.11 | ```yaml
language: node_js
node_js:
- "0.4"
- "0.6"
- "0.8"
- "0.10"
- "0.11"
``` |
0f74e361-642c-45d7-9003-5842a39d7e3d | {
"language": "YAML"
} | ```yaml
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
... | ```yaml
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
``` |
ce0442b1-0ea6-4913-9d83-2c5df4456607 | {
"language": "YAML"
} | ```yaml
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}
... | ```yaml
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}
... |
877816ac-6cd1-4267-9414-df9d46c7d943 | {
"language": "YAML"
} | ```yaml
language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: aoVXZyLOB... | ```yaml
language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: dOR1qtgrZ... |
7439ac42-b371-49ca-8854-f3e3c5c9dc5c | {
"language": "YAML"
} | ```yaml
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
```
Test against Ruby 2.5.1 on CI. | ```yaml
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
``` |
630917ba-ce14-4336-ab75-1b3d362c15d7 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- "2.2.3"
- "2.1.7"
- "2.0"
```
Update rubies to test under Travis | ```yaml
language: ruby
rvm:
- "2.3.1"
- "2.2.5"
``` |
9a27e203-8c4f-43ba-a205-3f91716926f3 | {
"language": "YAML"
} | ```yaml
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
```
Allow Rubinius to fail for now | ```yaml
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
``` |
897975ce-b151-40ae-926a-594934403594 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.12"
- "4"
- "5"
- "6"
- "7"
```
Change test matrix to current stable Node.js versions | ```yaml
language: node_js
node_js:
- "4"
- "6"
- "8"
- "10"
``` |
75bd99ce-cc47-4e03-95f4-4922c28b5f17 | {
"language": "YAML"
} | ```yaml
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:cobe... | ```yaml
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_succe... |
ea4e5bea-1a68-4798-82dc-0d6f5857a986 | {
"language": "YAML"
} | ```yaml
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 --compi... | ```yaml
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 --compi... |
c13ce79e-c9d6-4e0d-a089-48833b90bc10 | {
"language": "YAML"
} | ```yaml
---
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
```
Stop testing against Ruby 1.8.7 | ```yaml
---
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
``` |
b30ba7c4-c10e-46bd-9a3c-29b5c19c2f0e | {
"language": "YAML"
} | ```yaml
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
secure: m/9uIj9YUvDtVj4qelwVCYzXbaJ3M+zqeazDXDrvClIB6CSt1PaPxcKSdcUPm74+9CBKBX6XRxjz8M1Dgtu1nHPfP8BzcyAgXcpGYpBkIW1cjcwi6p9LRQS7Dg3VWZlAgSvEqEDSOLjCxtmtQ2Spea4CrLfq2nsO2O86hbSsi6M=
before_instal... | ```yaml
sudo: false
language: rust
cache: cargo
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
secure: m/9uIj9YUvDtVj4qelwVCYzXbaJ3M+zqeazDXDrvClIB6CSt1PaPxcKSdcUPm74+9CBKBX6XRxjz8M1Dgtu1nHPfP8BzcyAgXcpGYpBkIW1cjcwi6p9LRQS7Dg3VWZlAgSvEqEDSOLjCxtmtQ2Spea4CrLfq2nsO2... |
bc9589c0-e70d-46fe-9a06-9178e5305af9 | {
"language": "YAML"
} | ```yaml
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 &... | ```yaml
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... |
ecb3f70c-ab67-468e-bf9f-ab07cacb789a | {
"language": "YAML"
} | ```yaml
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"
```
Allow failures on jRuby for now | ```yaml
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
``` |
1896b648-413f-4dc1-872f-bf7604cf0a48 | {
"language": "YAML"
} | ```yaml
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```
Bump Go version to 1.8.0. | ```yaml
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``` |
9401f454-c870-4836-815c-598041dc74af | {
"language": "YAML"
} | ```yaml
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
- NA... | ```yaml
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
- NA... |
eab86727-58d1-4d81-a01f-6ecac4a852d8 | {
"language": "YAML"
} | ```yaml
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"
-... | ```yaml
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"
... |
35b026ff-0194-4207-a3cd-229c47999395 | {
"language": "YAML"
} | ```yaml
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 ./...
```
Remove legacy versions from CI. | ```yaml
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 ./...
``` |
6bec1426-7361-4384-b6b1-e971898b308e | {
"language": "YAML"
} | ```yaml
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... | ```yaml
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/tra... |
9aac4c5b-bc30-4f9c-9768-2f276391f371 | {
"language": "YAML"
} | ```yaml
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
- p... | ```yaml
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
- p... |
4654313f-96d0-418c-8085-791fa3a0e2bb | {
"language": "YAML"
} | ```yaml
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 ]]; t... | ```yaml
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 [[... |
f692f59d-19e2-4f19-a848-62718d40afc2 | {
"language": "YAML"
} | ```yaml
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... | ```yaml
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... |
aa062ab4-cef7-4ed3-91a6-137fb368b870 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm test:integration
```
Fix NPM script execution of integration testing via Travis | ```yaml
language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm run test:integration
``` |
d5c7a040-f18f-45c3-b2ff-3084ca9ba162 | {
"language": "YAML"
} | ```yaml
language: java
script: mvn package
jdk:
- oraclejdk8
- oraclejdk9
- openjdk8
```
Clean working directory before building | ```yaml
language: java
script: mvn clean package
jdk:
- oraclejdk8
- oraclejdk9
- openjdk8
``` |
e3c6aabc-dabc-427b-8651-042a43c9b87d | {
"language": "YAML"
} | ```yaml
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
```
Test with latest Ruby version | ```yaml
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
``` |
08ae2016-626b-48d1-afa4-c0e9a2689bfe | {
"language": "YAML"
} | ```yaml
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... | ```yaml
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... |
39c54e7b-5285-4b71-88e7-5cc53956bc38 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
install: "python setup.py install"
script:
- "nosetests --with-coverage --cover-package=phreeqpython"
```
Add python 3 to unit testing | ```yaml
language: python
python:
- "2.7"
- "3.5"
install: "python setup.py install"
script:
- "nosetests --with-coverage --cover-package=phreeqpython"
``` |
4ee1c09e-c3ec-4221-b682-496c2ea19641 | {
"language": "YAML"
} | ```yaml
---
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
```
Add Maven repository to the Travis cache | ```yaml
---
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
``` |
ebdda583-b1e6-4780-9c08-084cab876f1c | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
script:
- npm install
- grunt```
Modify Flow of CI Script | ```yaml
language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
script:
- grunt``` |
e8d75146-c010-478f-a677-49f053465311 | {
"language": "YAML"
} | ```yaml
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
```
Use roveralls to get coverage | ```yaml
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 -servi... |
e28aa812-5c75-4552-ad27-b6752d04bb3b | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk7
# - openjdk7
# - openjdk6
env:
global:
- secure: "pmNBqCAW1rc4WKHEmnroZNwAMus18K1VWhRYwt+CN0acH8griJp612tjwWcI\n9XkZcSPR0CJx1TZqGDZZTFH44Pkm6ELU1kc54xtJR6WMXnubEVoEom0tcv/1\nNyzxv9UFJfaNgaTESww+OXSlO9wQre5ZS0/wn2xrz0+twtOPYDU="
- secure: "CZ9mejMLJdrh+a5TFXsNSiYy... | ```yaml
language: java
jdk:
- oraclejdk7
# - openjdk7
# - openjdk6
env:
global:
- secure: "pmNBqCAW1rc4WKHEmnroZNwAMus18K1VWhRYwt+CN0acH8griJp612tjwWcI\n9XkZcSPR0CJx1TZqGDZZTFH44Pkm6ELU1kc54xtJR6WMXnubEVoEom0tcv/1\nNyzxv9UFJfaNgaTESww+OXSlO9wQre5ZS0/wn2xrz0+twtOPYDU="
- secure: "CZ9mejMLJdrh+a5TFXsNSiYy... |
bd5a5af8-5d8c-4ee5-aedb-fb845a7d4bb1 | {
"language": "YAML"
} | ```yaml
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@lis... | ```yaml
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.... |
3916df9a-7862-4963-a7b7-cfb2051f7176 | {
"language": "YAML"
} | ```yaml
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 gle... | ```yaml
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="... |
49c85cdd-67b0-4016-9935-fd2d9771e172 | {
"language": "YAML"
} | ```yaml
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 re... | ```yaml
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... |
0942dd89-17be-4a18-8583-04798cb4098c | {
"language": "YAML"
} | ```yaml
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
```
Revert "rbx build is green; let us try to keep it that way" | ```yaml
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
``` |
70e4b378-54a6-453f-af22-4ea18636ea8d | {
"language": "YAML"
} | ```yaml
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... | ```yaml
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
scr... |
e2325b46-8928-4215-a2d7-da495b48a579 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.12.10
- 4.3.0
- 5.7.0
```
Test on all the major node versions | ```yaml
language: node_js
node_js:
- 0.12.18
- 4.7.2
- 5.12.0
- 6.9.4
- 7.4.0
``` |
f3161a82-f974-43bc-b7d4-2dd42c2ef6f1 | {
"language": "YAML"
} | ```yaml
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
```
Add Node.js 8 to Travis | ```yaml
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
``` |
eb2b973d-02ee-48a8-9cbc-bc29225beb8f | {
"language": "YAML"
} | ```yaml
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:
-... | ```yaml
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:
-... |
34525355-f3db-478e-a070-fe644dcbe925 | {
"language": "YAML"
} | ```yaml
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 ... | ```yaml
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 ... |
db8e86cf-0011-4a8f-bb35-6a4b705d4f7c | {
"language": "YAML"
} | ```yaml
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... | ```yaml
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... |
e28a9fb5-3976-4589-9502-c027de480416 | {
"language": "YAML"
} | ```yaml
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
```
Write test for MakeResource class | ```yaml
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
``` |
92b5559e-d0ec-4b4a-98f6-c665ffbabeee | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- ree
- jruby-head
- jruby-19mode
- rbx
```
Remove one more ruby from CI for the same reasons as previous commit. | ```yaml
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-head
- jruby-19mode
- rbx
``` |
71a6650a-4a73-4dcb-a286-c4324cc54727 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
```
Add ruby 2.2.2 to the build matrix | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.2.2
- jruby-19mode
``` |
ad9ca11d-570e-484b-a780-89d7173e7aa2 | {
"language": "YAML"
} | ```yaml
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: fal... | ```yaml
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: ... |
ae8e8a09-70c9-47a9-9e7b-f55a4dfc745d | {
"language": "YAML"
} | ```yaml
---
language: ruby
rvm:
- 2.0.0
script:
- bundle exec rspec --no-drb --format progress```
Update Ruby version used on Travis | ```yaml
---
language: ruby
rvm:
- 2.1.2
script:
- bundle exec rspec --no-drb --format progress``` |
2842367e-b1d6-4d55-b4d3-1c8e83618e6d | {
"language": "YAML"
} | ```yaml
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... | ```yaml
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 ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.