doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
28ef0b9b-2357-4b52-ad52-ead0b249b278 | {
"language": "YAML"
} | ```yaml
clone_folder: c:\projects\go\src\github.com\tus\tusd
environment:
GOPATH: c:\projects\go
GO15VENDOREXPERIMENT: 1
install:
- git submodule update --init --recursive
build_script:
- go env
- go version
- go get ./s3store
- go get ./consullocker
test_script:
- go test .
- go test ./filestore
... | ```yaml
clone_folder: c:\projects\go\src\github.com\tus\tusd
environment:
GOPATH: c:\projects\go
GO15VENDOREXPERIMENT: 1
install:
- git submodule update --init --recursive
build_script:
- go env
- go version
- go get ./s3store
- go get ./consullocker
- go get github.com/hashicorp/consul
test_script:... |
68976653-230e-4824-bb04-d41c6edb7a74 | {
"language": "YAML"
} | ```yaml
# Notes:
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
# - Section names should be unique on each level.
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version... | ```yaml
# Notes:
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
# - Section names should be unique on each level.
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version... |
e10fb2e7-36c9-4b17-b97e-31f510be34c4 | {
"language": "YAML"
} | ```yaml
version: 1.0.{build}
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- cmd: nuget restore C:\projects\kairos-net\Kairos.Net.sln
build... | ```yaml
version: 1.0.{build}
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- cmd: nuget restore C:\projects\kairos-net\Kairos.Net.sln
build... |
8653433c-77db-4b8e-974b-eb64041b65ed | {
"language": "YAML"
} | ```yaml
version: '0.1.0.{build}'
clone_folder: c:\GoDev\src\github.com\appplant\alpinepass
environment:
GOPATH: c:\GoDev
install:
- cd src
- go get -v
build_script:
- go version
- go env
- go build -o alpinepass
test_script:
- go test ./...
```
Add the -t flag to get test dependencies | ```yaml
version: '0.1.0.{build}'
clone_folder: c:\GoDev\src\github.com\appplant\alpinepass
environment:
GOPATH: c:\GoDev
install:
- cd src
- go get -v -t
build_script:
- go version
- go env
- go build -o alpinepass
test_script:
- go test ./...
``` |
f8ef776c-20bc-46e3-978a-514b18d14999 | {
"language": "YAML"
} | ```yaml
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: 5
version: "{build}"
build: off
deploy: off
install:
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
- node --version
- npm --version
- cmd: "npm test"
```
Add more node versions to ... | ```yaml
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: 5
- nodejs_version: 4
- nodejs_version: 0.12
version: "{build}"
build: off
deploy: off
install:
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
- node --version
- npm --version
... |
ba8fc55a-245b-47f7-98a1-5a6319ec0155 | {
"language": "YAML"
} | ```yaml
environment:
CXX: cl
CPPPATH: lz4/include;googletest-release-1.8.0/googletest/include
matrix:
- PYTHON: "C:\\Python27"
install:
# Install SCons
- SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- easy_install scons
# Install LZ4 library
- curl -L -o lz4.zip https://github.com/lz4/lz4/releases... | ```yaml
environment:
CXX: cl
CPPPATH: lz4/include;googletest/googletest/include
matrix:
- PYTHON: "C:\\Python27"
install:
# Install SCons
- SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- easy_install scons
# Install LZ4 library
- curl -L -o lz4.zip https://github.com/lz4/lz4/releases/download/v1.7... |
aa243939-5679-465f-96c8-dd68cd97a703 | {
"language": "YAML"
} | ```yaml
build: false
environment:
PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.8"
PYTHON_ARCH: "32"
configuration: Release
platform:
- x86
- x64
#We install nasm in case libjpeg-turbo has to be built from source
install:
- curl -L -o nasminst.exe http://libgd.blob.core.windows.net/nasm/nasm-2.07-installe... | ```yaml
build: false
environment:
PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.8"
PYTHON_ARCH: "32"
configuration: Release
platform:
- x86
- x64
#We install nasm in case libjpeg-turbo has to be built from source
install:
- curl -L -o nasminst.exe http://libgd.blob.core.windows.net/nasm/nasm-2.07-installe... |
985baa55-72a1-47bc-b9d1-60e27e8ebdc1 | {
"language": "YAML"
} | ```yaml
---
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- bundle install
build: off
test_script:
- bundle exec rake ci
environment:
matrix:
- ruby_version: "200"
- ruby_version: "200-x64"
- ruby_version: "21"
- ruby_version: "21-x64"
- ruby_versi... | ```yaml
---
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem install bundler -v '< 2.0'
- bundle install
before_test:
- ruby -v
- gem -v
- bundle -v
build: off
test_script:
- bundle exec rake ci
environment:
matrix:
- ruby_version: "200"
- ruby_version: "200-x64"
- ruby_version: "2... |
872ab51e-c585-4987-8e1f-dcff6cb73c49 | {
"language": "YAML"
} | ```yaml
# https://github.com/sindresorhus/appveyor-node/blob/master/appveyor.yml
environment:
matrix:
- platform: x64
GH_TOKEN:
secure: tEHrAaRFMrUzagNJsnU+6Esvaw/FdUXZKWz7a690VAy6zzEThB0lThHLFVKZrQrP
image: Visual Studio 2015
init:
- npm config set msvs_version 2015 # we need this to build `pty.js`
c... | ```yaml
# https://github.com/sindresorhus/appveyor-node/blob/master/appveyor.yml
environment:
matrix:
- platform: x64
GH_TOKEN:
secure: tEHrAaRFMrUzagNJsnU+6Esvaw/FdUXZKWz7a690VAy6zzEThB0lThHLFVKZrQrP
image: Visual Studio 2015
init:
- npm config set msvs_version 2015 # we need this to build `pty.js`
c... |
d98c83de-b56c-437b-9dcc-686353fbf3b9 | {
"language": "YAML"
} | ```yaml
version: '1.0.0-SNAPSHOT-{build}'
os: Windows Server 2012
environment:
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile(
'http:... | ```yaml
version: '1.0.0-SNAPSHOT-{build}'
os: Windows Server 2012
environment:
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile(
'http:... |
8eb9a9ab-4f4f-4a24-8b74-a1567d6b0509 | {
"language": "YAML"
} | ```yaml
# Build configuration for the FakerOfData project
# https://github.com/derantell/FakerOfData
# Reference appveyor.yml
# http://www.appveyor.com/docs/appveyor-yml
# Appveyor build configuration
# http://www.appveyor.com/docs/build-configuration
# =============================
# Setup
# =======================... | ```yaml
# Build configuration for the FakerOfData project
# https://github.com/derantell/FakerOfData
# Reference appveyor.yml
# http://www.appveyor.com/docs/appveyor-yml
# Appveyor build configuration
# http://www.appveyor.com/docs/build-configuration
# =============================
# Setup
# =======================... |
cd30ce6e-cf59-4dd8-9fae-6ac8f04a18af | {
"language": "YAML"
} | ```yaml
os: Visual Studio 2015
platform: x64
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- choco install strawberryperl
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- git clone https://github.com/tadzik/rakudobrew %USERPROFILE%\ra... | ```yaml
os: Visual Studio 2015
platform: x64
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- choco install strawberryperl
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- git clone https://github.com/tadzik/rakudobrew %USERPROFILE%\ra... |
33ca62cd-5f79-4898-b732-bc099acdeaf1 | {
"language": "YAML"
} | ```yaml
# http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.10"
# Install scripts. (runs after repo cloning)
install:
# Get t... | ```yaml
# http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.10"
# Install scripts. (runs after repo cloning)
install:
# Get t... |
de2465e0-4c88-4617-9654-2cae26eec203 | {
"language": "YAML"
} | ```yaml
version: 0.1.{build}
os: Windows Server 2012 R2
platform: x64
branches:
only:
- master
skip_tags: true
install:
- C:\msys64\usr\bin\bash --login -c "pacman -S --noconfirm mingw-w64-x86_64-cmake"
- C:\msys64\usr\bin\bash --login -c "pacman -S --noconfirm mingw-w64-x86_64-zlib"
- C:\msys64\usr\bi... | ```yaml
version: 0.1.{build}
os: Windows Server 2012 R2
platform: x64
branches:
only:
- master
skip_tags: true
install:
- C:\msys64\usr\bin\bash --login -c "pacman -S --noconfirm mingw-w64-x86_64-cmake"
- C:\msys64\usr\bin\bash --login -c "pacman -S --noconfirm mingw-w64-x86_64-zlib"
- C:\msys64\usr\bi... |
257b32be-de4d-4013-a39e-dc0eb6d714c3 | {
"language": "YAML"
} | ```yaml
version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
max_jobs: 2
configuration: Debug
platform: x86
clone_depth: 1
before_build:
- ps: cmake.exe -G "Visual Studio 14 2015" -B"./Build" -H"./" -DCMAKE_INSTALL_PREFIX=%APPVEYOR_BUILD_FOLDER%/Install
build:
project: Build/INSTALL.vcxproj
par... | ```yaml
version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
max_jobs: 2
configuration: Debug
platform: x86
clone_depth: 1
before_build:
- ps: cmake.exe -G "Visual Studio 14 2015" -B"./Build" -H"./" -DCMAKE_INSTALL_PREFIX=%APPVEYOR_BUILD_FOLDER%/Install
build:
project: Build/INSTALL.vcxproj
par... |
b458ec19-59a4-4423-a0f3-ccfbf0c458ac | {
"language": "YAML"
} | ```yaml
before_build: cmake .
build_script: where msbuild
```
Set path to find the correct version of msbuild. | ```yaml
install:
- set PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%
before_build: cmake .
``` |
8d515853-0137-40ad-aa54-1ae697195424 | {
"language": "YAML"
} | ```yaml
-
version: 2.2.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- dev
configuration: Debug
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '... | ```yaml
-
version: 2.2.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- dev
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version:... |
d2ea2e5e-c629-437d-be3a-4d37fa0ae233 | {
"language": "YAML"
} | ```yaml
build_script:
- build.cmd verify
clone_depth: 1
test: off
deploy: off```
Fix AppVeyor git line ending config | ```yaml
init:
- git config --global core.autocrlf true
build_script:
- build.cmd verify
clone_depth: 1
test: off
deploy: off``` |
6d935760-0db9-43ce-bdd8-c164f19c07a0 | {
"language": "YAML"
} | ```yaml
version: "{build}"
platform: x64
branches:
only:
- master
clone_depth: 10
skip_tags: true
environment:
APM_TEST_PACKAGES:
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta
install:
- ps: Install-Product node 5
build_script:
- ps: iex ((new-object net.webclient).DownloadString('ht... | ```yaml
version: "{build}"
platform: x64
branches:
only:
- master
clone_depth: 10
skip_tags: true
environment:
APM_TEST_PACKAGES:
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta
install:
# Install Node.js to run any configured linters
- ps: Install-Product node 5
build_script:
- ps: ... |
2b471dbf-24db-4882-a2eb-203a2a8ca8dd | {
"language": "YAML"
} | ```yaml
build_script:
- ps: .\build.ps1
test: off
```
Add deployment environments in AppVeyor | ```yaml
build_script:
- ps: .\build.ps1
test: off
deploy:
- provider: Environment
name: ValidationPipeline-EUNorth-Sandbox
on:
branch: develop
- provider: Environment
name: ValidationPipeline-EUWest-Sandbox
on:
branch: develop``` |
e889bf6f-0e77-4d62-bab6-619643e6b060 | {
"language": "YAML"
} | ```yaml
version: 1.0.{build}
skip_tags: true
init:
- git config --global core.autocrlf true
install:
- nuget restore
configuration: Release
platform: Any CPU
build:
project: XmlSchemaClassGenerator.sln
verbosity: minimal
publish_nuget: true
publish_nuget_symbols: true
assembly_info:
patch: true
file: '*... | ```yaml
version: 1.0.{build}
skip_tags: true
image: Visual Studio 2017
init:
- git config --global core.autocrlf true
install:
- nuget restore
configuration: Release
platform: Any CPU
build:
project: XmlSchemaClassGenerator.sln
verbosity: minimal
publish_nuget: true
publish_nuget_symbols: true
assembly_info... |
c396664b-1541-40ba-a8d4-d47aeaa30923 | {
"language": "YAML"
} | ```yaml
# http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.11"
# Allow failing jobs for bleeding-edge Node.js versions.
matrix... | ```yaml
# http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.10"
# Install scripts. (runs after repo cloning)
install:
# Get t... |
f3ae5252-c2f6-46fb-85a3-721af5d476bd | {
"language": "YAML"
} | ```yaml
# https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
_extends: .github
tag-template: PrioritySorter-$NEXT_MINOR_VERSION
```
Use patch format x.yy.zz for release drafter | ```yaml
# https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
_extends: .github
tag-template: PrioritySorter-$NEXT_PATCH_VERSION
``` |
3a4c0deb-08c7-4309-a0aa-4262dac4b14a | {
"language": "YAML"
} | ```yaml
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: "3.0"
gemfile: Gemfile
- ruby: "3.0"
gemfile: gemfiles/actionmailer61.gemfile
- ruby: 2.7
gemfile: gemf... | ```yaml
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: 3.1
gemfile: Gemfile
- ruby: "3.0"
gemfile: gemfiles/actionmailer61.gemfile
- ruby: 2.7
gemfile: gemfil... |
e0ef6bb4-356b-4203-846f-23f9b3aa14cb | {
"language": "YAML"
} | ```yaml
# This workflow will install Python dependencies and run tests with several versions of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
j... | ```yaml
# This workflow will install Python dependencies and run tests with several versions of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
j... |
3afe6432-1927-491e-83ae-791bfc67707b | {
"language": "YAML"
} | ```yaml
on:
push:
branches:
- osagnostic
- gh-actions
tags:
- '*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, macos-10.15]
include:
- os: macos-latest
- os: macos-10.15
steps:
- uses: actions/checkou... | ```yaml
on:
push:
branches:
- osagnostic
- gh-actions
tags:
- '*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, macos-10.15]
include:
- os: macos-latest
- os: macos-10.15
steps:
- uses: actions/checkou... |
74d7ae4a-ffd3-4694-8cc2-487c6c29a669 | {
"language": "YAML"
} | ```yaml
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you m... | ```yaml
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you m... |
639e7dc8-4188-4e1e-86b9-98003ca35b1b | {
"language": "YAML"
} | ```yaml
name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-16.04
services:
mariadb:
image: mariadb:10.0
env:
MYSQL_DATABASE=opendominion
MYSQL_USERNAME=opendominion
MYSQL_PASSWORD=secret
ports:
- 3306
options: --he... | ```yaml
name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-16.04
services:
mariadb:
image: mariadb:10.0
env:
MYSQL_DATABASE: opendominion
MYSQL_USERNAME: opendominion
MYSQL_PASSWORD: secret
ports:
- 3306
options: -... |
35ed4b02-7a86-4c0a-8874-205ffd43f8fd | {
"language": "YAML"
} | ```yaml
package:
name: brightway_projects-dev
version: {{ environ['VERSION'] }}
source:
path: ..
build:
noarch_python: True
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
script_env:
- VERSION
- CONDA_BLD_PATH
requirements:
build:
- python
... | ```yaml
package:
name: brightway_projects-dev
version: {{ environ['VERSION'] }}
source:
path: ..
build:
noarch: python
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
script_env:
- VERSION
- CONDA_BLD_PATH
requirements:
build:
- python
-... |
5f83949a-af71-4aee-aa41-462bd1ee8bb9 | {
"language": "YAML"
} | ```yaml
steps:
- task: UsePythonVersion@0
displayName: ${{format('Setup Python {0}', parameters.python_version)}}
inputs:
versionSpec: '${{parameters.python_version}}'
- template: install_deps.yml
- script: 'pipenv run make coverage'
displayName: Run Tests with Coverage
- task: PublishTestR... | ```yaml
steps:
- task: UsePythonVersion@0
displayName: ${{format('Setup Python {0}', parameters.python_version)}}
inputs:
versionSpec: '${{parameters.python_version}}'
- template: install_deps.yml
- script: 'pipenv run make coverage'
displayName: Run Tests with Coverage
- task: PublishTestR... |
c0337e82-6892-4872-9145-e6a2d1e0c0d0 | {
"language": "YAML"
} | ```yaml
language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
matrix:
include:
os: windows
cache: false
node_js: node
env:
- YARN_GPG=no
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
local-dir: api
on:
branch: master
node_js: node
os: li... | ```yaml
language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
matrix:
include:
os: windows
cache: false
node_js: node
env: "YARN_GPG=no"
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
local-dir: api
on:
branch: master
node_js: node
os: linux
``... |
60ebe1f1-7bdc-4861-b688-a2de3c70a9ee | {
"language": "YAML"
} | ```yaml
sudo: required
language: go
go:
- 1.7.x
install:
- echo "Please don't go get"
services:
- docker
before_script:
- curl -sSL test.docker.com | sudo -E sh
script:
- go get -d -v
- ./build.sh
- ./build_samples.sh
- ./test/version.sh ./faas-cli
# - ./deploy_samples.sh # requires a deployed Faa... | ```yaml
sudo: required
language: go
go:
- 1.7.x
install:
- echo "Please don't go get"
services:
- docker
before_script:
- curl -sSL test.docker.com | sudo -E sh
script:
- go get -d -v
- ./build.sh
- ./build_samples.sh
- ./test/version.sh ./faas-cli
# - ./deploy_samples.sh # requires a deployed Faa... |
d3929ce2-4b8d-4886-8a0b-b10e95bd2b33 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test && sudo $(which npm) run test-root && npm run test:install"
before_script:
- "./test/hosts.sh"
before_install:
- su... | ```yaml
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test && sudo sh -c 'export PATH=\"'\"$(dirname $(which node)):$PATH\"'\" && npm run test-root' && npm run test:install"
bef... |
7ed10fc9-1651-43a1-b4ab-5a33d3f783fe | {
"language": "YAML"
} | ```yaml
DATA_DIR: <%= File.expand_path("../public", __FILE__) %>
RAVEN_DSN: ""
SIDEKIQ_PASSWORD: ""
NEWRELIC_LICENSE_KEY: ""
BOWER_TMP: ~
BOWER_CACHE: ~
```
Set BOWER_TMP to system tmp by default | ```yaml
DATA_DIR: <%= File.expand_path("../public", __FILE__) %>
RAVEN_DSN: ""
SIDEKIQ_PASSWORD: ""
NEWRELIC_LICENSE_KEY: ""
BOWER_TMP: <%= Dir.tmpdir %>
BOWER_CACHE: ~
``` |
f6bf658d-168d-468b-bc33-d16d3da5720b | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
env:
# GitHub OAuth Token:
- secure: "9c4MO9OUFz3rZ6R06d4fXWNtZGEr5Kio6dgP5yOxgBfOGJ8EhxCYduDuEPcU2XRCUgqRQwCMGEF3C+RWMEwDUOzm+1JZjh56oYqLGe6TMpZY0qJfbeWXpY2sKdN/JTOockEXnuKsDnHgAscFko4bztD7LRk9lE3RBAuazCib8... | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
install:
- pip install unittest2
- pip install coveralls
- pip install codecov
script:
- coverage run --source ghstats/ghstats.py tests/test_ghstats.py
after_success:
- coveralls
- codecov
``` |
8dc72fc2-2b0a-4c0f-afea-ec8e542f4266 | {
"language": "YAML"
} | ```yaml
language: erlang
otp_release:
- 18.1
- 17.4
- R16B03
- R16B02
- R16B01
script:
- make dialyzer
- make xref
- make
- make test
- make riak-test
notifications:
email: christopher.meiklejohn@gmail.com
sudo: false
```
Remove older versions of Erlang. | ```yaml
language: erlang
otp_release:
- 18.1
- 17.4
- R16B03
script:
- make dialyzer
- make xref
- make
- make test
- make riak-test
notifications:
email: christopher.meiklejohn@gmail.com
sudo: false
``` |
9d58e15b-fb4d-4a4c-8d59-254f996abd06 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
notifications:
email:
- henry.s.huang@gmail.com
install:
# Use latest Augeas
- sudo add-apt-repository -y ppa:raphink/augeas
- sudo apt-get update
- sudo apt-get install make libaugeas-dev libxml2-dev
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip... | ```yaml
language: python
python:
- "2.6"
- "2.7"
notifications:
email:
- henry.s.huang@gmail.com
install:
# Use latest Augeas
- sudo add-apt-repository -y ppa:raphink/augeas
- sudo apt-get update
- sudo apt-get install make libaugeas-dev libxml2-dev
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip... |
c683378d-d79e-41ef-af4e-5d10414f4223 | {
"language": "YAML"
} | ```yaml
language: ruby
dist: xenial
cache: bundler
services:
- postgresql
- mysql
bundler_args: --without yard guard benchmarks tools
before_script:
- psql -c 'create database rom_sql;' -U postgres
- mysql -u root -e 'create database rom_sql;'
- curl -L https://codeclimate.com/downloads/test-reporter/test-rep... | ```yaml
language: ruby
dist: xenial
cache: bundler
services:
- postgresql
- mysql
bundler_args: --without yard guard benchmarks tools
before_script:
- psql -c 'create database rom_sql;' -U postgres
- mysql -u root -e 'create database rom_sql;'
- curl -L https://codeclimate.com/downloads/test-reporter/test-rep... |
418eeb42-b58f-4f9e-8d2a-5cd233559db1 | {
"language": "YAML"
} | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
podfile: Example/Podfile
before_install:
- pod install --project-directory=Example
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail... | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
podfile: Example/Podfile
before_install:
- pod install --project-directory=Example
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail... |
8a6adf87-7e45-41f0-bad3-787226795fa8 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.5.1
- DJANGO=django==1.4.5
install:
- pip install -q $DJANGO --use-mirrors
- pip install -q -e . --use-mirrors
script:
- python setup.py test
```
Add support for coveralls to Travis tests. | ```yaml
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.5.1
- DJANGO=django==1.4.5
install:
- pip install -q $DJANGO coverage==3.6 --use-mirrors
- pip install -q -e . --use-mirrors
script:
- coverage run --source=django_iban ./manage.py test
- coverage report -m
after_success:
- ... |
1f829e04-8f83-46fe-8cd7-f558f15cff7b | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
services:
- memcached
- riak
- mysql
- postgresql
- redis-server
- cassandra
python:
- "2.7"
cache:
directories:
- node_modules
- $HOME/.cache/pip
- "$HOME/virtualenv/python2.7.9"
env:
matrix:
- TEST_SUITE=sqlite DB=sqlite
- TEST_SUITE=postgres ... | ```yaml
sudo: false
language: python
services:
- memcached
- riak
- postgresql
- redis-server
- cassandra
python:
- "2.7"
cache:
directories:
- node_modules
- $HOME/.cache/pip
- "$HOME/virtualenv/python2.7.9"
env:
matrix:
- TEST_SUITE=sqlite DB=sqlite
- TEST_SUITE=postgres DB=postgre... |
a3686a95-38a7-44fb-8f33-b19afd9baa0a | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- hhvm
- nightly
dist: trusty
cache:
directories:
- $HOME/.composer/cache
allow_failures:
- php: nightly
install:
- travis_retry composer install --prefer-dist --no-interaction --no-suggest
script: vendor/bin/phpunit
```
Test on... | ```yaml
language: php
php:
- 7.4
- 7.3
- 7.2
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- nightly
dist: trusty
cache:
directories:
- $HOME/.composer/cache
allow_failures:
- php: nightly
install:
- travis_retry composer install --prefer-dist --no-interaction --no-suggest
script: vendor/bin/phpun... |
5120c4a4-b9b5-43bf-b56a-a293e37cc8b5 | {
"language": "YAML"
} | ```yaml
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
matrix:
fast_finish: true
allow_failures:
- php: hhvm
include:
- php: hhvm
dist: trusty
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --d... | ```yaml
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: nightly
include:
- php: hhvm
dist: trusty
before_script:
- travis_retry composer self-update
- tra... |
b4d69cd7-7a5a-4a07-b4f0-3abc3e4459e1 | {
"language": "YAML"
} | ```yaml
language: php
cache:
directories:
- $HOME/.composer/cache
git:
depth: 5
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm-nightly
before_script:
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.... | ```yaml
language: php
cache:
directories:
- $HOME/.composer/cache
git:
depth: 5
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
before_script:
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- composer install --no-interaction --no-pro... |
5ce4f454-4774-45c9-a918-91533467dd02 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- "2.5"
before_script:
- "cp spec/{.travis.,}database.yml"
- "bundle exec rake db:prepare"
script: bundle exec rake spec:rails_all
sudo: false
```
Allow 2.5 to fail until Travis CI bug is fixed | ```yaml
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- "2.5"
matrix:
allow_failures:
# Allow 2.5 to fail until Travis CI bug is fixed. See:
# * https://github.com/travis-ci/travis-ci/issues/8978
# * https://github.com/travis-ci/travis-ci/issues/8969
- rvm: "2.5"
before_scrip... |
ff905e7d-1df2-4b08-98f7-76e6126c117e | {
"language": "YAML"
} | ```yaml
language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
- php: 7.0
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
before_script:
- composer install --prefer-dist --no-i... | ```yaml
language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
- php: 7.0
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
install:
- composer install --prefer-dist --no-interac... |
93820a70-aad6-4393-b4b8-f4b6a9bf44e1 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.3"
- "3.4"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy
install:
- "pip install ."
- "pip install -r requirements.txt"
script: nosetests
```
Install build deps for scipy. | ```yaml
language: python
python:
- "2.7"
- "3.3"
- "3.4"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy libblas-dev liblapack-dev gfortran
install:
- "pip install ."
- "pip install -r requirements.txt"
script: nosetests
``` |
2d1c000b-6089-499c-8c2d-e40478bbd8d0 | {
"language": "YAML"
} | ```yaml
steps:
- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
inputs:
command: restore
- task: DotNetCoreCLI@2
displayName: 'dotnet build'
inputs:
command: build
projects: 'LineBot.sln'
arguments: '-c Release'
- task: DotNetCoreCLI@2
displayName: 'dotnet test'
inputs:
command: tes... | ```yaml
steps:
- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
inputs:
command: restore
- task: DotNetCoreCLI@2
displayName: 'dotnet build'
inputs:
command: build
projects: 'LineBot.sln'
arguments: '-c Release'
- task: DotNetCoreCLI@2
displayName: 'dotnet test'
inputs:
command: tes... |
fecf8f81-efbb-405d-b7ff-bb60d96c3ad5 | {
"language": "YAML"
} | ```yaml
name: blog
channels:
- conda-forge
dependencies:
- beautifulsoup4
- flake8
- feedparser
- ipython
- ipywidgets
- jupyter
- lxml
- markdown
- mkdocs
- nbdime
- pelican
- python=3.6
- requests
```
Revert "update to py36 in blog env yml" | ```yaml
name: blog
channels:
- conda-forge
dependencies:
- beautifulsoup4
- flake8
- feedparser
- ipython
- ipywidgets
- jupyter
- lxml
- markdown
- mkdocs
- nbdime
- pelican
- python=3.5
- requests
``` |
09000d07-ecca-4ba2-8eaa-d57b4b1e2295 | {
"language": "YAML"
} | ```yaml
engines:
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.js"
exclude_paths:
- "**.min.js"
- karma*.conf.js
- test/**/*
- .*
```
Remove prism.js files from Code Climate checks | ```yaml
engines:
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.js"
exclude_paths:
- "**.min.js"
- karma*.conf.js
- prism/**/*
- test/**/*
- .*
``` |
1665fce3-655d-4242-8a03-57d204c36bad | {
"language": "YAML"
} | ```yaml
---
engines:
duplication:
enabled: true
config:
languages:
- ruby
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- "**.rb"
exclude_paths:
- test/
```
Update to v2 of the Code Climate config | ```yaml
version: "2"
plugins:
rubocop:
enabled: true
exclude_patterns:
- "**/spec/"``` |
f574a115-d3a3-408c-ae56-9a5d38009414 | {
"language": "YAML"
} | ```yaml
exclude_paths:
- "/vendor/*"
engines:
phpcodesniffer:
enabled: true
config:
file_extensions: "php"
standard: "PSR1, PSR2"
ratings:
paths:
- "**.php"
```
Fix standards inside of yml file | ```yaml
exclude_paths:
- "/vendor/*"
engines:
phpcodesniffer:
enabled: true
config:
file_extensions: "php"
standard: "PSR1,PSR2"
ratings:
paths:
- "**.php"
``` |
d46efc76-855f-4b9c-97a8-d59fcf12f19f | {
"language": "YAML"
} | ```yaml
{% set name = "borb" %}
{% set version = "2.0.8.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/borb-{{ version }}.tar.gz
sha256: e49e01142cf66b2e6c1502920dace35ae56fc688d70f01fdfc6b4e51ffb19f66
build:
number: 0
n... | ```yaml
{% set name = "borb" %}
{% set version = "2.0.8.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/borb-{{ version }}.tar.gz
sha256: e49e01142cf66b2e6c1502920dace35ae56fc688d70f01fdfc6b4e51ffb19f66
build:
number: 0
n... |
dcf124a1-cf48-4e5e-acd9-ad8333eb1e35 | {
"language": "YAML"
} | ```yaml
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
- bash check_tag.sh {{.Version}}
builds:
- env:
- CGO_ENABLED=0
ldflags:... | ```yaml
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
- bash check_tag.sh {{.Version}}
builds:
- env:
- CGO_ENABLED=0
ldflags:... |
b212cc7a-311a-4337-9004-5063a9e8eebc | {
"language": "YAML"
} | ```yaml
filter:
excluded_paths:
- 'tests/*'
- 'examples/*'
tools:
php_sim:
min_mass: 30
checks:
php:
duplication: false
coding_style:
php:
spaces:
around_operators:
concatenation: true
other:
... | ```yaml
filter:
excluded_paths:
- 'tests/*'
- 'tests-integration/*'
- 'examples/*'
tools:
php_sim:
min_mass: 30
checks:
php:
duplication: false
coding_style:
php:
spaces:
around_operators:
concatenation: true
... |
47bae953-e19d-4967-8eb1-9ff8b47173c2 | {
"language": "YAML"
} | ```yaml
extends: stylelint-config-standard
rules:
indentation: 2
declaration-block-single-line-max-declarations: 2
max-empty-lines: 2
selector-max-empty-lines: 2
declaration-empty-line-before:
- never
- ignore:
- after-declaration
block-opening-brace-space-before: null
rule-empty-line-be... | ```yaml
extends: stylelint-config-standard
rules:
indentation: 2
declaration-block-single-line-max-declarations: 2
max-empty-lines: 2
selector-max-empty-lines: 2
declaration-empty-line-before:
- never
- ignore:
- after-declaration
block-opening-brace-space-before: null
rule-empty-line-be... |
bc592764-4e14-44e8-bcca-68f257b37433 | {
"language": "YAML"
} | ```yaml
Categories:
- Science & Education
License: GPL-3.0-or-later
AuthorName: Felix Hollederer
AuthorEmail: asdoi@t-online.de
WebSite: https://asdoi.gitlab.io/timetable.html
SourceCode: https://github.com/asdoi/TimeTable
IssueTracker: https://github.com/asdoi/TimeTable/issues
Changelog: https://github.com/asdoi/Tim... | ```yaml
Categories:
- Science & Education
License: GPL-3.0-or-later
AuthorName: Felix Hollederer
AuthorEmail: asdoi@t-online.de
WebSite: https://asdoi.gitlab.io/timetable.html
SourceCode: https://github.com/asdoi/TimeTable
IssueTracker: https://github.com/asdoi/TimeTable/issues
Changelog: https://github.com/asdoi/Tim... |
7a8a1002-e6d9-4cb2-9a67-f1cef3728516 | {
"language": "YAML"
} | ```yaml
Categories:
- Development
- Writing
License: GPL-3.0-only
SourceCode: https://github.com/Keidan/HexViewer/
IssueTracker: https://github.com/Keidan/HexViewer/issues/
Changelog: https://github.com/Keidan/HexViewer/releases/
AutoName: HexViewer
RepoType: git
Repo: https://github.com/Keidan/HexViewer
Builds:... | ```yaml
Categories:
- Development
- Writing
License: GPL-3.0-only
SourceCode: https://github.com/Keidan/HexViewer/
IssueTracker: https://github.com/Keidan/HexViewer/issues/
Changelog: https://github.com/Keidan/HexViewer/releases/
AutoName: HexViewer
RepoType: git
Repo: https://github.com/Keidan/HexViewer
Builds:... |
a47080bd-86ad-41b6-a00b-cc66f33bf23c | {
"language": "YAML"
} | ```yaml
name: engines_honda
root: ~/Projects/engines_honda
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window:... | ```yaml
name: engines_honda
root: ~/Projects/engines_honda
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window:... |
f9df4368-adba-45fd-96a2-65219b327268 | {
"language": "YAML"
} | ```yaml
# vim: set sw=2 ts=2 softtabstop=2 expandtab:
runner: Boogaloo
runner_config:
mode: "exec" # Use Boogaloo's exec mode
# This is the tool_path inside the container
tool_path: "/home/boogaloo/.cabal/bin/boogaloo"
docker:
image: "delcypher/boogaloo-docker"
volume: "/vol/"
#max_memory: 4096
max_... | ```yaml
# vim: set sw=2 ts=2 softtabstop=2 expandtab:
runner: Boogaloo
runner_config:
mode: "test"
# This is the tool_path inside the container
tool_path: "/home/boogaloo/.cabal/bin/boogaloo"
docker:
image: "delcypher/boogaloo-docker"
volume: "/vol/"
max_memory: 4096
max_time: 5
additional_args:
... |
1071fed1-25cc-41ed-9eed-d3e7c392a631 | {
"language": "YAML"
} | ```yaml
- project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-yoga-jobs
- release-notes-jobs-python3
```
Use python job template for Zed | ```yaml
- project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-zed-jobs
- release-notes-jobs-python3
``` |
692efe14-63cb-42d0-bd05-edd98379201d | {
"language": "YAML"
} | ```yaml
name: Deploy Production Build
on:
push:
tags:
- '*'
env:
SW_DISABLED: true
COVERAGE: false
SENTRY_ORG: ilios
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12... | ```yaml
name: Deploy Production Build
on:
push:
tags:
- '*'
env:
SW_DISABLED: true
COVERAGE: false
SENTRY_ORG: ilios
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12... |
dbc06819-4f5c-4006-8295-b588b5c9213e | {
"language": "YAML"
} | ```yaml
name: Update Documentation
on:
push:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Set up Python
uses: actions/setup-python@v2
- name: Install depend... | ```yaml
name: Update Documentation
on:
push:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Set up Python
uses: actions/setup-python@v2
- name: Install depend... |
ccc998ba-20f1-4def-aafa-f04057f2bbe1 | {
"language": "YAML"
} | ```yaml
# These are supported funding model platforms
github: bbatsov
patreon: bbatsov
open_collective: rubocop
tidelift: "rubygems/rubocop"
custom: https://www.paypal.me/bbatsov
```
Enable my GitHub sponsor profile | ```yaml
# These are supported funding model platforms
github: [bbatsov, koic]
patreon: bbatsov
open_collective: rubocop
tidelift: "rubygems/rubocop"
custom: https://www.paypal.me/bbatsov
``` |
b48c1f29-03ba-4bf5-93d2-5a7f21978976 | {
"language": "YAML"
} | ```yaml
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10
working_directory: ~/insula
steps:
- checkout
... | ```yaml
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:6.11
working_directory: ~/insula
steps:
- checkout
... |
3325ece7-5aa2-4876-8c34-7b7d6eaaad98 | {
"language": "YAML"
} | ```yaml
package:
name: databroker
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: https://github.com/NSLS-II/databroker
git_rev: master
build:
# Note that this will override the default build string with the Python
# and NumPy versions
string: {{ envi... | ```yaml
package:
name: databroker
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: https://github.com/NSLS-II/databroker
git_rev: master
build:
# Note that this will override the default build string with the Python
# and NumPy versions
string: {{ envi... |
c6310ce8-300d-46f3-abe3-aec0d23dcfa1 | {
"language": "YAML"
} | ```yaml
package:
name: databroker
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: https://github.com/NSLS-II/databroker
git_rev: master
build:
number: 0
requirements:
build:
- python
run:
- python
- pandas
- pims
- metadatastore ... | ```yaml
package:
name: databroker
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: https://github.com/NSLS-II/databroker
git_rev: master
build:
# Note that this will override the default build string with the Python
# and NumPy versions
string: {{ envi... |
ddac914f-c717-4608-b308-246212e0ee41 | {
"language": "YAML"
} | ```yaml
name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: '1.18'
nav:
- modules/ROOT/nav.adoc
```
Switch back the docs version | ```yaml
name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: 'master'
nav:
- modules/ROOT/nav.adoc
``` |
3e7ba1c1-9e1b-4183-bef9-e55e649b3f08 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: e217a5fa6c7b18c83f9488d1cda363ffedee2a05a884d7117f205aca8b68836a
test-bench-deps:
test-framework: -any
base: -any
vector-space: -any
test-framework-quickcheck2: -any
containers: -any
thyme: -any
MemoTrie: -any
QuickCheck: <2.8
vector: -any
maintainer: fho@... | ```yaml
homepage: ''
changelog-type: ''
hash: 279f35ffdafb455e80194c5040e312f925e2b1e8f8c896c1b49b8fc6efc854a2
test-bench-deps:
test-framework: -any
base: -any
vector-space: -any
test-framework-quickcheck2: -any
containers: -any
thyme: -any
QuickCheck: <2.8
vector: -any
maintainer: fho@f12n.de
synopsis:... |
f34ccfdf-b7d1-4f08-b62d-b381a643d27b | {
"language": "YAML"
} | ```yaml
services:
- hash: f0270e2239b22514408c303edaa723fbb1e8e720
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8io/fabric8-init-tenant/
```
Update to tenant service with v 1.0.96 | ```yaml
services:
- hash: 959f0faa98751ce484b95e6b55fb2d543df3e22d
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8io/fabric8-init-tenant/
``` |
e3cc3cf2-6f39-4587-9432-9d85f8dd22a7 | {
"language": "YAML"
} | ```yaml
services:
- hash: bed58608f6c13082f5de5ce05cd826d5db51439e
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8io/fabric8-init-tenant/
```
Update tenant - Move jenkins service to teams | ```yaml
services:
- hash: 4dc6bfd5b5e8a69dcca9552a06d1ba9d491da9b9
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8io/fabric8-init-tenant/
``` |
4bfa5a6e-8e98-4900-9c15-06bb2de781b1 | {
"language": "YAML"
} | ```yaml
---
platform: linux
image_resource:
type: docker-image
source:
repository: cfbuildpacks/ci
inputs:
- name: pivotal-buildpack
optional: true
- name: pivotal-buildpack-cached
optional: true
- name: buildpacks-ci
- name: buildpack
caches:
- path: buildpack/vendor
outputs:
- name: buildp... | ```yaml
---
platform: linux
image_resource:
type: docker-image
source:
repository: cfbuildpacks/ci
inputs:
- name: pivotal-buildpack
optional: true
- name: pivotal-buildpack-cached
optional: true
- name: buildpacks-ci
- name: buildpack
outputs:
- name: buildpack-artifacts
run:
path: bash
a... |
ebcf8e03-3c12-4263-af87-363187acbc22 | {
"language": "YAML"
} | ```yaml
---
language: staticfile
default_versions:
- name: nginx
version: 1.11.13
exclude_files:
- ".git/"
- ".gitignore"
- ".gitmodules"
- ".rspec"
- cf_spec/
- log/
- test/
- buildpack-packager/
- staticfile_buildpack-*v*.zip
- pkg/
- ".envrc"
- cf.Gemfile
- cf.Gemfile.lock
- scripts/
- src/
dependencies:
- name: n... | ```yaml
---
language: staticfile
default_versions:
- name: nginx
version: 1.13.1
exclude_files:
- ".git/"
- ".gitignore"
- ".gitmodules"
- ".rspec"
- cf_spec/
- log/
- test/
- buildpack-packager/
- staticfile_buildpack-*v*.zip
- pkg/
- ".envrc"
- cf.Gemfile
- cf.Gemfile.lock
- scripts/
- src/
dependencies:
- name: ng... |
a323e489-4f69-4fd3-a245-1ca5489041cc | {
"language": "YAML"
} | ```yaml
fullnameOverride: "web"
replicaCount: 3
service:
port: 3000
containers:
- name: web
image: cyberdojo/web
resources:
limits:
memory: 128Mi
requests:
memory: 128Mi
#livenessProbe:
# path: /alive?
# port: 3000
#readinessProbe:
# path: /ready?
#... | ```yaml
fullnameOverride: "web"
replicaCount: 3
service:
port: 3000
containers:
- name: web
image: cyberdojo/web
resources:
limits:
memory: 128Mi
requests:
memory: 128Mi
livenessProbe:
path: /alive?
port: 3000
#readinessProbe:
# path: /ready?
# p... |
f9c2997d-d517-4a85-8d42-0bfe741a8d7d | {
"language": "YAML"
} | ```yaml
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build-lowest-version:
name: Build lowest version
runs-on: ubuntu-latest
steps:
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: none
e... | ```yaml
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build-lowest-version:
name: Build lowest version
runs-on: ubuntu-latest
steps:
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: none
e... |
942ddc5d-3ef6-458a-bb53-e87784942105 | {
"language": "YAML"
} | ```yaml
version: 7.1.0.{build}
pull_requests:
do_not_increment_build_number: true
skip_tags: true
skip_branch_with_pr: true
image: Visual Studio 2017
configuration: Release
install:
- cmd: >-
git submodule update --init --recursive
git lfs pull
build:
project: Core\DolphinVM\DolphinVM.sln
verbosity: ... | ```yaml
version: 7.1.1.{build}
pull_requests:
do_not_increment_build_number: true
skip_tags: true
skip_branch_with_pr: true
image: Visual Studio 2017
configuration: Release
install:
- cmd: >-
git submodule update --init --recursive
git lfs pull
build:
project: Core\DolphinVM\DolphinVM.sln
verbosity: ... |
3074ce47-5e70-46d2-a4ff-a8c3cfbd998c | {
"language": "YAML"
} | ```yaml
version: "master-{build}"
os: Windows Server 2012 R2
platform:
- x64
environment:
matrix:
# 21-x64 is failing right now
#- ruby_version: "21-x64"
- ruby_version: "21"
clone_folder: c:\projects\chef
clone_depth: 1
skip_tags: true
branches:
only:
- master
install:
- systeminfo
- winr... | ```yaml
version: "master-{build}"
os: Windows Server 2012 R2
platform:
- x64
environment:
matrix:
# 21-x64 is failing right now
#- ruby_version: "21-x64"
- ruby_version: "21"
clone_folder: c:\projects\chef
clone_depth: 1
skip_tags: true
branches:
only:
- master
install:
- systeminfo
- winr... |
4b8a581e-e805-4b1b-bcd3-578643292431 | {
"language": "YAML"
} | ```yaml
image: Visual Studio 2015
cache:
- '%HOMEDRIVE%%HOMEPATH%\.node-gyp'
- '%APPDATA%\npm-cache'
environment:
nodejs_version: "7.4.0"
NODE_PRE_GYP_GITHUB_TOKEN:
secure: izXdqKc3Q97YCK/iHmkf5704WRhBwZXVBn2G+MX/NgyxVJPfwTkZxc8WMET/QZOh
platform:
- x86
- x64
build: off
install:
- ps: Install-Pro... | ```yaml
image: Visual Studio 2015
cache:
- '%HOMEDRIVE%%HOMEPATH%\.node-gyp'
- '%APPDATA%\npm-cache'
environment:
nodejs_version: "8"
NODE_PRE_GYP_GITHUB_TOKEN:
secure: izXdqKc3Q97YCK/iHmkf5704WRhBwZXVBn2G+MX/NgyxVJPfwTkZxc8WMET/QZOh
platform:
- x86
- x64
build: off
install:
- ps: Install-Product... |
14901144-6761-447b-9d4b-49d34c35123f | {
"language": "YAML"
} | ```yaml
---
###############################################################################
# Seed node VM configuration.
# Name of the seed VM.
#seed_vm_name:
# Memory in MB.
#seed_vm_memory_mb:
# Number of vCPUs.
#seed_vm_vcpus:
# List of volumes.
#seed_vm_volumes:
# Name of the storage pool for the seed VM volu... | ```yaml
---
###############################################################################
# Seed node VM configuration.
# Name of the seed VM.
#seed_vm_name:
# Memory in MB.
#seed_vm_memory_mb:
# Number of vCPUs.
#seed_vm_vcpus:
# List of volumes.
#seed_vm_volumes:
# Name of the storage pool for the seed VM volu... |
4646eb31-102b-4339-8274-f1a34de3a372 | {
"language": "YAML"
} | ```yaml
---
galaxy_info:
author: kosssi
description: Install and Configure ssh authorized key
license: license MIT
min_ansible_version: 1.4
platforms:
- name: Ubuntu
versions:
- all
- name: Debian
versions:
- all
categories:
- system
```
Add dependencies key in metadata | ```yaml
---
galaxy_info:
author: kosssi
description: Install and Configure ssh authorized key
license: license MIT
min_ansible_version: 1.4
platforms:
- name: Ubuntu
versions:
- all
- name: Debian
versions:
- all
categories:
- system
dependencies: []
``` |
a492942b-eef1-4451-9590-ccb7c6bd2594 | {
"language": "YAML"
} | ```yaml
{% set name = "rb-inotify" %}
{% set version = "0.10.0" %}
{% set github_org = "guard" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
- url: https://rubygems.org/downloads/{{ name }}-{{ version }}.gem
sha256: 4481d9ce69159774be31215d10917684413ad3416b2018bdd8dc9b976a8747bb
build:... | ```yaml
{% set name = "rb-inotify" %}
{% set version = "0.10.0" %}
{% set github_org = "guard" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
- url: https://rubygems.org/downloads/{{ name }}-{{ version }}.gem
sha256: 4481d9ce69159774be31215d10917684413ad3416b2018bdd8dc9b976a8747bb
build:... |
216182c4-8ee3-4c38-9ed0-c755e962fa5d | {
"language": "YAML"
} | ```yaml
version: 1.0.{build}
image: Visual Studio 2017
shallow_clone: true
configuration: Release
platform: x64
install:
- cmd: scripts\bin\windows\genie.exe vs2017
build:
parallel: true
verbosity: minimal
project: build/projects/vs2017/slang.sln
test_script:
- cmd: build\win64_vs2017\bin\unittestsReleas... | ```yaml
version: 1.0.{build}
image: Visual Studio 2017
shallow_clone: true
configuration: Release
platform: x64
install:
- cmd: mkdir build
- cmd: cd build
- cmd: cmake -G"Visual Studio 15 2017 Win64" ..
build:
parallel: true
verbosity: minimal
project: build/slang.sln
test_script:
- cmd: build\tests... |
910a0b90-c5b4-4ce1-97d0-f74376075d40 | {
"language": "YAML"
} | ```yaml
version: 2.4.{build}
branches:
except:
- coverity_scan
configuration: Release
environment:
PROJECT_BASE: "C:/projects/morebin"
PATH: "C:\Libraries\boost_1_60_0;%PATH%"
platform: x64
before_build:
- ps: cd "${env:APPVEYOR_BUILD_FOLDER}"
- cmd: dir
- cmd: md build
- cmd: cd build
- cmd: cmake --versi... | ```yaml
version: 2.4.{build}
branches:
except:
- coverity_scan
configuration: Release
environment:
PROJECT_BASE: "C:/projects/morebin"
PATH: "C:\Libraries\boost_1_60_0;%PATH%"
os: Visual Studio 2015
platform: x64
before_build:
- ps: cd "${env:APPVEYOR_BUILD_FOLDER}"
- cmd: dir
- cmd: md build
- cmd: cd bu... |
0b9308c9-a62b-4975-b1c5-d8bd9d272f13 | {
"language": "YAML"
} | ```yaml
image:
- Visual Studio 2017
clone_depth: 10
configuration: Release
platform: AnyCPU
install:
- appveyor DownloadFile 'https://ci.appveyor.com/api/projects/markfinal/buildamation/artifacts/bam.zip?branch=master^&job=Image%3A%20Visual%20Studio%202017' -FileName bam.zip
- dir
- 7z x bam.zip -oc:\BuildAMati... | ```yaml
image:
- Visual Studio 2017
clone_depth: 10
configuration: Release
platform: AnyCPU
install:
- appveyor DownloadFile 'https://ci.appveyor.com/api/projects/markfinal/buildamation/artifacts/bam.zip?branch=master&job=Image%3A%20Visual%20Studio%202017' -FileName bam.zip
- dir
- 7z x bam.zip -oc:\BuildAMatio... |
9c7358de-fe85-43fd-97c5-0b323a1afb22 | {
"language": "YAML"
} | ```yaml
version: 1.0.0-{build}
image:
- Visual Studio 2019
- Ubuntu1804
- macos
environment:
matrix:
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.1"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.1"
PYTHON_ARCH: "64"
cache:
- '%LOCALAPPDATA%\pip\Cache'
... | ```yaml
version: 1.0.0-{build}
image:
- Visual Studio 2019
- Ubuntu1804
- macos
environment:
matrix:
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.1"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.1"
PYTHON_ARCH: "64"
cache:
- '%LOCALAPPDATA%\pip\Cache'
... |
b05533e4-06f1-4bb9-a93b-fb49134271cf | {
"language": "YAML"
} | ```yaml
# 2017-09-14
clone_depth: 1
version: '{branch}-{build}'
configuration: Debug
cache:
- C:\ProgramData\chocolatey\bin -> appveyor.yml
- C:\ProgramData\chocolatey\lib -> appveyor.yml
- inspectcode -> appveyor.yml
- packages -> **\packages.config
install:
- cmd: git submodule update --init --rec... | ```yaml
# 2017-09-14
clone_depth: 1
version: '{branch}-{build}'
configuration: Debug
cache:
- C:\ProgramData\chocolatey\bin -> appveyor.yml
- C:\ProgramData\chocolatey\lib -> appveyor.yml
- inspectcode -> appveyor.yml
- packages -> **\packages.config
install:
- cmd: git submodule update --init --rec... |
85fc80bc-4efe-4264-a0cc-fefdc231fc00 | {
"language": "YAML"
} | ```yaml
# http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf true
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
# Install scripts. (runs after repo cloning)
install:
# Get th... | ```yaml
# http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf true
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
# Install scripts. (runs after repo cloning)
install:
# Get th... |
48b4c78c-2628-47ba-8b12-2bee712f6fd6 | {
"language": "YAML"
} | ```yaml
trigger:
- master
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-18.04'
steps:
- script: sudo apt-get update --fix-missing
- script: sudo apt-get install -y libgl1-mesa-dev libgles2-mesa-dev libopenal-dev libasound2-dev libxxf86vm-dev libxi-dev libxcursor-dev libxrandr-dev libxss-dev
- script: |
... | ```yaml
trigger:
- master
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-18.04'
steps:
- script: sudo apt-get update --fix-missing
- script: sudo apt-get install -y libgl1-mesa-dev libgles2-mesa-dev libopenal-dev libasound2-dev libxxf86vm-dev libxi-dev libxcursor-dev libxrandr-dev libxss-dev
- script: |
... |
6f43983f-58dd-4c9a-9188-96c7ba9adfa2 | {
"language": "YAML"
} | ```yaml
init:
- git config --global core.autocrlf input
install:
- git submodule update --init --recursive
before_build:
- cmd: msiexec.exe /i "lib\Pex\pex.academic.x86.msi" /quiet /norestart
build_script:
- cmd: BuildScripts\YC.SEL.SDK.bat
test: off
version: 0.0.1.{build}
artifacts:
- path: bin
name: bi... | ```yaml
init:
- git config --global core.autocrlf input
install:
- git submodule update --init --recursive
before_build:
- cmd: msiexec.exe /i "lib\Pex\pex.academic.x86.msi" /quiet /norestart
build_script:
- cmd: .\BuildScripts\YC.SEL.SDK.bat
test: off
version: 0.0.1.{build}
artifacts:
- path: bin
name: ... |
7729d4ab-5161-42fc-9aaa-1935051285a0 | {
"language": "YAML"
} | ```yaml
environment:
nodejs_version: "6"
COZY_URL:
secure: uO9y1OhE9RrwDoYV5ewQPWITVjiTLzLO+dxhyOxpzoU=
COZY_PASSPHRASE:
secure: YQQimbK6g91kgTePrPHKl92Pu3O1Hjqsm+HjUUTmZEM=
install:
- cmd: appveyor-retry powershell Install-Product node $env:nodejs_version
- cmd: appveyor-retry yarn
- cmd: appveyor... | ```yaml
environment:
nodejs_version: "6"
COZY_URL:
secure: uO9y1OhE9RrwDoYV5ewQPWITVjiTLzLO+dxhyOxpzoU=
COZY_PASSPHRASE:
secure: tgJZSLSOHKLhxr+7TFh8F1NG9A5GAj5ndmu07IaAB7w=
install:
- cmd: appveyor-retry powershell Install-Product node $env:nodejs_version
- cmd: appveyor-retry yarn
- cmd: appveyor... |
4a50e730-99d9-434b-8345-0847b213fc40 | {
"language": "YAML"
} | ```yaml
branches:
only:
- development/v1.1
- release/v1.1
- master
image: Visual Studio 2017
cache:
- '%USERPROFILE%\.nuget\packages'
build_script:
- ps: .\build-ci.ps1
test_script:
- ps: .\test-ci.ps1
artifacts:
- path: src\artifacts\packages\*.nupkg
deploy:
provider: NuGet
on:
branch: master
api... | ```yaml
branches:
only:
- development/v1.1
- release/v1.1
- master
image: Visual Studio 2017
cache:
- '%USERPROFILE%\.nuget\packages'
build_script:
- ps: .\build-ci.ps1
test_script:
- ps: .\test-ci.ps1
artifacts:
- path: src\artifacts\packages\*.nupkg
deploy:
# Project feed
- provider: NuGet
server:... |
45909eda-51de-4085-be4d-f4934e54a4b7 | {
"language": "YAML"
} | ```yaml
skip_branch_with_pr: true
environment:
GOPATH: $(HOMEDRIVE)$(HOMEPATH)\go
MSYSTEM: MINGW64
clone_folder: $(GOPATH)\src\github.com\git-lfs\git-lfs
install:
- rd C:\Go /s /q
- cinst golang --version 1.8.0 -y
- cinst InnoSetup -y
- refreshenv
build_script:
- bash --login -c 'GOARCH=386 script/boo... | ```yaml
skip_branch_with_pr: true
environment:
GOPATH: $(HOMEDRIVE)$(HOMEPATH)\go
MSYSTEM: MINGW64
clone_folder: $(GOPATH)\src\github.com\git-lfs\git-lfs
install:
- rd C:\Go /s /q
- cinst golang --version 1.8.0 -y
- cinst InnoSetup -y
- refreshenv
- ps: |
echo "Go directories in machine PATH envi... |
a917b4f8-b695-4276-920c-464a80b9a13e | {
"language": "YAML"
} | ```yaml
environment:
matrix:
- ruby_version: "21"
- ruby_version: "22"
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- ruby -e 'p([:engine, RUBY_ENGINE, :platform, RUBY_PLATFORM])'
- gem --version
- gem install bundler --no-document
- bundler --version
- bundle install -... | ```yaml
environment:
matrix:
- ruby_version: "21"
- ruby_version: "22"
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- ruby -e 'p([:engine, RUBY_ENGINE, :platform, RUBY_PLATFORM])'
- gem --version
- gem install bundler:1.17.3 --no-document
- bundler --version
- bundle in... |
6bf1f894-59b0-4bdd-a11e-fc5a15bc397f | {
"language": "YAML"
} | ```yaml
# Exported from Kompositum > Settings > Export YAML
version: 1.0.0.{build}
branches:
only:
- appveyor_support
os:
- Windows Server 2012 R2
- Visual Studio 2015
- Visual Studio 2013
environment:
BUILD_TYPE: Release
ARCH: Win64
matrix:
- GENERATOR: Visual Studio 14 2015 %ARCH%
- GENERATOR: Visual St... | ```yaml
# Exported from Kompositum > Settings > Export YAML
version: 1.0.0.{build}
branches:
only:
- appveyor_support
os:
- Windows Server 2012 R2
environment:
BUILD_TYPE: Release
ARCH: Win64
matrix:
- GENERATOR: Visual Studio 14 2015 %ARCH%
- GENERATOR: Visual Studio 12 2013 %ARCH%
build_script:
- cmd: >... |
6cfc3270-50d0-4eda-8c17-4eadbebf6e1d | {
"language": "YAML"
} | ```yaml
version: 1.0.{build}
branches:
only:
- master
before_build:
- ps: nuget restore PhotoLife\PhotoLife.sln
build:
project: PhotoLife\PhotoLife.sln
verbosity: minimal
after_test:
- PhotoLife\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"PhotoLife\p... | ```yaml
version: 1.0.{build}
branches:
only:
- master
before_build:
- ps: nuget restore PhotoLife\PhotoLife.sln
build:
project: PhotoLife\PhotoLife.sln
verbosity: minimal
after_test:
- PhotoLife\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"PhotoLife\p... |
288f0e85-76da-46d8-bff1-886cdce0ab26 | {
"language": "YAML"
} | ```yaml
# Basic appveyor configuration : CodeCakeBuilder does the job.
version: build{build}
branches:
only:
- master
- develop
environment:
NUGET_API_KEY:
secure: Cx0q/gQZQpP3eDf6H9lzIDpYYki+sGCpruxgDcFUJRoYdpH7l5aDh7afloH3uNLD
MYGET_PREVIEW_API_KEY:
secure: CfEqNYjhrGX9DyalZ4jcadzJ/x8q25GulMCbZQDRRs... | ```yaml
# Basic appveyor configuration : CodeCakeBuilder does the job.
version: build{build}
branches:
only:
- master
- develop
environment:
NUGET_API_KEY:
secure: Cx0q/gQZQpP3eDf6H9lzIDpYYki+sGCpruxgDcFUJRoYdpH7l5aDh7afloH3uNLD
MYGET_PREVIEW_API_KEY:
secure: CfEqNYjhrGX9DyalZ4jcadzJ/x8q25GulMCbZQDRRs... |
851a8f18-683b-476d-8e27-73228c233a30 | {
"language": "YAML"
} | ```yaml
version: "{branch}-ci-{build}"
image: Visual Studio 2013
branches:
only:
- master
- appveyor
environment:
matrix:
- build: msvc
platform: x86
- build: msvc
platform: x64
- build: clang
platform: x86
- build: clang
platform: x64
before_build:
- cmd: git submodule update -... | ```yaml
version: "{branch}-ci-{build}"
image: Visual Studio 2013
branches:
only:
- master
- appveyor
environment:
matrix:
- build: msvc
platform: x86
- build: msvc
platform: x64
- build: clang
platform: x86
- build: clang
platform: x64
before_build:
- cmd: git submodule update -... |
6176aa3b-edac-4d44-a176-fd9d771720a0 | {
"language": "YAML"
} | ```yaml
---
Name: versionedfiles
---
File:
#can be used to disable the VersionedFiles replace menu tab in the CMS (useful when Upload: replaceFiles = true)
disableReplaceTab: false```
Exclude versions folders from syncing. | ```yaml
---
Name: versionedfiles
---
File:
#can be used to disable the VersionedFiles replace menu tab in the CMS (useful when Upload: replaceFiles = true)
disableReplaceTab: false
Filesystem:
sync_blacklisted_patterns:
- "/^_versions$/i"
``` |
34413195-661a-4809-97d2-98f44bc82447 | {
"language": "YAML"
} | ```yaml
---
- name: User | Create User Group
group:
name: "{{user.group|default(user.name)}}"
system: "{{user.system|default(omit)}}"
- name: User | Create User
user:
comment: "{{user.comment|default(omit)}}"
createhome: "{{user.create_home|default(omit)}}"
group: "{{user.group|default(user.nam... | ```yaml
---
- name: User | Create User Group
group:
name: "{{user.group|default(user.name)}}"
system: "{{user.system|default(omit)}}"
- name: User | Create User
user:
comment: "{{user.comment|default(omit)}}"
createhome: "{{user.createhome|default(omit)}}"
group: "{{user.group|default(user.name... |
255774c4-547a-4f9b-a80f-574a00a1fab0 | {
"language": "YAML"
} | ```yaml
---
- name: install dnsmasq and bind-utils
sudo: yes
yum:
name: "{{ item }}"
state: latest
with_items:
- dnsmasq
- bind-utils
tags:
- package
- dnsmasq
- name: configure consul lookups
sudo: yes
copy:
content: 'server=/consul/127.0.0.1#8600'
dest: /etc/dnsmasq.d/10-... | ```yaml
---
- name: install dnsmasq and bind-utils
sudo: yes
yum:
name: "{{ item }}"
state: latest
with_items:
- dnsmasq
- bind-utils
tags:
- dnsmasq
- name: configure dnsmasq for consul
sudo: yes
template:
src: 10-consul
dest: /etc/NetworkManager/dnsmasq.d/10-consul
tags:
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.