doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
e3a1c54a-b4cb-47f6-94e2-9cbecfd4238b | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
```
Test against latest Ruby versions | ```yaml
language: ruby
sudo: false
rvm:
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
``` |
5ea7bf51-c940-4423-b0fc-fc275db23803 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode61
before_install:
- brew update
- if brew outdated | grep -qx xctool; then brew upgrade xctool; fi
- sudo easy_install cpp-coveralls
script:
- xctool clean build -project AutoLayout.xcodeproj -scheme AutoLayout
- xctool test -project AutoLayout.xcodeproj -sche... | ```yaml
language: objective-c
osx_image: xcode61
before_install:
- sudo easy_install cpp-coveralls
script:
- xcodebuild clean build test -project AutoLayout.xcodeproj -scheme AutoLayout -sdk iphonesimulator8.2 ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_su... |
03ff6dae-4416-4339-9a0a-fc987557aaf1 | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
rvm:
- 2.3.0
before_install: gem install bundler -v 1.13.6
```
Add more versions for CI | ```yaml
sudo: false
language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3
- jruby
before_install: gem install bundler -v 1.13.6
``` |
5ef458cb-ff4d-401f-8cbe-c98c49e83beb | {
"language": "YAML"
} | ```yaml
# Documentation relevant to this build configuration file:
#
# https://docs.travis-ci.com/user/languages/java/
language: java
# Travis provides different sets of JDKs for different Ubuntu distributions:
#
# https://docs.travis-ci.com/user/languages/java/#testing-against-multiple-jdks
matrix:
include:
-... | ```yaml
# Documentation relevant to this build configuration file:
#
# https://docs.travis-ci.com/user/languages/java/
language: java
# Travis provides different sets of JDKs for different Ubuntu distributions:
#
# https://docs.travis-ci.com/user/languages/java/#testing-against-multiple-jdks
matrix:
include:
# ... |
dfc0f6dd-986b-46c1-a22a-35ba8a69795c | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
```
Build with Node.js 8 on Travis CI. | ```yaml
sudo: false
language: node_js
node_js:
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
``` |
d1f8f09c-5937-460a-84d4-3b16e6363873 | {
"language": "YAML"
} | ```yaml
language: python
dist: bionic
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- "python setup.py install"
script: make test
services: redis
```
Remove Python 2.7 from test matrix | ```yaml
language: python
dist: bionic
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- "python setup.py install"
script: make test
services: redis
``` |
50347173-9e95-4874-b814-7c6523c6eb60 | {
"language": "YAML"
} | ```yaml
language: php
cache:
directories:
- .phpunit
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
before_install:
- phpenv config-rm xdebug.ini || true
- |
for PHP in $TRAVIS_PHP_VERSION $php_extra; do
INI=~/.phpenv/versions/$PHP/etc/conf.d/travis.ini
echo date.timezone = Eu... | ```yaml
language: php
cache:
directories:
- .phpunit
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
matrix:
include:
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
before_install:
- phpenv config-rm xdebug.ini || true
- |
for PHP in $TRAVIS_PHP_VERSION $php_extra; do
INI=~/.... |
d46139c9-d538-4963-b8e9-fbda6ed40271 | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
rvm:
- 2.3.1
before_install: gem install bundler -v 1.12.5
```
Test on newer Ruby versions | ```yaml
language: ruby
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
before_install:
- gem update --system
- gem install bundler
``` |
1848142c-5d5f-4b01-be8f-16e1ff569c86 | {
"language": "YAML"
} | ```yaml
language: go
install:
- ./build.sh
script:
- ./test.sh
notifications:
email:
- dustin@couchbase.com
```
Revert "Take mobile_dev out of the TravisCI notification list." | ```yaml
language: go
install:
- ./build.sh
script:
- ./test.sh
notifications:
email:
- mobile_dev@couchbase.com
``` |
1f56f99b-674f-4482-86c1-8ace2374b533 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
```
Test on recent Ruby releases | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
``` |
87e74b29-650c-4244-b64c-2fcd91b9e80e | {
"language": "YAML"
} | ```yaml
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/op... | ```yaml
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/o... |
a14f2284-9005-4b2e-8b4e-fd09256643f6 | {
"language": "YAML"
} | ```yaml
rvm:
- 1.9.3
- 2.0.0
before_script:
- bundle exec berks install
script:
- bundle exec foodcritic -f any .
- bundle exec rubocop
```
Test on all Ruby 2.X platforms | ```yaml
rvm:
- 2.0
- 2.1
- 2.2
before_script:
- bundle exec berks install
script:
- bundle exec foodcritic -f any .
- bundle exec rubocop
``` |
02a97e19-2ffe-4e03-b005-657acaee21f2 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
notifications:
email:
on_success: never
on_failure: change
node_js:
- "node"
before_install:
- export CXX="g++-4.8" CC="gcc-4.8"
- curl https://cmake.org/files/v3.6/cmake-3.6.3-Linux-x86_64.tar.gz | tar xz
- export PATH=${PWD}/cmake-3.6.3-Linux-x86_64/bin:$PATH... | ```yaml
language: node_js
sudo: false
notifications:
email:
on_success: never
on_failure: change
node_js:
- "node"
before_install:
- export CXX="g++-4.8" CC="gcc-4.8"
- curl https://cmake.org/files/v3.6/cmake-3.6.3-Linux-x86_64.tar.gz | tar xz
- export PATH=${PWD}/cmake-3.6.3-Linux-x86_64/bin:$PATH... |
1dc23c89-94db-4e9b-8207-2015f555457a | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0"
- "4.1"
sudo: false
```
Add Node.js 4.2 to the list of versions tested by Travis CI | ```yaml
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.0'
- '4.1'
- '4.2'
sudo: false
``` |
915a53e3-bc76-45bf-8985-eeb56d9fa63b | {
"language": "YAML"
} | ```yaml
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may ... | ```yaml
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may ... |
12873b75-13b8-44f7-94c5-2430f02ed2e0 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
# install requirements
install:
- pip install -r requirements.txt
# Build with unit tests and coverage
script: python setup.py nosetests
# safelist
branches:
only:
- master # For all work approved for release
- develop # For general development work
# Post-steps for ... | ```yaml
language: python
python:
- "2.7"
# install requirements
install:
- pip install -r requirements.txt
# Build with unit tests and coverage
script: coverage run setup.py nosetests
# safelist
branches:
only:
- master # For all work approved for release
- develop # For general development work
# Post-step... |
fcd18cc9-6dcd-4149-83ca-903161bc2baa | {
"language": "YAML"
} | ```yaml
language: cpp
sudo: required # the doc target uses sudo to install dependencies
os:
- linux
- osx
env:
global:
- secure: |-
Gsnp9ERFnXt+diCfc7Vb72g+7HDn1MCHvw4zfUDdoBh9bxxFlLQRlzZZfwWhzni57lflrt
0QHXafu+oBVOJuNv6WauV3+ZyuWIQRmNGjZFNLvZsXHK/dyad2vGQBPvEkb+8l/aCyTpbr
6pxmyzLHSn... | ```yaml
language: cpp
dist: trusty
sudo: required # the doc target uses sudo to install dependencies
os:
- linux
- osx
env:
global:
- secure: |-
Gsnp9ERFnXt+diCfc7Vb72g+7HDn1MCHvw4zfUDdoBh9bxxFlLQRlzZZfwWhzni57lflrt
0QHXafu+oBVOJuNv6WauV3+ZyuWIQRmNGjZFNLvZsXHK/dyad2vGQBPvEkb+8l/aCyTpbr
... |
e571fa2d-95f3-4f18-b405-3dce321eb953 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "5.8"
sudo: false
branches:
only:
- master
script:
- npm install
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
```
Add feature* to the build ... | ```yaml
language: node_js
node_js:
- "5.8"
sudo: false
branches:
only:
- master
- /^feature\/.*$/
script:
- npm install
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
``` |
064e312c-663c-44a5-881d-f5cfc893774a | {
"language": "YAML"
} | ```yaml
language: c
sudo: false
matrix:
include:
- os: linux
compiler: gcc
env: O3=1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- os: linux
compiler: clang
env: O3=1
addons:
apt:
sources:
- ubuntu-... | ```yaml
language: c
sudo: false
matrix:
include:
- os: linux
compiler: gcc
env:
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- os: linux
compiler: clang
env:
addons:
apt:
sources:
- ubuntu-toolchai... |
dd6f1d83-3c53-4419-a8b7-2ee79fc06ad7 | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: bash
os:
- linux
- osx
env:
global:
- GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp"
- UNAME="$(uname | tr '[:upper:]' '[:lower:]')"
- GO_VERSIONS="$(< .known-binary-versions-$UNAME) $(< .known-source-versions-$UNAME)"
- GO_BOOTSTRAP_VERSION=1.4.1
matrix:
- TARGET=native... | ```yaml
sudo: required
dist: trusty
language: bash
os:
- linux
- osx
env:
global:
- GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp"
- UNAME="$(uname | tr '[:upper:]' '[:lower:]')"
- GO_BOOTSTRAP_VERSION=1.4.1
matrix:
- TARGET=native GO_VERSIONS="$(< .known-binary-versions-$UNAME) $(< .known-source-versions-$UNAME)"
-... |
84d47af8-ed16-4c25-b55b-fbb71411ed6d | {
"language": "YAML"
} | ```yaml
os:
- linux
language: node_js
node_js:
- "6.10.0"
before_install:
- npm install -g npm
- npm install -g yarn
install:
- yarn install
- yarn link
- gulp test
```
Move gulp test to script part | ```yaml
os:
- linux
language: node_js
node_js:
- "6.10.0"
before_install:
- npm install -g npm
- npm install -g yarn
install:
- yarn install
- yarn link
script:
- gulp test
``` |
025a299a-3c1d-47b2-924c-7573c2af24be | {
"language": "YAML"
} | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8.0
podfile: Example/Podfile
xcode_workspace: Example/SMWRealm.xcworkspace/
xcode_scheme: SMWRealm-Example
xcode_sdk: iphonesimulator10.0
podfile: Example/Podf... | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8.0
podfile: Example/Podfile
xcode_workspace: Example/SMWRealm.xcworkspace/
xcode_scheme: SMWRealm-Example
xcode_sdk: iphonesimulator10.0
podfile: Example/Podf... |
396bbed7-1f1b-4dd7-bfec-1051580bdaec | {
"language": "YAML"
} | ```yaml
language: go
install:
- go get -v -tags 'fixtures acceptance' ./...
go:
- 1.1
- 1.2
- tip
script: script/cibuild
after_success:
- go get code.google.com/p/go.tools/cmd/cover
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- export PATH=$PATH:$HOME/gopath/bin/
- goverall... | ```yaml
language: go
install:
- go get -v -tags 'fixtures acceptance' ./...
go:
- 1.1
- 1.2
- 1.3
- 1.4
- tip
script: script/cibuild
after_success:
- go get code.google.com/p/go.tools/cmd/cover
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- export PATH=$PATH:$HOME/gopath/b... |
8abbd6ec-e787-4b06-adf3-7eaa5552ac90 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "node"
- "lts/*"
cache: yarn
```
Add lintings to the CI build | ```yaml
language: node_js
node_js:
- "node"
- "lts/*"
cache: yarn
script:
- yarn lint
- yarn test
``` |
372e1e30-6354-4f70-87d9-6321526e8bd1 | {
"language": "YAML"
} | ```yaml
# ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode7.2
xcode_workspace: CotEditor.xcworkspace
xcode_scheme:
- CotEditor
- CotEditor (AppStore)
before_install:
- gem install cocoapods
script: xctool -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_X... | ```yaml
# ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode7.2
xcode_workspace: CotEditor.xcworkspace
xcode_scheme:
- CotEditor
- CotEditor (AppStore)
script: xctool -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" build test CODE_SIGN_IDENTITY="" ... |
1d1fc4d1-c7f8-474a-bdf8-ae87ea45b886 | {
"language": "YAML"
} | ```yaml
language: ruby
script: bundle exec rspec spec
sudo: false
cache: bundler
env:
- DB=sqlite3
- DB=sqlite3mem
- DB=postgresql
- DB=mysql
rvm:
- 2.3.1
- 2.2.5
- 2.1.10
- 2.0.0
- jruby-9.1.1.0
gemfile:
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
- ... | ```yaml
language: ruby
script: bundle exec rspec spec
sudo: false
cache: bundler
env:
- DB=sqlite3
- DB=sqlite3mem
- DB=postgresql
- DB=mysql
rvm:
- 2.3.1
- 2.2.5
- 2.1.10
- jruby-9.1.1.0
gemfile:
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/r... |
caf833aa-6cc9-42fd-a8af-d66bebe6f74d | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- phpunit -c app --coverage-text --coverage-clover=coverage.clover
- bin/behat
after_script:
- php vendor/bin/ocular code-coverage:upload ... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- phpunit -c app --coverage-text --coverage-clover=coverage.clover
- bin/behat
after_script:
- php vendor/bin/ocular code-coverage:upload ... |
d145fb84-9964-4656-90ec-58773d90579e | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "9"
- "8"
- "6"
- "4"
- "iojs"
- "0.12"
- "0.10"
- "0.8"
before_install:
- 'nvm install-latest-npm'
sudo: false
```
Add Node 10 to CI. | ```yaml
language: node_js
node_js:
- "10"
- "9"
- "8"
- "6"
- "4"
- "iojs"
- "0.12"
- "0.10"
- "0.8"
before_install:
- 'nvm install-latest-npm'
sudo: false
``` |
d126376f-7a07-4dcd-8faf-839ef17b9f6f | {
"language": "YAML"
} | ```yaml
language: perl
perl:
- "5.22"
- "5.20"
- "5.10"
before_install:
- cpanm -n Devel::Cover::Report::Coveralls
script:
cover -test -ignore ^t/ -report coveralls
```
Update perl versions for Travis | ```yaml
language: perl
perl:
- "5.32"
- "5.30"
- "5.16"
before_install:
- cpanm -n Devel::Cover::Report::Coveralls
script:
cover -test -ignore ^t/ -report coveralls
``` |
61987a1a-4ecd-46af-a418-f423faaa2231 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
script:
- RAILS_ENV=test bundle exec rake --trace db:setup cucumber
before_script:
- psql -c 'create database railskating_test;' -U postgres
```
Disable email notifications for build status. | ```yaml
language: ruby
rvm:
- 2.0.0
script:
- RAILS_ENV=test bundle exec rake --trace db:setup cucumber
before_script:
- psql -c 'create database railskating_test;' -U postgres
notifications:
email: false
``` |
f420c6bf-7335-4be6-b1d6-0ebb34059fca | {
"language": "YAML"
} | ```yaml
language: python
python:
- '3.4'
os:
- linux
install:
- pip install --upgrade pip
- pip install flake8
- pip install coveralls
before_script:
- flake8 --show-source --max-line-length=80 --statistics --builtins=_ pubkey
script:
- python setup.py install
- python setup.py sdist
- pubkey --help
... | ```yaml
language: python
python:
- '3.4'
os:
- linux
install:
- pip install --upgrade pip
- pip install flake8
- pip install coveralls
before_script:
- flake8 --show-source --max-line-length=80 --statistics --builtins=_ pubkey
script:
- python setup.py install
- python setup.py sdist
- pubkey --help
... |
18825252-f487-4538-9bfd-7762dfe25979 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=1.4.5
- DJANGO=1.5
install:
- sudo apt-get install -y python-imaging
- pip install -q Django==$DJANGO --use-mirrors
- pip install -q PIL==1.1.7 --use-mirrors
- pip install -q selenium==2.31 --use-mirrors
- pip install -q -e .
notifications... | ```yaml
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=1.4.5
- DJANGO=1.5
install:
- pip install -q django==$DJANGO --use-mirrors
- pip install -q pillow==2.0 --use-mirrors
- pip install -q selenium==2.31 --use-mirrors
- pip install -q -e .
notifications:
email: false
before_install:
- "expo... |
3632704c-56ed-4d45-ba89-5aa70da1433e | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
addons:
postgresql: "9.4"
apt:
sources:
- deadsnakes
packages:
- python3.5
env:
- TOXENV=py27-dj18 DATABASE_USER="postgres" DATABASE_PASSWORD=""
- TOXENV=py33-dj18 DATABASE_USER="postgres" DATABASE_PASSWORD=""
- TOXENV=py34-dj18 DATABASE_USER="postgres"... | ```yaml
sudo: false
language: python
addons:
postgresql: "9.4"
apt:
sources:
- deadsnakes
packages:
- python3.5
- python3.5-dev
env:
- TOXENV=py27-dj18 DATABASE_USER="postgres" DATABASE_PASSWORD=""
- TOXENV=py33-dj18 DATABASE_USER="postgres" DATABASE_PASSWORD=""
- TOXENV=py34-dj18 DA... |
e30f96b5-543e-4b3d-a49a-e43d50f90a67 | {
"language": "YAML"
} | ```yaml
language: rust
sudo: false
addons:
apt:
packages:
- libssl-dev
rust:
- nightly
- beta
- 1.6.0
- 1.5.0
scirpt:
- cargo test
```
Use Rust 1.8.0 & 1.7.0 | ```yaml
language: rust
sudo: false
addons:
apt:
packages:
- libssl-dev
rust:
- nightly
- beta
- 1.8.0
- 1.7.0
scirpt:
- cargo test
``` |
7998ddde-b61b-497a-988a-49de35d10601 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
cache:
directories:
- node_modules
install:
- npm install
script:
- npm run coveralls
- npm run build
```
Drop node 4 and 5 support | ```yaml
language: node_js
node_js:
- "6"
- "7"
- "8"
cache:
directories:
- node_modules
install:
- npm install
script:
- npm run coveralls
- npm run build
``` |
a4f7a57a-064e-43dd-9d6f-8fd7be56ca03 | {
"language": "YAML"
} | ```yaml
language: c
env:
matrix:
- COMPILER=gcc
- COMPILER=clang
script:
- cd build
- CC=${COMPILER} cmake .. -DCMAKE_BUILD_TYPE=DEBUG
- make build_tests
- make test
before_install:
- wget http://balthasar.plejeck.com/up/libcmocka_0.4.0-1_i386.deb http://balthasar.plejeck.com/up/libcmocka-dev_0.4.0-1_i386.d... | ```yaml
language: c
env:
matrix:
- COMPILER=gcc
- COMPILER=clang
script:
- cd build
- CC=${COMPILER} cmake .. -DCMAKE_BUILD_TYPE=DEBUG
- make build_tests
- make test
before_install:
- wget http://balthasar.plejeck.com/up/libcmocka_0.4.0-1_amd64.deb http://balthasar.plejeck.com/up/libcmocka-dev_0.4.0-1_amd64... |
0916ecb1-578e-4823-93a8-63852b8a3acf | {
"language": "YAML"
} | ```yaml
language: ruby
install: travis_wait bundle install
rvm:
- 2.1.1
notifications:
email: false
```
Switch to use TravisCI containers. | ```yaml
sudo: false
language: ruby
cache: bundler
install: travis_wait bundle install
rvm:
- 2.1.1
notifications:
email: false
``` |
43f75432-86aa-4338-ae8a-197a393ec24c | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.3.1
sudo: false
cache:
bundler: true
env:
global:
- RUBY_GC_HEAP_GROWTH_MAX_SLOTS=300000
- RUBY_GC_HEAP_INIT_SLOTS=600000
- RUBY_GC_HEAP_GROWTH_FACTOR=1.25
- PARALLEL_TEST_PROCESSORS=2
matrix:
- TEST_SUITE=vmdb PARALLEL=true
- TEST_SUITE=brakeman
matrix:
fast_finish: ... | ```yaml
language: ruby
rvm:
- 2.3.1
- 2.4.2
sudo: false
cache:
bundler: true
env:
global:
- RUBY_GC_HEAP_GROWTH_MAX_SLOTS=300000
- RUBY_GC_HEAP_INIT_SLOTS=600000
- RUBY_GC_HEAP_GROWTH_FACTOR=1.25
- PARALLEL_TEST_PROCESSORS=2
matrix:
- TEST_SUITE=vmdb PARALLEL=true
- TEST_SUITE=brakeman
matrix:
allow... |
5acb390f-3624-40aa-b953-197e17044db2 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
```
Test on v4 and v5 | ```yaml
sudo: false
language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
``` |
8dd15460-36d9-4966-b135-7e0c79ca1be8 | {
"language": "YAML"
} | ```yaml
language: ruby
script: "TESTOPTS=-v rake test"
jdk:
- oraclejdk7
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- rbx
- jruby-19mode
matrix:
fast_finish: true
allow_failures:
- rvm: jruby-19mode
- rvm: rbx
```
Test against Ruby 2.1.1 on Travis | ```yaml
language: ruby
script: "TESTOPTS=-v rake test"
jdk:
- oraclejdk7
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- rbx
- jruby-19mode
matrix:
fast_finish: true
allow_failures:
- rvm: jruby-19mode
- rvm: rbx
``` |
aef78344-3fdb-4ca1-87bb-edaba68931e9 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
env:
- PGVERSION=9.5
sudo: required
cache: pip
install: ./bin/travis-install-dependencies
script: ./bin/travis-run-tests
```
Add permissions to execute Travis scripts | ```yaml
language: python
python:
- "2.7"
env:
- PGVERSION=9.5
sudo: required
cache: pip
before_install:
- chmod +x ./bin/travis-install-dependencies
- chmod +x ./bin/travis-run-tests
install: ./bin/travis-install-dependencies
script: ./bin/travis-run-tests
``` |
ab099383-2ec9-4805-a9f9-1df11d8277f3 | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
env:
- DJANGO_VERSION="Django>=1.8,<1.9"
- DJANGO_VERSION="Django>=1.9,<1.10"
- DJANGO_VERSION="Django>=1.10,<2.0"
- DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
python:
- "2.7"
- "3.4"
- "3.5"
before_script:
- pip install coverage coverall... | ```yaml
sudo: false
language: python
env:
- DJANGO_VERSION="Django>=1.8,<1.9"
- DJANGO_VERSION="Django>=1.9,<1.10"
- DJANGO_VERSION="Django>=1.10,<1.11"
- DJANGO_VERSION="Django>=1.11,<2.0"
- DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6... |
369d41d6-e0a1-4ff2-bcec-a7a96fdf48c0 | {
"language": "YAML"
} | ```yaml
sudo: required
language: c
services:
- docker
before_install:
- make
script:
-
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push atgreen/lisp-10-centos7;
fi
- echo All done.
```
Re... | ```yaml
sudo: required
language: c
services:
- docker
before_install:
- make
script:
-
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push atgreen/lisp-10-centos7;
fi
- echo All done.
``` |
d024018e-4840-42e5-a078-5abb20717153 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "5"
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
```
Add linting to Travis CI | ```yaml
language: node_js
node_js:
- "5"
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_script:
- npm run lint
``` |
8ae09995-c508-47c4-a198-d584c7c57582 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
script:
- ./build/tools/phpunit.phar --configuration ./build/travis-ci.xml
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TRAVIS_PHP_VERS... | ```yaml
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
sudo: false
script:
- ./build/tools/phpunit.phar --configuration ./build/travis-ci.xml
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TR... |
9e922a30-85af-4181-8b04-466c548094e1 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.2
- hhvm
before_script:
- composer install
script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=clover.xml --colors
after_script:
- sh .travis.coverage.sh
matrix:
allow_failures:
- php: hhvm
```
Remove HHVM from the Travis-CI matrix, do no... | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
before_script:
- composer install
script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=clover.xml --colors
after_script:
- sh .travis.coverage.sh
``` |
eaf86df7-e1d8-43c2-a9a5-8951fab4c181 | {
"language": "YAML"
} | ```yaml
language: java
os : osx
before_install:
- brew update
- brew install thrift```
Add in gradle to osx | ```yaml
language: java
os : osx
before_install:
- brew update
- brew install thrift
- brew install gradle``` |
4d69ce17-d975-44ef-8c29-ceb90fdb3ea2 | {
"language": "YAML"
} | ```yaml
sudo: false
language: go
matrix:
include:
- go: 1.7
os: linux
- go: 1.7
os: osx
- go: tip
os: linux
- go: tip
os: osx
fast_finish: true
allow_failures:
- go: tip
install:
- cd cli && godep restore -v
script:
- ./bin/test-go-fmt.sh
```
Remove custom instal... | ```yaml
sudo: false
language: go
matrix:
include:
- go: 1.7
os: linux
- go: 1.7
os: osx
- go: tip
os: linux
- go: tip
os: osx
fast_finish: true
allow_failures:
- go: tip
before_install: cd cli
script:
- ../bin/test-go-fmt.sh
``` |
7e969e5a-222e-4448-9140-71af88e5c0eb | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
```
Use latest Rubygems in Travis | ```yaml
sudo: required
before_install: gem update --system
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
``` |
2aa96ff1-ef1b-4511-b5b0-8c1f31d64594 | {
"language": "YAML"
} | ```yaml
language: objective-c
xcode_workspace: onetimepassword.xcworkspace
xcode_scheme: OneTimePassword
xcode_sdk:
- iphonesimulator8.1
script: xcodebuild -workspace onetimepassword.xcworkspace -scheme OneTimePassword -sdk iphonesimulator8.1 build test
```
Build both targets in Travis | ```yaml
language: objective-c
xcode_workspace: onetimepassword.xcworkspace
xcode_scheme:
- OneTimePassword
- OneTimePasswordLegacy
xcode_sdk:
- iphonesimulator8.1
script:
- xcodebuild -workspace onetimepassword.xcworkspace -scheme OneTimePassword -sdk iphonesimulator8.1 build test
- xcodebuild -workspace onetimepassw... |
0d2290d4-f48a-4490-b694-2a30b7df4308 | {
"language": "YAML"
} | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --proje... | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --proje... |
9623ca44-7b62-403e-a593-46e67864cb11 | {
"language": "YAML"
} | ```yaml
sudo: false
addons:
apt:
sources:
- hvr-ghc
packages:
- cabal-install-1.22
- ghc-7.10.1
install:
- travis_retry cabal update
- runhaskell BuildFromSource.hs build
- cabal sandbox init --sandbox="`pwd`"/Elm-Platform/build/.cabal-sandbox
- cabal install --only-dependencies --enable-te... | ```yaml
sudo: false
addons:
apt:
sources:
- hvr-ghc
packages:
- cabal-install-1.22
- ghc-7.10.1
before_install:
- export PATH=/opt/ghc/7.10.1/bin:/opt/cabal/1.22/bin:$PATH
install:
- travis_retry cabal update
- runhaskell BuildFromSource.hs build
- cabal sandbox init --sandbox="`pwd`"/Elm... |
e286ccae-5b57-4d11-a9c7-69c6d968bedc | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '7'
- '6'
- '4'
```
Update Node versions on Travis | ```yaml
sudo: false
language: node_js
node_js:
- '8'
- '6'
- '4'
``` |
401087a5-676b-41b2-8cae-2d3bd89fb748 | {
"language": "YAML"
} | ```yaml
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ree
- ruby-head
```
Revert "Test JRuby's 1.9 mode" | ```yaml
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx-18mode
- rbx-19mode
- ree
- ruby-head
``` |
3198736d-8fdf-4944-b90d-8be047d1ad03 | {
"language": "YAML"
} | ```yaml
language: haskell
script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | LANG=C sh
```
Remove the LANG=C on Travis | ```yaml
language: haskell
script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
``` |
4ee9cff3-c69b-4e33-a198-40dc9f2793b2 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- tip
script: go test -v ./...
```
Test against go 1.5 as well | ```yaml
language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
- tip
script: go test -v ./...
``` |
fe03f253-d636-445d-92ec-91475dfad219 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '0.12'
before_script:
install: true
script:
- npm install grunt-cli -g
- npm install
- grunt travis
after_success:
- node deploy-docs.js
notifications:
slack:
secure: aQXFk2/MxX5eR2JM90xWAA9YX03QArY1ejUmnP/NkFHbB4zzKZblACjEeDTDTDCThZpXhrganX2nDWrWFrrXbOG28wKrRhEZSULPAgyiWGpfk... | ```yaml
sudo: false
language: node_js
node_js:
- '0.12'
before_script:
install: true
script:
- npm install grunt-cli -g
- npm install
- grunt travis
after_success:
- node deploy-docs.js
notifications:
slack:
secure: aQXFk2/MxX5eR2JM90xWAA9YX03QArY1ejUmnP/NkFHbB4zzKZblACjEeDTDTDCThZpXhrganX2nDWrWFrrXbOG28wKrRhEZS... |
b9d84f4f-65de-4f3d-b105-f292366de268 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
```
Add npm publish to tagged releases | ```yaml
language: node_js
node_js:
- '0.10'
deploy:
provider: npm
email: nathan@nathanhoule.com
on:
tags: true
api_key:
secure: XqIdL8v1nJnc6Bs/+0YKEethWw6git8L2fRvXT6hGpnlBSwIpIcOG9V4PokBmcpCaNJcVPL4/RshcSepxsJ3/fnDLtH6zydnuAi/nyYxmG7Ko2YjSJrHOXXQnwkjXQKxzHz1FJTCCipt7pFkwsCN1fqevknIUF4szOv5czq5F6E=
`... |
3b9bf887-7130-429c-a0c8-0a5d65b241a0 | {
"language": "YAML"
} | ```yaml
language: python
# Python versions to test
python:
- "2.7"
- "3.3"
- "3.4"
# Manually define here the combinations of django and db versions to test
env:
- DJANGO_VERSION=1.6.6 DB=postgresql
- DJANGO_VERSION=1.6.6 DB=sqlite
# Install the application
install:
- sh -c "if [ '$DB' = 'postgresql' ]; ... | ```yaml
language: python
# Python versions to test
python:
- "2.7"
- "3.3"
- "3.4"
# Manually define here the combinations of django and db versions to test
env:
- DJANGO_VERSION=1.6.8 DB=postgresql
- DJANGO_VERSION=1.6.8 DB=sqlite
# Install the application
install:
- sh -c "if [ '$DB' = 'postgresql' ]; ... |
2313235b-6a50-4c63-9bac-03cbc8cc0f5d | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install: "pip install -r requirements-dev.txt"
script: "nose2"
```
Update Ubuntu distribution on Travis to support python 3.7 | ```yaml
dist: bionic
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install: "pip install -r requirements-dev.txt"
script: "nose2"
``` |
f773742a-3a2b-4f2a-b4bc-556a5a2a644a | {
"language": "YAML"
} | ```yaml
dist: precise
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install --prefer-dist --no-interaction --no-suggest```
Install lowest version on composer | ```yaml
dist: precise
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install --prefer-dist --prefer-lowest --no-interaction --no-suggest``` |
c0b06ae0-09cd-4371-a631-d593f30f13bd | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.7
```
Add test coverage to Code climate | ```yaml
language: go
go:
- 1.7
addons:
code_climate:
repo_token: 86a92217dd8d70fe4af3cf0005b109d3a98320ac60110a757fe2e27ce7517a4f
``` |
3cbd7fdb-bd79-4b75-8f11-c6ff7012b485 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
- 1.9.3
gemfile:
- gemfiles/Gemfile.activemodel-4.2
- gemfiles/Gemfile.activemodel-4.1
- gemfiles/Gemfile.activemodel-4.0
- gemfiles/Gemfile.activemodel-3.2.x
script: "echo 'COME ON!' && bundle exec rake spec"
```
Use new Travis container-based infrastructure | ```yaml
language: ruby
sudo: false
rvm:
- 2.0.0
- 1.9.3
gemfile:
- gemfiles/Gemfile.activemodel-4.2
- gemfiles/Gemfile.activemodel-4.1
- gemfiles/Gemfile.activemodel-4.0
- gemfiles/Gemfile.activemodel-3.2.x
script: "echo 'COME ON!' && bundle exec rake spec"
``` |
c3c1d10f-1b91-4ad4-b292-86360266d6c9 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- ruby-head
- 2.6.0
- 2.5.3
- 2.5.1
- 2.4.5
- 2.4.4
- 2.3.7
- 2.2.10
- 2.1.8
- 1.9.3
before_install:
- gem update --system
- gem --version
- gem install bundler
env:
global:
- CC_TEST_REPORTER_ID=92655ba2c8b47200f80e996afb80c410b9491514845d414d7517108ad35a517... | ```yaml
language: ruby
rvm:
- ruby-head
- 2.6.0
- 2.5.3
- 2.5.1
- 2.4.5
- 2.4.4
- 2.3.7
- 2.2.10
- 2.1.8
- 1.9.3
before_install:
- 'if [[ `ruby -v` =~ 2.2.10 ]]; gem update --system; then gem update --system; else gem update --system 2.7.8; fi'
- 'gem --version'
- 'gem install bundler'
env:
... |
835bf6d1-fe27-481f-b62d-0375609f4573 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode7.3
script: xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-Mac test
after_success: bash <(curl -s https://codecov.io/bash)
```
Update Travis config for Xcode 8. | ```yaml
language: objective-c
osx_image: xcode8
script: xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-Mac test
after_success: bash <(curl -s https://codecov.io/bash)
``` |
e8217816-8f54-4875-9908-1f06e7e0c05d | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli```
Update runtimes to extend test coverage. | ```yaml
language: node_js
node_js:
- "0.12"
- "0.10"
- "iojs"
- "iojs-v1.1.0"
before_script:
- npm install -g grunt-cli
``` |
d3eb1138-cffa-4022-8813-ac14751e2ea5 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.3
install:
- composer install
script:
- ./bin/phpspec run
```
Change PHP version nums in Travis to strings | ```yaml
language: php
php:
- '5.4'
- '5.3'
install:
- composer install
script:
- ./bin/phpspec run
``` |
9f6004a5-c75e-42c4-ab3f-9e7750c7b209 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.4"
install: "pip install -r requirements-dev.txt"
script:
- make test
- make lint
- make docs
```
Add python 3.5 to the build matrix | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
install: "pip install -r requirements-dev.txt"
script:
- make test
- make lint
- make docs
``` |
0d89af18-6966-4a71-9e8e-684ef5b2f98d | {
"language": "YAML"
} | ```yaml
language: groovy
sudo: false
dist: precise
jdk:
- openjdk7
- oraclejdk8
env:
global:
- JAVA_OPTS="-Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2"
- GRADLE_OPTS="-Xmx1024m"
script:
- ./gradlew check uploadArchives --full-stacktrace
- cd samples/example && ./gradlew clean webResourceCompile --full-stack... | ```yaml
language: groovy
sudo: false
dist: precise
jdk:
#- openjdk7
- oraclejdk8
env:
global:
- GRADLE_OPTS="-Xmx1024m"
script:
- ./gradlew check uploadArchives --full-stacktrace
- cd samples/example && ./gradlew clean webResourceCompile --full-stacktrace && cd ../../
after_success:
- ./gradlew covera... |
103da764-bcf6-4454-8a42-dce87307af02 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.8
sudo: required
services:
- docker
before_install:
# libseccomp in trusty is not new enough, need backports version.
- sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse' > /etc/apt/sources.list.d/backports.list"
... | ```yaml
language: go
go:
- 1.8
sudo: required
services:
- docker
before_install:
# libseccomp in trusty is not new enough, need backports version.
- sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse' > /etc/apt/sources.list.d/backports.list"
... |
3c0a9aac-2292-4ad5-873d-f2e17455a027 | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "2.2"
- "jruby-9.0.4.0"
- "rbx-2.5.8"
cache: bundler
```
Use Rubinius to 3.9 on CI | ```yaml
language: ruby
sudo: false
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "2.2"
- "jruby-9.0.4.0"
- "rubinius-3.9"
cache: bundler
``` |
f4402018-f7fa-40e2-a2f1-8d4c3a484eb1 | {
"language": "YAML"
} | ```yaml
dist: xenial
language: ruby
services:
- postgresql
rvm:
- '2.6.1'
- '2.3.8'
before_install: export TZ=Europe/Berlin
before_script: bundle exec rake ci:setup
script: bundle exec rake ci:spec
```
Update ruby versions on CI | ```yaml
dist: xenial
language: ruby
services:
- postgresql
rvm:
- '2.6.2'
before_install: export TZ=Europe/Berlin
before_script: bundle exec rake ci:setup
script: bundle exec rake ci:spec
``` |
75b80fad-c460-4c74-b0c9-6c36ef78bff0 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.8
os: linux
dist: trusty
sudo: required
env:
global:
- BUILD_GOARCH=amd64
matrix:
- BUILD_GOOS=linux
- BUILD_GOOS=darwin
- BUILD_GOOS=windows
script:
- env GOARCH=${BUILD_GOARCH} GOOS=${BUILD_GOOS} go build -o ${GOPATH}/bin/hello-${BUILD_GOOS}-${BUILD_GOARCH}
- ... | ```yaml
language: go
go:
- 1.8
os: linux
dist: trusty
env:
global:
- BUILD_GOARCH=amd64
matrix:
- BUILD_GOOS=linux
- BUILD_GOOS=darwin
- BUILD_GOOS=windows
script:
- env GOARCH=${BUILD_GOARCH} GOOS=${BUILD_GOOS} go build -o ${GOPATH}/bin/hello-${BUILD_GOOS}-${BUILD_GOARCH}
- if [[ "$BUILD_G... |
f4c78a41-6e81-4d51-84d7-8c051ef66523 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '11'
addons:
chrome: 'stable'```
Revert "Update Travis CI config" | ```yaml
language: node_js
node_js:
- "11"
addons:
firefox: "latest"
before_script:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # give xvfb some time to start
``` |
4700ebb3-7853-4188-a1b2-c46faa0ae950 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
notifications:
irc:
channels:
- "irc.freenode.org#berkshelf"
skip_join: true
use_notice: true
before_install:
- sudo apt-get install -qq libarchive12 libarchive-dev
before_script:
- git config --global user.email "ci@berkshelf.com"
- git config -... | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
notifications:
irc:
channels:
- "irc.freenode.org#berkshelf"
skip_join: true
use_notice: true
before_install:
- sudo apt-get install -qq libarchive12 libarchive-dev
before_script:
- git config --global user.email "ci@berkshelf.com"
- git ... |
e90e1911-d41f-41d3-9ac8-1a9363eeebe5 | {
"language": "YAML"
} | ```yaml
language: julia
julia:
- 0.4
- 0.5
- nightly
os:
- linux
- osx
notifications:
email: false
before_script:
- export PATH=$HOME/.local/bin:$PATH
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("DataFrames"); Pkg.test(... | ```yaml
language: julia
julia:
- 0.4
- 0.5
- nightly
os:
- linux
- osx
notifications:
email: false
before_script:
- export PATH=$HOME/.local/bin:$PATH
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("DataFrames"); Pkg.test(... |
e34a08e6-3285-4ead-9183-4a9af40acf88 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7
- 7.1
- nightly
matrix:
allow_failures:
- php: nightly
fast_finish: true
before_script:
- phpenv config-rm xdebug.ini || echo "xdebug not available"
- travis_retry composer self-update
- travis_retry composer install --no-interaction
script:
- phpdbg -qrr vendor/... | ```yaml
language: php
php:
- 7
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: nightly
- php: hhvm
fast_finish: true
env:
- DEPS=lowest
- DEPS=highest
before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available"
install:
- if [ "$DEPS" = "lowest" ]; then
trav... |
433d60a9-ea84-4e99-abbd-0b997ba9a87d | {
"language": "YAML"
} | ```yaml
language: haskell
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository -y ppa:h-rayflood/llvm
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.8
- sudo apt-get install --allow-unauthenticated -qq clang-3.4
install:
# - cabal install h... | ```yaml
language: haskell
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository -y ppa:h-rayflood/llvm
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.8
- sudo apt-get install --allow-unauthenticated -qq clang-3.4
install:
# - cabal install h... |
63dba858-7a99-45e4-9611-8b6f73a6d2d1 | {
"language": "YAML"
} | ```yaml
language: go
install:
- "pip install --user -r requirements-dev.txt"
- bash scripts/gitcookie.sh
go:
- 1.5
- 1.5.1
- 1.5.2
```
Add support for compiling against golang 1.6 | ```yaml
language: go
install:
- "pip install --user -r requirements-dev.txt"
- bash scripts/gitcookie.sh
go:
- 1.6
- 1.5
- 1.5.1
- 1.5.2
``` |
861b2613-6fa8-48f6-a860-6e6c2f5bfd81 | {
"language": "YAML"
} | ```yaml
language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
before_script:
- curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recursive
- ./aut... | ```yaml
language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
env:
- SYLPHEED_STAGE=master
- SYLPHEED_STAGE=3.5
- SYLPHEED_STAGE=3.4
before_script:
- curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/mi... |
1aab357f-c9f1-431e-ad3a-258d38a8bc43 | {
"language": "YAML"
} | ```yaml
language: generic
sudo: required
env:
globaL:
- COMPOSE_HTTP_TIMEOUT=3600
#env:
# - test: Ubuntu 14.04 Apache
# distribution: ubuntu
# version: 14.04
# init: /sbin/init
# run_opts: ""
addons:
hosts:
- aegir.local.computer
- sitetest.aegir.local.computer
services:
- docker
be... | ```yaml
language: generic
sudo: required
env:
globaL:
- COMPOSE_HTTP_TIMEOUT=3600
#env:
# - test: Ubuntu 14.04 Apache
# distribution: ubuntu
# version: 14.04
# init: /sbin/init
# run_opts: ""
addons:
hosts:
- aegir.local.computer
- sitetest.aegir.local.computer
services:
- docker
be... |
59feeac7-0d0e-47dc-9ba9-3923b7d25e67 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4"
- "5"
- "6"
- "7"
- "8"
install: npm install
```
Set Travis to run on OSX | ```yaml
language: node_js
sudo: false
os:
- osx
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4"
- "5"
- "6"
- "7"
- "8"
install: npm install
``` |
709ce931-8637-4b67-a51c-b84c6c0c6cce | {
"language": "YAML"
} | ```yaml
sudo: false
language: cpp
compiler:
- gcc
# - clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- openmpi-bin
- libopenmpi-dev
# - clang
notifications:
email:
recipients:
- sharker81@gmail.com
on_success: change
on_failur... | ```yaml
sudo: false
language: cpp
compiler:
- gcc
# - clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- openmpi-bin
- libopenmpi-dev
# - clang
notifications:
email:
recipients:
- sharker81@gmail.com
on_success: change
on_failur... |
5deaced7-7d40-460a-8f3d-acc94d11e1ad | {
"language": "YAML"
} | ```yaml
language: ruby
install:
- sudo apt-get install ffmpeg
- sudo apt-get install imagemagick
command: bundle exec rake
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
```
Add bundle install to install step. | ```yaml
language: ruby
install:
- sudo apt-get install ffmpeg
- sudo apt-get install imagemagick
- bundle install
command: bundle exec rake
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
``` |
961ae8b9-ec96-4966-8d93-ffcf11343e28 | {
"language": "YAML"
} | ```yaml
language: python
python: 2.7
sudo: required
dist: xenial
env:
- PY=e ANGR_REPO=pyvex
- PY=e ANGR_REPO=cle
- PY=e ANGR_REPO=simuvex
- PY=e ANGR_REPO=angr
- PY=e ANGR_REPO=angr-doc
- PY=e ANGR_REPO=angrop
- PY=e ANGR_REPO=fuzzer
- PY=e ANGR_REPO=driller
- PY=p ANGR_REPO=colorguard
- PY=e ANGR_... | ```yaml
language: python
python: 2.7
sudo: required
dist: xenial
env:
- PY=e ANGR_REPO=cle
- PY=e ANGR_REPO=simuvex
- PY=e ANGR_REPO=angr
- PY=e ANGR_REPO=angr-doc
- PY=e ANGR_REPO=angrop
- PY=e ANGR_REPO=fuzzer
- PY=e ANGR_REPO=driller
- PY=p ANGR_REPO=colorguard
- PY=e ANGR_REPO=fidget
- PY=e ANGR... |
4e722a7b-8bd9-4223-abb5-cc209c4a1ada | {
"language": "YAML"
} | ```yaml
sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.5
- 2.3.1
- 2.3.3
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
script:
- bundle exec rspec
- bundle exec rubocop
```
Update the Ruby build matrix for Travis CI. | ```yaml
sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
script:
- bundle exec rspec
- bundle exec rubocop
``` |
98b2f939-8332-4bd3-b089-afe439428539 | {
"language": "YAML"
} | ```yaml
before_install:
- gem install bundler
rvm:
- 2.1.10
- 2.2.8
- 2.3.7
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- rbx
- jruby
gemfile:
- Gemfile
- gemfiles/Gemfile.rails-5.0.x
- gemfiles/Gemfile.rails-5.1.x
- gemfiles/Gemfile.rails-5.2.x
- gemfiles/Gemfile.rails-master
matrix:
exclude... | ```yaml
before_install:
- gem install bundler
rvm:
- 2.3.7
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- rbx
- jruby
gemfile:
- Gemfile
- gemfiles/Gemfile.rails-5.0.x
- gemfiles/Gemfile.rails-5.1.x
- gemfiles/Gemfile.rails-5.2.x
- gemfiles/Gemfile.rails-master
matrix:
exclude:
- rvm: 2.3.7
... |
6ef4a9d2-f345-4b5b-af10-e44d3c1381fa | {
"language": "YAML"
} | ```yaml
env:
global:
- DOCKER_VERSION=1.10.1-0~trusty
sudo: required
services:
- docker
before_install:
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
script:
- docker version
- docker login --email="$DOCKER_EMAIL" --username="$DOCKER_USERNAME" --password="$... | ```yaml
env:
global:
- DOCKER_VERSION=1.10.1-0~trusty
sudo: required
services:
- docker
before_install:
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
script:
- docker version
- sudo docker login --email="$DOCKER_EMAIL" --username="$DOCKER_USERNAME" --passwo... |
9803c3c8-d166-4cef-8e6c-9bb9fae71c22 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.6
- 0.8
- '0.10'
```
Support latest LTS and Stable versions of node | ```yaml
language: node_js
node_js:
- 0.6
- 0.8
- '0.10'
- '0.12'
- '4.2'
- 'node'
``` |
c2563b49-6ece-4bbc-b511-93a11ad72844 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install stomp.py
- pip install python-daemon
- pip install python-ldap
- pip install dirq
- pip install unittest2
# command to run tests, e.g. python setup.... | ```yaml
language: python
python:
- "2.6"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install stomp.py
- pip install python-daemon
- pip install python-ldap
- pip install dirq
- pip install unittest2
# command to run tests, e.g. python setup.... |
631ea309-2ae0-437f-a8b6-2d28d3b79c56 | {
"language": "YAML"
} | ```yaml
rvm:
- 1.9.3
- 2.0.0
gemfile:
- gemfiles/Gemfile.activemodel-3.0.x
- gemfiles/Gemfile.activemodel-3.1.x
- gemfiles/Gemfile.activemodel-3.2.x
- gemfiles/Gemfile.activemodel-4.0.x
```
Build against 2.1.0 as well | ```yaml
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
gemfile:
- gemfiles/Gemfile.activemodel-3.0.x
- gemfiles/Gemfile.activemodel-3.1.x
- gemfiles/Gemfile.activemodel-3.2.x
- gemfiles/Gemfile.activemodel-4.0.x
``` |
b7bfde92-960c-4fab-b74e-552b2320fbed | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
before_script:
- npm i -g grunt-cli
- npm i
cache:
directories:
- node_modules
```
Add node.js 0.12 to Travis file | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
before_script:
- npm i -g grunt-cli
- npm i
cache:
directories:
- node_modules
``` |
3900a687-05ac-4f37-b882-845b4dfd0e66 | {
"language": "YAML"
} | ```yaml
env:
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.3
before_install:
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo add-apt-repository -y ppa:openstack-ubuntu-testing/icehouse
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-1.20 ghc-$GH... | ```yaml
env:
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.3
before_install:
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo add-apt-repository -y ppa:openstack-ubuntu-testing/icehouse
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-1.20 ghc-$GH... |
16755e7a-71c8-4a3d-9159-aa096918c804 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode61
before_install:
- brew update
install:
- mkdir -p $(brew --repo)/Library/Taps/homebrew
- ln -s $PWD $(brew --repo)/Library/Taps/homebrew/homebrew-truecrypt
- brew tap --repair
- brew tap
script:
- brew audit truecrypt
- brew cask install -v truecrypt
- /A... | ```yaml
language: objective-c
osx_image: xcode61
before_install:
- brew update
install:
- mkdir -p $(brew --repo)/Library/Taps/homebrew
- ln -s $PWD $(brew --repo)/Library/Taps/trinitronx/homebrew-truecrypt/
- brew tap --repair
- brew tap
script:
- brew audit truecrypt
- brew cask install -v truecrypt
-... |
f02407bd-179e-46ea-9857-84c0d544dbeb | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode7.3
before_install:
- DEVICE='iPhone 6'
- IOS_VERSION='9.3'
- SIMULATOR_ID=$(xcrun instruments -s | grep -o "$DEVICE ($IOS_VERSION) \[.*\]" | grep -o "\[.*\]" | sed "s/^\[\(.*\)\]$/\1/")
script:
- echo $SIMULATOR_ID
- open -b com.apple.iphonesimulator --args -C... | ```yaml
language: objective-c
osx_image: xcode7.3
before_install:
- DEVICE='iPhone 6'
- IOS_VERSION='9.3'
- SIMULATOR_ID=$(xcrun instruments -s | grep -o "$DEVICE ($IOS_VERSION) \[.*\]" | grep -o "\[.*\]" | sed "s/^\[\(.*\)\]$/\1/")
script:
- echo $SIMULATOR_ID
- open -b com.apple.iphonesimulator --args -C... |
d4c116e0-75dd-4fdf-a11d-54b5e75b8906 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
fast_finish: true
install:
- composer install --dev --no-interaction
script:
- mkdir -p build/logs
- phpunit
after_script:
- php vendor/bin/coveralls -v
```
Move to major PHP ver... | ```yaml
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
# - php: 7.0
- php: hhvm
fast_finish: true
install:
- composer install --dev --no-interaction
script:
- mkdir -p build/logs
- phpunit
after_script:
- php vendor/bin/coveralls -v
``` |
306d5cdd-3922-4554-9a60-bd4215ec197f | {
"language": "YAML"
} | ```yaml
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1
branches:
only:
- master
```
Add Ruby 2.2 env for testing | ```yaml
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
branches:
only:
- master
``` |
21ee3aa1-9d29-4832-a287-41ed106d6c34 | {
"language": "YAML"
} | ```yaml
language: csharp
install:
# Clone, build and install ecsc
- git clone --depth=5 https://github.com/jonathanvdc/ecsc
- nuget restore ecsc/src/ecsc.sln
- xbuild /p:Configuration=Release ecsc/src/ecsc.sln
- chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.exe
- chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.dl... | ```yaml
language: csharp
install:
# Clone, build and install ecsc
- git clone --depth=5 https://github.com/jonathanvdc/ecsc
- nuget restore ecsc/src/ecsc.sln
- xbuild /p:Configuration=Release ecsc/src/ecsc.sln
- chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.exe
- chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.dl... |
dfcdf586-2a0d-4adb-9ebd-00ea06379fb9 | {
"language": "YAML"
} | ```yaml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
r:
- release
- devel
sudo: false
cache: packages
```
Add codecov and staticdocs build | ```yaml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
r:
- release
- devel
sudo: false
cache: packages
r_github_packages:
- jimhester/covr
- hadley/staticdocs
after_success:
- Rscript -e 'covr::codecov()'
before_deploy:
- R -e "staticdocs::build_site(exampl... |
6672a9ad-5d43-4e93-8ac9-5a8ac3eb6f29 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
branches:
only:
- master
```
Drop node 0.10 support and add 5.x | ```yaml
language: node_js
node_js:
- "0.12"
- "4"
- "5"
branches:
only:
- master
``` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.