doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
d74d2eda-5964-465b-98a5-fbc100d6578d | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode7
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install: gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8J... | ```yaml
language: objective-c
osx_image: xcode7.2
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install: gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt... |
ca2af18d-907b-419e-9d58-1ed77b6ed6dd | {
"language": "YAML"
} | ```yaml
sudo: false
language: java
node_js:
- "0.10"
before_script:
- cd www
- npm install -g bower
- rm -rf /home/travis/.npm/*
- npm install
- bower install -f
- cd ..
script: gradle build
notifications:
email:
recipients:
- os-v20-devs@krishagni.com
on_success: always
on_failure... | ```yaml
language: java
node_js:
- "0.10"
before_script:
- cd www
- npm install -g bower
- npm install
- bower install -f
- cd ..
script: gradle build
notifications:
email:
recipients:
- os-v20-devs@krishagni.com
on_success: always
on_failure: always
branches:
only:
- OS_v20
``... |
5b71a688-7f87-4b0a-8612-4b69b9264fa3 | {
"language": "YAML"
} | ```yaml
cache: bundler
language: ruby
rvm:
- '2.1'
# < 1.7.14
- 'jruby-1.7.13'
# >= 1.7.14
- 'jruby-1.7.14'
sudo: false
```
Set postgres version for Travis to 9.3 | ```yaml
cache: bundler
language: ruby
rvm:
- '2.1'
# < 1.7.14
- 'jruby-1.7.13'
# >= 1.7.14
- 'jruby-1.7.14'
sudo: false
addons:
postgresql: '9.3'
``` |
3650a1e3-c21a-48d6-9de4-0aa9f345dd1e | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.6"
cache:
pip: true
directories:
- $HOME/.gimme
- $HOME/.imageio
before_install:
- gimme 1.6
- export GOROOT="$HOME/.gimme/versions/go1.6.linux.amd64"
- export GOPATH="$HOME/.gimme/versions/go1.6.linux.amd64/bin:$TRAVIS_BUILD_DIR"
- $HOME/.gimme/versions/go1.6.lin... | ```yaml
language: python
# python:
# - "3.7"
# Workaround for Python 3.7
# https://github.com/travis-ci/travis-ci/issues/9815
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
cache:
pip: true
directories:
- $HOME/.gimme
- $HOME/.imageio
before_install:
- gimme 1.6
- export GOROOT="... |
5c168d95-31a8-4e5e-9396-3ab5d37f1a91 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
env:
- SYMFONY_VERSION=3.4.*
- SYMFONY_VERSION=^4
- SYMFONY_VERSION=^5
- SYMFONY_VERSION=dev-master
before_script:
- composer require symfony/dom-crawler:${SYMFONY_VERSION}
- composer require symfony/css-selector:${SYMFONY_VERSION}
script: vendor/bin/ph... | ```yaml
language: php
php:
- 7.4
- 8.0
- 8.1
env:
- SYMFONY_VERSION=4.4.*
- SYMFONY_VERSION=5.4.*
- SYMFONY_VERSION=6.0.*
- SYMFONY_VERSION=dev-master
before_script:
- composer require symfony/dom-crawler:${SYMFONY_VERSION}
- composer require symfony/css-selector:${SYMFONY_VERSION}
script: vendor/... |
050b3d32-0a98-41b1-90e8-c73eedaa1ed1 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc bash -c 'for dir in prolific.*; do (cd $dir && [ ! -e package.json ] && true || { [ ! -e skip ] && npm test; ... | ```yaml
language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- for dir in mingle.*; do (cd $dir && [ -e package.json ] && npm install --no-save --no-package-lock || true); done && git checkout .
- npm install -g nyc prove
script:
- nyc bash -c 'for dir ... |
7a2e76be-8b12-4908-a071-96322dea838a | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
cache: pip
python:
- "3.5"
addons:
postgresql: "9.4"
services:
- postgresql
branches:
only:
- master
env:
global:
- SECRET_KEY="SecretKeyForTravisCI"
- DATABASE_URL="postgis://postgres@localhost:5432/travis_ci_test"
- AZUREAD_AUTHO... | ```yaml
sudo: false
language: python
cache: pip
dist: trusty
python:
- 3.5
services:
- postgresql
addons:
postgresql: 9.5
apt:
packages:
- postgresql-9.5-postgis-2.3
branches:
only:
- master
env:
global:
- SECRET_KEY="SecretKeyForTravisCI"
- DATABASE_U... |
523e50cb-920b-491e-aa49-49fec8766433 | {
"language": "YAML"
} | ```yaml
language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
sudo: false
addons:
apt:
packages:
- libqt4-dev
- libqt4-private-dev
- libev-dev
before_install:
- git submodule update --init --recursive
script:
- ./build.sh
```
Use both Qt 4 and 5 | ```yaml
language: cpp
sudo: required
dist: trusty
env:
- QT_SELECT=4
- QT_SELECT=5
compiler:
- gcc
- clang
branches:
only:
- master
before_install:
- sudo apt-get -qq update
- sudo apt-get -qq -y install libqt4-dev libqt4-private-dev qtbase5-dev qtbase5-private-dev qtchooser libev-dev
- git sub... |
8ef03f1c-0602-413a-9b39-c954a0a9b9af | {
"language": "YAML"
} | ```yaml
language: rust
rust:
- stable
sudo: false
notifications:
email:
on_success: never
on_failure: always
addons:
apt:
packages:
- portaudio19-dev
script:
- cargo build
- cargo test
- cargo doc --no-deps
- "rustdoc --test README.md -L target/debug ... | ```yaml
language: rust
rust:
- stable
sudo: false
notifications:
email:
on_success: never
on_failure: always
addons:
apt:
packages:
- expect
- portaudio19-dev
script:
- cargo build
- cargo test
- cargo doc --no-deps
- "rustdoc --test READM... |
9d549c96-8a0e-49fb-b44e-31629fd2ebbf | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
script: ./node_modules/jake/bin/cli.js test --trace
```
Update NPM for Travis in Node v0.8 | ```yaml
language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- npm update -g npm
script: ./node_modules/jake/bin/cli.js test --trace
``` |
f8da467a-0ef6-4e94-bed0-f7bf96ffffe6 | {
"language": "YAML"
} | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example... | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod install --project-directory=Example
install:
... |
90a272c6-3fc5-4f41-90bf-409a199f9928 | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1604
- INSTANC... | ```yaml
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1604
- INSTANC... |
09c90b13-212a-40a6-b6ee-fc2e29f8ecb1 | {
"language": "YAML"
} | ```yaml
dist: bionic
language: minimal
services:
- docker
addons:
apt:
packages:
- docker-ce
script:
- make docker-build
deploy:
- provider: script
script: make docker-push
- provider: heroku
app: ifconfig-co
api_key:
secure: IQG/ls5Zu0yua5Ynn5EL9JCPjo1/WcmS0z7BSaXWdgW+JIWFm7oF... | ```yaml
dist: bionic
language: minimal
services:
- docker
before_install:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt-get update
- sudo apt-get -y -o ... |
b85b360d-1aea-4e14-bbf7-3854578e9fb9 | {
"language": "YAML"
} | ```yaml
language:
- python
python:
- "2.6"
- "2.7"
# - "3.2"
# - "3.3"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq gfortran libatlas-base-dev
- sudo apt-get install -qq python-numpy python-scipy
install:
- pip install nose scipy --use-m... | ```yaml
language:
- python
python:
- "2.6"
- "2.7"
# - "3.2"
# - "3.3"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq gfortran libatlas-base-dev
- sudo apt-get install -qq python-numpy python-scipy
install:
- pip install nose scipy --use-m... |
96ee0973-e26a-40b2-ab1e-aeccc62165a6 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.10
after_script:
- npm run coveralls
```
Use string for Travis Node version | ```yaml
language: node_js
node_js:
- "0.10"
after_script:
- npm run coveralls
``` |
9b5d7ac4-9b2d-484c-bb6a-e6743e2bf1bc | {
"language": "YAML"
} | ```yaml
services:
- elasticsearch
env:
- PLATFORM=centos-6
- PLATFORM=centos-7
- PLATFORM=debian-wheezy
- PLATFORM=debian-jessie
- PLATFORM=ubuntu-precise
- PLATFORM=ubuntu-trusty
sudo: true
install:
- curl -sLo - https://github.com/moul/travis-docker/raw/master/install.sh | sh -xe
# Wait for Elasti... | ```yaml
services:
- elasticsearch
env:
- PLATFORM=centos-6
- PLATFORM=centos-7
- PLATFORM=debian-wheezy
- PLATFORM=debian-jessie
- PLATFORM=ubuntu-precise
- PLATFORM=ubuntu-trusty
sudo: true
install:
- curl -sLo - https://github.com/moul/travis-docker/raw/master/install.sh | sh -xe
# Wait for Elasti... |
93dfa8fb-172e-4359-a0a8-5796aa56cc04 | {
"language": "YAML"
} | ```yaml
language: ruby
dist: trusty
sudo: false
before_install:
- gem update bundler
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- jruby-1.7.27
- jruby-9.1.13.0
- jruby-head
- rbx-3.86
matrix:
allow_failures:
-... | ```yaml
language: ruby
dist: trusty
sudo: false
before_install:
- [[ $TRAVIS_RUBY_VERSION = rbx-3.86 ]] && gem update --system 2.6.14
- gem update bundler
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- jruby-1.7.27
- jr... |
5a285381-55a9-4f73-80db-4132f293baa8 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
addons:
code_climate:
repo_token: 32699e05aed21bd9026b065e349447cdc048df7be29d8d28a6ca1f6e328f7ff3
```
Test against more ruby versions | ```yaml
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
- ruby-head
- jruby-head
before_install: gem install bundler -v 1.10.6
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 32699e05aed21bd9026b065e349447cdc048df7be29d8d28a6ca1f6e328f7ff3... |
00f286dd-f0da-4486-b57b-7ae27b4ae81a | {
"language": "YAML"
} | ```yaml
# stats available at
# https://travis-ci.org/fancycode/pylzma
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5-dev"
- "nightly"
install:
- wget --no-check-certificate -O tests/data/ux.stackexchange.com.7z https://archive.org/download/stackexchange/ux.stackexchange.com.7... | ```yaml
# stats available at
# https://travis-ci.org/fancycode/pylzma
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5-dev"
- "nightly"
env:
- CC=/usr/lib/ccache/gcc CXX=/usr/lib/ccache/g++
addons:
apt:
packages:
- ccache
cache:
directories:
- $HOME/.ccache
i... |
c399fbc5-f05b-4356-89ae-b6fb9eebbb1a | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install: "pip install -r requirements-dev.txt"
# command to run tests
script:
- nosetests
- nosetests --with-coverage
```
Use coverage version 3.7.1 for Python 3.2 on TravisCI | ```yaml
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- travis_retry pip install -r requirements-dev.txt
# unicode bug with coverage on python 3.2, must use coverage 3.7.1
# https://bitbucket.org/ned/coveragepy/iss... |
4e405220-498e-4b0c-a5fe-4b6dbcc2e6a9 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- node
cache: yarn
deploy:
provider: npm
email: jamie@jamieconnolly.com
api_key:
secure: OSBoCPEsY2/K+REn2NAdwphUe8wW9vc8F3CrlcN0vbUqyp341tC3U0BQP1rGl3xQqSDsRPbhqwaXISd9yDJuM1rcCPUL/xsjZ5VdATdjNrNIGxD3BXon8csNHLgtuFE0XKv2k4Fk148qtRmP65dXvObkJuTJaQvXXtC3b+cMInktoC3Yi5plN... | ```yaml
language: node_js
node_js:
- node
cache: yarn
deploy:
provider: npm
email: ${NPM_EMAIL}
api_key: ${NPM_TOKEN}
on:
branch: master
repo: ${TRAVIS_REPO_SLUG}
tags: true
``` |
097aa32b-a880-458c-b3dc-cb149bd00e74 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode7.2
xcode_project: TipCalculator.xcodeproj
xcode_scheme: TipCalculator
xcode_sdk: iphonesimulator9.2
before_install:
- brew update
- brew install swiftlint
- swiftlint lint```
Add Travis webhook for Gitter | ```yaml
language: objective-c
osx_image: xcode7.2
xcode_project: TipCalculator.xcodeproj
xcode_scheme: TipCalculator
xcode_sdk: iphonesimulator9.2
before_install:
- brew update
- brew install swiftlint
- swiftlint lint
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/705b3f17ce883f8... |
7a68e8e5-7f1c-4730-8024-bcad9cb62e10 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode8
before_install:
- carthage bootstrap --verbose
script:
- xcodebuild clean build test -project SwiftyJSONModel.xcodeproj -scheme SwiftyJSONModel -destination 'platform=iOS Simulator,name=iPhone 6'
notifications:
email: true
```
Make sure to open simulator before ... | ```yaml
language: objective-c
osx_image: xcode8
before_install:
- carthage bootstrap --verbose
script:
- open -a "simulator" --args -CurrentDeviceUDID A84965FC-070D-4EAF-83E8-84FFE99F5866
- xcodebuild clean build test -project SwiftyJSONModel.xcodeproj -scheme SwiftyJSONModel -destination 'platform=iOS Simulato... |
18feee8d-724d-4ca9-a838-41039b3cc70d | {
"language": "YAML"
} | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8.1
language: objective-c
xcode_sdk: iphonesimulator10.1
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest ... | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8
language: objective-c
xcode_sdk: iphonesimulator10.0
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest ve... |
7e606be2-31ce-4110-b36e-d8957ee75c44 | {
"language": "YAML"
} | ```yaml
---
language: java
env:
- MAVEN_VERSION=3.0.5
- MAVEN_VERSION=3.1.1
- MAVEN_VERSION=3.2.5
- MAVEN_VERSION=3.3.9
install:
- "mvn -N io.takari:maven:wrapper -Dmaven=${MAVEN_VERSION}"
- "./mvnw --show-version --errors --batch-mode test-compile dependency:go-offline"
script:
- "./mvnw --show-version ... | ```yaml
---
language: java
env:
- MAVEN_VERSION=3.0.5
- MAVEN_VERSION=3.1.1
- MAVEN_VERSION=3.2.5
- MAVEN_VERSION=3.3.9
install:
- "mvn -N io.takari:maven:wrapper -Dmaven=${MAVEN_VERSION}"
- "./mvnw --show-version --errors --batch-mode test-compile dependency:go-offline"
script:
- "./mvnw --show-version ... |
c177c415-8f46-4654-8eb5-8253e4f90830 | {
"language": "YAML"
} | ```yaml
---
sudo: required
language: python
# Currently failing with Python3.
python: 2.7
cache: pip
services:
- docker
branches:
only:
- travis-experiments
- dev
- customized
# Manual build matrix.
# See https://github.com/travis-ci/travis-ci/issues/1519
env:
- MOLECULE_DISTRO=ubuntu1604 SCENARIO=defau... | ```yaml
---
sudo: required
language: python
# Currently failing with Python3.
python: 2.7
cache: pip
services:
- docker
branches:
only:
- travis-experiments
- dev
- customized
# Manual build matrix.
# See https://github.com/travis-ci/travis-ci/issues/1519
env:
- MOLECULE_DISTRO=ubuntu1604 SCENARIO=defau... |
2f465450-6687-4b2d-b718-83572f62d12d | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1.2
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
addons:
postgresql: "9.3"
bundler_args: "--without development:production --deployment"
cache: bundler
before_install:
- gem install coveralls
- gem install scss-lint
before_script:
- psql -c 'create database co... | ```yaml
language: ruby
rvm:
- 2.1.2
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
addons:
postgresql: "9.3"
bundler_args: "--without development:production --deployment"
cache: bundler
before_install:
- gem install coveralls
- gem install scss-lint
before_script:
- psql -c 'create database co... |
1af82bbe-ce5a-42e7-87bd-75d811c6970a | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '7'
- '6'
- '4'
cache:
directories:
- node_modules
```
Remove test for node v4 | ```yaml
language: node_js
node_js:
- '7'
- '6'
cache:
directories:
- node_modules
``` |
ed313a29-e6b2-4d93-afaf-ed22f14934c3 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
# gearman
- sudo apt-get remove gearman-job-server
- sudo apt-get install gearman-job-server libgearman-dev
- printf "\n"| pecl install gearman-1.0.3
## Composer
- composer self-update
- composer install --prefer-source --no-inte... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
install:
# gearman
- sudo apt-get remove gearman-job-server
- sudo apt-get install gearman-job-server libgearman-dev
- printf "\n"| pecl install gearman-1.0.3
## Composer
- composer self-update
- composer install --prefer-source --no-interactio... |
b3f880dc-fefb-4a0e-b3da-3016e3344ea1 | {
"language": "YAML"
} | ```yaml
language: c
install: sudo apt-get install cmake
compiler: clang
script:
- cmake CMakeLists.txt
- make
- make test```
Add one more test to Travis config | ```yaml
language: c
install: sudo apt-get install cmake
compiler: clang
script:
- cmake CMakeLists.txt
- make
- make test
- ./8080_Emulator``` |
291b1a2d-f1c0-4802-bc61-163eeb0c22d3 | {
"language": "YAML"
} | ```yaml
language: csharp
solution: src/SME.sln
install:
- nuget restore src/SME.sln
script:
- xbuild /p:Configuration=Release src/SME.sln
- cd "$TRAVIS_BUILD_DIR/src/Examples/ColorBin/bin/Release" && mono ./src/Examples/ColorBin/bin/Release/ColorBin.exe
- cd "$TRAVIS_BUILD_DIR/src/Examples/SimpleTrader/bin/Rele... | ```yaml
language: csharp
solution: src/SME.sln
install:
- apt get install ghdl
- nuget restore src/SME.sln
script:
- xbuild /p:Configuration=Release src/SME.sln
- cd "$TRAVIS_BUILD_DIR/src/Examples/ColorBin/bin/Release" && mono ColorBin.exe
- cd "$TRAVIS_BUILD_DIR/src/Examples/SimpleTrader/bin/Release" && mon... |
71f73297-7ff4-4724-ae7c-03d005eebed1 | {
"language": "YAML"
} | ```yaml
dist: xenial
sudo: required
services:
- docker
before_cache:
# Travis can't cache files that are not readable by "others"
- chmod -R a+r $HOME/gopath
- chmod -R a+r $HOME/cached-deps
cache:
directories:
- $HOME/.cache/go-build
- $HOME/cached-deps
- $HOME/gopath
language: go
go:
- "1.12.6"
en... | ```yaml
dist: xenial
sudo: required
services:
- docker
cache:
directories:
- $HOME/.cache/go-build
- $HOME/cached-deps
language: go
go:
- "1.12.6"
env:
global:
- PATH=$HOME/cached-deps:$PATH
matrix:
- BUCKET=MISC
# If you want to update the number of PPS workers, you'll also need to update
... |
4e94141b-5050-4d79-b590-5d236b39c627 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
# command to install dependencies
install: "pip install -r requirements.txt --use-mirrors"
# command to run pep8
before_script: python setup.py pep8
# command to run tests
script: nosetests
```
Add secure vars for Travis CI | ```yaml
language: python
python:
- "2.7"
env:
global:
- secure: "ih7F8VD5AwdPgxtwwU5qCHkvozAnlaleBUhpm0WyhNdakLbNw/xf1jX9GJOC\nNBcEplvA9TZBVQldKobKjZe98krfDYVyaptwudNMezQWMjuaJgN45uOaTxCr\ntYUTJet9fNDrZlL3w2F46jFopzYyHS/s99JduauOgRVBeQDs7bU="
- secure: "h7Sa8E6mZyI+H9sJMAUU5y4AFiE5cVKGWOZMzQBItFEL6HjIRxtHD... |
855e9b66-6e37-410a-80bb-cffe304e835a | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
allow_failures:
- php: nightly
install:
- composer install
before_install:
- composer self-update
sudo: false
```
Allow build failures on PHP 5.4 as only tests are not correct | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
allow_failures:
- php: nightly
- php: 5.4
install:
- composer install
before_install:
- composer self-update
sudo: false
``` |
102c2731-1076-45c6-84a8-a610fb63c901 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
addons:
postgresql: "9.4"
env:
- SECRET_KEY=test DB_NAME=dbtest DB_USER=test DB_PASS=test
virtualenv:
system_site_packages: true
before_install:
- export DJANGO_SETTINGS_MODULE=openprescribing.settings.local
- export PYTHONPATH=$HOME/builds/edmdatalab/openprescribi... | ```yaml
language: python
python:
- "2.7"
addons:
postgresql: "9.4"
env:
- SECRET_KEY=test DB_NAME=dbtest DB_USER=test DB_PASS=test
virtualenv:
system_site_packages: true
before_install:
- export DJANGO_SETTINGS_MODULE=openprescribing.settings.local
- export PYTHONPATH=$HOME/builds/edmdatalab/openprescribi... |
5e2fe73a-8251-41d1-813e-f3e40e1fe94a | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9.1.7.0
- jruby-head
- ruby-head
- rubinius-3
matrix:
allow_failures:
- rvm: jruby-9.1.7.0
- rvm: jruby-head
- rvm: ruby-head
- rvm: rubinius-3
before_install:
- sudo apt-get -qq update
- sudo apt-get i... | ```yaml
sudo: required
dist: trusty
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9.1.13.0
- jruby-head
- ruby-head
- rubinius-3
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rubinius-3
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libgirepositor... |
17a2e91b-f380-402b-baa8-9d1da15250ad | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "node"
before_script:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
mkdir build;
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./build/cc-test-reporter;
chmod +x ./build/cc-test-reporter;
./build/cc-test-rep... | ```yaml
language: node_js
node_js:
- "node"
before_script:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
mkdir build;
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./build/cc-test-reporter;
chmod +x ./build/cc-test-reporter;
./build/cc-test-rep... |
24159cf9-c380-421e-bd9e-13dd2403044a | {
"language": "YAML"
} | ```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:
... | ```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:
... |
73a9bea9-e358-4478-a336-754d1310d9d1 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.2
- 1.3
- 1.4
- tip
services:
- mysql
- postgres
- sqlite3
env:
global:
- secure: RriLxF6+2yMl67hdVv8ImXlu0h62mhcpqjaOgYNU+IEbUQ7hx96CKY6gkpYubW3BgApvF5RH6j3+HKvh2kGp0XhDOYOQCODfBSaSipZ5Aa5RKjsEYLtuVIobvJ80awR9hUeql69+WXs0/s72WThG0qTbOUY4pqHWfteeY235hWM=
before_script:
- mysql -e "CR... | ```yaml
language: go
go:
- 1.3
- 1.4
- tip
services:
- mysql
- postgres
- sqlite3
env:
global:
- secure: RriLxF6+2yMl67hdVv8ImXlu0h62mhcpqjaOgYNU+IEbUQ7hx96CKY6gkpYubW3BgApvF5RH6j3+HKvh2kGp0XhDOYOQCODfBSaSipZ5Aa5RKjsEYLtuVIobvJ80awR9hUeql69+WXs0/s72WThG0qTbOUY4pqHWfteeY235hWM=
before_script:
- mysql -e "CREATE D... |
de25e5fc-4f77-4ed7-939b-715e46b6a8ce | {
"language": "YAML"
} | ```yaml
language: java
sudo: false
before_install:
- openssl aes-256-cbc -d -pass "env:DECRYPT_KEYPHRASE" -in .gnupg.tar.enc | tar xv
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "if [[ ${TRAVIS_TAG} != '' ]]; then mvn versions:set -DnewVersion='${TRAVIS_TAG}'; fi"
script: mvn clean verify
aft... | ```yaml
language: java
sudo: false
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- 'if [[ -n "$DECRYPT_KEYPHRASE" ]]; then openssl aes-256-cbc -d -pass "env:DECRYPT_KEYPHRASE" -in .gnupg.tar.enc | tar xv; fi'
- 'if [[ ${TRAVIS_TAG} != "" ]]; then mvn versions:set -DnewVersion="${TRA... |
914e0f7b-0b66-4292-a275-c93d5e427936 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
- nightly
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- composer test-ci
- vendor/bin/phpcs --config-set ignore_warnings_on_exit... | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
- nightly
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- composer test-ci
- vendor/bin/phpcs --config-set ignore_warnings_on_exit 1
- vendor/bin/phpcs --standard=psr2 src
... |
4f94d096-aaaf-406e-a35a-e13d27a25048 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
script: mvn verify -Dmaven.javadoc.skip=true```
Remove Oracle JDK8 from build as breaking | ```yaml
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
script: mvn verify -Dmaven.javadoc.skip=true``` |
127235f8-a5b0-4bbe-b095-dfe882c7624f | {
"language": "YAML"
} | ```yaml
---
branches:
only:
- "master"
dist: bionic
language: python
python: 3.5
env:
matrix:
- MOLECULE_DISTRO: centos/7
- MOLECULE_DISTRO: centos/8
- MOLECULE_DISTRO: debian/stretch64
- MOLECULE_DISTRO: debian/buster64
- MOLECULE_DISTRO: generic/ubuntu1604
- MOLECULE_DISTRO: generi... | ```yaml
---
branches:
only:
- "master"
dist: bionic
language: python
python: 3.5
env:
matrix:
- MOLECULE_DISTRO: centos/7
- MOLECULE_DISTRO: centos/8
- MOLECULE_DISTRO: debian/stretch64
- MOLECULE_DISTRO: debian/buster64
- MOLECULE_DISTRO: generic/ubuntu1604
- MOLECULE_DISTRO: generi... |
f0087576-3019-492d-8497-c084f0bc145a | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
- "0.8"
```
Allow 0.10.x to fail until its fully supported | ```yaml
language: node_js
node_js:
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.10"
``` |
13357b2d-8f63-496b-8b59-156918f435fb | {
"language": "YAML"
} | ```yaml
# Config file for automatic testing at travis-ci.org
language: python
python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python se... | ```yaml
# Config file for automatic testing at travis-ci.org
language: python
dist: xenial
python:
- "3.8"
- "3.7"
- "3.6"
- "3.5"
- "2.7"
- "pypy"
- "pypy3"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# ... |
996f6db5-2511-4f9a-bd0e-863529761310 | {
"language": "YAML"
} | ```yaml
language: go
sudo: false
matrix:
include:
- go: 1.5
- go: 1.6
- go: 1.7
branches:
only:
- v1
before_install:
- go get golang.org/x/tools/cmd/cover
install:
- make generate
script:
- GO15VENDOREXPERIMENT=1 go test -v -coverprofile=coverage.txt -covermode=atomic
after_success:
- ... | ```yaml
language: go
sudo: false
matrix:
include:
- go: 1.5
- go: 1.6
- go: 1.7
branches:
only:
- v1
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/golang/mock/mockgen
install:
- make generate
script:
- GO15VENDOREXPERIMENT=1 go test -v -coverprofile=coverage.... |
62749978-b869-4d7b-9f00-f5caf7081efb | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.3
before_script:
- composer install
- SUBJECT="/C=CL/title=PERSONA NATURAL/CN=NOMBRE DEL USUARIO/emailAddress=user@example.com/serialNumber=11222333-4"
- openssl req -x509 -sha256 -nodes -days 1 -newkey rsa:2048 -keyout tests/firma.key -out tests/firma.crt -subj "$SUBJECT"... | ```yaml
language: php
php:
- 7.3
before_script:
- composer install
- SUBJECT="/C=CL/title=PERSONA NATURAL/CN=NOMBRE DEL USUARIO/emailAddress=user@example.com/serialNumber=11222333-4"
- openssl req -x509 -sha256 -nodes -days 1 -newkey rsa:2048 -keyout tests/firma.key -out tests/firma.crt -subj "$SUBJECT"... |
5dd66aad-acbf-47fb-ae89-d552879f7d28 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- 2.2.0
bundler_args: --without debug
```
Fix Travis build by forcing updating Bundler | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- 2.2.0
bundler_args: --without debug
before_install:
- gem update bundler
``` |
741da73c-93b2-4de6-a63d-c687540034ad | {
"language": "YAML"
} | ```yaml
language: python
cache: pip
matrix:
include:
- os: linux
dist: trusty
python: '2.6'
- os: linux
dist: trusty
python: '2.7'
- os: linux
dist: trusty
python: '3.2'
- os: linux
dist: trusty
python: '3.3'
- os: linux
dist: trusty
python: '3.4'
- os: linux
di... | ```yaml
language: python
cache: pip
matrix:
include:
- os: linux
dist: trusty
python: '2.6'
- os: linux
dist: trusty
python: '2.7'
- os: linux
dist: trusty
python: '3.2'
- os: linux
dist: trusty
python: '3.3'
- os: linux
dist: trusty
python: '3.4'
- os: linux
di... |
40abe813-a0d6-4419-aa9d-29a0856aadc5 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-scipy python-nose
install:
# pip install . will run setup and check pip success
- pip install .
- pip install coveralls
script:
#- nosetests pyamg --with-coverage --cover-package=... | ```yaml
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-scipy python-nose
install:
# pip install . will run setup and check pip success
- pip install .
- pip install coveralls
script:
#- nosetests pyamg -... |
e603a045-d41d-4181-b4e9-135c04e52b84 | {
"language": "YAML"
} | ```yaml
language: c
before_install:
- sudo apt-get update -qq >/dev/null
- sudo apt-get install -qq libudev-dev libboost-all-dev >/dev/null
- cd ..; wget 'http://freefr.dl.sourceforge.net/project/sdcc/sdcc/3.5.0/sdcc-src-3.5.0.tar.bz2' -O sdcc.tar.bz2; tar xjf sdcc.tar.bz2; cd sdcc-3.5.0; ./configure --disable-p... | ```yaml
language: c
before_install:
- sudo apt-get update -qq >/dev/null
- sudo apt-get install -qq libudev-dev libboost-all-dev >/dev/null
- cd ..; wget 'http://freefr.dl.sourceforge.net/project/sdcc/sdcc/3.5.0/sdcc-src-3.5.0.tar.bz2' -O sdcc.tar.bz2; tar xjf sdcc.tar.bz2; cd sdcc-3.5.0; ./configure --disable-p... |
a762811b-9cd7-4d9d-acbc-9fe7280116c0 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- openjdk10
- oraclejdk10
```
Exclude archive signing from Travis CI builds | ```yaml
language:
- java
jdk:
- openjdk10
- oraclejdk10
install:
- true
script:
- ./gradlew -x signArchives assemble
``` |
94f18989-be2a-45d2-9463-14b6b24cae86 | {
"language": "YAML"
} | ```yaml
---
sudo: false
addons:
apt:
packages:
- aspell
- aspell-en
language: perl
perl:
- blead
- blead-thr
- dev
- dev-thr
- '5.26'
- 5.26-thr
- '5.24'
- 5.24-thr
- '5.22'
- 5.22-thr
- '5.20'
- 5.20-thr
- '5.18'
- 5.18-thr
- '5.16'
- 5.16-thr
- '5.14'
- 5.14-thr
... | ```yaml
---
addons:
apt:
packages:
- aspell
- aspell-en
language: perl
perl:
- blead
- blead-thr
- dev
- dev-thr
- '5.28'
- 5.28-thr
- '5.26'
- 5.26-thr
- '5.24'
- 5.24-thr
- '5.22'
- 5.22-thr
- '5.20'
- 5.20-thr
- '5.18'
- 5.18-thr
- '5.16'
- 5.16-thr
- '5.14'
... |
3bbf65ab-6c14-47f5-bc6c-eca48720a107 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
script: gulp travis
```
Check compatibility with node 4.0 | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
- "4.0.0"
script: gulp travis
``` |
8bf053c2-1a65-4278-bc61-6985bfce35cf | {
"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 jacoco:report
after_success:
- bash <(curl -s https://codecov.io/bash)
git:
de... | ```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 jacoco:report
after_success:
- bash <(curl -s https://codecov.io/bash)
git:
depth: false
``` |
2efb337f-4ea9-4d51-87ca-ffa600794109 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
branches:
only:
- master
before_script:
- composer update --prefer-source --dev
script:
- bin/phpspec run -fpretty
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/dd240af232144434bff2
on_success: change ... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
branches:
only:
- master
env:
- deps=low
- deps=high
before_script:
- composer self-update
- if [ "$deps" = "high" ]; then composer update --pr... |
c51c3a04-e920-4aa6-b47f-5bfbdc737fc5 | {
"language": "YAML"
} | ```yaml
---
after_script:
- ruby -Ilib bin/rake travis:after -t
before_script:
- gem install hoe-travis --no-rdoc --no-ri
- gem install minitest -v '~> 5.0' --no-rdoc --no-ri
- ruby -Ilib bin/rake travis:before -t
language: ruby
sudo: false
notifications:
email:
- drbrain@segment7.net
rvm:
- 1.8.7
- 1.9.3
- 2... | ```yaml
---
after_script:
- ruby -Ilib bin/rake travis:after -t
before_script:
- gem install hoe-travis --no-rdoc --no-ri
- gem install minitest -v '~> 5.0' --no-rdoc --no-ri
- ruby -Ilib bin/rake travis:before -t
language: ruby
sudo: false
notifications:
email:
- drbrain@segment7.net
rvm:
- 1.8.7
- 1.9.3
- 2... |
2298ef19-50b8-40c9-9d55-d92441321e58 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.6"
install: "pip install -r requirements.txt"
script: nosetests -v
```
Add more python versions to test against. | ```yaml
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: "pip install -r requirements.txt"
script: nosetests -v
``` |
41d9dd60-ed30-455a-bd7a-1a7495ed41ad | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source
script:
- mkdir -p build/logs
- ./vendor/bin/parallel-lint src tests
- ./vendor/bin/phpunit --coverage-text
- ./vendor/bi... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
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 --coverage-text
- ./vendor/bin/... |
7edaff82-f112-4cfe-98c0-157101cc0e42 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.10
deploy:
provider: heroku
api_key:
secure: L1IGPLjR0d4M4ShJRpmDd5iIC78yLgSdF3lkELkFZ238b6l9CRNw64ZCm73ECVqeRf36FoWk4hBfAtxOGfDjCOvXFgYxL6VRCKpX29vNisJ1yXGWuDDedOKUzfZ5iGB7NlrXHTIApgr7fyN+KgySpsTqLCmSGqnW6pawOutSMd8=
app: lodash-webbuilder
install: true
```
Add a dev v... | ```yaml
language: node_js
node_js:
- 0.10
deploy:
provider: heroku
api_key:
secure: L1IGPLjR0d4M4ShJRpmDd5iIC78yLgSdF3lkELkFZ238b6l9CRNw64ZCm73ECVqeRf36FoWk4hBfAtxOGfDjCOvXFgYxL6VRCKpX29vNisJ1yXGWuDDedOKUzfZ5iGB7NlrXHTIApgr7fyN+KgySpsTqLCmSGqnW6pawOutSMd8=
app:
master: lodash-webbuilder
dev: lodash-w... |
5cadb3ef-76db-47f5-afd2-2156f649b201 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.8.7
branches:
only:
- master
- production
before_install:
- sudo apt-get update
- sudo apt-get install aspell libaspell-dev aspell-en
- gem install ruby-debug -- --with-ruby-include=$rvm_path/src/ruby-1.8.7-head/
- gem install raspell -- --with-ruby-include=... | ```yaml
language: ruby
rvm:
- 1.8.7
branches:
only:
- master
- production
before_install:
- sudo apt-get update
- sudo apt-get install aspell libaspell-dev aspell-en
- gem install ruby-debug -- --with-ruby-include=$rvm_path/src/ruby-1.8.7-head/
- gem install raspell -- --with-ruby-include=... |
a69711ed-9833-48b3-beaa-e58e6cc37b0a | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
notifications:
email:
on_success: never
```
Disable email notifications and add Node.js 7 | ```yaml
language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
- "7"
notifications:
email: false
``` |
216b7e16-8c70-4cfc-b0d5-62390f0fc04b | {
"language": "YAML"
} | ```yaml
---
language: [ ruby, node_js ]
rvm: [ 2.2.0 ]
node_js: [ 0.10 ]
cache: bundler
sudo: false
before_script:
- npm install bower -g
- bower install
before_install:
- 'echo ''gem: --no-document'' > ~/.gemrc'
script: bundle exec rake travis
```
Add bower_components to Travis CI cache. | ```yaml
---
language: [ ruby, node_js ]
rvm: [ 2.2.0 ]
node_js: [ 0.10 ]
cache:
bundler: true
directories:
- bower_components
sudo: false
before_script:
- npm install bower -g
- bower install
before_install:
- 'echo ''gem: --no-document'' > ~/.gemrc'
script: bundle exec rake travis
``` |
c6f17f76-e85b-4a84-9adb-a7be86c770c4 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
install:
- composer install
script:
- phpunit tests
- ./tests/lint.sh
git:
depth: 5
```
Use mailercatch to allow test emails to be sent | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
install:
- composer install
before_script:
- gem install mailcatcher
- mailcatcher --smtp-port 25
script:
- phpunit tests
- ./tests/lint.sh
git:
depth: 5
``` |
3de708d1-f182-47d3-b266-fe4c64320f0f | {
"language": "YAML"
} | ```yaml
---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
["git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-releng", ".forge-releng/publish"]
env:
global:
... | ```yaml
---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
["git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-releng", ".forge-releng/publish"]
env:
global:
... |
977aefd3-d9e8-420a-9608-fc470a899265 | {
"language": "YAML"
} | ```yaml
language: python
cache: pip
python:
- "3.6"
before_install:
- python3 -m pip install -U coverage codecov mypy
install:
- python3 -m pip install -r requirements.txt
script:
- python3 -m coverage run --branch -m unittest discover -t . -s ni/test/
- ./mypy.sh
after_success:
- codecov
```
Test against ... | ```yaml
language: python
cache: pip
python:
- "3.6-dev"
- "3.7-dev"
- "nightly"
before_install:
- python3 -m pip install -U coverage codecov mypy
install:
- python3 -m pip install -r requirements.txt
script:
- python3 -m coverage run --branch -m unittest discover -t . -s ni/test/
- ./mypy.sh
after_success... |
5861b1a7-1122-49de-b66e-5116ab0e9f6c | {
"language": "YAML"
} | ```yaml
language: node_js
before_install:
- sudo apt-get install build-essential
- curl -sL https://github.com/Itseez/opencv/archive/2.4.6.1.zip > opencv.zip
- unzip opencv.zip
- rm opencv.zip
- mkdir opencv-build
- cd opencv-build/
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUIL... | ```yaml
language: node_js
before_install:
- sudo apt-get install build-essential
- curl -sL https://github.com/Itseez/opencv/archive/2.4.6.1.zip > opencv.zip
- unzip opencv.zip
- rm opencv.zip
- mkdir opencv-build
- cd opencv-build/
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUIL... |
afa96282-9fdc-4254-827f-2699b07ee433 | {
"language": "YAML"
} | ```yaml
# Use Travis CI's container infrastructure to enable caching.
sudo: false
# "haskell" will set up the whole haskell-platform. We don't need that.
language: c
addons:
apt:
packages:
- libgmp-dev
# Just use the default version of PostgreSQL installed on Travis CI.
# postgresql: "9.1"
env:
- AR... | ```yaml
# Use Travis CI's container infrastructure to enable caching.
sudo: false
# "haskell" will set up the whole haskell-platform. We don't need that.
language: c
addons:
apt:
packages:
- libgmp-dev
# Just use the default version of PostgreSQL installed on Travis CI.
# postgresql: "9.1"
env:
- AR... |
edecfd29-e5fa-469d-94c9-0a67d1a47af8 | {
"language": "YAML"
} | ```yaml
# Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
language: python
python:
- 2.7
- 3.4
- 3.5
addons:
firefox: "52.0"
before_install:
- pip install -U pip pytest
install:
- >
curl -L https://github.com/mozilla/geckodriver/relea... | ```yaml
# Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
language: python
python:
- 2.7
- 3.4
- 3.5
addons:
firefox: "52.0"
before_install:
- pip install -U pip pytest wheel
- python setup.py bdist_wheel
- rm -rf kibitzr
install:
- >... |
590cb280-28c6-4df7-9988-c500bb7ac76f | {
"language": "YAML"
} | ```yaml
language: python
before_script:
- pip install tox
- pip2 install --force-reinstall 'ansible===1.9.4'
- ansible-galaxy install --role-file=ansible-role-requirements.yml --force --roles-path=/home/travis/build/rcbops/rpc-openstack/rpcd/playbooks/roles
script: tox
notifications:
email: false
matrix:
incl... | ```yaml
language: python
before_script:
- pip install tox
- pip2 install --force-reinstall 'ansible===1.9.4'
- ansible-galaxy install --role-file=ansible-role-requirements.yml --force --roles-path=/home/travis/build/rcbops/rpc-openstack/rpcd/playbooks/roles
script: tox
notifications:
email: false
matrix:
incl... |
c3c2d2d7-6e3b-43f7-9715-fa54420b6544 | {
"language": "YAML"
} | ```yaml
group: travis_latest
language: php
php:
- 7.3
- 7.2
- 7.1
- nightly
matrix:
include:
- php: 7.1
env: lowest=1
- php: 7.2
env: csfixer=1
allow_failures:
- php: nightly
cache:
directories:
- $HOME/.composer/cache
- $HOME/.cache/composer
- $HOME/.cache/opcache
... | ```yaml
group: travis_latest
language: php
php:
- 7.4
- 7.3
- 7.2
- 7.1
- nightly
matrix:
include:
- php: 7.1
env: lowest=1
- php: 7.2
env: csfixer=1
allow_failures:
- php: nightly
cache:
directories:
- $HOME/.composer/cache
- $HOME/.cache/composer
- $HOME/.cache/o... |
b28d2853-c88e-4b1e-8611-074c828c77cc | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
before_script:
- composer self-update
- composer install --dev
script: ./vendor/bin/phpunit -v
```
Add php 7.3 and 7.4 to CI test config | ```yaml
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
before_script:
- composer self-update
- composer install --dev
script: ./vendor/bin/phpunit -v
``` |
a8f59b44-2018-484e-ae48-b0cddac0b2da | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.2
- 2.3.5 # https://github.com/travis-ci/travis-ci/issues/5361
- 2.4.2
gemfile:
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.0.gemfile
before_install:
- gem update bundler
script: "bundle exec rake test"
```
Drop unsupported Rubies, add 2.5 and 2.6 | ```yaml
language: ruby
rvm:
- 2.4.9
- 2.5.7
- 2.6.5
gemfile:
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.0.gemfile
before_install:
- gem update bundler
script: "bundle exec rake test"
``` |
194764b4-2bcf-45a1-b22a-c5f4189888ad | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
- 1.9.3
#- 2.1.1
- 2.2.2
- 2.3.1
- jruby-19mode
- jruby-20mode
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
sudo: false
cache: bundler
```
Add Ruby 2.4.1 to Travis checks | ```yaml
language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
- 1.9.3
#- 2.1.1
- 2.2.2
- 2.3.1
- 2.4.1
- jruby-19mode
- jruby-20mode
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
sudo: false
cache: bundler
``` |
3e143b90-6f6b-4011-a676-b4920dbeea8c | {
"language": "YAML"
} | ```yaml
sudo: true
env:
- NODE_VERSION="4.4"
- NODE_VERSION="6.3"
os:
- osx
before_install:
- brew update
- brew install libusb
- brew install nvm
- export NVM_DIR=~/.nvm
- source $(brew --prefix nvm)/nvm.sh
- nvm install $NODE_VERSION
- node --version
- npm --version
- npm update -g npm
- npm... | ```yaml
sudo: false
language: node_js
node_js:
- "4"
- "6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
after_success:
- cat .bob/coverage/buster-... |
53a1f1f9-6815-44d4-ab2e-8cdedb5682e3 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
# command to install dependencies
install: "pip install -r requirements.txt --use-mirrors"
before_script:
- "sudo apt-get install libtidy-dev"
# - "svn --quiet checkout http://googleappengine.googlecode.com/svn/trunk/python ."
- "wget \"https://googleappengine.googlecode... | ```yaml
language: python
python:
- "2.7"
# command to install dependencies
install: "pip install -r requirements.txt --use-mirrors"
before_script:
- "sudo apt-get install libtidy-dev"
# - "svn --quiet checkout http://googleappengine.googlecode.com/svn/trunk/python ."
- "wget \"https://googleappengine.googlecode.... |
fb97fca1-2224-4aa1-97db-34ffe950734d | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
cache:
directories:
- .eggs
python:
- "2.7"
- "3.5"
- "3.6"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.9
- DJANGO_VERSION=1.10
install:
- pip install coveralls flake8 urllib3
- pip install django==${DJANGO_VERSION}
script:
- coverage run --branch --sour... | ```yaml
language: python
dist: xenial
sudo: required
sudo: false
cache:
directories:
- .eggs
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.9
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11
install:
- pip install coveralls flake8 urllib3
- pip install djang... |
8e3995b3-9c86-4bc5-9806-44d06d90d79e | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
addons:
apt:
packages:
- libatlas-base-dev
- libfftw3-dev
before_install:
- pip install codecov
- git clone https://github.com/arrayfire/arrayfire
- cd arrayfire && mkdir build && cd build
- cmake -DCMAKE_CX... | ```yaml
language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
addons:
apt:
packages:
- libatlas-base-dev
- libfftw3-dev
before_install:
- pip install codecov
- git clone https://github.com/arrayfire/arrayfire
- cd arrayfire && mkdir build && cd build
- cmake -DCMAKE_CX... |
4a3a401d-8ffc-4905-9a86-b4ebbdb687ed | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- pypy3
install:
- pip install .[test]
- pip install coverage flake8
script:
- coverage run --source=watchtower ./test/test.py
# - coverage report --show-missing
after_success:
- bash <(curl -s https://codecov.io/bash)
matrix:
allow_failu... | ```yaml
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- pypy3
install:
- make install
script:
- make test
after_success:
- bash <(curl -s https://codecov.io/bash)
matrix:
allow_failures:
- python: pypy3
sudo: false
cache: pip
``` |
d524b6c5-6342-4770-b5c1-084956842266 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.5.3
cache: bundler
before_script:
- gem update --system
- gem install bundler
- gem install awesome_bot
script:
- awesome_bot README.md --allow-redirect --white-list mastodon
```
Update Ruby for Travis CI to 2.6.0... | ```yaml
language: ruby
rvm:
- 2.6.0
cache:
directories:
- /home/travis/.rvm/
before_script:
- gem update --system
- gem install bundler
- gem install awesome_bot
script:
- awesome_bot README.md --allow-redirect --white-list mastodon
``` |
c526ad70-c454-4297-a72b-ba3d085b2200 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5-dev
install:
- pip install . coverage coveralls flake8 flake8-import-order nose
script:
- flake8
- nosetests
after_success:
- coveralls
```
Move to container-based infrastructure, install coverage<4 for use with Python 3.2. | ```yaml
sudo: false
language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5-dev
install:
- pip install . "coverage<4" coveralls flake8 flake8-import-order nose
script:
- flake8
- nosetests
after_success:
- coveralls
``` |
14d1fbf1-d52a-47d6-b388-80cfe04647a6 | {
"language": "YAML"
} | ```yaml
language: "node_js"
node_js:
- "0.8"
- "0.10"
- "0.11"
- "iojs"
```
Update Travis-CI configuration(Add Node.js v0.12) | ```yaml
language: "node_js"
node_js:
- "0.8"
- "0.10"
- "0.11"
- "0.12"
- "iojs"
``` |
3bd161e8-4e10-4ad4-a722-c36f6c02a229 | {
"language": "YAML"
} | ```yaml
language: r
sudo: required
before_script:
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
- sudo apt-get install git-lfs=1.1.0
# git-lfs 1.1.0 always prompts for a password, even when anonymous access is ok
# to bypass the prompt tell git to use a dummy creden... | ```yaml
language: r
sudo: required
before_script:
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
- sudo apt-get install git-lfs=1.1.0
# git-lfs 1.1.0 always prompts for a password, even when anonymous access is ok
# to bypass the prompt tell git to use a dummy creden... |
278f2d2b-4b03-4840-8d5f-4d7c1824159b | {
"language": "YAML"
} | ```yaml
language: android
android:
components:
- build-tools 21.1.2
- android-21
branches:
except:
- gh-pages
```
Optimize Travis-CI builds by caching Gradle/Maven artifacts | ```yaml
language: android
android:
components:
- build-tools 21.1.2
- android-21
branches:
except:
- gh-pages
sudo: false
cache:
directories:
- $HOME/.m2
- $HOME/.gradle
``` |
97c16771-9620-4c6a-9f86-70c6e2eea9c0 | {
"language": "YAML"
} | ```yaml
---
language: bash
script:
- bin/fetch-configlet
- bin/configlet .
```
Switch to container-based Travis CI infrastructure | ```yaml
---
language: bash
script:
- bin/fetch-configlet
- bin/configlet .
sudo: false
``` |
562771b3-f6c7-4e33-b59c-ec298fb3a3af | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.8
- 0.10
- 0.11
```
Update Travis config to test node 0.12 | ```yaml
language: node_js
node_js:
- 0.8
- 0.10
- 0.12
``` |
af83daa3-a765-4aca-b749-5b8c5942a3fc | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- travis_retry composer install --no-interaction --prefer-source
- '[ -z "$MIN_VERSIONS" ] || composer require --no-interaction --prefer-source $MIN_VERSIONS'
script:
- vendor/bin/phpunit
matrix:
fast_finish: true
include... | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
- COMPOSER_FLAGS="--prefer-lowest --prefer-stable"
- COMPOSER_FLAGS=""
install:
- travis_retry composer install --no-interaction --prefer-source $COMPOSER_FLAGS
script:
- vendor/bin/phpunit
``` |
00f275b3-d501-40ad-bc92-11674b433a25 | {
"language": "YAML"
} | ```yaml
sudo: required
language: ruby
services:
- docker
before_install:
- cd docker/qemu-nvme/
install:
- docker build -t ljishen/qemu-nvme .
before_script:
- wget -O img/vm.img http://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img
- dd if=/dev/zero of=device/blknvme bs=1M... | ```yaml
sudo: required
services:
- docker
before_install:
- apt-get -qq update
- apt-get install -y qemu-kvm bridge-utils libvirt-bin
- cd docker/qemu-nvme/
- lsmod | grep kvm
install:
- docker build -t ljishen/qemu-nvme .
before_script:
- wget -O img/vm.img http://cloud-images.ubuntu.com/xenial/curre... |
2a73d3d5-b006-4fb5-9a72-4dfcefeed556 | {
"language": "YAML"
} | ```yaml
language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
install:
- curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | tar zxfv - -C /tmp && cd /tmp/libuv-1.4.2/
- sh autog... | ```yaml
language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
install:
- curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | tar zxfv - -C /tmp && cd /tmp/libuv-1.4.2/
- sh autog... |
7714d994-39ad-43d1-ae4a-edf165a16bcc | {
"language": "YAML"
} | ```yaml
language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- PACKAGE=git
matrix:
- OCAML_VERSION=4.01 DEPOTS=cohttp
- OCAML_VERSION=4.01
- OCAML_VERSION=4.02
DEPOPTS="mirage-http mirage-... | ```yaml
language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- PACKAGE=git.1.7.0
matrix:
- OCAML_VERSION=4.01 DEPOTS=cohttp
- OCAML_VERSION=4.01
- OCAML_VERSION=4.02
DEPOPTS="mirage-http m... |
571554b8-d49a-4a91-ace4-2fb980c83388 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.6"
- "pypy"
install:
- pip install -r requirements-dev.txt
- python setup.py install
script: paver test_all
```
Add 3.7 to test matrix, remove obsolete | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.6"
- "3.7"
- "pypy"
install:
- pip install -r requirements-dev.txt
- python setup.py install
script: paver test_all
``` |
386ea63f-99bd-4f69-aa4d-213e4807a03c | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
script:
- rspec spec
```
Add Test on Ruby v2.2.0 | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.2.0
script:
- rspec spec
``` |
61da4bea-ddaa-4baa-86ac-26af9a407c8f | {
"language": "YAML"
} | ```yaml
language: java
sudo: false
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
script:
# Need to add back d4tests, eventually cdm-test
- ./gradlew --info :cdm:test :udunits:test :ui:test :waterml:test
cache:
directories:
- $HOME/.gradle
```
Make Travis run new GRIB tests. | ```yaml
language: java
sudo: false
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
script:
# Need to add back d4tests, eventually cdm-test
- ./gradlew --info :cdm:test :grib:test :udunits:test :ui:test :waterml:test
cache:
directories:
- $HOME/.gradle
``` |
fad3391f-638b-4d3d-a2f9-21da295a4239 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.7
virtualenv:
# This allows installing python-vtk using apt-get and being able to import it.
system_site_packages: true
#before_install:
# - source .travis_before_install
install:
# nose is already installed
- pip install Sphinx
- sudo apt-get install python-numpy
- s... | ```yaml
language: python
python:
- 2.7
virtualenv:
# This allows installing python-vtk using apt-get and being able to import it.
system_site_packages: true
install:
# nose is already installed
- pip install Sphinx
- sudo apt-get install python-numpy
- sudo apt-get install python-vtk
# Test against the ... |
fdedbac3-faaf-44f1-8a47-3a2b01efe8f5 | {
"language": "YAML"
} | ```yaml
dist: trusty
language: node_js
node_js:
- "lts/*"
cache:
yarn: true
directories:
- "node_modules"
- "$HOME/.sonar/cache"
addons:
sonarcloud:
organization: "paulsmirnov-github"
branches:
- dev
before_install:
- yarn global add greenkeeper-lockfile@1
before_script:
- greenkeeper-... | ```yaml
dist: trusty
language: node_js
node_js:
- "lts/*"
cache:
yarn: true
directories:
- "node_modules"
- "$HOME/.sonar/cache"
addons:
sonarcloud:
organization: "paulsmirnov-github"
branches:
- dev
before_install:
- yarn global add greenkeeper-lockfile@1
before_script:
- greenkeeper-... |
cb7dabf2-3b94-459f-ade2-13f9446e2551 | {
"language": "YAML"
} | ```yaml
language: elixir
elixir:
- 1.5.0
notifications:
recipients:
- ricn@rny.io
script:
- "MIX_ENV=test mix do deps.get, compile"
after_script:
- MIX_ENV=docs mix deps.get
- MIX_ENV=docs mix inch.report
after_success:
- "mix compile && mix coveralls.travis"
```
Use Elixir 1.6.0 on Travis | ```yaml
language: elixir
elixir:
- 1.6.0
notifications:
recipients:
- ricn@rny.io
script:
- "MIX_ENV=test mix do deps.get, compile"
after_script:
- MIX_ENV=docs mix deps.get
- MIX_ENV=docs mix inch.report
after_success:
- "mix compile && mix coveralls.travis"
``` |
98fd2d78-5ba7-4404-b475-37d7bcbe3a1f | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
# run build against nightly but allow them to fail
matrix:
fast_finish: true
allow_failures:
- php: nightly
# faster builds on new travis setup not using sudo
sudo: false
services:
- me... | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
# run build against nightly but allow them to fail
matrix:
fast_finish: true
allow_failures:
- php: nightly
# faster builds on new travis setup not using sudo
sudo: false
services:
- me... |
7e10fe63-b310-44df-85d4-36a6d81bc2a4 | {
"language": "YAML"
} | ```yaml
before_install:
- gem update --system
- gem update bundler
rvm:
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
- 2.6.3
- 2.7.0-preview1
- rbx-2
- ruby-head
- jruby-9.1.17.0
- jruby-9.2.7.0
- jruby-head
jdk: openjdk8
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2... | ```yaml
before_install:
- gem update --system
- gem update bundler
rvm:
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
- 2.7.0-preview1
- rbx-2
- ruby-head
- jruby-9.1.17.0
- jruby-9.2.7.0
- jruby-head
jdk: openjdk8
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2
``` |
9c5a88ea-724a-4a3f-8711-b81c0ee1318a | {
"language": "YAML"
} | ```yaml
dist: trusty
language: python
python:
- "3.6"
- "3.7-dev"
install:
- pip install .
script: python setup.py pytest
```
Remove Python 3.7 build: tensorflow not available yet on Python 3.7 via Pypi | ```yaml
dist: trusty
language: python
python:
- "3.6"
install:
- pip install .
script: python setup.py pytest
``` |
54609b76-9e25-476a-85ed-7384ea6c2e84 | {
"language": "YAML"
} | ```yaml
language: php
php:
- "5.5"
before_script:
- composer install --dev --no-interaction
- cp app/Config/core.example.php app/Config/core.php
- cp app/Config/database.travis.php app/Config/database.php
- cp app/Config/oauth.example.php app/Config/oauth.php
- mysql -e 'create database pmaerr;'
- wget ht... | ```yaml
language: php
php:
- "5.4"
- "5.5"
- "5.6"
- "hhvm"
before_script:
- composer install --dev --no-interaction
- cp app/Config/core.example.php app/Config/core.php
- cp app/Config/database.travis.php app/Config/database.php
- cp app/Config/oauth.example.php app/Config/oauth.php
- mysql -e 'creat... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.