doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
908d03a7-6506-4740-ba29-887ba7bad58f | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
script: bundle exec rspec
notifications:
campfire:
rooms:
secure: UwsCEilVpBakyB+/A84lOS0Gp7KsNEZOGOXdWuS4M0L2BtmHYEYzO5DM3KrQuBmeCPoBQKfZRGGmAAXoHIinD+ziRczfknzL8lesAFcEVLs9ZMwtTdkk3FyCyOWcNu+Q6Iw5s9bz8Jpuz9u2iIC1knyAePhWSH76zg9R0DZrYmI=
```
Update Campfire config for... | ```yaml
language: ruby
rvm:
- 1.9.3
script: bundle exec rspec
notifications:
campfire:
rooms:
secure: UwsCEilVpBakyB+/A84lOS0Gp7KsNEZOGOXdWuS4M0L2BtmHYEYzO5DM3KrQuBmeCPoBQKfZRGGmAAXoHIinD+ziRczfknzL8lesAFcEVLs9ZMwtTdkk3FyCyOWcNu+Q6Iw5s9bz8Jpuz9u2iIC1knyAePhWSH76zg9R0DZrYmI=
on_success: change
on_f... |
02f9529c-ea27-4fea-bd79-2114b5c27e38 | {
"language": "YAML"
} | ```yaml
language: ruby
cache:
directories:
- $HOME/.evm
before_install:
- (cd $HOME/.evm && git pull) || git clone https://github.com/rejeep/evm.git $HOME/.evm
- export PATH=$HOME/.evm/bin:$PATH
- evm config path /tmp
- evm install $EVM_EMACS --use --skip
env:
- EVM_EMACS=emacs-24.4-travis
- EVM_EM... | ```yaml
language: nix
install:
# Enable downloadable pre-built binaries stored on cachix
- nix-env -iA cachix -f https://cachix.org/api/v1/install
- cachix use emacs-ci
- nix-env -iA $EMACS_VER -f https://github.com/purcell/nix-emacs-ci/archive/master.tar.gz
env:
- EMACS_VER=emacs-24-4
- EMACS_VER=emacs-2... |
0bc34cc9-b56a-4962-99b9-970a3471209c | {
"language": "YAML"
} | ```yaml
language: java
os:
- linux
jdk:
- oraclejdk8
sudo: required
dist: trusty
cache:
directories:
- $HOME/mvn-home
install:
# install maven 3.3.9 if it is not in cache already
- bash .travis.install-maven.sh "3.3.9" "${HOME}/mvn-home"
- export M2_HOME=${HOME}/mvn-home
- export PATH=${HOME}/mvn-hom... | ```yaml
language: java
os:
- linux
jdk:
- oraclejdk8
sudo: required
dist: trusty
cache:
directories:
- $HOME/mvn-home
install:
# install maven 3.3.9 if it is not in cache already
- bash .travis.install-maven.sh "3.3.9" "${HOME}/mvn-home"
- export M2_HOME=${HOME}/mvn-home
- export PATH=${HOME}/mvn-hom... |
75a5d111-52b9-4875-980e-536c128570fa | {
"language": "YAML"
} | ```yaml
language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
gemfile:
- gemfiles/minitest-1.7
- gemfiles/minitest-2
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/minite... | ```yaml
language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
# - rbx-18mode
# - rbx-19mode
gemfile:
- gemfiles/minitest-1.7
- gemfiles/minitest-2
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/mini... |
5245c8b9-29d5-4b69-bf58-e9fe325a95dd | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
before_install:
- 'sudo apt-get install redis-server'
- 'sudo service redis-server start'
install:
- 'pip install Flask'
- 'pip install pytz'
- 'pip install python-dateutil'
- 'pip install .'
script: py.test
```
Test against Python 3.4 and 3.5 ... | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
before_install:
- 'sudo apt-get install redis-server'
- 'sudo service redis-server start'
install:
- 'pip install Flask'
- 'pip install pytz'
- 'pip install python-dateutil'
- 'pip install .'
script: py.test
``` |
187def60-556b-4175-be28-6995bf4eb73b | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
branches:
only:
- master
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
bundler_args: --jobs 7 --without docs debug
script: bundle exec rake spec
```
Test on ruby-head in Travis and cache bundler | ```yaml
sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --jobs 7 --without docs debug
script: bundle exec rake spec
``` |
0aece61c-520e-4ad3-b28d-bb56376bda41 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.8 # previous stable release
- 0.10 # latest stable release
#- 0.11 # latest development release
services:
- mysql # start MySQL on startup
before_script:
- "mysql -uroot -e \"DELETE FROM mysql.db WHERE Db = 'test\\_%';\""
- "mysql -uroot -e \"DELETE FROM mysql.user WH... | ```yaml
language: node_js
node_js:
- 0.8 # previous stable release
- 0.10 # latest stable release
- 0.11 # latest development release
services:
- mysql # start MySQL on startup
before_script:
- "mysql -uroot -e \"DELETE FROM mysql.db WHERE Db = 'test\\_%';\""
- "mysql -uroot -e \"DELETE FROM mysql.user WHE... |
a68b2db1-a9ef-4a91-9928-979b63d11490 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
cache:
apt: true
# TODO local node modules path correct?
directories:
- $HOME/.pip-cache/
- $HOME/.tox
- /home/travis/virtualenv/python2.7
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- echo 'Running installation in... | ```yaml
language: python
python:
- "2.7"
- "3.5"
cache:
apt: true
# TODO local node modules path correct?
directories:
- $HOME/.pip-cache/
- $HOME/.tox
- /home/travis/virtualenv/python2.7
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- echo 'Running insta... |
20c5a1b5-d8f2-4eb8-bcd8-d3c7b15a2cd3 | {
"language": "YAML"
} | ```yaml
dist: xenial
language: go
go: "1.12.x"
go_import_path: /skaffold
git:
submodules: false
branches:
only:
- master
jobs:
include:
- os: linux
name: "checks"
script:
- make checks
- os: linux
name: "Linux unit"
script:
- make
- make quicktest
... | ```yaml
dist: xenial
language: go
go: "1.12.x"
go_import_path: /skaffold
git:
submodules: false
branches:
only:
- master
jobs:
include:
- os: linux
name: "checks"
script:
- make checks
- os: linux
name: "Linux unit"
script:
- make
- make quicktest
... |
dcfda69b-7309-4a69-ad71-32aac9d1bd08 | {
"language": "YAML"
} | ```yaml
language: php
php:
- "5.4"
- "5.3"
services: mysql
before_script:
- cp app/config/parameters.yml-dist app/config/parameters.yml
- composer install
- pear install pear/PHP_CodeSniffer
- phpenv rehash
- mysql -e 'create database youhighfiveme;'
- mysql -e 'create user "youhighfiveme"@"localhost"... | ```yaml
language: php
php:
- "5.4"
- "5.3"
services: mysql
before_script:
- cp app/config/parameters.yml-dist app/config/parameters.yml
- mysql -e 'create database youhighfiveme;'
- mysql -e 'create user "youhighfiveme"@"localhost" identified by "secret";'
- composer install
- pear install pear/PHP_Code... |
3d28fda3-b388-4659-8be1-76788f941e76 | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: c++
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libtokyocabinet-dev libkyototycoon-dev kyototycoon libkyotocabinet-dev; fi
- if [[ "$TRAVIS_OS_NAME" == ... | ```yaml
sudo: required
dist: trusty
language: c++
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libtokyocabinet-dev libkyototycoon-dev kyototycoon libkyotocabinet-dev; fi
- if [[ "$TRAVIS_OS_NAME" == ... |
f5cc317f-173a-46f6-9305-850cabae695a | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
```
Use Travis CI Trusty build environment | ```yaml
sudo: required
dist: trusty
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
``` |
b80cdeb2-a78b-4104-9f35-defc6c9a843b | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk7
- oraclejdk8
branches:
except:
- www
cache:
directories:
- $HOME/.gradle/caches
- $HOME/.gradle/wrapper
- $HOME/.local/lib/python2.7
before_install:
- pip install --user pandas
- git fetch --depth=10000 origin
install: ./gradlew ciPrep
script: ./gradlew ciTest
env:
... | ```yaml
language: java
jdk:
- oraclejdk7
- oraclejdk8
addons:
apt:
packages:
- python-pandas
branches:
except:
- www
cache:
directories:
- $HOME/.gradle/caches
- $HOME/.gradle/wrapper
before_install:
- git fetch --depth=10000 origin
install: ./gradlew ciPrep
script: ./gradlew ciTest
env:
global:... |
ec2c9ff4-90c5-4ef2-8033-31147916b1dd | {
"language": "YAML"
} | ```yaml
language: java
sudo: false
# Enable Gradle caching
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
jdk:
- oraclejdk8
# Add "verGJF" task when google-ja... | ```yaml
language: java
sudo: false
# Enable Gradle caching
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
jdk:
- oraclejdk8
# Add "verGJF" task when google-ja... |
0b9a6cde-c450-44a3-9e26-9da0e167e7ac | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- node_modules
branches:
only:
- master
notifications:
email: false
before_install:
- export CHROME_BIN=chromium-browser
before_script:
- npm prune
script:
- npm run validate
after_success:
- npm run coverage
deploy:
prov... | ```yaml
sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- node_modules
branches:
only:
- master
notifications:
email: false
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- npm prune
script:
- npm run v... |
f1799fa5-bc99-4d80-bda7-e336a13b6c99 | {
"language": "YAML"
} | ```yaml
language: ruby
script:
- ./script/ci/travis
after_script:
- git status
- true
rvm:
- 1.9.2
- 1.9.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
email: false
```
Call deploy hook on successful builds | ```yaml
language: ruby
script:
- ./script/ci/travis
after_script:
- curl --silent https://etu.utt.fr/v9/deploy
rvm:
- 1.9.2
- 1.9.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
email: false
``` |
7f254cb3-b953-4063-b2e4-bf1e8fdacbf4 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- ruby-head
- ruby-2.0.0-p598
- ruby-1.9.3-p551
- jruby-head
- jruby-19mode
- rbx-2.2.7
notifications:
recipients:
- casey.ohara@printfection.com
```
Remove Rubinius from Travis config for Bundler issues | ```yaml
language: ruby
rvm:
- ruby-head
- ruby-2.0.0-p598
- ruby-1.9.3-p551
- jruby-head
- jruby-19mode
notifications:
recipients:
- rubygems@printfection.com
``` |
2db5bdfc-f351-445e-9eb6-cab535ee4766 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
env:
- HEADLESS=true
before_install:
- "npm install"
- "npm install -g grunt-cli"
- "cd test"
install: "npm install"
script:
- "grunt spec:unit --stack"
- "grunt spec:e2e --stack"
cache:
directories:
- node_modules
- test/node_modules
- test/bin
no... | ```yaml
language: node_js
node_js:
- "0.10"
env:
- HEADLESS=true
before_install:
- "npm install"
- "npm install -g grunt-cli"
- "cd test"
install: "npm install"
script:
- "grunt spec:unit --stack"
# "grunt spec:e2e --stack"
cache:
directories:
- node_modules
- test/node_modules
- test/bin
no... |
9bfa3bc0-b174-4df6-bb50-71126dd27bac | {
"language": "YAML"
} | ```yaml
language: php
php: '5.6'
script: ./vendor/bin/phpcs --report=summary --standard=phpcs.xml -np .
```
Add the dependencies for Travis | ```yaml
language: php
php: '5.6'
install: composer install
script: ./vendor/bin/phpcs --report=summary --standard=phpcs.xml -np .
``` |
2663326e-ee02-41d2-a3e4-1dc7f8bfc3c4 | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
rvm:
- 2.2.0
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
gemfile:
- gemfiles/activemodel3.gemfile
- gemfiles/activemodel4.gemfile
```
Test against ruby 2.3 and exclude activemodel4 from 1.9 rubies | ```yaml
language: ruby
sudo: false
rvm:
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- 1.9.0
- jruby-19mode
- jruby
gemfile:
- gemfiles/activemodel3.gemfile
- gemfiles/activemodel4.gemfile
matrix:
exclude:
- rvm: 1.9.0
gemfile: gemfiles/activemodel4.gemfile
- rvm: jruby-19mode
gemfile: ge... |
66aa6cf0-34e5-486d-b0aa-0e260288ebf8 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- jruby-1.7.2
- rbx-19mode
```
Add some new Travis targets | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-1.7.2
- jruby-1.7.4
- rbx-19mode
``` |
b1f9c413-5bf4-4a7c-b76b-8dfef1f73977 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
sudo: false
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//./},flake8,pydocstyle
- coveralls
matrix:
fast_finish: true
```
Add Python 3.7 to the test matrix | ```yaml
language: python
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//./},flake8,pydocstyle
- coveralls
matrix:
fast_finish: true
include:
- python: 2.7
dist: trusty
sudo: false
- python: 3.3
dist: trusty
sudo: false
- python: 3.4
d... |
1bf6de55-25d0-4bad-9252-f8ce5112a2bb | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
```
Test with latest Node.js 6 on Travis CI. | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
``` |
9e60801c-0343-47ac-896d-20e5871ebef2 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.8"
- "0.9"
- "0.10"
script: "npm run-script ci"```
Drop node 0.8 support so we can use ^ npm versions | ```yaml
language: node_js
node_js:
- "0.9"
- "0.10"
script: "npm run-script ci"
``` |
5b22056f-5546-4155-9acc-1b647eaaef27 | {
"language": "YAML"
} | ```yaml
sudo: false
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
cache:
directories:
- vendor
before_script:
- composer install --dev --no-interaction --prefer-source
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist --colors --coverage-clover=coverage.clover
after_script:
- wget https://scr... | ```yaml
sudo: false
language: php
php:
- 5.5
- 5.6
- hhvm
cache:
directories:
- vendor
before_script:
- composer install --dev --no-interaction --prefer-source
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist --colors --coverage-clover=coverage.clover
after_script:
- wget https://scrutiniz... |
38d36aea-a99e-4ab1-9de7-1936d31e66cf | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
before_script: make
script: make test
env:
global:
- SAUCE_USERNAME=github-fetch
- SAUCE_ACCESS_KEY=c3d37f93-0c2e-4834-9da5-eddc0d8c6299
matrix:
- PHANTOMJS=1
- SAUCE_PLATFORM="Windows 7" SAUCE_BROWSER="firefox" SAUCE_VERSION=""
- SAUCE_PLATFORM="Windows 7" ... | ```yaml
sudo: false
language: node_js
before_script: make
script: make test
deploy:
provider: npm
email: mislav.marohnic@gmail.com
api_key:
secure: gt9g5/bXhxSKjxfFSPCdpWGJKBrSG8zdGRYgPouUgRqNeD2Ff4Nc8HGQTxp0OLKnP/jJ5FIru5jUur6LWzJCyEd+aNUEvFf5J078m3pzHN9AP2fiWUkKXcc5lKV0PQnI+JDRxJwd/PggtjubrneGfCzyFoys9apRrd... |
fd6024c1-0cd2-4077-aa9b-def1d3ed8f55 | {
"language": "YAML"
} | ```yaml
language: ruby
addons:
code_climate:
repo_token: 46c8b29dd6711f35704e7c5a541486cbbf2cff8b2df8ce755bfc09917d3c1cbb
branches:
only:
- master
- /.+-stable$/
rvm:
- 1.8.7
- 1.9.3
- 2.1.1
bundler_args: --without development
before_install: gem install bundler
script: bundle exec rake spec
```
Up... | ```yaml
language: ruby
addons:
code_climate:
repo_token: 46c8b29dd6711f35704e7c5a541486cbbf2cff8b2df8ce755bfc09917d3c1cbb
branches:
only:
- master
- /.+-stable$/
rvm:
- 1.8.7
- 1.9.3
- 2.1.1
bundler_args: --without development
before_install:
- if [ "$TRAVIS_RUBY_VERSION" == "1.8.7" ]; then gem u... |
c05bdeb3-8753-4d38-8800-e99ea61d5cb6 | {
"language": "YAML"
} | ```yaml
language: php
dist: trusty
php:
- 5.6
- 7.0
- 7.1
- 7.2
env:
- DB=pdo/mysql
- DB=pdo/pgsql
- DB=pdo/sqlite
sudo: false
before_script:
- sh -c "composer install --dev --no-progress"
- sh -c "if [ '$DB' = 'pdo/pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS ci_test;' -U postgres; fi"
- s... | ```yaml
language: php
dist: trusty
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
env:
- DB=pdo/mysql
- DB=pdo/pgsql
- DB=pdo/sqlite
sudo: false
before_script:
- sh -c "composer install --dev --no-progress"
- sh -c "if [ '$DB' = 'pdo/pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS ci_test;' -U postgres; f... |
a6c0ab35-54a2-4ff6-9534-314e01270079 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
script: py.test
```
Integrate coverage reporting to codecov | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
script: py.test --cov=fiscalyear
``` |
7785b7f3-87a1-4e2c-84e1-7957b34bcee3 | {
"language": "YAML"
} | ```yaml
language: go
go:
# - 1.0 # works, but not supported by testify
# - 1.1 # works, but doesn't do -coverprofile
- 1.2
- 1.3
# - tip # works, but cover has moved in tip :(
before_install:
- go get github.com/stretchr/testify/require
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/govera... | ```yaml
language: go
sudo: false
go:
# - 1.0 # works, but not supported by testify
# - 1.1 # works, but doesn't do -coverprofile
- 1.2
- 1.3
# - tip # works, but cover has moved in tip :(
before_install:
- go get github.com/stretchr/testify/require
- go get github.com/axw/gocov/gocov
- go get github.com/... |
faa7f941-8845-4d17-bdc7-076d1521dc4c | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '6'
- '8'
- '10'
- 'node'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
```
Drop node.js 6 support, add 12 (semver-major) | ```yaml
language: node_js
node_js:
- '8'
- '10'
- '12'
- 'node'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
``` |
4ab58982-c1f5-445d-9e3e-3855763b85b8 | {
"language": "YAML"
} | ```yaml
language: php
php:
- '7.1'
- '7.0'
- '5.6'
- '5.5'
- hhvm
- nighly
env:
```
Configure PHPUnit in Travis file | ```yaml
language: php
php:
- '7.1'
- '7.0'
- '5.6'
- '5.5'
- hhvm
- nighly
env:
global:
- PHPUNIT_BIN='vendor/bin/phpunit'
- PHPUNIT_CONFIG='phpunit.xml'
- PHPUNIT_FLAGS='--stop-on-failure --verbose'
before_script:
- composer config --global repo.packagist composer https://pack... |
51023554-7f20-4d7b-9874-478ca13ff0ce | {
"language": "YAML"
} | ```yaml
language: java
before_install: "git clone -b travis `git config --get remote.origin.url` target/travis"
script: ./travis.sh
jdk:
- openjdk6
- openjdk7
- oraclejdk8
# whitelist
branches:
only:
- master
env:
global:
- secure: "ELThTQqmQjdhMXK+eRL5uCC5ygUHacpmx2QLVFfiXmMiSUH++F4FhaP7wLxPLPTWePqw7dtJ... | ```yaml
language: java
before_install: "git clone -b travis `git config --get remote.origin.url` target/travis"
script: "sh ./travis.sh"
jdk:
- openjdk6
- openjdk7
- oraclejdk8
# whitelist
branches:
only:
- master
env:
global:
- secure: "ELThTQqmQjdhMXK+eRL5uCC5ygUHacpmx2QLVFfiXmMiSUH++F4FhaP7wLxPLPTWePq... |
30aed061-bed7-4ee8-8abe-9e0aa488569f | {
"language": "YAML"
} | ```yaml
---
env:
global:
- CC_TEST_REPORTER_ID=76c3cb8a84b67e1e18aadacbe5a77861bc723dc1448f044bae995795b261569b
language: ruby
sudo: false
bundler_args: --without yard guard benchmarks
before_install: "gem install bundler -v '< 2.0'"
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test... | ```yaml
---
env:
global:
- CC_TEST_REPORTER_ID=76c3cb8a84b67e1e18aadacbe5a77861bc723dc1448f044bae995795b261569b
language: ruby
sudo: false
bundler_args: --without yard guard benchmarks
before_install: "gem install bundler"
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-l... |
47714116-4952-4a57-a77b-58714ec352d8 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
cache:
directories:
- node_modules
node_js:
- "10"
- "12"
- "14"
os:
- "linux"
- "win"
script: npm run test
matrix:
include:
# reports combined coverage report to coveralls (Node older, stable, latest)
- os: osx
node_js:
- "14"
sc... | ```yaml
sudo: false
language: node_js
cache:
directories:
- node_modules
node_js:
- "14"
script: npm run coverage
``` |
2ba34518-e343-4e59-9157-3d5bc4b1a9b8 | {
"language": "YAML"
} | ```yaml
env:
# - GHCVER=7.2.2 # not supported by haskell-src-exts
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.4
- GHCVER=7.10.1
- GHCVER=head
script:
- wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
```
Allow failures with GHC HEAD (QuickCheck no longer inst... | ```yaml
env:
# - GHCVER=7.2.2 # not supported by haskell-src-exts
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.4
- GHCVER=7.10.1
- GHCVER=head
matrix:
allow_failures:
- env: GHCVER=head
script:
- wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
``` |
57c686a8-e952-42ad-bb4d-83e4361db843 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "6"
- "5"
- "4"
- "0.12"
```
Drop Node v0.12 from CI | ```yaml
language: node_js
node_js:
- "6"
- "5"
- "4"
``` |
bee1cbce-39be-45f8-b938-243da345d0fc | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.2.1
- 2.1.5
- 2.0.0
- jruby-19mode
- jruby-head
services:
- redis-server
env:
global:
- REDIS_URL="redis://127.0.0.1:6379/0"
notifications:
email: false
```
Remove jruby-19mode from Travis config | ```yaml
language: ruby
rvm:
- 2.2.1
- 2.1.5
- 2.0.0
- jruby-head
services:
- redis-server
env:
global:
- REDIS_URL="redis://127.0.0.1:6379/0"
notifications:
email: false
``` |
7ff9c362-a127-4d7c-b167-b505635281bd | {
"language": "YAML"
} | ```yaml
language: python
python:
- '2.7'
env:
- DJANGO_SETTINGS_MODULE='bluebottle.settings.testing'
install:
- pip install --upgrade setuptools --use-mirrors
- pip install -q nose
- pip install -q django==1.5.5
before_script:
- npm install
- touch bluebottle/settings/secrets.py
script:
- python setup.py test
- grunt t... | ```yaml
language: python
python:
- '2.7'
env:
- DJANGO_SETTINGS_MODULE='bluebottle.settings.testing'
install:
- pip install --upgrade setuptools --use-mirrors
- pip install -q nose
- pip install -q django==1.5.5
before_script:
- npm install
- echo "SECRET_KEY = 'secret key'" > bluebottle/settings/secrets.py
script:
- p... |
f0060b3c-3738-4b35-a72f-d032f413c01d | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
cache: bundler
branches:
only:
- master
before_install:
- gem update --system
- gem install bundler
rvm:
- 2.4.3
script:
- bundle install --jobs=3 --retry=3
- bundle exec rake build
- bundle exec rake driver:cycle
```
Test with Ruby 2.4.4 and exclude gem groups w... | ```yaml
sudo: false
language: ruby
cache: bundler
branches:
only:
- master
before_install:
- gem update --system
- gem install bundler
rvm:
- 2.4.4
bundler_args: --jobs=7 --retry=3 --without docs debug
script:
- bundle exec rake build
- bundle exec rake driver:cycle
``` |
6e2b7929-0e3e-454d-aaa9-3ba76af6fe22 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
# Right now python nightly is not able to install lxml, cryptography, and cffi.
# Ignore it for the moment.
# - "nightly"
# command to install dependencies
install:
- "pip install coveralls"
- "pip install -e ./"
# command to run t... | ```yaml
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
# Right now python nightly is not able to install lxml, cryptography, and cffi.
# Ignore it for the moment.
# - "nightly"
# command to install dependencies
install:
- "pip install coveralls"
- "pip install -e ./"
# command to run t... |
4f7476c9-330d-413b-a080-a0f064a94bc8 | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
python:
- "3.5"
- "3.6"
- "pypy3"
env:
- DJANGO="1.11"
- DJANGO="2.0"
- DJANGO="2.1"
matrix:
include:
- python: 2.7
env: DJANGO="1.11"
- python: 3.7
env: DJANGO="2.0"
dist: xenial
sudo: true
- python: 3.7
env: DJANGO="2.1"
... | ```yaml
dist: xenial
sudo: false
language: python
python:
- "3.5"
- "3.6"
- "pypy3.5-6.0"
env:
- DJANGO="1.11"
- DJANGO="2.0"
- DJANGO="2.1"
matrix:
include:
- python: 2.7
env: DJANGO="1.11"
- python: 3.7
env: DJANGO="2.0"
- python: 3.7
env: DJANGO="2.1"
branches:
only:
... |
c9fcbd7d-f136-489b-9dc9-eaacd86cda20 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar update
script: phpunit
notification:
email: "gabriel@codeconcoction.com"```
Add testing for PHP 5.5 (allowing failures) and tweak before script | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
before_script:
- COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --dev install
script: phpunit
notification:
email: "gabriel@codeconcoction.com"``` |
447aa7d4-6dbe-4b82-b713-3954fdb55741 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.4
- 0.5
- 0.6
before_install:
- sudo apt-get update
- sudo apt-get install php-pear
- sudo pear upgrade PEAR
- sudo pear channel-discover pear.phpunit.de
- sudo pear channel-discover pear.symfony-project.com
- sudo pear install --alldeps phpunit/PHPUnit
script: "... | ```yaml
language: node_js
node_js:
- 0.4
- 0.6
- 0.7
before_install:
- sudo apt-get update
- sudo apt-get install php-pear
- sudo pear upgrade PEAR
- sudo pear channel-discover pear.phpunit.de
- sudo pear channel-discover pear.symfony-project.com
- sudo pear install --alldeps phpunit/PHPUnit
- sudo ... |
ca3231e0-6deb-439a-8bfa-e458aa7fe245 | {
"language": "YAML"
} | ```yaml
language: bash
script:
- make lint test
```
Add CI to the charts' repository | ```yaml
# From https://github.com/kubernetes/charts/blob/master/.travis.yml
language: go
go:
- 1.6
before_install:
- export GLIDE_VERSION="0.10.1"
- ls $GOPATH/src/
- wget "https://github.com/Masterminds/glide/releases/download/$GLIDE_VERSION/glide-$GLIDE_VERSION-linux-amd64.tar.gz"
- mkdir -p $HOME/bin
... |
4ffc8a5c-7147-4be7-8b8d-91477deebb45 | {
"language": "YAML"
} | ```yaml
sudo: false
cache: bundler
language: ruby
dist: trusty
rvm:
- jruby-9.1.13.0
- jruby-head
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- rbx-3
env:
global:
- JRUBY_OPTS='--debug -J-Xmx1000M' # get more accurate coverage data in JRuby
matrix:
- 'TASK=spec'
- 'TASK=ascii_spec'
... | ```yaml
sudo: false
cache: bundler
language: ruby
dist: trusty
rvm:
- jruby-9.1.13.0
- jruby-head
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- rbx-3
env:
global:
- JRUBY_OPTS='--debug -J-Xmx1000M' # get more accurate coverage data in JRuby
matrix:
- 'TASK=spec'
- 'TASK=ascii_spec'
... |
28a252fa-6c8b-4e38-9e32-3719e484e752 | {
"language": "YAML"
} | ```yaml
rvm:
- 1.9.3
- 1.8.7
branches:
only:
- master
env:
- DB=postgres
- DB=mysql
- DB=sqlite3
gemfile:
- gemfiles/Gemfile.rails-3.0.rb
- gemfiles/Gemfile.rails-3.1.rb
- gemfiles/Gemfile.rails-3.2.rb
script: "bundle exec rake db:reset db:up test"
```
Set up the database before running the te... | ```yaml
rvm:
- 1.9.3
- 1.8.7
branches:
only:
- master
env:
- DB=postgres
- DB=mysql
- DB=sqlite3
gemfile:
- gemfiles/Gemfile.rails-3.0.rb
- gemfiles/Gemfile.rails-3.1.rb
- gemfiles/Gemfile.rails-3.2.rb
before_script: 'bundle exec rake db:reset db:up'
script: 'bundle exec rake test'
``` |
1d5fbc1c-cb03-4300-8033-ed3a6c2a1af1 | {
"language": "YAML"
} | ```yaml
---
language: bash
script:
- bin/fetch-configlet
- bin/configlet .
sudo: false
```
Call configlet subcommand on CI | ```yaml
---
language: bash
script:
- bin/fetch-configlet
- bin/configlet lint .
sudo: false
``` |
c5d44877-6daf-4ca7-936d-8dde880842a9 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
script: "rspec spec/*_spec.rb"
```
Allow Travis to fail on jruby | ```yaml
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby-18mode
- rvm: jruby-19mode
script: "rspec spec/*_spec.rb"
``` |
59dcbbc8-e58e-4c21-bf56-323d25601f74 | {
"language": "YAML"
} | ```yaml
language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- wget http://get.sensiolabs.org/php-cs-fixer.phar -O php-cs-fixer.phar
- composer self-update
- composer install --prefer-source --no-interaction --dev
script:
- php php-cs-fixer.phar fix --level=psr2 --dry-run -... | ```yaml
language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- wget http://get.sensiolabs.org/php-cs-fixer.phar -O php-cs-fixer.phar
- composer self-update
- composer install --prefer-source --no-interaction --dev
script:
- php php-cs-fixer.phar fix --level=psr2 --dry-run -... |
9241701d-e1fa-42ba-afda-7c102e1c10da | {
"language": "YAML"
} | ```yaml
dist: trusty
sudo: required
language: ruby
rvm: 2.6.5
bundler_args: --without development production
env:
- ELASTICSEARCH_URL=http://localhost:9250 ES_VERSION=2.4.5 ES_DOWNLOAD_URL=https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-$... | ```yaml
dist: trusty
sudo: required
language: ruby
rvm: 2.6.5
bundler_args: --without development production
env:
- ELASTICSEARCH_URL=http://localhost:9250 ES_VERSION=2.4.5 ES_DOWNLOAD_URL=https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-$... |
891afb82-d089-4f96-9fdf-b17bcd4e0a5f | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
branches:
only:
- master
- develop
before_script:
- composer install --no-interaction --prefer-source
- php app/console doctrine:database:create
- php app/console doctrine:schema:create
after_script:
- bin/coveralls -v
script... | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
branches:
only:
- master
- develop
before_script:
- composer install --no-interaction --prefer-source
- php app/console doctrine:database:create
- php app/console doctrine:schema:create
after_script:
- sh -c 'if [ "$TRAVIS_PHP... |
3b9116d3-9315-4051-8b69-f92bcebb08ae | {
"language": "YAML"
} | ```yaml
sudo: false
language: php
php:
- 5.6
- 7
env:
global:
- DB=sqlite
matrix:
- CORE_BRANCH=stable9 REPO=owncloud/core
- CORE_BRANCH=master REPO=owncloud/core
- CORE_BRANCH=stable9 REPO=nextcloud/server
- CORE_BRANCH=master REPO=nextcloud/server
matrix:
f... | ```yaml
sudo: false
language: php
php:
- 5.6
- 7
env:
global:
- DB=sqlite
matrix:
- CORE_BRANCH=stable9.1 REPO=owncloud/core
- CORE_BRANCH=master REPO=owncloud/core
- CORE_BRANCH=stable10 REPO=nextcloud/server
- CORE_BRANCH=master REPO=nextcloud/server
matrix:
... |
175058ea-ebf2-4ec9-90bd-c72ca900b3f7 | {
"language": "YAML"
} | ```yaml
language: objective-c
before_install:
- sudo easy_install cpp-coveralls
script:
- xctool test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx10.9
after_success:
- ./coveralls.rb --exclude-headers --exclude-folder Source/Tests
```
Build iOS, then Mac (measuring coverage for Mac). Ne... | ```yaml
language: objective-c
before_install:
- sudo easy_install cpp-coveralls
script:
- xcodebuild test -project Source/OCHamcrest.xcodeproj -scheme libochamcrest -sdk iphonesimulator7.0
- xctool test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx10.9
after_success:
- ./coveralls.rb -... |
8c2d9580-0be0-4a5a-a4f7-790ab5fe4784 | {
"language": "YAML"
} | ```yaml
notifications:
email: false
env:
global:
- OPENAS2_FILE_SYSTEM_RUN=False
matrix:
include:
- os: linux
dist: xenial
language: java
before_install:
- sudo apt-get update
- sudo apt list | grep jdk
- sudo apt-get -y install openjdk-8-jdk-headless
- su... | ```yaml
notifications:
email: false
env:
global:
- OPENAS2_FILE_SYSTEM_RUN=False
matrix:
include:
- os: linux
dist: xenial
language: java
before_install:
- sudo apt-get update
- sudo apt list | grep jdk
- sudo apt-get -y install openjdk-8-jdk-headless
- su... |
ab224a7e-52c4-4b48-9468-5943e94f6d0a | {
"language": "YAML"
} | ```yaml
language: csharp
sudo: required
dist: trusty
env:
- CLI_VERSION=latest
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
os:
- osx
osx_image: xcode7.3.1
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"... | ```yaml
language: csharp
sudo: required
dist: trusty
env:
- CLI_VERSION=latest
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
os:
- osx
osx_image: xcode7.3.1
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"... |
91c7500c-6b6a-441e-881e-cca627bf0540 | {
"language": "YAML"
} | ```yaml
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- 2.1.6
- 2.1.7
- 2.2.0
- 2.2.1
- 2.2.2
- 2.2.3
- jruby-19mode
env:
- ACTIVE_MODEL_VERSION='~> 3.2.0'
- ACTIVE_MODEL_VERSION='~> 4.0'
gemfile: Gemfile
notifications:
recipients:
- jeremy@tregunna.ca
```
... | ```yaml
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- 2.1.6
- 2.1.7
- 2.2.0
- 2.2.1
- 2.2.2
- 2.2.3
- jruby-19mode
env:
- ACTIVE_MODEL_VERSION='~> 3.2.0'
- ACTIVE_MODEL_VERSION='~> 4.0'
gemfile: Gemfile
notifications:
recipients:
- jeremy@tregunna.ca
``` |
d0aecda4-8633-40c5-aa8d-5670c903067a | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx
fast_finish: true
```
Use --dev for JRuby to speed up tests | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- jruby
- rbx
env:
global:
- JRUBY_OPTS='-J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -J-Djruby.compile.mode=OFF -J-Djruby.compile.invokedynamic=false'
matrix:
allow_failures:
- rvm: rbx
fast_finish: true
``` |
b49ea0b4-6d0e-454e-8b6b-916c4d688394 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php:
- 5.3
- 7.1```
Test PHP 7.1, allow failures while not stable released. | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: 5.3``` |
4a24edba-255e-4873-a0c3-53fc8d7e8dad | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode8.3
xcode_project: Babies.xcodeproj
xcode_scheme: Babies
script:
- xcodebuild clean test -sdk iphonesimulator -project Babies.xcodeproj -scheme Babies CODE_SIGNING_REQUIRED=NO
```
Update script to force xcodebuild use the simulator | ```yaml
language: objective-c
osx_image: xcode8.3
xcode_project: Babies.xcodeproj
xcode_scheme: Babies
script:
- xcodebuild clean test -project Babies.xcodeproj -scheme Babies -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3'
``` |
ca67d72e-76e3-49fe-b068-b88529aa8e03 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.5
- 5.5
- 7.0
- hhvm
before_script:
- composer install
script: vendor/bin/phpspec run
```
Include PHP 5.6 in Travis CI | ```yaml
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer install
script: vendor/bin/phpspec run
``` |
19805891-f76a-47cc-b912-a45c95f0e0cf | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '4'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
```
Build with Node.js 8 on Travis CI. | ```yaml
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
``` |
edd984ee-2373-4dc3-b4a5-df0f8e30883d | {
"language": "YAML"
} | ```yaml
language: ruby
env:
- CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7
bundler_args: --without sql benchmarks console tools
script: "bundle exec rake ci"
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
- ruby-head
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
ma... | ```yaml
language: ruby
env:
- CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7
bundler_args: --without sql benchmarks console tools
script: "bundle exec rake ci"
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
- ruby-head
- jruby-head
env:
global:
- JRUBY_OPTS='--dev ... |
4ff4cda4-85cb-4df8-8e21-1b02fedbc2aa | {
"language": "YAML"
} | ```yaml
language: node_js
os:
- linux
- osx
node_js:
- '6'
- '5'
- '4'
- '0.12'
```
Add Node.js v7 to Travis CI matrix | ```yaml
language: node_js
os:
- linux
- osx
node_js:
- '7'
- '6'
- '5'
- '4'
- '0.12'
``` |
30ca749c-c3f8-4237-81d4-c856184ef8ec | {
"language": "YAML"
} | ```yaml
language: scala
jdk:
- oraclejdk8
sbt_args: -Xmx2048M
before_script: ./make_credentials.sh
script:
- sbt test
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
- "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && sbt publish || true"
# If building master... | ```yaml
language: scala
jdk:
- oraclejdk8
sbt_args: -Xmx2048M
before_script: ./make_credentials.sh
script:
- sbt test
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
- "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && sbt publish || true"
# If building master... |
af0417cd-0902-4b26-b9f2-3f7c51c44476 | {
"language": "YAML"
} | ```yaml
language: java
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
```
Use OpenJDK8 for Travis CI | ```yaml
language: java
jdk:
- openjdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
``` |
d467ea25-2caa-499f-b711-6ead0e676592 | {
"language": "YAML"
} | ```yaml
dist: xenial
language: python
python:
- 3.6
- 3.7
addons:
apt-packages:
-sqlite3
before_install:
- sudo apt-get update
- sudo apt-get install gettext
- make install
- make migrate
- cd InvenTree && python3 manage.py createsuperuser --username InvenTreeAdmin --email adm... | ```yaml
dist: xenial
language: python
python:
- 3.6
- 3.7
addons:
apt-packages:
-sqlite3
before_install:
- sudo apt-get update
- sudo apt-get install gettext
- make install
- make migrate
- cd InvenTree && python3 manage.py createsuperuser --username InvenTreeAdmin --email adm... |
9a47b3ce-2976-4445-9e4d-a9a8adb81a40 | {
"language": "YAML"
} | ```yaml
---
cf-cli/cf-linux-amd64.tgz:
object_id: a258fe93-5046-424f-bac1-6fa28e307509
sha: f2e135bf6f30a95b8b6aafe36513a72f7aaf37c3
size: 4775798
golang/go1.4.linux-amd64.tar.gz:
object_id: 9cac4e5d-a0c1-4b44-9373-fd7428c0d986
sha: cd82abcb0734f82f7cf2d576c9528cebdafac4c6
size: 63289725
tmux/tmux:
object... | ```yaml
---
cf-cli/cf-linux-amd64.tgz:
object_id: 2a28bdcc-f8a6-406b-a865-0eae4fca4b60
sha: a5296502c3258d6e1701adfcce5f33b091f6d018
size: 4939902
golang/go1.4.linux-amd64.tar.gz:
object_id: 9cac4e5d-a0c1-4b44-9373-fd7428c0d986
sha: cd82abcb0734f82f7cf2d576c9528cebdafac4c6
size: 63289725
tmux/tmux:
object... |
048ae682-f1c9-4f22-bf80-5fd54406c86c | {
"language": "YAML"
} | ```yaml
language: "node_js"
node_js:
- "0.10"
- "0.8"
- "0.6"
- "0.4"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
```
Fix Travis CI for Node 0.6. | ```yaml
language: "node_js"
node_js:
- "0.10"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
``` |
118d985b-0e13-4b03-a196-df73a1aa8a6e | {
"language": "YAML"
} | ```yaml
language: node_js
node_js: node
script: gulp test
deploy:
- provider: script
script: scripts/deploy.sh
on:
repo: kranich/ComplexCurves
branch: master
skip_cleanup: true
before_install:
- openssl aes-256-cbc -K $encrypted_8bf83f689259_key -iv $encrypted_8bf83f689259_iv
-in .travis/github_deploy_k... | ```yaml
language: node_js
node_js: node
script: gulp test
deploy:
- provider: script
script: scripts/deploy.sh
on:
repo: kranich/ComplexCurves
branch: master
skip_cleanup: true
before_install:
- openssl aes-256-cbc -K $encrypted_8bf83f689259_key -iv $encrypted_8bf83f689259_iv
-in .travis/github_deploy_k... |
e05a5e1b-8594-4f8b-8412-453d56f42ff6 | {
"language": "YAML"
} | ```yaml
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
notifications:
recipients:
- kevin@rutherford-sofware.com
- wagner.andrew@gmail.com
irc: "irc.freenode.org#reek"
```
Make Travis CI notify Matijs of results. | ```yaml
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
notifications:
recipients:
- kevin@rutherford-sofware.com
- wagner.andrew@gmail.com
- matijs@matijs.net
irc: "irc.freenode.org#reek"
``` |
c5aacbaf-d73f-4f1b-b439-8cbbf4c9c158 | {
"language": "YAML"
} | ```yaml
Vince\Bundle\CmsBundle\Entity\Article:
type: mappedSuperclass
repositoryClass: Vince\Bundle\CmsBundle\Entity\Repository\ArticleRepository
fields:
title:
type: string
length: 255
slug:
type: string
length: 255
unique: true
... | ```yaml
Vince\Bundle\CmsBundle\Entity\Article:
type: mappedSuperclass
repositoryClass: Vince\Bundle\CmsBundle\Entity\Repository\ArticleRepository
fields:
title:
type: string
length: 255
slug:
type: string
length: 255
unique: true
... |
0baeacd3-11d9-42bc-8dc7-e30b645ce996 | {
"language": "YAML"
} | ```yaml
build:
environment:
php: '5.5.25'
dependencies:
# Runs before inferred commands
before: []
# Overwrites inferred commands
override: []
# Runs after inferred commands
after: []
# Run after dependencies
project_setup:
before:
... | ```yaml
build:
environment:
php: '5.5.25'
dependencies:
# Runs before inferred commands
before:
- sudo apt-get install -y memcached
# Overwrites inferred commands
override: []
# Runs after inferred commands
after: []
# Run after dependenc... |
0224eaf3-7053-47d6-9ec4-70dfbef62033 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1
- 2.2
```
Add ruby 2.3 2.4 2.5 | ```yaml
language: ruby
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
``` |
7906912c-02c0-465e-9af4-369195d10c89 | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
rvm:
- 2.1.5
- 2.2.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
addons:
postgresql: "9.3"
bundler_args: "--without development:production --deployment"
cache: bundler
before_install:
- gem update bundler
before_script:
- psql -c 'create database coursemol... | ```yaml
sudo: false
language: ruby
rvm:
- 2.1.5
- 2.2.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
addons:
postgresql: "9.3"
bundler_args: "--jobs=3 --retry=3 --without development:production --deployment"
cache: bundler
before_install:
- gem update bundler
before_script:
- psql -c 'create... |
2067e512-b6f2-4bec-b0f3-22f38de41c98 | {
"language": "YAML"
} | ```yaml
sudo: required
services:
- docker
language: python
python:
- 3.6
env:
DOCKER_COMPOSE_VERSION: 1.14.0
before_install:
- sudo apt-get update
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`u... | ```yaml
sudo: required
services:
- docker
language: python
python:
- 3.6
env:
DOCKER_COMPOSE_VERSION: 1.14.0
before_install:
- sudo apt-get update
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`u... |
960251d4-7368-43ec-b185-2f3791620202 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.2.2
before_install:
# Make sure everything's up to date.
- sudo apt-get update -qq
- sudo apt-get install python
- gem install bundler -v 1.10.5
install:
# Install Ansible.
- pip install ansible
```
Add comments to Travis CI config | ```yaml
language: ruby
rvm:
- 2.2.2
before_install:
# make sure everything's up to date
- sudo apt-get update -qq
# install Python
- sudo apt-get install python
# install Bundler
- gem install bundler -v 1.10.5
install:
# install Ansible
- pip install ansible
``` |
f2b4b9fe-a270-48c7-86ff-d3fd6910a96c | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.2.5
- 2.3.3
- 2.4.0
- 2.4.1
gemfile:
- test/gemfiles/rails-4.0
- test/gemfiles/rails-4.1
- test/gemfiles/rails-4.2
- test/gemfiles/rails-5.0
- test/gemfiles/rails-5.1
matrix:
exclude:
- rvm: 2.4.0
gemfile: test/gemfiles/rails-4.0
- rvm: 2.4.0
gemfile: test... | ```yaml
language: ruby
rvm:
- 2.2.5
- 2.3.3
- 2.4.0
- 2.4.1
gemfile:
- test/gemfiles/rails-4.0
- test/gemfiles/rails-4.1
- test/gemfiles/rails-4.2
- test/gemfiles/rails-5.0
- test/gemfiles/rails-5.1
- test/gemfiles/rails-5.2
matrix:
exclude:
- rvm: 2.4.0
gemfile: test/gemfiles/rails-4.0
- ... |
07992d03-6226-4952-9ab5-859b14ae09f0 | {
"language": "YAML"
} | ```yaml
language: php
php:
- '7.2'
- '7.3'
- '8.0'
env:
global:
- SYMFONY_VERSION="~5.0" ES_FILENAME_SUFFIX="-linux-x86_64"
matrix:
- ES_VERSION="7.2.1"
- ES_VERSION="7.2.1" SYMFONY_VERSION="~4.4"
- ES_VERSION="7.11.1"
- ES_VERSION="7.11.1" SYMFONY_VERSION="~4.4"
install:
- composer re... | ```yaml
language: php
php:
- '7.2'
- '7.3'
- '8.0'
env:
global:
- SYMFONY_VERSION="~5.0" ES_FILENAME_SUFFIX="-linux-x86_64"
matrix:
- ES_VERSION="7.2.1"
- ES_VERSION="7.2.1" SYMFONY_VERSION="~4.4"
- ES_VERSION="7.11.1"
- ES_VERSION="7.11.1" SYMFONY_VERSION="~4.4"
install:
- composer re... |
d24aa5e9-9931-46a9-b865-5575e34c7f9a | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.9.1
- 1.8.4
sudo: false
script:
- go vet ./...
- go test ./...
```
Build against 1.9.2 and 1.8.5 | ```yaml
language: go
go:
- 1.9.2
- 1.8.5
sudo: false
script:
- go vet ./...
- go test ./...
``` |
21a7b54d-bf04-4436-a905-511c8271dfa3 | {
"language": "YAML"
} | ```yaml
language: csharp
mono: none
dotnet: 2.0.0
script:
- dotnet build ./test/
# - dotnet test ./Cascara.Tests/Cascara.Tests.csproj
install:
- dotnet restore
# TODO: Add mono support
```
Test other dotnet core versions | ```yaml
language: csharp
mono: none
dotnet:
- latest
# .NET Core 2.1 SDK
- 2.1.300
# .NET Core 2.0 SDK
- 2.1.201
- 2.0.0
# What a stupid versioning convention...
branches:
only:
- master
- dev
install:
- dotnet restore
script:
- dotnet test ./test/
``` |
6aa2b77f-54d6-473b-bc1f-82acff41a3b0 | {
"language": "YAML"
} | ```yaml
leakDetectionExemptions:
- ruleId: 'application_secret'
filePaths:
- '/test/testapps/openplayapp/conf/application.conf'
- '/test/testapps/basicplayapp/conf/application.conf'
- ruleId: 'credential_1'
filePaths:
- '/test/.sbt/.credentials'
```
Enforce repo yaml privacy key. | ```yaml
leakDetectionExemptions:
- ruleId: 'application_secret'
filePaths:
- '/test/testapps/openplayapp/conf/application.conf'
- '/test/testapps/basicplayapp/conf/application.conf'
- ruleId: 'credential_1'
filePaths:
- '/test/.sbt/.credentials'
repoVisibility: public_0C3F0CE3E6E6448FAD341E7BF... |
67dda235-7696-4d04-b3cc-49251d50d301 | {
"language": "YAML"
} | ```yaml
language: node_js
matrix:
fast_finish: true
include:
- node_js: node
env: WEBPACK_VERSION=3 EXTRACT_TEXT_VERSION=2 BABEL_LOADER=7 FILE_LOADER=0.11
- node_js: 8
env: WEBPACK_VERSION=1 EXTRACT_TEXT_VERSION=1 BABEL_LOADER=6 FILE_LOADER=0.10
- node_js: 8
env: WEBPACK_VERSION=2 EXT... | ```yaml
language: node_js
matrix:
fast_finish: true
allow_failures:
- node_js: 4
include:
- node_js: node
env: WEBPACK_VERSION=3 EXTRACT_TEXT_VERSION=2 BABEL_LOADER=7 FILE_LOADER=0.11
- node_js: 8
env: WEBPACK_VERSION=1 EXTRACT_TEXT_VERSION=1 BABEL_LOADER=6 FILE_LOADER=0.10
- node_js:... |
a9c0a958-023c-4ae1-a0fa-556b11e7d3cd | {
"language": "YAML"
} | ```yaml
language: python
matrix:
fast_finish: true
include:
- sudo: false
script:
- ./mach test-tidy --no-progress --all
- ./mach test-tidy --no-progress --self-test
cache: false
- sudo: 9000
dist: trusty
script:
- ./mach build -d --verbose
- ./ma... | ```yaml
language: python
matrix:
fast_finish: true
include:
- sudo: false
script:
- ./mach test-tidy --no-progress --all
- ./mach test-tidy --no-progress --self-test
- bash etc/ci/check_no_panic.sh
- bash etc/ci/lockfile_changed.sh
- bash etc/ci/manifest_chang... |
87c7ce68-47de-458c-a3fb-fffcd1df7b75 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.1
script: bundle exec rake test
before_install:
- sudo apt-get update -qq
- sudo apt-get install webp
```
Update Ruby versions used for Travis CI | ```yaml
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
script: bundle exec rake test
before_install:
- sudo apt-get update -qq
- sudo apt-get install webp
``` |
f8cc3634-b6fd-4d0e-a4dc-113358b8ccb6 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
before_script:
# Install composer
- wget http://getcomposer.org/composer.phar
- php composer.phar update --prefer-stable
script:
- ./bin/phpmetrics src
- ./bin/phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfony... | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
#- 7.4
before_script:
# Install composer
- wget http://getcomposer.org/composer.phar
- php composer.phar update --prefer-stable
script:
- ./bin/phpmetrics src
- ./bin/phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfon... |
059db965-66e5-4cf9-94f0-d56f1736ba54 | {
"language": "YAML"
} | ```yaml
language: python
python: 3.3
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py32
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
- TOXENV=pep8
- TOXENV=py2pep8
- TOXENV=docs
install:
- pip install tox
script:
- tox
```
Comment out testing Python 3.4 on Travis until they have it | ```yaml
language: python
python: 3.3
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py32
- TOXENV=py33
# - TOXENV=py34
- TOXENV=pypy
- TOXENV=pep8
- TOXENV=py2pep8
- TOXENV=docs
install:
- pip install tox
script:
- tox
``` |
67c485f1-53ad-48a5-9597-a84ae6552737 | {
"language": "YAML"
} | ```yaml
dist: xenial
language: java
install:
- java --version
script:
- jshell ./build.jsh
after_success:
#- cd $TRAVIS_BUILD_DIR/demo/00-bootstrap
#- ./bootstrap.sh
- cd ${TRAVIS_BUILD_DIR}/demo/jigsaw-quick-start/greetings-world-with-main-and-test
- java ${TRAVIS_BUILD_DIR}/src/bach/Bach.java build
#- cd $TRAVIS... | ```yaml
dist: xenial
language: java
install:
- java --version
script:
- jshell ./build.jsh
after_success:
#- cd $TRAVIS_BUILD_DIR/demo/00-bootstrap
#- ./bootstrap.sh
- cd ${TRAVIS_BUILD_DIR}/demo/jigsaw-quick-start/greetings-world-with-main-and-test
- java ../../../src/bach/Bach.java build
#- cd $TRAVIS_BUILD_DIR/... |
8d9f3549-a5cf-44fe-9ff4-031781f450cd | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --p... | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interac... |
6b54ac36-4050-4fcd-9715-7916a1830a60 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.7"
dist: xenial
addons:
apt:
update: true
packages:
- r-base
- r-base-dev
- r-cran-yaml
env:
global:
- _R_CHECK_FORCE_SUGGESTS_: false
install:
- pip install --ignore-installed -r requirements.txt
script:
- python -m pip install . --n... | ```yaml
language: python
python:
- "3.7"
dist: xenial
env:
global:
- _R_CHECK_FORCE_SUGGESTS_: false
install:
- wget https://repo.continuum.io/miniconda/Miniconda3-4.3.27.1-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r... |
9b88f506-4549-4eb8-bbe0-2695c88152d2 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk7
before_script:
- sleep 15
- mongo gfk --eval 'db.addUser("gfk", "password");'
install:
- gradle clean build -Pdb.uri=mongodb://localhost/gfk -Pdb.username=gfk -Pdb.password=password```
Fix broken Travis build related to time out | ```yaml
language: java
jdk:
- oraclejdk7
before_script:
- mongo gfk --eval 'db.addUser("gfk", "password");'
install:
- gradle clean build -Pdb.uri=mongodb://localhost/gfk -Pdb.username=gfk -Pdb.password=password``` |
b72b67eb-453c-46f1-a8e5-f0b27e631a2b | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- travis_retry composer install --no-interaction --prefer-source
script:
- vendor/bin/phpspec run
- vendor/bin/phpunit
```
Use ubuntu precise for tests | ```yaml
language: php
dist: precise
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- travis_retry composer install --no-interaction --prefer-source
script:
- vendor/bin/phpspec run
- vendor/bin/phpunit
``` |
28a608a2-2ae8-4907-8305-11bc83f1d7d9 | {
"language": "YAML"
} | ```yaml
language: ruby
cache:
bundler: true
directories:
- vendor/bundle
rvm:
- 2.3.1
before_install:
- gem update --system '2.6.1'
- gem update bundler
- gem --version
script: "bundle exec rake test"
```
Add in more Ruby versions to test against. | ```yaml
language: ruby
cache:
bundler: true
directories:
- vendor/bundle
rvm:
- 2.3.2
- 2.2.6
- 2.1.9
- ruby-2.0.0-p648
before_install:
- gem update --system
- gem update bundler
- gem --version
script: "bundle exec rake test"
``` |
85cf3539-51cb-42d1-b179-8149ca23bc19 | {
"language": "YAML"
} | ```yaml
language: d
d:
- dmd-2.073.1
- ldc-1.1.0
script:
- dub build
```
Fix yaml for sure this time | ```yaml
language: d
d:
- dmd-2.073.1
- ldc-1.1.0
script:
- dub build``` |
5d4ada19-b58e-417b-8e81-c0554b5ca64d | {
"language": "YAML"
} | ```yaml
language: cpp
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- sudo apt-get -qq install libconfig++-dev libgtest-dev
... | ```yaml
language: cpp
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- sudo apt-get -qq install libconfig++-dev libgtest-dev-1... |
183d9683-2e99-4b9b-aa0d-9a2f187a2b36 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.12"
- "iojs"
script: "npm run test"
```
Add LLVM 3.5 to Travis configuration | ```yaml
language: node_js
node_js:
- "0.12"
- "iojs"
before_install:
# Setup for installing LLVM
- sudo apt-get update
- sudo apt-get install python-software-properties
- sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main' >> /etc/apt/sources.list"
- wget -O - http://llvm.o... |
f79bb9d8-279d-4b03-bb22-b1a38dc6b595 | {
"language": "YAML"
} | ```yaml
sudo: false
language: cpp
compiler:
- clang
- gcc
env:
- DEFINES=standard
- DEFINES=PUGIXML_WCHAR_MODE
- DEFINES=PUGIXML_COMPACT
script: make test defines=$DEFINES config=coverage -j2
after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov
```
Add OSX to Travis config | ```yaml
sudo: false
language: cpp
os:
- linux
- osx
compiler:
- clang
- gcc
env:
- DEFINES=standard
- DEFINES=PUGIXML_WCHAR_MODE
- DEFINES=PUGIXML_COMPACT
script: make test defines=$DEFINES config=coverage -j2
after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov
``` |
bef7dbd6-433e-4385-b88a-3ec4134bb83e | {
"language": "YAML"
} | ```yaml
language: ruby
cache: bundler
sudo: false
rvm:
- 2.2
- 2.3
```
Set correct version of rubies. | ```yaml
language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.4
- 2.3.0
``` |
aef47be6-31b4-4c33-bbcf-787f39c293cc | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- TARGET=test
matrix:
fast_finish: true
include:
- php: 7.0
env: TARGET=cs_dry_run
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_... | ```yaml
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- TARGET=test
matrix:
fast_finish: true
include:
- php: 7.0
env: TARGET=cs_dry_run
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_... |
cc42aeb4-3e7c-47d0-a8f9-3fdd43f9d981 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.12"
- "0.10"
- "iojs"```
Test webpack 1 and 2 | ```yaml
language: node_js
node_js:
- "0.12"
- "0.10"
- "iojs"
script:
- npm test
- npm rm webpack
- npm i webpack@2
- npm test
``` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.