doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
27dc28bf-73f2-42d1-aad5-e7c875d4e732 | {
"language": "YAML"
} | ```yaml
language: java
sudo: required
env:
- jdk_target=oraclejdk8
- jdk_target=openjdk8
before_install:
- if [["$jdk_target" == "openjdk8"]]; then sudo add-apt-repository ppa:openjdk-r/ppa -y; fi
- if [["$jdk_target" == "oraclejdk8"]]; then sudo add-apt-repository ppa:webupd8team/java -y; fi
- sudo apt-ge... | ```yaml
language: java
os: linux
sudo: required
matrix:
include:
- jdk: oraclejdk7
env: jdk=oraclejdk7 custom_jdk=false
- jdk: openjdk7
env: jdk=openjdk7 custom_jdk=false
- env: jdk=oraclejdk8 custom_jdk=true
- env: jdk=openjdk8... |
f0201da3-083a-4c3c-8feb-a229afc20169 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- openjdk8
- openjdk11
- oraclejdk8
install: /bin/true
script: mvn install
after_success:
- bash <(curl -s https://codecov.io/bash)
```
Add back --quiet and a comment about codecov uploader | ```yaml
language: java
jdk:
- openjdk8
- openjdk11
- oraclejdk8
install: /bin/true
script: mvn install --quiet
after_success:
# https://docs.codecov.io/docs/about-the-codecov-bash-uploader
- bash <(curl -s https://codecov.io/bash)
``` |
6c6f6c8a-000d-41b1-8626-9baca7f9c6c9 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/andrewthad/non-empty-containers#readme
changelog-type: ''
hash: 9c2e0c5af093f9d88994ec426c5c0554579ffaea6640d5c562441dd4c1128de2
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: ''
changelog: ''
basic-deps:
base: ! '>=4.11 && <5'
containers: ! '>=0.5.10 && <0.... | ```yaml
homepage: https://github.com/andrewthad/non-empty-containers#readme
changelog-type: ''
hash: 8e12edba9288f8c5e53c8ad4003dace546fcc5a7e9828a88b614c3049924a13a
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: ''
changelog: ''
basic-deps:
semigroupoids: ! '>=5.2.0 && <6.0'
base: ! '>=4.11 &&... |
83ee7568-ee9b-472d-92c7-f34bcaabb8d3 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.10
- 4
services:
- redis
```
Drop support of node@0.10 and cover node@5 | ```yaml
sudo: false
language: node_js
node_js:
- 4.0
- 4
- 5
services:
- redis
``` |
ad3ab5e3-5fe7-4a63-a944-ea2298260007 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.2
- 1.8.7
bundler_args: --without development
before_script:
- "mysql -e 'create database one_click_test;' > /dev/null"
- "bundle exec rake oco:generate_config db:migrate"
- "bundle exec rake oco:install_wkhtmltopdf"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb star... | ```yaml
language: ruby
rvm:
- 1.9.2
- 1.8.7
bundler_args: --without development
before_script:
- "mysql -e 'create database one_click_test;' > /dev/null"
- "bundle exec rake oco:generate_config db:migrate"
- "bundle exec rake oco:install_wkhtmltopdf"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb star... |
c2df96f8-8794-49fc-908c-49bfeca798bf | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- composer self-update
install:
- composer install
```
Swap over to project phpunit rather than relying on Travis' global version | ```yaml
language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- composer self-update
install:
- composer install
script:
- ./vendor/bin/phpunit
``` |
2b4b3d22-f91c-4e83-8c44-4f185cc4a3eb | {
"language": "YAML"
} | ```yaml
os: linux
dist: xenial
language: python
jobs:
include:
- name: 3.6 Metrics
python: 3.6
env: TOXENV=py36-metrics
- name: 3.6 Metrics API
python: 3.6
env: TOXENV=py36-metrics_api
- name: 3.7 Metrics
python: 3.7
env: TOXENV=py37-metrics
- name: 3.7 Metrics A... | ```yaml
os: linux
dist: xenial
language: python
jobs:
include:
- name: 3.6 Metrics
python: 3.6
env: TOXENV=py36-metrics
- name: 3.6 Metrics API
python: 3.6
env: TOXENV=py36-metrics_api
- name: 3.7 Metrics
python: 3.7
env: TOXENV=py37-metrics
- name: 3.7 Metrics A... |
7c5794c6-228c-478c-a9ef-cb01ecea71b4 | {
"language": "YAML"
} | ```yaml
language: c
compiler: gcc
script:
- scons mode=debug
- scons -c; scons mode=release
- ./tesstest
- scons -c; scons mode=release32
- ./tesstest
- cd cookbook; make all
```
Install missing libs in Travis config | ```yaml
language: c
compiler: gcc
install:
- sudo apt-get install matplotlib numpy
# For cross-compiling 32bit binaries (mode=release32)
- sudo apt-get install libc6-dev-i386
script:
- scons mode=debug
- scons -c; scons mode=release
- ./tesstest
- scons -c; scons mode=release32
- ./tesstest
- cd cookb... |
7ef9a0c0-75c0-4bf6-9dc1-103db3aa2363 | {
"language": "YAML"
} | ```yaml
language: c
compiler:
- gcc
before_install: sudo apt-get install check doxygen splint
script: ./autogen.sh && ./configure && make check
notifications:
email:
recipients:
- quarterback-devel@lists.fedorahosted.org
```
Deal with /dev/shm issue on Travis builders | ```yaml
language: c
compiler:
- gcc
before_install: sudo apt-get install check doxygen splint
install:
# Deal with issue on Travis builders
# https://github.com/travis-ci/travis-cookbooks/issues/155
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
script: ./autogen.sh && ./configure && make check
notificat... |
9e134a6a-6a36-4fe8-810d-27b47096743b | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.4.0
- 2.2
- 2.0
env:
global:
- ETCD_VERSION=v3.1.6
install:
- bundle install
- wget https://github.com/coreos/etcd/releases/download/$ETCD_VERSION/etcd-$ETCD_VERSION-linux-amd64.tar.gz -O etcd.tar.gz --no-check-certificate
- tar zxvf etcd.tar.gz
- export PAT... | ```yaml
language: ruby
rvm:
- 2.4.0
- 2.2
- 2.0
env:
global:
- ETCD_VERSION=v3.2.0
install:
- bundle install
- wget https://github.com/coreos/etcd/releases/download/$ETCD_VERSION/etcd-$ETCD_VERSION-linux-amd64.tar.gz -O etcd.tar.gz --no-check-certificate
- tar zxvf etcd.tar.gz
- export PAT... |
6eb69478-98f0-4481-9cf3-282394e448ec | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas... | ```yaml
language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas... |
9644915a-d8a8-40ab-a7fe-e5db6418c920 | {
"language": "YAML"
} | ```yaml
# http://about.travis-ci.org/docs/user/build-configuration/
before_script: "git submodule update --init"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx-19mode
matrix:
allow_failures:
- rvm: 1.8.7
notifications:
recipients:
- nesquena@gmail.com```
Update Travis CI Ruby versions | ```yaml
# http://about.travis-ci.org/docs/user/build-configuration/
before_script: "git submodule update --init"
rvm:
- 2.0.0
- 2.1.6
- 2.2.2
notifications:
recipients:
- nesquena@gmail.com``` |
117f3512-6557-4d61-9719-7ab7d77817b9 | {
"language": "YAML"
} | ```yaml
language: cpp
sudo: false
compiler:
- clang
- gcc
addons:
apt:
sources:
- boost-latest
- ubuntu-toolchain-r-test
packages:
- cmake
- libboost-all-dev
- g++-4.8
env:
- CXX=g++-4.8
before_install:
- mkdir ~/cmake_tmp
- cd ~/cmake_tmp
- wget --no-check-certificate htt... | ```yaml
language: cpp
sudo: false
matrix:
include:
- compiler: clang
- compiler: gcc
env:
- CC='gcc-4.8' CXX='g++4.8'
addons:
apt:
sources:
- boost-latest
- ubuntu-toolchain-r-test
packages:
- cmake
- libboost-all-dev
- g++-4.8
before_install:
- mkdir ~/cmake_... |
8743425c-a762-476b-9be5-dca58a3672e1 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- node
- iojs
- 6
- 5
- 4
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
matrix:
fast_finish: true
```
Remove io.js support as it has merged back into node.js | ```yaml
language: node_js
sudo: false
node_js:
- node
- 6
- 5
- 4
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
matrix:
fast_finish: true
``` |
33742c1f-971c-4ab1-ad72-71ee92881d4c | {
"language": "YAML"
} | ```yaml
language: scala
scala:
- 2.12.8
jdk:
- oraclejdk11
- openjdk8
- openjdk11
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
branches:
only:... | ```yaml
language: scala
scala:
- 2.12.8
jdk:
- oraclejdk11
- openjdk8
- openjdk11
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm -f
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm -f
branches:
... |
7bfb31fc-476d-49f7-9605-0568d833019e | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
script: "npm test"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
notifications:
irc: "chat.freenode.net#pump.io"
```
Install a C++-11-compatible compiler in CI | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
no... |
a2dc2183-7f25-4657-93c9-e11b8d8d1d82 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode8.2
env:
- TOOLCHAINS=swift
script:
- swift package fetch
- swift test
#xcode_project: TypedOperation.xcodeproj
# xcode_scheme: "SwiftParse"
# xcode_sdk: iphonesimulator10.0
# script: xcodebuild test -scheme "SwiftParse" -sdk iphonesimulator -destination "name=iPhone ... | ```yaml
language: objective-c
osx_image: xcode11.2
env:
- TOOLCHAINS=swift
script:
- swift package fetch
- swift test
#xcode_project: TypedOperation.xcodeproj
# xcode_scheme: "SwiftParse"
# xcode_sdk: iphonesimulator10.0
# script: xcodebuild test -scheme "SwiftParse" -sdk iphonesimulator -destination "name=iPhone... |
40aa8303-ca8f-4953-aac9-51b260679c28 | {
"language": "YAML"
} | ```yaml
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
services: mongodb
script:
- bundle exec rubocop
- bundle exec rake
```
Test against latest Ruby 2.1 version | ```yaml
rvm:
- 2.1
- 2.0.0
- 1.9.3
services: mongodb
script:
- bundle exec rubocop
- bundle exec rake
``` |
666849ea-bf96-4c79-a1e7-07a56713ce12 | {
"language": "YAML"
} | ```yaml
language: cpp
matrix:
include:
- compiler: gcc4
sudo: required
env:
- COMPILER=g++
- STD=c++11
- compiler: clang34
sudo: required
env:
- COMPILER=clang++
- STD=c++11
- compiler: gcc5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
package... | ```yaml
language: cpp
matrix:
include:
- compiler: gcc4
dist: trusty
sudo: false
env:
- COMPILER=g++
- STD=c++11
- compiler: clang34
dist: trusty
sudo: false
env:
- COMPILER=clang++
- STD=c++11
- compiler: gcc5
addons:
apt:
sources:
- ubuntu-tool... |
e9810757-696d-4824-928c-fc5d851dd624 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
after_success:
- npm run coverage
- npm i codecov
- codecov -f coverage/coverage.json
notifications:
email:
on_success: never
```
Remove Node 0.10 and 0.12 support | ```yaml
language: node_js
sudo: false
node_js:
- "4"
- "6"
after_success:
- npm run coverage
- npm i codecov
- codecov -f coverage/coverage.json
notifications:
email:
on_success: never
``` |
e365df83-0b45-4dcb-8ac9-8bc53b24acaf | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
before_install:
- sudo add-apt-repository ppa:kristinn-l/plaso-dev -y
- sudo apt-get update -q
- sudo apt-get install binplist, libbde-python, libesedb-python, libevt-python, libevtx-python, libewf-python, libfwsi-python, liblnk-python, libmsiecf-python, libolecf-python,... | ```yaml
language: python
python:
- "2.7"
before_install:
- sudo add-apt-repository ppa:kristinn-l/plaso-dev -y
- sudo apt-get update -q
- sudo apt-get install binplist libbde-python libesedb-python libevt-python libevtx-python libewf-python libfwsi-python liblnk-python libmsiecf-python libolecf-python libqcow-p... |
d7c9e32c-6708-4705-9134-af2083190a16 | {
"language": "YAML"
} | ```yaml
dist: xenial
language: java
install: true
script:
- sudo apt-get update
- sudo apt-get install graphviz
- java -version
- ./gradlew buildCI --scan
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/... | ```yaml
dist: xenial
language: java
install: true
script:
- sudo apt-get update
- sudo apt-get install graphviz
- java -version
- ./gradlew buildCI --scan
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/... |
d3a68850-6ea0-4bec-88cc-e2914f247dce | {
"language": "YAML"
} | ```yaml
language: erlang
notifications:
email: erlang.docsh@gmail.com
sudo: required
services:
- docker
otp_release:
- 21.1
- 20.3
- 19.3
script:
- ./rebar3 ct
```
Test on 22.1, drop 19.3 | ```yaml
language: erlang
notifications:
email: erlang.docsh@gmail.com
sudo: required
services:
- docker
otp_release:
- 22.1
- 21.1
- 20.3
script:
- ./rebar3 ct
``` |
6b5ef7d5-1c95-4478-8aaf-0a2d34cb162e | {
"language": "YAML"
} | ```yaml
---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.4"
- PUPPET_GEM_VE... | ```yaml
---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.6"
- PUPPET_GEM_VE... |
6bc7d260-c2e7-47d7-9675-47670441fb8d | {
"language": "YAML"
} | ```yaml
name: Idris 2 CI
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master
env:
MSYS2_PATH_TYPE: inherit
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install MSYS2
uses: eine... | ```yaml
name: Windows CI
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master
env:
MSYS2_PATH_TYPE: inherit
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install MSYS2
uses: eine... |
ce777ec8-83eb-4830-bb29-7d060373dd5a | {
"language": "YAML"
} | ```yaml
name: End-to-end tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
end-to-end:
runs-on: ubuntu-16.04
name: Cypress run
env:
CI: 1
steps:
- uses: actions/checkout@v1
- uses: cypress-io/github-action@v1
with:
start: npm st... | ```yaml
name: End-to-end tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
end-to-end:
runs-on: ubuntu-16.04
name: Cypress run
env:
CI: 1
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run end-to-end tests
uses: cy... |
755851b1-8f3a-4bc4-8bb7-a336ac497249 | {
"language": "YAML"
} | ```yaml
homepage: http://twitter.com/khibino/
changelog-type: ''
hash: 57da137994dc235beb6f33d99595855842be998c629217ec379bbb12a313ba3c
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Compatibility of TimeLocale between old-locale and time-1.5
changelog: ''
basic-deps:
base: <5
time: <1.5
old-loca... | ```yaml
homepage: http://twitter.com/khibino/
changelog-type: ''
hash: cc93a8abb3062c24f3b4b0da545593bed01bb4b2eb651516542ab16467f21db5
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Compatibility of TimeLocale between old-locale and time-1.5
changelog: ''
basic-deps:
base: <5
time: <1.5
old-loca... |
cf522368-aaab-429e-b93e-cea82417d184 | {
"language": "YAML"
} | ```yaml
---
- name: Setup Polka
hosts:
- tom-work
connection: local
gather_facts: false
roles:
- package
- bash
- tmux
- git
- go
- ack
- vim
- ruby
- python
- ansible
- nvim
```
Use fae instead of polka for tmux and package | ```yaml
---
- name: Setup Polka
hosts:
- tom-work
connection: local
gather_facts: false
roles:
- bash
- git
- go
- ack
- vim
- ruby
- python
- ansible
- nvim
# - tmux
# - package
``` |
f9bdbefd-d959-4b33-8fec-c3051fa9e311 | {
"language": "YAML"
} | ```yaml
name: go_test
on: [push, pull_request]
jobs:
go_test:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out code
uses: actions/checkout@v3
- name: Get dependencies
run: |
... | ```yaml
name: go_test
on: [push, pull_request]
jobs:
go_test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check... |
88560f48-765d-4e6f-9aa1-ee9c3f53a573 | {
"language": "YAML"
} | ```yaml
bundle_cache: &bundle_cache
bundle_cache:
folder: /usr/local/bundle
fingerprint_script:
- echo $CIRRUS_OS
- ruby -v
- cat Gemfile
- cat *.gemspec
install_script: bundle update
test_task:
container:
matrix:
image: ruby:2.4
image: ruby:2.5
<<: *bundle_cache... | ```yaml
bundle_cache: &bundle_cache
bundle_cache:
folder: /usr/local/bundle
fingerprint_script:
- echo $CIRRUS_OS
- ruby -v
- cat Gemfile
- cat *.gemspec
install_script: bundle update
test_task:
container:
matrix:
image: ruby:2.4
image: ruby:2.5
image: ruby:2... |
47a92eba-8db6-4456-9738-b726deefb2ca | {
"language": "YAML"
} | ```yaml
---
name: oq-role
'on':
schedule:
- cron: "0 4 * * *"
jobs:
molecule:
name: Molecule
runs-on: ubuntu-18.04
strategy:
matrix:
distro:
- centos8
- centos7
- ubuntu1804
- ubuntu2004
env:
working-directory: ./ansible/oqengine
... | ```yaml
---
name: oq-role
'on':
schedule:
- cron: "0 4 * * *"
jobs:
molecule:
name: Molecule
runs-on: ubuntu-18.04
strategy:
matrix:
distro:
- centos8
- centos7
- ubuntu1804
- ubuntu2004
- debian10
env:
working-directory: ./... |
18be85ae-fe08-4fe0-8ad8-4ca4814b267e | {
"language": "YAML"
} | ```yaml
freebsd_instance:
image: freebsd-11-2-release-amd64
# Test FreeBSD in a full VM on cirrus-ci.com. Test the i686 target too, in the
# same VM. The binary will be built in 32-bit mode, but will execute on a
# 64-bit kernel and in a 64-bit environment. Our tests don't execute any of
# the system's binaries, ... | ```yaml
freebsd_instance:
image: freebsd-11-2-release-amd64
# Test FreeBSD in a full VM on cirrus-ci.com. Test the i686 target too, in the
# same VM. The binary will be built in 32-bit mode, but will execute on a
# 64-bit kernel and in a 64-bit environment. Our tests don't execute any of
# the system's binaries, ... |
44984a8a-7ce3-4a37-a5a3-67ab39fa7c02 | {
"language": "YAML"
} | ```yaml
---
language: ruby
sudo: false
dist: trusty
bundler_args: --without development
cache: bundler
before_install:
- PATH=$(npm bin):$PATH # needed to install phantomjs via npm
- if [ $(phantomjs --version) != '2.1.1' ]; then npm install phantomjs-prebuilt@2.1; fi
- gem update --system # use the very la... | ```yaml
---
language: ruby
sudo: false
dist: trusty
bundler_args: --without development
cache: bundler
before_install:
- PATH=$(npm bin):$PATH # needed to install phantomjs via npm
- if [ $(phantomjs --version) != '2.1.1' ]; then npm install phantomjs-prebuilt@2.1; fi
- gem update --system # use the very la... |
0b026ff9-6619-4728-a754-af5b5dcb8382 | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
cache: bundler
bundler_args: --without kitchen_common kitchen_vagrant
rvm:
- 1.9.3
- 2.0.0
script:
- bundle exec rake travis
```
Test on modern ruby releases | ```yaml
language: ruby
sudo: false
cache: bundler
bundler_args: --without kitchen_common kitchen_vagrant
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec rake travis
``` |
df1c76f8-2bce-4606-83ab-9a272c392545 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
before_install: ./configure
install: make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx```
Comment out python 2.7 in this repo. | ```yaml
language: python
python:
- "3.5"
# - "2.7"
# command to install dependencies
before_install: ./configure
install: make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx``` |
f60da127-31f5-4f23-aab0-d913055b5528 | {
"language": "YAML"
} | ```yaml
language: go
go: 1.4
env:
- PATH=$HOME/gopath/bin:$PATH
install:
# Install SDL2.
# Travis CI uses Ubuntu 12.04 which doesn't have libsdl2.
# We use SDL2-2.0.1, the minimum version with SDL_WINDOW_ALLOW_HIGHDPI.
- wget https://www.libsdl.org/release/SDL2-2.0.1.tar.gz
- tar -xzf SDL2-2.... | ```yaml
language: go
go: 1.4
notifications:
email: false
env:
- PATH=$HOME/gopath/bin:$PATH
install:
# Install SDL2.
# Travis CI uses Ubuntu 12.04 which doesn't have libsdl2.
# We use SDL2-2.0.1, the minimum version with SDL_WINDOW_ALLOW_HIGHDPI.
- wget https://www.libsdl.org/release/SDL2-2.... |
0b8165dd-c14f-4ead-8687-af132c701c94 | {
"language": "YAML"
} | ```yaml
# Dependencies
markdown: redcarpet
pygments: true
# Permalinks
permalink: pretty
# Setup
title: Donald McKendrick
tagline: 'Developer and Entrepreneur'
description: 'Developer at <a href="http://floatapp.com" target="_blank">Float</a> and aspiring entrepreneur.'... | ```yaml
# Dependencies
markdown: redcarpet
pygments: true
# Permalinks
permalink: pretty
# Setup
title: Donald McKendrick
tagline: 'CTO and Entrepreneur'
description: 'CTO at <a href="http://www.storeluv.com" target="_blank">StoreLuv</a> and aspiring entrepreneur.'
url:... |
88ebfde1-a971-46b0-8169-636caa1c41e5 | {
"language": "YAML"
} | ```yaml
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer require satooshi/php-coveralls:1.* squizlabs/php_codesniffer:2.* -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then composer install -n ; fi
script:
- if [[ "$TR... | ```yaml
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: 7.1
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer require satooshi/php-coveralls:1.* squizlabs/php_codesniffer:2.* -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; the... |
8cf34784-7d84-496a-92d6-c25a07bd44fa | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: beta-xcode6.3
before_install:
- brew install gawk
- bash linter.sh
- sudo gem install cocoaseeds
install:
- seed install
script:
- xctool -project Allkdic.xcodeproj -scheme Allkdic CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build test -parallelize
```
Use Xcode 7 ... | ```yaml
language: objective-c
osx_image: xcode7
before_install:
- brew install gawk
- bash linter.sh
- sudo gem install cocoaseeds
install:
- seed install
script:
- xctool -project Allkdic.xcodeproj -scheme Allkdic CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build test -parallelize
``` |
e4c0f945-34e7-498a-ad31-41602f36dc05 | {
"language": "YAML"
} | ```yaml
language: python
python: "2.7"
services:
- redis-server
- mysql
- postgresql
env:
- TOXENV=py27
install:
- pip install tox coveralls
before_script:
- mysql -e 'create database test;'
script: tox
after_success:
if [ "$TOXENV" == "py27" ]; then coveralls; fi
```
Add a hack to fix Travis | ```yaml
language: python
python: "2.7"
services:
- redis-server
- mysql
- postgresql
env:
- TOXENV=py27
install:
- pip install tox coveralls
before_script:
- mysql -e 'create database test;'
- sudo rm -f /etc/boto.cfg
script: tox
after_success:
if [ "$TOXENV" == "py27" ]; then coveralls; fi
``` |
8e737586-fe8f-4234-9cdf-51b91c508b85 | {
"language": "YAML"
} | ```yaml
rvm:
- 2.2.2
cache: bundler
addons:
code_climate:
repo_token: 1f9743a554140a590819de5967c4411398a22e31f2d5d439127cdbf33c72a6ab
```
Add geckodriver to Travis yml. Nathan Pannell | ```yaml
rvm:
- 2.2.2
cache: bundler
before_script:
- if [ "${$TRAVIS_OS_NAME}" = "linux" ]; then
wget https://github.com/mozilla/geckodriver/releases/geckodriver-v0.11.1-linux64.tar.gz -O /tmp/geckodriver.tar.gz;
fi
- if [ "${$TRAVIS_OS_NAME}" = "osx" ]; then
wget https://github.com/mozi... |
aae52d60-3880-4bef-99a3-9179d3223959 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk8
addons:
firefox: latest
cache:
directories:
- $HOME/.m2
- node
- node_modules
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24 +... | ```yaml
language: java
jdk:
- oraclejdk8
addons:
firefox: latest
cache:
directories:
- $HOME/.m2
- node
- node_modules
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24 +... |
57a33458-6725-4b9e-a655-a8e7b56686bd | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
env:
- TIMEZONE=UTC
install:
- pip install nose
- pip install .
script: make test
```
Remove TIMEZONE environment setting from Travis CI test | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
install:
- pip install nose
- pip install .
script: make test
``` |
725ebcbe-4417-4a24-9b95-7206ee0c89a6 | {
"language": "YAML"
} | ```yaml
language: ruby
os:
- linux
- osx
rvm:
- 2.0.0-p598
- 2.1.5
- 2.2.2
- ruby-head
install:
- git clone https://github.com/ruby/mspec.git ../mspec
script:
- ../mspec/bin/mspec
matrix:
exclude:
- os: osx
rvm: ruby-head
branches:
only:
- master
```
Disable OS X on Travis as it slows... | ```yaml
language: ruby
rvm:
- 2.0.0-p598
- 2.1.5
- 2.2.2
- ruby-head
install:
- git clone https://github.com/ruby/mspec.git ../mspec
script:
- ../mspec/bin/mspec
branches:
only:
- master
``` |
ceac55af-cf07-4ffb-933b-4b8985c9c0e9 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.6
- 7.0
before_script:
- composer validate
- composer update
```
Add coverage support to TravisCI | ```yaml
language: php
php:
- 5.6
- 7.0
before_script:
- composer validate
- composer update
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --repository="g/ntd/silverstripe-autotoc" --forma... |
5da7e77e-566a-4bb8-ae91-d8b7138890ad | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 10
- 11
- 12
after_success:
- bash <(curl -s https://codecov.io/bash)
```
Test using multiple languages in Travis CI | ```yaml
matrix:
include:
- language: python
python:
- "2.7"
- language: node_js
node_js:
- 10
after_success:
- bash <(curl -s https://codecov.io/bash)
``` |
b9b90b15-f6cb-41b2-8431-9b4bef50ae94 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
- if [ -f vendor/bin/... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
- if [ -f vendor/bin/... |
e8f51245-7b15-41b2-9a54-5db32cc76d66 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython libasound2 libasound2-plugins libasound-dev alsa-base"
- "sudo ldconfig"
- "pip ... | ```yaml
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython libasound2 libasound2-plugins libasound-dev alsa-base portaudio"
- "sudo ldconfig"
... |
81ebc132-2278-4910-becc-63443ab67822 | {
"language": "YAML"
} | ```yaml
language: rust
sudo: false
os:
- linux
- osx
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
- RUSTFLAGS="-C link-dead-code"
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
... | ```yaml
language: rust
sudo: false
os:
- linux
- osx
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
- RUSTFLAGS="-C link-dead-code"
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
... |
69c3abfa-7dbb-4c06-a970-f5b3d12be4f3 | {
"language": "YAML"
} | ```yaml
language: go
sudo: false
go:
- tip
- 1.8.x
- 1.7.x
- 1.6.x
install:
- go get -t ./...
before_script:
- $(exit $(go fmt ./... | wc -l))
- go vet ./...
script:
- go test -v -i -race ./...
```
Remove go vet from Travis for now | ```yaml
language: go
sudo: false
go:
- tip
- 1.9.x
- 1.8.x
- 1.7.x
install:
- go get -t ./...
before_script:
- $(exit $(go fmt ./... | wc -l))
script:
- go test -v -race ./...
``` |
3e0227f2-3de5-4457-96a1-56caff56bc9b | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '9'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- node_modules
before_install:
- npm prune
- npm install -g npm
# # encrypted environment variables are not available for pull requests from for... | ```yaml
language: node_js
node_js:
- '9'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- node_modules
before_install:
- npm prune
- npm install -g npm
- npm install
# # encrypted environment variables are not available for pull req... |
29e813dc-fc40-4956-b7a6-cf30e310d60c | {
"language": "YAML"
} | ```yaml
# Site Configs
name: Ionic Framework
description: The official Ionic Framework blog
url: http://ionicframework.com/blog
markdown: redcarpet
pygments: true
permalink: /blog/:title
paginate: 5
paginate_path: "blog/page:num"
# Default news if the page didnt enter news
news: Check out our <a href="/docs/guide/">Gu... | ```yaml
# Site Configs
name: Ionic Framework
description: The official Ionic Framework blog
url: http://ionicframework.com/blog
markdown: redcarpet
pygments: true
permalink: /blog/:title
paginate: 5
paginate_path: "blog/page:num"
# Default news if the page didnt enter news
news: Check out our <a href="/docs/guide/">Gu... |
a300ba73-5a46-4567-9155-f5d91101f157 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk7
before_script:
- "echo $JAVA_OPTS"
- "echo $MAVEN_OPTS"
- "export JAVA_OPTS=-Xmx2g"
- "export MAVEN_OPTS=-Xmx2g"
install: mvn -q install -DskipTests=true
```
Update to experiment with heap sizes | ```yaml
language: java
jdk:
- oraclejdk7
before_script:
- "echo $JAVA_OPTS"
- "echo $MAVEN_OPTS"
install: mvn install -DskipTests=true
``` |
c54cdd03-4553-4b53-a23a-9cb67c0d9af1 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4.2"
before_script:
- npm install -g grunt-cli
script: grunt test```
Install bower before running test script | ```yaml
language: node_js
node_js:
- "4.2"
before_script:
- npm install -g grunt-cli
- nom install -g bower
script: grunt test``` |
230e7773-a055-434e-bb87-88259a919192 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
```
Add support for iojs and node 0.12 | ```yaml
language: node_js
node_js:
- iojs
- "0.12"
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
``` |
14c7ad5c-c7ce-467c-acdf-caee7ac89243 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.7
- 3.2
install:
- pip install jsonschema
script:
- python setup.py test
```
Test more Python versions with Travis. | ```yaml
language: python
python:
- "pypy"
- 2.6
- 2.7
- 3.3
- 3.4
env:
- JSONSCHEMA="jsonschema"
matrix:
include:
- python: "3.2"
env: JSONSCHEMA="jsonschema==2.3.0"
install:
- pip install $JSONSCHEMA
script:
- python setup.py test
``` |
8c778c81-ce3f-450f-b3c6-c497d41b8cdd | {
"language": "YAML"
} | ```yaml
# Jekyll configuration precedence:
# 1. Gruntfile task
# 2. config.build.yml
# 3. config.yml
name: "Richard Westenra | Web designer & front-end developer"
description: "I make websites, data-visualisations, and interactive webapps."
author:
name: Richard Westenra
email: rjwestenra@gmail.com
# Grunt ha... | ```yaml
# Jekyll configuration precedence:
# 1. Gruntfile task
# 2. config.build.yml
# 3. config.yml
name: "Richard Westenra | Web designer & front-end developer"
description: "London-based web developer with a passion for making beautiful websites, interactive webapps & data-vis. This is my portfolio & bl... |
a3926b7a-7f4c-45df-b852-63a190f82b18 | {
"language": "YAML"
} | ```yaml
language: php
dist: trusty
php:
- '7.2'
- '7.3'
- '7.4'
- 'nightly'
matrix:
include:
- php: '7.2'
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-inte... | ```yaml
language: php
dist: trusty
php:
- '7.2'
- '7.3'
- '7.4'
matrix:
include:
- php: '7.2'
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
- tr... |
3b6b26bd-8ff7-4c3e-98b7-4fdf0ea8a845 | {
"language": "YAML"
} | ```yaml
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
... | ```yaml
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
... |
b76f9e13-752e-47ba-92c2-37b3e6c96215 | {
"language": "YAML"
} | ```yaml
safe: true
markdown: kramdown
pygments: true
permalink: /:title.html
default_theme: yandex
default_width: 792
default_lang: ru
default_body_class: list
author:
name: Yours Truly
# url: http://example.com/
company:
name: Яндекс
url: http://yandex.ru/
progress: true
```
Rename je... | ```yaml
safe: true
markdown: kramdown
highlighter: true
permalink: /:title.html
default_theme: yandex
default_width: 792
default_lang: ru
default_body_class: list
author:
name: Yours Truly
# url: http://example.com/
company:
name: Яндекс
url: http://yandex.ru/
progress: true
``` |
5790dcf3-f2e1-4976-ac34-8dc939e25cdf | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
env:
# - DJANGO_VERSION="Django==1.2"
- DJANGO_VERSION="Django==1.3"
- DJANGO_VERSION="git+git://github.com/django/django.git@master#egg=django==1.4c1"
# command to install dependencies
install: pip install mock==0.7.2 $DJANGO --use-mirrors
# command to run t... | ```yaml
language: python
python:
- "2.6"
- "2.7"
env:
# - DJANGO="Django==1.2"
- DJANGO="Django==1.3"
- DJANGO="git+git://github.com/django/django.git@master#egg=django==1.4c1"
# command to install dependencies
install: pip install mock==0.7.2 $DJANGO --use-mirrors
# command to run tests
script: python runt... |
5ff7cb2d-2c05-4a72-879a-9f96701b32ee | {
"language": "YAML"
} | ```yaml
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequent... | ```yaml
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequent... |
8fde066b-dbeb-4dcc-b5dd-4c98412cf31d | {
"language": "YAML"
} | ```yaml
---
language: node_js
node_js:
- '0.10'
- '0.11'
- '0.12'
- node
- iojs
sudo: false
script:
- npm test
- npm run lint
```
Configure Travis CI to test on newer Node.js | ```yaml
---
language: node_js
node_js:
- '0.10'
- '0.11'
- '0.12'
- '4'
- '5'
- '6'
sudo: false
script:
- npm test
- npm run lint
``` |
b4b718f5-a1c4-4e7f-815e-8902b7d297b7 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4.0"
```
Disable the notification of TravisCI. | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4.0"
notifications:
email: false
``` |
825af9ed-0f11-400e-ad1f-a4ddde7d1a27 | {
"language": "YAML"
} | ```yaml
title: Dinosaurs Are Forever
description: code, music, creation
meta_description: "The Personal Blog of Chris J Arges"
baseurl: ""
url: "http://chrisarges.net"
github_username: arges
# Build settings
markdown: kramdown
theme: jekyll-theme-minimal
gems:
- jekyll-feed
- jekyll-paginate
exclude:
- Gemfile... | ```yaml
title: Dinosaurs Are Forever
description: code, music, creation
meta_description: "The Personal Blog of Chris J Arges"
baseurl: ""
url: "https://chrisarges.net"
github_username: arges
# Build settings
markdown: kramdown
theme: minima
gems:
- jekyll-feed
- jekyll-paginate
exclude:
- Gemfile
- Gemfile.... |
c00a3322-c46e-4265-a2a8-dea96a8d5089 | {
"language": "YAML"
} | ```yaml
dist: trusty
sudo: required
matrix:
fast_finish: true
include:
- python: "3.5"
env: TOXENV=lint
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
# - python: "3.6"
# env: TOXENV=py36
cache:
directories:
- $HOME/.cache/pip
before_install:
- sudo... | ```yaml
dist: trusty
sudo: required
matrix:
fast_finish: true
include:
- python: "3.5"
env: TOXENV=lint
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
# - python: "3.6"
# env: TOXENV=py36
cache:
directories:
- $HOME/.cache/pip
before_install:
- sudo... |
40b70375-6027-411c-afa4-8bc1bfda5be4 | {
"language": "YAML"
} | ```yaml
language: ruby
cache: bundler
sudo: false
dist: precise
branches:
only: master
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
before_install: ruby -e "File.write('Gemfile.lock', File.read('Gemfile.lock').split('BUNDLED WITH').first)"
```
Remove deprecated Travis CI option | ```yaml
language: ruby
cache: bundler
dist: precise
branches:
only: master
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
before_install: ruby -e "File.write('Gemfile.lock', File.read('Gemfile.lock').split('BUNDLED WITH').first)"
``` |
80090df7-e626-48e0-bc58-ab5508f6de84 | {
"language": "YAML"
} | ```yaml
# Site settings
title: Markus Kauppila
email: markus.kauppila@gmail.com
description: > # this means to ignore newlines until "baseurl:"
About software craftmanship and creating software for iOS.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://yourdomain.com" # the base hostname & protocol for... | ```yaml
# Site settings
title: Markus Kauppila
email: markus.kauppila@gmail.com
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://yourdomain.com" # the base hostname & protocol for your site
twitter_username: markuskauppila
github_username: mkauppila
paginate: 10
sass:
sass_dir: _sass # make sure ... |
318ff564-f9bc-402c-815b-934194e54d85 | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: cpp
script:
- mkdir build
- cd build
- cmake -DCMAKE_CXX_COMPILER=$COMPILER ..
- cmake --build .
- ctest --versbose
matrix:
include:
- os: linux
compiler: g++
env: COMPILER=g++-6 BUILD=Debug ARCH=64
addons:
apt:
sources:
- ubunt... | ```yaml
sudo: required
dist: trusty
group: edge
language: cpp
script:
- mkdir build
- cd build
- cmake -DCMAKE_CXX_COMPILER=$COMPILER ..
- cmake --build .
- ctest --versbose
matrix:
include:
- os: linux
compiler: g++
env: COMPILER=g++-6 BUILD=Debug ARCH=64
addons:
apt:
sources:
... |
c4aed8a3-7c8c-4b32-bbac-0312d7a0b9f1 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
install:
- composer selfupdate
- composer install
before_script:
- mysql -e 'create database `test`;'
- mysql --default-character-set=utf8 test < test/test.sql
```
Test on PHP and HHVM nightly builds | ```yaml
language: php
php:
- 7
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: 7
- php: hhvm-nightly
install:
- composer selfupdate
- composer install
before_script:
- mysql -e 'create database `test`;'
- mysql --default-character-set=utf8 test < test/t... |
a2c3d9f6-99b7-4a0a-b6fb-1aa5f398f68e | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
```
Test with latest Node.js 5 on Travis CI. | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
``` |
40326413-70e8-4baa-bc3a-a854ec8d225c | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '0.12'
after_success:
- npm run coveralls
```
Update node_js versions and coverage services | ```yaml
sudo: false
language: node_js
cache:
directories:
- node_modules
node_js:
- '0.10'
- '0.12'
- '4.0'
- '4.1'
before_script:
- npm prune
after_success:
- npm run codecov
``` |
3495c2f4-4e1e-42a8-a3eb-28fb42258492 | {
"language": "YAML"
} | ```yaml
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failure:
- rust: nightly```
Test on OSX and Linux | ```yaml
language: rust
rust:
- stable
- beta
- nightly
os:
- linux
- osx
matrix:
allow_failure:
- rust: nightly
``` |
7bbf458c-08ed-4b67-95eb-27bf3d40d437 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1.1
- 2.0.0
script:
- 'echo "Checking code style" && ./bin/phare'
- 'echo "Running specs" && bundle exec rake spec'
notifications:
hipchat:
rooms:
secure: "OjYHtwmsG6bDC8mewX85yulCKxsVpvGiic32e6lDRq2TYmMtot/atOQaZ16YlMMN0CQqiJ8jfpil3HWCSK1iPZxSLHzCEu//bL6uoDJdPc/oX... | ```yaml
language: ruby
rvm:
- 2.3.1
- 2.2
- 2.1
- 2.0
script:
- 'echo "Checking code style" && ./bin/phare'
- 'echo "Running specs" && bundle exec rake spec'
notifications:
hipchat:
rooms:
secure: "OjYHtwmsG6bDC8mewX85yulCKxsVpvGiic32e6lDRq2TYmMtot/atOQaZ16YlMMN0CQqiJ8jfpil3HWCSK1iPZxSLHzCEu/... |
f28d0cb1-c582-441c-bf34-df3ae050b9ce | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 6
cache:
directories:
- node_modules
script:
- npm test
- npm run coverage
- npm run build
after_success: 'npm run coveralls'```
Use latest LTS Node.js release | ```yaml
language: node_js
node_js:
- lts/*
cache:
directories:
- node_modules
script:
- npm test
- npm run coverage
- npm run build
after_success: 'npm run coveralls'``` |
ec06f025-337e-4bd7-b579-bcfa6c704ca5 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- ruby-head
- jruby-head
- 2.1.1
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- jruby-18mode
- rbx-2.1.1
- rbx-2.0.0
- 1.8.7
matrix:
allow_failures:
- rvm: 1.8.7
- rvm: jruby-18mode
```
Add rbx-2.0.0 to allowed failures | ```yaml
language: ruby
rvm:
- ruby-head
- jruby-head
- 2.1.1
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- jruby-18mode
- rbx-2.1.1
- rbx-2.0.0
- 1.8.7
matrix:
allow_failures:
- rvm: rbx-2.0.0
- rvm: 1.8.7
- rvm: jruby-18mode
``` |
1b15af62-c86b-4be3-acad-3d0d0c1df858 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk8
branches:
only:
- master
- develop
install: ./gradlew assemble -P -PsonatypeUsername=argius -PsonatypePassword=
script: ./gradlew test -P -PsonatypeUsername=argius -PsonatypePassword=
```
Update Travis-CI to correct an error | ```yaml
language: java
jdk:
- oraclejdk8
branches:
only:
- master
- develop
install: ./gradlew assemble -P -PsonatypeUsername=argius -PsonatypePassword=""
script: ./gradlew test -P -PsonatypeUsername=argius -PsonatypePassword=""
``` |
c60d60cf-4d33-4cb9-a222-ae770f357fd9 | {
"language": "YAML"
} | ```yaml
---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without yard benchmarks
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:... | ```yaml
---
language: ruby
sudo: false
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without yard benchmarks
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:
allow_failur... |
d6f0c0a1-fad7-4dc7-86be-a4431f76fd7d | {
"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
- travis_retry composer require satooshi/php-coveralls --dev
script:
- mkdir -p build/logs
- ./vendor/bin/parallel-lint src... | ```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
- travis_retry composer require satooshi/php-coveralls --dev
script:
- mkdir -p build/logs
- ./vendor/bin/phpunit --coverag... |
33ce71a0-eb45-4bdb-87d1-5474de05b6dd | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2"
- jruby-19mode
- rbx-2
install:
- bundle install --retry=3
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_VERSION="~> 4.2.0"
- ACTIVE_RECORD_VERSION="~> 4.1.0"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERS... | ```yaml
language: ruby
sudo: false
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2"
- jruby-19mode
- rbx-2
install:
- bundle install --retry=3
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_VERSION="~> 5.0.0"
- ACTIVE_RECORD_VERSION="~> 4.2.0"
- ACTIVE_RECORD_VERSION="~> 4.1.0"
- ACTIVE_RECORD_VERS... |
a5b9ae9c-0c6c-4b9a-944d-bab233bd6889 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1.1
- 2.1.0
- 2.0.0
```
Remove 2.1.0 from Travis CI list | ```yaml
language: ruby
rvm:
- 2.1.1
- 2.0.0
``` |
20dab11a-5fee-472f-b042-f0d5b0191ffc | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '0.10'
notifications:
irc:
channels:
- chat.freenode.net#hawkular
on_success: change
before_install:
- 'npm install -g bower gulp typescript'
script:
- 'npm install'
- 'bower install'
- 'gulp'```
Enable container-based infrastructure for Travis buil... | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
notifications:
irc:
channels:
- chat.freenode.net#hawkular
on_success: change
before_install:
- 'npm install -g bower gulp typescript'
script:
- 'npm install'
- 'bower install'
- 'gulp'
``` |
606c7435-04ad-465e-affd-129bad64a9b0 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode7.3
branches:
only:
- master
- /^deploy-.*$/
install:
- tar -xzf lame-3.99.5.tar.gz
script:
- cd lame-3.99.5 && ../build_ios.sh
```
Add deploy on tag from Travis to github release | ```yaml
language: objective-c
osx_image: xcode7.3
install: tar -xzf lame-3.99.5.tar.gz
script: cd lame-3.99.5 && ../build_ios.sh
deploy:
provider: releases
file: build/libmp3lame.a
skip_cleanup: true
on:
tags: true
api-key:
secure: A3q+C1rrw2yXX/CzV/Utxcg2dKzPCQKDgg/MEWZ8K6/s6C8kRsbgv3YsM+iZpcUlw+e... |
3b0e817f-ca8d-46a1-8dcf-d81c5cb41455 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "5"
before_install:
- rvm install 2.3.1
install:
- bundle install
- npm install -g lodash marked varstream node-gyp
- npm install -g gulp-cli
- npm install
script: bundle exec middleman build --clean
after_success: npm run stage```
Deploy to S3 with Travis | ```yaml
language: node_js
node_js:
- "5"
python:
- "3.5"
cache: pip
install:
# Install any dependencies required for building your site here.
# `awscli` is required for invalidation of CloudFront distributions.
- pip install awscli
before_install:
- rvm install 2.3.1
install:
- bundle install
-... |
e9315d9a-d245-4db6-b04b-2d2d7c398c52 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.10
env:
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
# - BROWSER=firefox BVER=stable
# - BROWSER=firefox BVER=beta
# - BROWSER=firefox BVER=aurora
before_install:
- mkdir -p .travis
- curl -s https:/... | ```yaml
language: node_js
node_js:
- 0.10
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
env:
global:
- secure: Xo5DDUYF9ieE9uzku88im0W/iQrDM/XMxdr4SsXQwVy+v6Y7gMQwPnIlBicgitq7B1ZoVnSrPO0XkNSsj2RYgPUDKLJzQPozp5LiiDOydBC2CpCr6DFlinovwQdm8U64zvvh8m8DIH8Ow1BZmfqHo616DBV1LRToXpMl/... |
0288ea31-5917-4a7f-8141-30e2129859f2 | {
"language": "YAML"
} | ```yaml
before_install:
- sudo add-apt-repository --yes ppa:kubuntu-ppa/backports
- sudo apt-get update -qq
- sudo apt-get install cmake
sudo: true
language: rust
rust: nightly
```
Test on nightly, beta and stable | ```yaml
before_install:
- sudo add-apt-repository --yes ppa:kubuntu-ppa/backports
- sudo apt-get update -qq
- sudo apt-get install cmake
sudo: true
language: rust
rust:
- nightly
- beta
- stable
``` |
11a723fe-4d5f-4e1e-ad59-c67d9a23df10 | {
"language": "YAML"
} | ```yaml
os:
- linux
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode8.2
script:
- eval "$(curl -sL https://swift.vapor.sh/ci)"
- eval "$(curl -sL https://swift.vapor.sh/codecov)"
```
Use Xcode 9.1 image for tests | ```yaml
os:
- linux
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode9.1
script:
- eval "$(curl -sL https://swift.vapor.sh/ci)"
- eval "$(curl -sL https://swift.vapor.sh/codecov)"
``` |
0badcf97-057c-459b-9144-6ddce379a258 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
```
Test on `stable` instead of `iojs` | ```yaml
sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
``` |
9c092680-36c0-4bb4-8c97-68c3fec7d640 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
```
Make Travis build javadoc and source packages | ```yaml
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
script: mvn install
``` |
86ec82bd-e560-4ab6-a77c-7fb0af38c38c | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.6
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- JEKYLL_ENV=production
before_install:
- gem update --system
- gem install bundler
# install:
# - bundle install
# script:
# - rake
cache:
bundler: true
directories:
- $TRAVIS_BUILD_DIR/.jekyll-cache
bra... | ```yaml
language: ruby
rvm:
- 2.6
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- JEKYLL_ENV=production
before_install:
- gem update --system
- gem install bundler
# install:
# - bundle install
# script:
# - rake
addons:
apt:
packages:
- libcurl4-openssl-dev
cache:
bundler: tru... |
a1558197-0658-42a2-943c-693aefeb5982 | {
"language": "YAML"
} | ```yaml
sudo: false
language: java
jdk: openjdk7
script:
- mvn clean deploy
- cd java-sdk/
- mvn site site:deploy
```
Build only develop branch in Travis | ```yaml
sudo: false
language: java
jdk: openjdk7
script:
- mvn clean deploy
- cd java-sdk/
- mvn site site:deploy
branches:
only:
- develop
``` |
5aae03ce-d7da-42c1-a5e6-c679878815e8 | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
rvm:
- 2.3.1
before_install: gem install bundler -v 1.12.5
```
Update Travis CI notification settings. | ```yaml
sudo: false
language: ruby
rvm:
- 2.3.1
before_install: gem install bundler -v 1.12.5
notifications:
email:
on_success: never
on_failure: change
``` |
4ffffa78-a070-475d-a43b-eb72e0aa22af | {
"language": "YAML"
} | ```yaml
language: objective-c
xcode_project: Project/NSData+GZIP.xcodeproj
matrix:
include:
- xcode_scheme: Tests OS X
xcode_sdk: macosx
- xcode_scheme: Tests iOS
xcode_sdk: iphonesimulator
osx_image: xcode7
sudo: false
cache: bundler
```
Update Travis CI image to Xcode8 | ```yaml
language: objective-c
xcode_project: Project/NSData+GZIP.xcodeproj
matrix:
include:
- xcode_scheme: Tests OS X
xcode_sdk: macosx
- xcode_scheme: Tests iOS
xcode_sdk: iphonesimulator
osx_image: xcode8
sudo: false
cache: bundler
``` |
9c9da064-a4de-4a5f-bef2-b91ac4277f88 | {
"language": "YAML"
} | ```yaml
language: php
env:
global:
- COMPOSER_ROOT_VERSION="4.2.x-dev"
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=PGSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_s... | ```yaml
language: php
env:
global:
- COMPOSER_ROOT_VERSION="4.x-dev"
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=PGSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_scr... |
f3613d67-3124-46df-b057-548f6031b7ca | {
"language": "YAML"
} | ```yaml
before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake db:create db:migrate"
script: "DISPLAY=:99.0 bundle exec rspec ./**/spec"
notifications:
email:
- parndt@gmail.com
- ugis.ozolss@gmail.com
irc:
- "irc.freenode.org#refinerycms"
env:
- DB=postgres
- DB=mysql
rvm:
- 1.8.... | ```yaml
before_script:
- "ruby --version"
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake db:create db:migrate"
script: "DISPLAY=:99.0 bundle exec rspec ./**/spec"
notifications:
email:
- parndt@gmail.com
- ugis.ozolss@gmail.com
irc:
- "irc.freenode.org#refinerycms"
env:
- DB=postgres
- D... |
1fb09c43-75ee-43d9-93e6-0720dab529ac | {
"language": "YAML"
} | ```yaml
script: "bundle exec rake db:migrate test"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree
env: "RAILS_ENV=test"
```
Use db:schema:load task instead of db:migrate | ```yaml
script: "bundle exec rake db:schema:load test"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree
env: "RAILS_ENV=test"
``` |
85551a62-8081-46af-b708-554663fb6281 | {
"language": "YAML"
} | ```yaml
language: python
dist: xenial
sudo: true
python:
- 3.6
- 3.7
install:
- pip install pipenv black
- pipenv install --dev
script:
- flake8 --version
- flake8 graphql tests
- black --version
- black graphql tests --check
- mypy --version
- mypy graphql
- pytest --ver... | ```yaml
language: python
dist: xenial
sudo: true
python:
- 3.6
- 3.7
install:
- pip install poetry
- poetry install
script:
- flake8 --version
- flake8 graphql tests
- black --version
- black graphql tests --check
- mypy --version
- mypy graphql
- pytest --version
- p... |
2e2a907d-6519-4f24-b328-85e423519b43 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
```
Test in node 0.11 too | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
``` |
49ae6fce-6217-4ad6-9cc3-0ff1a4ff5e38 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.4.4
- 2.5.1
- jruby-9.2.0.0
- ruby-head
- jruby-head
before_install:
- gem update --system
env:
global:
- JRUBY_OPTS=--dev
script:
- bundle exec rake ${TEST_SUITE:-test}
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
... | ```yaml
language: ruby
rvm:
- 2.5.3
- 2.6.1
- jruby-9.2.0.0
- ruby-head
- jruby-head
before_install:
- gem update --system
env:
global:
- JRUBY_OPTS=--dev
script:
- bundle exec rake ${TEST_SUITE:-test}
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
... |
91482860-7c17-4c62-be8f-477d62f32e75 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
env:
- DJANGO=Django==1.4.20
- DJANGO=Django==1.5.12
- DJANGO=Django==1.6.11
- DJANGO=Django==1.7.7
- DJANGO=Django==1.8
matrix:
exclude:
- python: 3.2
env: DJANGO=Django==1.4.20
- python: 3.3
env: DJANGO=Django==1.4.20
... | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DJANGO=Django==1.4.20
- DJANGO=Django==1.5.12
- DJANGO=Django==1.6.11
- DJANGO=Django==1.7.8
- DJANGO=Django==1.8.1
matrix:
exclude:
- python: 3.2
env: DJANGO=Django==1.4.20
- python: 3.3
env: DJANGO=Djang... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.