doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
1f8fd820-6145-4ffa-8ec2-89a4ae7e1f68 | {
"language": "YAML"
} | ```yaml
machine:
java:
version: oraclejdk8
environment:
SBT_VERSION: 0.13.9
dependencies:
# Cache the resolution-cache and build streams to speed things up
cache_directories:
- "~/.sbt"
- "target/resolution-cache"
- "target/streams"
- "project/target/resolution-cache"
- "project/tar... | ```yaml
machine:
java:
version: oraclejdk8
environment:
SBT_VERSION: 0.13.9
dependencies:
# Cache the resolution-cache and build streams to speed things up
cache_directories:
- "~/.sbt"
- "target/resolution-cache"
- "target/streams"
- "project/target/resolution-cache"
- "project/tar... |
90f9d491-c29f-4bb4-bc67-56df11779f3c | {
"language": "YAML"
} | ```yaml
# clone cdk too
checkout:
post:
- git submodule sync
- git submodule update --init --recursive
# fix gradlew not begin marked as executable
dependencies:
override:
- echo y | android update sdk --no-ui --all --filter tools,platform-tools,android-25,build-tools-25
- echo y | android update s... | ```yaml
# clone cdk too
checkout:
post:
- git submodule sync
- git submodule update --init --recursive
# fix gradlew not begin marked as executable
dependencies:
override:
- echo yy | android update sdk --no-ui --all --filter tools,platform-tools,android-25,build-tools-25
- echo y | android update ... |
2d3018c3-995d-4fb8-9dc4-34c43b38fc25 | {
"language": "YAML"
} | ```yaml
machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
pre:
- pip install awscli
- wget https://dl.bintray.com/mitchellh/terraform/terraform_0.6.4_linux_amd64.zip
- unzip terraform_0.6.4_linux_amd64.zip
override:
- if [[ -e ~/docker/image.tar ]]; then docker... | ```yaml
machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
pre:
- cd .terraform && wget https://dl.bintray.com/mitchellh/terraform/terraform_0.6.4_linux_amd64.zip && unzip terraform_0.6.4_linux_amd64.zip
override:
- if [[ -e ~/docker/image.tar ]]; then docker load -i ~/... |
b3a70987-f3a9-4eb2-a89d-37d2c398d09d | {
"language": "YAML"
} | ```yaml
machine:
node:
version: 8
checkout:
post:
- git submodule update --init
dependencies:
cache_directories:
- "node_modules"
override:
- npm install
deployment:
s3:
branch: /^(master|version-.*)/
commands:
- npm run deploy
```
Remove CircleCI deployment section, handled ... | ```yaml
machine:
node:
version: 8
checkout:
post:
- git submodule update --init
dependencies:
cache_directories:
- "node_modules"
override:
- npm install
``` |
cd5c0725-116f-4353-aa04-3443ac9f56f0 | {
"language": "YAML"
} | ```yaml
machine:
services:
- docker
environment:
ci: "true"
dependencies:
override:
- docker info
- go version
test:
override:
- docker build -t quay.io/opsee/gozer:latest .
deployment:
quay:
branch: master
owner: opsee
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER... | ```yaml
machine:
services:
- docker
environment:
ci: "true"
dependencies:
override:
- docker info
- go version
test:
override:
- docker build -t quay.io/opsee/gozer:$(CIRCLE_SHA1) .
deployment:
quay:
branch: master
owner: opsee
commands:
- docker login -e $DOCKER_EMAIL -u... |
c5b34410-6ca2-479b-a1c0-50e0841595ad | {
"language": "YAML"
} | ```yaml
machine:
python:
version: 3.5.1
dependencies:
post:
- sudo apt-get install llvm-3.8 && export LLVM_CONFIG=$(which llvm-config-3.8)
test:
override:
- export PYTHONPATH=$(pwd); py.test -rap -v --tb=long --cov=pymask --junit-xml=$CIRCLE_TEST_REPORTS/tests.xml
```
Move LLVM_CONFIG export to test ... | ```yaml
machine:
python:
version: 3.5.1
dependencies:
post:
- sudo apt-get install llvm-3.8
test:
override:
- export PYTHONPATH=$(pwd); export LLVM_CONFIG=$(which llvm-config-3.8); py.test -rap -v --tb=long --cov=pymask --junit-xml=$CIRCLE_TEST_REPORTS/tests.xml
``` |
eb6ff190-3fa9-42b7-b24d-4cde56dbf48b | {
"language": "YAML"
} | ```yaml
machine:
environment:
PORT: 8080
dependencies:
post:
- npm install saucelabs # allow sending Watai results to SauceLabs
- wget https://saucelabs.com/downloads/sc-latest-linux.tar.gz
- tar -xzf sc-latest-linux.tar.gz
test:
pre:
- mkdir $HOME/.watai && cp test/config-ci.js $HOME/.watai... | ```yaml
machine:
environment:
PORT: 8080
# SAUCE_USERNAME is defined in the CircleCI web UI
# SAUCE_ACCESS_KEY is defined in the CircleCI web UI
dependencies:
post:
- npm install saucelabs # allow sending Watai results to SauceLabs
- wget https://saucelabs.com/downloads/sc-latest-linux.tar.gz
... |
6482bbb6-250f-4481-ada1-99dadb9d8f23 | {
"language": "YAML"
} | ```yaml
passphrase:
# Available options and default values
# https://github.com/brendanashworth/generate-password#available-options
# If you change the option values, erase the comment out.
# length: 12
# numbers: true
# symbols: true
# uppercase: false
# exclude:
# strict: true
# options of pwgen ... | ```yaml
passphrase:
# Available options and default values
# https://github.com/brendanashworth/generate-password#available-options
# If you change the option values, erase the comment out.
# length: 12
# numbers: true
# symbols: true
# uppercase: false
# exclude:
# strict: true
# options of pwgen ... |
15130030-9143-493d-ad2d-6978e7853621 | {
"language": "YAML"
} | ```yaml
welcome: >
Hey <%= info[:name] %>! Noticed you just filled out the intake form – welcome to Hack Club! My name is Hackbot, I'm our Slack's friendly robotic helper.
I currently only know how to do a few things. Firstly, I can get GIFs for you with `hackbot gif <search-term-here`. Secondly, once you've g... | ```yaml
welcome: |
Hey <%= info[:name] %>! Noticed you just filled out the intake form – welcome to Hack Club! My name is Hackbot, I'm our Slack's friendly robotic helper.
I can respond to specific commands you give me. For example, if you type `hackbot gif pugs`, I'll send you a gif of some adorable dogs. If ... |
6cf19a2a-4ac8-4b23-86d1-c11d16e4337b | {
"language": "YAML"
} | ```yaml
name: img_registration
channels:
- defaults
- alex-marty
- conda-forge
- anaconda
- pytorch
dependencies:
- ca-certificates=2021.4.13=haa95532_1
- certifi=2020.12.5=py39haa95532_0
- openssl=1.1.1k=h2bbff1b_0
- pip=21.1.2=pyhd8ed1ab_0
- python=3.9.5=h6244533_3
- setuptools=52.0.0=py39haa955... | ```yaml
name: img_registration
channels:
- defaults
- conda-forge
- anaconda
dependencies:
- pip:
- astropy==4.2.1
- cycler==0.10.0
- fits-tools==0.2
- image-registration==0.2.4
- kiwisolver==1.3.1
- matplotlib==3.4.2
- numpy==1.20.3
- pillow==8.2.0
- pyerfa==2.0.0
- pypa... |
c01779c6-0db2-4475-b4ec-e3309cc34218 | {
"language": "YAML"
} | ```yaml
accounts:
- name: alice
coins: ["20000token", "200000000stake"]
- name: bob
coins: ["10000token", "100000000stake"]
validator:
name: alice
staked: "100000000stake"
client:
openapi:
path: "docs/static/openapi.yml"
vuex:
path: "vue/src/store"
faucet:
name: bob
coins: ["5token", "10... | ```yaml
accounts:
- name: alice
coins: ["20000token", "200000000stake"]
- name: bob
coins: ["10000token", "100000000stake"]
validator:
name: alice
staked: "100000000stake"
client:
# openapi:
# path: "docs/static/openapi.yml"
vuex:
path: "vue/src/store"
faucet:
name: bob
coins: ["5token",... |
ebef2f48-3885-46b9-8585-d0a7395eff7a | {
"language": "YAML"
} | ```yaml
name: Bug report
description: Something is not working correctly.
labels: "S: needs triage, type: bug"
body:
- type: textarea
attributes:
label: Description
description: >-
A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
... | ```yaml
name: Bug report
description: Something is not working correctly.
labels: "S: needs triage, type: bug"
body:
- type: textarea
attributes:
label: Description
description: >-
A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
... |
96606007-d96c-4141-81a1-8a475cfb3b44 | {
"language": "YAML"
} | ```yaml
name: Update Documentation
on:
push:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Setup ffmpeg
uses: FedericoCarboni/setup-ffmpeg@v1
id: setup-ffmpeg
... | ```yaml
name: Update Documentation
on:
push:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Setup ffmpeg
uses: FedericoCarboni/setup-ffmpeg@v1
id: setup-ffmpeg
... |
c92edc81-e1a6-4b14-9939-285498ccaf71 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/hiratara/hs-string-random#readme
changelog-type: ''
hash: c733d7676d47a34a964734432f1d8707d49b46cb990a0df6f3abf595c8e530b0
test-bench-deps:
base: -any
quickcheck-string-random: -any
text: -any
tasty-quickcheck: -any
tasty: -any
QuickCheck: -any
maintainer: hiratara@cpan.... | ```yaml
homepage: https://github.com/hiratara/hs-string-random#readme
changelog-type: ''
hash: 5bd441bba820f424d56367e570b29b72eb62f69517f3d17d35fc28caf208dc6e
test-bench-deps:
base: -any
quickcheck-string-random: -any
text: -any
tasty-quickcheck: -any
tasty: -any
QuickCheck: -any
maintainer: hiratara@cpan.... |
0cd06936-f9dd-4903-bef5-d921ab17c64a | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: 170e366908be6d028cf1fc8f46117f51ebffacbda0d4855ce1f63bda6f3167af
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Attoparsec parsers of time
changelog: ''
basic-deps:
bytestring: ==0.10.*
bas... | ```yaml
homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: 7254ee92d32a5e9c95ac1f570b0a2cea34003428b01b2f50f9b96dd71339355d
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Attoparsec parsers of time
changelog: ''
basic-deps:
bytestring: ==0.10.*
bas... |
6ed893f6-68af-4aa3-b6f6-725b58da76e8 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/andrewthad/primitive-sort
changelog-type: ''
hash: 5cc048fa166660192bc0d0bce6d37ca9f0409f8ee1bffa3706d4967345e5a4d1
test-bench-deps:
tasty-smallcheck: -any
base: -any
doctest: ! '>=0.10'
primitive-sort: -any
HUnit: -any
smallcheck: -any
gauge: -any
containers: -any
... | ```yaml
homepage: https://github.com/andrewthad/primitive-sort
changelog-type: ''
hash: 631f605f66d310e5677f7e32c87a0ea4b2d60efc2073db6b769b18b69212f798
test-bench-deps:
tasty-smallcheck: -any
base: -any
doctest: ! '>=0.10'
primitive-sort: -any
HUnit: -any
smallcheck: -any
gauge: -any
containers: -any
... |
c704138a-9218-46b6-a202-6b281e287b18 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: markdown
hash: 2fe840548236fb59da0e8f19523d431a4f992f0b89295700566e42fd290a232f
test-bench-deps: {}
maintainer: Gregor Kleen <aethoago@141.li>
synopsis: Typeclass-based interface to cryptoids
changelog: ! '# 0.0.0
First published version
'
basic-deps:
exceptions: ! '>=0.8.3 &... | ```yaml
homepage: ''
changelog-type: markdown
hash: 8c9e1f32842b36e2c8534f2de39d1499479fdcbb917431e425fcc6eee57539b6
test-bench-deps: {}
maintainer: Gregor Kleen <aethoago@141.li>
synopsis: Typeclass-based interface to cryptoids
changelog: ! '# 0.0.0
First published version
'
basic-deps:
exceptions: ! '>=0.8.3 &... |
72b16bc0-8094-41a2-85a1-646d19a6f7f2 | {
"language": "YAML"
} | ```yaml
homepage: http://github.com/morphismtech/free-categories
changelog-type: markdown
hash: 0d03ce481c507622d4381213b6cf7e9be06930ca5b8287ac12514ec416cc6235
test-bench-deps: {}
maintainer: eitan@morphism.tech
synopsis: free categories
changelog: |
# Revision history for free-categories
## 0.2.0.0 -- 2020-02-12... | ```yaml
homepage: http://github.com/morphismtech/free-categories
changelog-type: markdown
hash: ce634c030c1dd9a40d101166876ae1d80fb6e4cb02c1755e2cefbcd74a161a69
test-bench-deps: {}
maintainer: eitan@morphism.tech
synopsis: free categories
changelog: |
# Revision history for free-categories
## 0.2.0.0 -- 2020-02-12... |
c2a878ac-55af-48f9-bf43-b569e4bcdd07 | {
"language": "YAML"
} | ```yaml
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: purescript-contrib/setup-purescript@main
with:
purescript: "0.14.0-rc3"
- uses: actions/setup-node@v... | ```yaml
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: purescript-contrib/setup-purescript@main
with:
purescript: "0.14.0-rc5"
- uses: actions/setup-node@v... |
e6d25aa2-b5c0-42de-a1bf-788a85a10123 | {
"language": "YAML"
} | ```yaml
name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8' ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
jav... | ```yaml
name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17' ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:... |
67e00424-46cc-4581-b1b4-45f41bd119ab | {
"language": "YAML"
} | ```yaml
name: CI
on: [push]
jobs:
build:
name: Python ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-18.04
- macOS-10.14
- windows-2019
python:
- '2.7'
- '3.7'
steps:
- use... | ```yaml
name: CI
on: [push]
jobs:
build:
name: Python ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-18.04
- macOS-10.14
- windows-2019
python:
- '2.7'
- '3.7'
arch:
... |
9e7c4d06-1b30-45b2-ad55-8bb59635cf18 | {
"language": "YAML"
} | ```yaml
name: ci
on:
push:
branches:
- main
paths-ignore:
- README.md
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Check code style
uses: reviewdog/action-shfmt@v1.0.2
- name: Run static analysi... | ```yaml
name: ci
on:
push:
branches:
- main
paths-ignore:
- README.md
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Check code style
uses: reviewdog/action-shfmt@v1.0.2
- name: Run static analysi... |
e0b3c34a-8618-484b-8e62-593eefbf8d66 | {
"language": "YAML"
} | ```yaml
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@master
- name: Use Node.js
uses: actions/se... | ```yaml
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14, 18]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@master
- name: Use Node.js
uses: action... |
79966a3d-bf63-4544-9dd3-0154ad53290b | {
"language": "YAML"
} | ```yaml
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.7
rails_version:
- 5.2.6
- 6.0.4.1
- 6.1.4.1
steps:
- uses: actions/checkout@v2
... | ```yaml
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.7
rails_version:
- 5.2.7
- 6.0.4.7
- 6.1.5
steps:
- uses: actions/checkout@v2
... |
67c01324-010d-42bc-93ed-cd9e18d2b366 | {
"language": "YAML"
} | ```yaml
name: CI
on:
- push
jobs:
cruby:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
ruby:
- 3.0.0-preview2
- 2.7
- 2.6
- 2.5
- 2.4... | ```yaml
name: CI
on:
- push
jobs:
cruby:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
ruby:
- 3.0.0-preview2
- 2.7
- 2.6
- 2.5
- 2.4... |
1a90df34-0884-44d0-a98f-c105c7c2c756 | {
"language": "YAML"
} | ```yaml
name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- ... | ```yaml
name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- ... |
266f626e-1a16-4e59-8dbc-ad57af97c8cd | {
"language": "YAML"
} | ```yaml
homepage: https://hub.darcs.net/vmchale/hspec-dirstream
changelog-type: ''
hash: 921fce3249bddc8e4d19db26085b8fa0643991bf8bcc8a26c0f74823af86227e
test-bench-deps:
base: -any
hspec: -any
hspec-dirstream: -any
maintainer: vamchale@gmail.com
synopsis: Helper functions to simplify adding integration tests.
ch... | ```yaml
homepage: https://hub.darcs.net/vmchale/hspec-dirstream
changelog-type: ''
hash: 29054de96f8d69cf2bf15b0103097564856d49c693e3f032624d2f57d72e551c
test-bench-deps:
base: -any
hspec: -any
hspec-dirstream: -any
maintainer: vamchale@gmail.com
synopsis: Helper functions to simplify adding integration tests.
ch... |
a7e9e277-680c-4364-8737-a0578582704a | {
"language": "YAML"
} | ```yaml
repo_owner: __your_github_username__
repo_name: __your_github_repository__
disabled: false
use_show_action: false
label_name: Post Comments
label_color: 666666
github_application:
client_id: __your_github_app_client_id__
code_authenticator: __your_github_code_authenticator_url__
callback_url: http://__you... | ```yaml
repo_owner: pixated
repo_name: pixated.github.io
disabled: false
use_show_action: false
label_name: Post Comments
label_color: 666666
github_application:
client_id: 38892d2131cecce2c043
code_authenticator: https://pixated-comments.herokuapp.com/authenticate/
callback_url: http://pixated.github.io/public/h... |
ecf5160d-373c-4df5-805c-22f1a93cabc1 | {
"language": "YAML"
} | ```yaml
- name: "Алексей Корнев"
photo: "static/images/orgs/ako.jpg"
link: "https://vk.com/id138723690"
- name: "Александр Кириллов"
photo: "static/images/orgs/aki.jpg"
link: "https://vk.com/saratovsource"
- name: "Евгений Хорохорин"
photo: "static/images/orgs/eho.jpg"
link: "https://vk.com/ehorohorin"
- na... | ```yaml
- name: "Алексей Корнев"
photo: "static/images/orgs/ako.jpg"
link: "https://vk.com/id138723690"
- name: "Александр Кириллов"
photo: "static/images/orgs/aki.jpg"
link: "https://vk.com/saratovsource"
- name: "Евгений Хорохорин"
photo: "static/images/orgs/eho.jpg"
link: "https://vk.com/ehorohorin"
- na... |
44105df8-5d97-49f1-b35f-de1b3bcd656c | {
"language": "YAML"
} | ```yaml
entity_type: Lab
schema_version: 1
id: minimal-gsuite-lab-example
default_locale: en
title:
locales:
en: Minialist Gsuite Domain Example
description:
locales:
en: Just the basics, nothing more.
length: 20
level: easy-peasy
instruction:
type: html
locales:
en: './instruction.html'
envir... | ```yaml
entity_type: Lab
schema_version: 1
id: minimal-gsuite-lab-example
default_locale: en
title:
locales:
en: Minimalist Gsuite Domain Example
description:
locales:
en: Just the basics, nothing more.
length: 20
level: introductory
instruction:
type: html
locales:
en: 'instruction.html'
envi... |
b43264d7-65e6-40ec-9272-c0f0ef0dc0b9 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/cartazio/securehash-sha3
changelog-type: markdown
hash: e6dd451ad6922d3c4374270ca16f757a3f4c471d110a2199a90caa43a07ee63f
test-bench-deps: {}
maintainer: carter at wellposed dot com
synopsis: simple static linked SHA3 using private symbols and the ref impl
changelog: ! '# Revision hi... | ```yaml
homepage: https://github.com/cartazio/securehash-sha3
changelog-type: markdown
hash: c601bc0dcb9dd3202f3300dbb2519d6617381444dd206ef52a82249e8a19acb8
test-bench-deps: {}
maintainer: carter at wellposed dot com
synopsis: simple static linked SHA3 using private symbols and the ref impl
changelog: |
# Revision h... |
9c4cbb29-aa69-4b3c-85cc-4cf05f0a850f | {
"language": "YAML"
} | ```yaml
{{cfg.omnitruck.rack_env}}:
virtual_path: '{{cfg.omnitruck.virtual_path}}'
metadata_dir: '{{pkg.svc_var_path}}{{cfg.omnitruck.metadata_dir}}'
```
Remove one more reference to metadata_dir | ```yaml
{{cfg.omnitruck.rack_env}}:
virtual_path: '{{cfg.omnitruck.virtual_path}}'
``` |
510646cc-6854-4fc2-a032-4aabf68e0ceb | {
"language": "YAML"
} | ```yaml
test_task:
container:
matrix:
image: ruby:2.5
image: ruby:2.4
bundle_cache:
folder: /usr/local/bundle
fingerprint_script:
- echo $CIRRUS_TASK_NAME:$CIRRUS_OS
- ruby -v
- cat Gemfile
- cat *.gemspec
populate_script: bundle update
environment:
CODECOV_... | ```yaml
bundle_cache: &bundle_cache
bundle_cache:
folder: /usr/local/bundle
fingerprint_script:
- echo $CIRRUS_TASK_NAME:$CIRRUS_OS
- ruby -v
- cat Gemfile
- cat *.gemspec
populate_script: bundle update
test_task:
container:
matrix:
image: ruby:2.5
image: ruby:2... |
7b6e42d3-7ec2-4173-b917-7d8db065215f | {
"language": "YAML"
} | ```yaml
# ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode10
before_install:
- gem install xcpretty
script:
set -o pipefail &&
travis_retry
xcodebuild test
-workspace CotEditor.xcworkspace
-scheme CotEditor
CODE_SIGN_IDENTITY=""
CODE_SIGNING_REQUIRED=N... | ```yaml
# ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode10.1
before_install:
- gem install xcpretty
script:
set -o pipefail &&
travis_retry
xcodebuild test
-workspace CotEditor.xcworkspace
-scheme CotEditor
CODE_SIGN_IDENTITY=""
CODE_SIGNING_REQUIRED... |
3991e284-f4dd-44b7-9b17-892199ee5b8d | {
"language": "YAML"
} | ```yaml
sudo: required
addons:
apt_packages:
libmagic-dev
services:
- docker
script:
- export PR=https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo `curl -s $PR | jq -r .head.ref`; fi)
-... | ```yaml
sudo: required
language: generic
services:
- docker
script:
- export PR=https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo `curl -s $PR | jq -r .head.ref`; fi)
- echo "TRAVIS_BRANCH=$T... |
e818e0ff-e0f1-4b89-9687-1aafa94f36a8 | {
"language": "YAML"
} | ```yaml
language: ruby
jdk:
- oraclejdk8
sudo: false
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
```
Remove unrecognized sudo configuration section | ```yaml
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
``` |
41925c69-f580-4c69-993a-beabc64204cf | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '0.10'
env:
global:
- secure: Xy1Jl53Yovuj9tProdpmMmPThyA+iBxQYhceOqb+1O9FX8+6/9ohrgN+yF7VqvwX5cLPiico7/NCbS/BG/yufuxK8nddc4hPOYR1zZlwz0j1QBGDRsRG8PK3DlOtxyNHJTiDkNGjrDeeuM31uxL2qErl9IpEbE+8qi1bswRpKi8=
- secure: A39ISE6SAsqOCGJNV2UdqVlGEpg0VefYOw6qVuihksRIy5UoBtlmq1YzaXq0Q9Vd... | ```yaml
language: node_js
node_js:
- '0.10'
- '0.12'
- 'iojs'
sudo: false
env:
global:
- secure: Xy1Jl53Yovuj9tProdpmMmPThyA+iBxQYhceOqb+1O9FX8+6/9ohrgN+yF7VqvwX5cLPiico7/NCbS/BG/yufuxK8nddc4hPOYR1zZlwz0j1QBGDRsRG8PK3DlOtxyNHJTiDkNGjrDeeuM31uxL2qErl9IpEbE+8qi1bswRpKi8=
- secure: A39ISE6SAsqOCGJNV2UdqVlGEpg0VefYOw... |
5fd1bd7b-a42a-4032-adb8-604462275245 | {
"language": "YAML"
} | ```yaml
---
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- ree
- ruby-head
- jruby-head
bundler_args: -j4
before_install:
- gem update --system
- gem --version
- gem install bundler --pre
script: bundle exec rake spec
matrix:
allow_failures:
-
rvm:
- ruby-head
... | ```yaml
---
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- ruby-head
- jruby-head
bundler_args: -j4
before_install:
- gem update --system
- gem --version
- gem install bundler --pre
script: bundle exec rake spec
matrix:
allow_failures:
-
rvm:
- ruby-head
- jru... |
ee701644-cd6c-46c0-8e2f-8ff1acbf11b0 | {
"language": "YAML"
} | ```yaml
name: build-pr
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Install golangci... | ```yaml
name: build-pr
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: Install golang... |
16dedde0-9bcd-4160-85d6-51d8c2adbb95 | {
"language": "YAML"
} | ```yaml
build_script:
- build.cmd verify
clone_depth: 1
test: off
deploy: off```
Fix AppVeyor git line ending config | ```yaml
init:
- git config --global core.autocrlf true
build_script:
- build.cmd verify
clone_depth: 1
test: off
deploy: off``` |
b40f48ec-fccf-400b-b222-92a429397e68 | {
"language": "YAML"
} | ```yaml
name: Publish
on:
push:
branches:
- master
jobs:
release:
name: Release
if: "!contains(github.event.head_commit.message, 'skip-ci')"
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup... | ```yaml
name: Publish
on:
push:
branches:
- master
jobs:
release:
name: Release
if: "!contains(github.event.head_commit.message, 'skip-ci')"
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup... |
05b68b9b-e266-4b2b-974a-456635b79262 | {
"language": "YAML"
} | ```yaml
version: "master-{build}"
os: Windows Server 2012 R2
platform:
- x64
environment:
machine_user: test_user
machine_pass: Pass@word1
machine_port: 5985
KITCHEN_YAML: c:\projects\kitchen-machine\.kitchen.appveyor.yml
SSL_CERT_FILE: c:\projects\kitchen-machine\certs.pem
matrix:
- ruby_version: ... | ```yaml
version: "master-{build}"
os: Windows Server 2012 R2
platform:
- x64
environment:
machine_user: test_user
machine_pass: Pass@word1
machine_port: 5985
KITCHEN_YAML: c:\projects\kitchen-machine\.kitchen.appveyor.yml
SSL_CERT_FILE: c:\projects\kitchen-machine\certs.pem
matrix:
- ruby_version: ... |
3a6f4012-69f2-4be0-8afe-1e2a8a2aa559 | {
"language": "YAML"
} | ```yaml
# AppVeyor for Pyslvs-UI
image: Visual Studio 2019
platform: x64
environment:
matrix:
- MSYS_DIR: &msys2 C:\msys64
PYTHON_DIR: C:\Python36-x64
- MSYS_DIR: *msys2
PYTHON_DIR: C:\Python37-x64
install:
# Environment variables
- set Path=%MSYS_DIR%\mingw64\bin;%MSYS_DIR%\usr\bin;%Path%... | ```yaml
# AppVeyor for Pyslvs-UI
image: Visual Studio 2019
platform: x64
environment:
matrix:
- MSYS_DIR: &msys2 C:\msys64
PYTHON_DIR: C:\Python36-x64
- MSYS_DIR: *msys2
PYTHON_DIR: C:\Python37-x64
install:
# Environment variables
- set Path=%MSYS_DIR%\mingw64\bin;%MSYS_DIR%\usr\bin;%Path%
... |
699401e4-1d01-46b8-93d1-96d2da1c56d1 | {
"language": "YAML"
} | ```yaml
# vim ft=yaml
# travis-ci.org definition for MOxUnit build (based on CoSMoMVPA,
# which is based on PyMVPA, which is based on nipype configuration,
# which in turn was based on nipy)
#
# We pretend to be erlang because we need GNU Octave which is not
# available (as of April 2015)
language: erlang
cache:
-... | ```yaml
# vim ft=yaml
# travis-ci.org definition for MOxUnit build (based on CoSMoMVPA,
# which is based on PyMVPA, which is based on nipype configuration,
# which in turn was based on nipy)
#
# We pretend to be erlang because we need GNU Octave which is not
# available (as of April 2015)
language: erlang
cache:
-... |
864eda99-f8bf-4891-b220-387be5c94be8 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4"
- "6"
- "8"
env:
- CXX=g++-4.8
before_install:
# Qt
- sudo apt-add-repository --yes ppa:beineri/opt-qt551-trusty
- sudo apt-get update -qq
install:
# Qt
#- sudo apt-get -y install qt55[QTPACKAGE]
#- sudo apt-get -y install qmlscene qt5-default qtdeclarative5-... | ```yaml
language: node_js
node_js:
- "4"
- "6"
- "8"
env:
- CXX=g++-4.8
before_install:
# Qt
- sudo apt-add-repository --yes ppa:beineri/opt-qt551-trusty
- sudo apt-get update -qq
install:
# Qt
- sudo apt-get -y install qt55[QTPACKAGE]
- sudo apt-get -y install qmlscene qt5-default qtdeclarative5-de... |
717092e0-e0a7-4417-94c3-5bd07c8ddd74 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7
- hhvm
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
matrix:
allow_failures:
- php: hhvm
```
Add PHP 7.1 to Travis CI | ```yaml
language: php
php:
- 7
- 7.1
- hhvm
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
matrix:
allow_failures:
- php: hhvm
``` |
79d10b50-5c39-4bed-81b9-6a89118d7988 | {
"language": "YAML"
} | ```yaml
version: 1.0.{build}
branches:
only:
- master
- temp-appveyor-integration
os: Windows Server 2012 R2
install:
- cmd: git submodule update --init
- cmd: nuget restore
- ps: .\prebuild.ps1
platform: Any CPU
configuration: Release
build:
publish_nuget: true
```
Add '-pre' ... | ```yaml
version: 1.0.{build}
branches:
only:
- master
- temp-appveyor-integration
os: Windows Server 2012 R2
install:
- cmd: git submodule update --init
- ps: .\prebuild.ps1
- cmd: nuget restore
platform: Any CPU
configuration: Release
build:
publish_nuget: true
``` |
e1122682-4536-47a1-b542-ec8479deb624 | {
"language": "YAML"
} | ```yaml
version: 1.0.{build}
environment:
ftppassword:
secure: eK/zCvZEGU6BcRfo1CoYng2sjeywm69Q0JpJoJBdYqA=
build_script:
- ps: Pretzel/Pretzel bake site
test: off
artifacts:
- path: site/_site
name: compiled_site
before_deploy:
- ps: "$ftprequest = [System.Net.FtpWebRequest]::Create('laedit.net:21/htt... | ```yaml
version: 1.0.{build}
environment:
ftppassword:
secure: eK/zCvZEGU6BcRfo1CoYng2sjeywm69Q0JpJoJBdYqA=
build_script:
- ps: Pretzel/Pretzel bake site
test: off
artifacts:
- path: site/_site
name: compiled_site
before_deploy:
- ps: "$ftprequest = [System.Net.FtpWebRequest]::Create('ftp://laedit.net:... |
19312256-be21-4670-a264-d145d415fe3f | {
"language": "YAML"
} | ```yaml
environment:
matrix:
- nodejs_version: "10"
- nodejs_version: "9"
- nodejs_version: "8"
- nodejs_version: "6"
clone_depth: 5
install:
- ps: Install-Product node $env:nodejs_version
- yarn install
test_script:
- yarn test
cache:
- node_modules
- "%LOCALAPPDATA%/Yarn"
build: off
dep... | ```yaml
environment:
matrix:
- nodejs_version: "10"
- nodejs_version: "8"
- nodejs_version: "6"
clone_depth: 5
install:
- ps: Install-Product node $env:nodejs_version
- yarn install
test_script:
- yarn test
cache:
- node_modules
- "%LOCALAPPDATA%/Yarn"
build: off
deploy: off
``` |
9d4f7587-1471-4e79-9de5-2805cc7c4915 | {
"language": "YAML"
} | ```yaml
language: scala
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.cache/coursier
- $HOME/.ivy2/cache
- $HOME/.sbt
before_cache:
- rm -fv $HOME/.ivy2/.sbt.ivy.lock
# Cleanup the cached directories to avoid unnecessary cache updates
- find $HOME/.ivy2... | ```yaml
language: scala
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.cache/coursier
- $HOME/.ivy2/cache
- $HOME/.sbt
before_cache:
- rm -fv $HOME/.ivy2/.sbt.ivy.lock
# Cleanup the cached directories to avoid unnecessary cache updates
- find $HOME/.ivy2... |
478f98aa-1fc1-4398-a7fd-54b096aaba6a | {
"language": "YAML"
} | ```yaml
# Configuration for Travis (https://travis-ci.org)
language: objective-c
xcode_workspace: OneTimePassword.xcworkspace
xcode_scheme: OneTimePassword
osx_image:
- xcode7
- xcode7.1
xcode_sdk:
- iphonesimulator9.0
# Check out nested dependencies
before_install: git submodule update --init --recursive
# A c... | ```yaml
# Configuration for Travis (https://travis-ci.org)
language: objective-c
xcode_workspace: OneTimePassword.xcworkspace
xcode_scheme: OneTimePassword
osx_image: xcode7.1
xcode_sdk: iphonesimulator9.1
env:
matrix:
- DESTINATION="OS=8.1,name=iPhone 4S"
- DESTINATION="OS=8.2,name=iPhone 5"
- DESTIN... |
ec623ce6-ef65-43ec-9317-be1c2434152a | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
sudo: false
services:
- rabbitmq
install:
# Build/test dependencies
- pip install -r requirements-dev.txt --use-mirrors
# Install Julython
- pip install -e .
script:
- fab test:skip_js=True
notifications:
irc:
channels: "irc.freenode.org#julython"
on_succ... | ```yaml
language: python
python:
- "2.7"
sudo: false
services:
- rabbitmq
install:
# Build/test dependencies
- pip install -r requirements-dev.txt
# Install Julython
- pip install -e .
script:
- fab test:skip_js=True
notifications:
irc:
channels: "irc.freenode.org#julython"
on_success: change
... |
4fed4a1d-7fd3-4a73-854f-7debb2a8ae49 | {
"language": "YAML"
} | ```yaml
language: ruby
script: bundle exec rake
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-2
- ree
```
Allow jruby-head failures just because | ```yaml
language: ruby
script: bundle exec rake
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-2
- ree
matrix:
allow_failures:
- rvm: jruby-head
``` |
60da37ef-cedb-469c-9300-d0e773f7b716 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.3"
- "2.7"
- "2.6"
install: pip install flake8
script:
- flake8 eve
- python setup.py test
services:
- mongodb
- redis-server
before_script:
- "ulimit -n 1024"
- sleep 5
- mongo eve_test --eval 'db.addUser("test_user", "test_pw");'
branches:
only:
- mast... | ```yaml
language: python
python:
- "3.3"
- "2.7"
- "2.6"
install: pip install flake8
script:
- flake8 eve
- python setup.py test
services:
- mongodb
- redis-server
before_script:
- "ulimit -n 1024"
- mongo eve_test --eval 'db.addUser("test_user", "test_pw");'
branches:
only:
- master
- dev... |
27c6005b-78d8-4650-a938-a1d5258f1dfa | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
```
Remove old node versions, deps need >0.10 | ```yaml
language: node_js
node_js:
- "0.11"
- "0.10"
``` |
17f70986-7ad8-41e3-a4a7-a139aefbf81f | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk8
dist: trusty
branches:
only:
- master
before_install: bash etc/ci-setup.sh
install: true
script: eval $TEST_CMD
after_script: if [ -z "$HEROKU_API_KEY" ]; then heroku keys:remove $USER@`hostname`; fi
env:
global:
- IS_RUNNING_ON_TRAVIS=true
- SHUNIT_HOME="/tmp/shunit... | ```yaml
language: java
jdk:
- oraclejdk8
dist: trusty
branches:
only:
- master
before_install: bash etc/ci-setup.sh
install: true
script: eval $TEST_CMD
after_script: if [ -n "$HEROKU_API_KEY" ]; then heroku keys:remove $USER@`hostname`; fi
env:
global:
- IS_RUNNING_ON_TRAVIS=true
- SHUNIT_HOME="/tmp/shunit... |
f4ff9e8d-7654-4797-9132-773806d44321 | {
"language": "YAML"
} | ```yaml
language: groovy
jdk:
- oraclejdk8
script:
- chmod +x grailsw
- ./grailsw clean
- ./grailsw test-app
- ./grailsw package
```
Replace oraclejdk8 with openjdk8 for Travis CI. | ```yaml
language: groovy
jdk:
- openjdk8
script:
- chmod +x grailsw
- ./grailsw clean
- ./grailsw test-app
- ./grailsw package
``` |
da85609c-68f3-4fc5-b32c-f6d61495f447 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install: tests/install.sh
script: tests/test.sh
# vim: et
```
Enable testing on Python 3.4 | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install: tests/install.sh
script: tests/test.sh
# vim: et
``` |
317fcf58-7419-4209-9d26-97d5c69ca9ea | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
install:
- pip install -r requirements.txt
- cp handoverservice/handoverservice/settings.template cp handoverservice/handoverservice/settings.py
# command to run tests
script: cd handoverservice && python manage.py test
```
Fix ... | ```yaml
language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
install:
- pip install -r requirements.txt
- cp handoverservice/handoverservice/settings.template handoverservice/handoverservice/settings.py
# command to run tests
script: cd handoverservice && python manage.py test
``` |
a0614533-c71f-494d-9717-57e7f56e8bfd | {
"language": "YAML"
} | ```yaml
language: php
dist: trusty
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
- before_script:
- curl -sSfL -o ~/.phpenv/versions/hhvm/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar
- hhvm-nightly
- before_script:
- curl -sSfL -o ~/.phpenv/version... | ```yaml
language: php
dist: trusty
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
- hhvm-nightly
matrix:
include:
- php: 5.3
dist: precise
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == "hhvm"* ]]; then
# Use PHPUnit 5.7 for HHVM due to compatability issues ... |
52d26919-aee7-4de2-8a4c-e020e556c325 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4"
- "6"
- "7"
os:
- linux
- osx
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
osx_image: xcode8.2
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8; fi
matrix:
allow_failures:
- os: ... | ```yaml
language: node_js
node_js:
- "4"
- "6"
- "7"
os:
- linux
- osx
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
osx_image: xcode8.2
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8 CC=gcc-4.8; fi
matrix:
allow_failure... |
ff0e981a-62cd-4594-a650-167ab4bfa237 | {
"language": "YAML"
} | ```yaml
language: ruby
cache: bundler
sudo: required
env:
- "DB=postgresql"
before_install:
- nvm install v6.7.0
- node -v
- npm -v
- npm install -g phantomjs-prebuilt
- phantomjs -v
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xv... | ```yaml
language: ruby
# This is going to enable build on VMs instead of containers
sudo: required
cache:
bundler: true
directories:
- $HOME/.nvm/versions/node/v6.7.0/
rvm:
- 2.2.5
- 2.3.1
env:
- "DB=postgresql"
before_install:
- nvm install v6.7.0
- node -v
- npm -v
- npm install -g phantomj... |
1886eb03-5ce1-4399-b363-d3c7b7b2eae6 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4.1"
- "4.0"
- "node"
after_success: 'npm run coveralls'
```
Expand CI test cover to node 6.x | ```yaml
language: node_js
node_js:
- "6.3"
- "6.2"
- "6.1"
- "6.0"
- "4.1"
- "4.0"
- "node"
after_success: 'npm run coveralls'
``` |
e939b2da-2438-4f85-8faf-ffc4cc4d2832 | {
"language": "YAML"
} | ```yaml
language: cpp
sudo: required
compiler:
- clang
- gcc
env:
global:
- secure: "SnIBG/xLIHX3CSvUbqqsX8xTVqIqQ7fFS6HWO6KZQVBsT6yugTwYHbyhNiU531JejYJ/I3ZrDhXfYH3qFZiYxnH1sifvwV+fnTtMXpPN7qPZwIymkjcmm6gJF51e0C7VOfUbvKFv0ngwj+ul21rgZSMuoEvxPK0WxtE3/ZSfn9c="
- "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev li... | ```yaml
language: cpp
sudo: required
compiler:
- clang
- gcc
env:
global:
- secure: "SnIBG/xLIHX3CSvUbqqsX8xTVqIqQ7fFS6HWO6KZQVBsT6yugTwYHbyhNiU531JejYJ/I3ZrDhXfYH3qFZiYxnH1sifvwV+fnTtMXpPN7qPZwIymkjcmm6gJF51e0C7VOfUbvKFv0ngwj+ul21rgZSMuoEvxPK0WxtE3/ZSfn9c="
- "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev li... |
04b3dfd2-53c9-47a6-8674-56ffde24d10b | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.3
- 1.4
- tip
install:
- go get golang.org/x/crypto/ssh/terminal
script: go test -v ./...
```
Remove tip from Travis versions | ```yaml
language: go
go:
- 1.3
- 1.4
install:
- go get golang.org/x/crypto/ssh/terminal
script: go test -v ./...
``` |
dc7a4bc3-ce83-489f-87bf-45922eb5f1ab | {
"language": "YAML"
} | ```yaml
language: ruby
script: 'bundle exec rake test:coverage'
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- 2.1.6
- 2.2.0
- 2.2.1
- 2.2.2
- rbx-2
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="--2.0"
- rvm: jruby-head
env: JRUB... | ```yaml
language: ruby
script: 'bundle exec rake test:coverage'
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- 2.1.6
- 2.2.0
- 2.2.1
- 2.2.2
- rbx-2
matrix:
include:
- rvm: jruby-head
allow_failures:
- rvm: rbx-2
- rvm: jruby-head
``` |
d28e8657-9e9a-4f16-902c-eaa1df6d78f1 | {
"language": "YAML"
} | ```yaml
language: php
php:
- hhvm
- 5.6
- 5.5
- 5.4
- 5.3
install:
- travis_retry composer install --prefer-dist
before_script:
- echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
script:
- phpunit --coverage-clover=coverage.clover
after_script:
- wget https://s... | ```yaml
language: php
php:
- hhvm
- 5.6
- 5.5
- 5.4
- 5.3
install:
- travis_retry composer install --prefer-dist
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
script:
- phpunit --coverage-clov... |
e04813d2-d8b0-48c2-af11-7b21efa11dc7 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode7
git:
submodules: false
before_install:
- brew update; brew update
# - brew outdated xctool || brew upgrade xctool
- brew install carthage
install: script/update
script: script/test
```
Remove commented out xctool upgrade. | ```yaml
language: objective-c
osx_image: xcode7
git:
submodules: false
before_install:
- brew update; brew update
- brew install carthage
install: script/update
script: script/test
``` |
b0da0c74-c5cd-4342-802c-45322f6f5ec7 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
- rbx-19mode
```
Update list of rubies to test against. | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.1
- rbx
``` |
a8797753-95d2-4424-a373-4351f5842543 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "node"
- "iojs"
- "0.12"
after_success:
- npm run report-coverage```
Include node 4 when testing | ```yaml
language: node_js
node_js:
- "node"
- "iojs"
- "4.1"
- "4.0"
- "0.12"
after_success:
- npm run report-coverage
``` |
2a73bef1-e9e2-4374-ae6b-5d2dd5241d46 | {
"language": "YAML"
} | ```yaml
language: csharp
matrix:
include:
- env: Ubuntu=14.04
os: linux
dist: trusty
sudo: required
- env: OSX=10.11
os: osx
osx_image: xcode7.3
rvm: system
before_install:
- ./.ci/before_install.sh
install:
- ./.ci/install.sh
script:
- ./.ci/script.sh
notificati... | ```yaml
language: csharp
matrix:
fast_finish: true
include:
- env: Ubuntu=14.04
os: linux
dist: trusty
sudo: required
allow_failures:
- env: OSX=10.11
os: osx
osx_image: xcode7.3
rvm: system
before_install:
- ./.ci/before_install.sh
install:
- ./.ci/install.sh
... |
cc122c18-1d62-4be2-99c0-328a6d728fe0 | {
"language": "YAML"
} | ```yaml
language: "ruby"
rvm:
- "2.0"
- "2.4.0"
sudo: false
install:
- bundle install --retry=3
- npm install
script:
- bundle exec rspec
- npm test
addons:
code_climate:
repo_token: cad4913c49d614008c332cda660cf909de208e335201aa8bfab373b9740e85be
after_success:
- bundle exec codeclimate-test-... | ```yaml
language: "ruby"
rvm:
- "2.0"
- "2.5.0"
sudo: false
install:
- bundle install --retry=3
- npm install
script:
- bundle exec rspec
- npm test
addons:
code_climate:
repo_token: cad4913c49d614008c332cda660cf909de208e335201aa8bfab373b9740e85be
after_success:
- bundle exec codeclimate-test-... |
75d9dab9-4304-40a0-b86d-a43b5e2dcd56 | {
"language": "YAML"
} | ```yaml
env:
- CABALVER=1.16 GHCVER=7.4.2
- CABALVER=1.16 GHCVER=7.6.3
- CABALVER=1.20 GHCVER=7.8.4
- CABALVER=1.22 GHCVER=7.10.1
- CABALVER=head GHCVER=head
matrix:
allow_failures:
- env: CABALVER=head GHCVER=head
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update -qq
install... | ```yaml
env:
- CABALVER=1.20 GHCVER=7.4.2
- CABALVER=1.20 GHCVER=7.6.3
- CABALVER=1.20 GHCVER=7.8.4
- CABALVER=1.22 GHCVER=7.10.1
- CABALVER=head GHCVER=head
matrix:
allow_failures:
- env: CABALVER=head GHCVER=head
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update -qq
install... |
1a8790b1-5613-4ab5-bb28-a8ddf6ce67f0 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
- SYMFONY_VERSION=2.6.*
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFONY_VERS... | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
- SYMFONY_VERSION=2.6.*
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFONY_VERS... |
f26a8035-2558-4434-9399-d62763641906 | {
"language": "YAML"
} | ```yaml
language: php
sudo: false
php:
- 5.6
- 7.0
- hhvm
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if... | ```yaml
language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if ... |
25568b5c-1447-4ce9-8e7f-ecb85a14722d | {
"language": "YAML"
} | ```yaml
language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
- jruby
- rbx
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby
```
Use Travis "trusty" build and wildcard Ruby versions. | ```yaml
language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2
- 2.3
- 2.4
- jruby-9
- rbx-3
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby-9
- rvm: rbx-3
dist: trusty
``` |
2e8ebaa1-10da-4962-82ea-7a2401b772b1 | {
"language": "YAML"
} | ```yaml
sudo: false
language: java
# whitelist
branches:
only:
- master
jdk:
- oraclejdk8
# Run the commit message check and then check out some required dependencies.
# TODO Currently check in messages are not checked for dawnsci.
# - chmod +x ./org.eclipse.dawnsci.releng/build/commit-msg.sh
# - bash ./org.ec... | ```yaml
sudo: false # use containers
language: java
cache:
directories:
- $HOME/.m2 # Maven dependencies
# whitelist
branches:
only:
- master
jdk:
- oraclejdk8
# Run the commit message check and then check out some required dependencies.
# TODO Currently check in messages are not checked for dawnsci.
# ... |
58c3783c-9822-4623-b5ea-c418ca96c635 | {
"language": "YAML"
} | ```yaml
language: python
env:
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.4.x.zip
- DJANGO_VERSION=1.5.12
- DJANGO_VERSION=1.6.11
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.7.x.zip
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.8.x.zip
python:... | ```yaml
language: python
env:
- DJANGO_VERSION=1.4
- DJANGO_VERSION=1.5
- DJANGO_VERSION=1.6
- DJANGO_VERSION=1.7
- DJANGO_VERSION=1.8
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
matrix:
exclude:
- python: "3.3"
env: DJANGO_VERSION=1.4
- python: "3.4"
env: DJANGO_VERSI... |
265b2c83-4a19-4d2d-999f-3f7d41628239 | {
"language": "YAML"
} | ```yaml
language: clojure
script: lein with-profile production compile :all
```
Add GitHub Releases Uploading to Travis | ```yaml
language: clojure
script: lein with-profile production compile :all
deploy:
provider: releases
api_key:
secure: kvygJ/E+YVe0sSuDZXaNYtn9DXxx8RovAvCDnsdMjEkWYwTfg8yUaMdlqvzzYojym/FKRr05RzSjClDbWJ8JnU4su2iMjOMuHzrhH8UALZQIM2yaxporVugh32OYSFZDYEA2oUwg0TRD7GPfb7aJYbkmu2AWb5ZubCwXQKSWauOFVnXY6xmCZl7Z+0xAZJBH... |
004684df-80bc-4d39-a993-0749815450be | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/php-coveralls -v
```
Test PHP 7.4 on Travis | ```yaml
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/php-coveralls -v
``` |
cd135966-ee3f-4236-bc68-b792c8834c8c | {
"language": "YAML"
} | ```yaml
services:
- docker
before_script:
- docker-compose build
script:
- docker-compose run wscef
```
Add new commands for build dockerhub images | ```yaml
services:
- docker
before_script:
- docker-compose build
script:
- docker-compose run wscef
after_success:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- export REPO=sebestblog/travis-demo
- export TAG=`if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo $TRAVIS_... |
c9013c89-a246-4256-a58d-087003f3bc00 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install --editable ".[all]"
- pip install pytest>=3.6 pytest-cov coverage pathlib
script:
- pytest
notifications:
email:
recipients:
- kinverarity@hotmail.com
on_success: change
on_fai... | ```yaml
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install --editable ".[all]"
- pip install pytest>=3.6 pytest-cov coverage pathlib
- python -c "import lasio; print(lasio.__version__)"
script:
- pytest
notifications:
email:
recipients:
- ki... |
8cc021c9-e4dc-4dee-b003-8506a49d3383 | {
"language": "YAML"
} | ```yaml
language: java
env:
global:
- MAVEN_OPTS="-Xmx2g"
```
Change Travis config to use Java 8 | ```yaml
language: java
jdk:
- oraclejdk8
env:
global:
- MAVEN_OPTS="-Xmx2g"
``` |
92c87be6-36de-4edf-930b-0020c1a5a9da | {
"language": "YAML"
} | ```yaml
language: php
php:
- "5.6"
- "7.1"
services:
- mysql
before_install:
- sudo apt-get update
install:
- composer self-update
before_script:
- mv .env.travis .env
- mv travis.phpunit.xml phpunit.xml
- mysql -e 'create database test_timegrid;'
- composer install --dev --no-interaction
- php... | ```yaml
language: php
php:
- "5.6"
- "7.1"
services:
- mysql
before_install:
- sudo apt-get update
install:
- composer self-update
before_script:
- mv .env.travis .env
- mv travis.phpunit.xml phpunit.xml
- mysql -e 'create database test_timegrid;'
- composer install --dev --no-interaction
- php... |
cf471ee0-27e0-48b3-b019-a9f7387f69e5 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
install:
- git clone https://github.com/sstephenson/bats.git && cd bats && ./install.sh .. && cd -
- pip install -U pip setuptools
- pip install -U . -r dev-requirements.txt
# command to run tests
script:
- pav... | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
install:
- git clone https://github.com/sstephenson/bats.git && cd bats && ./install.sh .. && cd -
- pip install -U pip setuptools
- pip install -U . -r dev-requirements.txt
# command to run tests
script:
- pav... |
3f31ad3f-6d0a-46af-a203-a938ed40acc9 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- stable
- "4"
- "0.10"
script: npm run build
```
Stop notifications for every failing build | ```yaml
language: node_js
node_js:
- stable
- "4"
- "0.10"
script: npm run build
notifications:
email:
on_failure: change
``` |
a8304cb6-016d-4ed5-a414-836fb02fc2a6 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.5"
- "2.6"
- "2.7"
env:
- DJANGO_VERSION=1.3.4
- DJANGO_VERSION=1.4.2
# command to install dependencies
install:
- pip install -q Django==$DJANGO_VERSION --use-mirrors
- pip install -r requirements.txt --use-mirrors
# command to run tests
script: python setup.py t... | ```yaml
language: python
python:
# Disable 2.5 for now due to a bug in django-setuptest
# Ref: https://github.com/praekelt/django-setuptest/pull/6
# - "2.5"
- "2.6"
- "2.7"
env:
- DJANGO_VERSION=1.3.4
- DJANGO_VERSION=1.4.2
# command to install dependencies
install:
- pip install -q Django==$DJANGO_VERSI... |
48478e39-c07a-40ab-9d0a-0d0dc59e5eb0 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.4
- tip
install:
- go get github.com/tools/godep
- godep restore
sudo: false
```
Disable tip testing on Travis | ```yaml
language: go
go:
- 1.4
#- tip
install:
- go get github.com/tools/godep
- godep restore
sudo: false
``` |
3089b1b8-de6b-41e0-a838-b173707b29b7 | {
"language": "YAML"
} | ```yaml
---
ntp::servers:
- 172.16.0.100
- 172.16.0.101
- 172.16.0.102
profile::base::network::manage_httpproxy: 'true'
puppet::cron_cmd: "if [ -e /etc/profile.d/proxy.sh ] ; then source /etc/profile.d/proxy.sh ; fi ; \
/usr/bin/env puppet agent --config %{puppet::dir}/puppet.conf --onetime --no-daemonize"
#... | ```yaml
---
include:
default:
- profile::openstack::compute::migration
ntp::servers:
- 172.16.0.100
- 172.16.0.101
- 172.16.0.102
profile::base::network::manage_httpproxy: 'true'
puppet::cron_cmd: "if [ -e /etc/profile.d/proxy.sh ] ; then source /etc/profile.d/proxy.sh ; fi ; \
/usr/bin/env puppet agen... |
d8a0d19d-b5fa-4b24-90ad-c8ee3ac88bb5 | {
"language": "YAML"
} | ```yaml
# The HX cluster has 3 workers. Each k8s worker comes with 8 cores and 32GB of RAM.
# The resources of this cluster will be divided as follows:
# - Failover public website (2 workers)
# - Test website (1 worker)
# Database
database: db-dev
# Proxy
proxy: proxy-hx
# EBI search index
searchIndex: search-index-... | ```yaml
# The HX cluster has 3 workers. Each k8s worker comes with 8 cores and 32GB of RAM.
# The resources of this cluster will be divided as follows:
# - Failover public website (2 workers)
# - Test website (1 worker)
# Database
database: db-dev
# Proxy
proxy: proxy-hx
# EBI search index
searchIndex: search-index-... |
e0ff048e-bbe2-4b48-8b47-8f603c15c2cb | {
"language": "YAML"
} | ```yaml
{% set version = '%s_%04i_%s'|format(GIT_DESCRIBE_TAG|replace('yosys-', '') or '0.X', GIT_DESCRIBE_NUMBER|int, GIT_DESCRIBE_HASH or 'gUNKNOWN') %}
package:
name: yosys
version: {{ version }}
source:
git_url: https://github.com/YosysHQ/yosys.git
git_rev: master
patches:
- makefile-conda-config.pa... | ```yaml
{% set version = '%s_%04i_%s'|format(GIT_DESCRIBE_TAG|replace('yosys-', '') or '0.X', GIT_DESCRIBE_NUMBER|int, GIT_DESCRIBE_HASH or 'gUNKNOWN') %}
package:
name: yosys
version: {{ version }}
source:
git_url: https://github.com/timvideos/yosys.git
git_rev: master
patches:
- makefile-conda-config.... |
c2385361-56f0-43e8-a92b-676a5b5a7a57 | {
"language": "YAML"
} | ```yaml
# Site settings
title: samyakchoudhary.com
email: samyakchoudhary@gmail.com
description: Computer Science, IIT Roorkee, graduate. Aspiring Entrepreneur. ENTP.
baseurl: "" # the subpath of your site, e.g. /blog
url: "samyakchoudhary.com" # the base hostname & protocol for your site
enable_retina: false
permalink... | ```yaml
# Site settings
title: samyakchoudhary.com
email: samyakchoudhary@gmail.com
description: Computer Science, IIT Roorkee, graduate. Aspiring Entrepreneur. ENTP.
baseurl: "" # the subpath of your site, e.g. /blog
url: "samyakchoudhary.com" # the base hostname & protocol for your site
enable_retina: false
permalink... |
3ba46bb6-2aff-4806-bdec-e37a1ff8cd54 | {
"language": "YAML"
} | ```yaml
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in w... | ```yaml
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in w... |
4d75e45e-354b-4459-a448-d69a9bfa45bd | {
"language": "YAML"
} | ```yaml
---
- name: Install requirements
become: true
apt: name={{item}} state=latest
with_items:
- cabal-install
- ghc
- name: Install shellcheck
shell: cabal update && cabal install shellcheck
args:
creates: ~/.cabal/bin/shellcheck
```
Install tmux in new dev machines | ```yaml
---
- name: Install requirements
become: true
apt: name={{item}} state=latest
with_items:
- cabal-install
- ghc
- name: Install tmux
become: true
apt: name=tmux state=latest
- name: Install shellcheck
shell: cabal update && cabal install shellcheck
args:
creates: ~/.cabal/bin/shellc... |
b9443408-a217-43a2-a899-bec3c39bdb14 | {
"language": "YAML"
} | ```yaml
- name: "Create /usr/local/etc/syslog.d/"
file:
path: /usr/local/etc/syslog.d/
state: directory
owner: root
group: wheel
mode: "0755"
- name: "Remove obsolete syslog files"
file:
path: "{{ item }}"
state: absent
loop:
- /usr/local/etc/syslog.d/console.conf
notify: restar... | ```yaml
- name: "Create /usr/local/etc/syslog.d/"
file:
path: /usr/local/etc/syslog.d/
state: directory
owner: root
group: wheel
mode: "0755"
- name: "Remove obsolete syslog files"
file:
path: "{{ item }}"
state: absent
loop:
- /usr/local/etc/syslog.d/console.conf
notify: restar... |
b0fa6372-7e88-4a71-9d02-cf1407d371bd | {
"language": "YAML"
} | ```yaml
{% set name = "Sanic-HTTPAuth" %}
{% set version = "0.2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/Sanic-HTTPAuth-{{ version }}.tar.gz
sha256: a4f9fb15165a470d53ba1bd42acb8b0d9f579acb1c0af2c9752d1ed38e41cb89
buil... | ```yaml
{% set name = "Sanic-HTTPAuth" %}
{% set version = "0.2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/Sanic-HTTPAuth-{{ version }}.tar.gz
sha256: a4f9fb15165a470d53ba1bd42acb8b0d9f579acb1c0af2c9752d1ed38e41cb89
buil... |
0fd74f67-5f0c-42de-bdfa-0be55b8aa586 | {
"language": "YAML"
} | ```yaml
---
python_3_version: "3.6.7"
python_3_version_output: "Python {{ python_3_version }}"
# TODO: determine these strings using python_3_version
python_3_executable: "python3.6"
pip_3_executable: "pip3.6"
python_3_dir: "Python-{{ python_3_version }}"
python_3_filename: "{{ python_3_dir }}.tgz"
python_3_url: "ht... | ```yaml
---
python_3_version: "3.6.7"
python_3_version_output: "Python {{ python_3_version }}"
python_3_executable: "python{{ python_3_version.split('.')[0:2] | join('.') }}"
pip_3_executable: "pip{{ python_3_version.split('.')[0:2] | join('.') }}"
python_3_dir: "Python-{{ python_3_version }}"
python_3_filename: "{{ ... |
f19175fc-a0a9-4644-9fa1-0419770356b8 | {
"language": "YAML"
} | ```yaml
---
- include: zsh.yml
- include: postgres.yml
- include: chrome.yml
- include: java.yml
- include: vim.yml
- include: intellij.yml
- include: node.yml
- include: wine.yml
- include: hipchat.yml
- include: gimp.yml
- include: spotify.yml
- include: vlc.yml
- include: docker.yml
- inc... | ```yaml
---
- include: zsh.yml
- include: postgres.yml
- include: chrome.yml
- include: java.yml
- include: vim.yml
- include: intellij.yml
- include: node.yml
- include: wine.yml
- include: hipchat.yml
- include: gimp.yml
- include: spotify.yml
- include: vlc.yml
- include: docker.yml
- inc... |
8fd7f9c9-0988-4d93-8f5c-39f5f025606b | {
"language": "YAML"
} | ```yaml
name: rubocop-rspec
title: RuboCop RSpec
version: '2.1'
nav:
- modules/ROOT/nav.adoc
```
Switch docs version back to master | ```yaml
name: rubocop-rspec
title: RuboCop RSpec
version: master
nav:
- modules/ROOT/nav.adoc
``` |
d91a27e1-b849-421b-b8d0-70155257bce3 | {
"language": "YAML"
} | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templates:
- journ... | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templates:
- journ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.