doc_id
stringlengths
36
36
metadata
dict
input
stringlengths
28
4.3k
output
stringlengths
11
5.45k
7cd31fed-c1f1-4927-90fc-59c2585f6819
{ "language": "YAML" }
```yaml matrix: include: - os: osx language: objective-c osx_image: xcode10.2 env: - DESTINATION="platform=iOS Simulator,name=iPhone X,OS=12.2" script: # Alternatively: set -o pipefail && xcodebuild ... | xcpretty # The pipefail option sets the exit status to the last command with a...
```yaml matrix: include: - os: osx language: objective-c osx_image: xcode11.1 script: - swift test ```
8179116b-5d36-499f-88f5-06c6ced0d4bf
{ "language": "YAML" }
```yaml sudo: false language: erlang otp_release: 18.0 branches: only: - master addons: apt: packages: - libexpat1-dev install: make compile script: make test cache: directories: - dialyzer ``` Change minimm OTP release to 18.3 (aligned with MIM)
```yaml sudo: false language: erlang otp_release: 18.3 branches: only: - master addons: apt: packages: - libexpat1-dev install: make compile script: make test cache: directories: - dialyzer ```
12304f69-e107-49b9-a418-21d427cb2a42
{ "language": "YAML" }
```yaml language: ruby rvm: - 2.2.6 - 2.3.3 - 2.4.0 - ruby-head matrix: allow_failures: - rvm: ruby-head ``` Upgrade RubyGems and Bundler (fixes "frozen string" error)
```yaml language: ruby rvm: - 2.2.6 - 2.3.3 - 2.4.0 - ruby-head matrix: allow_failures: - rvm: ruby-head before_install: - gem update --remote bundler - gem update --system ```
7b73b184-8538-4fdb-a1d0-9fe2a63a4d84
{ "language": "YAML" }
```yaml sudo: false language: node_js node_js: - '4' - '6' - '7' ``` Update Travis CI node versions
```yaml sudo: false language: node_js node_js: - '9' - '8' - '6' ```
76a64f28-8be9-454c-a561-0b7066890397
{ "language": "YAML" }
```yaml language: node_js node_js: - '12' - '14' - '15' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test ``` Build with Node.js 16 on Travis CI.
```yaml language: node_js node_js: - '12' - '14' - '16' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test ```
dc54ee70-ccc5-43f0-858c-c7043ea9650c
{ "language": "YAML" }
```yaml language: ruby rvm: - 2.0.0 - 2.1.8 - 2.2.4 - 2.3.0 - ruby-head before_install: gem install bundler -v 1.11.2 ``` Update Ruby version on Travis CI
```yaml language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.5 - 2.3.1 - ruby-head before_install: gem install bundler -v 1.11.2 ```
222af0cd-877e-4648-94ee-a4aedf33e2ec
{ "language": "YAML" }
```yaml homepage: '' changelog-type: '' hash: 84040e75f75744e9040081cb534fdf178cc4c0e299e0f40193761411ffb79b99 test-bench-deps: {} maintainer: Tseen She synopsis: Inspect Haskell source files. changelog: '' basic-deps: ghc: -any base: ! '>=4.11 && <5' time: -any hsinspect: -any ghc-paths: -any ghc-boot: -an...
```yaml homepage: '' changelog-type: '' hash: f456e0adbef92e54adceaa600c8549199e28191412c787d9734de810c914c4b0 test-bench-deps: {} maintainer: Tseen She synopsis: Inspect Haskell source files. changelog: '' basic-deps: ghc: -any base: ! '>=4.11 && <5' time: -any hsinspect: -any ghc-paths: -any ghc-boot: -an...
4f815fdb-6dba-4a18-be25-90fcd0689d50
{ "language": "YAML" }
```yaml language: go go: - 1.4 - 1.4.1 - 1.4.2 - 1.4.3 - 1.5 - 1.6 - 1.7 - 1.8 # doing 'tip' is not a great idea; it has previously caused things to suddenly become "broken" based on calendar date, and i don't appreciate it. install: true # don't `go get`, please. script: - time ./goad init - t...
```yaml language: go go: - 1.4 - 1.5 - 1.6 - 1.7 - 1.8 # doing 'tip' is not a great idea; it has previously caused things to suddenly become "broken" based on calendar date, and i don't appreciate it. install: true # don't `go get`, please. script: - time ./goad init - time ./goad test - time ./goa...
0484616c-bd07-4c7b-8a6f-b35e4ce4ac87
{ "language": "YAML" }
```yaml --- language: d install: - bin/fetch-configlet script: - bin/configlet . - bin/test-all-exercises sudo: false ``` Call configlet subcommand on CI
```yaml --- language: d install: - bin/fetch-configlet script: - bin/configlet lint . - bin/test-all-exercises sudo: false ```
2a82e35c-98ba-40e8-b63b-66c70747c196
{ "language": "YAML" }
```yaml language: node_js node_js: - "0.11" - "0.10" - "0.8" matrix: allow_failures: - node_js: "0.11" # setup links to submodules before_install: - npm update -g npm - npm run-script setup - npm install - cd .. - git clone https://github.com/azure/azure-sdk-tools-xplat.git - cd azure-sdk-too...
```yaml language: node_js node_js: - "0.11" - "0.10" - "0.8" matrix: allow_failures: - node_js: "0.11" # setup links to submodules before_install: - npm install -g npm@1.4.23 - npm run-script setup - npm install - cd .. - git clone https://github.com/azure/azure-sdk-tools-xplat.git - cd azure-...
31011c78-9561-4ddd-a85b-1b6cc892f555
{ "language": "YAML" }
```yaml language: python matrix: include: - name: "generic tests" python: 2.7 - name: "flake8 lint on Python 2.7" python: 2.7 install: pip install flake8 script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - name: "flake8 lint on Python 3.7" dist:...
```yaml language: python matrix: include: - name: "generic tests" python: 2.7 - name: "flake8 lint on Python 2.7" python: 2.7 install: pip install flake8 script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - name: "flake8 lint on Python 3.7" dist:...
aa43db14-aabb-4866-a606-bfaca3ae65c5
{ "language": "YAML" }
```yaml homepage: '' changelog-type: markdown hash: 912df59ab6e6bc876ae675d1daea84355e50e5d078e645080b0e2f0c15d03785 test-bench-deps: stm: '>=2.1' base: '>=4.12 && <4.15' hspec: '>=2.7.4' stm-queue: '>=0.1' stm-actor: -any mtl: '>=1.0' maintainer: samuel@simspace.com synopsis: A simplistic actor model based...
```yaml homepage: '' changelog-type: markdown hash: 4618e71571848531b814c02a9daaa5b2cf4d60d7b3243ce86ed0cb435d766a6c test-bench-deps: stm: '>=2.1' base: '>=4.12 && <4.15' hspec: '>=2.7.4' stm-queue: '>=0.1' stm-actor: -any mtl: '>=1.0' maintainer: samuel@simspace.com synopsis: A simplistic actor model based...
f455dc4c-1c98-4722-8bd1-32f254cbbb54
{ "language": "YAML" }
```yaml language: node_js node_js: - "node" - "iojs" script: - npm test - npm run lint - npm run style ``` Remove io.js from Travis CI
```yaml language: node_js node_js: - "node" script: - npm test - npm run lint - npm run style ```
7e57a499-717c-4a55-b9bc-fe1027a4d40f
{ "language": "YAML" }
```yaml language: python python: - "2.7" before_install: - sudo apt-get install gfortran install: - cat etc/requirements_dev.txt | grep -v "^#" | grep -v "^$" | grep -v ipython | grep -v nose== | xargs pip install --use-mirrors - etc/ordered_pip.sh etc/requirements.txt before_script: - "flake8 zipline tests"...
```yaml language: python python: - "2.7" before_install: - wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download - tar xvzf ta-lib-0.4.0-src.tar.gz - pushd ta-lib; ./configure; make; sudo make install; popd - sudo apt-get install gfortran in...
2dd29063-6f84-4350-a15a-6585c12d37b2
{ "language": "YAML" }
```yaml apiVersion: v1 kind: Service metadata: name: thanos-ruler namespace: default labels: app: thanos-ruler spec: selector: app: thanos-ruler ports: - name: grpc port: 10901 targetPort: grpc - name: http port: 10902 targetPort: http ``` Change thanos ruler's http port to the de...
```yaml apiVersion: v1 kind: Service metadata: name: thanos-ruler namespace: default labels: app: thanos-ruler spec: selector: app: thanos-ruler ports: - name: grpc port: 10901 targetPort: grpc - name: http port: 10902 targetPort: web ```
6b0a9085-c162-44bd-925e-f939292944c3
{ "language": "YAML" }
```yaml # Configuration options are documented at: # http://docs.travis-ci.com/user/languages/javascript-with-nodejs/ sudo: false language: node_js node_js: - '4' - '5' script: npm test && (npm run report-coverage || test 1) ``` Add node.js 6 to Travis testing.
```yaml # Configuration options are documented at: # http://docs.travis-ci.com/user/languages/javascript-with-nodejs/ sudo: false language: node_js node_js: - '4' - '5' - '6' script: npm test && (npm run report-coverage || test 1) ```
993ad633-6f43-4125-9904-ce88c514748e
{ "language": "YAML" }
```yaml language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm matrix: exclude: - php: 5.4 env: SYMFONY_VERSION=3.3.* env: - SYMFONY_VERSION=2.3.* - SYMFONY_VERSION=2.8.* - SYMFONY_VERSION=3.3.* before_script: - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then INI_FILE=~/.phpenv/versions/...
```yaml language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm matrix: exclude: - php: 5.4 env: SYMFONY_VERSION=3.3.* - php: 7.0 env: SYMFONY_VERSION=2.3.* - php: 7.1 env: SYMFONY_VERSION=2.3.* env: - SYMFONY_VERSION=2.3.* - SYMFONY_VERSION=2.8.* - SYMFONY_VERSION=3...
dd4d63d4-9e72-4b01-b6e5-e49ca6af3296
{ "language": "YAML" }
```yaml language: python python: - 2.6 - 2.7 before_install: - sudo apt-get remove chromium firefox mongodb-10gen - sudo apt-get install texlive-latex-base install: - "pip install -r requirements.txt --use-mirrors" script: - make html && make html - make singlehtml && make singlehtml - make text - m...
```yaml language: python python: - 2.6 - 2.7 before_install: - sudo apt-get remove chromium firefox mongodb-10gen - sudo apt-get install texlive-latex-base texlive-latex-recommended install: - "pip install -r requirements.txt --use-mirrors" script: - make html && make html - make singlehtml && make sing...
2a85eb35-0e4d-4ccd-8dbc-25a3945ef7b7
{ "language": "YAML" }
```yaml language: c compiler: - gcc - clang notifications: recipients: - kenhys@gmail.com branches: only: - master - develop env: - USE_WEBKITGTK=yes - USE_GTKHTML=yes - USE_WEBKITGTK=yes USE_DEBUG=yes - USE_GTKHTML=yes USE_DEBUG=yes before_script: - curl --location https://raw.github.com/...
```yaml language: c compiler: - gcc - clang notifications: recipients: - kenhys@gmail.com branches: only: - master - develop env: - USE_WEBKITGTK=yes SYLPHEED_STAGE=master - USE_GTKHTML=yes SYLPHEED_STAGE=master - USE_WEBKITGTK=yes SYLPHEED_STAGE=3.5 - USE_GTKHTML=yes SYLPHEED_STAGE=3.5 - ...
3d25d195-d2c9-4050-b368-bfaf427d1d3f
{ "language": "YAML" }
```yaml language: python python: - "2.7" - "3.4" - "3.5" # setup test environment before_install: - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/...
```yaml language: python notifications: email: false python: - "2.7" - "3.4" - "3.5" # setup test environment before_install: - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh; else wget h...
45066462-14ec-4a9f-81cd-3e501a2c1339
{ "language": "YAML" }
```yaml language: node_js node_js: - 0.12 - 4 - stable ``` Test on Node.js v0.12.x, v4.x, and v5.x
```yaml language: node_js node_js: - '5' - '4' - '0.12' ```
87b0aace-6416-4bcd-967d-fcf4106d5cff
{ "language": "YAML" }
```yaml language: python python: - "pypy" # pypy3 is broken until https://github.com/pallets/flask/pull/1841 # is released, which should happen in flask version 0.11.2. # - "pypy3" - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install pybuilder - pip install coveralls - pyb instal...
```yaml language: python python: - "pypy" # pypy3 is broken until https://github.com/pallets/flask/pull/1841 # is released, which should happen in flask version 0.11.2. # - "pypy3" - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install -U pip setuptools - pip install pybuilder - pi...
3d0c024f-9e68-46f3-aef6-6630b34cc605
{ "language": "YAML" }
```yaml language: python sudo: false python: - "3.6" - "3.5" - "3.4" - "3.3" - "2.7" install: pip install tox-travis script: tox ``` Make it build the docs too.
```yaml language: python sudo: false python: 3.6 env: - TOXENV=py27 - TOXENV=py33 - TOXENV=py34 - TOXENV=py35 - TOXENV=py36 - TOXENV=docs install: pip install -U tox script: tox ```
72e30539-dfa5-4eee-8b5b-07161756577d
{ "language": "YAML" }
```yaml # Copyright 2017 Google Inc. All Rights Reserved. # # 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 ...
```yaml # Copyright 2017 Google Inc. All Rights Reserved. # # 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 ...
a38123ed-dcd8-4536-b1f1-ed1e77595741
{ "language": "YAML" }
```yaml {% set name = "prettier" %} {% set version = "2.2.1" %} package: name: {{ name|lower }} version: {{ version|replace("-", "_") }} source: url: https://github.com/prettier/prettier/archive/refs/tags/{{ version }}.tar.gz sha256: 31c22f314066d3997aeafb345ebc1143179500d62f2334efc965ccdc2b4ffcf7 build: n...
```yaml {% set name = "prettier" %} {% set version = "2.2.1" %} package: name: {{ name|lower }} version: {{ version|replace("-", "_") }} source: url: https://github.com/prettier/prettier/archive/refs/tags/{{ version }}.tar.gz sha256: 31c22f314066d3997aeafb345ebc1143179500d62f2334efc965ccdc2b4ffcf7 build: n...
4e8a957a-8c57-44a6-9e11-e0dcfa89afc7
{ "language": "YAML" }
```yaml name: Tom Wire's Blog description: Blogging about stuffs meta_description: "Tom Wire Blog. Blogging about ASP.NET, Ruby on Rails and anything in between" markdown: redcarpet pygments: true logo: false paginate: 15 # Details for the RSS feed generator url: 'http://thesilverbadger.co.uk' author: ...
```yaml name: Tom Wire's Blog description: Blogging about stuffs meta_description: "Tom Wire Blog. Blogging about ASP.NET, Ruby on Rails and anything in between" # markdown: redcarpet pygments: true logo: false paginate: 15 # Details for the RSS feed generator url: 'http://thesilverbadger.co.uk' author: ...
d9353c67-7417-400a-aa84-1ff07599925a
{ "language": "YAML" }
```yaml author: J. Scott Stewart doi: email: james.stewart@colorado.edu license: GPL url: version: 0.0.1 summary: "From Nelson and Outcalt (1987), the 'frost number', a dimensionless ratio defined by manipulation of either freezing and thawing degree-day sums or frost and thaw penetration depths, can be used to d...
```yaml author: J. Scott Stewart doi: email: james.stewart@colorado.edu license: MIT url: http://csdms.colorado.edu/wiki/Model:Frost_Model version: 0.1 summary: "From Nelson and Outcalt (1987), the 'frost number', a dimensionless ratio defined by manipulation of either freezing and thawing degree-day sums or frost ...
de3fb2a5-19f8-4145-8c13-eb1033c5c277
{ "language": "YAML" }
```yaml title: Sinon.JS description: >- Standalone test spies, stubs and mocks for JavaScript. Works with any unit testing framework. url: 'http://sinonjs.org' github_username: sinonjs sinon: current_release: v6.2.0 markdown: kramdown kramdown: input: GFM syntax_highlighter: none syntax_highlighter_opts: ...
```yaml title: Sinon.JS description: >- Standalone test spies, stubs and mocks for JavaScript. Works with any unit testing framework. url: 'http://sinonjs.org' github_username: sinonjs sinon: current_release: v6.2.0 markdown: kramdown kramdown: input: GFM syntax_highlighter: none syntax_highlighter_opts: ...
6d3a86b8-468d-4957-ad1c-1ea40585a817
{ "language": "YAML" }
```yaml --- - name: Install Python hosts: pfsense gather_facts: no tasks: - name: bootstrap pkg raw: env ASSUME_ALWAYS_YES=YES pkg bootstrap -f - name: bootstrap python raw: env ASSUME_ALWAYS_YES=YES pkg install python - name: Install Packages hosts: pfsense gather_facts: yes tasks: ...
```yaml --- - name: Install Python hosts: pfsense gather_facts: no tasks: - name: bootstrap pkg raw: env ASSUME_ALWAYS_YES=YES pkg bootstrap -f - name: bootstrap python raw: env ASSUME_ALWAYS_YES=YES pkg install python - name: Common Setup hosts: pfsense gather_facts: yes tasks: - n...
cdfe5ae8-2fd3-4856-ba4c-3826e3edd798
{ "language": "YAML" }
```yaml Categories: - Connectivity - System License: GPL-3.0-or-later SourceCode: https://github.com/DevLuuk/SleepyWifi IssueTracker: https://github.com/DevLuuk/SleepyWifi/issues Changelog: https://github.com/DevLuuk/SleepyWifi/releases AutoName: SleepyWifi Summary: Disables the Wi-Fi when the phone is in sleep mo...
```yaml Categories: - Connectivity - System License: GPL-3.0-or-later SourceCode: https://github.com/DevLuuk/SleepyWifi IssueTracker: https://github.com/DevLuuk/SleepyWifi/issues Changelog: https://github.com/DevLuuk/SleepyWifi/releases AutoName: SleepyWifi Summary: Disables the Wi-Fi when the phone is in sleep mo...
880bfe1a-f037-44a0-9c92-e1b1634db13a
{ "language": "YAML" }
```yaml # ansible-playbook -i ec2.py --limit="tag_cluster_certificates:&tag_environment_loadtest" legacy_certificates.yml - name: Deploy legacy_certs hosts: all sudo: True gather_facts: True vars: serial_count: 1 repo_url: "git@github.com/edx/certificates.git" repo_path: "/opt/wwc/certificates" ...
```yaml # ansible-playbook -i ec2.py --limit="tag_cluster_certificates:&tag_environment_loadtest" legacy_certificates.yml - name: Deploy legacy_certs hosts: all sudo: True gather_facts: True vars: serial_count: 1 repo_url: "git@github.com/edx/certificates.git" repo_path: "/opt/wwc/certificates" ...
c0dc1548-bc43-42f8-ba79-ff6dcaccce7a
{ "language": "YAML" }
```yaml --- - hosts: singleton_int1 become: yes remote_user: ubuntu roles: - dhcpd - apache - docker - homeassistant - mhz19 - mosquitto ``` Rename apache role to httpd
```yaml --- - hosts: singleton_int1 become: yes remote_user: ubuntu roles: - dhcpd - docker - homeassistant - httpd - mhz19 - mosquitto ```
858c2a20-ee21-411e-9a3f-8b37414ba750
{ "language": "YAML" }
```yaml --- - name: Create admin group group: "name={{admingroup}}" - name: Add admin group to sudoers lineinfile: dest=/etc/sudoers state=present regexp='^%admin ALL\=' line='%admin ALL=(ALL) NOPASSWD:ALL' validate='visudo -cf %s' register: admingroupsudoers - name: Remove wheel group in sudoers if...
```yaml --- - name: Create admin group group: "name={{admingroup}}" - name: Add admin group to sudoers lineinfile: dest=/etc/sudoers state=present regexp='^%admin ALL\=' line='%admin ALL=(ALL) NOPASSWD:ALL' validate='visudo -cf %s' register: admingroupsudoers - name: Remove wheel group in sudoers if...
57ab2a33-80e2-42e3-89ae-4905f5692f8b
{ "language": "YAML" }
```yaml zookeeper: build: ../yelp_package/dockerfiles/itest/zookeeper/ ports: - 2181 marathon: build: ../yelp_package/dockerfiles/itest/marathon/ ports: - 8080 links: - zookeeper command: 'marathon' ``` Update marathon integration tests for more visibility
```yaml zookeeper: build: ../yelp_package/dockerfiles/itest/zookeeper/ ports: - 2181 marathon: build: ../yelp_package/dockerfiles/itest/marathon/ ports: - 8080 links: - zookeeper command: 'marathon --no-logger' ```
38b0c6a7-cda9-4bf2-9768-bde7b5d8cecc
{ "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...
ca43a303-0cf6-42b1-b05d-2f697816514b
{ "language": "YAML" }
```yaml Categories: - Connectivity License: AGPL-3.0-or-later SourceCode: https://github.com/nickdurante/Spider IssueTracker: https://github.com/nickdurante/Spider/issues AutoName: Spider RepoType: git Repo: https://github.com/nickdurante/Spider Builds: - versionName: 0.1.6 versionCode: 7 commit: v0.1.6 ...
```yaml Categories: - Connectivity License: AGPL-3.0-or-later SourceCode: https://github.com/nickdurante/Spider IssueTracker: https://github.com/nickdurante/Spider/issues AutoName: Spider RepoType: git Repo: https://github.com/nickdurante/Spider Builds: - versionName: 0.1.6 versionCode: 7 commit: v0.1.6 ...
b6191809-bb04-4d84-ab5d-4b053c340ad8
{ "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:...
7b9c95e1-1d8c-4603-88af-c6deab482ddc
{ "language": "YAML" }
```yaml - defaults: link: relink: true create: true force: true # We are opinionated. - clean: ['~'] - shell: - [git submodule update --init --recursive, Installing submodules] - [mkdir -p ~/.vim/temp_dirs/undodir, Crating vim undo dir] - [bat cache --build, Updating bat syntax cache] - l...
```yaml - defaults: link: relink: true create: true force: true # We are opinionated. - clean: ['~'] - shell: - [git submodule update --init --recursive, Installing submodules] - [mkdir -p ~/.vim/temp_dirs/undodir, Crating vim undo dir] - [bat cache --build, Updating bat syntax cache] - l...
aec144a8-e140-450c-8460-e2f88a68875b
{ "language": "YAML" }
```yaml --- # Select one or the other #artifactory_database: postgresql artifactory_database: mysql # defaults file for bbaassssiiee.artifactory artifactory_version: "3.4.2" artifactory_username: "artifactory" artifactory_password: "password" artifactory_license: oss ``` Update default Artifactory version to 4.5.1 (...
```yaml --- # Select one or the other #artifactory_database: postgresql artifactory_database: mysql # defaults file for bbaassssiiee.artifactory artifactory_version: "4.5.1" artifactory_username: "artifactory" artifactory_password: "password" artifactory_license: oss ```
90ea3eeb-082f-434c-8a9a-b6fcd859858e
{ "language": "YAML" }
```yaml --- - name: Ensure availability of base packages apt: name={{ item }} state=present with_items: - cowsay - curl - figlet - git - git-svn - htop - jq - maven - netcat-openbsd - openjdk-7-jdk - realpath - subversion - tmux - tree - unattended-upgrade...
```yaml --- - name: Ensure availability of base packages apt: name={{ item }} state=present with_items: - cowsay - curl - figlet - git - git-svn - htop - jq - maven - netcat-openbsd - openjdk-7-jdk - realpath - subversion - tmux - tree - unattended-upgrade...
73e13b79-0344-41c6-8928-d2ceb14bae7f
{ "language": "YAML" }
```yaml name: Reports & Spreadsheets description: Tools for parsing spreadsheets and creating reports in multiple formats. projects: - activeadmin-axlsx - acts_as_xlsx - axlsx - axlsx_rails - caxlsx - caxlsx_rails - compendium - creek - dossier - dynamic_reports - excel_rails - gnumeric - goff...
```yaml name: Reports & Spreadsheets description: Tools for parsing spreadsheets and creating reports in multiple formats. projects: - activeadmin-axlsx - acts_as_xlsx - axlsx - axlsx_rails - caxlsx - caxlsx_rails - compendium - creek - dossier - dynamic_reports - excel_rails - fast_excel - gn...
2723a0df-9981-4716-8b19-5a98983e0ce6
{ "language": "YAML" }
```yaml driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-6.7 - name: centos-7.1 - name: debian-7.8 run_list: apt::default - name: debian-8.1 run_list: apt::default - name: fedora-22 run_list: yum::dnf_yum_compat - name: fedora-23 run_list: yum::dnf_yum_compa...
```yaml driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-5.11 - name: centos-6.7 - name: centos-7.2 - name: debian-7.9 run_list: apt::default - name: debian-8.2 run_list: apt::default - name: fedora-22 run_list: yum::dnf_yum_compat - name: fedora-23 run_li...
00a2df69-ba3b-4ccf-9360-950c66949ca8
{ "language": "YAML" }
```yaml driver_plugin: vagrant driver_config: require_chef_omnibus: true customize: memory: 1024 platforms: - name: ubuntu-12.04 run_list: - recipe[apt::default] - name: ubuntu-10.04 run_list: - recipe[apt::default] - name: centos-6.4 - name: centos-5.9 suites: - name: default run_li...
```yaml driver_plugin: vagrant driver_config: require_chef_omnibus: true customize: memory: 512 platforms: - name: ubuntu-12.04 run_list: - recipe[apt::default] - name: ubuntu-10.04 run_list: - recipe[apt::default] - name: centos-6.4 - name: centos-5.9 suites: - name: default run_lis...
119c888f-f52e-4d5a-a54a-3a3fd97db49c
{ "language": "YAML" }
```yaml pull_request_rules: - name: "rebase unreviewed non-release PRs" conditions: - head~=^(?!(release|hotfix)).*$ - "#approved-reviews-by=0" - "#changes-requested-reviews-by=0" actions: rebase: {} - name: "merge non-release PRs with strict rebase" conditions: - head~=^(...
```yaml pull_request_rules: - name: "rebase unreviewed non-release PRs" conditions: - "head~=^(?!(release|hotfix)).*$" - "#approved-reviews-by=0" - "#changes-requested-reviews-by=0" actions: rebase: {} - name: "merge non-release PRs with strict rebase" conditions: - "head~...
ea0549f2-cc53-401f-b768-83d8602558b4
{ "language": "YAML" }
```yaml # Mocha options # https://mochajs.org/#configuring-mocha-nodejs # https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.yml spec: - test/fixtures/setup-mocks.js - test/fixtures/mocha-hooks.js - test/specs/**/*.spec.js bail: true timeout: 10000 retries: 2 recursive: true ``` Increase the ...
```yaml # Mocha options # https://mochajs.org/#configuring-mocha-nodejs # https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.yml spec: - test/fixtures/setup-mocks.js - test/fixtures/mocha-hooks.js - test/specs/**/*.spec.js bail: true timeout: 10000 slow: 2000 retries: 2 recursive: true ```
dff7a141-32d7-471a-bed1-e623f0399544
{ "language": "YAML" }
```yaml - name: composer src: geerlingguy.composer version: 1.2.7 - name: ntp src: resmo.ntp version: 0.3.0 - name: logrotate src: nickhammond.logrotate version: fc3ea4 - name: swapfile src: kamaln7.swapfile version: 0.4 - src: geerlingguy.daemonize version: 1.1.0 - name: mailhog src: geerlingg...
```yaml - name: composer src: geerlingguy.composer version: 1.5.0 - name: ntp src: resmo.ntp version: 0.3.0 - name: logrotate src: nickhammond.logrotate version: e7a498d - name: swapfile src: kamaln7.swapfile version: 0.4 - src: geerlingguy.daemonize version: 1.1.1 - name: mailhog src: geerling...
4b884d1e-1900-4dc0-8fc3-b85bf4f777b0
{ "language": "YAML" }
```yaml steps: - label: ':coverage: Test Photon' trigger: 'prisma2-test' - label: ':flashlight: Publish Photon' trigger: 'prisma2-publish' if: | // Only run on master branch // More docs here https://buildkite.com/docs/pipelines/conditionals build.branch == 'master' - wait ``` Renam...
```yaml steps: - label: ':coverage: Test Prisma Client JS' trigger: 'prisma2-test' - label: ':flashlight: Publish Prisma Client JS' trigger: 'prisma2-publish' if: | // Only run on master branch // More docs here https://buildkite.com/docs/pipelines/conditionals build.branch == 'master'...
62858bd2-306c-4ce0-bf7c-d57bc5c400a3
{ "language": "YAML" }
```yaml # c.f. https://dependabot.com/docs/config-file/ version: 1 update_configs: - package_manager: "ruby:bundler" directory: "/" update_schedule: "daily" default_assignees: - sue445 allowed_updates: - match: # Disable. Only top-level dependencies (and security patches for...
```yaml # c.f. https://dependabot.com/docs/config-file/ version: 1 update_configs: - package_manager: "ruby:bundler" directory: "/" update_schedule: "daily" default_assignees: - sue445 allowed_updates: - match: # Disable. Only top-level dependencies (and security patches for...
ed649ce0-6f88-4857-b3f8-c55e4ea18b3e
{ "language": "YAML" }
```yaml --- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" ``` ...
```yaml --- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: img public_path: "/img" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" ```
1cc761ba-fff2-46fd-9614-463cb633aad6
{ "language": "YAML" }
```yaml --- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build:...
```yaml --- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: img public_path: "/img" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: previ...
8f17ad4d-1312-414d-b02d-24ce49e13504
{ "language": "YAML" }
```yaml --- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: heading label: JTemporal - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all upload_dir: images public_path: '' front_matter_path: '' use_front_matter_path: false file_t...
```yaml --- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: heading label: JTemporal - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all upload_dir: images public_path: '' front_matter_path: '' use_front_matter_path: false file_t...
b0d6ab4b-f80b-40ac-80de-92b852a77151
{ "language": "YAML" }
```yaml --- dnsclient::nameservers: - '8.8.8.8' - '8.8.4.4' ldapclient::ldapservers: 'ldaps://ldap3-us-west.apache.org:636 ldaps://ldap2-us-west.apache.org:636 ldaps://harmonia.apache.org:636' ``` Add hiera data to add a hosts file entry for all pnap private instanes to resolve ldap3-us-west via hosts file
```yaml --- dnsclient::nameservers: - '8.8.8.8' - '8.8.4.4' hosts: ldap3-us-west.apache.org: ip: '10.41.0.12' host_aliases: 'ldap3-us-west' ldapclient::ldapservers: 'ldaps://ldap3-us-west.apache.org:636 ldaps://ldap2-us-west.apache.org:636 ldaps://harmonia.apache.org:636' ```
c657603e-ce87-4242-8c99-940feb0d349f
{ "language": "YAML" }
```yaml homepage: https://github.com/louispan/glaze#readme changelog-type: '' hash: d065cd9797d5989bb883ac366e52b081e3da8d7c533f9b1d2857109181961720 test-bench-deps: {} maintainer: louis@pan.me synopsis: Framework for rendering things with metadata/headers and values changelog: '' basic-deps: base: <6 lens: ! '>=4 ...
```yaml homepage: https://github.com/louispan/glaze#readme changelog-type: '' hash: 1ac41672bcdd9e9d98098e8c008a8d5893711ea354cc59015841031a64409d97 test-bench-deps: {} maintainer: louis@pan.me synopsis: Framework for rendering things with metadata/headers and values changelog: '' basic-deps: base: <6 lens: ! '>=4 ...
e53d2706-d4df-4241-b3a5-27157150b139
{ "language": "YAML" }
```yaml --- downloads: ~/.ansible-downloads/ homebrew_installed_packages: - ansible - autoconf - gettext - libevent - packer - python - sqlite - mysql - php56 - php56-xdebug - ssh-copy-id - cowsay - ios-sim - readline - subversion - kdiff3 - openssl - pv - drush - wget - caskr...
```yaml --- downloads: ~/.ansible-downloads/ homebrew_installed_packages: - ansible - autoconf - gettext - libevent - packer - python - sqlite - mysql - php56 - php56-xdebug - ssh-copy-id - cowsay - ios-sim - readline - subversion - kdiff3 - openssl - pv - drush - wget - brew-...
a13887ae-634d-46ef-9dfc-a24516a5be55
{ "language": "YAML" }
```yaml --- scenario: name: dnsdist-master driver: name: docker dependency: name: galaxy platforms: - name: centos-7 image: centos:7 dockerfile_tpl: centos-systemd - name: ubuntu-1604 image: ubuntu:16.04 dockerfile_tpl: debian-systemd - name: ubuntu-1804 image: ubuntu:18.04 doc...
```yaml --- scenario: name: dnsdist-master driver: name: docker dependency: name: galaxy platforms: - name: centos-7 image: centos:7 dockerfile_tpl: centos-systemd - name: centos-8 image: centos:8 dockerfile_tpl: centos-systemd - name: ubuntu-1804 image: ubuntu:18.04 dockerfile...
139bf294-a971-4477-b856-1586405ff991
{ "language": "YAML" }
```yaml --- - name: ensures tmux is installed/updated homebrew: name=tmux state=latest - name: ensure tmux.conf exists copy: src=tmux.conf dest=~/.tmux.conf - name: ensure copy/paste support (reattach-to-user-namespace) is installed/updated homebrew: name=reattach-to-user-namespace state=latest - name: ensure ...
```yaml --- - name: ensures tmux is installed/updated homebrew: name=tmux state=latest - name: ensure tmux.conf exists copy: src=tmux.conf dest=~/.tmux.conf - name: ensure copy/paste support (reattach-to-user-namespace) is installed/updated homebrew: name=reattach-to-user-namespace state=latest - name: ensure ...
1d37152a-15c3-4055-b4c8-30fbf30117cf
{ "language": "YAML" }
```yaml homepage: https://bitbucket.org/tdammers/ginger changelog-type: '' hash: 1b9b7f193896b18c561e96ee147822ab9bc59970201bc00220ed338fbe6850d9 test-bench-deps: {} maintainer: tdammers@gmail.com synopsis: An implementation of the Jinja2 template language in Haskell changelog: '' basic-deps: bytestring: -any base:...
```yaml homepage: https://bitbucket.org/tdammers/ginger changelog-type: '' hash: 2386097e36b0b71f51ee2b9191edaf7116e9ed86e239abfdc3e9bca51702594d test-bench-deps: {} maintainer: tdammers@gmail.com synopsis: An implementation of the Jinja2 template language in Haskell changelog: '' basic-deps: bytestring: -any base:...
ef0c5ff0-8ecc-4371-94a6-b4efbad634e1
{ "language": "YAML" }
```yaml homepage: https://github.com/lehins/massiv changelog-type: '' hash: aab284322fc6e53983d713cb24ef0a293b6a42ec2a935d1436c336bbaaf28d78 test-bench-deps: base: ! '>=4.8 && <5' hspec: -any safe-exceptions: -any massiv: -any data-default: -any deepseq: -any QuickCheck: -any vector: -any maintainer: al...
```yaml homepage: https://github.com/lehins/massiv changelog-type: '' hash: 9a2f7110f98f6eaf8fc0feafacac346c7ca6267c806ddacb821e0d3f573418ff test-bench-deps: base: ! '>=4.8 && <5' hspec: -any safe-exceptions: -any massiv: -any data-default: -any deepseq: -any QuickCheck: -any vector: -any maintainer: al...
faf4f5fa-f0d6-46e3-9248-f88ff4960bc4
{ "language": "YAML" }
```yaml homepage: '' changelog-type: '' hash: e05376c0ca1433c1ae90b647c79b03b156206e649e00291063d86a088ea78b54 test-bench-deps: {} maintainer: Gabriel439@gmail.com synopsis: Monad morphisms changelog: '' basic-deps: base: ! '>=4 && <5' transformers: ! '>=0.2.0.0 && <0.6' all-versions: - '1.0.0' - '1.0.1' - '1.0.2' ...
```yaml homepage: '' changelog-type: '' hash: 2574723748927a97bdd265fa42a97a738644fca49f7a8bc978d84a0a88708f49 test-bench-deps: {} maintainer: Gabriel439@gmail.com synopsis: Monad morphisms changelog: '' basic-deps: base: ! '>=4 && <5' mtl: ! '>=2.0.1 && <2.3' transformers: ! '>=0.2.0.0 && <0.6' transformers-co...
ef73432b-10cf-447d-8668-484c0951e3f3
{ "language": "YAML" }
```yaml # # Copyright 2016 Walter Dolce # # 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...
```yaml # # Copyright 2016 Walter Dolce # # 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...
304d5452-8ac7-4c18-acd3-e544f674de05
{ "language": "YAML" }
```yaml Categories: - Graphics License: GPL-3.0-or-later AuthorWebSite: https://kaffeemitkoffein.de/blog/me/ SourceCode: https://codeberg.org/Starfish/Feinstaubwidget IssueTracker: https://codeberg.org/Starfish/Feinstaubwidget/issues AutoName: FeinstaubWidget RepoType: git Repo: https://codeberg.org/Starfish/Feinst...
```yaml Categories: - Graphics License: GPL-3.0-or-later AuthorWebSite: https://kaffeemitkoffein.de/blog/me/ SourceCode: https://codeberg.org/Starfish/Feinstaubwidget IssueTracker: https://codeberg.org/Starfish/Feinstaubwidget/issues AutoName: FeinstaubWidget RepoType: git Repo: https://codeberg.org/Starfish/Feinst...
14183ab5-d026-4456-ad66-5e77c5d47888
{ "language": "YAML" }
```yaml # Template for a user configuration settings file plates_dir: sources_dir: layers_dir: plate_format: 384 workflow: stages: - name: conversion steps: - name: metaextract args: - name: metaconfig args: format: cellvoyager - name: imextract ...
```yaml # Template for a user configuration settings file plates_dir: sources_dir: layers_dir: plate_format: 384 workflow: stages: - name: image_conversion steps: - name: metaextract args: - name: metaconfig args: format: cellvoyager - name: imextract...
20c50a2b-eee3-4fb1-9f58-921804fa944e
{ "language": "YAML" }
```yaml PreCommit: RuboCop: enabled: true problem_on_unmodified_line: ignore flags: ['--fail-level', 'error'] ``` Set the RuboCop output format to emacs
```yaml PreCommit: RuboCop: enabled: true problem_on_unmodified_line: ignore flags: ['--fail-level', 'error', '--format', 'emacs'] ```
dada12f2-1fe0-4428-8d9b-d40335779c72
{ "language": "YAML" }
```yaml homepage: https://github.com/tvh/servant-JuicyPixels changelog-type: '' hash: 2f172aabef738c0c7c65de30eefd15c2775a541f5ad4e64bd4cfb89c0d889939 test-bench-deps: {} maintainer: tvh@tvholtz.de synopsis: Servant support for JuicyPixels changelog: '' basic-deps: warp: -any JuicyPixels: ! '>=3.2.5.3' bytestring...
```yaml homepage: https://github.com/tvh/servant-JuicyPixels changelog-type: '' hash: c2bb054b2bf321495ce60debc745eaf05b6e6322bd24db2aee5597040241b5be test-bench-deps: {} maintainer: tvh@tvholtz.de synopsis: Servant support for JuicyPixels changelog: '' basic-deps: warp: -any JuicyPixels: ! '>=3.2.5.3' bytestring...
f2a2b2f0-2b6f-4781-ab25-80819c60b8b4
{ "language": "YAML" }
```yaml homepage: '' changelog-type: '' hash: d1b81b7b5387557de816e23268132d586781f14f30b91c5f5eba7c25991b6468 test-bench-deps: {} maintainer: partners@seereason.com synopsis: portable, type-safe URL routing changelog: '' basic-deps: base: ! '>=4 && <5' text: -any parsec: ! '>=2 && <4' web-routes: ! '>=0.26' al...
```yaml homepage: '' changelog-type: '' hash: bd0c99d1b4d9c57d7a1902b7052f2073d6f978323740e201531c06458a959568 test-bench-deps: {} maintainer: partners@seereason.com synopsis: portable, type-safe URL routing changelog: '' basic-deps: base: ! '>=4 && <5' text: -any parsec: ! '>=2 && <4' web-routes: ! '>=0.26' al...
754706a0-a5bf-4a3a-89b4-c05c66424d53
{ "language": "YAML" }
```yaml --- name: Huntercombe nomis_id: HCI address: - Huntercombe Place - 'RG9 5SB ' email: socialvisits.huntercombe@hmps.gsi.gov.uk enabled: true estate: Huntercombe phone: 01491 643151 slot_anomalies: 2014-12-22: - 1345-1600 2014-12-24: - 1345-1600 2014-12-29: - 1345-1600 2015-01-02: - 1345-1600 slot...
```yaml --- name: Huntercombe nomis_id: HCI address: - Huntercombe Place - 'RG9 5SB ' email: socialvisits.huntercombe@hmps.gsi.gov.uk enabled: true estate: Huntercombe phone: 01491 643151 slot_anomalies: 2014-12-22: - 1345-1600 2014-12-24: - 1345-1600 2014-12-29: - 1345-1600 2015-01-02: - 1345-1600 slot...
f239bf33-6da2-494d-8397-cf51dcc582e6
{ "language": "YAML" }
```yaml Categories: - Sports & Health License: GPL-3.0-only AuthorName: woheller69 SourceCode: https://github.com/woheller69/eggtimer IssueTracker: https://github.com/woheller69/eggtimer/issues AutoName: Smart EggTimer RepoType: git Repo: https://github.com/woheller69/eggtimer Builds: - versionName: '1.2' ve...
```yaml Categories: - Sports & Health License: GPL-3.0-only AuthorName: woheller69 SourceCode: https://github.com/woheller69/eggtimer IssueTracker: https://github.com/woheller69/eggtimer/issues AutoName: Smart EggTimer RepoType: git Repo: https://github.com/woheller69/eggtimer Builds: - versionName: '1.2' ve...
bb3606b9-2cd2-4581-91ce-91090865eac6
{ "language": "YAML" }
```yaml # # Yet Another UserAgent Analyzer # Copyright (C) 2013-2021 Niels Basjes # # 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 re...
```yaml # # Yet Another UserAgent Analyzer # Copyright (C) 2013-2021 Niels Basjes # # 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 re...
361b335c-6f0b-49f9-9827-a4312a1aec9f
{ "language": "YAML" }
```yaml stages: - build fedora-latest: image: fedora:latest stage: build before_script: - dnf update -y && dnf -y install dnf-plugins-core redhat-rpm-config - dnf -y builddep folks script: # Configure - ./autogen.sh # Build - make -j # Run tests - make -j check ``` Move MAKEF...
```yaml stages: - build fedora-latest: image: fedora:latest stage: build variables: MAKEFLAGS: "-j8" before_script: - dnf update -y && dnf -y install dnf-plugins-core redhat-rpm-config - dnf -y builddep folks script: # Configure - ./autogen.sh # Build - make # Run tests ...
127efc64-f656-4b06-80ae-6a16d170bbe0
{ "language": "YAML" }
```yaml image: quay.io/python-devs/ci-image stages: - test - codecov - deploy qa: script: - tox -e qa tests: script: - tox -e py27,py35,py36,py37,py38 coverage: script: - tox -e py27-cov,py35-cov,py36-cov artifacts: paths: - coverage.xml diffcov: script: - tox -e py27-diff...
```yaml image: quay.io/python-devs/ci-image stages: - test - codecov - deploy qa: script: - tox -e qa tests: script: - tox -e py27,py35,py36,py37,py38 coverage: script: - tox -e py27-cov,py35-cov,py36-cov artifacts: paths: - coverage.xml diffcov: script: - tox -e py27-diff...
f30f0760-9a81-4ba6-97e7-082330113d77
{ "language": "YAML" }
```yaml pages: stage: deploy image: ruby:2.1 script: - gem install jekyll - gem install redcarpet - jekyll build -d public artifacts: paths: - public only: - master ``` Fix CI setup for GitLab pages
```yaml pages: stage: deploy image: ruby:2.1 script: - gem install bundler --no-ri --no-rdoc - bundle install --jobs $(nproc) - bundle exec jekyll build -d public artifacts: paths: - public only: - master ```
b0014a2f-e0f4-40be-9f6d-1acb1d6aec9a
{ "language": "YAML" }
```yaml stages: - build - test - github - cleanup push to github: image: wurbanski/alpine-git stage: github tags: - docker-runner script: - if [ ! -n "$(grep "^github.com " ~/.ssh/known_hosts)" ]; then ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null; fi - eval $(ssh-agent -s) -...
```yaml stages: - build - test - github .job_template: &job tags: - docker-runner build alpine: <<: *job image: golang:1.8-alpine stage: build script: - go build build linux: <<: *job image: golang:1.8 stage: build script: - go build push to github: <<: *job image: wurbanski/...
e359ee4a-cda2-400c-a672-3d8b1a038fde
{ "language": "YAML" }
```yaml --- - name: BenchmarkInlineLink b_percentage: 30 expiry: 14d - name: SearchMatchLength b_percentage: 30 expiry: 1d ``` Reduce B group percentage of search A/B test
```yaml --- - name: BenchmarkInlineLink b_percentage: 30 expiry: 14d - name: SearchMatchLength b_percentage: 5 expiry: 1d ```
0a3a0ede-ca22-4ef3-a143-61dd88f45c1c
{ "language": "YAML" }
```yaml quotes: - empty: empty (arrays are 1 indexed!) - quote: "Change is the end result of all true learning." author: "Leo Buscaglia" - quote: "Learning never exahusts the mind." author: "Leonardo da Vinci" - quote: "You don't learn to walk by following rules. You learn by doing and by failing over."...
```yaml quotes: - empty: empty (arrays are 1 indexed!) - quote: "Change is the end result of all true learning." author: "Leo Buscaglia" - quote: "Learning never exhausts the mind." author: "Leonardo da Vinci" - quote: "You don't learn to walk by following rules. You learn by doing and by failing over."...
d9e900fc-63e8-485d-8cf6-8193219f77cc
{ "language": "YAML" }
```yaml - tenant: name: openstack source: gerrit: config-projects: - openstack-infra/project-config untrusted-projects: # Order matters, load common job repos first - openstack-infra/zuul-jobs: shadow: openstack-infra/project-config - o...
```yaml - tenant: name: openstack source: gerrit: config-projects: - openstack-infra/project-config untrusted-projects: # Order matters, load common job repos first - openstack-infra/zuul-jobs: shadow: openstack-infra/project-config - o...
09e98edc-1458-48ca-82a1-8a81c08c74ff
{ "language": "YAML" }
```yaml project_name: nv before: hooks: - go mod tidy builds: - <<: &build_defaults binary: nv main: ./cmd/nv/ env: - CGO_ENABLE=0 ldflags: - -s -w -X github.com/jcouture/nv/internal/build.Version={{.Version}} id: macos goos: [darwin] goarch: [amd64, arm64] ...
```yaml project_name: nv before: hooks: - go mod tidy builds: - <<: &build_defaults binary: nv main: ./cmd/nv/ env: - CGO_ENABLE=0 ldflags: - -s -w -X github.com/jcouture/nv/internal/build.Version={{.Version}} id: macos goos: [darwin] goarch: [amd64, arm64] ...
bc304b36-73b3-424f-8181-ebca7da104f6
{ "language": "YAML" }
```yaml language: php sudo: false php: - "5.6" - hhvm - "5.5" - "5.4" - "5.3" - hhvm-nightly matrix: fast_finish: true allow_failures: - php: hhvm-nightly - env: PHPUNIT_VERSION='4.*@dev' env: - PHPUNIT_VERSION='3.7.*' - PHPUNIT_VERSION='4.*@dev' - PHPUNIT_VERSION='4....
```yaml language: php sudo: false php: - "5.6" - hhvm - "5.5" - "5.4" - "5.3" - hhvm-nightly cache: directories: - $HOME/.composer/cache matrix: fast_finish: true allow_failures: - php: hhvm-nightly - env: PHPUNIT_VERSION='4.*@dev' env: - PHPUNIT_VERSION='3.7.*' - ...
37b1c432-04bc-4968-a479-d0b9e9104163
{ "language": "YAML" }
```yaml services: - rabbitmq - redis-server sudo: false cache: bundler language: ruby rvm: - ruby-head - 2.2.5 matrix: include: - rvm: 2.2.5 env: INTEGRATION_LOG=1 INTEGRATION=1 ``` Test against the same set of Rubies as Bunny
```yaml services: - rabbitmq - redis-server sudo: false cache: bundler language: ruby rvm: - ruby-head - "2.4.1" - "2.3.4" - "2.2.7" matrix: include: - rvm: 2.2.5 env: INTEGRATION_LOG=1 INTEGRATION=1 ```
3a330b32-a628-4c67-9396-54d6b8509374
{ "language": "YAML" }
```yaml language: ruby rvm: - 2.2.3 script: rubocop && rspec # We have to install Rust manually, as Travis does not yet allow multiligual # builds. We install the latest stable Rust build. before_install: - mkdir ~/rust-installer - curl -sL https://static.rust-lang.org/rustup.sh -o ~/rust-installer/rustup.sh -...
```yaml sudo: false language: ruby rvm: - 2.2.3 script: rubocop && rspec # We have to install Rust manually, as Travis does not yet allow multiligual # builds. We install the latest stable Rust build. before_install: - mkdir ~/rust-installer - curl -sL https://static.rust-lang.org/rustup.sh -o ~/rust-installer/r...
be6abf54-9153-4a5e-91c5-8f4792e9c1ea
{ "language": "YAML" }
```yaml language: python python: - "2.6" - "2.7" env: - DJANGO=Django==1.3.7 SOUTH=1 - DJANGO=Django==1.4.5 SOUTH=1 - DJANGO=Django==1.5.1 SOUTH=1 - DJANGO=https://github.com/django/django/tarball/master SOUTH=1 - DJANGO=Django==1.3.7 SOUTH=0 install: - pip install coverage $DJANGO --use-mirrors - ...
```yaml language: python python: - "2.6" - "2.7" env: - DJANGO=Django==1.3.7 SOUTH=1 - DJANGO=Django==1.4.5 SOUTH=1 - DJANGO=Django==1.5.1 SOUTH=1 - DJANGO=https://github.com/django/django/tarball/master SOUTH=1 - DJANGO=Django==1.3.7 SOUTH=0 install: - pip install coverage $DJANGO --use-mirrors - ...
baead35a-2262-476c-ac71-1ff5591ff585
{ "language": "YAML" }
```yaml language: go go: - 1.1 - 1.2 - 1.3 install: - go get github.com/bmizerany/assert - go get github.com/ddollar/dist - go get github.com/ddollar/config - go get github.com/ddollar/go-update - go get github.com/ViViDboarder/gotifier - go get github.com/bgentry/speakeasy - go get github.com...
```yaml language: go go: - 1.1 - 1.2 - 1.3 install: - go get github.com/bmizerany/assert - go get github.com/ddollar/dist - go get github.com/ddollar/config - go get github.com/ddollar/go-update - go get github.com/ViViDboarder/gotifier - go get github.com/bgentry/speakeasy - go get github.com...
bc7e20d9-8f5c-4384-9b0e-cbd4e7cfe7bc
{ "language": "YAML" }
```yaml # Site settings title: lauris.github.io email: lauris@discuss.lv description: "A fucking awesome blog about programming, hacking, open-source, startups, git, vim, linux, etc." baseurl: "" url: "http://lauris.github.io" twitter_username: lauriswat github_username: lauris # Build settings markdown: kramdown per...
```yaml # Site settings title: lauris.github.io email: lauris@discuss.lv description: "A fucking awesome blog about programming, hacking, open-source, startups, git, vim, linux, etc." baseurl: "" url: "http://lauris.github.io" twitter_username: lauriswat github_username: lauris # Build settings markdown: kramdown per...
d0bffbde-babc-4bca-b74b-661cc1d241c6
{ "language": "YAML" }
```yaml {% set name = "sos-r" %} {% set version = "0.19.1" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: ed48f4f32386a9b6a7e2c13056ce43d6ff151dc33afea5a6b96316b3af0df43b build: noar...
```yaml {% set name = "sos-r" %} {% set version = "0.19.1" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: ed48f4f32386a9b6a7e2c13056ce43d6ff151dc33afea5a6b96316b3af0df43b build: noar...
f00c480c-6d9e-45ce-9ff3-a72dc2183215
{ "language": "YAML" }
```yaml name: Background Jobs description: Process slow tasks asynchronously to keep response times low, improve fault-tolerance and aid with horizontal scaling projects: - acts_as_executor - amqp - backburner - backgrounded - barttenbrinke/worker_queue - beetle - bj - bunny - cloud-crowd - delayed_...
```yaml name: Background Jobs description: Process slow tasks asynchronously to keep response times low, improve fault-tolerance and aid with horizontal scaling projects: - acts_as_executor - amqp - backburner - backgrounded - barttenbrinke/worker_queue - beetle - bj - bunny - cloud-crowd - delayed_...
8ad8edb3-e230-44fa-9572-da88c5145aea
{ "language": "YAML" }
```yaml --- blurb: "Write a program that uses the Sieve of Eratosthenes to find all the primes from 2 up to a given number." source: "Sieve of Eratosthenes at Wikipedia" source_url: "http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes" ``` Remove "write a program" from sieve exercise
```yaml --- blurb: "Use the Sieve of Eratosthenes to find all the primes from 2 up to a given number." source: "Sieve of Eratosthenes at Wikipedia" source_url: "http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes" ```
03ee1ef9-68ee-436a-b761-47f92b16cc16
{ "language": "YAML" }
```yaml --- - include_vars: "{{ item }}" with_first_found: - "../vars/{{ ansible_distribution }}-{{ ansible_distribution_major_version | int}}.yml" - "../vars/{{ ansible_distribution }}.yml" - "../vars/{{ ansible_os_family }}.yml" - "../vars/default.yml" - name: Install i3 become: true pa...
```yaml --- - include_vars: "{{ item }}" with_first_found: - "../vars/{{ ansible_distribution }}-{{ ansible_distribution_major_version | int}}.yml" - "../vars/{{ ansible_distribution }}.yml" - "../vars/{{ ansible_os_family }}.yml" - "../vars/default.yml" - name: Install i3 become: true pa...
e206a26b-1878-4c61-95fd-fb435cac5b2f
{ "language": "YAML" }
```yaml application: bingobuzzword version: 1 runtime: python27 api_version: 1 threadsafe: yes builtins: - remote_api: on inbound_services: - warmup libraries: - name: django version: "1.2" - name: yaml version: "3.10" handlers: - url: /_ah/queue/deferred script: djangoappengine.deferred.handler.application ...
```yaml application: bingobuzzword version: 1 runtime: python27 api_version: 1 threadsafe: yes builtins: - remote_api: on inbound_services: - warmup libraries: - name: yaml version: "3.10" handlers: - url: /_ah/queue/deferred script: djangoappengine.deferred.handler.application login: admin - url: /_ah/stats...
fd686d5b-c226-48e3-aac2-f83c57c8a0aa
{ "language": "YAML" }
```yaml - alias: 'Turn Living Room Ceiling Light on when there is Movement' trigger: platform: state entity_id: binary_sensor.living_room_motion_sensor_occupancy from: 'off' to: 'on' condition: condition: or conditions: - condition: state entity_id: input_select.bed_mode ...
```yaml - alias: 'Turn Living Room Ceiling Light on when there is Movement' trigger: platform: state entity_id: binary_sensor.living_room_motion_sensor_occupancy from: 'off' to: 'on' condition: condition: or conditions: - condition: state entity_id: input_select.bed_mode ...
d99b0cc4-2599-4139-82ec-f7606cc4ff3d
{ "language": "YAML" }
```yaml repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.5.1 gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1 javax_val...
```yaml repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.5.1 gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1 javax_val...
82484cd7-7f41-48c8-8bfe-6586eae108c8
{ "language": "YAML" }
```yaml test: remote_url_firefox: http://seleniumff.docker/wd/hub remote_url_chrome: http://seleniumch.docker/wd/hub browser: firefox ``` Add chrome to docker-compose config as default
```yaml test: remote_url_firefox: http://seleniumff.docker/wd/hub remote_url_chrome: http://seleniumch.docker/wd/hub browser: chrome ```
48b545ca-5702-4b94-a1d9-9efa2900c4cc
{ "language": "YAML" }
```yaml --- # Tests for base-packages role - name: If user disable installation of packages, install nothing fail: msg: "User disable ipackage installation but Packages installed" when: - base_packages_test_disable_installation - base_packages_installed is defined - debug: var: base_packages_inst...
```yaml --- # Tests for base-packages role - name: If user disable installation of packages, install nothing fail: msg: "User disable ipackage installation but Packages installed" when: - base_packages_test_disable_installation - base_packages_installed is defined - debug: var: base_packages_inst...
012f413f-4975-41d5-8898-bf50931074b8
{ "language": "YAML" }
```yaml application: apptscout version: 1 runtime: python27 api_version: 1 threadsafe: true handlers: - url: /_ah/(mapreduce|queue|warmup).* script: scout.wsgi.application login: admin secure: always - url: /static/admin/ static_dir: sitepackages/django/contrib/admin/static/admin/ secure: always # Set Dja...
```yaml application: apptscout version: 1 runtime: python27 api_version: 1 threadsafe: true handlers: - url: /_ah/(mapreduce|queue|warmup).* script: scout.wsgi.application login: admin secure: always - url: /static/admin/ static_dir: sitepackages/django/contrib/admin/static/admin/ secure: always - url: /sta...
d628dfae-9fb7-4feb-841c-219668640db6
{ "language": "YAML" }
```yaml box: wercker/python build: steps: - virtualenv: name: Setup virtual environment - pip-install: name: Install requirements auto_run_wheel: True - script: name: Run unit testing code: | python setup.py test after-steps: - sherzberg/slack-notify...
```yaml box: wercker/python build: steps: - virtualenv: name: Setup virtual environment - pip-install: name: Install requirements auto_run_wheel: True - script: name: Run unit testing code: | python setup.py test after-steps: - sherzberg/slack-notify...
504e4854-f1a3-4c58-8d21-9e6f54ba35f5
{ "language": "YAML" }
```yaml repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_javaee: javax:javaee-api:jar:7.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.5.1 gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1 javax_validation: javax.validation:validation...
```yaml repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_javaee: javax:javaee-api:jar:7.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.6.0 gwt_dev: com.google.gwt:gwt-dev:jar:2.6.0 javax_validation: javax.validation:validation...
44e8d49f-5331-4929-9b75-09e000ca3130
{ "language": "YAML" }
```yaml src_files: - lib/deps/jquery-1.8.js - lib/deps/json2.js - lib/deps/require.js - lib/tetra.js - lib/mod/require/client.js - lib/mod/tmpl/client-micro-tmpl.js - lib/tetra-view.js - lib/tetra-controller.js - lib/tetra-model.js - spec/javascripts/specs/core/conf/viadeo-webapp.js - spec/javascr...
```yaml src_files: - lib/deps/jquery-1.8.js - lib/deps/json2.js - lib/deps/require.js - lib/tetra.js - lib/mod/require/client.js - lib/mod/tmpl/client-micro-tmpl.js - lib/tetra-view.js - lib/tetra-controller.js - lib/tetra-model.js - spec/javascripts/specs/core/conf/viadeo-webapp.js - spec/javascr...
aa909931-3304-4c4a-9e74-f9fb166ece20
{ "language": "YAML" }
```yaml --- galaxy_info: description: Install StackStorm and all its components author: armab company: StackStorm license: Apache min_ansible_version: 1.9 platforms: - name: Ubuntu versions: - trusty - precise categories: - system dependencies: - role: epel when: ansibl...
```yaml --- galaxy_info: description: Install StackStorm and all its components author: armab company: StackStorm license: Apache 2.0 min_ansible_version: 1.9 platforms: - name: Ubuntu versions: - trusty - precise - name: EL versions: - 6 - 7 categories:...
c8bc4838-7e8e-4722-978a-53128d1ea195
{ "language": "YAML" }
```yaml box: golang:alpine no-response-timeout: 20 services: - boostport/hbase-phoenix-all-in-one:1.1.5-4.7.0 build: steps: - setup-go-workspace # Set up enviroment variable - script: name: set up environment variables code: | export AVATICA_HOST=http://$PHOENIX_HBASE_ALL_...
```yaml box: id: golang:alpine cmd: /bin/sh no-response-timeout: 20 services: - boostport/hbase-phoenix-all-in-one:1.1.5-4.7.0 build: steps: - setup-go-workspace # Set up enviroment variable - script: name: set up environment variables code: | export AVATICA_HOST=http:...
0ff5af0e-d71b-4386-b0ae-d854d8fbf71e
{ "language": "YAML" }
```yaml repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_naming: geronimo:geronimo-naming:jar:1.1.1 ``` Use SSL to access maven repository.
```yaml repositories: remote: - https://repo1.maven.org/maven2 artifacts: javax_naming: geronimo:geronimo-naming:jar:1.1.1 ```
d809d007-b642-4415-9d81-854f0de1c775
{ "language": "YAML" }
```yaml homepage: https://github.com/andrewthad/quickcheck-classes#readme changelog-type: '' hash: 54a5916e462cfce6782f3f43dc824846592371230ec8f66b8bfa1e709297a241 test-bench-deps: base: -any quickcheck-classes: -any tagged: -any transformers: -any QuickCheck: -any aeson: -any primitive: -any vector: -a...
```yaml homepage: https://github.com/andrewthad/quickcheck-classes#readme changelog-type: '' hash: cdd8f1303d884524c4673a5cc70d1617ebfcae27956f99248f9e7e5fadabbd7a test-bench-deps: base: -any quickcheck-classes: -any tagged: -any transformers: -any QuickCheck: -any aeson: -any primitive: -any vector: -a...
7bc249c2-349b-452f-91a7-e3234da08e54
{ "language": "YAML" }
```yaml require: rubocop-rspec AllCops: RunRailsCops: true Exclude: - example/db/**/* - example/config/**/* - search_object.gemspec # Disables "Line is too long" LineLength: Enabled: false # Disables "Missing top-level class documentation comment" Documentation: Enabled: false # Disables "Use ea...
```yaml require: rubocop-rspec AllCops: RunRailsCops: true Exclude: - example/db/**/* - example/config/**/* - search_object.gemspec # Disables "Module definition is too long" ModuleLength: Enabled: false # Disables "Line is too long" LineLength: Enabled: false # Disables "Missing top-level class...