doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
12e01f5f-e86f-4a99-8b19-351c7a714b34 | {
"language": "YAML"
} | ```yaml
language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=3.4.*
- php: 7.1
env: SYMFONY_VERSION=4.0.*
- php: 7.2
env: SYMFONY_VERSION=4.1.*
- php: 7.2
env: SYMFONY_VERSION=4.2.* DEPENDENCIES=dev
- php: 7.3
env: SYMFONY_VE... | ```yaml
language: php
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=3.4.*
- php: 7.2
env: SYMFONY_VERSION=4.2.* DEPENDENCIES=dev
- php: 7.3
env: SYMFONY_VERSION=4.3.* DEPENDENCIES=dev
- php: hhvm-stable
dist: trusty
allow_failures:
- php: hhvm-stab... |
a40a23d6-26ab-446f-8f8d-e6aa934f8ecb | {
"language": "YAML"
} | ```yaml
addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-7
- INSTANCE=default-debian-9
- INSTANCE=default-deb... | ```yaml
addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-7
- INSTANCE=default-debian-9
- INSTANCE=default-deb... |
2a4a5d0f-699d-453c-8033-ed50a747b122 | {
"language": "YAML"
} | ```yaml
language: ruby
cache: bundler
rvm:
- 2.1.2
- 2.0.0
- 1.9.3
- rbx-2.2.10
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
```
Add Ruby 2.2 to Travis CI | ```yaml
language: ruby
cache: bundler
rvm:
- 2.2
- 2.1.2
- 2.0.0
- 1.9.3
- rbx-2.2.10
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
``` |
e945c58f-b2b7-44c0-89c2-492b4c06e8ca | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.3
- 7.4
- nightly
before_script:
- mkdir -p bootstrap/cache
- chmod 777 bootstrap/cache
- ls -al bootstrap/
- ls -al bootstrap/cache
- composer global require hirak/prestissimo
- if [ "$LARAVEL_DEP" == "5.1.*" ]; then composer require phpunit/phpunit "^5.6" -... | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
- nightly
before_script:
- mkdir -p bootstrap/cache
- chmod 777 bootstrap/cache
- ls -al bootstrap/
- ls -al bootstrap/cache
- composer global require hirak/prestissimo
- if [ "$LARAVEL_DEP" == "5.1.*" ]; then composer require phpunit/phpunit ... |
08643fb1-9243-4fa2-92cc-3da68054ea60 | {
"language": "YAML"
} | ```yaml
language: bash
script:
- bash shunit2_test.sh
```
Set the SHUNIT_COLOR environment variable. | ```yaml
language: bash
env:
- SHUNIT_COLOR='always'
script:
- bash shunit2_test.sh
``` |
072f98dd-d347-4f93-b440-fff71ddb6581 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.9.2
script: 'bundle exec rake'
branches:
only:
- master
```
Use latest 2.0.x + 2.1.x Rubies on Travis | ```yaml
language: ruby
rvm:
- 2.1
- 2.0
- 1.9.3
script: 'bundle exec rake'
branches:
only:
- master
``` |
c1b70b41-2c94-48a3-8906-6e26dcd026c0 | {
"language": "YAML"
} | ```yaml
sudo: required
language: bash
env:
- DOKKU_VERSION=master
before_install: make setup
script: make test
```
Upgrade testing environment to trusty | ```yaml
sudo: required
dist: trusty
language: bash
env:
- DOKKU_VERSION=master
before_install: make setup
script: make test
``` |
b70dfbc2-55e6-4747-a242-786947bc8855 | {
"language": "YAML"
} | ```yaml
nguage: ruby
rvm:
- 1.9.3
- 2.0.0
script: "bundle exec rake"
```
Add MRI 2.1.2 to CI | ```yaml
nguage: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
script: "bundle exec rake"
``` |
f9da9560-5516-41cd-a1a5-0941d348b8d3 | {
"language": "YAML"
} | ```yaml
language: c
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y pmake splint
script: pmake
```
Disable lint in a new way | ```yaml
language: c
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y pmake
script: env LINT= pmake
``` |
e7a1b7aa-9f3b-4342-bf0d-277ad41df9e5 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
- "9"
script: "npm run-script travis"
```
Stop testing node.js 0.10 and 0.12 on Travis | ```yaml
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
script: "npm run-script travis"
``` |
4e7c3d4a-9018-4d95-9621-e18c4aa17df9 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk8
sudo: false
cache:
directories:
- '$HOME/.m2/repository'
before_install:
- cp src/build/travis-toolchains.xml ~/.m2/toolchains.xml
install: mvn -Ptoolchains -DskipTests=true -Dbasepom.check.skip-all=true -B install
script: mvn -Ptoolchains -B verify
```
Split t... | ```yaml
language: java
sudo: false
# No much sense in keeping jdbi artifacts cached
before_cache:
rm -rf $HOME/.m2/repository/org/jdbi
cache:
directories:
- '$HOME/.m2/repository'
before_install:
- cp src/build/travis-toolchains.xml ~/.m2/toolchains.xml
install: mvn -Ptoolchains -DskipTests=true -Dbase... |
0b7fd4c3-e087-45cd-a43e-a9b2a91c36ed | {
"language": "YAML"
} | ```yaml
language: c
matrix:
include:
- os: linux
compiler: gcc
sudo: false
- os: linux
compiler: clang
sudo: false
- os: osx
compiler: gcc
before_install:
- brew update --quiet >& /dev/null
- brew outdated gcc || brew upgrade gcc
- brew outdate... | ```yaml
language: c
matrix:
include:
- os: linux
compiler: gcc
sudo: false
- os: linux
compiler: clang
sudo: false
- os: linux
dist: trusty
sudo: required
compiler: gcc
- os: linux
dist: trusty
sudo: required
compiler: clang
- os: osx
... |
07f0cd3c-acb6-4848-956b-05339dbfe02d | {
"language": "YAML"
} | ```yaml
# https://travis-ci.org/dr-prodigy/python-holidays
dist: bionic
language: python
cache: pip
before_install:
- pip install --upgrade pip
install:
# hijri-converter not available < python 3.6
- if [[
$TRAVIS_PYTHON_VERSION == '3.9' ||
$TRAVIS_PYTHON_VERSION == '3.8' ||
$TRAVIS_PYTHON_VERSI... | ```yaml
# https://travis-ci.org/dr-prodigy/python-holidays
dist: bionic
language: python
cache: pip
before_install:
- pip install --upgrade pip
install:
# hijri-converter not available < python 3.6
- if [[
# use Python 3.9 to test missing hijri-converter
# $TRAVIS_PYTHON_VERSION == '3.9' ||
$TRAVIS_PYT... |
9726814d-5fc9-4e0f-8f1d-1f8c8f6cc0cd | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '4'
on:
tags: true
```
Handle Travis bug for duplicate builds | ```yaml
language: node_js
node_js:
- '4'
branches:
only:
- /^v[0-9]/
``` |
7a30bb69-94b4-4afa-bc5e-4a3e7afdf565 | {
"language": "YAML"
} | ```yaml
language: objective-c
xcode_project: OpenSim.xcodeproj
xcode_scheme: OpenSim
osx_image: xcode7.3
script:
- xcodebuild clean build -project OpenSim.xcodeproj -scheme OpenSim
```
Change OS X image to Xcode 8. | ```yaml
language: objective-c
xcode_project: OpenSim.xcodeproj
xcode_scheme: OpenSim
osx_image: xcode8
script:
- xcodebuild clean build -project OpenSim.xcodeproj -scheme OpenSim
``` |
ec596ce7-703f-4199-b4de-7bb32c2afbd9 | {
"language": "YAML"
} | ```yaml
language: java
matrix:
include:
- os: linux
sudo: false
jdk: oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
- oracle-java8-set-default
script: ./gradlew check
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
... | ```yaml
language: java
dist: trusty
jdk: openjdk8
script: ./gradlew check
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/
``` |
47756d96-dbd3-4cbd-9cfb-2caa8a60b6dc | {
"language": "YAML"
} | ```yaml
language: java
os:
- linux
notifications:
email:
on_success: change
on_failure: always
```
Use latest Java 8 when running tests | ```yaml
language: java
os:
- linux
sudo: false
addons:
apt:
packages:
- oracle-java8-installer
notifications:
email:
on_success: change
on_failure: always
``` |
c53aa59e-453c-4e0b-8872-8ed8c8e42350 | {
"language": "YAML"
} | ```yaml
---
language: go
os:
- linux
- osx
go:
- 1.3
- 1.4
- 1.5
- tip
```
Fix path to allow imports | ```yaml
---
go_import_path: enum-dns
language: go
os:
- linux
- osx
go:
- 1.3
- 1.4
- 1.5
- tip
``` |
aaa267c6-2e70-4af2-ae59-00ab7edbfd47 | {
"language": "YAML"
} | ```yaml
cache:
directories:
- $HOME/.platformio
language: python
python:
- "2.6"
- "2.7"
env:
- TOX_ENV=docs
- TOX_ENV=lint
- TOX_ENV=py27
install:
- pip install tox
script:
- tox -e $TOX_ENV
```
Disable Travis Python 2.6 iteration | ```yaml
cache:
directories:
- $HOME/.platformio
language: python
python:
- "2.7"
env:
- TOX_ENV=docs
- TOX_ENV=lint
- TOX_ENV=py27
install:
- pip install tox
script:
- tox -e $TOX_ENV
``` |
08457814-d515-4370-8141-ca0d42c74f19 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '9'
- '8'
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
```
Add Node.js 10 to Travis CI build matrix | ```yaml
language: node_js
node_js:
- '10'
- '9'
- '8'
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
``` |
3e7fe0c2-6182-495c-a430-6df7aad28d7c | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
# - "3.2" # py.test has no support for Python 3.2
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev" # 3.7 development branch
- "nightly" # currently points to 3.7-dev
- "pypy"
install:
- pip install -r requirements_test.txt
- pip install coveralls
scrip... | ```yaml
language: python
python:
- "2.6"
- "2.7"
# - "3.2" # py.test has no support for Python 3.2
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev" # 3.7 development branch
- "nightly" # currently points to 3.7-dev
- "pypy"
install:
- pip install tox
- pip install coveralls
script:
tox
after_succes... |
ef564293-ca5a-418a-9439-39a807a260cd | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
rvm: 2.2
addons:
transifex:
username: somebody
password: s3cretz
hostname: https://www.custom-hostname.example.com
install: echo install
script: echo script
after_script:
- cat ~/.transifexrc
```
Test after_success behavior of transifex | ```yaml
language: ruby
sudo: false
rvm: 2.2
env:
- ZERO=0
- ZERO=1
addons:
transifex:
username: somebody
password: s3cretz
hostname: https://www.custom-hostname.example.com
install: echo install
script:
- echo script
- test $ZERO -eq 0
after_script:
- cat ~/.transifexrc
``` |
fd21189f-b4b5-422e-b12b-0c40d69dbe23 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
before_install:
- npm install -g grunt-cli
```
Drop support for older Node, add io.js. | ```yaml
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "iojs"
before_install:
- npm install -g grunt-cli
``` |
8ffd5d2d-69a8-478c-bcb9-52725f346abc | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- composer install
script:
- mkdir -p build/logs
- php ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- travis_retry php ./vendor/b... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- composer install
script:
- mkdir -p build/logs
- php ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- travis_retry php ./vendor/bin/cover... |
799f5321-2fa2-4c00-97c4-95449a7bea8c | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
```
Update Ruby versions for Travis CI. | ```yaml
language: ruby
rvm:
- 2.0.0-p648
- 2.1.8
- 2.2.4
- 2.3.0
``` |
074c13a9-719d-4a02-8f58-768758bc4eea | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
```
Add before_install to install bundler | ```yaml
sudo: false
language: ruby
before_install:
- gem install bundler
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
``` |
1e78e917-9dce-4f41-9634-d9cfe280e951 | {
"language": "YAML"
} | ```yaml
language: erlang # no C/shell language support; use least-loaded worker(s)
# Make sure CMake is installed on target
install: sudo apt-get install cmake libcap
# Build a release version and get verbose output
env:
- TEST_OPTS=-v
- DEFAULT_TEST_TARGET=prove
- OPTIONS="-DCMAKE_BUILD_TYPE=Release"
# Run th... | ```yaml
language: erlang # no C/shell language support; use least-loaded worker(s)
# Make sure CMake is installed on target
install: sudo apt-get install cmake
# Build a release version and get verbose output
env:
- TEST_OPTS=-v
- DEFAULT_TEST_TARGET=prove
- OPTIONS="-DCMAKE_BUILD_TYPE=Release"
# Run the Build... |
26c3b1f3-0698-4ff9-8c3d-2664a60b9f15 | {
"language": "YAML"
} | ```yaml
language: ruby
env: DEBUG=true
rvm:
- 2.2.0
- 2.1.0
- 2.0.0
- 1.9.3
- 1.8.7
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode```
Add jRuby 9k to CI config | ```yaml
language: ruby
env: DEBUG=true
rvm:
- 2.2.0
- 2.1.0
- 2.0.0
- 1.9.3
- 1.8.7
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- jruby-9000 # JRuby 9.0.0.0!
``` |
60555a28-dd21-4813-8a20-98a76e0e8d4f | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '0.12'
- '4.1'
```
Disable email notifications from Travis CI | ```yaml
language: node_js
node_js:
- '0.12'
- '4.1'
notifications:
email: false
``` |
5f0d0cea-f5fa-4c75-bc98-5c9be01669ad | {
"language": "YAML"
} | ```yaml
language: python
cache: pip
python:
- "3.5"
- "3.6"
env:
# the Django version from requirements.txt is used
- $DENV=""
# the latest Django development version is used
- $DENV="pip install --upgrade --pre Django"
# allow the Django pre version to fail without failing the entire build
matrix:... | ```yaml
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "3.7"
env:
# the Django version from requirements.txt is used
- $DENV=""
# the latest Django development version is used
- $DENV="pip install --upgrade --pre Django"
# allow the Django pre version to fail without failing the entire bui... |
ceb7d041-1d7a-4f6f-b16c-4917a7509124 | {
"language": "YAML"
} | ```yaml
script: "bundle exec rake travis"
before_script: ./bin/ci/before_build.sh
rvm:
- 1.9.2
- 1.9.3
notifications:
email:
- didier@nocoffee.fr
- mario@mariovisic.com
irc: "irc.freenode.org#locomotivecms"
branches:
only:
- master
- 2.0.0.rc
```
Test the master and 1.0 stable branches. | ```yaml
script: "bundle exec rake travis"
before_script: ./bin/ci/before_build.sh
rvm:
- 1.9.2
- 1.9.3
notifications:
email:
- didier@nocoffee.fr
- mario@mariovisic.com
irc: "irc.freenode.org#locomotivecms"
branches:
only:
- master
- 1.0.0
``` |
eee81cb6-bb3d-4027-8de2-b810c660ea94 | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
python:
- "2.7"
install:
- "pip install --upgrade pip"
- "pip install -r requirements.txt"
- "python setup.py install"
before_script:
- "flake8 masterqa/*.py"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "firefox --version"
- "nosetests examp... | ```yaml
language: python
sudo: false
python:
- "2.7"
install:
- "pip install --upgrade pip"
- "pip install -r requirements.txt"
- "python setup.py install"
before_script:
- "flake8 masterqa/*.py"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "firefox --version"
- "nosetests examp... |
59ef5de8-01e1-4ad6-8541-e4fbe4df2103 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
script: echo "code tests" ; npm run test; echo "readme tests" ; npm run test-readme ; echo "documentation example tests" ; npm run test-docs
```
Test on Node v9, stop testing on 4 and 5 | ```yaml
language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
script: echo "code tests" ; npm run test; echo "readme tests" ; npm run test-readme ; echo "documentation example tests" ; npm run test-docs
``` |
eb7d89db-a317-4bd1-9ec1-418d14b3d35e | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode8.2
before_install:
- gem update fastlane --no-ri --no-rdoc --no-document
- git remote set-url origin "https://${GITHUB_TOKEN}@github.com/uias/Pageboy.git"
script:
- .travis/build.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false```
... | ```yaml
language: objective-c
osx_image: xcode8.2
before_install:
- gem update fastlane --no-ri --no-rdoc --no-document
- git remote set-url origin "https://${GITHUB_TOKEN}@github.com/uias/Pageboy.git"
script:
- .travis/build.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false
bra... |
aac23bf0-1cfc-4916-96ca-d5e0180b45b5 | {
"language": "YAML"
} | ```yaml
language: go
go:
- tip
sudo: required
dist: trusty
addons:
apt:
packages:
- python3
- python3-coverage
- libpq-dev
- python3-psycopg2
- python3-numpy
- python3-matplotlib
install:
- go get github.com/olt/libpq
- go get github.com/DATA-DOG/go-sqlmock
- go get github.com/axw/... | ```yaml
language: go
go:
- tip
sudo: required
dist: trusty
addons:
apt:
packages:
- python3
- python3-coverage
- libpq-dev
- python3-numpy
- python3-matplotlib
install:
- go get github.com/olt/libpq
- go get github.com/DATA-DOG/go-sqlmock
- go get github.com/axw/gocov/gocov
- go get ... |
ca42d17f-430a-4cbc-bc70-7e089b2e8033 | {
"language": "YAML"
} | ```yaml
language: python
dist: trusty
sudo: required
matrix:
include:
- os: linux
sudo: required
python: 2.7
- os: linux
sudo: required
python: 3.4
- os: linux
sudo: required
python: 3.5
- os: linux
sudo: required
python: 3.6
- os: osx
python: ... | ```yaml
language: python
dist: trusty
sudo: required
matrix:
include:
- os: linux
sudo: required
python: 2.7
- os: linux
sudo: required
python: 3.4
- os: linux
sudo: required
python: 3.5
- os: linux
sudo: required
python: 3.6
- os: osx
python: ... |
94d0d890-8cfd-47db-b7be-184aaaf15957 | {
"language": "YAML"
} | ```yaml
language: c
sudo: false
notifications:
email: false
env:
global:
- COMMAND="pytest glue_vispy_viewers --cov glue_vispy_viewers"
- SETUP_XVFB=True
- CONDA_CHANNELS="glueviz"
- CONDA_DEPENDENCIES="glueviz mock pyopengl pyqt pytest-cov qtpy scipy"
- CONDA_CHANNEL_PRIORITY=True
matrix:
... | ```yaml
language: c
sudo: false
notifications:
email: false
env:
global:
- COMMAND="pytest glue_vispy_viewers --cov glue_vispy_viewers"
- SETUP_XVFB=True
- CONDA_CHANNELS="glueviz"
- CONDA_DEPENDENCIES="glueviz mock pyopengl pyqt pytest-cov qtpy scipy"
- CONDA_CHANNEL_PRIORITY=True
- PIP_... |
acc8103e-e78e-475a-94a6-d6f3444e571e | {
"language": "YAML"
} | ```yaml
language: android
# use container based build infrastructure
sudo: false
jdk:
- oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-24.0.0
- android-24
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
licenses:
... | ```yaml
language: android
# use container based build infrastructure
sudo: false
jdk:
- oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-24.0.2
- android-24
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
licenses:
... |
4f4f2c35-1ae1-4948-b3ed-dc994a8bad27 | {
"language": "YAML"
} | ```yaml
sudo: false
dist: trusty
language: java
before_install:
- wget https://github.com/sormuras/bach/raw/master/install-jdk.sh
install: mvn install -DskipTests=true -Dgpg.skip=true
jdk:
- openjdk9
- openjdk10
- openjdk11
matrix:
include:
# 9
- env: JDK='Oracle JDK 9'
jdk: oraclejdk9
-... | ```yaml
sudo: false
dist: trusty
language: java
before_install:
- wget https://github.com/sormuras/bach/raw/master/install-jdk.sh
install: mvn install -DskipTests=true -Dgpg.skip=true
jdk:
- openjdk9
- openjdk10
- openjdk11
matrix:
include:
# 9
- env: JDK='Oracle JDK 9'
jdk: oraclejdk9
-... |
caee28b0-8a2a-4b52-ac16-c6e675f49d20 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
```
Use container-based infra on Travis | ```yaml
language: node_js
node_js:
- "0.10"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
sudo: false
``` |
d280e95e-493b-4811-8ea1-9aef4b39f04d | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository -y ppa:biometrics/bob
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-all-dev libblitz1-dev
install:
- "python bootstrap.py"
- "./bin/buildout"
script:
- "./bin/nosetests -sv"
```... | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository -y ppa:biometrics/bob
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-all-dev libblitz1-dev
install:
- "python bootstrap.py"
- "./bin/buildout"
script:
- "./bin/nosetests -sv"
-... |
80c1ced9-8fd5-4b0b-9b72-921ad1809bdc | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit --coverage-clover clover
after_success:
- curl -sL https://bit.ly/artifact-uploader | php
```
Remove the build over PHP 5.3 | ```yaml
language: php
php:
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit --coverage-clover clover
after_success:
- curl -sL https://bit.ly/artifact-uploader | php
``` |
c84911a5-b567-4891-a0e8-e512fc027192 | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
# test command
install:
- python setup.py install
script:
- python setup.py test
- cmark.py README.md
- cmark.py README.md -a
- cmark.py README.md -aj
```
Enable automated testing on python 3.5 | ```yaml
sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
# test command
install:
- python setup.py install
script:
- python setup.py test
- cmark.py README.md
- cmark.py README.md -a
- cmark.py README.md -aj
``` |
e1d4347e-ab63-4683-a036-187a499440c4 | {
"language": "YAML"
} | ```yaml
sudo: false
language: java
jdk:
- openjdk8
env:
global:
- DITA_OT_VERSION=3.3.4
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
```
Use latest DITA-OT version (3.4) for CI builds | ```yaml
sudo: false
language: java
jdk:
- openjdk8
env:
global:
- DITA_OT_VERSION=3.4
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
``` |
eac709d3-6be8-453a-8247-fe02714413ac | {
"language": "YAML"
} | ```yaml
language: java
notifications:
email:
recepients:
- dev@omid.incubator.apache.org
on_success: always
on_failure: always
jdk:
- oraclejdk8
branches:
only:
- master
cache:
directories:
- "~/.m2"
install: true
before_script:
# This is required to avoid failures of HBase miniclu... | ```yaml
language: java
notifications:
email:
recepients:
- dev@omid.incubator.apache.org
on_success: always
on_failure: always
jdk:
- oraclejdk8
branches:
only:
- master
- 0.9.0.0
- phoenix-integration
cache:
directories:
- "~/.m2"
install: true
before_script:
# This is req... |
77aff63a-3ee1-49ef-b053-e6e5ca23be59 | {
"language": "YAML"
} | ```yaml
sudo: required
# This moves Kubernetes specific config files.
env:
- CHANGE_MINIKUBE_NONE_USER=true
before_script:
# Download kubectl, which is a requirement for using minikube.
- curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/linux/amd64/kubectl && chmod +x kubectl && s... | ```yaml
sudo: required
dist: trusty
group: travis_lts
# This moves Kubernetes specific config files.
env:
- CHANGE_MINIKUBE_NONE_USER=true
before_script:
# Download kubectl, which is a requirement for using minikube.
- curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/linux/amd64/k... |
c08befde-1827-45fc-99e5-c30dbef164f1 | {
"language": "YAML"
} | ```yaml
language: php
php:
- hhvm
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
include:
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest"
cache:
directories:
- $COMPOSER_CACHE_DIR
before_install:
- composer selfupdate
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLA... | ```yaml
language: php
php:
- hhvm
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
matrix:
include:
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest"
cache:
directories:
- $COMPOSER_CACHE_DIR
before_install:
- composer selfupdate
install:
- composer update --prefer-dist --no-interaction $COMP... |
89b9ad06-e53d-4a95-86af-3d9e8d8a6d8c | {
"language": "YAML"
} | ```yaml
language: python
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- 'nightly'
install:
- pip install ${DJANGO} Paver flake8 tmdbsimple
script:
- paver inspect
- paver test
- python setup.py sdist
env:
global:
secure: uI+0MUSsCbTAWlyODiAURJObLDZ1mnLlYQGhDFUW4FGFTIKjbX9aZiNv0J9P0qbQDsO8OrFRuAaa2L2z/09w54... | ```yaml
language: python
python:
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- 'nightly'
install:
- pip install ${DJANGO} Paver flake8 tmdbsimple
script:
- paver inspect
- paver test
- python setup.py sdist
env:
global:
secure: uI+0MUSsCbTAWlyODiAURJObLDZ1mnLlYQGhDFUW4FGFTIKjbX9aZiNv0J9P0qbQDsO8OrFRuAaa2L2z/09w54g39gsQUW... |
0094179c-93fe-432c-9fc8-9752b820e980 | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2
- 2.1
- 2.0
- ruby-head
- rbx-3.74
- jruby-20mode
- jruby-21mode
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3.74
fast_finish: true
before_install: gem install bundler ... | ```yaml
language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2
- 2.1
- 2.0
- ruby-head
- rbx-3.74
- jruby
- jruby-head
env:
global:
- JRUBY_OPTS="--2.0"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3.74
fast_finish: true
before_install: gem ... |
251aff61-d31e-4765-88c8-303827b5b5c5 | {
"language": "YAML"
} | ```yaml
os:
- linux
language:
- cpp
sudo:
- required
services:
- docker
env:
matrix:
- GCC_VERSION=48
- GCC_VERSION=49
- GCC_VERSION=52
- GCC_VERSION=53
- GCC_VERSION=48 COVERALLS=True
- GCC_VERSION=48 VALGRIND=True
matrix:
include:
- os: osx
osx_image: xcode8
... | ```yaml
os:
- linux
language:
- cpp
sudo:
- required
services:
- docker
env:
matrix:
- GCC_VERSION=48
- GCC_VERSION=49
- GCC_VERSION=52
- GCC_VERSION=53
- GCC_VERSION=48 COVERALLS=True
- GCC_VERSION=48 VALGRIND=True
matrix:
include:
- os: osx
osx_image: xcode7.... |
86c80c9b-9b59-49de-a057-116d03be27b7 | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler --no-rdoc --no-ri
- bundle --version
install: bundle install --without development
env:
- WITH_REDIS_NAMESPACE="false"
- WITH_REDIS_NAMESPACE="true"
... | ```yaml
language: ruby
sudo: false
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler --no-rdoc --no-ri
- bundle --version
install: bundle install --without development
env:
- WITH_REDIS_NAMESPACE="false"
- WITH_REDIS_NAMESPACE="true"
... |
e18f98f1-d2f5-4808-bc60-bbdaa58acfad | {
"language": "YAML"
} | ```yaml
language: ruby
script: "bundle exec rake test"
cache: bundler
addons:
code_climate:
repo_token: ae74feb57032eaec34d8b695e504f00fe300d01a2ec0055e41f107a20f512645
```
Expand ruby versions to test | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.1.5
- 2.3.0
- jruby
script: "bundle exec rake test"
cache: bundler
addons:
code_climate:
repo_token: ae74feb57032eaec34d8b695e504f00fe300d01a2ec0055e41f107a20f512645
``` |
ac932294-dc4d-47a2-82d0-00c83e0375ff | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
```
Build with Node.js 10 on 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 istanbul coveralls
``` |
428f5b07-1fd5-44b9-bf07-578ba58b37e4 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '6'
- '8'
- '10'
before_script:
- npm install -g gulp
script:
- gulp build
```
Drop testing for Node v6 | ```yaml
language: node_js
node_js:
- '8'
- '10'
before_script:
- npm install -g gulp
script:
- gulp build
``` |
dc17d22a-10b2-4f14-a61e-c7151659d824 | {
"language": "YAML"
} | ```yaml
sudo: required
services: docker
os: linux
dist: xenial
before_install:
- DEBIAN_FRONTEND=noninteractive sudo -E apt-get -y -qq update
- DEBIAN_FRONTEND=noninteractive sudo -E apt-get -y -qq dist-upgrade
- docker pull ubuntu:latest
language: c
before_script:
- test -d m4 || mkdir m4
- docker run -n ... | ```yaml
sudo: required
services: docker
os: linux
dist: xenial
before_install:
- docker pull ubuntu:latest
language: c
before_script:
- test -d m4 || mkdir m4
- docker run -n temp ubuntu:latest sh -c 'apt-get -qq -y update && DEBIAN_FRONTEND=noninteractive apt-get -qq -y dist-upgrade && DEBIAN_FRONTEND=noninte... |
5fbeb0f0-90b3-45f2-8879-3adf9dc262b1 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
before_script: git rev-parse --abbrev-ref HEAD
script: bundle exec rake ci -t
```
Debug abort issue with Devtools.notify | ```yaml
language: ruby
rvm:
- 1.9.3
before_script: git config -l
script: bundle exec rake ci -t
``` |
077fd8a3-4dbc-408f-925a-06681d0a13fd | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
env:
- secure: "EhG2uSD2m1eGxuL2HeQewJJx7MVL4WpjrxyfiUBEgsApemD1yKJPjUnLwAyd\nbPi5HJx5ySm1TTRSvj6/yP85YLYTaJHA8OabKk7p0wFW294qcrYIDGovU7NL\n3YOqZmqN+S3XOBGFCOnByxE+pcxxWW/3/I09EgeW7D6tBPh67G0="
install:
- pip install pytest pytest-xdist 'pytest-cov>=... | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
- pypy3
env:
- secure: "EhG2uSD2m1eGxuL2HeQewJJx7MVL4WpjrxyfiUBEgsApemD1yKJPjUnLwAyd\nbPi5HJx5ySm1TTRSvj6/yP85YLYTaJHA8OabKk7p0wFW294qcrYIDGovU7NL\n3YOqZmqN+S3XOBGFCOnByxE+pcxxWW/3/I09EgeW7D6tBPh67G0="
install:
- pip install pytest pytest-xdist 'pyte... |
26c0ad5a-47cb-45ad-af56-806a2da62ef8 | {
"language": "YAML"
} | ```yaml
language: scala
jobs:
include:
- stage: test
before_install:
- export PATH=${PATH}:./vendor/bundle
install:
- rvm use 2.2.3 --install --fuzzy
- gem update --system
- gem install sass
- gem install jekyll -v 3.2.1
script:
- sbt ++$TRAVIS... | ```yaml
language: scala
scala:
- 2.12.2
- 2.11.11
jdk:
- oraclejdk8
matrix:
include:
- scala: 2.12.2
jdk: oraclejdk8
env: PUBLISH_SITE=true
before_install:
- export PATH=${PATH}:./vendor/bundle
install:
- rvm use 2.2.3 --install --fuzzy
- gem update --system
- gem install sass
- gem inst... |
7b214450-0b15-4a0f-839f-bec935988c5d | {
"language": "YAML"
} | ```yaml
sudo: required
language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.2
- python: 3.3
- python: 3.4
- python: 3.5
- python: nightly
- python: pypy
- language: generic
os: osx
- language: generic
os: osx
env: PY3=3
install: .ci/travi... | ```yaml
sudo: required
language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.2
- python: 3.3
- python: 3.4
- python: 3.5
- python: nightly
- python: pypy
- language: generic
os: osx
- language: generic
os: osx
env: PY3=3
install: .ci/travi... |
c96d1106-fabe-4b2b-9386-45537e3bbb55 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 8
- 10
- 12
- node
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
```
Drop node.js 8 support, add 14, lint with 14 (semver-major) | ```yaml
language: node_js
node_js:
- 10
- 12
- 14
- node
matrix:
include:
- name: Lint
node_js: 14
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
``` |
999e811d-e794-4e5e-8c6b-b78eb4918c25 | {
"language": "YAML"
} | ```yaml
sudo: false
language: php
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- /^release\/.*$/
- feature/travis
- master
php:
- 5.4
env:
- WP_VERSION=latest WP_MULTISITE=0
matrix:
before_script:
- bash bin/install-phpunit.sh
- bash bin/install-wp-te... | ```yaml
sudo: false
language: php
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- /^release\/.*$/
- feature/travis
- master
php:
- 5.4
- 5.5
- 5.6
env:
- WP_VERSION=3.7 WP_MULTISITE=0
- WP_VERSION=3.7 WP_MULTISITE=1
matrix:
before_script:
- bash bi... |
1c69061f-c310-4bc0-856b-650503710e68 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
- /usr/bin/pip install git+git://github.com/pyinvoke/invoke.git
- 'if [ -n "${VAR+x}" ]; then: invoke install-nacl --library=$NACL; fi'
- 'if [ -n "${VAR+x}" ]; then: invoke install --dev; fi'
script:
- invoke tests --s... | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
- /usr/bin/pip install git+git://github.com/pyinvoke/invoke.git
- 'if [ -n "${VAR+x}" ]; then: invoke install-nacl --library=$NACL; fi'
- 'if [ -n "${VAR+x}" ]; then: invoke install --dev; fi'
script:
- invoke tests --s... |
6967a118-e9c0-44a1-9e57-8be482cbc36a | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '6'
- '7'
script:
- npm run compile
- npm run lint
- npm run coverage
after_script:
- npm install coveralls
- cat ./coverage/lcov.info | coveralls
```
Enable Node 8 on Travis CI | ```yaml
language: node_js
node_js:
- '6'
- '7'
- '8'
script:
- npm run compile
- npm run lint
- npm run coverage
after_script:
- npm install coveralls
- cat ./coverage/lcov.info | coveralls
``` |
7efe6243-33d3-4100-9a2b-b7f9024d458c | {
"language": "YAML"
} | ```yaml
dist: bionic
matrix:
include:
- language: go
sudo: false
go: "1.16"
before_install:
- go get github.com/mattn/goveralls@v0.0.8
install:
- export PATH=$PATH:$GOPATH/bin
script:
- make goinstall
- make check >& /tmp/check.log
- $GOPATH/bi... | ```yaml
dist: bionic
matrix:
include:
- language: go
sudo: false
go: "1.16"
before_install:
- go get github.com/mattn/goveralls@v0.0.8
install:
- export PATH=$PATH:$GOPATH/bin
script:
- make goinstall
- make check >& /tmp/check.log
after_failure:... |
6b814308-29e2-4413-934e-6edf05cfafe8 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
script: bundle exec rspec spec
```
Add CODECLIMATE_REPO_TOKEN as a secure Travis ENV variable | ```yaml
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
script: bundle exec rspec spec
env:
global:
secure: JyF1/jorG/dGjXhgVV5THQI9BSCvuuktsfkcPbRCuDna2lUXGfQGUrCYRyOUwPzvJTkeI3kjQ7HUEMFHXl4f5Fz2zMrUhjkyPNlNPDGJpe5KZn... |
4dbdbdc7-64f5-4b45-8703-9dc582e7a09b | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0-rc1
- jruby-19mode
- rbx-2.2
script:
- bundle exec rspec
- bundle exec rubocop
```
Test against Ruby 2.1 official release on Travis CI | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2.2
script:
- bundle exec rspec
- bundle exec rubocop
``` |
0f484f06-975a-40a4-a590-06cb31e7c857 | {
"language": "YAML"
} | ```yaml
language: python
dist: trusty
sudo: required
cache: pip
services:
- docker
python: 3.6
env:
- TOX_ENV=integration_tests-docker
EXTRA_ARGS="-n1"
CODECOV=integration
- TOX_ENV=integration_tests_with_jjb_trunk-docker
EXTRA_ARGS="-n1"
- TOX_ENV=integration_tests-not_docker
CODECOV=integration
- ... | ```yaml
language: python
dist: trusty
sudo: required
cache: pip
services:
- docker
python: 3.6
env:
- TOX_ENV=integration_tests-docker
DOCKER_CONTAINER=jenkins/jenkins
EXTRA_ARGS="-n1"
CODECOV=integration
- TOX_ENV=integration_tests-docker
DOCKER_CONTAINER=jenkins/jenkins:lts
EXTRA_ARGS="-n1 --jenk... |
82a2c644-05eb-4a94-b22a-d250c30fca47 | {
"language": "YAML"
} | ```yaml
rvm:
- 1.9.3
- 2.1.0
- 2.2.0
sudo: false
```
Update the rubies we test against | ```yaml
rvm:
- 1.9.3
- 2.1.9
- 2.2.5
- 2.3.1
- 2.4.0-preview1
sudo: false
``` |
f0b52936-95ca-4549-99aa-c8df0859c8bf | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
cache: pip
env:
global:
- RANDOM_SEED=12345
install:
- pip install coveralls scrutinizer-ocular
before_script:
- make env
- make depends-ci
script:
- make ci
after_success:
- coveralls
- ocular
notifications:
email:
on_success: never... | ```yaml
sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
cache:
pip: true
directories:
- env
env:
global:
- RANDOM_SEED=12345
install:
- pip install coveralls scrutinizer-ocular
before_script:
- make env
- make depends-ci
script:
- make ci
after_success:
- coveralls
- ocular
notifications:... |
a9816dd5-1c1c-45e6-b53e-e9ed9613ca1c | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode7.3
before_install:
- brew update
- brew install carthage || brew upgrade carthage
- brew outdated xctool || brew upgrade xctool
- carthage bootstrap --platform Mac
script:
- xctool -project HSTracker.xcodeproj -scheme HSTracker -sdk macosx clean build CODE_SIGN_I... | ```yaml
language: objective-c
osx_image: xcode7.3
before_install:
- brew update
- brew install carthage || brew upgrade carthage
- brew outdated xctool || brew upgrade xctool
- gem install xcpretty
- carthage bootstrap --platform Mac
script:
- xcodebuild -project HSTracker.xcodeproj -scheme HSTracker -sdk m... |
fd1ee1e2-8c32-4434-8ca6-af43321ab364 | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9.1.0.0
- jruby-9.1.7.0
- jruby-9.1.15.0
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby-9.1.0.0
- rvm: jruby-9.1.7.0
- rvm: jruby-9.1.15.0
- rvm: jruby-head
- rvm: ruby-head
before_inst... | ```yaml
sudo: required
dist: trusty
language: ruby
before_install: gem update --system
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9.1.0.0
- jruby-9.1.7.0
- jruby-9.1.15.0
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby-9.1.0.0
- rvm: jruby-9.1.7.0
- rvm: jruby-9.1.15.0
- rvm: jruby-h... |
1b35d5de-acf8-421d-bb25-710485c83722 | {
"language": "YAML"
} | ```yaml
language: php
php:
- '7.1'
- '7.2'
- '7.3'
before_install:
- pecl install mongodb
install:
- composer install
script:
- ./vendor/bin/phpunit
- ./vendor/bin/psalm --show-info=false
after_success:
- bash <(curl -s https://codecov.io/bash)
- wget https://scrutinizer-ci.com/ocular.phar
- ph... | ```yaml
language: php
php:
- '7.1'
- '7.2'
- '7.3'
install:
- composer install
script:
- ./vendor/bin/phpunit
- ./vendor/bin/psalm --show-info=false
after_success:
- bash <(curl -s https://codecov.io/bash)
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --forma... |
b2b06e4b-bb82-4f73-8a02-d66df31b80ea | {
"language": "YAML"
} | ```yaml
language: php
sudo: false
php:
- 5.6
- 7.0
- hhvm
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if... | ```yaml
language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if ... |
ed3a06f5-ddfd-4998-a020-b380a6161b47 | {
"language": "YAML"
} | ```yaml
---
language: python
sudo: false
cache: pip
matrix:
allow_failures:
- python: nightly
- env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
exclude:
- python: "2.7"
env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
python:
- "2.7"
- "3.4"
- "3.5"
... | ```yaml
---
language: python
sudo: false
cache: pip
matrix:
allow_failures:
- python: nightly
- env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
exclude:
- python: "2.7"
env: DJANGO="Django>=2.0,<2.1"
- python: "2.7"
env: DJANGO="https://github.com/django/django/archi... |
636e04be-5c42-4c5e-8332-31adf4f47b2f | {
"language": "YAML"
} | ```yaml
language: go
dist: xenial
go:
- "1.12.5"
sudo: required
install:
- pip install awscli
- snap install hugo
script:
- cd "$TRAVIS_BUILD_DIR/src"
- hugo
before_deploy:
- cd "$TRAVIS_BUILD_DIR/src/public"
deploy:
provider: s3
access_key_id: "$AWS_ACCESS_KEY_ID"
secret_access_key: "$AWS_SECRET_ACCE... | ```yaml
language: go
dist: xenial
go:
- "1.12.5"
sudo: required
install:
- sudo pip install awscli
- snap install hugo
script:
- cd "$TRAVIS_BUILD_DIR/src"
- hugo
before_deploy:
- cd "$TRAVIS_BUILD_DIR/src/public"
deploy:
provider: s3
access_key_id: "$AWS_ACCESS_KEY_ID"
secret_access_key: "$AWS_SECRET... |
c4fb3e05-e48f-4704-832a-323ac99d9ad4 | {
"language": "YAML"
} | ```yaml
language: erlang
notifications:
email: false
otp_release:
- 18.0
- 17.5
- 17.4
- 17.3
install: true
script: "make && make ct"
```
Remove otp 18.0 for now | ```yaml
language: erlang
notifications:
email: false
otp_release:
- 17.5
- 17.4
- 17.3
install: true
script: "make && make ct"
``` |
18535e17-1b62-49db-bba6-62bf7b668187 | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
cache: bundler
rvm:
- 2.3.3
- 2.2.6
after_success:
- bundle exec codeclimate-test-reporter
```
Test with latest Ruby version | ```yaml
language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
after_success:
- bundle exec codeclimate-test-reporter
``` |
b80579a6-6ca8-4826-a13c-660872576440 | {
"language": "YAML"
} | ```yaml
language: go
sudo: false
go:
- 1.8.x
before_install:
- go get github.com/mattn/goveralls
# Note: Need to ignore all cmd/goggles files because gallium will not work on the linix travis instances.
script:
- rm -rf cmd/goggles/
- $HOME/gopath/bin/goveralls -service=travis-ci
```
Remove bindata from cove... | ```yaml
language: go
sudo: false
go:
- 1.8.x
before_install:
- go get github.com/mattn/goveralls
# Note: Need to ignore all cmd/goggles files because gallium will not work on the linix travis instances.
script:
- rm -rf cmd/goggles/
- $HOME/gopath/bin/goveralls -service=travis-ci -ignore server/assets/bindata_... |
9653d3e5-687d-4a41-aa5e-9bd6ad9d00df | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
after_success:
- npm run coveralls```
Install yaz before npm install | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
before_install:
- sudo apt-get yaz
after_success:
- npm run coveralls``` |
e40a0599-f49d-4aef-99df-cab527e46ca5 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 'stable'
- '6'
- '4'
sudo: false
env:
- workerCount=3
matrix:
fast_finish: true
branches:
only:
- master
- release-2.5
install:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm install
cache:
directories:
- node_modules
... | ```yaml
language: node_js
node_js:
- 'stable'
- '6'
- '4'
sudo: false
env:
- workerCount=3
matrix:
fast_finish: true
branches:
only:
- master
- release-2.5
- release-2.6
install:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm install
cache:
directories:
... |
77c923d2-be35-4409-ab2c-32b3654372c4 | {
"language": "YAML"
} | ```yaml
language: python
python: "2.7"
install: "python setup.py install"
script: "coverage run --source "." --omit "setup.py,tests/speed_tests.py" -m py.test"
after_success: coveralls
```
Fix " YAML was not valid | ```yaml
language: python
python: "2.7"
install: "python setup.py install"
script: 'coverage run --source "." --omit "setup.py,tests/speed_tests.py" -m py.test'
after_success: coveralls
``` |
d34b5597-a184-4d6d-83bb-025f9cfd5020 | {
"language": "YAML"
} | ```yaml
language: python
# ensure use container-based infrastructure for caching
sudo: false
python:
# - "2.6"
- "2.7"
addons:
apt:
packages:
- oracle-java8-installer
# versions of eXist to test against
env:
# - EXIST_DB_VERSION=eXist-3.0.RC1
- EXIST_DB_VERSION=eXist-2.2
before_install:
- expor... | ```yaml
language: python
# ensure use container-based infrastructure for caching
sudo: false
python:
# - "2.6"
- "2.7"
addons:
apt:
packages:
- oracle-java8-installer
# versions of eXist to test against
env:
- EXIST_DB_VERSION=eXist-3.0.RC1
- EXIST_DB_VERSION=eXist-2.2
before_install:
- export ... |
b05d8272-fb9f-4554-bb2c-fe668d44bd77 | {
"language": "YAML"
} | ```yaml
language: cpp
sudo: false
os:
- linux
- osx
compiler:
- clang
- gcc
before_install: make math-revert
before_script: echo "CC=$CXX" > make/local
matrix:
fast_finish: true
exclude:
- os: osx
compiler: gcc
env:
- TESTFOLDER=src/test/unit/callbacks
- TESTFOLDER=src/test/unit/io
... | ```yaml
language: cpp
sudo: false
os:
- linux
compiler:
- clang
- gcc
before_install: make math-revert
before_script: echo "CC=$CXX" > make/local
matrix:
fast_finish: true
env:
- TESTFOLDER=src/test/unit/callbacks
- TESTFOLDER=src/test/unit/io
- TESTFOLDER=src/test/unit/lang
- TESTFOLDER=sr... |
dd183d14-ca81-4bc1-9838-a5bda3984e72 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
```
Use dynamic node versions on Travis CI | ```yaml
sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
``` |
3b887564-c300-41e2-ae9f-86d2e5cc43eb | {
"language": "YAML"
} | ```yaml
language: ruby
install: gem install bundler
script: "bundle && bundle exec rake ci"
env:
- JRUBY_OPTS="--server -J-Xms1500m -J-Xmx1500m -J-XX:+UseConcMarkSweepGC -J-XX:-UseGCOverheadLimit -J-XX:+CMSClassUnloadingEnabled"
rvm:
- 2.2.2
- jruby
- jruby-head
- rbx-2
matrix:
allow_failures:
- rvm:... | ```yaml
language: ruby
install: gem install bundler
script: "bundle && bundle exec rake ci"
env:
- JRUBY_OPTS="--server -J-Xms1500m -J-Xmx1500m -J-XX:+UseConcMarkSweepGC -J-XX:-UseGCOverheadLimit -J-XX:+CMSClassUnloadingEnabled"
rvm:
- 2.2.2
- jruby
- jruby-head
- rbx-2
matrix:
fast_finish: true
allow_... |
26b0d80b-3bbb-40d2-87e1-67130eebb630 | {
"language": "YAML"
} | ```yaml
language: ruby
script: 'script/travis-ci'
rvm:
- 1.9.3
```
Stop emailing builds to support, thanks. | ```yaml
language: ruby
script: 'script/travis-ci'
rvm:
- 1.9.3
notifications:
email: false``` |
74563300-ccd6-4219-9c43-41b3a00718a0 | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
env:
global:
- AWS_ACCESS_KEY_ID="MOCK_ACCESS_KEY_ID"
- AWS_SECRET_ACCESS_KEY="MOCK_SECRET_ACCESS_KEY"
matrix:
- DJANGO_VERSION=1.8.*
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11.*
- DJANGO_V... | ```yaml
language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
env:
global:
- AWS_ACCESS_KEY_ID="MOCK_ACCESS_KEY_ID"
- AWS_SECRET_ACCESS_KEY="MOCK_SECRET_ACCESS_KEY"
matrix:
- DJANGO_VERSION=1.8.*
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11.*
- DJANGO_V... |
3ef33062-4f9f-431c-94dc-b2fa060d9814 | {
"language": "YAML"
} | ```yaml
notifications:
recipients:
- bodo@wannawork.de
```
Build for 1.8 and 1.9 | ```yaml
notifications:
recipients:
- bodo@wannawork.de
rvm:
- 1.8.7
- 1.9.2
``` |
6027037d-99f6-4489-b193-0eddb3622b8e | {
"language": "YAML"
} | ```yaml
language: cpp
compiler:
- gcc
- clang
notifications:
email: false
irc:
channels:
- "irc.freenode.org#shogun"
on_success: change
on_failure: always
template:
- "it's %{author}'s turn to pay the next round of drinks for the massacre he caused in %{repository}: %{build_url}"
env... | ```yaml
language: cpp
compiler:
- gcc
- clang
notifications:
email: false
irc:
channels:
- "irc.freenode.org#shogun"
on_success: change
on_failure: always
template:
- "it's %{author}'s turn to pay the next round of drinks for the massacre he caused in %{repository}: %{build_url}"
env... |
7fd34589-26db-4d53-9245-ba1920beaa17 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.5
- 2.3.1
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: 2.0.0
before_install:
# this is a fix to get rng-tools to work in travis-ci
- sudo apt-get update -qq
- sudo apt-get install --yes rng-tools
- sudo rm -f /dev/random
- sudo m... | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: 2.0.0
before_install:
# this is a fix to get rng-tools to work in travis-ci
- sudo apt-get update -qq
- sudo apt-get install --yes rng-tools
- sudo rm -f /d... |
66d04756-9974-4422-adf4-639b181a998c | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "6"
- "4"
install:
- npm install
script: npm test
```
Add email for Travis CI notifications | ```yaml
sudo: false
language: node_js
node_js:
- "6"
- "4"
install:
- npm install
script: npm test
notifications:
email:
- chico@mercadolibre.com
``` |
ec710f35-9610-41d1-ae0f-8f1aeb558c3b | {
"language": "YAML"
} | ```yaml
language: php
git:
depth: 5
matrix:
include:
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.3
env: MULTITEST='on'
install:
- travis_retry composer self-update
- travis_retry composer install
script:
- if [ "$MULTITEST" != "on" ]; then v... | ```yaml
language: php
git:
depth: 5
matrix:
include:
- php: 5.5
dist: precise
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.3
env: MULTITEST='on'
install:
- travis_retry composer self-update
- travis_retry composer install
script:
- if [ "$MULTITES... |
68942470-6a70-4cdd-8cef-3d42783a88c6 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "iojs"
- "stable"
- "0.10"
services:
- redis-server
```
Change Travis CI config to include the tsc build step before tests | ```yaml
language: node_js
node_js:
- "node"
- "lts/*"
services:
- redis-server
before_script:
- npm run build
``` |
6cae2068-2a08-405a-b01d-bb2ab22b71c2 | {
"language": "YAML"
} | ```yaml
language: python
sudo: required
virtualenv:
system_site_packages: true
python:
- "2.7"
before_install:
- "sudo apt-add-repository -y ppa:reddit/ppa"
- "sudo apt-get update -q"
- "sudo apt-get install python-tinycss2 -y"
install:
- "pip install http://github.com/praw-dev/praw/tarball/d0f69dc84f70fc4... | ```yaml
language: python
sudo: required
virtualenv:
system_site_packages: true
python:
- "2.7"
before_install:
- "sudo apt-add-repository -y ppa:reddit/ppa"
- "sudo apt-get update -q"
- "sudo apt-get install python-tinycss2 -y"
install:
- "pip install http://github.com/praw-dev/praw/tarball/d0f69dc84f70fc4... |
48bc1274-8d1f-4933-929a-2856348e0c0a | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
branches:
only:
- master
matrix:
fast_finish: true
include:
- os: linux
node_js: '4.3'
env: WEBPACK_VERSION="2.6.0" JOB_PART=test
- os: linux
node_js: '6'
env: WEBPACK_VERSION="2.6.0" JOB_PART=test
- os: linux
node_js: '8'
e... | ```yaml
sudo: false
language: node_js
branches:
only:
- master
matrix:
fast_finish: true
include:
- os: linux
node_js: '6'
env: NODE_ENV="test" JOB_PART=test
- os: linux
node_js: '8'
env: NODE_ENV="test" JOB_PART=test
- os: linux
node_js: '8'
env: NODE_ENV="test... |
b23f072a-67c8-453d-b519-83dabd263d94 | {
"language": "YAML"
} | ```yaml
sudo: false
language: go
go:
- 1.7
- tip
before_install:
- go get github.com/golang/lint/golint
script:
- go install ./...
- go test -v ./...
- go vet -x ./...
- $HOME/gopath/bin/golint -set_exit_status ./...
```
Use Go stable and master with Travis CI | ```yaml
sudo: false
language: go
go:
- stable
- master
before_install:
- go get github.com/golang/lint/golint
script:
- go install ./...
- go test -v ./...
- go vet -x ./...
- $HOME/gopath/bin/golint -set_exit_status ./...
``` |
e0d054d1-dd4d-4f68-b8a8-6c61d049c53f | {
"language": "YAML"
} | ```yaml
language: android
jdk: oraclejdk7
env:
matrix:
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
- ANDROID_TARGET=android-9 ANDROID_ABI=armeabi
android:
components:
- build-tools-20.0.0
- android-20
- android-9
before_install:
# Emulator
- echo no | android create avd --force -n t... | ```yaml
language: android
jdk: oraclejdk7
env:
matrix:
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
# - ANDROID_TARGET=android-9 ANDROID_ABI=armeabi
android:
components:
- build-tools-20.0.0
- android-20
- android-9
before_install:
# Emulator
- echo no | android create avd --force -n ... |
edd18e2f-7762-4638-86bd-dbda27641493 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
node_js:
- "0.10"
env:
# Test against the latest version of Twisted.
- TWISTED_VERSION="Twisted"
matrix:
include:
# Test against the oldest version of Twisted that we claim to support
# This is a separate matrix inclusion to avoid spawning unnecessary... | ```yaml
language: python
python:
- "2.6"
- "2.7"
node_js:
- "0.10"
env:
# Test against the latest version of Twisted.
- TWISTED_VERSION="Twisted"
matrix:
include:
# Test against the oldest version of Twisted that we claim to support.
# This is a separate matrix inclusion to avoid spawning unnecessar... |
17384e22-dcd7-4bc5-bdcc-afb073518ee8 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.5"
sudo: required
services:
- docker
env:
- OC_VERSION=9.0
- OC_VERSION=9.1
- OC_VERSION=10.0
before_install:
- travis-build/setup_oc_docker.sh $OC_VERSION
install:
- pip install requests unittest-data-provider six
script:
- cp ownclou... | ```yaml
language: python
python:
- "2.7"
- "3.5"
sudo: required
services:
- docker
env:
- OC_VERSION=10.0
before_install:
- travis-build/setup_oc_docker.sh $OC_VERSION
install:
- pip install requests unittest-data-provider six
script:
- cp owncloud/test/config.py.sample owncloud/test/conf... |
2abc1d7e-7164-43db-9899-eb327b62504b | {
"language": "YAML"
} | ```yaml
language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.5
- 2.3.1
branches:
only:
- master
script: bundle exec rake
```
Test on Ruby 2.4 as well | ```yaml
language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.10
- 2.3.6
- 2.4.3
branches:
only:
- master
script: bundle exec rake
``` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.