doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
eea02c00-db42-4ecd-834e-7afa5e343b51 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
env:
- DB=sqlite
- DB=mysql
- DB=postgres
addons:
postgresql: "9.4"
script:
- coverage run --source=hc manage.py test
after_success: coveralls
```
Install mysqlclient so Django can ... | ```yaml
language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls mysqlclient
env:
- DB=sqlite
- DB=mysql
- DB=postgres
addons:
postgresql: "9.4"
script:
- coverage run --source=hc manage.py test
after_success: coveralls
``` |
5fc76153-c819-4958-8e64-7df664e809c9 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
before_install:
- echo 'yes' | sudo add-apt-repository ppa:ondrej/php5
- sudo apt-get update -qq
- sudo apt-get install -qq php5-cli
- php -v
- curl https://getcomposer.org/installer | php
- chmod +x composer.phar
- sudo ln -s "$PWD/composer.phar" /usr/local/b... | ```yaml
language: node_js
node_js:
- "0.10"
before_install:
- echo 'yes' | sudo add-apt-repository ppa:ondrej/php5
- sudo apt-get update -qq
- sudo apt-get install -qq php5-cli php5-curl php5-mongo php5-memcached php5-imagick
- php -v
- curl https://getcomposer.org/installer | php
- chmod +x composer.phar... |
fdd4db9e-a2b1-476f-bdc8-324b597a5ca3 | {
"language": "YAML"
} | ```yaml
language: java
env:
- TEST_DIR=scheduler TOOL=lein
- TEST_DIR=jobclient TOOL=mvn
script: cd $TEST_DIR && $TOOL test
```
Add mesos to test VM | ```yaml
language: java
before_install:
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
- echo "deb http://repos.mesosphere.io/ubuntu/ precise varnish-3.0" | sudo tee /etc/apt/sources.list.d/mesosphere.list
- sudo apt-get update -qq
- sudo apt-get install mesos
sudo: required
env:
global:
... |
b43cbd80-5c90-416d-8a83-3968cbe58b10 | {
"language": "YAML"
} | ```yaml
rvm:
- 1.8.7
- 1.9.2
gemfile:
- test/gemfiles/Gemfile.rails-2.0.x
- test/gemfiles/Gemfile.rails-2.1.x
- test/gemfiles/Gemfile.rails-2.2.x
- test/gemfiles/Gemfile.rails-2.3.x
- test/gemfiles/Gemfile.rails-xss-2.3.x
- test/gemfiles/Gemfile.rails-3.0.x
- test/gemfiles/Gemfile.rails-3.1.x
- test... | ```yaml
rvm:
- 1.8.7
- 1.9.3
gemfile:
- test/gemfiles/Gemfile.rails-2.0.x
- test/gemfiles/Gemfile.rails-2.1.x
- test/gemfiles/Gemfile.rails-2.2.x
- test/gemfiles/Gemfile.rails-2.3.x
- test/gemfiles/Gemfile.rails-xss-2.3.x
- test/gemfiles/Gemfile.rails-3.0.x
- test/gemfiles/Gemfile.rails-3.1.x
- test... |
f4f0371f-6cdc-4786-b3f8-3261561ddd08 | {
"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 ... | ```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 ... |
8604eb2c-3289-40fa-b204-572483265efc | {
"language": "YAML"
} | ```yaml
sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquak... | ```yaml
sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquak... |
fa88af39-a080-407e-8418-54aed8d85dc4 | {
"language": "YAML"
} | ```yaml
language: c
install:
- wget https://raw.githubusercontent.com/csdms/wmt-exe/master/scripts/install
- python ./install $(pwd)
```
Print compiler versions and paths. | ```yaml
language: c
install:
- gcc -dumpversion
- g++ -dumpversion
- which gcc
- which g++
- which ruby
- which java
- wget https://raw.githubusercontent.com/csdms/wmt-exe/master/scripts/install
- python ./install $(pwd)
``` |
d1756cb5-7a54-4b86-9ea1-66993487038b | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1
script: bundle exec rake test
before_script:
- psql -c 'create database active_median_test;' -U postgres
notifications:
email:
on_success: never
on_failure: change
gemfile:
- Gemfile
- gemfiles/activerecord41.gemfile
- gemfiles/activerecord40.gemfile
- gemfiles/ac... | ```yaml
language: ruby
rvm:
- 2.1
script: bundle exec rake test
before_script:
- psql -c 'create database active_median_test;' -U postgres
notifications:
email:
on_success: never
on_failure: change
gemfile:
- Gemfile
- gemfiles/activerecord41.gemfile
- gemfiles/activerecord40.gemfile
- gemfiles/ac... |
fb59cc3e-8e2c-4e51-9163-3b0d21512bcc | {
"language": "YAML"
} | ```yaml
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
matrix:
allow_failures:
- rvm: rbx-19mode
```
Test against latest Rubies on Travis | ```yaml
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- jruby-19mode
matrix:
allow_failures:
- rvm: rbx-19mode
``` |
639c5509-d063-4207-845a-cbe1e5dfdaea | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
rvm:
- 2.4.5
- 2.5.3
```
Update and expand testing in Travis | ```yaml
language: ruby
cache: bundler
dist: xenial
branches:
only:
- master
matrix:
include:
- rvm: 2.4.5
- rvm: 2.5.3
- rvm: 2.6.0
allow_failures:
- rvm: ruby-head
``` |
4c083068-bc3c-4784-9de1-909a40687a3c | {
"language": "YAML"
} | ```yaml
rvm:
- ruby-head
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- rbx
- rbx-2.0.0pre
before_script:
- mongo mongoid_test --eval 'db.addUser("mongoid", "test");'
```
Add back jruby to builds | ```yaml
rvm:
- ruby-head
- 1.9.3
- 1.9.2
- 1.8.7
- jruby
- ree
- rbx
- rbx-2.0.0pre
before_script:
- mongo mongoid_test --eval 'db.addUser("mongoid", "test");'
``` |
f7b7cd33-f7bf-4d0b-add6-d227cb1818a2 | {
"language": "YAML"
} | ```yaml
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0.pre"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- env: "RAILS_VERSION=ma... | ```yaml
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- env: "RAILS_VERSION=master... |
f37b2a13-92e4-48ec-ba33-f9ec178145c1 | {
"language": "YAML"
} | ```yaml
osx_image: xcode11.2
language: swift
before_install:
- gem install cocoapods
- carthage bootstrap --platform ios
install:
- gem install xcpretty
script:
- rake build:ios DESTINATION='OS=11.1,name=iPhone X'
- rake build:ios DESTINATION='platform=iOS Simulator,name=iPhone X Plus'
- pod lib lint --q... | ```yaml
osx_image: xcode11.2
language: swift
before_install:
- gem install cocoapods
- carthage bootstrap --platform ios
install:
- gem install xcpretty
script:
- rake build:ios DESTINATION='OS=11.1,name=iPhone X'
- rake build:ios DESTINATION='platform=iOS Simulator,name=iPhone 8'
- pod lib lint --quick
... |
322f4420-2603-4ec6-ae50-d060d995cfab | {
"language": "YAML"
} | ```yaml
dist: trusty
language: java
jdk:
- oraclejdk8
- openjdk8
cache:
directories:
- $HOME/.m2
install: true
script:
- mvn verify -B
- bash system-test/start.sh
after_success:
- mvn coveralls:report -B
```
Install Plugin API before starting the build process. | ```yaml
dist: trusty
language: java
jdk:
- oraclejdk8
- openjdk8
cache:
directories:
- $HOME/.m2
install: true
before_script:
- bash install-plugin-api.sh
script:
- mvn verify -B
- bash system-test/start.sh
after_success:
- mvn coveralls:report -B
``` |
f27a4bf0-9ff1-4f66-8cd5-15871b03a568 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
env:
- DB=postgresql
script:
- bundle exec rake spec
before_script:
- bundle exec rake db:create RAILS_ENV=test
- bundle exec rake db:migrate
- bundle exec rake db:test:prepare
```
Add Slack notification to Travis CI | ```yaml
language: ruby
rvm:
- 2.0.0
env:
- DB=postgresql
script:
- bundle exec rake spec
before_script:
- bundle exec rake db:create RAILS_ENV=test
- bundle exec rake db:migrate
- bundle exec rake db:test:prepare
notifications:
slack: overflow-your-boat:oMfXWVwpffE8k6i6vVMbFf7R
``` |
7943e8ec-abc5-426a-936c-8ce940b18bd2 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
install:
- composer install
script:
- bin/drupalvm init
- bin/phpunit tests
```
Revert "Add more PHP versions" | ```yaml
language: php
php:
- 5.6
- 7.0
- 7.1
install:
- composer install
script:
- bin/drupalvm init
- bin/phpunit tests
``` |
145df9a1-00f6-4fba-b27b-871011f651e8 | {
"language": "YAML"
} | ```yaml
services:
- docker
install: ./build.sh
script: true
after_success: ./push_to_docker_registry.sh
```
Change things around a little bit | ```yaml
language: python
python:
- 2.7
services:
- docker
install:
- true
script:
- ./build.sh
after_success:
- ./push_to_docker_registry.sh
``` |
6c2776b5-e07a-46aa-ab17-25932b67633b | {
"language": "YAML"
} | ```yaml
language: python
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
env:
- BOARD=leonardo
- BOARD=micro
- BOARD=megaatmega2560
- BOARD=due
- BOARD=uno
- BOARD=yun
script:
- for e in $(find examples -name \*.ino); do
platformio ci --board=$BOARD --lib=. $e;
done
```
Make it... | ```yaml
language: python
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
env:
- BOARD=leonardo
- BOARD=micro
- BOARD=megaatmega2560
- BOARD=due
- BOARD=uno
- BOARD=yun
script:
- for e in examples/*; do
platformio ci --board=$BOARD --lib=. $e/*;
done
``` |
d5f459b5-5318-403a-8a3e-c6a84fe58708 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.1.2
- 2.2.3
- 2.3.0
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.1.4"
- "RAILS_VERSION=4.2.5"
- "RAILS_VERSION=master"
after_script:
- rubocop app lib
matrix:
allow_failures:
- env: "RAILS_VERSION=master"
```
Update Travis to force fail with Rubocop... | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.1.2
- 2.2.3
- 2.3.0
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.1.4"
- "RAILS_VERSION=4.2.5"
- "RAILS_VERSION=master"
script:
- bundle exec rake test
- rubocop app lib --fail-level R
matrix:
allow_failures:
- env: "RAILS_VERSION=master"
``` |
284317d5-0402-414b-b970-fc9d47de91a9 | {
"language": "YAML"
} | ```yaml
language: python
matrix:
include:
- python: 2.7
- python: 3.5
install:
- "sudo pip install -r requirements.txt"
script:
- "python -m flake8 ."
- "sudo sh ./.travis/run_test.sh"
```
Use user mode instead since we're in virtualenv | ```yaml
language: python
matrix:
include:
- python: 2.7
- python: 3.5
install:
- "pip install -r requirements.txt"
script:
- "python -m flake8 ."
- "sh ./.travis/run_test.sh"
``` |
502137e3-84d4-4248-81b4-469cc2657add | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: required
node_js:
- 7.9
script: npm run-script ci
cache:
directories:
- node_modules
notifications:
flowdock: e3dc17bc8a2c1b3412abe3e5747f8291
env:
- MONGODB_VERSION=3.2.x MONGODB_TOPOLOGY=standalone
- MONGODB_VERSION=3.4.x MONGODB_TOPOLOGY=standalone
```
Use Node 8.9.3 on T... | ```yaml
language: node_js
sudo: required
node_js:
- 8.9.3
script: npm run-script ci
cache:
directories:
- node_modules
notifications:
flowdock: e3dc17bc8a2c1b3412abe3e5747f8291
env:
- MONGODB_VERSION=3.2.x MONGODB_TOPOLOGY=standalone
- MONGODB_VERSION=3.4.x MONGODB_TOPOLOGY=standalone
``` |
da838034-0448-4f0b-9b82-9bbdee7d36c7 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk8
sudo: false
```
Update Travis Java to fix errors | ```yaml
language: java
script: ./gradlew build -s
jdk:
- oraclejdk8
# Caching for Gradle files, prevents hitting Maven too much.
before_cache:
- find /home/travis/.gradle/ . -name '*.lock' -print -exec rm -f {} \;
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/cach... |
d26e6868-5e46-411c-a31b-ab0d3d8aa2f9 | {
"language": "YAML"
} | ```yaml
---
# travis-ci config for pipdeptree
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
addons:
apt:
packages:
- graphviz
before_install:
- pip install -U pip>=8.0.2
- make test-env
install: pip install .
script: py.test -v
after_script: make clean clean-env
s... | ```yaml
---
# travis-ci config for pipdeptree
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
addons:
apt:
packages:
- graphviz
before_install:
- pip install -U pip>=8.0.2
- pip install graphviz
- make test-env
install: pip install .
script: py.test -v
after_scrip... |
eeaccb2e-3392-42da-bf63-13e3ea4dc43e | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
script:
- tox -e coverage
after_success:
- coveralls```
Fix Travis CI configuration file | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
- "pypy"
install:
- pip install tox
script:
- tox -e coverage
after_success:
- coveralls``` |
e48a7f25-70c4-4a51-9c6d-020f2fafbc7a | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- gem --version
- gem update --system
# jekyll stuff
- gem install jekyll
# compass & compass extensions
- gem install compass
# grunt-webfont requirements
- sudo apt-get install fontforge ttfautohint
# grunt
- npm install -g grunt-cli
... | ```yaml
language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- gem --version
- gem update --system
# jekyll stuff
- gem install jekyll
# compass & compass extensions
- gem install compass
# grunt-webfont requirements
- sudo apt-get install fontforge
# grunt
- npm install -g grunt-cli
- npm inst... |
b6c41a35-b6db-4ad5-9940-bf9c117905a2 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
- rbx
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- sudo apt-get install libpcre3 libpcre3-dev
notifications:
irc: "irc.freenode.org#adhearsion"
```
Fix ruby-1.9.3 json dependency issue by using latest stable v... | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
- rbx
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- sudo apt-get install libpcre3 libpcre3-dev
- gem install bundler
notifications:
irc: "irc.freenode.org#adhearsion"
``` |
87e7539a-c783-49ee-83cd-bd2fec9187e8 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo add-apt-repository ppa:kivy-team/kivy-daily
- sudo apt-get update
- sudo apt-get install python-kivy
- sudo apt-get install python3-kivy
install:
- pip install cython==0.25
- python setup.py install
- pip insta... | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo add-apt-repository -y ppa:kivy-team/kivy-daily
- sudo apt-get update
- sudo apt-get install python-kivy
- sudo apt-get install python3-kivy
install:
- pip install cython==0.25
- python setup.py install
- pip in... |
375481da-4fc2-40b0-9819-dcfa242f7e13 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
cache:
directories:
- $HOME/.cache/pip
before_install:
- git clone https://github.com/stollgr/wiremock-scenario-templating.git
- wiremock-scenario-templating/travis_scripts/install_wiremock.sh
install... | ```yaml
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
cache:
directories:
- $HOME/.cache/pip
before_install:
- git clone https://github.com/stollgr/wiremock-scenario-templating.git
- wiremock-scenario-templating/travis_scripts/install_wiremock.sh
install... |
874d0401-9493-4074-b2e3-15943875e338 | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
cache: pip
env:
global:
PYTHONUNBUFFERED=yes
matrix:
fast_finish: true
include:
- python: 2.7
env: TOXENV=2.7
- python: pypy
env: TOXENV=pypy
- python: 3.4
env: TOXENV=3.4
- python: 3.5
env: TOXENV=3.5
- python: 3.6
env: ... | ```yaml
language: python
sudo: false
cache: pip
env:
global:
PYTHONUNBUFFERED=yes
matrix:
fast_finish: true
include:
- python: 2.7
env: TOXENV=2.7
- python: pypy
env: TOXENV=pypy
- python: 3.4
env: TOXENV=3.4
- python: 3.5
env: TOXENV=3.5
- python: 3.6
env: ... |
d1b623ef-f314-4075-8259-4d583131c597 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1.0
before_install: gem install bundler -v 1.10.6
```
Update Ruby version to 2.3.0 | ```yaml
language: ruby
rvm:
- 2.3.0
before_install: gem install bundler
``` |
d4328f29-dade-4f4c-b810-7a86d1eb2096 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- ruby-head
- jruby-18mode
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
script:
- bundle exec rake test_cov
```
Allo... | ```yaml
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- ruby-head
- jruby-18mode
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
script:
- bundle exec rake tes... |
427c0b10-29df-4412-b358-5ffc953f6caf | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- 'node'
env:
global:
- secure: NyTJRyVlZACJzp4rU6O9abqm2Z+P3x6mhFne8B9iqflt+9pesdT9Jz/a5oi8+hjA1n+tRADkrXjGz8GPgFCI1YP6+RgOQjGYnf3F/7/efbHjGrtTQPKq6Fu07upN9B/yXEsFML05abloiJvPLeHvDS9xY9qsgkDzvikdjrUleIs=
- secure: di2dAKlPdcQ2yNo7YMIdqJbfk4KhYknh6g0pGF0i53t... | ```yaml
language: node_js
sudo: false
node_js:
- '4'
env:
global:
- secure: NyTJRyVlZACJzp4rU6O9abqm2Z+P3x6mhFne8B9iqflt+9pesdT9Jz/a5oi8+hjA1n+tRADkrXjGz8GPgFCI1YP6+RgOQjGYnf3F/7/efbHjGrtTQPKq6Fu07upN9B/yXEsFML05abloiJvPLeHvDS9xY9qsgkDzvikdjrUleIs=
- secure: di2dAKlPdcQ2yNo7YMIdqJbfk4KhYknh6g0pGF0i53tszF... |
01f0f698-80ee-4b38-b551-e37e6a71e4f4 | {
"language": "YAML"
} | ```yaml
language: c
sudo: required
dist: trusty
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq qemu-system-x86
script: make && sudo tests/setup-tests.sh && sudo tests/run-tests.sh
```
Switch to container-based Trusty infrastructure | ```yaml
language: c
sudo: false
dist: trusty
addons:
apt:
packages:
- qemu-system-x86
script: make && tests/run-tests.sh
``` |
e320d481-aa27-4846-a07e-97598291c3e0 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk8
before_script: "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./make_credentials.py"
script:
- find $HOME/.m2 -name "_remote.repositories" | xargs rm
- find $HOME/.m2 -name "resolver-status.properties" | xargs rm -f
# If building master, Publish to Sonatype
after_success:... | ```yaml
language: java
jdk:
- oraclejdk8
before_script: |
if ([ $TRAVIS_PULL_REQUEST = "false" ] && [ $TRAVIS_BRANCH = "master" ]); then
./make_credentials.py
fi
script:
- find $HOME/.m2 -name "_remote.repositories" | xargs rm
- find $HOME/.m2 -name "resolver-status.properties" | xargs rm -f
# If bui... |
50fd96ae-3995-4217-8883-c565963973d4 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.6
- 1.7
- tip
install: go get github.com/onsi/ginkgo/ginkgo
script:
- ginkgo -v calendar/
- go build cmd/check/main.go
```
Add in and out scripts to Travis build | ```yaml
language: go
go:
- 1.6
- 1.7
- tip
install: go get github.com/onsi/ginkgo/ginkgo
script:
- ginkgo -v calendar/
- go build cmd/check/main.go
- go build cmd/in/main.go
- go build cmd/out/main.go
``` |
763ea3ed-a7ef-4d2d-842f-d1d812732bb6 | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
os:
- linux
- osx
cache:
bundler: true
rvm:
- 2.3.1
- 2.4.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
after_success:
- bundle exec codeclimate-test-reporter
notifications:
email: false
```
Remove macOS from test matrix | ```yaml
sudo: false
language: ruby
os:
- linux
cache:
bundler: true
rvm:
- 2.3.1
- 2.4.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
after_success:
- bundle exec codeclimate-test-reporter
notifications:
email: false
``` |
c3abc6f0-0b9f-40c4-b14f-7021bdc3ac73 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
before_install:
- npm install -g gulp bower
- bower install -f
```
Update Travis for Yarn and Node 6 | ```yaml
language: node_js
node_js:
- "6"
before_install:
- npm install -g yarn
install:
- yarn
script: yarn test
``` |
bf6b4ac3-203b-433a-a585-68365507bed6 | {
"language": "YAML"
} | ```yaml
language: bash
services: docker
env:
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=9.6 VARIANT=slim
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=10.9 VARIANT=slim
- POSTGIS_MAJOR=2.5 POSTGIS_VERSION=2.5.4+dfsg-1.pgdg90+1 PG_MAJOR=11.4 VARIANT=slim
script:
- .... | ```yaml
language: bash
services: docker
env:
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=9.6 VARIANT=slim
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=10.9 VARIANT=slim
- POSTGIS_MAJOR=2.5 POSTGIS_VERSION=2.5.4+dfsg-1.pgdg90+1 PG_MAJOR=11.4 VARIANT=slim
- POSTGIS_MA... |
59c13307-71a7-4618-8fb0-ba4c6a723576 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
install:
- go get github.com/bwmarrin/discordgo
- go get -v .
- go get -v golang.org/x/lint/golint
script:
- diff <(gofmt -d .) <(echo -n)
- go vet -x ./...
- golint -set_exit_status ./...
- go test -v -race ./...
`... | ```yaml
language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
env:
- GO111MODULE=on
install:
- go get github.com/bwmarrin/discordgo
- go get -v .
- go get -v golang.org/x/lint/golint
script:
- diff <(gofmt -d .) <(echo -n)
- go vet -x ./...
- golint -set_exit_stat... |
1e8175c2-721e-4193-9e7e-3ebff873ae7f | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
cache: bundler
rvm:
- 2.2.5
- 2.3.1
```
Update Ruby versions and add 2.4.0. | ```yaml
language: ruby
sudo: false
cache: bundler
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
``` |
7e2b017f-0690-40ab-b6b2-2289137f12b9 | {
"language": "YAML"
} | ```yaml
# Build status located at https://travis-ci.org/citra-emu/citra-web
language: node_js
node_js: node
cache: yarn
script:
- echo '========== Installing gulp & dependencies =========='
- sudo apt-get install graphicsmagick
- wget -O hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.31.1/hugo_0... | ```yaml
# Build status located at https://travis-ci.org/citra-emu/citra-web
language: node_js
node_js: node
cache: yarn
script:
- echo '========== Installing gulp & dependencies =========='
- sudo apt-get install graphicsmagick
- wget -O hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.31.1/hugo_0... |
e28743cf-a930-48d3-9ab0-925872de92a5 | {
"language": "YAML"
} | ```yaml
sudo: true # required until https://github.com/travis-ci/travis-ci/issues/9069 gets resolved
dist: xenial
language: python
python:
- "2.7"
- "3.7"
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.7
- os: osx
osx_image: xcode7.3
language: objective-c
... | ```yaml
sudo: true # required until https://github.com/travis-ci/travis-ci/issues/9069 gets resolved
dist: xenial
language: python
python:
- "2.7"
- "3.6"
- "3.7"
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.6
- os: linux
python: 3.7
- os: osx
osx_image:... |
7eedf2dc-2ada-43ae-87ad-314792f5a6b5 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml... | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpun... |
55a91380-484e-4207-8e47-b9a60719fa32 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.7.x
- 1.x
install:
- go get github.com/golang/lint/golint
script:
- go test -v ./...
- go test -cover -race ./...
- go vet ./...
- test -z "$(find . -name \*.go | xargs gofmt -d -s)"
- golint ./...
sudo: false
```
Update p... | ```yaml
language: go
go:
- 1.7.x
- 1.x
install:
- go get golang.org/x/lint/golint
script:
- go test -v ./...
- go test -cover -race ./...
- go vet ./...
- test -z "$(find . -name \*.go | xargs gofmt -d -s)"
- golint ./...
sudo: false
``` |
37c18020-69d9-4ba0-b55f-e9b86e432da9 | {
"language": "YAML"
} | ```yaml
# ----------------------------------------------------------------
# Configuration file for http://travis-ci.org/#!/chdorner/epubinfo
# ----------------------------------------------------------------
language: ruby
script: "bundle exec rake spec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mo... | ```yaml
# ----------------------------------------------------------------
# Configuration file for http://travis-ci.org/#!/chdorner/epubinfo
# ----------------------------------------------------------------
language: ruby
script: "bundle exec rake spec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mo... |
626d2e1a-a5ac-47da-8b58-8e1e50e6086b | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3.0
- jruby
before_install:
- gem install bundler```
Configure Redis for Travis CI | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3.0
- jruby
before_install:
- gem install bundler
services:
- redis-server
``` |
c36e3b8b-3324-4355-8ecc-38c1b34ef9f7 | {
"language": "YAML"
} | ```yaml
---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
- "6"
- "stable"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
directories:
- $HOME/.npm
env:
- EMBER_TRY_SCENARIO... | ```yaml
---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
- "6"
- "stable"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
directories:
- $HOME/.npm
env:
- EMBER_TRY_SCENARIO... |
777b0711-e946-444f-a41c-d391d7995b36 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1
- 2.2
sudo: false
cache: bundler
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- bundle exec rake test_app
script:
- bundle exec rspec spec
```
Test against ruby 2.2.4 and 2.3.0 | ```yaml
language: ruby
rvm:
- 2.2.4
- 2.3.0
sudo: false
cache: bundler
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- bundle exec rake test_app
script:
- bundle exec rspec spec
``` |
60066d05-0905-4b35-b21d-c7d1d8b4d91e | {
"language": "YAML"
} | ```yaml
language: python
services:
- postgresql memcached
env:
- DATABASE_URL='postgres://postgres:@localhost:5432/Robotix' DJANGO_SECRET_KEY='tT\xd7\xb06\xf7\x9b\xff\x0fZL\xca\xca\x11\xefM\xacr\xfb\xdf\xca\x9b' DJANGO_SETTINGS_MODULE='config.settings.production'
python:
- '3.4'
- '2.7'
- 'nightl... | ```yaml
language: python
services:
- postgresql memcached
env:
- DATABASE_URL='postgres://postgres:@localhost:5432/robotix' DJANGO_SECRET_KEY='tT\xd7\xb06\xf7\x9b\xff\x0fZL\xca\xca\x11\xefM\xacr\xfb\xdf\xca\x9b' DJANGO_SETTINGS_MODULE='config.settings.production'
python:
- '3.4'
- '2.7'
- 'nightl... |
ed8f344b-6269-4c86-9a84-f01089d978a3 | {
"language": "YAML"
} | ```yaml
script: 'ci/travis.rb'
rvm:
- 1.9.3
env:
- "GEM=railties"
- "GEM=ap,am,amo,ares,as"
- "GEM=ar:mysql"
- "GEM=ar:mysql2"
- "GEM=ar:sqlite3"
- "GEM=ar:postgresql"
notifications:
email: false
irc:
on_success: change
on_failure: always
channels:
- "irc.freenode.org#rails-contrib"
... | ```yaml
script: 'ci/travis.rb'
before_install:
- gem install bundler
rvm:
- 1.9.3
env:
- "GEM=railties"
- "GEM=ap,am,amo,ares,as"
- "GEM=ar:mysql"
- "GEM=ar:mysql2"
- "GEM=ar:sqlite3"
- "GEM=ar:postgresql"
notifications:
email: false
irc:
on_success: change
on_failure: always
channels:
... |
b124d4af-c6c3-470f-8fdd-27a1748a3b39 | {
"language": "YAML"
} | ```yaml
language: ruby
cache: bundler
rvm:
- ruby-head
- 2.2.1
- 2.1.5
- 2.0.0
- 1.9.3
- jruby-head
- jruby-9
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f851cdb7... | ```yaml
language: ruby
cache: bundler
rvm:
- ruby-head
- 2.2.2
- 2.1.6
- 2.0.0
- 1.9.3
- jruby-head
- jruby-9
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f851cdb7... |
302f6026-ca97-46a8-9b26-4bb6d155d0fe | {
"language": "YAML"
} | ```yaml
sudo: false
before_install:
- export PATH=${PATH}:./vendor/bundle
install:
- rvm use 2.2.3 --install --fuzzy
- gem update --system
- gem install sass
- gem install jekyll -v 3.2.1
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt
- $HOME/.coursier
before_cache:
# Cleanup the cach... | ```yaml
sudo: false
before_install:
- export PATH=${PATH}:./vendor/bundle
install:
- rvm use 2.2.3 --install --fuzzy
- gem update --system
- gem install sass
- gem install jekyll -v 3.2.1
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt
- $HOME/.coursier
before_cache:
# Cleanup the cach... |
74cee47e-9360-4a9b-a1b1-9eeb548f2466 | {
"language": "YAML"
} | ```yaml
sudo: required
language: python
python:
- "2.7"
install:
- make prepare
- make develop # NOTE: no extras yet. Let's keep this simple
script:
- make test_offline
```
Add aws and google extras to avoid collection import errors | ```yaml
sudo: required
language: python
python:
- "2.7"
install:
- make prepare
- make develop extras=[aws,google] # adding extras to avoid import errors
script:
- make test_offline
``` |
f9878a15-410c-4639-b08d-ef348fcbddde | {
"language": "YAML"
} | ```yaml
---
# Travis file for php-fpm role
dist: trusty
sudo: required
services:
- docker
language: 'python'
python:
- '2.7'
env:
global:
- ANSIBLE_ROLES_PATH="${TRAVIS_BUILD_DIR%/*/*}"
matrix:
- TOXENV='py27-ansible20'
- TOXENV='py27-ansible21'
- TOXENV='py27-ansible-devel'
before_insta... | ```yaml
---
# Travis file for php-fpm role
dist: trusty
sudo: required
services:
- docker
language: 'python'
python:
- '2.7'
env:
global:
- ANSIBLE_ROLES_PATH="${TRAVIS_BUILD_DIR%/*/*}"
matrix:
- TOXENV='py27-ansible20'
- TOXENV='py27-ansible21'
- TOXENV='py27-ansible22'
- TOXENV='py2... |
3f2ca567-1abf-45db-8ec9-23990bc938af | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.4
env:
- "PATH=/home/travis/gopath/bin:$PATH"
script:
- go get -u github.com/golang/lint/golint
- golint ./...
- test `gofmt -l . | wc -l` = 0
- make test
install:
- go get -t -d -v ./..
```
Add Go 1.5 and tip tests, but allow failures. | ```yaml
language: go
go:
- 1.4
- 1.5
- tip
env:
- "PATH=/home/travis/gopath/bin:$PATH"
script:
- go get -u github.com/golang/lint/golint
- golint ./...
- test `gofmt -l . | wc -l` = 0
- make test
install:
- go get -v -t ./.. && make updatedeps
matrix:
allow_failures:
- go: 1.5
... |
6b0d0d98-7567-486d-868c-8af85198e22b | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
before_install:
- pip install -U setuptools
- sudo add-apt-repository -y ppa:pyside/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq libusb-dev python-pyside libffi-dev libjpeg8-dev libudev-dev libusb-1.0-0-dev python-dbus liblua5.2-dev libusb-dev
-... | ```yaml
language: python
python:
- "2.7"
before_install:
- pip install -U setuptools
- sudo add-apt-repository -y ppa:pyside/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq libusb-dev python-pyside libffi-dev libjpeg8-dev libudev-dev libusb-1.0-0-dev python-dbus liblua5.2-dev libusb-dev
-... |
da4eb366-01f6-4543-a59a-da2a6d1ee1fa | {
"language": "YAML"
} | ```yaml
notifications:
email: false
language: java
jdk: openjdk7
cache:
directories:
- $HOME/.m2
script:
- mvn -DTRAVIS_JOB_ID=$TRAVIS_JOB_ID test jacoco:report coveralls:report
- mvn clean compile assembly:single
- ./src/test/scripts/console/output/verify_3_0_0.sh
- ./src/test/scripts/console/output/verify_1... | ```yaml
notifications:
email: false
language: java
jdk: openjdk7
cache:
directories:
- $HOME/.m2
script:
# - mvn -DTRAVIS_JOB_ID=$TRAVIS_JOB_ID test jacoco:report coveralls:report
- mvn test
- mvn clean compile assembly:single
- ./src/test/scripts/console/output/verify_3_0_0.sh
- ./src/test/scripts/console/ou... |
69e37304-a6da-4f73-aa09-61f9ad97a16e | {
"language": "YAML"
} | ```yaml
language: java
install: ant -Dwork.dir=$HOME/work -Dbuild.dir=$TRAVIS_BUILD_DIR install-ci-deps
script: ant -Dwork.dir=$HOME/work -Dbuild.dir=$TRAVIS_BUILD_DIR test-ci-railo```
Add platform support to Travis file | ```yaml
language: java
env:
global:
- FILE_SOURCE=remote
matrix:
- PLATFORM=railo41
- PLATFORM=acf10
install: ant -Dwork.dir=$HOME/work -Dbuild.dir=$TRAVIS_BUILD_DIR -Dplatform=$PLATFORM install-ci-deps
script: ant -Dwork.dir=$HOME/work -Dbuild.dir=$TRAVIS_BUILD_DIR -Dplatform=$PLATFORM test-ci-railo``` |
9ca75c9e-7dbc-4a8a-a085-4ed4b3d64fae | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: ruby
addons:
chrome: stable
env:
- DB=postgres
- DB=mysql
gemfile:
- gemfiles/spree_3_2.gemfile
- gemfiles/spree_3_5.gemfile
- gemfiles/spree_3_7.gemfile
- gemfiles/spree_master.gemfile
script:
- bundle exec rake test_app
- bundle exec rake spec
rvm:... | ```yaml
sudo: required
dist: trusty
language: ruby
addons:
chrome: stable
postgresql: 9.4
env:
- DB=postgres
- DB=mysql
gemfile:
- gemfiles/spree_3_2.gemfile
- gemfiles/spree_3_5.gemfile
- gemfiles/spree_3_7.gemfile
- gemfiles/spree_master.gemfile
script:
- bundle exec rake test_app
- bundle ex... |
de42b292-f429-4d2a-a195-65f753441b95 | {
"language": "YAML"
} | ```yaml
before_install:
- sudo apt-get -y update
- sudo apt-get -y install libicu-dev libmozjs-dev pkg-config help2man libcurl4-openssl-dev
- sudo apt-get -y install libtool automake autoconf autoconf-archive
- sudo apt-get -y install texlive-latex-base texlive-latex-recommended
- sudo apt-get -y install... | ```yaml
before_install:
- sudo apt-get -y update
- sudo apt-get -y install libicu-dev libmozjs-dev pkg-config help2man libcurl4-openssl-dev
- sudo apt-get -y install libtool automake autoconf autoconf-archive
- sudo apt-get -y install texlive-latex-base texlive-latex-recommended
- sudo apt-get -y install... |
9a89c143-51d3-4bf6-b3a9-9c9a9bd4a0af | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
env:
- DJANGO="Django==1.4.15"
- DJANGO="Django==1.5.10"
- DJANGO="Django==1.6.7"
- DJANGO="Django==1.7"
matrix:
exclude:
# Python 3.4 is not supported in Django before 1.7.
- env: DJANGO="Django==1.4.15"
- env: DJANGO="Django==1.... | ```yaml
language: python
python:
- 2.7
- 3.3
- 3.4
env:
- DJANGO="Django==1.4.15"
- DJANGO="Django==1.5.10"
- DJANGO="Django==1.6.7"
- DJANGO="Django==1.7"
matrix:
exclude:
# Python 3.4 is not supported in Django before 1.7.
- env: DJANGO="Django==1.4.15"
- env: DJANGO="Django==1.5.10"
... |
4ac2b9c0-cc83-408f-8eea-ca6bd4f6f568 | {
"language": "YAML"
} | ```yaml
language: android
jdk: oraclejdk7
env:
matrix:
- ANDROID_TARGET=android-15 ANDROID_ABI=armeabi-v7a
android:
components:
- build-tools-21.1.1
- android-21
- extra-android-m2repository
before_script:
# Create and start emulator
- echo no | android create avd --force -n test -t $ANDROID_... | ```yaml
language: android
jdk: oraclejdk8
env:
matrix:
- ANDROID_TARGET=android-15 ANDROID_ABI=armeabi-v7a
android:
components:
- build-tools-21.1.1
- android-21
- extra-android-m2repository
before_script:
# Create and start emulator
- echo no | android create avd --force -n test -t $ANDROID... |
9660ed3c-9a06-469e-b9ba-76b579e70ca2 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
dist: xenial
sudo: true
- "pypy"
services: mongodb
install:
- "pip install -r requirements.txt"
script: "python test.py"
```
Use 3.7 version as separated matrix. | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
services: mongodb
install:
- "pip install -r requirements.txt"
script: "python test.py"
``` |
7ee6b884-d2af-47ae-812c-a3be228b2971 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.3
- 2.4
- ruby-head
- jruby
- rbx
before_install: gem install bundler -v 1.10.6
script: bundle exec rspec
```
Tweak Rubinius and JRuby in build matrix | ```yaml
language: ruby
rvm:
- 2.3
- 2.4
- ruby-head
- jruby-9.1.13.0
- rbx-3
before_install: gem install bundler
script: bundle exec rspec
``` |
6675bd8b-8136-4015-801f-8c159b32a7ad | {
"language": "YAML"
} | ```yaml
language: c
compiler:
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgmp3-dev libsigsegv-dev openssl libssl-dev libncurses5-dev git make exuberant-ctags
before_script:
- echo "export URBIT_HOME=`pwd`/urb" >>~/.bash_profile
- make
script: "make"
no... | ```yaml
language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgmp3-dev libsigsegv-dev openssl libssl-dev libncurses5-dev git make exuberant-ctags
before_script:
- echo "export URBIT_HOME=`pwd`/urb" >>~/.bash_profile
- make
script: "ma... |
cd77bfe9-ab13-43ee-b2aa-df97ce89b5ce | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
before_install:
- sudo apt-get update -qq
- sudo apt-get install xfonts-75dpi
install: pip install flask && pip install celery
before_script:
- "wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.2.1/wkhtmlto... | ```yaml
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
before_install:
- sudo apt-get update -qq
- sudo apt-get install xfonts-75dpi
install: pip install flask && pip install celery
before_script:
- "wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.2.1/wkhtmltox-0.12.2.... |
6c706810-b2a8-4159-9c2c-e8c00de53a0f | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode7.2
script: xcrun xcodebuild -project GlueKit.xcodeproj -scheme GlueKit-OSX test
after_success: bash <(curl -s https://codecov.io/bash)
```
Use Xcode 7.3 beta image on Travis | ```yaml
language: objective-c
osx_image: xcode7.3
script: xcrun xcodebuild -project GlueKit.xcodeproj -scheme GlueKit-OSX test
after_success: bash <(curl -s https://codecov.io/bash)
``` |
0c4a8db4-8698-402c-b6f2-6ac623d49559 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.5"
- "3.6"
notifications:
email: false
install:
- pip3 install -r requirements.txt
- pip3 install coveralls
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
script:
- python3 -m pytest tests --cov meetup_facebook_bot
... | ```yaml
language: python
python:
- "3.5"
- "3.6"
notifications:
email: false
install:
- pip3 install -r requirements.txt
- pip3 install coveralls
- pip3 install prospector
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
script:
- python3 -m pytest test... |
cfa6ba98-426d-416e-b79b-e37d55414fe7 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.5"
- "3.7"
dist: xenial
install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes --set changeps1 n... | ```yaml
language: python
python:
- "3.6"
- "3.8"
dist: xenial
install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes --set changeps1 n... |
0437323d-7714-4844-8849-c0d27323a001 | {
"language": "YAML"
} | ```yaml
language: c
cache: apt
sudo: false
os:
- linux
- osx
compiler:
- gcc
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install sdl2 sdl2_image hackrf; fi
script:
- make
addons:
apt:
packages:
- libsdl2-dev
... | ```yaml
language: c
cache: apt
sudo: false
dist: trusty
os:
- linux
- osx
compiler:
- gcc
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install sdl2 sdl2_image hackrf; fi
script:
- make
addons:
apt:
packages:
... |
eedc7396-3a33-444e-be02-5dec5f6e5803 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
- 2.1.2
- ruby-head
- jruby-20mode # JRuby in 1.9 mode
- rbx
matrix:
allow_failures:
- rvm: ruby-head
cache: bundler
before_install:
- sudo apt-get install haskell-platform
- cabal update
- cabal install -fexecutable texmath
```
Add .cabal/bin to $PATH on Travi... | ```yaml
language: ruby
rvm:
- 2.0.0
- 2.1.2
- ruby-head
- jruby-20mode # JRuby in 1.9 mode
- rbx
matrix:
allow_failures:
- rvm: ruby-head
cache: bundler
before_install:
- sudo apt-get install haskell-platform
- cabal update
- cabal install -fexecutable texmath
- export PATH=$PATH:$HOME/.cabal/bi... |
38b321cb-32c0-4999-b9e5-3f7d4a417dc7 | {
"language": "YAML"
} | ```yaml
language: ruby
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
install: "bundle install --jobs 8"
rvm:
- 1.9.3
- 2.2.2
- 2.4.1
# - ruby-head
gemfile:
- gemfiles/rails42.gemfile
- gemfiles/rails50.gemfile
- gemfiles/rails51.gemfile
matrix:
include:
- rvm... | ```yaml
language: ruby
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
install: "bundle install --jobs 8"
rvm:
- 1.9.3
- 2.2.2
- 2.4.1
- ruby-head
gemfile:
- gemfiles/rails42.gemfile
- gemfiles/rails50.gemfile
- gemfiles/rails51.gemfile
matrix:
exclude:
- rvm: ... |
724e1e7a-e547-4828-9910-667dc2e617e7 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install --dev
script: phpunit
```
Test newer versions of PHP first, including PHP7 | ```yaml
language: php
php:
- 7.0
- 5.6
- 5.5
- hhvm
- 5.4
- 5.3
before_script:
- composer install --dev
script: phpunit
``` |
c7c17f1f-3bc4-4365-8b93-734edc5219ff | {
"language": "YAML"
} | ```yaml
language: bash
services:
- docker
env:
matrix:
- DRUPAL_VER=8 PHP_VER=7.1
- DRUPAL_VER=8 PHP_VER=7.0
- DRUPAL_VER=7 PHP_VER=7.1
- DRUPAL_VER=7 PHP_VER=7.0
- DRUPAL_VER=7 PHP_VER=5.6
- DRUPAL_VER=6 PHP_VER=5.6
- DRUPAL_VER=6 PHP_VER=5.3
script:
- set -e
- make test
- cp d... | ```yaml
language: bash
services:
- docker
env:
matrix:
- DRUPAL_VER=8 PHP_VER=7.1
- DRUPAL_VER=8 PHP_VER=7.0
- DRUPAL_VER=7 PHP_VER=7.1
- DRUPAL_VER=7 PHP_VER=7.0
- DRUPAL_VER=7 PHP_VER=5.6
- DRUPAL_VER=6 PHP_VER=5.6
- DRUPAL_VER=6 PHP_VER=5.3 GITHUB_RELEASE=1
script:
- set -e
- m... |
08368764-0ea5-4ae8-88d3-8f56363c2efd | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
```
Build with Node.js 16 on Travis CI. | ```yaml
sudo: false
language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
``` |
49fe66aa-bfe0-41be-85ab-affd09175a10 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: required
dist: xenial
node_js: stable
addons:
sauce_connect: true
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
services:
- xvfb
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
before_script:
- npm insta... | ```yaml
language: node_js
sudo: required
dist: xenial
node_js: stable
addons:
sauce_connect: true
firefox: latest
chrome: stable
services:
- xvfb
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
before_script:
- npm install
script:
- if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then npm... |
0c188d8a-9c13-4f0d-998b-f44aeb19e5de | {
"language": "YAML"
} | ```yaml
gemfile:
- Gemfile-rails.3.2.x
- Gemfile-rails.4.0.x
- Gemfile-rails.4.1.x
- Gemfile-rails.5.x
- Gemfile
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3.0
- jruby
matrix:
exclude:
- rvm: 2.2
gemfile: Gemfile-rails.3.2.x
```
Exclude Gemfiles incompatible with ruby version | ```yaml
gemfile:
- Gemfile-rails.3.2.x
- Gemfile-rails.4.0.x
- Gemfile-rails.4.1.x
- Gemfile-rails.5.x
- Gemfile
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3.0
- jruby
matrix:
exclude:
- rvm: 2.2
gemfile: Gemfile-rails.3.2.x
- rvm: 1.9.3
gemfile: Gemfile-rails.5.x
gemfile: Ge... |
2aa3910e-9486-4f7e-b69d-faaa3ad7e65b | {
"language": "YAML"
} | ```yaml
language: cpp
compiler:
- gcc
# - clang
# Install dependencies
# install: make get-deps
#install: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get -qq update && sudo apt-get -qq install g++-4.8 && sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 && export CXX=g++ ... | ```yaml
language: cpp
compiler:
- gcc
# - clang
# Install dependencies
# install: make get-deps
#install: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get -qq update && sudo apt-get -qq install g++-4.8 && sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 && export CXX=g++ ... |
f49d214e-fd25-4c54-91ea-feea70bdc791 | {
"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'
``` |
88e058f6-f739-4dd5-bbfd-a7424d38717d | {
"language": "YAML"
} | ```yaml
language: python
services: mongodb
python:
- "3.4"
- "3.3"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: "pip install -r requirements.txt"
# command to run tests, e.g. python setup.py test
script: nosetests
```
Add NLTK downloader command to Travis build sc... | ```yaml
language: python
services: mongodb
python:
- "3.4"
- "3.3"
before_install:
- sudo python -m nltk.downloader -d /usr/share/nltk_data all
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: "pip install -r requirements.txt"
# command to run tests, e.g. python setup.... |
41a251dc-1700-40b4-b742-61e47e2aac2b | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
- ruby-head
env:
- COVERALLS=true
matrix:
allow_failures:
- rvm: ruby-head
script: bundle exec rspec spec && bundle exec cucumber
```
Use default rake task for merged coveralls. | ```yaml
language: ruby
rvm:
- 2.0.0
- ruby-head
env:
- COVERALLS=true
matrix:
allow_failures:
- rvm: ruby-head
script: bundle exec rake
``` |
3c51eebb-f725-4f4f-9b32-8ca1960c2e7a | {
"language": "YAML"
} | ```yaml
language: perl
install: true
jobs:
include:
- script: make test
- stage: maintain
before_install:
- git config user.name TravisCI
- git config user.email https://travis-ci.org/$TRAVIS_REPO_SLUG/builds/... | ```yaml
language: perl
install: true
jobs:
include:
- script: make test
- stage: maintain
before_install:
- git config user.name TravisCI
- git config user.email https://travis-ci.org/$TRAVIS_REPO_SLUG/builds/... |
7d280461-7e9b-40dd-a916-b8142d6ccbc2 | {
"language": "YAML"
} | ```yaml
language: node_js
services:
- mongodb
node_js:
- "4.0"
```
Change node 4.0.0 to stable version | ```yaml
language: node_js
services:
- mongodb
node_js:
- "stable"
``` |
40d8b81b-727d-4f2a-9061-c92378f11f72 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
services:
- couchdb
env:
- SPIKA_COUCH_DB_URL=http://localhost:5984/spikatest SPIKA_ADMIN_EMAIL=admin@example.com
before_script:
- composer install --dev
- curl -X PUT $SPIKA_COUCH_DB_URL
- curl -X PUT $SPIKA_COUCH_DB_URL/_design/app --data-binary @install/design... | ```yaml
language: php
php:
- 5.4
- 5.5
services:
- couchdb
env:
- SPIKA_COUCH_DB_URL=http://localhost:5984/spikatest SPIKA_ADMIN_EMAIL=admin@example.com
before_script:
- composer install --dev
- curl -X PUT $SPIKA_COUCH_DB_URL
- curl -X PUT $SPIKA_COUCH_DB_URL/_design/app --data-binary @install/design... |
98effc29-bf44-49ee-ac37-7d6bf7cd6fae | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
addons:
chrome: stable
language: node_js
node_js:
- "8"
before_install:
- wget -q https://packages.microsoft.com/config/ubuntu/14.04/packages-microsoft-prod.deb
- sudo dpkg -i packages-microsoft-prod.deb
- sudo apt-get -y install apt-transport-https
- sudo apt-get update
- sudo a... | ```yaml
sudo: required
dist: trusty
addons:
chrome: stable
language: node_js
node_js:
- "8"
before_install:
- wget -q https://packages.microsoft.com/config/ubuntu/14.04/packages-microsoft-prod.deb
- sudo dpkg -i packages-microsoft-prod.deb
- sudo apt-get update
- sudo apt-get -y install dotnet-sdk-2.1
env:
globa... |
7b99b0ec-a90d-41e9-a51f-95347143197a | {
"language": "YAML"
} | ```yaml
language: groovy
jdk:
- oraclejdk8
- openjdk11
- openjdk12
# No need to run tasks for dependencies
install:
- true
after_success: ./gradlew cobertura coveralls
```
Use OpenJDK8 and 'skip' for bypassing the install phase | ```yaml
language: groovy
jdk:
- openjdk8
- openjdk11
- openjdk12
# No need to run tasks for dependencies
install: skip
after_success: ./gradlew cobertura coveralls
``` |
29bd5510-36ce-4a36-9e2f-03a263a9d9ed | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk8
env:
- BABELNET=3.7
before_install:
- wget "http://babelnet.org/data/$BABELNET/BabelNet-API-$BABELNET.zip" && unzip BabelNet-API-$BABELNET.zip
- mvn install:install-file -Dfile=BabelNet-API-$BABELNET/lib/jltutils-2.2.jar -DgroupId=it.uniroma1.lcl.jlt -DartifactId=jltutils -Dvers... | ```yaml
language: java
jdk:
- oraclejdk8
env:
- BABELNET=3.7
before_install:
- wget "http://babelnet.org/data/$BABELNET/BabelNet-API-$BABELNET.zip" && unzip BabelNet-API-$BABELNET.zip
- mvn install:install-file -Dfile=BabelNet-API-$BABELNET/lib/jltutils-2.2.jar -DgroupId=it.uniroma1.lcl.jlt -DartifactId=jltutils -Dvers... |
a15bdc4e-de8c-42a1-b3f7-3d220150e35e | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.9
- 0.8
- 0.6
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
```
Reduce build noise, add 0.11, drop 0.6. | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
before_install: "npm install -g bob --loglevel error"
script: "bob build"
``` |
eeed4cab-d5d6-45b6-b5a0-8b2f3f0430fc | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.3
- release
# - tip
script:
- go test -v ./...
```
Build with Go version 1.3 only | ```yaml
language: go
go:
- 1.3
# - release
# - tip
script:
- go test -v ./...
``` |
597b3115-72a3-4fdc-8bb7-862b29a53e35 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- python setup.py install
- pip install coveralls
- pip install pep8
script:
- pep8 pyramda
- python setup.py nosetests
after_success:
- coveralls
```
Increase Pep8 max line length to 100 | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- python setup.py install
- pip install coveralls
- pip install pep8
script:
- pep8 --max-line-length 100 pyramda
- python setup.py nosetests
after_success:
- coveralls
``` |
a3e29ecb-236f-4851-9b87-bd16ecc20708 | {
"language": "YAML"
} | ```yaml
os:
- linux
language: rust
rust:
- stable
- beta
- nightly
allow_failures:
- rust: nightly
after_success: 'curl https://raw.githubusercontent.com/iron-bot/build-doc/master/build-doc.sh
| sh '
```
Remove requirement that we only run on Linux. | ```yaml
language: rust
rust:
- stable
- beta
- nightly
allow_failures:
- rust: nightly
after_success: 'curl https://raw.githubusercontent.com/iron-bot/build-doc/master/build-doc.sh
| sh '
``` |
f8d9c300-3a26-4432-924b-e323577cc82c | {
"language": "YAML"
} | ```yaml
language: objective-c
git:
depth: 2
node_js:
- "0.10"
install:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- cd ..
- npm install -g purplecabbage/cordova-paramedic
- npm install -g cordova
- npm install -g ios-sim
script:
- cordova-paramedic --platform ios --plugi... | ```yaml
language: objective-c
git:
depth: 2
node_js:
- "0.10"
install:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- cd ..
- npm install -g cordova-paramedic
- npm install -g cordova
- npm install -g ios-sim
script:
- cordova-paramedic --platform ios --plugin ${TRAVIS_BUI... |
3ca5f51d-da01-4cdc-b213-f9dddc6abf82 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
before_script:
- composer install --no-interaction --dev
- wget https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.10.zip -nv
- unzip -q google_appengine_1.9.10.zip
- patch -p0 < tests/patches/sdk-expose-remote-api-settings.patch
script:
... | ```yaml
language: php
php:
- 5.4
before_script:
- composer install --no-interaction --dev
- wget https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.10.zip -nv
- unzip -q google_appengine_1.9.10.zip
- patch -p0 < tests/patches/sdk-expose-remote-api-settings.patch
script:
... |
a82b76a0-cb11-417d-a6c4-f538213b0519 | {
"language": "YAML"
} | ```yaml
sudo: false
language: go
go:
- 1.8.3
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
install:
- make tools
before_script:
- make clean
script:
- make test
after_success:
- m... | ```yaml
sudo: false
language: go
go:
- 1.9
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
install:
- make tools
before_script:
- make clean
script:
- make test
after_success:
- mak... |
8e5506e5-689a-4b9e-a082-e0b54e0c6242 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
```
Support Ruby 2.1.1 and 2.1.2 | ```yaml
language: ruby
rvm:
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
``` |
b2f7685e-c7d2-44a5-b957-81054f1f015d | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode # JRuby in 1.9 mode
- rbx```
Allow failures in Rubinius (Travis CI problem) | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx
matrix:
allow_failures:
- rvm: rbx``` |
df3df5b5-e83c-40a2-a996-74bd530e7a43 | {
"language": "YAML"
} | ```yaml
language: ruby
cache: bundler
sudo: required
dist: trusty
rvm:
- 2.4.1
services: mongodb
addons:
apt:
sources:
- ubuntu-sdk-team
packages:
- libqt5webkit5-dev
- qtdeclarative5-dev
script: xvfb-run bundle exec rake
env:
global:
- METRICS_API_USERNAME="username"
- METRICS_A... | ```yaml
language: ruby
cache: bundler
sudo: required
dist: trusty
rvm:
- 2.4.1
services: mongodb
addons:
apt:
sources:
- ubuntu-sdk-team
packages:
- libqt5webkit5-dev
- qtdeclarative5-dev
- cmake
script: xvfb-run bundle exec rake
env:
global:
- METRICS_API_USERNAME="username"
... |
0a2958d2-a9cc-446c-9559-978d23b96104 | {
"language": "YAML"
} | ```yaml
language: groovy
jdk:
- openjdk6
- openjdk7
- oraclejdk8
script:
- ./gradlew clean build check uploadArchives
after_success:
- ./gradlew cobertura coveralls
```
Remove jdk6 from Travis CI builds. | ```yaml
language: groovy
jdk:
- openjdk7
- oraclejdk8
script:
- ./gradlew clean build check uploadArchives
after_success:
- ./gradlew cobertura coveralls
``` |
5adcc6f9-abf3-4b8a-865f-ca4d18ab758e | {
"language": "YAML"
} | ```yaml
sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
jobs:
include:
- stage: deploy
jdk: oraclejdk8
script:
- "./scripts/travis_deploy.sh"
script: make default
env:
global:
- secure: agxFqlp+zYAqPnNlc43+hYUIuMkruj2yyawD3K+5ObhgXQWHeFbGL2SWrir0sx/ZBEwa8FnSXz80Gox1wEmUKvjzlP... | ```yaml
sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
jobs:
include:
- stage: deploy
jdk: oraclejdk8
script:
- "./scripts/mvn_deploy.sh"
script: make default
env:
global:
- secure: agxFqlp+zYAqPnNlc43+hYUIuMkruj2yyawD3K+5ObhgXQWHeFbGL2SWrir0sx/ZBEwa8FnSXz80Gox1wEmUKvjzlPiIk... |
07f0790f-b54c-47ff-89a6-254ff26d9db2 | {
"language": "YAML"
} | ```yaml
language: go
sudo: false
go:
- 1.5.x
- 1.9.x
deploy:
provider: releases
api_key:
secure: 'kewugKeaEgDvNMaapSbhMTgWXO1tje4sbyF8D77lbceOviTfKZkDKuuwVSwTU1NTKuHk5DnC00Rrfy7d4HP1xPT94P4AnI6oEjUvQvi43U8Ub/YGbrwTAZpqUyZJWwmkHaEikeFRIRuyTnHztM8/IQaEQyOvxtu2NOFnMVCpagQ='
file:
- bin/certstrap-${TRAVIS_TAG}-... | ```yaml
language: go
sudo: false
go:
- 1.5.x
- 1.9.x
deploy:
provider: releases
api_key:
secure: 'kewugKeaEgDvNMaapSbhMTgWXO1tje4sbyF8D77lbceOviTfKZkDKuuwVSwTU1NTKuHk5DnC00Rrfy7d4HP1xPT94P4AnI6oEjUvQvi43U8Ub/YGbrwTAZpqUyZJWwmkHaEikeFRIRuyTnHztM8/IQaEQyOvxtu2NOFnMVCpagQ='
file:
- bin/certstrap-${TRAVIS_TAG}-... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.