doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
5f969b3f-595b-484e-9e18-3047191d9a7e | {
"language": "YAML"
} | ```yaml
language: "node_js"
node_js:
- 0.4
- 0.6
```
Test on Node 0.8 in Travis CI. | ```yaml
language: "node_js"
node_js:
- 0.4
- 0.6
- 0.8
``` |
a4c567f8-9380-41e4-8b67-dd92e3149282 | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
cache:
- pip
python:
- "2.7"
addons:
postgresql: "9.4"
apt:
packages:
- "postgresql-9.4-postgis-2.3"
env:
- DJANGO_VERSION=1.10
db_name=calaccess_website
db_user=postgres
db_password=''
rds_host=localhost
install:
- pip install -r requirements.txt
- pi... | ```yaml
language: python
sudo: false
cache:
- pip
python:
- "2.7"
addons:
postgresql: "9.4"
apt:
packages:
- "postgresql-9.4-postgis-2.3"
env:
- DJANGO_VERSION=1.11
db_name=calaccess_website
db_user=postgres
db_password=''
rds_host=localhost
install:
- pip install -r requirements.txt
- pi... |
8b429838-1ed2-4b3f-8046-db93d9aeaf98 | {
"language": "YAML"
} | ```yaml
language: go
sudo: false
matrix:
include:
- go: 1.4
- go: 1.5
- go: 1.6
- go: tip
install:
- go get golang.org/x/tools/cmd/vet
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- go tool vet .
- go test -v -race ./...
```
Exclude vendored deps from Go tools. | ```yaml
language: go
sudo: false
matrix:
include:
- go: 1.4
- go: 1.5
- go: 1.6
- go: tip
install:
- go get golang.org/x/tools/cmd/vet
script:
- go get -t -v $(go list ./... | grep -v '/vendor/')
- diff -u <(echo -n) <(gofmt -d .)
- go vet $(go list ./... | grep -v '/vendor/')
- go test -... |
f02bba5d-8e38-43c3-83ab-d0fa87436c23 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
sudo: false
branches:
only:
- master
- develop
```
Stop CI with OracleJDK7 on TravisCI | ```yaml
language: java
jdk:
- openjdk7
- oraclejdk8
sudo: false
branches:
only:
- master
- develop
``` |
82233c1b-4279-486b-bfcd-3bafa53cd192 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- "7"
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
- "iojs"
before_install:
- npm install -g npm@^3
```
Support only stable and latest node versions | ```yaml
language: node_js
sudo: false
node_js:
- "node"
- "6"
- "4"
- "0.12"
- "0.10"
before_install:
- npm install -g npm@^3
``` |
411b7e32-974b-4fb7-9bad-f7ce8f79b3c3 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- openjdk6
- openjdk7
- openjdk8
- oraclejdk7
- oraclejdk8
script: mvn verify -Dmaven.javadoc.skip=true```
Remove Open JDK 8 (not supported on Travis) | ```yaml
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
script: mvn verify -Dmaven.javadoc.skip=true``` |
ae10f558-79b8-48e0-bf85-84d63323487a | {
"language": "YAML"
} | ```yaml
language: cpp
dist: trusty
sudo: false
matrix:
include:
- os: linux
compiler: gcc
# - os: linux
#compiler: clang
script:
- (cd bigtable/api && cmake . && make)
addons:
apt:
packages:
- vim
- curl
- git-core
- make
- gcc
- g++
- bui... | ```yaml
language: cpp
dist: trusty
sudo: false
matrix:
include:
- os: linux
compiler: gcc
# - os: linux
#compiler: clang
script:
- (cd bigtable/api && cmake . && make)
addons:
apt:
packages:
- vim
- curl
- git-core
- make
- gcc
- g++
- bui... |
35c7b554-3697-44bf-96a2-b7feb3501a9b | {
"language": "YAML"
} | ```yaml
language: elixir
elixir:
- 1.4
otp_release:
- 19.3
- 18.3
env:
- CACHE_ENABLED=true
- CACHE_ENABLED=true TEST_OPTS='--exclude redis_pubsub --include phoenix_pubsub --no-start' PUBSUB_BROKER=phoenix_pubsub
- CACHE_ENABLED=false TEST_OPTS='--only integration'
services:
- redis-server
script:
- mix... | ```yaml
dist: trusty
language: elixir
elixir:
- 1.4
otp_release:
- 19.3
- 18.3
env:
- CACHE_ENABLED=true TEST_OPTS='--exclude phoenix_pubsub --exclude ecto_persistence'
- CACHE_ENABLED=false TEST_OPTS='--only integration'
- CACHE_ENABLED=true PUBSUB_BROKER=phoenix_pubsub TEST_OPTS='--no-start --exclude re... |
4544843b-1fa7-40fa-9e1a-e8ef9d6e5f85 | {
"language": "YAML"
} | ```yaml
language: php
php:
- '5.6'
- '7.0'
- '7.1'
install: composer install
script: vendor/bin/phpunit --verbose tests```
Add php 7.2 to Travis | ```yaml
language: php
php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
install: composer install
script: vendor/bin/phpunit --verbose tests``` |
56cd75c7-8ff3-41dc-98a5-d1e0c16f1745 | {
"language": "YAML"
} | ```yaml
install:
- apt-get install libxml2-utils
script:
- xmllint --noout *.xsd
```
Fix dependency installation for Travis | ```yaml
install:
- sudo apt-get install libxml2-utils
script:
- xmllint --noout *.xsd
``` |
c5c31ff3-899d-44b9-9d75-9b40d23b3531 | {
"language": "YAML"
} | ```yaml
language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
jdk: oraclejdk8
- os: linux
jdk: openjdk8
- os: linux
jdk: oraclejdk9
- os: linux
jdk: oraclejdk10
- os: linux
jdk: openjdk10
env:
- TERM=dumb
script:
... | ```yaml
language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
jdk: oraclejdk8
- os: linux
jdk: openjdk8
- os: linux
jdk: oraclejdk9
- os: linux
jdk: oraclejdk10
- os: linux
jdk: openjdk10
env:
- TERM=dumb
script:
... |
0565734c-c50b-408f-9d41-a8eed67f281f | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- 7.1
- hhvm
before_script:
- composer update
script: ./vendor/bin/phpunit -c tests/phpunit.xml
```
Fix for HHVM Travis build | ```yaml
language: php
dist: trusty
php:
- 5.4
- 5.5
- 5.6
- 7
- 7.1
- hhvm
before_script:
- composer update
script: ./vendor/bin/phpunit -c tests/phpunit.xml
``` |
d69b27b4-9637-41bd-b72e-07753926cedd | {
"language": "YAML"
} | ```yaml
language: php
sudo: false
git:
submodules: false
cache:
directories:
- vendor
php:
- 7.2
- 7.4
install:
- composer --no-interaction install
script:
- vendor/bin/phpunit
- vendor/bin/php-cs-fixer fix --dry-run -v --diff
```
Test CI against the same 7.2 patch we specify as minimum | ```yaml
language: php
sudo: false
git:
submodules: false
cache:
directories:
- vendor
php:
- 7.2.24
- 7.4
install:
- composer --no-interaction install
script:
- vendor/bin/phpunit
- vendor/bin/php-cs-fixer fix --dry-run -v --diff
``` |
83d5ad8b-d058-4684-b490-67f8409bb712 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "12.14.0"
- "8.16.2"
- "6.14.4"
- "4.9.1"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4
- export PATH="$HOME/.yarn/bin:$PATH"
```
Change yarn version back to 1.12.3 | ```yaml
language: node_js
node_js:
- "12.14.0"
- "8.16.2"
- "6.14.4"
- "4.9.1"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3
- export PATH="$HOME/.yarn/bin:$PATH"
``` |
1cd1bcb5-3a7c-4145-be0c-f144ffaf4f20 | {
"language": "YAML"
} | ```yaml
language: python
# need mongo for the popit-api we launch in the background
services:
- mongodb
# 2.6.1 is used on our servers
python:
- "2.6"
- "2.7"
env:
- DJANGO_VERSION=">=1.3,<1.4"
- DJANGO_VERSION=">=1.4,<1.5"
- DJANGO_VERSION=">=1.5,<1.6"
# command to install dependencies
install:
- pip... | ```yaml
language: python
# need mongo for the popit-api we launch in the background
services:
- mongodb
# 2.6.1 is used on our servers
python:
- "2.6"
- "2.7"
# Should only really uncomment this just before a release - no point making
# Travis do more work than is needed.
#
# env:
# - DJANGO_VERSION=">=1.3,<... |
f95a30d9-7948-4362-8ecb-d83017cb7a68 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer update $COMPOSER_OPTS
script:
- rm -fv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- vendor/bin/phpunit
- vendor/bi... | ```yaml
language: php
php:
- 7.2
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer update $COMPOSER_OPTS
script:
- rm -fv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- vendor/bin/phpunit
- v... |
47240add-71ba-42cc-8277-28ba1f119cc9 | {
"language": "YAML"
} | ```yaml
language: python
dist: xenial
addons:
apt:
update: true
packages: libapr1-dev libaprutil1-dev libdb5.3-dev liblz4-dev libsasl2-dev libperl-dev libserf-dev libsqlite3-dev libtool python-all-dev libneon27-gnutls-dev libutf8proc-dev
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
env:... | ```yaml
language: python
dist: xenial
addons:
apt:
update: true
packages: libapr1-dev libaprutil1-dev libdb5.3-dev liblz4-dev libsasl2-dev libperl-dev libserf-dev libsqlite3-dev libtool python-all-dev libneon27-gnutls-dev libutf8proc-dev
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
env:... |
053dcbf8-4583-49d0-b0c1-8776c807d63c | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
```
Add `nyc` to Travis CI. | ```yaml
sudo: false
language: node_js
node_js:
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
``` |
e2024c52-9157-45b1-b445-9671fbeb35f8 | {
"language": "YAML"
} | ```yaml
language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
- python: pypy
- python: pypy3
cache:
directories:
- $HOME/.cache/pip
branches:
only:
- master
install:
- if [[ $TRAVIS_PYTH... | ```yaml
language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
- python: pypy
- python: pypy3
cache:
directories:
- $HOME/.cache/pip
branches:
only:
- master
install:
- if [[ $TRAVIS_PYTH... |
63ffa458-a28f-4629-83be-722fd142e308 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.0
- 5.6
env:
global:
- COMPOSER_OPTIONS=""
matrix:
include:
- php: 5.6
env: COMPOSER_OPTIONS="--prefer-lowest"
- php: nightly
allow_failures:
- php: nightly
fast_finish: true
cache:
directories:
- ... | ```yaml
language: php
php:
- 7.1
- 7.0
- 5.6
env:
global:
- COMPOSER_OPTIONS=""
matrix:
include:
- php: 5.6
env: COMPOSER_OPTIONS="--prefer-lowest"
- php: nightly
allow_failures:
- php: nightly
fast_finish: true
cache:
directories:
- ... |
cd1f5ab6-66f3-45a5-9cb6-67db08e07fe4 | {
"language": "YAML"
} | ```yaml
language: scala
scala:
- 2.11.6
- 2.11.5
- 2.11.4
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
script: "sbt clean coverage test"
after_success: "sbt coveralls"
```
Build for latest scala (2.11.6 and 2.11.7) and JDK 8 | ```yaml
language: scala
scala:
- 2.11.7
- 2.11.6
jdk:
- oraclejdk8
- openjdk8
script: "sbt clean coverage test"
after_success: "sbt coveralls"
``` |
69d69a7e-ac44-4e21-8cbb-0e6692e576d8 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
before_install:
- openssl aes-256-cbc -K $encrypted_84a2848b3b48_key -iv $encrypted_84a2848b3b48_iv -in tests/travisci-gcloud_requests.json.enc -out travisci-gcloud_requests.json -d
- export GOOGLE_APPLICATION_CREDENTIALS=travisci-gcloud_requests.json
- export DATASTORE_... | ```yaml
language: python
python:
- "2.7"
before_install:
- openssl aes-256-cbc -K $encrypted_84a2848b3b48_key -iv $encrypted_84a2848b3b48_iv -in tests/travisci-gcloud_requests.json.enc -out travisci-gcloud_requests.json -d
- export JSON_CREDENTIALS_FILE=travisci-gcloud_requests.json
- export DATASTORE_HOST=http... |
9b1ac5e5-389f-45b4-9258-6c22d7f44afa | {
"language": "YAML"
} | ```yaml
AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Science & Education
License: GPL-3.0-or-later
AuthorName: Vít Skalický
AuthorEmail: vit.skalicky@email.cz
SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh
IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues
AutoName: Better schedule
... | ```yaml
AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Science & Education
License: GPL-3.0-or-later
AuthorName: Vít Skalický
AuthorEmail: vit.skalicky@email.cz
SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh
IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues
AutoName: Better schedule
... |
75fcf36c-31e8-4b4f-bfe7-505773675ae8 | {
"language": "YAML"
} | ```yaml
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/symfony-bridge/.phpunit
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
env:
global:
- SYMFONY_PHPUNIT_DIR="$HOME/symfony-bridge/.phpunit"
matrix:
include:
- ... | ```yaml
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/symfony-bridge/.phpunit
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
env:
global:
- SYMFONY_PHPUNIT_DIR="$HOME/symfony-bridge/.phpunit"
matrix:
include:
- ... |
56c36153-2573-4135-adbf-2379956edf40 | {
"language": "YAML"
} | ```yaml
# Fake out Travis CI, since PHP isn't supported when using their Docker services
language: python
env:
- PHP_VERSION=5.4.45 ARCH=x86_64
- PHP_VERSION=5.4.45 ARCH=mips
- PHP_VERSION=5.5.32 ARCH=x86_64
- PHP_VERSION=5.5.31 ARCH=mips
- PHP_VERSION=5.6.18 ARCH=x86_64
- PHP_VERSION=5.6.17 ARCH=mips
- ... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-dist
script:
- mkdir -p build/logs
- ./vendor/bin/parallel-lint src tests
- ./vendor/bin/phpunit --verbose --coverage... |
e4cbe3b9-eb94-4ed1-83e5-5859d614e939 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "0.13"
- "4"
- '5'
install:
- npm install
before_script:
- npm install -g grunt-cli
script:
- grunt
notifications:
email:
on_success: always
on_failure: always```
Remove Version '0.13' not found | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- '5'
install:
- npm install
before_script:
- npm install -g grunt-cli
script:
- grunt
notifications:
email:
on_success: always
on_failure: always``` |
e1f960a0-4521-4237-8f37-a23c4047077a | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- stable
- '0.10'
- '0.12'
- '4.2.6'
```
Update Travis CI to use newer nodejs | ```yaml
sudo: false
language: node_js
node_js:
- stable
- '6'
- '7'
``` |
ba79cb7b-cf3f-4c10-881d-87de3e4678b7 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- 1.8.7
- ree```
Change Ruby versions to test in CI | ```yaml
language: ruby
rvm:
- 2.5.0
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-18mode
- jruby-19mode
- rbx-2
- 1.8.7
- ree
``` |
e122686b-1b99-4fed-af0a-01d9019fea17 | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- SPHINX=1.3.6
- SPHINX=1.4.9
- SPHINX=1.5.3
notifications:
email: false
irc: "irc.iiens.net#Clicky"
branches:
only:
- master
install:
- "pip install sphinx-testing" # required for tests
- "pip instal... | ```yaml
language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- SPHINX=1.3.6
- SPHINX=1.4.9
- SPHINX=1.5.3
notifications:
email: false
irc: "irc.iiens.net#Clicky"
branches:
only:
- master
install:
- "pip install sphinx-testing" # required for tests
- "pip instal... |
ee0c78eb-4563-4c79-982d-80341a2f7d1a | {
"language": "YAML"
} | ```yaml
branches:
except:
- rpi
language: generic
sudo: required
matrix:
include:
- os: linux
dist: trusty
env:
- SWIFT_VERSION=swift-3.1
SWIFT_BUILD=$SWIFT_VERSION-RELEASE-ubuntu14.04
SWIFT_URL=https://swift.org/builds/$SWIFT_VERSION-release/ubuntu1404/$SWIFT_VERS... | ```yaml
branches:
except:
- rpi
language: generic
sudo: required
env: SWIFT_VERSION=3.1
matrix:
include:
- os: linux
dist: trusty
- os: osx
osx_image: xcode8.3
env:
- OPENSSL_ROOT_DIR=$(brew --prefix openssl)
install:
- eval "$(curl -sL https://gist.githubusercontent.com/... |
60fc5a70-f68e-49d3-b66c-5854cf573162 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.3"
install:
- pip install -e git://github.com/TangledWeb/tangled.git
- pip install -e .
script: py.test
```
Fix pip install link for tangled | ```yaml
language: python
python:
- "3.3"
install:
- pip install git://github.com/TangledWeb/tangled.git#egg=tangled
- pip install .
script: py.test
``` |
b57234a4-1069-41c9-a1be-376eb9fc71d4 | {
"language": "YAML"
} | ```yaml
before_install:
- git submodule update --init --recursive
language: node_js
node_js:
- "0.10"
- "0.12"
before_script:
- npm install -g grunt-cli
```
Remove `git submodule update` call from Travis build | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
before_script:
- npm install -g grunt-cli
``` |
3fab2452-f372-427a-9236-bfcce8dde314 | {
"language": "YAML"
} | ```yaml
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- npm test
```
Test node v4 and v5 | ```yaml
---
language: node_js
node_js:
- "0.12"
- "4"
- "5"
sudo: false
cache:
directories:
- node_modules
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- npm test
``` |
266e58d2-32a5-491b-a5a2-31e5ddff8514 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '10'
- '12'
- '14'
- node
matrix:
include:
- name: Lint
node_js: 14
script: npm run lint
script: '(nvm i 14 && npm run build) && npm run ci:test'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
```
Fix copy/paste error in T... | ```yaml
language: node_js
node_js:
- '10'
- '12'
- '14'
- node
matrix:
include:
- name: Lint
node_js: 14
script: npm run lint
script: npm run ci:test
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
``` |
0698b6b3-4419-4d5f-b8ab-4f4e85619f86 | {
"language": "YAML"
} | ```yaml
language: c
install:
- sudo add-apt-repository -y ppa:ceph-ubuntu/dev
- sudo apt-get update > /dev/null
- sudo apt-get install mono-devel libleveldb-dev libleveldb1 nunit-console > /dev/null
script:
- xbuild leveldb-sharp.sln
- nunit-console bin/Debug/leveldb-sharp-tests.dll
```
Use level... | ```yaml
language: c
install:
- sudo sudo -s bash -c 'echo "deb http://http.debian.net/debian experimental main" >> /etc/apt/sources.list'
- sudo apt-get update > /dev/null
- sudo apt-get install mono-devel nunit-console > /dev/null
- sudo apt-get install -t experimental libleveldb-dev
script:
- xb... |
5fb1c2a2-70c1-486a-9085-88e1fa88d227 | {
"language": "YAML"
} | ```yaml
dist: trusty
group: beta
language: ruby
git:
submodules: false
script:
- bundle exec rake libffi
- bundle exec rake compile
- bundle exec rake test
- |
if [[ $(ruby -v) != *truffleruby* ]]; then
ITER=10 bundle exec rake bench:all
fi
- bundle exec rake types_conf && git --no-page... | ```yaml
dist: trusty
group: beta
language: generic
git:
submodules: false
matrix:
include:
- name: powerpc
before_install: |
docker run --rm --privileged multiarch/qemu-user-static:register --reset &&
docker build --rm -t ffi-powerpc -f spec/env/Dockerfile.powerpc .
script: |
... |
6dc6edad-377d-436b-b0f7-509f8691b4fe | {
"language": "YAML"
} | ```yaml
language: python
# this version of python is only used to run tox - the version specified by TOX_ENV
# is used to install and run tests
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=py36
- TOX_ENV=py37
- TOX_ENV=pypy
- TOX_ENV=coverage
... | ```yaml
language: python
# this version of python is only used to run tox - the version specified by TOX_ENV
# is used to install and run tests
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=py36
- TOX_ENV=py37
- TOX_ENV=pypy
- TOX_ENV=coverage
# command to install dependencies,... |
27ff6b07-604d-4c38-9b73-86cfcc5e07d2 | {
"language": "YAML"
} | ```yaml
language: java
sudo: required
jdk:
- oraclejdk8
env:
global:
- DISPLAY=:99.0
cache:
directories:
- $HOME/.m2
notifications:
email:
recipients:
- vitruv-build@ira.uni-karlsruhe.de
# Handle git submodules yourself
git:
submodules: false
# Enable UI
before_install:
-... | ```yaml
language: java
sudo: required
jdk:
- oraclejdk8
env:
global:
- DISPLAY=:99.0
cache:
directories:
- $HOME/.m2
notifications:
email:
recipients:
- vitruv-build@ira.uni-karlsruhe.de
# Handle git submodules yourself
git:
submodules: false
# Enable UI
before_install:
-... |
5107f701-149a-4a8e-8d8c-251e51159fff | {
"language": "YAML"
} | ```yaml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- rvm use 2.6.6
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
```
Update the version of ruby used to build project in Tra... | ```yaml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
``` |
69bd05df-5f08-4db0-86da-73feb81da7b9 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- ruby-head
- 2.4.3
- 2.3.6
- 2.2.9
- 2.1.10
before_install:
- gem update --system
install:
- bundle install --without development
addons:
apt_packages:
libmagic-dev
script:
- bundle exec parallel_rspec spec
```
Add ruby 2.5.0 to testing versions | ```yaml
language: ruby
rvm:
- ruby-head
- 2.5.0
- 2.4.3
- 2.3.6
- 2.2.9
- 2.1.10
before_install:
- gem update --system
install:
- bundle install --without development
addons:
apt_packages:
libmagic-dev
script:
- bundle exec parallel_rspec spec
``` |
92ea1f34-d2f8-4d14-8683-14ddf2afcaf6 | {
"language": "YAML"
} | ```yaml
language: rust
os:
- linux
- osx
rust:
- stable
- nightly
matrix:
exclude:
- rust: stable
env: FEATURE=nightly
allow_failures:
- os: osx
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/Library/Python/2.7/bin:$HOME/.local/bin:$PATH
script:
- travis-cargo... | ```yaml
language: rust
os:
- linux
- osx
rust:
- stable
- nightly
matrix:
exclude:
- rust: stable
env: FEATURE=nightly
allow_failures:
- os: osx
- rust: nightly
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/Library/Python/2.7/bin:$HOME/.local/bin:$PATH
scri... |
c9146ac1-7bf6-466b-ad09-6026b0fc51fb | {
"language": "YAML"
} | ```yaml
# Based on https://github.com/moteus/lua-travis-example
language: c
branches:
only:
- moon
env:
global:
- LUAROCKS=2.3.0
- LUA=lua5.1
before_install:
- source .travis/setenv_lua.sh
install:
- luarocks install moonscript
script:
- bash ./build.sh
notifications:
irc:
channels:
- ... | ```yaml
# Based on https://github.com/moteus/lua-travis-example
language: c
branches:
only:
- moon
env:
global:
- LUAROCKS=2.3.0
- LUA=lua5.1
before_install:
- source .travis/setenv_lua.sh
install:
- luarocks install moonscript
script:
- bash ./build.sh
notifications:
irc:
channels:
- ... |
dc0c13aa-ffa3-4118-a3ed-d4e1774fb651 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.6
- '7'
mysql:
database: activecollab_promises_test
username: root
encoding: utf8mb4
install: composer install --dev
before_script:
# create the database
- mysql -e 'create database if not exists activecollab_promises_test;'
script: phpunit -c test/phpunit.xml
```
Switch Tr... | ```yaml
language: php
php:
- 7.1
mysql:
database: activecollab_promises_test
username: root
encoding: utf8mb4
install: composer install --dev
before_script:
# create the database
- mysql -e 'create database if not exists activecollab_promises_test;'
script: phpunit -c test/phpunit.xml
``` |
e8270378-005e-415a-84dc-56ffb7e7de94 | {
"language": "YAML"
} | ```yaml
language: rust
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --no-deps
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=tempdir/index.html>' > target/doc/index.html &&
pip install ghp-i... | ```yaml
language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --no-deps
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = nightly ] &&
echo '<meta http-equiv=refresh cont... |
3d0106fd-5da6-459c-acd0-32b978e45809 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy2.7"
- "pypy3-2"
install:
- pip install -q tox coverage coveralls tox-travis
script:
- coverage erase
- tox
after_success:
- coverage combine
- coveralls
notifications:
email:
- boerni@gmail.com
```
Test o... | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -q tox coverage coveralls tox-travis
script:
- coverage erase
- tox
after_success:
- coverage combine
- coveralls
notifications:
email:
- boerni@gmail.com
``` |
30b53f72-eb04-4bdc-8965-a62fe4236f77 | {
"language": "YAML"
} | ```yaml
language: c
compiler:
- clang
- gcc
env:
- COVERAGE=true
- COVERAGE=false;
matrix:
exclude:
- compiler: clang
env: COVERAGE=true
- compiler: gcc
env: COVERAGE=false
before_install:
- sudo apt-get install check
- sudo pip install cpp-coveralls
# Change this to your needs
scri... | ```yaml
language: c
compiler:
- clang
- gcc
env:
- COVERAGE=true
- COVERAGE=false;
matrix:
exclude:
- compiler: clang
env: COVERAGE=true
- compiler: gcc
env: COVERAGE=false
before_install:
- sudo apt-get install check
# - sudo pip install cpp-coveralls
- sudo apt-get install -y lcov... |
48323d55-15d1-41d7-b23d-9bb44a980366 | {
"language": "YAML"
} | ```yaml
branches:
only:
- master
- v3-new
language: ruby
rvm:
- 1.9.3
- 2.0.0
- "2.1"
script: bundle exec rspec
```
Build against head Ruby on Travis (but allow failure) | ```yaml
branches:
only:
- master
- v3-new
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
rvm:
- 1.9.3
- 2.0.0
- "2.1"
- ruby-head
script: bundle exec rspec
``` |
93f7945d-8555-45fb-af65-5b2040cd3c2f | {
"language": "YAML"
} | ```yaml
sudo: false
cache: bundler
language: ruby
bundler_args: --without kitchen_common kitchen_vagrant kitchen_cloud kitchen_pester
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec foodcritic -f any .
- bundle exec rubocop
- bundle exec rspec --color --format progress
```
Use chef-dk install in Travis CI | ```yaml
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/op... |
1c437ac0-3ba4-4932-979d-373f5c05ce55 | {
"language": "YAML"
} | ```yaml
sudo: required
env:
global:
- PACKAGE="DiffView"
matrix:
- SUBLIME_TEXT_VERSION="3"
env:
global:
- PACKAGE="DiffView"
- SUBLIME_TEXT_VERSION="3"
matrix:
include:
- os: linux
language: python
python: 3.3
- os: osx
la... | ```yaml
sudo: required
env:
global:
- PACKAGE="DiffView"
matrix:
- SUBLIME_TEXT_VERSION="3"
env:
global:
- PACKAGE="DiffView"
- SUBLIME_TEXT_VERSION="3"
matrix:
include:
- os: linux
language: python
- os: osx
language: generic
befo... |
71a6f4e0-ef0d-431b-b9d3-ac8932e219fe | {
"language": "YAML"
} | ```yaml
language: python
env:
global:
- DEPENDS="numpy cython"
python:
- "2.7"
- "3.3"
- "3.4"
matrix:
include:
# Absolute minimum dependencies
- python: 2.7
env:
- DEPENDS="numpy==1.7.0 cython==0.19"
# test without Cython installed
- python: 2.7
env:
- DE... | ```yaml
language: python
env:
global:
- DEPENDS="numpy cython"
- NO_NET=1
python:
- "2.7"
- "3.3"
- "3.4"
matrix:
include:
# Absolute minimum dependencies
- python: 2.7
env:
- DEPENDS="numpy==1.7.0 cython==0.19"
# test without Cython installed
- python: 2.7
... |
11db8b34-fe72-487e-882f-72c52e2770c9 | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
cache: bundler
rvm:
# - 2.0.0
# - 2.1.1
- 2.1.2
gemfile:
- chef-client-version.gemfile
env:
- CHEF_VERSION=master
- CHEF_VERSION=12.4.1
- CHEF_VERSION=12.4.0
- CHEF_VERSION=12.3.0
- CHEF_VERSION=12.2.1
- CHEF_VERSION=12.1.2
matrix:
# fast_finish: true
allow... | ```yaml
sudo: false
language: ruby
cache: bundler
rvm:
# - 2.0.0
# - 2.1.1
- 2.1.2
gemfile:
- chef-client-version.gemfile
env:
- CHEF_VERSION=master
- CHEF_VERSION=12.4.1
- CHEF_VERSION=12.3.0
- CHEF_VERSION=12.2.1
- CHEF_VERSION=12.1.2
script:
- bundle install --jobs=3 --retry=3
- bundle exec... |
04ae6fad-be3b-4f11-ae49-888ca67a5946 | {
"language": "YAML"
} | ```yaml
# Filename: travis.yml
language: cpp
sudo: required
dist: trusty
compiler:
- clang
- gcc
env:
- CMSAT_TAG="4.5.3" GTEST_TAG="release-1.7.0"
install:
- sudo apt-get update --fix-missing
- sudo apt-get install -y lcov libboost-dev libm4ri-dev
- pushd third_party/cryptominisat
- gi... | ```yaml
# Filename: travis.yml
language: cpp
sudo: required
dist: trusty
compiler:
- clang
- gcc
env:
- CMSAT_TAG="4.5.3" GTEST_TAG="release-1.8.0"
install:
- sudo apt-get update --fix-missing
- sudo apt-get install -y lcov libboost-dev libm4ri-dev
- pushd third_party/cryptominisat
- gi... |
5c7023d6-20b7-48b2-8bb8-3d6e9e15fe98 | {
"language": "YAML"
} | ```yaml
matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8.1
language: generic
- os: osx
osx_image: xcode8
language: generic
- os: osx
osx_image: xcode7.3... | ```yaml
matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8
language: generic
- os: osx
osx_image: xcode7.3
language: generic
script:
- brew update
- brew install F... |
90315d92-7f2e-43c5-884b-3be35d708b8b | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- 0.12
before_install:
- npm install -g grunt-cli
notifications:
email:
- build@whiteout.io```
Add node v4.1 to Travis, change notification emails | ```yaml
language: node_js
sudo: false
node_js:
- 4.1
before_install:
- npm install -g grunt-cli
notifications:
email:
- felix.hammerl@gmail.com
- andris.reinman@gmail.com
``` |
33ee80c9-83c8-4f36-a57f-4174561e407a | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
- jruby-9.1.8.0
sudo: false
after_success: '[[ "$TRAVIS_JOB_NUMBER" == *.1 ]] && bundle exec codeclimate-test-reporter'
```
Stop building on JRuby until 9.1.11.0 is released | ```yaml
language: ruby
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
sudo: false
after_success: '[[ "$TRAVIS_JOB_NUMBER" == *.1 ]] && bundle exec codeclimate-test-reporter'
``` |
8cb3f14d-a253-4a17-a275-9dd2963fd637 | {
"language": "YAML"
} | ```yaml
language: node_js
dist: trusty
sudo: false
addons:
chrome: stable
cache:
yarn: true
directories:
- node_modules
node_js:
- "8.7"
stages:
- test
install:
- yarn install
script: gulp build
jobs:
include:
- stage: test
script: npm run test:coverage
after_success:
- npm run... | ```yaml
language: node_js
dist: trusty
sudo: false
addons:
chrome: stable
cache:
yarn: true
directories:
- node_modules
node_js:
- "8.7"
stages:
- compile
- test
install:
- yarn install
jobs:
include:
- stage: compile
script: gulp build
- stage: test
script: npm run test... |
b98aa37c-e830-4da3-86fe-66f37da3ae85 | {
"language": "YAML"
} | ```yaml
rvm:
- 1.9.3
- 2.0.0
- 2.2.2
- jruby-19mode
- rbx
gemfile:
- test/gemfiles/Gemfile.rails-3.2.x
- test/gemfiles/Gemfile.rails-4.0.x
- test/gemfiles/Gemfile.rails-5.0.x
matrix:
exclude:
- rvm: 1.9.3
gemfile: test/gemfiles/Gemfile.rails-5.0.x
- rvm: 2.0.0
gemfile: test/gemfi... | ```yaml
before_install: gem install bundler --no-document
rvm:
- 1.9.3
- 2.0.0
- 2.2.2
- jruby-19mode
- rbx
gemfile:
- test/gemfiles/Gemfile.rails-3.2.x
- test/gemfiles/Gemfile.rails-4.0.x
- test/gemfiles/Gemfile.rails-5.0.x
matrix:
exclude:
- rvm: 1.9.3
gemfile: test/gemfiles/Gemfile.rai... |
a5c08515-d4f4-4e99-8f6e-3d934a8d4c70 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.1snapshot
- 7.2
- 7.2snapshot
branches:
only:
- master
- development
- /^feature\/.+$/
- /^issue\/.+$/
services:
- redis-server
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- if [ "$TRAVIS_P... | ```yaml
language: php
php:
- 7.1
- 7.1snapshot
- 7.2
- 7.2snapshot
branches:
only:
- master
- development
- /^feature\/.+$/
- /^issue\/.+$/
services:
- redis-server
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- if [ "$TRAVIS_P... |
60bced41-69db-44f9-b6c2-70d3e63b729b | {
"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
- xctool test -project Source/OCHamcrest.xcodeproj -scheme libochamcrest -sdk iphonesimulator7.1
after_success:
- ./coveralls.rb --excl... | ```yaml
language: objective-c
before_install:
- sudo easy_install cpp-coveralls
script:
- xctool test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx10.9
- xctool test -project Source/OCHamcrest.xcodeproj -scheme libochamcrest -sdk iphonesimulator7.0
after_success:
- ./coveralls.rb --excl... |
c6cf2e69-b754-4770-aa2f-fe130ef264ca | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.4.4
before_install:
- curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs
before_script:
- cd lib/assets && npm install && npm run bundle -- -p && cd -
- cp config/database_example.yml config/database.yml
- cp config/secrets_example.... | ```yaml
language: ruby
rvm:
- 2.4.4
before_install:
- curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs
before_script:
- cd lib/assets && npm install && npm run bundle -- -p && cd -
- cp config/database_example.yml config/database.yml
- cp config/secrets_example.... |
a721f045-0f0c-42cc-9dd8-377c95028d7f | {
"language": "YAML"
} | ```yaml
language: cpp
compiler:
- clang
- gcc
before_install:
# nomlib dependencies (SDL)
- sudo apt-get install libsdl1.2-dev libsdl1.2debian libsdl-image1.2-dev libsdl-image1.2 libsdl-ttf2.0-dev libsdl-ttf2.0-0
# nomlib dependencies (Audio)
- sudo apt-get install libsndfile1-dev libopenal-dev
before_script:
... | ```yaml
language: cpp
compiler:
- clang
- gcc
before_install:
# nomlib dependencies (SDL)
- sudo apt-get install libsdl1.2-dev libsdl1.2debian libsdl-image1.2-dev libsdl-image1.2 libsdl-ttf2.0-dev libsdl-ttf2.0-0
# nomlib dependencies (Audio)
- sudo apt-get install libsndfile1-dev libopenal-dev
before_script:
... |
755a20ea-d366-45cf-b8da-7f55a9f8056d | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
```
Add node 0.12 and iojs | ```yaml
language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
``` |
e7ce859b-6675-4a20-96b8-d7ffa2c67f3b | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.5
- 2.7.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
notifications:
recipients:
- mail@zzak.io
slack: sinatrarb:LQGhUfGYcqR... | ```yaml
language: ruby
sudo: false
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.2.10
- 2.3.8
- 2.4.10
- 2.5.9
- 2.6.7
- 2.7.3
- "3.0"
- ruby-head
- jruby-9.2.17.0
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
notifications:
recipients:
- mail@zzak.io
... |
90196e26-5155-46ad-a3a5-91f75b3f77fe | {
"language": "YAML"
} | ```yaml
language: rust
sudo: false
cache: cargo
rust:
- nightly
- beta
- 1.12.0
script:
- cargo clean
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml --features unicase_support)
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml)
-... | ```yaml
language: rust
sudo: false
cache: cargo
rust:
- nightly
- beta
- 1.12.0
script:
- cargo clean
- (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml --features unicase_support)
- cargo clean # otherwise compiletest complains about multiple matching crates
- (test $TRAVIS_R... |
7f1789bd-36b4-46f0-bb3b-9a624af99a3d | {
"language": "YAML"
} | ```yaml
sudo: false
language: generic
# install recent GCC
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
# run on linux and mac
os:
- linux
- osx
# different builds
env:
- VTK=5 PYTHON=2
- VTK=6 PYTHON=2
... | ```yaml
sudo: false
language: generic
# install recent GCC
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
# run on linux and mac
os:
- linux
- osx
# different builds
env:
- VTK=5 PYTHON=2
- VTK=6 PYTHON=2
... |
34b41b73-ff65-45b1-add6-45f3fbfbe5e6 | {
"language": "YAML"
} | ```yaml
---
language: ruby
bundler_args: --without development
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- jruby-head
- ruby-head
- rbx-19mode
notifications:
email:
- tech@challengepost.com
```
Test on 2.0 and drop test support for other rubies | ```yaml
---
language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
notifications:
email:
- tech@challengepost.com
``` |
ae250d1a-e21f-485d-a0fc-0c6d5b0ddcff | {
"language": "YAML"
} | ```yaml
sudo: false
language: pythons
python:
- "2.7"
cache: apt
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- b... | ```yaml
sudo: false
language: pythons
python:
- "2.7"
cache: apt
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- b... |
6e695105-c3cb-4fde-985a-18f44058d45e | {
"language": "YAML"
} | ```yaml
language: python
cache: pip
python:
- "2.7"
- "3.4"
- "3.5"
sudo: false
env:
- DJANGO=1.10
- DJANGO=1.11
- DJANGO=2.0
- DJANGO=master
matrix:
fast_finish: true
include:
- { python: "3.6", env: DJANGO=master }
- { python: "3.6", env: DJANGO=1.11 }
- { pyt... | ```yaml
language: python
cache: pip
python:
- "2.7"
- "3.4"
- "3.5"
sudo: false
env:
- DJANGO=1.10
- DJANGO=1.11
- DJANGO=2.0
- DJANGO=master
matrix:
fast_finish: true
include:
- { python: "3.6", env: DJANGO=master }
- { python: "3.6", env: DJANGO=1.11 }
- { pyt... |
d5f67054-ce45-427d-9a5c-92267c6b7e39 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- SYMFONY_VERSION="~2.3"
# Test against previous minor releases of Symfony 2.x to ensure that we
# actually support the versions we specify in our requirements.
- SYMFONY_VERSION="2.3.*"
before_script:
# Use --prefer-source to download dependencies via... | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
env:
- SYMFONY_VERSION="~2.3"
# Test against previous minor releases of Symfony 2.x to ensure that we
# actually support the versions we specify in our requirements.
- SYMFONY_VERSION="2.3.*"
before_script:
# Use --prefer-source to download dependen... |
e85c36e7-cd65-40e0-9589-b25d049d4084 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.4
install:
- go get -u github.com/c-fs/Jerasure
- go get -u github.com/BurntSushi/toml
- go get -u github.com/qiniu/log
- go get -u github.com/spf13/cobra
- go get -u golang.org/x/net/context
- go get -u github.com/codahale/metrics
- go get -u google.golang.org/grpc
- cur... | ```yaml
language: go
go:
- 1.4
install:
- go get -u github.com/c-fs/Jerasure
- go get -u github.com/BurntSushi/toml
- go get -u github.com/qiniu/log
- go get -u github.com/spf13/cobra
- go get -u golang.org/x/net/context
- go get -u github.com/codahale/metrics
- go get -u github.com/influxdb/influxdb/c... |
f65c9146-5aaa-406d-a6df-b24692f1417e | {
"language": "YAML"
} | ```yaml
dist: trusty
sudo: false
language: python
python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"
# command to install dependencies
install:
- pip install -r dev-requirements.txt
# command to run tests
script:
- pytest --cache-clear
```
Remove explicit dist from Travis-CI config. | ```yaml
language: python
python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"
# command to install dependencies
install:
- pip install -r dev-requirements.txt
# command to run tests
script:
- pytest --cache-clear
``` |
fa60860d-647d-4842-8715-38069c5a094d | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '0.10'
after_success:
- gulp coverage
deploy:
provider: npm
email: d2ltravisdeploy@d2l.com
api_key:
secure: kbd9PFMuS1XlXTrPaowlSPgLlLMq9B+WMVLhvi3cK+0TrpKwRv1UDqj+hz6EAXd0b/2zV452mJZ20lEf9Z2m5xdhWVLYxY0qJdKSFFNBB9qF5HlUbwOhu3A44k03YUMqYKXj4Z5P7I/i+qS5sSLdoJLpeP5xwsm68ZOOW... | ```yaml
language: node_js
node_js:
- '0.12'
after_success:
- gulp coverage
deploy:
provider: npm
email: d2ltravisdeploy@d2l.com
api_key:
secure: KlXxulHXjKi/dBk5mST82IXgrso3ONd1vMcQ5ax61aXhgML/iO4vuouRX66b1btWHkqK01lPPVrUgHLTe7IIfbNyzbMTxvhQ44sI9AACJPahjGq4q5Kn84X3W9+b3Zr/PZLR/xHdjDOkF4IuOrGAXQ25zCM6SxYiUHUv0... |
7b74a18d-2064-4e61-aad2-1f9deb2c3644 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "node"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- node_modules
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
be... | ```yaml
language: node_js
node_js:
- "node"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- oracle-java8-set-default
cache:
directories:
- node_modules
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 ... |
47abcb55-9e38-40eb-b477-1498ecefb2a4 | {
"language": "YAML"
} | ```yaml
language: node_js
cache: yarn
node_js:
- node
- "10"
- "8"
- "6"
git:
depth: 5
install:
- yarn install --ignore-engines
```
Add Node.js 13 to CI | ```yaml
language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
- "8"
- "6"
git:
depth: 5
install:
- yarn install --ignore-engines
``` |
bb644af0-e70a-4695-b356-f7bc25ceca7b | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
python:
- "2.7"
cache:
directories:
- $HOME/.cache/pip
- $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages
- $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin
install:
- env
- ls -al $HOME/virtualenv/python$TRAVIS_PYTH... | ```yaml
sudo: false
language: python
python:
- "2.7"
- "3.5"
cache:
directories:
- $HOME/.cache/pip
- $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages
- $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin
install:
- env
- ls -al $HOME/virtualenv/python$T... |
c82b294f-0c59-4584-b3b7-5a9e82eec614 | {
"language": "YAML"
} | ```yaml
language: cpp
compiler:
- clang
branches:
except:
- gh-pages
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev
install: make gtest-bootstrap
# libssl is not multiarch so we are building 64bit
# and then installing the 32b... | ```yaml
language: cpp
compiler:
- clang
branches:
except:
- gh-pages
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev
install: make gtest-bootstrap
# libssl is not multiarch so we are building 64bit
# and then installing the 32b... |
0ee2ba60-a28d-4e72-a6e4-fd4630b96f66 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
env:
- SYMFONY="2.3.*"
services:
- elasticsearch
install:
- composer require --no-update symfony/symfony:${SYMFONY}
before_install:
# SQL settings
- sudo chmod 0644 /etc/mysql/my.cnf
- sudo sed "/skip-external-locking/a log-bin=mysql-bin\nbinlog_format = RO... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
env:
- SYMFONY="2.3.*"
services:
- elasticsearch
install:
- composer require --no-update symfony/symfony:${SYMFONY}
before_install:
# SQL settings
- sudo chmod 0644 /etc/mysql/my.cnf
- sudo sed "/skip-external-locking/a log-bin=mysql-bin\nbinlog_format = RO... |
6df70e52-3d69-4532-94f0-044fc73eb32d | {
"language": "YAML"
} | ```yaml
language: python
python:
- 3.2
- 3.3
before_install:
pip install --use-mirrors nose unittest2 pymongo
install:
- python setup.py install
script: nosetests
services:
- mongodb
```
Remove unittest2 dependency for tests | ```yaml
language: python
python:
- 3.2
- 3.3
before_install:
pip install --use-mirrors nose pymongo
install:
- python setup.py install
script: nosetests
services:
- mongodb
``` |
f12b5c00-93ce-461e-9c2f-a3c38ebc765c | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
- 1.9.3
- rbx-19mode
- jruby-19mode
env:
- DB=mysql
- DB=postgres
gemfile:
- Gemfile
- ci/gemfiles/rspec2_14_rails4_0.gemfile
- ci/gemfiles/rspec2_14_rails3_2.gemfile
before_script:
- ci/script/create_db.sh
- bundle exec rake db:test:reset --trace
script: bundle... | ```yaml
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- rbx-19mode
- jruby-19mode
env:
- DB=mysql
- DB=postgres
gemfile:
- Gemfile
- ci/gemfiles/rspec2_14_rails4_0.gemfile
- ci/gemfiles/rspec2_14_rails3_2.gemfile
before_script:
- ci/script/create_db.sh
- bundle exec rake db:test:reset --trace
scri... |
c0a4928c-0ca3-4964-a829-31f5f01d25d7 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
# faster builds on new travis setup not using sudo
sudo: false
# cache vendor dirs
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- travis_retry composer self-update && composer --version
- travis_retry composer global ... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
# faster builds on new travis setup not using sudo
sudo: false
# cache vendor dirs
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- travis_retry composer self-update && composer --version
- travis_retry composer global ... |
9d82ec8b-ccd5-49ad-bee4-65bded3bfbf0 | {
"language": "YAML"
} | ```yaml
language: python
python: 2.7
os:
- linux
- osx
env:
- TOX_ENV=flake8
- TOX_ENV=pypy
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
install:
- pip install tox
script:
- tox -e $TOX_ENV
notifications:
email:
on_success: never
on_failure: change
```
Reve... | ```yaml
language: python
python: 2.7
env:
- TOX_ENV=flake8
- TOX_ENV=pypy
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
install:
- pip install tox
script:
- tox -e $TOX_ENV
notifications:
email:
on_success: never
on_failure: change
``` |
15d1c4ef-76a9-40b4-a441-2b7822a423f9 | {
"language": "YAML"
} | ```yaml
sudo: required
os: linux
language: python
python:
- 3.3
- 3.4
- 3.5
- 3.6
install:
- sudo apt-get install -y apache2
- sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli
- sudo service apache2 restart
- pwd
- ls
- mkdir /var/www/vulnerable-sites
- mv test/vulnerable-sites/*... | ```yaml
sudo: required
os: linux
language: python
python:
- 3.3
- 3.4
- 3.5
- 3.6
install:
- sudo apt-get install -y apache2
- sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli
- sudo service apache2 restart
- pwd
- ls
- sudo mkdir /var/www/vulnerable-sites
- mv test/vulnerable-si... |
a95f03a1-96d1-4855-b8f8-caa3953fa64c | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4"
- "6"
script: "npm run-script travis"
after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
```
Test with node 8 and 9 | ```yaml
language: node_js
node_js:
- "8"
- "9"
script: "npm run-script travis"
after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
``` |
b57f2816-78ab-4c3e-96a4-37228f666673 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# Command to run tests
script: py.test
```
Add Python 3.7 back to TravisCI pipeline | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# Temporarily use xenial with with sudo to install Python 3.7. References:
# https://github.com/travis-ci/travis-ci/issues/9069
# https://github.com/travis-ci/travis-ci/issues/9815
matrix:
include:
- python: "3... |
7e93fbbd-cb8f-4ec1-a595-44f34337df5a | {
"language": "YAML"
} | ```yaml
language: ruby
bundler_args: --without development
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
before_install:
- gem update --system $gemver
- gem --version
env:
- gemver: 2.5.2
```
Drop ruby 2.1 and add 2.4. Upgrade gem version | ```yaml
language: ruby
bundler_args: --without development
rvm:
- 2.2.*
- 2.3.*
- 2.4.*
before_install:
- gem update --system $gemver
- gem --version
env:
- gemver: 2.6.13
``` |
3c42d6d7-a801-45ad-a076-f8bcf5b56f05 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.3"
# - "3.4"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libzmq3-dev
install:
- python setup.py install
- pip install --user msgpack-python
script:
- python runtests.py
```
Drop --user from pip install | ```yaml
language: python
python:
- "3.3"
# - "3.4"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libzmq3-dev
install:
- python setup.py install
- pip install msgpack-python
script:
- python runtests.py
``` |
822b0ff9-0198-4ae8-98b0-a91b1a829853 | {
"language": "YAML"
} | ```yaml
language: ruby
bundler_args: --without debugging documentation
addons:
code_climate:
repo_token: 186c49521e629c51591c86f057f49fe388ce87603e04b5486f0c92f26f2a455f
rvm:
# OS X 10.9.5-10.10.0 (2.0.0-p481)
- system
# OS X 10.9.3-10.9.4
- 2.0.0-p451
# OS X 10.9.0-10.9.2
- 2.0.0-p247
env:
- LANG="en... | ```yaml
language: ruby
bundler_args: --without debugging documentation
addons:
code_climate:
repo_token: 186c49521e629c51591c86f057f49fe388ce87603e04b5486f0c92f26f2a455f
rvm:
# OS X 10.9.5-10.10.0 (2.0.0-p481)
- 2.0.0-p481
# OS X 10.9.3-10.9.4
- 2.0.0-p451
# OS X 10.9.0-10.9.2
- 2.0.0-p247
env:
- LANG... |
af90543f-838e-4c75-808b-ec5d9ad291eb | {
"language": "YAML"
} | ```yaml
language: cpp
sudo: false
os: linux
before_script:
- mkdir build
script:
- cd build
- cmake ..
- cmake --build .
- ctest
addons:
apt:
sources: &global_apt_sources
- george-edison55-precise-backports
packages: &global_apt_packages
- cmake
... | ```yaml
language: cpp
sudo: false
os: linux
before_script:
- mkdir build
script:
- cd build
- cmake ..
- cmake --build .
- ctest
addons:
apt:
sources: &global_apt_sources
- george-edison55-precise-backports
packages: &global_apt_packages
- cmake
... |
4b0e8134-7482-4bfe-91a9-fcf07a0db7a6 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_install:
- sudo apt-get update
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda... | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_install:
- sudo apt-get update
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda... |
f461282b-42ee-4fc7-949c-e75779eaa60b | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.8
- 0.10
before_script:
- npm install -g grunt-cli
```
Remove node 0.8 from build matrix | ```yaml
language: node_js
node_js:
- 0.10
before_script:
- npm install -g grunt-cli
``` |
702abb0b-adb8-4d64-9407-77025c18d3fe | {
"language": "YAML"
} | ```yaml
dist: xenial
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "pypy3.6-7.1.1"
matrix:
include:
- python: "3.7"
env: TOXENV="-e docs"
- python: "3.7"
env: TOXENV="-e pep8"
- python: "3.7"
env: TOXENV="-e coverage"
install:
- pip install --upgrade pip setup... | ```yaml
dist: xenial
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "pypy3"
matrix:
include:
- python: "3.7"
env: TOXENV="-e docs"
- python: "3.7"
env: TOXENV="-e pep8"
- python: "3.7"
env: TOXENV="-e coverage"
install:
- pip install --upgrade pip setuptools
... |
c8331467-4821-4aec-8e41-5a8d80e3df57 | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
python:
- "3.5"
install:
- "pip install -r requirements.txt"
- "pip freeze"
```
Add nosetests script for tests. | ```yaml
sudo: false
language: python
python:
- "3.5"
script: nosetests
install:
- "pip install -r development.txt"
- "pip freeze"
``` |
8c8a3014-e6e3-478c-b54c-7185f0dbe1c2 | {
"language": "YAML"
} | ```yaml
# This file enables the Travis continuous integration system, which
# automatically builds and tests joda-time for each GitHub commit or
# pull request on three separate JDKs.
#
# For more information, see https://travis-ci.org
sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
```
... | ```yaml
# This file enables the Travis continuous integration system, which
# automatically builds and tests joda-time for each GitHub commit or
# pull request on three separate JDKs.
#
# For more information, see https://travis-ci.org
sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk7
``` |
e2de657f-d8a1-49a4-a0cd-ea12a4ab54c5 | {
"language": "YAML"
} | ```yaml
# Continuous Integration (CI) is the practice, in software
# engineering, of merging all developer working copies with a shared mainline
# several times a day < http://docs.platformio.org/page/ci/index.html >
#
# Documentation:
#
# * Travis CI Embedded Builds with PlatformIO
# < https://docs.travis-ci.com/use... | ```yaml
language: python
python:
- "2.7"
cache:
directories:
- "~/.platformio"
env:
- PLATFORMIO_CI_SRC=src
install:
- pip install -U platformio
script:
- platformio ci --board=pro8MHzatmega328
``` |
e7353070-2d93-451e-af6a-856f85ed1db8 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.2.5
- 2.3.1
before_install: gem install bundler
sudo: false
cache: bundler
```
Test against latest ruby versions | ```yaml
language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.0-preview3
before_install: gem install bundler
sudo: false
cache: bundler
``` |
999725c0-ed0a-49df-af30-d51dba0095ca | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.2
before_install:
- composer self-update
install:
- composer install --no-interaction --prefer-source
script:
- composer easy-coding-standard
- composer phpstan-analysis
- composer nette-tester-tests
after_success:
- wget https://github.com/satoo... | ```yaml
language: php
php:
- 7.2
- 7.3
- 7.4
before_install:
- composer self-update
install:
- composer install --no-interaction --prefer-source
script:
- composer cs:check
- composer phpstan:check
- composer tests
after_success:
- wget https://github.com/satooshi/php-coveralls/... |
9877f0ba-0370-4f89-a1ec-ab4e4a01e458 | {
"language": "YAML"
} | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode7.3
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod install --project-directo... | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode7.3
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod install --project-directo... |
f2f4ee6f-9bea-42a5-899d-1dcac63c68fe | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.4"
- "3.5"
services:
- rabbitmq # will start rabbitmq-server
cache:
- apt
- pip
before_install:
- sudo apt-get -qq update
- sudo /etc/init.d/postgresql stop
- sudo apt-get install -y postgresql-9.4
- sudo apt-get install -y postgresql-plpython-9.4
- sudo /etc/in... | ```yaml
language: python
python:
- "3.4"
- "3.5"
services:
- rabbitmq # will start rabbitmq-server
cache:
- apt
- pip
before_install:
- sudo apt-get -qq update
- sudo /etc/init.d/postgresql stop
- sudo apt-get install -y postgresql-9.4
- sudo apt-get install -y postgresql-plpython-9.4
- sudo /etc/in... |
ec1781ac-2b3d-4910-b9e9-2fdaeb7d0214 | {
"language": "YAML"
} | ```yaml
language: ruby
before_install: gem install bundler --pre
install:
- gem update --system
- bundle update
script: xvfb-run rake
rvm:
- 1.9.3
- 2.0.0
- 2.1
- rbx-2
- jruby-19mode
branches:
only:
- master
matrix:
allow_failures:
- rvm: rbx-2
- rvm: jruby-19mode
```
Add Ruby 2.2 on Tra... | ```yaml
language: ruby
before_install: gem install bundler --pre
install:
- gem update --system
- bundle update
script: xvfb-run rake
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- rbx-2
- jruby-19mode
branches:
only:
- master
matrix:
allow_failures:
- rvm: rbx-2
- rvm: jruby-19mode
``` |
bb9c5927-ac84-444f-9bd9-cd5f14d37c91 | {
"language": "YAML"
} | ```yaml
# This will run on Travis' 'new' container-based infrastructure
sudo: false
# Whitelist
branches:
only:
- master
# Environment variables
env:
global:
- DOXYFILE: $TRAVIS_BUILD_DIR/Doxygen
# Install dependencies
addons:
apt:
packages:
- doxygen
- doxygen-doc
- doxygen-latex... | ```yaml
# This will run on Travis' 'new' container-based infrastructure
sudo: false
dist: trusty
# Whitelist
branches:
only:
- master
# Environment variables
env:
global:
- DOXYFILE: $TRAVIS_BUILD_DIR/Doxygen
# Install dependencies
addons:
apt:
packages:
- doxygen
- doxygen-doc
- ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.