doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
c3163766-f1a2-46ab-83b3-aaecfd43e6d8 | {
"language": "YAML"
} | ```yaml
dist: xenial
sudo: required
# Not technically required but suppresses 'Ruby' in Job status message.
language: java
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
OS=linux
fi
BAZEL=... | ```yaml
dist: xenial
sudo: required
language: python3
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
OS=linux
fi
BAZELISK_VERSION=v1.5.0
if [ ! -d "${HOME}/bin" ]; then
mkdir "$... |
f5d47f1b-8d6f-4cc9-8095-57c140a63b43 | {
"language": "YAML"
} | ```yaml
language: java
notifications:
# Email notifications are disabled to not annoy anybody.
# See http://about.travis-ci.org/docs/user/build-configuration/ to learn more
# about configuring notification recipients and more.
email: false
```
Enable chat bot hook and integration tests on Travis. | ```yaml
language: java
script: mvn -Pitest -DargLine="-Dcom.basho.riak.search=true -Dcom.basho.riak.2i=true" clean verify
notifications:
# Email notifications are disabled to not annoy anybody.
# See http://about.travis-ci.org/docs/user/build-configuration/ to learn more
# about configuring notification recipient... |
634fbcf9-1f49-48c0-b7ae-29c0a84560b1 | {
"language": "YAML"
} | ```yaml
language: go
go:
- tip
- "1.13"
- "1.12"
- "1.11"
- "1.10"
before_install:
- go get golang.org/x/tools/cmd/cover
script:
- go test -coverprofile=coverage.txt -covermode=atomic ./ ./completion/ ./option ./help
after_success:
- bash <(curl -s https://codecov.io/bash)
```
Add Go 1.14 to test m... | ```yaml
language: go
go:
- tip
- "1.14"
- "1.13"
- "1.12"
- "1.11"
- "1.10"
before_install:
- go get golang.org/x/tools/cmd/cover
script:
- go test -coverprofile=coverage.txt -covermode=atomic ./ ./completion/ ./option ./help
after_success:
- bash <(curl -s https://codecov.io/bash)
``` |
15d32919-5b7a-4662-8f3e-13bba217cc61 | {
"language": "YAML"
} | ```yaml
language: python
python: 3.5
env:
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=docs
install:
- pip install tox coveralls
script:
- tox -e $TOX_ENV
after_success:
- coveralls
notifications:
slack:
secure: XZ9C7sBBWsCBKWZY2nDBkaCaePqbb3ham+FLtXTiaRCq+rfl5Q3Effm91YvKmT2i/7rqXjgDb8moVA9NEBF1SLs... | ```yaml
language: python
matrix:
include:
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- env: TOXENV=docs
install: pip install tox coveralls
script: tox -e $TOX_ENV
after_success: coveralls
notifications:
slack:
secure: XZ9C7sBBWsCBKWZY2nDBkaCa... |
49733b62-eff2-492a-8947-5397006b4eac | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
matrix:
allow_failures:
- node_js: "0.11"
```
Update Travis config to include compiler info | ```yaml
sudo: false
language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
matrix:
allow_failures:
- node_js: "0.11"
compiler: clang-3.6
env:
- CXX=clang-3.6
addons:
apt:
sources:
- llvm-toolchain-precise-3.6
- ubuntu-toolchain-r-test
packages:
- clang-... |
ef6a673e-9a7d-4cca-9343-3692b7c81752 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "iojs"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
before_install:
- "npm update -g npm"
- "( pushd $(dirname `which npm`)/../lib/; npm update npm; popd; )"
- "npm install -g grunt-cli"
```
Remove NPM self-updating NPM from Tra... | ```yaml
language: node_js
node_js:
- "iojs"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
- node_js: "0.8"
before_install:
- "npm install -g grunt-cli"
``` |
ed6a9759-c0fb-4564-9af0-c1f37b8f7284 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "6"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
script:
- yarn test
cache: yarn
```
Add greenkeeper support with lockfile tracking | ```yaml
language: node_js
node_js:
- "10"
- "8"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
- npm install -g npm@latest
- npm install -g greenkeeper-lockfile
install: npm install
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
script:
-... |
5833127c-d0dc-4f75-bb46-5ccf891b1a63 | {
"language": "YAML"
} | ```yaml
# Config file for automatic testing at travis-ci.org
language: python
python:
- "3.3"
- "2.7"
install: pip install -r requirements/dev.txt
script: py.test tests
```
Add env variable for Travis test | ```yaml
# Config file for automatic testing at travis-ci.org
language: python
python:
- "3.3"
- "2.7"
install: pip install -r requirements/dev.txt
script: py.test tests
addons:
postgresql: "9.3"
env:
global:
- SQLALCHEMY_DATABASE_URI=postgres://postgres@localhost/clearstate
``` |
b55b226c-8537-41ac-9385-37ecc2ae0b71 | {
"language": "YAML"
} | ```yaml
sudo: false
language: java
after_success:
- if [[ "${TRAVIS_JDK_VERSION}" == "oraclejdk8" ]]; then mvn -B jacoco:report coveralls:report; fi
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
```
Remove Oracle JDK7 from Travis CI build | ```yaml
sudo: false
language: java
after_success:
- if [[ "${TRAVIS_JDK_VERSION}" == "oraclejdk8" ]]; then mvn -B jacoco:report coveralls:report; fi
jdk:
- openjdk7
- oraclejdk8
``` |
0ab9d0b6-714a-47c1-9f81-3f2d8b65ecaf | {
"language": "YAML"
} | ```yaml
# Copyright 2019 The Tekton Authors
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed... | ```yaml
# Copyright 2019 The Tekton Authors
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed... |
789c4096-8223-475b-ae87-affec61395fc | {
"language": "YAML"
} | ```yaml
name: spark
author: Chrome Team <apps-dev@chromium.org>
version: 0.1.4-dev
homepage: https://github.com/GoogleChrome/spark
description: A Chrome app based development environment.
dependencies:
ace: '>=0.1.3'
analyzer: any
bootjack: any
browser: any
chrome_gen: '>=0.3.0'
crc32: 0.1.3
crypto: any
... | ```yaml
name: spark
author: Chrome Team <apps-dev@chromium.org>
version: 0.1.4-dev
homepage: https://github.com/GoogleChrome/spark
description: A Chrome app based development environment.
dependencies:
ace: '>=0.1.3'
analyzer: any
bootjack: any
browser: any
chrome_gen: '>=0.3.0'
crc32: 0.1.3
crypto: any
... |
a9995992-461d-49ae-a82d-13a816aedf4c | {
"language": "YAML"
} | ```yaml
Categories:
- System
License: Unlicense
WebSite: https://bitbucket.org/oF2pks/kaltura-device-info-android
SourceCode: https://bitbucket.org/oF2pks/kaltura-device-info-android/src
IssueTracker: https://forum.xda-developers.com/android/apps-games/appfoss-googleserviceframework-gsf-t3849908
AutoName: (F-Droid) ... | ```yaml
Categories:
- System
License: Unlicense
WebSite: https://bitbucket.org/oF2pks/kaltura-device-info-android
SourceCode: https://bitbucket.org/oF2pks/kaltura-device-info-android/src
IssueTracker: https://forum.xda-developers.com/android/apps-games/appfoss-googleserviceframework-gsf-t3849908
AutoName: (F-Droid) ... |
6257a92b-360f-4140-9471-2241b9d41c82 | {
"language": "YAML"
} | ```yaml
{% set name = "statmorph" %}
{% set version = "0.1.0" %}
{% set sha256 = "5e92600867b3ddbd3bd1194ca8689c5e99e214d909588e29860c05be5f14712e" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name ... | ```yaml
{% set name = "statmorph" %}
{% set version = "0.1.0" %}
{% set sha256 = "5e92600867b3ddbd3bd1194ca8689c5e99e214d909588e29860c05be5f14712e" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name ... |
8cae2224-b88f-49be-9d85-167fd8701d57 | {
"language": "YAML"
} | ```yaml
migrated:
- help_page
indexable:
- answer
- guide
- licence
- transaction
- simple_smart_answer
```
Make local transaction format indexable | ```yaml
migrated:
- help_page
indexable:
- answer
- guide
- licence
- local_transaction
- transaction
- simple_smart_answer
``` |
a9cfbe73-c2a7-4439-9522-d99b044e8ca8 | {
"language": "YAML"
} | ```yaml
listen:
- 127.0.0.1:8080
debug-routing: true
routing:
localhost/empty.gif: empty-gif
localhost/favicon.ico: public
localhost: chat
# we can't proxy websockets for now, so we disable websocket to webpack
localhost/sockjs-node: html
handlers:
chat: !SwindonChat
session-pool: chat
http-r... | ```yaml
listen:
- 127.0.0.1:8080
debug-routing: true
routing:
localhost/empty.gif: empty-gif
localhost/favicon.ico: public
localhost: chat
localhost/sockjs-node: socksjs
handlers:
chat: !SwindonChat
session-pool: chat
http-route: html
message-handlers:
"*": chat
empty-gif: !EmptyG... |
5643851d-f0ac-47f9-8bee-334aef812845 | {
"language": "YAML"
} | ```yaml
{% set name = "Benchmark-4dn" %}
{% set version = "0.5.6" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "f44a5d8274710828045955dae92e7ee093174ed88cdc695840f4a250ab9003a3"
bu... | ```yaml
{% set name = "Benchmark-4dn" %}
{% set version = "0.5.6" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "f44a5d8274710828045955dae92e7ee093174ed88cdc695840f4a250ab9003a3"
bu... |
727b6edb-d1c2-47b6-beff-24e1c9a8d4bf | {
"language": "YAML"
} | ```yaml
package:
name: progressbar33
version: "2.4"
source:
fn: progressbar33-2.4.tar.gz
url: https://files.pythonhosted.org/packages/71/fc/7c8e01f41a6e671d7b11be470eeb3d15339c75ce5559935f3f55890eec6b/progressbar33-2.4.tar.gz
md5: 94c114ea62aaae93489848f5bdb0bbe7
build:
number: 0
requirements:
build:
... | ```yaml
package:
name: progressbar33
version: "2.4"
source:
fn: progressbar33-2.4.tar.gz
url: https://files.pythonhosted.org/packages/71/fc/7c8e01f41a6e671d7b11be470eeb3d15339c75ce5559935f3f55890eec6b/progressbar33-2.4.tar.gz
md5: 94c114ea62aaae93489848f5bdb0bbe7
build:
number: 0
requirements:
build:
... |
adaf4e28-9d86-4392-a195-4b80878a265b | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: d7abb2e1c8d1d05da2e7afd7b3ba0750a0b4ee82147fa8eafaf67e003a8a30a8
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Categorical types and classes
changelog: ''
basic-deps:
alg: ! '>=0.2 && <0.3'
base: ! '>=4.10 && <5'
transformers: ! '>=0.5 && <0.6'
all-ver... | ```yaml
homepage: ''
changelog-type: ''
hash: 20acf2112dab0fa6d887429669529d766439f351e4bd02350e2b81f84e353d72
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Categorical types and classes
changelog: ''
basic-deps:
alg: ! '>=0.2 && <0.3'
base: ! '>=4.10 && <5'
transformers: ! '>=0.5 && <0.6'
all-ver... |
55f9e03d-ddb6-4e7a-bb47-b83dfada322c | {
"language": "YAML"
} | ```yaml
---
- name: Install Pyenv from git repo
git:
repo: https://github.com/pyenv/pyenv.git
dest: "{{ pyenv_install_dir }}"
- name: Install pyenv-virtualenv plugin
git:
repo: https://github.com/pyenv/pyenv-virtualenv.git
dest: "{{ virtualenv_install_dir }}"
- name: Change owner and group of pyen... | ```yaml
---
# See https://github.com/pyenv/pyenv/wiki/Common-build-problems for complete
# list of dependencies.
- name: Install dependencies for building python with pyenv
package: name={{ item }} state=present
with_items:
- make
- build-essential
- libssl-dev
- zlib1g-dev
- libbz2-dev
- li... |
e580ac0b-e5a7-44bd-8899-d53bf66aec30 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: 5a298994fdc943e5614621d6e5f136b5be74cc36e56ab8230cf257f5bd5d858a
test-bench-deps: {}
maintainer: leonardo.taglialegne@gmail.com
synopsis: An application (and library) to convert quipper circuits into Qpmc models.
changelog: ''
basic-deps:
base: ! '>=4.0 && <5.0'
matrix:... | ```yaml
homepage: ''
changelog-type: ''
hash: 5d23f9a8472911bf859084e04999ccef13561b723d6df6a608abd995fb5d8cac
test-bench-deps: {}
maintainer: leonardo.taglialegne@gmail.com
synopsis: An application (and library) to convert quipper circuits into Qpmc models.
changelog: ''
basic-deps:
base: ! '>=4.0 && <5.0'
matrix:... |
db80815c-214f-4ee6-8e74-af4ede4a15d1 | {
"language": "YAML"
} | ```yaml
##################################################
## Customize
##################################################
homeassistant:
customize:
light.2424806784f3eb2103c8:
friendly_name: "Spot Light 1"
icon: mdi:spotlight-beam
light.12204702807d3a252d9b:
friendly_name: "Spot Light 2"
... | ```yaml
##################################################
## Customize
##################################################
homeassistant:
customize:
light.2424806784f3eb2103c8:
friendly_name: "Spot Light 1"
icon: mdi:spotlight-beam
light.12204702ecfabc20a0a1:
friendly_name: "Spot Light 2"
... |
7b54150e-659e-43fe-bf98-80324db91b3c | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/jxv/sdl2-fps#readme
changelog-type: ''
hash: e228fbadb0bd39787955f3277e74f085cfcb32ef82959d8b97909e64f168593e
test-bench-deps: {}
maintainer: Joe Vargas
synopsis: Run of the mill, frames per second timer implementation
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
sdl2: ! '>=2... | ```yaml
homepage: https://github.com/jxv/sdl2-fps#readme
changelog-type: ''
hash: 94235beb4a1d9facd448324e924b9655941b5e0903bb53e08c63a60ffdce753a
test-bench-deps: {}
maintainer: Joe Vargas
synopsis: Run of the mill, frames per second timer implementation
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
sdl2: ! '>=2... |
b9874afd-969f-4036-818c-cb09446a60b4 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: c16973e935950d6dde791d92fb3d463bde992886b4100acf1af66b4e2228772a
test-bench-deps: {}
maintainer: ropoctl@gmail.com
synopsis: Sequence Alignment
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.6 && <5'
vector: -any
all-versions:
- '0.2.0.0'
- '0.2.0.1'
- '0.2.0... | ```yaml
homepage: ''
changelog-type: ''
hash: dbf574ed677f0db7dd023a549ab3ee8c8bdb3559433fd03b098f1f90eae21f25
test-bench-deps: {}
maintainer: ropoctl@gmail.com
synopsis: Sequence Alignment
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.6 && <5'
vector: -any
all-versions:
- '0.2.0.0'
- '0.2.0.1'
- '0.2.0... |
cab7f066-f039-4b5a-9a6a-556b58f4e010 | {
"language": "YAML"
} | ```yaml
imports:
- { resource: functional_testing.yml }
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
router:
resource: "%kernel.root_dir%/config/routing_test.yml"
strict_requirements: true
profiler:
collect: fal... | ```yaml
imports:
- { resource: functional_testing.yml }
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
router:
resource: "%kernel.root_dir%/config/routing_test.yml"
strict_requirements: true
profiler:
collect: fal... |
a6cea9b8-a1ff-4c3f-b5dd-e89c70176f1a | {
"language": "YAML"
} | ```yaml
title: Cross-site scripting (XSS) vulnerability in Paypal-Merchant-SDK-PHP
link: https://github.com/paypal/merchant-sdk-php/tree/v3.9.1
cve: CVE-2017-6099
branches:
2.x:
time: 2017-03-31,
versions: ['<2.1.96']
master:
time: 2017-03-31,
versions: [... | ```yaml
title: Cross-site scripting (XSS) vulnerability in Paypal-Merchant-SDK-PHP
link: https://github.com/paypal/merchant-sdk-php/tree/v3.9.1
cve: CVE-2017-6099
branches:
2.x:
time: 2017-03-31,
versions: ['<=2.11.118']
master:
time: 2017-03-31,
versions... |
194889ee-c56a-49b2-b971-3cda44c9aafd | {
"language": "YAML"
} | ```yaml
resolver: lts-4.1
packages:
- '.'
flags:
idris:
FFI: true
GMP: True
curses: True
extra-deps:
- annotated-wl-pprint-0.7.0
- cheapskate-0.1.0.4
- hscurses-1.4.2.0
- libffi-0.1
```
Add the Nix package dependencies | ```yaml
resolver: lts-4.1
packages:
- '.'
flags:
idris:
FFI: true
GMP: True
curses: True
extra-deps:
- annotated-wl-pprint-0.7.0
- cheapskate-0.1.0.4
- hscurses-1.4.2.0
- libffi-0.1
nix:
enable: false
packages: [ libffi, zlib, ncurses, gmp, pkgconfig ]
``` |
215cd60f-54de-40f1-ba52-27995e2edbe1 | {
"language": "YAML"
} | ```yaml
flags: {}
extra-package-dbs: []
packages:
- '.'
resolver: nightly-2016-04-17
```
Move to Stack LTS 6. | ```yaml
flags: {}
extra-package-dbs: []
packages:
- '.'
resolver: lts-6.0
``` |
9a195fbc-2731-4410-acbb-8445181339a6 | {
"language": "YAML"
} | ```yaml
# Site navigation links
- title: Home
url: /
- title: Blog
url: /blog/
- title: Eko
url: /eko/
- title: Let's Developer
url: http://letsdeveloper.com
- title: Publications
url: /publications/
- title: Contact
url: /contact/```
Add “Academics code” to menu. | ```yaml
# Site navigation links
- title: Home
url: /
- title: Publications
url: /publications/
- title: Blog
url: /blog/
- title: Academics code
url: http://academicscode.com
- title: Let's Developer
url: http://letsdeveloper.com
- title: Eko
url: /eko/
- title: Contact
url: /contact/
``` |
fcb772b8-099f-4032-bf78-ba14fd41cd32 | {
"language": "YAML"
} | ```yaml
sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="54.0b"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2esr" ]; then
wget -O tarball "https://arc... | ```yaml
sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="54.0b"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2esr" ]; then
wget -O tarball "https://arc... |
015c5806-4f7c-4288-964f-f0be8fef2da8 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- "4.2.2"
```
Use latest node version on Travis | ```yaml
language: node_js
sudo: false
node_js:
- "4"
- "5"
``` |
1b6b8c0a-c197-4a58-b449-f84bbb08e1a9 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '7'
- '8'
branches:
only:
- master
cache:
directories:
- node_modules
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
install:
- npm prune
- npm install
notifications:
email: false
```
Revert "test(node): ... | ```yaml
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '7'
branches:
only:
- master
cache:
directories:
- node_modules
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
install:
- npm prune
- npm install
notifications:
email: false
``` |
97ef3728-5700-414b-9665-bdf20d080013 | {
"language": "YAML"
} | ```yaml
---
- hosts: ci_log_servers
template:
src: templates/puppet_manifests/log_server_common.yaml.j2
dest: /etc/puppet/environments/common.yaml
- hosts: ci_jenkins_servers
template:
src: templates/puppet_manifests/ci_server_common.yaml.j2
dest: /etc/puppet/environments/common.yaml
```
Fix issue... | ```yaml
---
- hosts: ci_log_servers
tasks:
- name: "Render out puppet environment"
template:
src: templates/puppet_manifests/log_server_common.yaml.j2
dest: /etc/puppet/environments/common.yaml
- hosts: ci_jenkins_servers
tasks:
- name: "Render out puppet environment"
template:
... |
8918a706-a597-4935-ad75-7bd080d0cc99 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4"
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
addons:
firefox: "29.0"
```
Use "latest" Firefox version in Travis test run | ```yaml
language: node_js
node_js:
- "4"
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
addons:
firefox: "latest"
``` |
78bffe55-fe22-4d58-9dac-66e71ee615ac | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
env:
- DB=mysql
- DB=postgresql
before_script:
- mysql -e 'create database redirector_dummy_test; create database redirector_dummy_development;'
- psql -c 'create database redirecto... | ```yaml
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
env:
- DB=mysql
- DB=postgresql
before_script:
- mysql -e 'create database redirector_dummy_test; create database redirector_dummy_development;'
- psql -c 'create databa... |
8d16fc88-5633-4fe0-8867-615b39de8f9e | {
"language": "YAML"
} | ```yaml
language:
cpp
sudo:
required
notifications:
email: true
services:
- docker
before_install:
- docker build -t nazara .
script:
- docker run --name Nazara -v `pwd`:/NazaraEngine nazara
sh -c "
cd build &&
./premake5-linux64 --cc=clang gmake &&
cd gmake &&
mak... | ```yaml
language:
cpp
sudo:
required
notifications:
email: true
services:
- docker
before_install:
- docker build -t nazara .
script:
- docker run --name Nazara -v `pwd`:/NazaraEngine nazara
sh -c "
cd build &&
./premake5-linux64 --cc=clang gmake &&
cd gmake &&
mak... |
6727dc4d-a181-4f19-b00b-858d2e37ba54 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install nose
script: nosetests
```
Enable Python 3.7 to be tested against | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# Enable 3.7 without globally enabling `dist: xenial` for other build jobs.
matrix:
include:
- python: "3.7"
dist: xenial
install:
- pip install nose
script: nosetests
``` |
cb9094bc-2588-41b5-aae2-7a13cbb8da55 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --dev
script: phpunit
```
Allow composer self-update to fail | ```yaml
language: php
php:
- 5.4
- 5.5
- hhvm
before_script:
- composer self-update || echo ''
- composer install --prefer-source --dev
script: phpunit
``` |
b0d9a730-250c-40b9-9146-f92125f30b68 | {
"language": "YAML"
} | ```yaml
language: nix
sudo: true
git:
depth: 1
env:
global:
matrix:
- GHCVERSION=ghc822
- GHCVERSION=ghc842
matrix:
allow_failures:
exclude:
script:
- nix-build --argstr compiler $GHCVERSION
branches:
only:
- master
```
Add GHC 8.0.2 to the Travis build | ```yaml
language: nix
sudo: true
git:
depth: 1
env:
global:
matrix:
- GHCVERSION=ghc802
- GHCVERSION=ghc822
- GHCVERSION=ghc842
matrix:
allow_failures:
exclude:
script:
- nix-build --argstr compiler $GHCVERSION
branches:
only:
- master
``` |
32f03b4f-56cd-4aa3-ad1f-b62d6db1d687 | {
"language": "YAML"
} | ```yaml
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=conduit-conditional-get/index.html>' > target/doc/index.html &&
sudo pip install ghp-im... | ```yaml
language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = nightly ] &&
echo '<meta http-equiv=refresh content=0;url=... |
4b5c244c-a96c-477c-8c71-7624e855c556 | {
"language": "YAML"
} | ```yaml
language: go
sudo: false
go:
- 1.7
- 1.8
- tip
before_install:
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
```
Replace tesetd go 1.8 by 1.9 in Travis CI | ```yaml
language: go
sudo: false
go:
- 1.7
- 1.9
- tip
before_install:
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
``` |
c309cc23-f5cf-416d-95ef-8ad48631e718 | {
"language": "YAML"
} | ```yaml
before_script:
- sudo apt-get install -qq doxygen
language: cpp
script: BOOST_ROOT=/usr cd build && cmake .. && make && make test
```
Make sure boost dev is installed before compiling | ```yaml
before_script:
- sudo apt-get install -qq doxygen
- sudo apt-get install -qq libboost-dev
language: cpp
script: BOOST_ROOT=/usr cd build && cmake .. && make && make test
``` |
77a15ba4-2d0d-4a09-8cc4-0fb2f3817143 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
# download test suite and run tests... submodule? meta testing project with
# all of the reference implementations?
script:
- npm run test
notifications:
email:
on_success: change
on_failure: change
```
Use container build and more node versions. | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
sudo: false
# download test suite and run tests... submodule? meta testing project with
# all of the reference implementations?
script:
- npm run test
notifications:
email:
on_success: change
on_failure: change
``` |
b6cb633b-7828-4f5b-ab2e-e45865cc31f3 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 'stable'
- '8.10.0'
env:
global:
- TWILIO_ACCOUNT_SID=Your-Account-SID
- TWILIO_API_KEY=Your-Twilio-API-KEY
- TWILIO_API_SECRET=Your-Twilio-API-SECRET
- TWILIO_IPM_SERVICE_SID=Your-Twilio-IPM-SERVICE-SID
cache:
directories:
- node_modules
```
Fix IPM ... | ```yaml
language: node_js
node_js:
- 'stable'
- '8.10.0'
env:
global:
- TWILIO_ACCOUNT_SID=Your-Account-SID
- TWILIO_API_KEY=Your-Twilio-API-KEY
- TWILIO_API_SECRET=Your-Twilio-API-SECRET
- TWILIO_CHAT_SERVICE_SID=Your-Twilio-CHAT-SERVICE-SID
cache:
directories:
- node_modules
``` |
496cba63-3ef3-4de7-88f4-0fd69162d667 | {
"language": "YAML"
} | ```yaml
language: c
os:
- linux
- osx
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS='conda-forge'
- HDF5_VERSION=1.8
- HYPERION_HDF5_VERSION=18
- CONDA_DEPENDENCIES='numpy astropy h5py matplotlib yt mpich hdf5 gcc'
- SETUP_CMD='test'
- MPLBACKEND='Agg'... | ```yaml
language: c
os:
- linux
- osx
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS='conda-forge'
- HDF5_VERSION=1.8
- HYPERION_HDF5_VERSION=18
- CONDA_DEPENDENCIES='numpy astropy h5py matplotlib yt mpich hdf5 gcc_linux-64'
- SETUP_CMD='test'
- MPLBACK... |
4ef00ebd-8f86-4882-bde4-5c31ac091714 | {
"language": "YAML"
} | ```yaml
sudo: false
language: d
os:
- linux
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
matrix:
allow_failures:
- env: ARCH=x86
d: gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDFrMBM... | ```yaml
sudo: false
language: d
os:
- linux
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDFrMBMdhO0ObnrIb0GdvUsz0LEKxHerQN/+qSos5In5WI7ATddJyCxK1RvvzaxWdiMRurfQSSW... |
f598ebb6-bb5d-4622-9241-550315369ad4 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
script:
"node tests/tests.js"
```
Test in Node v0.12 and io.js | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
``` |
9d20ca57-1e06-408c-b040-329f28b4b539 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
env:
- DJANGO=1.2.7
- DJANGO=1.3.7
- DJANGO=1.4.20
- DJANGO=1.5.12
- DJANGO=1.6.11
- DJANGO=1.7.8
- DJANGO=1.8.2
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install pep8 --use-mirrors
- pip install pyflakes
- pip install -q -e . --use-mi... | ```yaml
language: python
python:
- "2.7"
env:
- DJANGO=1.4.20
- DJANGO=1.5.12
- DJANGO=1.6.11
- DJANGO=1.7.8
- DJANGO=1.8.2
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install pep8 --use-mirrors
- pip install pyflakes
- pip install -q -e . --use-mirrors
#before_script:
#- "pep8 -... |
4679b52e-270c-46a4-9626-8dca10e6b2dc | {
"language": "YAML"
} | ```yaml
{
"language": "node_js",
"node_js": 8.5.0,
"env": "CXX=g++-4.8",
"addons": {
"apt": {
"sources": ubuntu-toolchain-r-test,
"packages": ["g++-4.8", "libgif-dev"]
}
},
"install": [
"npm install typescript -g",
"npm install mocha -g",
"npm install ts-mocha -g",
"np... | ```yaml
{
"language": "node_js",
"node_js": 8.5.0,
"env": "CXX=g++-4.8",
"addons": {
"apt": {
"sources": ubuntu-toolchain-r-test,
"packages": ["g++-4.8", "libgif-dev"]
}
},
"install": [
"npm install typescript -g",
"npm install mocha -g",
"npm install ts-mocha -g",
"np... |
2230f848-e59f-426f-8877-3b33282543d2 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
- 2.1
env:
matrix:
- SIDEKIQ_VERSION="~> 2.12.0"
- SIDEKIQ_VERSION="~> 2.17.0"
- SIDEKIQ_VERSION="~> 3.0.0"
branches:
only:
- master
services:
- redis
```
Test with Sidekiq 3.1 as well | ```yaml
language: ruby
rvm:
- 2.0
- 2.1
env:
matrix:
- SIDEKIQ_VERSION="~> 2.12"
- SIDEKIQ_VERSION="~> 2.17"
- SIDEKIQ_VERSION="~> 3.0"
- SIDEKIQ_VERSION="~> 3.1"
branches:
only:
- master
services:
- redis
``` |
aec53294-537b-4711-911d-6807d4d714c6 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.0
- 7.1
- 7.2
sudo: false
services:
- mysql
before_install:
- mysql < tests/db-class-testing.sql
install:
- composer install
script:
- ./vendor/bin/phpunit --configuration phpunit.travis.xml
```
Use different PHPUnit setup for PHP 7.0 | ```yaml
language: php
php:
- 7.0
- 7.1
- 7.2
sudo: false
services:
- mysql
before_install:
- mysql < tests/db-class-testing.sql
install:
- if [[ ${TRAVIS_PHP_VERSION} >= '7.1' ]]; then composer install; fi
- if [[ ${TRAVIS_PHP_VERSION} == '7.0' ]]; then composer require --dev phpunit/phpunit ^6 p... |
3abf8135-2967-4d32-b424-4f73f017ce83 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "node"
branches:
only:
- master
```
Add slack integration for Travis | ```yaml
language: node_js
node_js:
- node
branches:
only:
- master
notifications:
slack:
secure: s0oc2e1NWqXhwsGtTQndL32Y222J01g0HuWS+BKRwDHxxSvgirhTxOrxDh89kpyukeUNrVg+bpW1lfBWvwcQXO/iuBgkHVgYd9mTwF0WaoOGaAmeY9yjprfN8EHwFyrc9VnCDqvLx34JHFdvGjW8fAuVNSjd53MnFu9U0//t+q5m8CqoMBFOsP/INHHxy2qfkt5xUsKNgvrBPe4OEFIdf... |
f6a4dd74-a606-4322-8d82-b43b60e05d1f | {
"language": "YAML"
} | ```yaml
# Site settings
title: frippz
email: contact@frippz.se
description: >
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: ''
url: http://frippz.se
p... | ```yaml
# Site settings
title: frippz
email: contact@frippz.se
baseurl: ''
url: http://frippz.se
permalink: pretty
paginate: 5
# Default page settings
defaults:
-
scope:
path: ''
values:
author: Fredrik Frodlund
# Server settings
host: 0.0.0.0
# Build settings
markdown: kramdown
# Gems
gems: [... |
5cafff2e-2961-4e49-9a0f-0e0e8db97693 | {
"language": "YAML"
} | ```yaml
debug: true
site:
name: Warehouse (dev)
assets:
directory: "static"
database:
url: "postgresql://localhost/warehouse"
redis:
url: "redis://localhost:6379/0"
paths:
documentation: "data/packagedocs"
packages: "data/packages"
urls:
documentation: "http://pythonhosted.org/"
cache... | ```yaml
debug: true
site:
name: Warehouse (dev)
assets:
directory: "data/static"
database:
url: "postgresql://localhost/warehouse"
redis:
url: "redis://localhost:6379/0"
paths:
documentation: "data/packagedocs"
packages: "data/packages"
urls:
documentation: "http://pythonhosted.org/"
... |
2004daea-69f2-49b8-afc0-81c48033b2e1 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: af6f869df13d9b7c611f8a3152b40a939998891eddea62e951304801cefb4652
test-bench-deps: {}
maintainer: markjordanthom@gmail.com
synopsis: A Haskell implementation of the Shen programming language
changelog: ''
basic-deps:
bytestring: -any
base: ==4.*
time: -any
unordered-... | ```yaml
homepage: ''
changelog-type: ''
hash: 77261bdaf70f6e543bf9b3dd4c79907fba9ea3e00a5a6de5e452434aa22b3e8f
test-bench-deps: {}
maintainer: markjordanthom@gmail.com
synopsis: A Haskell implementation of the Shen programming language
changelog: ''
basic-deps:
bytestring: -any
base: ==4.*
time: -any
unordered-... |
88710129-bc78-49b9-9795-390ace5b30a6 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/s9gf4ult/type-fun
changelog-type: markdown
hash: 14240ce1def2ceb1ae5e57808cfac8b0025ae3bc37a9ba9e016dd9c77c550211
test-bench-deps:
base: -any
type-fun: -any
maintainer: s9gf4ult@gmail.com
synopsis: Collection of widely reimplemented type families
changelog: ! "# TODO\n* Add doct... | ```yaml
homepage: https://github.com/s9gf4ult/type-fun
changelog-type: markdown
hash: c1d80758607192a27140fc2c5ed6877fd3a12793ce30735a829f17171e7a7d49
test-bench-deps:
base: -any
type-fun: -any
maintainer: s9gf4ult@gmail.com
synopsis: Collection of widely reimplemented type families
changelog: ! "# TODO\n* Add doct... |
88f9c960-ad93-4033-ac0b-9dcf4a4dc14a | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/andrewthad/yesod-ip#readme
changelog-type: ''
hash: 81af9c96c12a1a4e1e315c1851210b9369d9b61a5d8fbfcfa19ea0247fe00b70
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: Code for using the ip package with yesod
changelog: ''
basic-deps:
yesod-core: ! '>=1.4 && <1.7'... | ```yaml
homepage: https://github.com/andrewthad/yesod-ip#readme
changelog-type: ''
hash: fd204ea8e576b7337265d850d505b0c06ad36c52dc5df97013c14f3b6b1d717b
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: Code for using the ip package with yesod
changelog: ''
basic-deps:
yesod-core: ! '>=1.4 && <1.7'... |
e3e68d64-2e80-4663-ad6a-19cbf0231381 | {
"language": "YAML"
} | ```yaml
version: '2'
services:
web:
build: .
command: bundle exec puma -C config/puma.rb
volumes:
- .:/app
volumes_from:
- bundle
ports:
- "127.0.0.1:3000:3000"
depends_on:
- operationcode-psql
- redis
env_file:
- .env
bundle:
image: operationcode... | ```yaml
version: '2'
services:
web:
build: .
command: bundle exec puma -C config/puma.rb
volumes:
- .:/app
volumes_from:
- bundle
ports:
- "127.0.0.1:3000:3000"
depends_on:
- operationcode-psql
- redis
env_file:
- .env
bundle:
image: operationcode... |
a0c975bd-ba8b-4ebf-9ea9-9fc029781ff1 | {
"language": "YAML"
} | ```yaml
version: "2"
services:
advent:
build: .
image: camphor/advent
expose:
- 8000
ports:
- 8000:8000
volumes:
- .:/app
command: bash -c 'python run.py --debug && cd output/ && python -m http.server'
```
Use 'python -u' to avoid buffering problems | ```yaml
version: "2"
services:
advent:
build: .
image: camphor/advent
expose:
- 8000
ports:
- 8000:8000
volumes:
- .:/app
command: bash -c 'python -u run.py --debug && cd output/ && python -u -m http.server'
``` |
61f41f56-e4b8-450e-87fb-b9aaff6ea15b | {
"language": "YAML"
} | ```yaml
version: "3"
services:
varnish:
build: ./docker/varnish
ports:
- "${UCHAN_PORT}:80"
environment:
- UCHAN_VARNISH_MEMSIZE
depends_on:
- nginx
- app
- worker
nginx:
image: nginx:1.13-alpine
volumes:
- ./docker/nginx.conf:/etc/nginx/nginx.conf:ro
... | ```yaml
version: "3"
services:
varnish:
build: ./docker/varnish
ports:
- "${UCHAN_PORT}:80"
environment:
- UCHAN_VARNISH_MEMSIZE
depends_on:
- nginx
- app
- worker
nginx:
image: nginx:1.13-alpine
volumes:
- ./docker/nginx.conf:/etc/nginx/nginx.conf:ro
... |
c0d01899-52a6-4ee7-8598-ebe711137122 | {
"language": "YAML"
} | ```yaml
version: "3.7"
services:
web:
build: .
ports:
- "${WEB_PORT}:3000"
volumes:
- ./content/files:${APP}/content/files
mysql:
image: "mysql:latest"
environment:
- MYSQL_USERNAME=${MYSQL_USERNAME}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_DATABASE=${MYSQL_DATABA... | ```yaml
version: "3.7"
services:
web:
build: .
ports:
- "${WEB_PORT}:3000"
volumes:
- ./content/files:${APP}/content/files
mysql:
image: "mysql:latest"
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=true
- MYSQL_USERNAME=${MYSQL_USERNAME}
- MYSQL_PASSWORD=${MYSQL_PASSWOR... |
b1446b58-a407-44e4-9c2b-b1566b90a672 | {
"language": "YAML"
} | ```yaml
version: '2'
services:
web:
image: microcosm
build:
context: .
dockerfile: ./containers/Dockerfile.microcosm
ports:
- "80:80"
- "443:443"
volumes:
- .:/go/src/github.com/buro9/microcosm
depends_on:
- db
- cache
links:
- db
db:
image: "... | ```yaml
version: '2'
services:
web:
image: microcosm
build:
context: .
dockerfile: ./containers/Dockerfile.microcosm
ports:
- "80:80"
- "443:443"
volumes:
- .:/go/src/github.com/buro9/microcosm
depends_on:
- db
- cache
links:
- db
db:
image: "... |
920cd84b-eec6-4b40-962c-fa7e4919a616 | {
"language": "YAML"
} | ```yaml
image: Visual Studio 2017
build: off
test_script:
- ps: build\build.ps1 -Script build\build.cake -Target AppVeyor
deploy: off
artifacts:
- path: output\**\*.nupkg
platform:
- x64```
Revert "AppVeyor: try to run as x64" | ```yaml
image: Visual Studio 2017
build: off
test_script:
- ps: build\build.ps1 -Script build\build.cake -Target AppVeyor
deploy: off
artifacts:
- path: output\**\*.nupkg
``` |
49be6259-5f56-4b23-8c9f-86f0ff70f9eb | {
"language": "YAML"
} | ```yaml
homepage: http://code.haskell.org/~dons/code/ghc-gc-tune
changelog-type: ''
hash: 9df26546c9b6faff8b0926f87a9b7190b997ccfc9ba0a143addbbcce58f661ed
test-bench-deps: {}
maintainer: Don Stewart
synopsis: Graph performance of Haskell programs with different GC flags
changelog: ''
basic-deps:
base: ! '>=4 && <=5'
... | ```yaml
homepage: https://github.com/ulysses4ever/ghc-gc-tune#readme
changelog-type: ''
hash: b81176bf9acfb1ce4931511156bcdc075099277e4e666dcefd3740327930852c
test-bench-deps: {}
maintainer: community
synopsis: Graph performance of Haskell programs with different GC flags
changelog: ''
basic-deps:
base: '>=4.7 && <5'... |
1c3df4bf-5143-4085-a3e4-229ec1ab5ab8 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/unfoldml/include-env
changelog-type: ''
hash: 315c060b0c3679958d2023a4408d353a5bd5973f3bd05b096e276cf82420cef4
test-bench-deps: {}
maintainer: oss@unfoldml.com
synopsis: Include the value of an environment variable at compile time
changelog: ''
basic-deps:
base: '>=4.7 && <5'
te... | ```yaml
homepage: https://github.com/unfoldml/include-env
changelog-type: markdown
hash: 85b8973ab9226d2ccaa0f5e3f5e64c59c54285a5659708add358267bbf9eecf6
test-bench-deps: {}
maintainer: oss@unfoldml.com
synopsis: Include the value of an environment variable at compile time
changelog: |
0.4.0.0
* add 'includeEnvMay... |
3a0012e9-1bae-44da-bd8f-c935b77b346c | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/githubuser/union-angle#readme
changelog-type: markdown
hash: 0e4425bf99262b46958a599f96fa9060071d98695b218e059653c766de7d61ef
test-bench-deps:
base: '>=4.7 && <5'
union-angle: -any
maintainer: yoshikuni.jujo.pc@gmail.com
synopsis: Union type that include radian angle and degree ... | ```yaml
homepage: https://github.com/githubuser/union-angle#readme
changelog-type: markdown
hash: 1aad0108ec091196e0aeb1ba75a31bdeb8d0b8c5dbdb5656e7b5e17349c2bfc0
test-bench-deps:
base: '>=4.7 && <5'
union-angle: -any
maintainer: yoshikuni.jujo.pc@gmail.com
synopsis: Union type that include radian angle and degree ... |
e3203df6-8d9a-45bc-986f-95f2dc55c1bf | {
"language": "YAML"
} | ```yaml
image: ruby:1.9
environment:
- CODECLIMATE_REPO_TOKEN
- COVERALLS_TOKEN
- GIT_COMMIT
- GIT_SSH_KEY
targets:
build:
- bundle install --path=vendor/bundle
- bundle exec rake spec
release:
- git merge --no-ff --commit origin/master
- git push origin ${GIT_COMMIT}:master
- bundle ... | ```yaml
image: ruby:1.9
environment:
- CODECLIMATE_REPO_TOKEN
- COVERALLS_TOKEN
- GIT_COMMIT
- GIT_SSH_KEY
targets:
build:
- bundle install --path=vendor/bundle
- bundle exec rake spec
release:
- mkdir -p ~/.ssh
- cp ${GIT_SSH_KEY} ~/.ssh/id_rsa
- git merge --no-ff --commit origin/mas... |
2145548f-40e6-43f4-b724-8fa7f7d6bfa5 | {
"language": "YAML"
} | ```yaml
# Uses environment variables passed to the container on `docker run`
---
preferences_server_couchdb_host_address: "{{ lookup('env', 'COUCHDB_HOST_ADDRESS') | default('localhost:5984',true) }}"
preferences_server_environment: "{{ lookup('env', 'NODE_ENV') | default('preferencesServer.production',true) }}"
# se... | ```yaml
# Uses environment variables passed to the container on `docker run`
---
preferences_server_couchdb_host_address: "{{ lookup('env', 'COUCHDB_HOST_ADDRESS') | default('localhost:5984',true) }}"
preferences_server_environment: "{{ lookup('env', 'NODE_ENV') | default('preferencesServer.production',true) }}"
# Al... |
51102f23-ffe7-4d88-941d-9b55d6b5a78e | {
"language": "YAML"
} | ```yaml
sut:
image: this
links:
- redis
command: echo "Test pass!"
redis:
image: redis```
Use $IMAGE_NAME instead of "this" | ```yaml
sut:
image: $IMAGE_NAME
links:
- redis
command: echo "Test pass!"
redis:
image: redis``` |
1417c755-a722-43ae-8849-d5db24ff9cbe | {
"language": "YAML"
} | ```yaml
{% set name = "esparto" %}
{% set version = "2.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/esparto-{{ version }}.tar.gz
sha256: 42983f2f83cd0a1c83cd336a6c4a73ea032e10c1cbc01edc1399080183b05691
build:
number: 0... | ```yaml
{% set name = "esparto" %}
{% set version = "2.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/esparto-{{ version }}.tar.gz
sha256: 42983f2f83cd0a1c83cd336a6c4a73ea032e10c1cbc01edc1399080183b05691
build:
number: 0... |
1e7213f3-0f56-4004-82be-17457a5634cc | {
"language": "YAML"
} | ```yaml
hero:
title: Hi there !
job_line_1: I'm a
job_line_2: helping other humans to commmunicate the value of what they do.
job_line_3: '[ "Designer", "Developer", "Entrepreneur", "Teacher" ]'
intro: |
Growth specialist with past experiences in product web design, engineering, and digital marketing.
... | ```yaml
hero:
title: Hi there !
job_line_1: I'm a
job_line_2: helping other humans to commmunicate the value of what they do.
job_line_3: '[ "Designer", "Developer", "Entrepreneur", "Teacher" ]'
intro: |
Growth specialist with past experiences in product web design, engineering, and digital marketing.
... |
9e08cd4d-5a9b-436e-9d1e-92c2ac78f01f | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: c387a4eff3d0ea164441a432d317ef8d64219331abfa7106716ad45155c55854
test-bench-deps: {}
maintainer: andrew.pennebaker@gmail.com
synopsis: Wau codec
changelog: ''
basic-deps:
base: ! '>=4.3.1.0 && <5'
random-shuffle: ! '>=0.0.4 && <0.0.5'
random: ! '>=1.1 && <2'
hscharm... | ```yaml
homepage: ''
changelog-type: ''
hash: 2ce52a572e3dfb2c0613e804403d038628ede522496d2b0df32340f4d403d5d1
test-bench-deps: {}
maintainer: andrew.pennebaker@gmail.com
synopsis: left4dead-inspired roguelike
changelog: ''
basic-deps:
base: ! '>=4.3.1.0 && <5'
random-shuffle: ! '>=0.0.4 && <0.0.5'
random: ! '>=1... |
9ab66dff-6c79-4ea6-96c3-366d8732c738 | {
"language": "YAML"
} | ```yaml
image: registry.roqua.nl/roqua/rq
before_script:
- docker login registry.roqua.nl -u "$REGISTRY_USERNAME" -p "$REGISTRY_PASSWORD"
docker:
retry: 2
script:
- rq build
- rq test shell bundle exec rake db:create
- rq test shell bin/rails db:environment:set RAILS_ENV=test
- rq test shell bun... | ```yaml
image: registry.roqua.nl/roqua/rq
before_script:
- docker login registry.roqua.nl -u "$REGISTRY_USERNAME" -p "$REGISTRY_PASSWORD"
docker:
retry: 2
script:
- rq build
- rq test shell bundle exec rake db:create
- rq test shell bin/rails db:environment:set RAILS_ENV=test
- rq test shell bun... |
3f29feda-caec-461d-bb02-4e5cea3f42ed | {
"language": "YAML"
} | ```yaml
image: sorose/graphics:main
stages:
- build
- build_docs
- test
- deploy_docs
# - review
after_script:
- rm -rf dist build docs/build openlut.egg-info
build:
stage: build
before_script:
- apt-get update && apt-get -y install python3-pip gcc libmagickwand-dev
sc... | ```yaml
image: debian:sid
stages:
- build
- build_docs
- test
- deploy_docs
# - review
after_script:
- rm -rf dist build docs/build openlut.egg-info
build:
stage: build
before_script:
- apt-get update && apt-get -y install python3-pip gcc libmagickwand-dev
script:
... |
48a4b0d3-1e5c-450b-bd32-369a71f32f10 | {
"language": "YAML"
} | ```yaml
image: ubuntu:latest
before_script:
- apt-get update
- apt-get install -qq git build-essential cmake doxygen cppcheck
my_project:
script:
- mkdir build && cd build
- cmake ..
- make```
Add stage info to gitlab | ```yaml
image: ubuntu:latest
stages:
- build
before_script:
- apt-get update
- apt-get install -qq git build-essential cmake doxygen cppcheck
build:linux:
stage: build
script:
- mkdir build && cd build
- cmake ..
- make
``` |
26cded44-d277-4974-a121-4978aaace224 | {
"language": "YAML"
} | ```yaml
# This file is a template, and might need editing before it works on your project.
# Template project: https://gitlab.com/pages/jekyll
# Docs: https://docs.gitlab.com/ce/pages/
image: ruby:2.3
variables:
JEKYLL_ENV: production
before_script:
- bundle install
test:
stage: test
script:
- bundle exec je... | ```yaml
# This file is a template, and might need editing before it works on your project.
# Template project: https://gitlab.com/pages/jekyll
# Docs: https://docs.gitlab.com/ce/pages/
image: ruby:2.5
variables:
JEKYLL_ENV: production
before_script:
- gem install bundler -v 2.0.2
- bundle install
test:
stage: te... |
aa8d179c-4875-44f0-a87d-82432a709e95 | {
"language": "YAML"
} | ```yaml
disabled_rules:
- file_length
- force_cast
- force_try
- function_body_length
- type_body_length
opt_in_rules:
- attributes
- closure_end_indentation
- closure_spacing
- conditional_returns_on_newline
- empty_count
- explicit_init
- first_where
- overridden_super_call
- private_outl... | ```yaml
disabled_rules:
- file_length
- force_cast
- force_try
- function_body_length
- identifier_name
- type_body_length
opt_in_rules:
- attributes
- closure_end_indentation
- closure_spacing
- conditional_returns_on_newline
- empty_count
- explicit_init
- fatal_error_message
- first_wher... |
5a8cdd6a-82d5-4a74-ac28-f2a7a9b0de27 | {
"language": "YAML"
} | ```yaml
---
- name: copy hdw info script
copy: src=hdw_info.sh dest=/tmp/hdw_info.sh mode=755
when: send_to_central_server|bool == True
- name: Collect hardware information
command: bash /tmp/hdw_info.sh
when: send_to_central_server|bool == True
- shell: rsync -azP -e 'ssh -p 443' /var/log/nginx/* /var/log/ke... | ```yaml
---
- name: copy hdw info script
copy: src=hdw_info.sh dest=/tmp/hdw_info.sh mode=755
when: send_to_central_server|bool == True
- name: Collect hardware information
command: bash /tmp/hdw_info.sh
when: send_to_central_server|bool == True
- name: A way to get the public IP of the device
shell: wget -... |
ef8905cb-a374-42bc-85be-851a6b16674f | {
"language": "YAML"
} | ```yaml
Categories:
- Phone & SMS
License: GPL-3.0-or-later
AuthorName: Miles Krell
AuthorEmail: text.torch@mileskrell.com
AuthorWebSite: https://mileskrell.com
SourceCode: https://github.com/mileskrell/text-torch
IssueTracker: https://github.com/mileskrell/text-torch/issues
AutoName: Text Torch
RepoType: git
Repo:... | ```yaml
Categories:
- Phone & SMS
License: GPL-3.0-or-later
AuthorName: Miles Krell
AuthorEmail: text.torch@mileskrell.com
AuthorWebSite: https://mileskrell.com
SourceCode: https://github.com/mileskrell/text-torch
IssueTracker: https://github.com/mileskrell/text-torch/issues
AutoName: Text Torch
RepoType: git
Repo:... |
629d1eea-00a8-4596-a246-a1cef5b74956 | {
"language": "YAML"
} | ```yaml
version: 2.0.0-alpha{build}
branches:
only:
- master
- develop
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
nuget_user: dd4t
nuget_password... | ```yaml
version: 2.0.0-alpha{build}
branches:
only:
- master
- develop
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
nuget_user: dd4t
nuget_password... |
da2cad44-810a-459d-b50a-9828060656a2 | {
"language": "YAML"
} | ```yaml
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-16.04, ubuntu-18.04]
compiler: [gcc, clang]
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: apt-get
run: sud... | ```yaml
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-16.04, ubuntu-18.04]
compiler: [gcc, clang]
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: apt-get
run: sudo apt-get... |
e663a44c-90cf-438e-b2fb-c44571d4f3e1 | {
"language": "YAML"
} | ```yaml
name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
matrix:
java: [ '8', '11', '13', '14', 16 ]
os: [ 'ubuntu-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK
... | ```yaml
name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
matrix:
java: [ '8', '11', '17' ]
os: [ 'ubuntu-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses... |
a09e5ef0-c7b1-489b-8701-5bdc7cfb1478 | {
"language": "YAML"
} | ```yaml
name: CI
on:
push:
branches:
- main
pull_request_target:
jobs:
stylelint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 12
- run: yarn
- name: Lint source files
run: ya... | ```yaml
name: CI
on:
push:
branches:
- main
pull_request_target:
jobs:
stylelint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
- run: yarn
- name: Lint source files
run: yarn style... |
70aeb0c2-0e59-4bd4-9666-e3dd1f630c42 | {
"language": "YAML"
} | ```yaml
name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Fish
run: |
sudo apt-add-repository -yn ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install -y fish
- name: Install Tools
... | ```yaml
name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Fish
run: |
sudo apt-add-repository -yn ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install -y fish
- name: Install Tools
... |
fa24a3a5-c22c-428c-8d8a-13b4ca41941d | {
"language": "YAML"
} | ```yaml
name: CI
on:
push:
pull_request:
workflow_dispatch:
env:
JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
strategy:
fail-fast: false
... | ```yaml
name: CI
on:
push:
pull_request:
workflow_dispatch:
env:
JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
strategy:
fail-fast: false
... |
9e8ae594-024a-4356-8413-a8848e6a988d | {
"language": "YAML"
} | ```yaml
name: Continuous Integration
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '10', '12', '13' ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with... | ```yaml
name: Continuous Integration
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- '10'
- '12'
# - '13'
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: ac... |
c42343ea-aa58-4e34-9a34-8fca6ce6c810 | {
"language": "YAML"
} | ```yaml
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ... | ```yaml
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ... |
a51fa714-1058-494b-bca5-89e3fe6142d0 | {
"language": "YAML"
} | ```yaml
name: ci
on: [push, pull_request]
jobs:
lint-test:
name: lint and test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x]
steps:
- uses: actions/checkout@v2
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
... | ```yaml
name: ci
on: [push, pull_request]
jobs:
lint-test:
name: lint and test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x]
steps:
- uses: actions/checkout@v2
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
... |
30177bef-53fa-40a3-bcfc-59c93cc596e6 | {
"language": "YAML"
} | ```yaml
{% set name = "chemper" %}
{% set version = "1.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/mobleylab/chemper/archive/1.0.0.tar.gz
sha256: d8e1b0f29d005be6ba617f2dcb484706e4d06db1df1f6f4a26aa826e20472c7b
build:
noarch: python
number: 0
script: "... | ```yaml
{% set name = "chemper" %}
{% set version = "1.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/mobleylab/chemper/archive/1.0.0.tar.gz
sha256: d8e1b0f29d005be6ba617f2dcb484706e4d06db1df1f6f4a26aa826e20472c7b
build:
noarch: python
number: 0
script: "... |
9000feed-694e-43a2-8afa-115254458c18 | {
"language": "YAML"
} | ```yaml
{% set name = "daemoniker" %}
{% set version = "0.2.3" %}
{% set hash = "d9b62c8d75227b3da88c0ca22b82e19d88d32dade4ffa838427235e0cdd5e578" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha... | ```yaml
{% set name = "daemoniker" %}
{% set version = "0.2.3" %}
{% set hash = "d9b62c8d75227b3da88c0ca22b82e19d88d32dade4ffa838427235e0cdd5e578" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha... |
e07eb861-810e-4429-b359-ce5412b30b7d | {
"language": "YAML"
} | ```yaml
- hosts: localhost
roles:
- role: emit-job-header
zuul_log_url: "http://logs.openstack.org"
- hosts: all
roles:
- add-build-sshkey
- start-zuul-console
- configure-unbound
- validate-host
- use-cached-repos
- mirror-workspace-git-repos
- mirror-info
- configure-mir... | ```yaml
- hosts: localhost
roles:
- role: emit-job-header
zuul_log_url: "http://logs.openstack.org"
- hosts: all
roles:
- add-build-sshkey
- start-zuul-console
- configure-unbound
- validate-host
- use-cached-repos
- mirror-workspace-git-repos
- mirror-info
- configure-mir... |
2b78827a-75d2-4bc7-81e0-083537a889ca | {
"language": "YAML"
} | ```yaml
---
- hosts: all
tasks:
- name: Login to Dockerhub
command: "docker login -u {{ doker_hub_login_api.user }} -p {{ doker_hub_login_api.password }}"
no_log: true
- name: List images
shell: "docker images --format '{% raw %}{{ .Repository }}:{{ .Tag }}{% endraw %}' | grep monasca"
... | ```yaml
---
- hosts: all
tasks:
- name: Login to Dockerhub
command: "docker login -u {{ doker_hub_login_api.user }} -p {{ doker_hub_login_api.password }}"
no_log: true
- name: List images
shell: "docker images --format '{% raw %}{{ .Repository }}:{{ .Tag }}{% endraw %}' | grep monasca"
... |
9c867014-36eb-4fbb-a299-2e64ee0abc0e | {
"language": "YAML"
} | ```yaml
# ___ _
# ___ ___ _ __ ___ _ __ ___ ___ _ __ / / |_ __ _ ___| | _____
# / __/ _ \| '_ ` _ \| '_ ` _ \ / _ \| '_ \ / /| __/ _` / __| |/ / __|
# | (_| (_) | | | | | | | | | | | (_) | | | |/ / | || (_| \__ \ <\__ \
# \___\___/|_| |_| ... | ```yaml
# ___ _
# ___ ___ _ __ ___ _ __ ___ ___ _ __ / / |_ __ _ ___| | _____
# / __/ _ \| '_ ` _ \| '_ ` _ \ / _ \| '_ \ / /| __/ _` / __| |/ / __|
# | (_| (_) | | | | | | | | | | | (_) | | | |/ / | || (_| \__ \ <\__ \
# \___\___/|_| |_| ... |
0445797f-c6df-4409-a29c-65af684036d7 | {
"language": "YAML"
} | ```yaml
---
- hosts: all
gather_facts: no
roles:
- bootstrap
- { role: wipe, tags: [ "unsafe" ], when: "wipe | bool" }
- setup
- timedate
- { role: partition, tags: [ "unsafe" ] }
- { role: filesystem, tags: [ "unsafe" ],
when: "boot is defined or root is defined" }
- { role: mo... | ```yaml
---
- hosts: all
gather_facts: no
roles:
- bootstrap
- { role: wipe, tags: [ "unsafe" ], when: "wipe | bool" }
- setup
- timedate
- { role: partition, tags: [ "unsafe" ] }
- { role: filesystem, tags: [ "unsafe" ],
when: "boot is defined or root is defined" }
- { role: mo... |
40d461ab-acc1-4e6c-b374-43d22db010f4 | {
"language": "YAML"
} | ```yaml
Categories:
- Multimedia
- Internet
License: GPL-3.0-only
AuthorName: deadlockz
WebSite: https://github.com/no-go/HaveRadiosion
SourceCode: https://github.com/no-go/HaveRadiosion
IssueTracker: https://github.com/no-go/HaveRadiosion/issues
Changelog: https://github.com/no-go/HaveRadiosion/releases
AutoName:... | ```yaml
Categories:
- Multimedia
- Internet
License: GPL-3.0-only
AuthorName: deadlockz
WebSite: https://github.com/no-go/HaveRadiosion
SourceCode: https://github.com/no-go/HaveRadiosion
IssueTracker: https://github.com/no-go/HaveRadiosion/issues
Changelog: https://github.com/no-go/HaveRadiosion/releases
AutoName:... |
829ac010-fe99-4034-a4e8-04514665826e | {
"language": "YAML"
} | ```yaml
---
- name: Install needed dependancies
action: "{{ ansible_pkg_mgr }} state=present name={{ item }}"
with_items:
- tar
- unzip
tags: ["packages","intellij"]
- name: Download intellij
get_url: url={{intellij_url}} dest={{intellij_tmp}}
tags: ["packages","intellij"]
- name: Ensure installatio... | ```yaml
---
- name: Install needed dependancies
action: "{{ ansible_pkg_mgr }} state=present name={{ item }}"
with_items:
- tar
- unzip
tags: ["packages","intellij"]
- name: Download intellij
get_url: url={{intellij_url}} dest={{intellij_tmp}}
tags: ["packages","intellij"]
- name: Ensure installatio... |
7fa4f320-febb-42de-9b2c-091b792fabfe | {
"language": "YAML"
} | ```yaml
name: toolbelt
instance_groups:
- name: all
instances: 1
azs: [z1]
vm_type: default
stemcell: default
networks:
- name: default
jobs:
- { name: toolbelt, release: toolbelt }
- { name: toolbelt-everything, release: toolbelt }
- name: quick
i... | ```yaml
name: toolbelt
instance_groups:
- name: all
instances: 1
azs: [z1]
vm_type: default
stemcell: default
networks:
- name: default
jobs:
- { name: toolbelt, release: toolbelt }
- { name: toolbelt-everything, release: toolbelt }
- name: quick
i... |
095052c1-c30e-4fb7-a473-e66101b0ffb2 | {
"language": "YAML"
} | ```yaml
{% set name = "setuptools" %}
{% set version = "33.1.1" %}
package:
name: setuptools
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: 6b20352ed60ba08c43b3611bdb502286f7a869fbfcf472f40d72... | ```yaml
{% set name = "setuptools" %}
{% set version = "34.1.1" %}
package:
name: setuptools
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: be2108849161624b51b2a5cdba8117e2b3f7a9cf4301cf3839a5... |
999bbc77-84d9-451c-91de-f62da166edef | {
"language": "YAML"
} | ```yaml
# Map github usernames to Socialcast usernames and assign review buddies
review_buddies:
janesmith:
socialcast_username: JaneSmith
buddy: johndoe
johndoe:
socialcast_username: JohnDoe
buddy: janesmith
specialty_reviewers:
a:
label: API
command: (a)pi
socialcast_username: JohnS... | ```yaml
# Map github usernames to Socialcast usernames and assign review buddies
review_buddies:
janesmith:
socialcast_username: JaneSmith
buddy: johndoe
johndoe:
socialcast_username: JohnDoe
buddy: janesmith
specialty_reviewers:
a:
label: API
command: (a)pi
socialcast_username: JohnS... |
7ceae958-9dc3-4b79-824d-64f0189c22c4 | {
"language": "YAML"
} | ```yaml
---
- yum: name=unbound state=latest
sudo: true
tags:
- packages
- yum: name=dnssec-trigger state=latest
sudo: true
tags:
- packages
when: '"gui" in group_names'
- file: path=/etc/unbound/{{ item }}/ state=directory mode=0755 owner=root group=unbound
with_items:
- local.d
- conf.d
su... | ```yaml
---
- yum: name=unbound state=latest
sudo: true
tags:
- packages
- yum: name="{{ item }}" state=latest
sudo: true
with_items:
- dnssec-trigger
- dnssec-trigger-panel
tags:
- packages
when: '"gui" in group_names'
- file: path=/etc/unbound/{{ item }}/ state=directory mode=0755 owner=root... |
40135af4-605e-48e6-ab01-23d8e9fb1450 | {
"language": "YAML"
} | ```yaml
---
vimfiles_repo: "git://github.com/mtchavez/vimfiles.git"
vimfiles_dir: "{{ documents_dir }}/vimfiles"
vimfiles_install_cmd: "./install.sh -u"
ycm_bundle_dir: "{{ home_dir }}/.vim/bundle/YouCompleteMe"
ycm_install_cmd: "./ycm-update.sh"
ycm_installed_file: "{{ home_dir }}/.ycm_installed"
macvim_install_optio... | ```yaml
---
vimfiles_repo: "git://github.com/mtchavez/vimfiles.git"
vimfiles_dir: "{{ documents_dir }}/vimfiles"
vimfiles_install_cmd: "./install.sh -u"
ycm_bundle_dir: "{{ home_dir }}/.vim/bundle/YouCompleteMe"
ycm_install_cmd: "./ycm-update.sh"
ycm_installed_file: "{{ home_dir }}/.ycm_installed"
macvim_install_optio... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.