doc_id
stringlengths
36
36
metadata
dict
input
stringlengths
28
4.3k
output
stringlengths
11
5.45k
6bb67fd2-9bde-4022-9312-e071cd266357
{ "language": "YAML" }
```yaml name: Continuous Integration on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: macos-10.15 steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Grant e...
```yaml name: Continuous Integration on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: macos-10.15 steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Set up ...
7055c942-7901-43b7-8e7a-d0651d506391
{ "language": "YAML" }
```yaml name: PHP Composer on: push: branches: [ doryphore ] pull_request: branches: [ doryphore ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Validate composer.json and composer.lock run: composer validate --strict - name: Install depende...
```yaml name: PHP Composer on: push: branches: [ doryphore ] pull_request: branches: [ doryphore ] jobs: build: runs-on: ubuntu-latest steps: - uses: shivammathur/setup-php@v2 with: php-version: '7.3' - uses: actions/checkout@v2 - name: Validate composer.json and co...
d36fcd60-8667-4b6d-aea5-981776f7409a
{ "language": "YAML" }
```yaml driver: name: vagrant provisioner: name: chef_zero verifier: name: inspec platforms: - name: centos-5.11 - name: centos-6.8 - name: centos-7.2 - name: debian-7.11 run_list: apt::default - name: debian-8.5 run_list: apt::default - name: fedora-24 run_list: yum::dnf_yum_compat -...
```yaml driver: name: vagrant provisioner: name: chef_zero verifier: name: inspec platforms: - name: centos-5.11 - name: centos-6.8 - name: centos-7.2 - name: debian-7.11 run_list: apt::default - name: debian-8.6 run_list: apt::default - name: fedora-25 run_list: yum::dnf_yum_compat -...
525c55b6-5013-4fb7-8f3c-922dda1b8df0
{ "language": "YAML" }
```yaml --- <% if ENV['DIGITALOCEAN_ACCESS_TOKEN'] %> driver: name: digitalocean size: 512mb platforms: - name: centos-7-0-x64 transport: ssh_key: "<%= ENV['CI_SSH_KEY'] %>" max_wait_until_ready: 30 - name: ubuntu-14-04-x64 transport: ssh_key: "<%= ENV['CI_SSH_KEY'] %>" max_wait_until_ready: 30 <%...
```yaml --- <% if ENV['DIGITALOCEAN_ACCESS_TOKEN'] %> driver: name: digitalocean size: 512mb platforms: - name: centos-7-0-x64 transport: ssh_key: "<%= ENV['CI_SSH_KEY'] %>" max_wait_until_ready: 30 - name: ubuntu-14-04-x64 transport: ssh_key: "<%= ENV['CI_SSH_KEY'] %>" max_wait_until_ready: 30 - ...
8ef394a0-0ded-4d65-bea2-c1036552d2f2
{ "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% - 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...
e144c994-4e10-4d2d-b2be-46da7ad0d1dc
{ "language": "YAML" }
```yaml --- stages: - name: Deploy App inputs: - type: git branch: master triggers: - type: commit jobs: - name: Push to Bluemix type: deployer target: url: ${CF_TARGET_URL} organization: ${CF_ORGANIZATION} space: ${CF_SPACE} application: ${CF_APP} script: | cf ...
```yaml --- stages: - name: Deploy App inputs: - type: git branch: master triggers: - type: commit jobs: - name: Push to Bluemix type: deployer target: url: ${CF_TARGET_URL} organization: ${CF_ORGANIZATION} space: ${CF_SPACE} application: ${CF_APP} script: | cf ...
a6a0017d-a625-4177-9a59-264a0eda8165
{ "language": "YAML" }
```yaml # http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # 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: "4" # Install scripts. (runs after repo cloning) inst...
```yaml # http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # 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.12" - nodejs_version: "4" # Install scripts. (...
50d357ed-d79f-4834-addf-6349df4e6dc1
{ "language": "YAML" }
```yaml version: 1.4.{build} branches: only: - master image: Visual Studio 2017 configuration: Release before_build: appveyor-retry nuget restore build: parallel: true verbosity: minimal test: assemblies: - Facts.DiffPlex.dll test_script: - dotnet test .\Facts.DiffPlex\Facts.DiffPlex.csproj --configur...
```yaml version: 1.4.{build} branches: only: - master image: Visual Studio 2019 configuration: Release before_build: appveyor-retry dotnet restore build: parallel: true verbosity: minimal test: assemblies: - Facts.DiffPlex.dll test_script: - dotnet test .\Facts.DiffPlex\Facts.DiffPlex.csproj --configu...
c653d80c-a30c-4c51-b380-c7eeba54fdac
{ "language": "YAML" }
```yaml # http://www.appveyor.com/docs/appveyor-yml version: "{build}-{branch}" environment: matrix: - nodejs_version: "6.2.0" install: # Update Node to the specified version - ps: Install-Product node $env:nodejs_version # Install dependencies - npm install test_script: - npm test # Disable automat...
```yaml # http://www.appveyor.com/docs/appveyor-yml version: "{build}" environment: matrix: - nodejs_version: "6.2.0" install: # Update Node to the specified version - ps: Install-Product node $env:nodejs_version # Install dependencies - npm install test_script: - npm test # Disable automatic builds...
b2971884-f42c-439c-89ed-698b89827135
{ "language": "YAML" }
```yaml image: Visual Studio 2017 environment: NoPortable: True install: - choco install gitversion.portable -pre -y before_build: - dotnet --version - dotnet restore src/core/core.sln build_script: - gitversion /l console /output buildserver /updateassemblyinfo - dotnet build -c Release src...
```yaml image: Visual Studio 2017 environment: NoPortable: True install: - choco install gitversion.portable -pre -y before_build: - dotnet --version - dotnet restore src/core/core.sln build_script: - gitversion /l console /output buildserver /updateassemblyinfo - dotnet build -c Release src...
5ed311ef-c5a8-4ae4-b9d3-20b338245a7c
{ "language": "YAML" }
```yaml version: "build-{build}" os: Windows Server 2012 R2 platform: - x64 environment: machine_user: test_user machine_pass: Pass@word1 machine_port: 5985 KITCHEN_YAML: .kitchen.appveyor.yml SSL_CERT_FILE: c:\projects\kitchen-machine\certs.pem matrix: - ruby_version: "23" clone_folder: c:\projec...
```yaml version: "build-{build}" os: Windows Server 2012 R2 platform: - x64 environment: machine_user: test_user machine_pass: Pass@word1 machine_port: 5985 KITCHEN_YAML: .kitchen.appveyor.yml SSL_CERT_FILE: c:\projects\kitchen-machine\certs.pem matrix: - ruby_version: "23" clone_folder: c:\projec...
b86c4db0-40ba-4da6-a554-fe27928b308b
{ "language": "YAML" }
```yaml # 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" - nodejs_version: "0.10" - nodejs_version: "0.8" # Install scripts. (runs after repo cloning) instal...
```yaml # 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" - nodejs_version: "0.10" # Install scripts. (runs after repo cloning) install: # Get the latest stable...
f608a258-9ad2-4f9f-93f1-7391056ae1fa
{ "language": "YAML" }
```yaml homepage: '' changelog-type: '' hash: e586cb7e1a5a37b13b0ec1d5a9e3e7e59855cac5035f781f86a18c617ead03ee test-bench-deps: {} maintainer: chrisdone@gmail.com synopsis: Basic lens type and functions changelog: '' basic-deps: base: ! '>=4 && <5' template-haskell: -any all-versions: - '0.0.0' - '0.0.1' author: Ch...
```yaml homepage: '' changelog-type: '' hash: 11fc2a10bd2c956fc0700660a6a86b0eacbb3487b5d8cf603f97dcb7b0707d5c test-bench-deps: {} maintainer: chrisdone@gmail.com synopsis: Basic lens type and functions changelog: '' basic-deps: base: ! '>=4 && <5' template-haskell: -any all-versions: - '0.0.0' - '0.0.1' - '0.0.2' ...
30530696-ea11-4d7d-90ab-c1909a11c35e
{ "language": "YAML" }
```yaml homepage: http://github.com/GregorySchwartz/ploterific#readme changelog-type: '' hash: b71bfe0525304bd5fa9f6d319f12170b636c19d8df58de7e10c0a0043ca24370 test-bench-deps: {} maintainer: gsch@pennmedicine.upenn.edu synopsis: Basic plotting of tabular data for the command line. changelog: '' basic-deps: bytestrin...
```yaml homepage: http://github.com/GregorySchwartz/ploterific#readme changelog-type: '' hash: 5932413a2143bacaa18edffde1f9171e2b93bbf0d2477321418dff6c4e85088c test-bench-deps: {} maintainer: gsch@pennmedicine.upenn.edu synopsis: Basic plotting of tabular data for the command line. changelog: '' basic-deps: bytestrin...
ad738419-b294-4376-bae3-e1ff4f8c4162
{ "language": "YAML" }
```yaml version: '2.3.7.{build}' skip_tags: true install: - ps: | $full_build = Test-Path env:GHFVS_KEY git submodule init git submodule sync if ($full_build) { $fileContent = "-----BEGIN RSA PRIVATE KEY-----`n" $fileContent += $env:GHFVS_KEY.Replace(' ', "`n") $fileContent += "`n----...
```yaml version: '2.3.7.{build}' skip_tags: true install: - ps: | $full_build = Test-Path env:GHFVS_KEY git submodule init git submodule sync if ($full_build) { $fileContent = "-----BEGIN RSA PRIVATE KEY-----`n" $fileContent += $env:GHFVS_KEY.Replace(' ', "`n") $fileContent += "`n----...
7cf4e352-57b2-470b-a096-75b5b87fc433
{ "language": "YAML" }
```yaml version: b{build} platform: - x64 cache: - node_modules - '%APPDATA%\npm-cache' - '%USERPROFILE%\.electron' init: - git config --global core.autocrlf input install: - ps: Install-Product node 7 x64 - yarn install - yarn add electron-builder@next --dev # force install next version to test ele...
```yaml version: b{build} platform: - x64 cache: - node_modules - '%APPDATA%\npm-cache' - '%USERPROFILE%\.electron' init: - git config --global core.autocrlf input install: - ps: Install-Product node 7 x64 - yarn install - yarn add electron-builder@next --dev # force install next version to test ele...
c201cc14-47c1-4e07-bd51-da7925781dd0
{ "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```
42658273-4866-4045-abc1-a618c514f465
{ "language": "YAML" }
```yaml homepage: https://github.com/achirkin/vulkan#readme changelog-type: '' hash: 02c967ff2adcf5247ea0ee8498e0c4a710705e78a57a75dae199e11a4a8f1664 test-bench-deps: {} maintainer: chirkin@arch.ethz.ch synopsis: Low-level low-overhead vulkan api bindings changelog: '' basic-deps: base: ! '>=4.7 && <5' all-versions: ...
```yaml homepage: https://github.com/achirkin/vulkan#readme changelog-type: '' hash: 83040b6c0613921786d8a62da8d0713f873529fbf7f748869b39160f306f2bff test-bench-deps: {} maintainer: chirkin@arch.ethz.ch synopsis: Low-level low-overhead vulkan api bindings changelog: '' basic-deps: base: ! '>=4.9 && <5' all-versions: ...
abb8cce7-be1a-408f-9bdd-e70bec53f8ed
{ "language": "YAML" }
```yaml init: - git config --global core.autocrlf input environment: matrix: - nodejs_version: "0.12" - nodejs_version: "4" - nodejs_version: "5" - nodejs_version: "6" - nodejs_version: "7" skip_tags: true platform: - x86 - x64 version: "{build}" build: off install: - ps: Install-Product node ...
```yaml init: - git config --global core.autocrlf input environment: matrix: - nodejs_version: "0.12" - nodejs_version: "4" - nodejs_version: "5" - nodejs_version: "6" - nodejs_version: "7" skip_tags: true version: "{build}" build: off install: - ps: Install-Product node $env:nodejs_version - set...
c6cd80a5-cf50-4d67-ac8a-eb2015d51ed8
{ "language": "YAML" }
```yaml version: 1.0.{build} os: Visual Studio 2015 before_build: - nuget restore -verbosity detailed - nuget install NUnit.Console -version 3.0.0 install: - set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% test_script: - NUnit.Console.3.0.0\tools\nunit3-console.exe ".\MaxMind.MinFraud.UnitTest\bin\Debu...
```yaml --- version: '1.0.{build}' os: Visual Studio 2015 before_build: - nuget restore -verbosity detailed - nuget install NUnit.Console -version 3.0.0 install: - set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% build: - verbosity: minimal test_script: - NUnit.Console.3.0.0\tools\nunit3-console.exe "....
88199a2b-ab1d-498f-ae93-45487cbd3ca7
{ "language": "YAML" }
```yaml image: "hub.ricebook.net/base/centos:onbuild-eru-core-2016.11.28" before_script: - "ln -s $CI_PROJECT_DIR $GOPATH/src/gitlab.ricebook.net/platform/core" stages: - test - build - rpm test: stage: test script: - "make test" build: stage: build script: - make build artifacts: paths: ...
```yaml image: "hub.ricebook.net/base/centos:onbuild-eru-core-2016.09.02" before_script: - "ln -s $CI_PROJECT_DIR $GOPATH/src/gitlab.ricebook.net/platform/core" stages: - test - build - rpm test: stage: test script: - "make test" build: stage: build script: - make build artifacts: paths: ...
a218dda9-dd01-479f-9a47-473e4fc06d27
{ "language": "YAML" }
```yaml version: '{build}' pull_requests: do_not_increment_build_number: true branches: only: - master nuget: disable_publish_on_pr: true build_script: - ps: .\Build.ps1 test: off artifacts: - path: .\artifacts\*.nupkg name: NuGet deploy: - provider: NuGet name: production api_key: secure: Wnw70OCnY...
```yaml version: '{build}' pull_requests: do_not_increment_build_number: true branches: only: - master nuget: disable_publish_on_pr: true build_script: - ps: .\Build.ps1 test: off artifacts: - path: .\artifacts\*.nupkg name: NuGet deploy: - provider: NuGet name: production api_key: secure: O2aKtP6hb...
5c47d32e-32b1-4791-935d-da3e9b94915b
{ "language": "YAML" }
```yaml loomio_webhooks: repo: loomio/loomio_webhooks loomio_org_plugin: repo: loomio/loomio_org_plugin loomio_tags: repo: loomio/loomio_tags experimental: true loomio_truncate_comment: repo: loomio/loomio_truncate_comment experimental: true loomio_group_progress_card: ...
```yaml loomio_webhooks: repo: loomio/loomio_webhooks loomio_org_plugin: repo: loomio/loomio_org_plugin loomio_tags: repo: loomio/loomio_tags experimental: true loomio_truncate_comment: repo: loomio/loomio_truncate_comment experimental: true loomio_group_progress_card: ...
9b15e985-141d-48c1-99bc-f5e279a5113c
{ "language": "YAML" }
```yaml version: 4.1.0.{build} configuration: Release nuget: disable_publish_on_pr: true clone_depth: 1 test: off build_script: - ps: .\build.ps1 artifacts: - path: artifacts\packages\**\*.nupkg name: MyGet deploy: - provider: NuGet server: https://www.myget.org/F/autofac/api/v2/package api_key: secu...
```yaml version: 4.1.0.{build} configuration: Release environment: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true NUGET_XMLDOC_MODE: skip nuget: disable_publish_on_pr: true clone_depth: 1 test: off build_script: - ps: .\build.ps1 artifacts: - path: artifacts\packages\**\*.nupkg name: MyGet deploy: - provider: ...
9c200fb2-e799-45ec-a9cd-9facf3e8d6d7
{ "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% - appveyor DownloadFile http://www.imagemagick.org/download/binar...
```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% - appveyor DownloadFile http://www.imagemagick.org/download/binar...
6c57cc60-9a8e-4cfd-9b35-fc3db096c350
{ "language": "YAML" }
```yaml version: '{build}' image: - Ubuntu - Visual Studio 2017 pull_requests: do_not_increment_build_number: true branches: only: - master nuget: disable_publish_on_pr: true environment: APPVEYOR_YML_DISABLE_PS_LINUX: true build_script: - ps: .\build.ps1 - sh: ./build.sh test: off artifacts: - path: .\a...
```yaml version: '{build}' image: - Ubuntu - Visual Studio 2019 pull_requests: do_not_increment_build_number: true branches: only: - master nuget: disable_publish_on_pr: true environment: APPVEYOR_YML_DISABLE_PS_LINUX: true build_script: - ps: .\build.ps1 - sh: ./build.sh test: off artifacts: - path: .\a...
a64463d4-86c0-41a6-94e5-306d5f76571b
{ "language": "YAML" }
```yaml # http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # 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: "3" # Install scripts. (runs after repo cloning) inst...
```yaml # http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # 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: "4" # Install scripts. (runs after repo cloning) inst...
e2f753ac-0a3c-41e6-be6d-18a9f1c536cb
{ "language": "YAML" }
```yaml version: 0.0.{build} image: Visual Studio 2017 Preview build_script: - ps: >- ./build/install-dotnet.ps1 dotnet --version ./build.ps1 -Configuration Release test: off``` Update image for AppVeyor build
```yaml version: 0.0.{build} image: Visual Studio 2019 build_script: - ps: >- ./build/install-dotnet.ps1 dotnet --version ./build.ps1 -Configuration Release test: off ```
eca37c3b-0685-47fc-8198-1cffdec762f3
{ "language": "YAML" }
```yaml version: 3.7.0-ci{build} branches: only: - appveyor os: - Windows Server 2012 R2 environment: matrix: - PlatformToolset: v90 - PlatformToolset: v100 build_script: - ps: scripts\appveyor_ci_build.ps1 # Other configuration options platform: Win32 configuration: Debug ``` Quit calling out branch, r...
```yaml version: 3.7.0-ci{build} os: - Windows Server 2012 R2 environment: matrix: - PlatformToolset: v90 - PlatformToolset: v100 build_script: - ps: scripts\appveyor_ci_build.ps1 # Other configuration options platform: Win32 configuration: Debug ```
4d67a68a-02fb-4a2c-a36e-2d4d697c830a
{ "language": "YAML" }
```yaml nuget: account_feed: true before_build: - nuget restore configuration: Release build: project: LazyStorage.sln verbosity: minimal after_build: - cmd: nuget pack LazyStorage\LazyStorage.csproj -version "%GitVersion_NuGetVersion%" -prop "target=Release" - cmd: appveyor PushArtifact "LazyStorage.%G...
```yaml nuget: account_feed: true before_build: - nuget restore configuration: Release build: project: LazyStorage.sln verbosity: minimal after_build: - cmd: nuget pack LazyStorage\LazyStorage.csproj -version "%GitVersion_NuGetVersion%" -prop "target=Release" - cmd: appveyor PushArtifact "LazyStorage.%G...
1eb57056-e4b0-490c-8cef-e5b5a3664868
{ "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: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build:...
c9f3a8fa-fbf5-41f7-8287-2816d446cbd0
{ "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 - type: heading label: Tema - type: directory path: _layouts label: Layouts create: ...
```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 - type: heading label: Tema - type: directory path: _layouts label: Layouts create: ...
36e48cf2-81c8-496c-95d1-dd2f9c7f5ff5
{ "language": "YAML" }
```yaml # Config for Dependabot updates. See Documentation here: # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: # Update Github actions in workflows - package-ecosystem: "github-actions" directory: "/" schedule: interval: "...
```yaml # Config for Dependabot updates. See Documentation here: # https://docs.github.com/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates version: 2 updates: # Update GitHub actions in workflows - package-ecosystem: "github-actions" ...
6ff509ba-a520-4bfb-9d58-547b9dc4d017
{ "language": "YAML" }
```yaml # ~/.tmuxinator/enamel.yml name: enamel root: ~/work/chrome/src # 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....
```yaml # ~/.tmuxinator/enamel.yml name: enamel root: ~/work/chrome/src # 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....
633f0076-ee92-4949-abe6-bbb01ee47e7f
{ "language": "YAML" }
```yaml homepage: https://github.com/elliottt/layout-rules changelog-type: markdown hash: 37909fcd9b8015de7031d555aefd1de7706d9d7894c9db0b3d751192e213ccc5 test-bench-deps: {} maintainer: awesomelyawesome@gmail.com synopsis: A collection of different layout implementations changelog: ! '# Revision history for layout-rul...
```yaml homepage: https://github.com/elliottt/layout-rules changelog-type: markdown hash: 60c7a9bc9b70cdb34b1a0a41f6909b163eee6c6480780cc324a3f8fe6f6406d2 test-bench-deps: {} maintainer: awesomelyawesome@gmail.com synopsis: A collection of different layout implementations changelog: ! '# Revision history for layout-rul...
e0d5ae1d-13e5-4e42-900c-48ba683eea01
{ "language": "YAML" }
```yaml homepage: http://github.com/GregorySchwartz/rank-product#readme changelog-type: '' hash: 93d8f1535b2fc8100614964e3876a613beb2aca155ccbc6ab2a4f2028c7a42fa test-bench-deps: {} maintainer: gsch@mail.med.upenn.edu synopsis: Find the rank product of a data set. changelog: '' basic-deps: base: ! '>=4.7 && <5' ran...
```yaml homepage: http://github.com/GregorySchwartz/rank-product#readme changelog-type: '' hash: 1d1e72ea8ab8d56a6ea0ce23cb942ba9e1f76484dc63f790b5de390818d265ae test-bench-deps: {} maintainer: gsch@mail.med.upenn.edu synopsis: Find the rank product of a data set. changelog: '' basic-deps: bytestring: -any optparse...
f75b1351-ee38-4a9a-b32d-684a3a1ea00b
{ "language": "YAML" }
```yaml - job: name: config builders: - gerrit-git-prep - shell: | mkdir build jenkins-jobs test jobs/ -o build/ jenkins-jobs update --delete-old jobs/ triggers: - gerrit: trigger-on-change-merged-event: true projects: - project...
```yaml - job: name: config-update builders: - gerrit-git-prep - shell: | mkdir build jenkins-jobs test jobs/ -o build/ jenkins-jobs update --delete-old jobs/ triggers: - gerrit: trigger-on-change-merged-event: true projects: - ...
9603ff85-aeb2-4379-b7f9-0035cd708baa
{ "language": "YAML" }
```yaml Categories: - Science & Education License: Unlicense AuthorName: Evil Insult Generator & Contributors AuthorEmail: marvin@evilinsult.com WebSite: https://evilinsult.com/ SourceCode: https://github.com/EvilInsultGenerator/android-app IssueTracker: https://github.com/EvilInsultGenerator/android-app/issues Trans...
```yaml Categories: - Science & Education License: Unlicense AuthorName: Evil Insult Generator & Contributors AuthorEmail: marvin@evilinsult.com WebSite: https://evilinsult.com/ SourceCode: https://github.com/EvilInsultGenerator/android-app IssueTracker: https://github.com/EvilInsultGenerator/android-app/issues Trans...
e88efdf6-b61b-4089-b7a5-3e205f1437fb
{ "language": "YAML" }
```yaml --- # memcached deployment used by Flux to cache # container image metadata. apiVersion: apps/v1 kind: Deployment metadata: name: memcached spec: replicas: 1 selector: matchLabels: name: memcached template: metadata: labels: name: memcached spec: containers: -...
```yaml --- # memcached deployment used by Flux to cache # container image metadata. apiVersion: apps/v1 kind: Deployment metadata: name: memcached spec: replicas: 1 selector: matchLabels: name: memcached template: metadata: labels: name: memcached spec: containers: -...
48a74f2f-d633-40e6-abd1-a0e817c4cab0
{ "language": "YAML" }
```yaml Categories: - Time License: GPL-2.0-only AuthorName: Igor Kruchinin SourceCode: https://github.com/IgorKruchinin/AchieApp IssueTracker: https://github.com/IgorKruchinin/AchieApp/issues AutoName: Achie RepoType: git Repo: https://github.com/IgorKruchinin/AchieApp Binaries: https://github.com/IgorKruchinin/Ac...
```yaml Categories: - Time License: GPL-2.0-only AuthorName: Igor Kruchinin SourceCode: https://github.com/IgorKruchinin/AchieApp IssueTracker: https://github.com/IgorKruchinin/AchieApp/issues AutoName: Achie RepoType: git Repo: https://github.com/IgorKruchinin/AchieApp Binaries: https://github.com/IgorKruchinin/Ac...
24f02f7d-d73b-4a1b-b5df-b33967978b8a
{ "language": "YAML" }
```yaml # Docker image # Build a Docker image to deploy, run, or push to a container registry. # Add steps that use Docker Compose, tag images, push to a registry, run an image, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/docker pool: vmImage: 'ubuntu-latest' variables: tagName: '$(Bu...
```yaml # Docker image # Build a Docker image to deploy, run, or push to a container registry. # Add steps that use Docker Compose, tag images, push to a registry, run an image, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/docker pool: vmImage: 'ubuntu-latest' variables: tagName: '$(Bu...
16e78fe0-9604-42d7-9c88-6c86e4251b99
{ "language": "YAML" }
```yaml pool: name: Azure Pipelines vmImage: windows-latest demands: - msbuild - visualstudio - vstest jobs: - job: Build variables: BuildSolution: StyleCopAnalyzers.sln BuildPlatform: AnyCPU strategy: matrix: Debug: BuildConfiguration: Debug Release: BuildConfig...
```yaml pool: name: Azure Pipelines vmImage: windows-latest demands: - msbuild - visualstudio - vstest jobs: - job: Build variables: BuildSolution: StyleCopAnalyzers.sln BuildPlatform: AnyCPU strategy: matrix: Debug: BuildConfiguration: Debug Release: BuildConfig...
f14cefde-91d6-4194-ae6d-8fe1748d6291
{ "language": "YAML" }
```yaml # Holds the menu items - name: navbar-left pages: - title: Home - title: Tickets - title: Venue - name: navbar-right pages: - title: Schedule - title: Sponsors - title: Contact - name: footer pages: - title: Tickets - title: Venue - title: Schedule - title: Spons...
```yaml # Holds the menu items - name: navbar-left pages: - title: Home - title: Tickets - title: Venue - name: navbar-right pages: - title: Schedule - title: Sponsors - title: Contact - name: footer pages: - title: Tickets - title: Venue - title: Schedule - title: Spons...
aa9a18ad-7f8f-4e6e-9fda-ea3434e18891
{ "language": "YAML" }
```yaml --- - name: Validate Ansible version assert: that: - "{{ ansible_version is defined }}" - "{{ ansible_version.full | version_compare(minimum_ansible_version, '>=') }}" msg: "Your Ansible version is too old. Trellis require at least {{ minimum_ansible_version }}. Your version is {{ ansible_ve...
```yaml --- - name: Validate Ansible version assert: that: - "{{ ansible_version is defined }}" - "{{ ansible_version.full | version_compare(minimum_ansible_version, '>=') }}" msg: "Your Ansible version is too old. Trellis require at least {{ minimum_ansible_version }}. Your version is {{ ansible_ve...
7655410d-78d3-4c89-98ba-8c068e6ca5d7
{ "language": "YAML" }
```yaml --- - name: Ensure the system can use the HTTPS transport for APT stat: path=/usr/lib/apt/methods/https register: apt_https_transport - name: Install HTTPS transport for APT apt: pkg=apt-transport-https state=installed when: not apt_https_transport.stat.exists - name: Enable all repositories in sourc...
```yaml --- - name: Ensure the system can use the HTTPS transport for APT stat: path=/usr/lib/apt/methods/https register: apt_https_transport - name: Install HTTPS transport for APT apt: pkg=apt-transport-https state=installed when: not apt_https_transport.stat.exists - name: Enable all repositories in sourc...
78ecc296-4d93-4d6d-a5a8-61b518ad33ea
{ "language": "YAML" }
```yaml --- platform: linux image: docker:///cloudfoundry/lattice-ci inputs: - name: lattice-ci - name: lattice-release run: path: lattice-ci/tasks/unit-test-ltc/run.sh params: PACKAGE: some-package ``` Use correct path to unit-test's run script
```yaml --- platform: linux image: docker:///cloudfoundry/lattice-ci inputs: - name: lattice-ci - name: lattice-release run: path: lattice-ci/tasks/unit-test/run.sh params: PACKAGE: some-package ```
300a1b9f-f77f-4104-afb8-c0d9a3818b9d
{ "language": "YAML" }
```yaml kernel: image: linuxkit/kernel:4.11.11 cmdline: "console=ttyS0" tar: none init: - linuxkit/init-lcow:5375fa62bada3faec048b22d41033dcf1e9ba727 - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 trust: org: - linuxkit ``` Update LCOW to latest hash
```yaml kernel: image: linuxkit/kernel:4.11.11 cmdline: "console=ttyS0" tar: none init: - linuxkit/init-lcow:e846df6e745e0db2e90ec06a1a3509cb9bfd77da - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 trust: org: - linuxkit ```
5fc703c2-5817-4bca-bb49-8f39a343db53
{ "language": "YAML" }
```yaml --- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: directory path: _events label: Events create: all match: "**/*" - type: directory path: _programs label: Programs create: all match: "**/*" - type: directory path: _team label: Team create: all mat...
```yaml --- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: directory path: _events label: Events create: all match: "**/*" - type: directory path: _programs label: Programs create: all match: "**/*" - type: directory path: _team label: Team create: all mat...
8fa796c5-cf5d-4bee-af6d-9eca0ae7fc04
{ "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: assets public_path: "/assets" 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: assets public_path: "/assets" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build:...
7e01bf8a-042a-4e15-ba19-7d1a75bed28e
{ "language": "YAML" }
```yaml --- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: document path: index.html label: Home Page read_only: true - type: jekyll-pages label: Pages create: all - type: directory path: _events label: Events create: all match: "**/*" - type: directory path...
```yaml --- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: document path: index.html label: Home Page read_only: false - type: jekyll-pages label: Pages create: all - type: directory path: _events label: Events create: all match: "**/*" - type: directory pat...
11fe2da2-a091-44db-9c93-02a031b65dc6
{ "language": "YAML" }
```yaml # In order to install old Rubies, we need to use old Ubuntu distibution. dist: trusty language: ruby email: false cache: directories: - ../bundle before_install: - "script/update_rubygems_and_install_bundler" - unset _JAVA_OPTIONS - "script/clone_all_rspec_repos" bundler_args: "--binstubs --standalo...
```yaml # In order to install old Rubies, we need to use old Ubuntu distibution. dist: trusty language: ruby email: false cache: directories: - ../bundle before_install: - "script/update_rubygems_and_install_bundler" - unset _JAVA_OPTIONS - "script/clone_all_rspec_repos" bundler_args: "--binstubs --standalo...
d8dcf41d-55ad-441a-a857-7c26612f40fe
{ "language": "YAML" }
```yaml version: 0.1.1.{build} configuration: Release before_build: - nuget restore src/ after_build: - nuget pack src\Amazon.SQS.ExtendedClient\Amazon.SQS.ExtendedClient.nuspec -Version %appveyor_build_version% - appveyor PushArtifact '*.nupkg'``` Remove redundant quotes in PushArtifact argument
```yaml version: 0.1.1.{build} configuration: Release before_build: - nuget restore src/ after_build: - nuget pack src\Amazon.SQS.ExtendedClient\Amazon.SQS.ExtendedClient.nuspec -Version %appveyor_build_version% - appveyor PushArtifact *.nupkg```
fa9d36af-c64a-472b-91d8-535cbf2ca3a5
{ "language": "YAML" }
```yaml branches: except: - /travis-.*/ install: ps: | Import-Module '.\appveyor-tool.ps1' Bootstrap build_script: - ps: .\build.ps1 -Target "Appveyor" artifacts: - path: package\*.nupkg # - path: package\*.msi # AppVeyor defaults to just its build number version: '{build}' # dis...
```yaml branches: except: - /travis-.*/ install: ps: | Import-Module '.\appveyor-tool.ps1' Bootstrap build_script: - ps: .\build.ps1 -Target "Appveyor" # disable built-in tests. test: off artifacts: - path: package\*.nupkg # - path: package\*.msi deploy: - provider: NuGet ...
5802fc96-5232-4322-b5c5-38d842f6caf4
{ "language": "YAML" }
```yaml version: 3.0.{build} os: Visual Studio 2015 configuration: Release assembly_info: patch: true file: '**\SolutionInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}' environment: DNX_FEED: https://www.nuget.org/api/v2 nuget: account_fe...
```yaml version: 3.0.{build} os: Visual Studio 2015 configuration: Release assembly_info: patch: true file: '**\SolutionInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}' environment: DNX_FEED: https://www.nuget.org/api/v2 nuget: account_fe...
e9a4fef3-ccf4-424b-83e5-b9dcd37166e6
{ "language": "YAML" }
```yaml environment: ELECTRON_RUN_AS_NODE: 1 VSCODE_BUILD_VERBOSE: true platform: - x86 - x64 install: - ps: Install-Product node 8 cache: - node_modules - "%APPDATA%\\npm-cache" test_script: - node --version - npm --version - npm run lint - npm run vscode:prepublish - npm run test --silent # ...
```yaml environment: ELECTRON_RUN_AS_NODE: 1 VSCODE_BUILD_VERBOSE: true platform: - x86 - x64 install: - ps: Install-Product node 8 - npm install cache: - node_modules - "%APPDATA%\\npm-cache" test_script: - node --version - npm --version - npm run lint - npm run vscode:prepublish - npm run ...
910de2ad-be1a-4f57-b4a7-3b4c21bf7620
{ "language": "YAML" }
```yaml # Absolutely essential: we must build using VS 2019. os: Visual Studio 2019 branches: only: - master build_script: - cmd: date /t - cmd: time /t - cmd: tzutil /g - cmd: set - cmd: MSBuild.exe /t:restore /p:Configuration=Debug /v:quiet AntlrVSIX.sln - cmd: MSBuild.exe /p:Configuration=Debug /v...
```yaml # Absolutely essential: we must build using VS 2019. os: Visual Studio 2019 branches: only: - master build_script: - cmd: date /t - cmd: time /t - cmd: tzutil /g - cmd: set - cmd: MSBuild.exe /t:restore /p:Configuration=Debug /v:quiet AntlrVSIX.sln - cmd: MSBuild.exe /p:Configuration=Debug /v...
d4a6c95c-20db-4fd9-948a-7f7e83e3077f
{ "language": "YAML" }
```yaml build_script: msbuild nunit.sln /p:Configuration=Release /t:Rebuild test_script: - cd bin\Release - nunit-console.exe nunit.agent.tests.dll - nunit-console.exe nunit-console.tests.dll ``` Add in all framework tests and save results in nunit2 format
```yaml build_script: msbuild nunit.sln /p:Configuration=Release /t:Rebuild test_script: - cd bin\Release - nunit-console.exe net-4.5\nunit.framework.tests.dll -result:NUnitFrameworkTestResult-4.5.xml;format=nunit2 - net-4.5\nunitlite.tests.exe -result:NUnitLiteTestResult-4.5.xml;format=nunit2 - nunit-con...
157bea02-a520-450c-82fa-d822ddd5b3d4
{ "language": "YAML" }
```yaml Categories: - Sports & Health - Time License: MIT AuthorName: Miklos Vajna AuthorEmail: plees-tracker@vmiklos.hu SourceCode: https://github.com/vmiklos/plees-tracker IssueTracker: https://github.com/vmiklos/plees-tracker/issues AutoName: Plees Tracker RepoType: git Repo: https://github.com/vmiklos/plees-t...
```yaml Categories: - Sports & Health - Time License: MIT AuthorName: Miklos Vajna AuthorEmail: plees-tracker@vmiklos.hu SourceCode: https://github.com/vmiklos/plees-tracker IssueTracker: https://github.com/vmiklos/plees-tracker/issues AutoName: Plees Tracker RepoType: git Repo: https://github.com/vmiklos/plees-t...
94e67cef-8635-4bb0-b4b0-9b62b170f1a4
{ "language": "YAML" }
```yaml image: Visual Studio 2017 build_script: - cmd: msbuild build/build.proj /verbosity:minimal test: assemblies: test\SshNet.Security.Cryptography.NET40.Tests\bin\Debug\SshNet.Security.Cryptography.Tests.dll ``` Revert "Attempt to build using our regular MSBuild script."
```yaml image: Visual Studio 2017 before_build: - nuget restore src\SshNet.Security.Cryptography.VS2017.sln build: project: src\SshNet.Security.Cryptography.VS2017.sln verbosity: minimal test: assemblies: test\SshNet.Security.Cryptography.NET40.Tests\bin\Debug\SshNet.Security.Cryptography.Tests.dll ```
b3c8acf4-5aa5-4fd6-8e97-b18bedeee0cc
{ "language": "YAML" }
```yaml configuration: - Debug - Release before_build: - ps: nuget restore ``` Use explicit solution name in AppVeyor configuration
```yaml configuration: - Debug - Release before_build: ps: nuget restore build: project: Suave.EvReact.sln ```
2df34565-eab1-4000-9b9e-5fc3013229b5
{ "language": "YAML" }
```yaml #---------------------------------# # environment configuration # #---------------------------------# version: 2.16.{build}.0 install: - git clone https://github.com/PowerShell/DscResource.Tests - ps: | Add-WindowsFeature RSAT-AD-PowerShell Import-Module "$env:APPVEYOR_BUILD_FOLDER...
```yaml #---------------------------------# # environment configuration # #---------------------------------# version: 2.16.{build}.0 install: - git clone https://github.com/PowerShell/DscResource.Tests - ps: | Add-WindowsFeature RSAT-AD-PowerShell Import-Module "$env:APPVEYOR_BUILD_FOLDER...
26a18918-ab04-48ba-8276-66f07209f79f
{ "language": "YAML" }
```yaml version: 1.0.{build} image: Windows Server 2016 environment: DOCKER_USER: secure: LjNiW/ZWrfVIJn3Mc9foeg== DOCKER_PASS: secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd install: - docker version build_script: - ps: .\build.ps1 test_script: - ps: .\test.ps1 deploy_sc...
```yaml version: 1.0.{build} image: Visual Studio 2017 environment: DOCKER_USER: secure: LjNiW/ZWrfVIJn3Mc9foeg== DOCKER_PASS: secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd install: - docker version build_script: - ps: .\build.ps1 test_script: - ps: .\test.ps1 deploy_scr...
3ba30d2a-8b22-4d38-a5e1-7bbbbfe3b6d2
{ "language": "YAML" }
```yaml environment: build_version: '1.0.0.{build}' ######## RELEASE CONFIGURATION ######## - branches: only: - feature/support-release-in-build-script version: 1.0.0.{build} configuration: Release platform: Any CPU before_build: - nuget restore build: project: AlexPovar.ResharperTwe...
```yaml ######## RELEASE CONFIGURATION ######## - branches: only: - master version: 1.0.0.{build} configuration: Release platform: Any CPU before_build: - nuget restore build: project: AlexPovar.ResharperTweaks.sln verbosity: minimal after_build: - nuget pack AlexPovar.Resh...
43f51205-e2ce-4e05-9dfe-d1966819d3c2
{ "language": "YAML" }
```yaml version: "{build}" os: Windows Server 2012 R2 clone_folder: c:\projects\src\github.com\rjeczalik\bin environment: GOPATH: c:\projects install: - set PATH=%GOPATH%\bin;%PATH% - cd %APPVEYOR_BUILD_FOLDER% - go version - go get code.google.com/p/go.tools/cmd/vet - go get -v -t ./... - go install -a -ra...
```yaml version: "{build}" os: Windows Server 2012 R2 clone_folder: c:\projects\src\github.com\rjeczalik\bin environment: GOPATH: c:\projects install: - set PATH=%GOPATH%\bin;%PATH% - cd %APPVEYOR_BUILD_FOLDER% - go version - go get code.google.com/p/go.tools/cmd/vet - go get -v -t ./... build_script: - go ...
aea249e8-67d2-46e1-9b76-0760e951b0a3
{ "language": "YAML" }
```yaml # http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # 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: "3" # Install scripts. (runs after repo cloning) inst...
```yaml # http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # 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: "4" # Install scripts. (runs after repo cloning) inst...
d5e12412-4d38-428d-9f2b-7a20d064100a
{ "language": "YAML" }
```yaml environment: matrix: - RUST_VERSION: 1.6.0 BITS: 32 - RUST_VERSION: 1.6.0 BITS: 64 install: - IF "%BITS%" == "32" SET ARCH=i686 - IF "%BITS%" == "64" SET ARCH=x86_64 - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:RUST_VERSION}-${env:ARCH}-pc-windows-gnu.exe" ...
```yaml environment: matrix: - RUST_VERSION: 1.6.0 BITS: 32 - RUST_VERSION: 1.6.0 BITS: 64 install: - IF "%BITS%" == "32" SET ARCH=i686 - IF "%BITS%" == "64" SET ARCH=x86_64 - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:RUST_VERSION}-${env:ARCH}-pc-windows-gnu.exe" ...
52586e0a-0027-4508-9ddd-ea5d3e63b39e
{ "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" - nodejs_version: "0.11" # Install scripts. (runs after rep...
```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" - nodejs_version: "0.11" # Install scripts. (runs after rep...
718e9cb8-9a17-40fc-8619-44337255f91f
{ "language": "YAML" }
```yaml environment: matrix: - PYTHON: "C:\\Python35-x64" PYTHON_VERSION: "3.5.x" PYTHON_ARCH: "64" install: - ps: if (-not(Test-Path($env:PYTHON))) { & _appveyor\install-python.ps1 } - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;C:\\Program Files (x86)\\NSIS\\Bin;%PATH%" - "python --version" - "pyt...
```yaml environment: matrix: - PYTHON: "C:\\Python36-x64" PYTHON_VERSION: "3.6.x" PYTHON_ARCH: "64" install: - ps: if (-not(Test-Path($env:PYTHON))) { & _appveyor\install-python.ps1 } - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;C:\\Program Files (x86)\\NSIS\\Bin;%PATH%" - "python --version" - "pyt...
a8caa722-1851-4688-995e-f510e903f6d6
{ "language": "YAML" }
```yaml {% set version = "0.6.10" %} package: name: riip version: "{{ version }}" source: path: ../ build: number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - pip - python - numpy - scipy - cython - setuptools run: - gitpython - matplotlib - ...
```yaml {% set version = "0.6.10" %} package: name: riip version: "{{ version }}" source: path: ../ build: number: 0 script: "{{ PYTHON }} -m pip install --use-feature=in-tree-build . -vv" requirements: host: - pip - python - numpy - scipy - cython - setuptools run: - gitpy...
60e463c1-3c0e-415c-b129-98b4117ab455
{ "language": "YAML" }
```yaml version: "2" services: db: image: mysql:5.6.45 container_name: db command: mysqld --character-set-server=utf8 --collation-server=utf8_general_ci environment: - MYSQL_ROOT_PASSWORD=password - MYSQL_USER=credentials001 - MYSQL_PASSWORD=password - MYSQL_DATABASE=credentia...
```yaml version: "2" services: db: image: mysql:5.7 container_name: db command: mysqld --character-set-server=utf8 --collation-server=utf8_general_ci environment: - MYSQL_ROOT_PASSWORD=password - MYSQL_USER=credentials001 - MYSQL_PASSWORD=password - MYSQL_DATABASE=credentials ...
dbc929d4-660b-4873-8d67-335b5c816ce8
{ "language": "YAML" }
```yaml data: image: debian:jessie user: www-data volumes: - .:/var/www/ web: image: nginx:1.7 ports: - "8016:80" - "44312:443" links: - php volumes: - docker/nginx/default.conf:/etc/nginx/conf.d/default.conf volumes_from: - data php: image: louisbl/php:5.6-fpm links: -...
```yaml data: image: debian:jessie user: www-data volumes: - .:/var/www/ web: image: nginx:1.7 ports: - "8016:80" - "44312:443" links: - php volumes: - docker/nginx/default.conf:/etc/nginx/conf.d/default.conf volumes_from: - data php: image: louisbl/php:5.6-fpm links: -...
e33648b9-1c52-458d-bc1c-6bcca5716aed
{ "language": "YAML" }
```yaml version: '2' services: db: volumes: - pgdata:/var/lib/postgresql/data image: postgres environment: - POSTGRES_USER=olgart - POSTGRES_DB=olgart app: build: ./app/ volumes: - static:/www/static/:ro - media:/www/media/ - ./olgart.json:/olgar...
```yaml version: '2' services: db: volumes: - pgdata:/var/lib/postgresql/data image: postgres environment: - POSTGRES_USER=olgart - POSTGRES_DB=olgart app: build: ./app/ volumes: - static:/www/static/:ro - media:/www/media/ - ./olgart.json:/olgar...
16fd3141-a342-4853-9d42-215c47eb7952
{ "language": "YAML" }
```yaml processor: build: . links: - queue environment: VIP_DP_AWS_ACCESS_KEY: VIP_DP_AWS_SECRET_KEY: VIP_DP_S3_BUCKET: VIP_DP_SQS_REGION: VIP_DP_SQS_QUEUE: VIP_DP_SQS_FAIL_QUEUE: queue: image: rabbitmq environment: RABBITMQ_NODENAME: vip_data_processor ``` Use RabbitMQ image ...
```yaml processor: build: . links: - queue environment: VIP_DP_AWS_ACCESS_KEY: VIP_DP_AWS_SECRET_KEY: VIP_DP_S3_BUCKET: VIP_DP_SQS_REGION: VIP_DP_SQS_QUEUE: VIP_DP_SQS_FAIL_QUEUE: queue: image: rabbitmq:3.4.3-management ports: - "15672" environment: RABBITMQ_NODENAME: vip...
6ae80fe4-5cbb-46b7-8df7-2e8c2c2e011d
{ "language": "YAML" }
```yaml version: '2' services: nanopub: build: . depends_on: - db environment: - NPS_MONGODB_HOST=db ports: - 8080:8080 db: image: mongo ``` Make MongoDB data persistent for Docker compose
```yaml version: '2' services: nanopub: build: . depends_on: - db environment: - NPS_MONGODB_HOST=db ports: - 8080:8080 db: image: mongo volumes: - /data/nanopubs/db:/data/db ```
48331686-98c1-4d16-bd6c-610111ff0814
{ "language": "YAML" }
```yaml version: '2' services: server: build: . entrypoint: /entrypoint.sh environment: - POSTGRES_PASSWORD=postgres command: postgres ports: - "5432:5432" volumes: - ./data:/data - /mnt/solexa:/mnt/solexa ``` Make /mnt/solexa work for an actual automounted dir
```yaml version: '2' services: server: build: . entrypoint: /entrypoint.sh environment: - POSTGRES_PASSWORD=postgres command: postgres ports: - "5432:5432" volumes: - ./data:/data - /net/bioaps01/srv/nfs4/solexa:/mnt/solexa:ro ```
3c29e508-d234-4013-b49f-bfc92551cbdc
{ "language": "YAML" }
```yaml name: Vienna on: pull_request jobs: test: name: Test runs-on: macOS-latest steps: - name: Install SwiftLint run: brew install swiftlint - name: Set up Git repository uses: actions/checkout@v1 - name: Build Xcode project run: xcodebuild -project Vienna.xcodeproj -sc...
```yaml name: Vienna on: pull_request jobs: test: name: Test runs-on: macos-11.0 steps: - name: Install SwiftLint run: brew install swiftlint - name: Set up Git repository uses: actions/checkout@v1 - name: Build Xcode project run: xcodebuild -project Vienna.xcodeproj -sche...
de564e2e-02d4-44a2-9683-ddfe3155b79b
{ "language": "YAML" }
```yaml name: publish-to-pypi on: [ push, pull_request ] jobs: test: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup Python uses: actions/setup-python@v2 with: python-version: 3.7 - name: Install dependencies ...
```yaml name: publish-to-pypi on: [ push, pull_request ] jobs: test: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup Python uses: actions/setup-python@v2 with: python-version: 3.7 - name: Install dependencies ...
5f603ed6-43f5-4b57-a6b8-def2b9bb7aba
{ "language": "YAML" }
```yaml name: Deploy to NPM & Tag on: workflow_dispatch: inputs: versionUpdateType: description: 'For example 1.0.1, or patch -> <newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease' required: true default: patch env: NODE_AUTH_TOKEN: secrets.NPM_AUTH...
```yaml name: Deploy to NPM & Tag on: workflow_dispatch: inputs: versionUpdateType: description: 'For example 1.0.1, or patch -> <newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease' required: true default: patch env: NPM_TOKEN: secrets.NPM_AUTH_TOKEN...
455f036b-114c-4c6d-970f-7be183986f59
{ "language": "YAML" }
```yaml name: Python CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: unit-test: runs-on: ubuntu-latest strategy: matrix: python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.py...
```yaml name: Python CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: unit-test: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9, '3.10'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-...
4e4b8bc9-1cb4-4817-8e19-7af5d5bc8381
{ "language": "YAML" }
```yaml name: Tests on: pull_request: null push: branches: - master jobs: tests: runs-on: ubuntu-latest strategy: matrix: php: - '7.0' - '7.1' - '7.2' - '7.3' - '7.4' name: PHP ${{ matrix.php }} tests steps: # check...
```yaml name: Tests on: pull_request: null push: branches: - master jobs: tests: runs-on: ubuntu-latest strategy: matrix: php: - '7.0' - '7.1' - '7.2' - '7.3' - '7.4' name: PHP ${{ matrix.php }} tests steps: # check...
26056c9c-310a-422e-89ad-bef995122cd4
{ "language": "YAML" }
```yaml homepage: https://github.com/oisdk/lean-peano#readme changelog-type: markdown hash: 8ca0ffb805c579aad16193e483ff2a52495858a502cd666e157ce37b000cf73d test-bench-deps: base: -any hedgehog: -any doctest: -any base-compat: -any deepseq: -any QuickCheck: -any lean-peano: -any template-haskell: -any m...
```yaml homepage: https://github.com/oisdk/lean-peano#readme changelog-type: markdown hash: 25083084da1f6d5d102018062e5bd513a90f13021f25fceaf7a6ee5fb4548901 test-bench-deps: base: ! '>=4.10.0.0 && <5' hedgehog: -any doctest: -any base-compat: -any deepseq: -any QuickCheck: -any lean-peano: -any template...
2fa3bd02-4b80-4214-b322-2aa5297ba85a
{ "language": "YAML" }
```yaml homepage: https://ahakki.xyz changelog-type: '' hash: c7113dfabfb0f60f89f191340fa685b044ef9e5b0750173ab3af7edd3646b362 test-bench-deps: base: -any hspec: -any libroman: -any QuickCheck: -any maintainer: ahk@ahakki.xyz synopsis: Roman Numerals for YOU changelog: '' basic-deps: split: -any base: ! '>=...
```yaml homepage: https://ahakki.xyz changelog-type: '' hash: 78c8584e82e6c310f8310224674ef3ca1b73ae710e6709e6bad0546c49a66dfb test-bench-deps: base: -any hspec: -any libroman: -any QuickCheck: -any maintainer: ahk@ahakki.xyz synopsis: Roman Numerals for YOU changelog: '' basic-deps: split: -any base: ! '>=...
d5f26330-1598-4cdf-9260-acbda5b47c2f
{ "language": "YAML" }
```yaml homepage: https://github.com/fumieval/witherable changelog-type: '' hash: 4466b830d62a9e35c279f1d84d373dd07981e2cc9689bc27ff0e01d97bad9ac6 test-bench-deps: {} maintainer: Fumiaki Kinoshita <fumiexcel@gmail.com> synopsis: Generalization of filter and catMaybes changelog: '' basic-deps: base: ==4.* unordered-...
```yaml homepage: https://github.com/fumieval/witherable changelog-type: '' hash: e678ea8e7b097ef219b908eb35c6e96b2082fb8a270313478adccf0bc5a952ea test-bench-deps: {} maintainer: Fumiaki Kinoshita <fumiexcel@gmail.com> synopsis: filterable traversable changelog: '' basic-deps: base: ==4.* unordered-containers: -any...
be2fda0a-7a3a-47a4-a355-f7d27d18dad4
{ "language": "YAML" }
```yaml --- agent_type_00001: id: 1 name: Person display_name: Person note: position: 1 agent_type_00002: id: 2 name: CorporateBody display_name: CorporateBody note: position: 2 agent_type_00003: id: 3 name: Conference display_name: Conference note: position: 3 # == Schema Informati...
```yaml --- agent_type_00001: id: 1 name: person display_name: Person note: position: 1 agent_type_00002: id: 2 name: corporate_body display_name: CorporateBody note: position: 2 agent_type_00003: id: 3 name: conference display_name: Conference note: position: 3 # == Schema Informat...
b07f27b7-5008-44ab-a399-ac0736bf32cf
{ "language": "YAML" }
```yaml --- - name: Install the packages apt: name="{{ item }}" state=present update_cache=yes with_items: "{{ mysql_packages }}" when: ansible_os_family == "Debian" tags: [mysql,packages] - name: ensure mysql service is up action: service name=mysql state=started tags: [mysql,services] - name: Create th...
```yaml --- - name: Install the packages apt: name="{{ item }}" state=present update_cache=yes with_items: "{{ mysql_packages }}" when: ansible_os_family == "Debian" tags: [mysql,packages] - name: ensure mysql service is up action: service name=mysql state=started tags: [mysql,services] - name: Create th...
49fc40b8-1a0f-4a90-bebb-9b237b42a9e3
{ "language": "YAML" }
```yaml --- - name: Install cargo (Rust package manager) become: yes apt: name=cargo state=present - name: Install ripgrep command: cargo install ripgrep args: creates: "{{ home_dir }}/.cargo/bin/rg" ``` Install latest rust for ripgrep
```yaml --- - name: Install rust and cargo shell: curl https://sh.rustup.rs -sSf | sh -s -- -y args: creates: "{{ home_dir }}/.cargo/bin/cargo" warn: False - name: Install ripgrep command: "{{ home_dir }}/.cargo/bin/cargo install ripgrep" args: creates: "{{ home_dir }}/.cargo/bin/rg" ```
f015d5eb-8f66-40eb-8dfb-fe1d1f7d5d96
{ "language": "YAML" }
```yaml - hosts: all pre_tasks: - name: Ensure pip include_role: name: ensure-pip - name: Install git-review pip: name: git-review virtualenv: /opt/git-review virtualenv_command: '{{ ensure_pip_virtualenv_command }}' become: yes - name: Link git-review ...
```yaml - hosts: all pre_tasks: - name: Ensure pip include_role: name: ensure-pip vars: ensure_pip_from_packages: True ensure_pip_from_upstream_interpreters: - python3.6 - python3.7 - python3.8 - name: Install git-review pip: nam...
e25bd514-82b3-407f-951f-7191abccb0c7
{ "language": "YAML" }
```yaml version: 1.0.0.{build} os: Visual Studio 2015 configuration: Release platform: Any CPU assembly_info: patch: true file: AssemblyInfo.* assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}-$(APPVEYOR_REPO_COMMIT)' before_build: - ps: nuget restore ...
```yaml version: 1.0.0.{build} os: Visual Studio 2015 configuration: Release platform: Any CPU assembly_info: patch: true file: AssemblyInfo.* assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}-$(APPVEYOR_REPO_COMMIT)' before_build: - ps: nuget restore ...
8483dc0d-5218-4cbf-a4f1-018d30e7c87a
{ "language": "YAML" }
```yaml version: '1.0.{build}' platform: - x86 - x64 - ARM configuration: - Debug - Release matrix: fast_finish: true``` Add NuGet Restore to CI config
```yaml version: '1.0.{build}' platform: - x86 - x64 - ARM configuration: - Release matrix: fast_finish: true before_build: - nuget restore```
0acb5a57-2da1-4323-bc34-f56ead464ae8
{ "language": "YAML" }
```yaml version: 1.0.{build} os: Visual Studio 2015 configuration: Release platform: Any CPU init: - ps: git config --global core.autocrlf true install: - set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% before_build: - nuget restore build: verbosity: minimal artifacts: - path: 'Tvl.VisualStudio.InheritanceMar...
```yaml version: 1.0.{build} os: Visual Studio 2015 configuration: Release platform: Any CPU init: - ps: git config --global core.autocrlf true install: - set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% before_build: - nuget restore build: verbosity: minimal artifacts: - path: 'Tvl.VisualStudio.InheritanceMar...
4d0980cb-145e-43a7-a035-957777b1db7d
{ "language": "YAML" }
```yaml version: 1.1.1.{build}-pre branches: only: - master - develop image: Visual Studio 2017 configuration: Publish platform: Any CPU environment: nuget_api_key: secure: L7CA8R31O28Mlv6Bw82r9nwZWnnRJzuHvdOLrNckp47kfsipZBiCYlF0fiwb3jXr assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_ve...
```yaml version: 1.1.1.{build}-pre branches: only: - master - develop image: Visual Studio 2017 configuration: Publish platform: Any CPU environment: nuget_api_key: secure: L7CA8R31O28Mlv6Bw82r9nwZWnnRJzuHvdOLrNckp47kfsipZBiCYlF0fiwb3jXr assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_ve...
5488b5a1-5f39-4129-9aaf-b76c2915aa4d
{ "language": "YAML" }
```yaml version: '1.0.{build}' configuration: - Debug - Release platform: Any CPU environment: # Don't report back to the mothership DOTNET_CLI_TELEMETRY_OPTOUT: 1 init: - ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0") before_build: - appveyor-retry dotnet restore -v Minim...
```yaml version: '1.0.{build}' configuration: - Debug - Release platform: Any CPU environment: # Don't report back to the mothership DOTNET_CLI_TELEMETRY_OPTOUT: 1 init: - ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0") before_build: - appveyor-retry dotnet restore -v Minim...
546cd837-8017-4919-98b1-11992ba4d4ca
{ "language": "YAML" }
```yaml build: false environment: matrix: - PYTHON: "C:/Python27" install: - ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py') - "%PYTHON%/python.exe C:/get-pip.py" - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy mingw-w64-x86_64-ca-certificates ca-cer...
```yaml build: false environment: matrix: - PYTHON: "C:/Python27" install: - ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py') - "%PYTHON%/python.exe C:/get-pip.py" - "%PYTHON%/Scripts/pip.exe --version" - "%PYTHON%/Scripts/pip.exe install tox" test_scrip...
3cf5268c-2024-4056-9868-d068d5ad548b
{ "language": "YAML" }
```yaml version: {build} build: false environment: matrix: - PYTHON: "C:\\Python26" - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python33" - PYTHON: "C:\\Python34" - PYTHON: "C:\\Python35" init: - "ECHO %PYTHON%" - ps: "ls C:/Python*" install: - "%PYTHON%/Scripts/pip.exe install -e ." - "%P...
```yaml version: "#{build}" build: false environment: matrix: - PYTHON: "C:\\Python26" - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python33" - PYTHON: "C:\\Python34" - PYTHON: "C:\\Python35" init: - "ECHO %PYTHON%" - ps: "ls C:/Python*" install: - "%PYTHON%/Scripts/pip.exe install -e ." - ...
fcaf9581-1f74-4777-846c-25916b715e3f
{ "language": "YAML" }
```yaml environment: matrix: - PYTHON: "C:\\Python34" PYTHON_VERSION: "Python 3.4 x86" - PYTHON: "C:\\Python35" PYTHON_VERSION: "Python 3.5 x86" - PYTHON: "C:\\Python34-x64" PYTHON_VERSION: "Python 3.4 x64" DISTUTILS_USE_SDK: "1" - PYTHON: "C:\\Python35-x64" PYTHON_VERS...
```yaml environment: matrix: - PYTHON: "C:\\Python34" PYTHON_VERSION: "Python 3.4 x86" IMAGEMAGICK_PLATFORM: "--x86" - PYTHON: "C:\\Python35" PYTHON_VERSION: "Python 3.5 x86" IMAGEMAGICK_PLATFORM: "--x86" - PYTHON: "C:\\Python34-x64" PYTHON_VERSION: "Python 3.4 x64" D...
29d32b70-3aab-47b6-8811-d3c153cc9c4d
{ "language": "YAML" }
```yaml version: "{build}" os: Windows Server 2012 R2 clone_folder: c:\gopath\src\github.com\mholt\caddy environment: GOPATH: c:\gopath install: - go get golang.org/x/tools/cmd/vet - echo %PATH% - echo %GOPATH% - go version - go env - go get -d ./... build_script: - go vet ./... - go test ./...``...
```yaml version: "{build}" os: Windows Server 2012 R2 clone_folder: c:\gopath\src\github.com\mholt\caddy environment: GOPATH: c:\gopath install: - go get golang.org/x/tools/cmd/vet - echo %GOPATH% - go version - go env - go get -d ./... build_script: - go vet ./... - go test ./...```
c48e24c3-dfc7-463b-a5c1-5be2fcdfc4eb
{ "language": "YAML" }
```yaml build: false environment: global: BINSTAR_USER: menpo BINSTAR_KEY: secure: fyETJrtllCxpbmu5FLz5KVnRW1qLEfSmZa5GVSIzoWEPejhD/a2kWdhbhRYj1rTj matrix: - PYTHON_VERSION: 2.7 - PYTHON_VERSION: 3.5 platform: - x86 - x64 init: - ps: Start-FileDownload 'https://raw.githubusercontent.c...
```yaml build: false environment: global: BINSTAR_USER: menpo BINSTAR_KEY: secure: fyETJrtllCxpbmu5FLz5KVnRW1qLEfSmZa5GVSIzoWEPejhD/a2kWdhbhRYj1rTj matrix: - PYTHON_VERSION: 2.7 - PYTHON_VERSION: 3.5 platform: - x86 - x64 init: - ps: Start-FileDownload 'https://raw.githubusercontent.c...
b08dad0b-e5ab-41b8-926f-19221e014c65
{ "language": "YAML" }
```yaml version: '{build}' clone_folder: c:\projects\cactusjump # Build worker image (VM template) image: Visual Studio 2015 configuration: - Release - Debug platform: - x86 cache: - build/googletest-source - build/googletest-download environment: matrix: - arch: Win32 before_build: - cmd: mkdir build ...
```yaml version: '{build}' clone_folder: c:\projects\cactusjump # Build worker image (VM template) image: Visual Studio 2015 configuration: - Release - Debug cache: - build/googletest-source - build/googletest-download before_build: - cmd: mkdir build && cd build && cmake --version && cmake .. build: proj...
9721621e-d096-4999-8bb4-92467a211f7b
{ "language": "YAML" }
```yaml # http://www.appveyor.com/docs/appveyor-yml environment: matrix: - PHANTOM_SRC: "npm" - PHANTOM_SRC: "chocolatey" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of io.js - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild 2) - npm version - npm install ...
```yaml # http://www.appveyor.com/docs/appveyor-yml environment: matrix: - PHANTOM_SRC: "npm" - PHANTOM_SRC: "chocolatey" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of nodejs - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild 4) - npm version - npm install ...
3ee14b11-1347-412e-b97b-a5f5d1913306
{ "language": "YAML" }
```yaml # http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # 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: "4" - nodejs_version: "8" # Install scripts. (run...
```yaml # http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # 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: "6" - nodejs_version: "8" # Install scripts. (run...