Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add workflow to auto-update Go dependencies
name: Go Dependencies on: schedule: - cron: '0 9 * * *' workflow_dispatch: jobs: go-deps: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: bazelbuild/setup-bazelisk@v2 - uses: actions/setup-go@v3 - name: Update Go Modules run: go mod tidy - name...
Create github action for CI
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby: - 2.4.x - 2.5.x - 2.6.x steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix...
Update from Hackage at 2021-04-12T15:02:54Z
homepage: https://github.com/githubuser/mcaeson#readme changelog-type: markdown hash: 2b998fea00f1a50d78ec9f46dd2f294030f01815835ea25fc857733518c987aa test-bench-deps: base: '>=4.7 && <5' mcaeson: -any maintainer: chris@chrisdornan.com synopsis: An Aeson parsing toolkit changelog: | # Changelog for mcaeson ## ...
Add an issue template for regression triage
# Copyright lowRISC contributors. # Licensed under the Apache License, Version 2.0, see LICENSE for details. # SPDX-License-Identifier: Apache-2.0 name: Triage Test description: Issue to track regression failure triaging. title: "[test-triage] " labels: ["Component:TestTriage"] body: - type: dropdown id: hierarc...
Add the Travis CI configuration
sudo: false language: node_js cache: directories: - node_modules notifications: email: false before_install: - npm install -g greenkeeper-lockfile@1 before_script: - npm prune - greenkeeper-lockfile-update after_script: - greenkeeper-lockfile-upload
Update from Hackage at 2021-09-06T16:37:31Z
homepage: https://iu-parfunc.github.io/gibbon/ changelog-type: markdown hash: 663c2a47c97aa6103107c95741e65842a279b176e1837dd0499ed4ab896fe679 test-bench-deps: {} maintainer: rrnewton@gmail.com synopsis: A compiler for operating on serialized trees. changelog: | # 0.1 basic-deps: base: '>=4 && <5' all-versions: - '...
Remove DISABLE_V8=0 (check for key, not value)
language: ruby rvm: - 2.2.6 - 2.3.2 branches: only: - "master" env: - RUBY_GC_MALLOC_LIMIT=4000000 RUBY_GC_MALLOC_LIMIT_MAX=16000000 RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR=1.1 RUBY_GC_OLDMALLOC_LIMIT=16000000 RUBY_GC_OLDMALLOC_LIMIT_MAX=16000000 before_install: gem install bundler matrix: ...
language: ruby rvm: - 2.2.6 - 2.3.2 branches: only: - "master" env: - RUBY_GC_MALLOC_LIMIT=4000000 RUBY_GC_MALLOC_LIMIT_MAX=16000000 RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR=1.1 RUBY_GC_OLDMALLOC_LIMIT=16000000 RUBY_GC_OLDMALLOC_LIMIT_MAX=16000000 before_install: gem install bundler matrix: ...
Add nodeset for centos5 on docker
HOSTS: centos-5-x64: default_apply_opts: strict_variables: platform: el-5-x86_64 hypervisor : docker image: centos:5 # This stops the image from being deleted on completion, speeding up the process. docker_preserve_image: true CONFIG: type: foss log_level: debug
Update from Hackage at 2016-10-10T22:45:06+00:00
homepage: https://github.com/schell/event-transformer#readme changelog-type: '' hash: 84fea38b5428772ea482650cbbdb6e2760f4cf0464aee768de949aa7dc4d0ff3 test-bench-deps: event-transformer: -any base: -any maintainer: schell@zyghost.com synopsis: Initial project template from stack changelog: '' basic-deps: event-tr...
Add custom Circle CI config
machine: environment: GOPATH: "$HOME/.go_workspace" GO15VENDOREXPERIMENT: "1" # Disable default dependency management. # This prevents go dependencies to be automatically installed in order to # ensure we are exclusively relying on vendored deps. # # https://discuss.circleci.com/t/overriding-go-inf...
Configure PHE HPA's legacy tools as a new site
--- site: phe_hpa_legacytools whitehall_slug: public-health-england homepage: https://www.gov.uk/government/organisations/public-health-england tna_timestamp: 20150318173350 host: legacytools.hpa.org.uk
Add recipe for cweqgen package
{% set name = "cweqgen" %} {% set version = "0.3.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 06e5b341b76d73141dc29d99fe86924b76173233ea2ccad65d732e521a74b7b6 build: noarch: python ...
Add ops-file for SMB Volume Service
- type: replace path: /instance_groups/name=api/jobs/name=cloud_controller_ng/properties/cc/volume_services_enabled? value: true - type: replace path: /instance_groups/name=cc-worker/jobs/name=cloud_controller_worker/properties/cc/volume_services_enabled? value: true - type: replace path: /instance_groups/n...
Add a workflow to auto-add @dev-prod issue/PR to projects
name: add-to-dev-prod-project on: issues: types: [opened, labeled] pull_request: types: [opened, labeled] jobs: add-to-dev-prod-project: if: contains(github.event.issue.labels.*.name, '@dev-productivity') runs-on: ubuntu-latest steps: - name: Get project data run: | g...
Add environment for isolated networks without tunneling VLAN
# Enable the creation of Neutron networks for isolated Overcloud # traffic and configure each role to assign ports (related # to that role) on these networks. This version of the environment # has no dedicated VLAN for tunneling, for deployments that use # VLAN mode, flat provider networks, etc. resource_registry: OS...
Add heat environment for disabling all telemetry services
# This heat environment can be used to disable all of the telemetry services. # It is most useful in a resource constrained environment or one in which # telemetry is not needed. resource_registry: OS::TripleO::Services::CeilometerApi: OS::Heat::None OS::TripleO::Services::CeilometerCollector: OS::Heat::None OS:...
Use an absolute path for Boost root
sudo: false language: cpp compiler: - gcc install: - if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi - mkdir boost_install_loc - export BOOST_ROOT="boost_install_loc" addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-5 - g++-5 before_script: # Install latest ...
sudo: false language: cpp compiler: - gcc install: - if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi - mkdir boost_install_loc - export BOOST_ROOT=$(pwd)/boost_install_loc addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-5 - g++-5 before_script: # Install la...
Fix host override for intTest.
language: java jdk: - oraclejdk8 sudo: required services: - docker before_install: - docker pull selenium/node-firefox - docker run -d --net=host -p 127.0.0.1:4444:4444 selenium/node-firefox - docker run -d --net=host -p 127.0.0.1:8080:8080 -e CATALINA_OPTS="-DSSO_SERVERS=127.0.0.1" opencadc/storage - d...
language: java jdk: - oraclejdk8 sudo: required services: - docker before_install: - docker pull selenium/node-firefox - docker run -d --net=host -p 4444:4444 selenium/node-firefox - docker run -d --net=host -p 8080:8080 -e CATALINA_OPTS="-DSSO_SERVERS=127.0.0.1 apps.canfar.net www.canfar.phys.uvic.ca" op...
Add CI with GitHub Actions
name: CI on: push: branches: - master pull_request: branches: - master jobs: build-and-test: runs-on: ubuntu-latest services: postgres: image: postgres:alpine ports: - 5432/tcp env: POSTGRES_USER: netbox POSTGRES_PASSWORD: netbox...
Add config for Travis CI
language: c++ compiler: - gcc install: - sudo apt-get install gcc-multilib g++-multilib cmake before_script: - cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 script: - make - make test - make package
Update bundler in Travis CI
language: ruby rvm: - ruby-2.2.6 - ruby-2.3.2 branches: only: - "master" env: global: - RUBY_GC_MALLOC_LIMIT=4000000 RUBY_GC_MALLOC_LIMIT_MAX=16000000 RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR=1.1 RUBY_GC_OLDMALLOC_LIMIT=16000000 RUBY_GC_OLDMALLOC_LIMIT_MAX=16000000 LC_ALL=e...
language: ruby rvm: - ruby-2.2.6 - ruby-2.3.2 branches: only: - "master" env: global: - RUBY_GC_MALLOC_LIMIT=4000000 RUBY_GC_MALLOC_LIMIT_MAX=16000000 RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR=1.1 RUBY_GC_OLDMALLOC_LIMIT=16000000 RUBY_GC_OLDMALLOC_LIMIT_MAX=16000000 LC_ALL=e...
Add lock closed issues workflow
name: Lock Closed Issues on: schedule: - cron: "0 0 * * *" permissions: issues: write jobs: action: runs-on: ubuntu-latest steps: - uses: dessant/lock-threads@v3 with: github-token: ${{ secrets.GITHUB_TOKEN }} issue-inactive-days: "14" #issue-comment: | ...
Update from Hackage at 2019-01-10T18:17:37Z
homepage: http://github.com/GregorySchwartz/too-many-cells#readme changelog-type: '' hash: 696072c48165a94d598d9cbe99fd7c3caffbb2e2465ba30bbb782addf766e733 test-bench-deps: {} maintainer: gsch@pennmedicine.upenn.edu synopsis: Cluster single cells and analyze cell clade relationships. changelog: '' basic-deps: streami...
Create action to run checks on PR/Push
# This is a basic workflow to help you get started with Actions name: CI # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the master branch on: push: branches: [ master ] pull_request: branches: [ master ] # A workflow run is made up of one or more ...
Create docker images list for metadata generation
docker_images: cloudbreak: hortonworks/cloudbreak cloudbreak-autoscale: hortonworks/cloudbreak-autoscale cloudbreak-datalake: hortonworks/cloudbreak-datalake cloudbreak-environment: hortonworks/cloudbreak-environment cloudbreak-freeipa: hortonworks/cloudbreak-freeipa cloudbreak-redbeams: hortonworks/cloudbr...
Add new exception, translation flashes and refactor
# This file is part of the Sylius package. # (c) Paweł Jędrzejewski sylius: product_variant: cannot_generate_variants: 'Cannot generate variants for a product without options values.'
Set up CI with Azure Pipelines
# Starter pipeline # Start with a minimal pipeline that you can customize to build and deploy your code. # Add steps that build, run tests, deploy, and more: # https://aka.ms/yaml trigger: - master pool: vmImage: 'ubuntu-latest' steps: - script: echo Hello, world! displayName: 'Run a one-line script' - script: ...
Test tools in GitHub Actions
name: generated-code on: pull_request jobs: checks: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@master with: submodules: true - name: Set up Go uses: actions/setup-go@v1 with: go-version: 1.13 - name: make code run: | ...
Use GitHub action template for .NET
name: .NET on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: ref: ${{ github.ref }} fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v1 with: ...
Add marslab recipe to correct folder
{% set name = "marslab" %} {% set version = "0.9.10" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/marslab-{{ version }}.tar.gz sha256: 2b4bd12019b307f22e691f3f3743d17846c7da76d65592a15b5c2f210937c42a build: noarch: python ...
Test ssh proxy redirect uri for UAA team
--- - type: replace path: /instance_groups/name=uaa/jobs/name=uaa/properties/uaa/clients/name=ssh-proxy/redirect-uri value: http://localhost/
Set up CI with Azure Pipelines
# Node.js # Build a general Node.js project with npm. # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: - master pool: vmImage: 'Ubuntu-16.04' steps: - task: NodeTool@0 inputs: versionSpec: '10.x' display...
Update from Hackage at 2019-08-16T17:35:39Z
homepage: '' changelog-type: '' hash: 67901b09e625f326c49b1681c584ae690a4340790d2b35dd6b64d75ef1912a81 test-bench-deps: {} maintainer: Tseen She synopsis: Inspect Haskell source files. changelog: '' basic-deps: ghc: -any base: ! '>=4.11 && <5' time: -any hsinspect: -any ghc-paths: -any ghc-boot: -any dire...
Add new recipe for sphinxcontrib-details-directive package
{% set name = "sphinxcontrib-details-directive" %} {% set version = "0.1.0" %} {% set hash = "78bd6a67f786a21868abf0e6a5973340d7e7a6fd71b1890de9c856f92877b38b" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}...
Configure CI to run the validator
name: Validation on: push: pull_request: jobs: run: runs-on: ubuntu-latest name: Validation steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: "8.0" coverage: none tools: c...
Add nightly test for breakage against ponyc master
name: vs-ponyc-latest on: schedule: - cron: "0 3 * * *" jobs: vs-ponyc-latest: name: Test against ponyc master runs-on: ubuntu-latest container: image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder:release steps: - uses: actions/checkout@v1 - name: Test run: ...
Add sublime text syntax file
%YAML 1.2 --- # http://www.sublimetext.com/docs/3/syntax.html name: Rego file_extensions: - rego scope: source.rego contexts: main: - include: comment - include: keyword - include: operator - include: head - include: term comment: - match: (#).*$\n? scope: comment.line.number-sign.re...
Add conf file for Ideasbox Jordani
--- # Ansible playbook for IdeasBox Jordani Alshashmi #It will be always localhost - hosts: localhost roles: # # Can be enable/disable on demand but affect all devices # - software - role: ideascube version: "0.6.0-1" - kalite - role: kiwix kiwixProject: wikipedia portProje...
Add copy for common questions
en-GB: flow: overseas-passport-application: title: Apply for, renew or replace a British passport if you’re outside the UK meta: description: Renew, replace or apply for an adult or child British passport if you’re living abroad or working overseas - forms, prices, how long it takes bo...
Add Maze Runner tests to GH actions
name: Maze Runner tests on: push: pull_request: schedule: - cron: '0 0 * * *' jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: php-version: [7.4] laravel-fixture: [laravel56, laravel58, laravel66] steps: - uses: actions/checkout@v2 - n...
Add ClusterIssuer CRD to helm chart
{{- if .Values.createCustomResource -}} {{- if .Capabilities.APIVersions.Has "apiextensions.k8s.io/v1beta1" -}} apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: name: clusterissuers.certmanager.k8s.io spec: group: certmanager.k8s.io version: v1alpha1 names: kind: ClusterIssu...
Update from Hackage at 2020-12-20T20:56:09Z
homepage: http://github.com/pierric/fei-modelzoo changelog-type: '' hash: 12ad97fa690a9dbd33d08e35f0eeff3f09403cd82a6ded06990bef957aa05e8d test-bench-deps: {} maintainer: jiasenwu@hotmail.com synopsis: A collection of standard models changelog: '' basic-deps: rio: -any base: '>=4.7 && <5.0' text: -any lens: -an...
Add pkg-config and glib as requirement on non-windows hosts
{% set name = "pythonnet" %} {% set version = "2.4.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: a3a38e67fdfcda94df51c805343150016097f284771156f76839a9c3a24c90a9 build: number: 0 s...
{% set name = "pythonnet" %} {% set version = "2.4.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: a3a38e67fdfcda94df51c805343150016097f284771156f76839a9c3a24c90a9 build: number: 0 s...
Update from Hackage at 2021-11-10T14:28:49Z
homepage: '' changelog-type: markdown hash: 93471b96446d464f043c08a99f4857c11c410d25da53612cee9f3e7df927d682 test-bench-deps: {} maintainer: lennart@augustsson.net synopsis: Some algorithms from hmatrix changelog: |+ ## Changes #### 0.1.0.0 - Initial version basic-deps: base: '>=4.12 && <4.18' orthotope: -...
Add workflow for triggering WEC-Sim_Applications CI
name: Trigger repository dispatch event on: push: branches: - master - dev jobs: dispatch: name: Repository Dispatch runs-on: ubuntu-latest if: github.repository_owner == 'WEC-Sim' steps: - uses: peter-evans/repository-dispatch@v1 with: token: ${{ secrets.REPO_ACCES...
Update from Hackage at 2020-04-08T18:44:00Z
homepage: '' changelog-type: markdown hash: 995dddb46ebdd2b85109e7bf2bd4e6aab70144992a09e359c5ebfe12bf5bfb03 test-bench-deps: tasty-smallcheck: -any base: -any time: -any LTS: -any criterion: -any smallcheck: -any tasty-hunit: -any tasty: -any QuickCheck: ==2.14 maintainer: aeeralla@galois.com synopsi...
Add Postgres docker compose file.
version: '3' services: postgres: container_name: postgres image: postgres:9.6-alpine environment: - POSTGRES_DB="nakama" volumes: - data:/var/lib/postgresql/data expose: - "8080" - "5432" ports: - "5432:5432" - "8080:8080" nakama: container_name: nakam...
Set up CI with Azure Pipelines
# ASP.NET Core # Build and test ASP.NET Core projects targeting .NET Core. # Add steps that run tests, create a NuGet package, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core pool: vmImage: 'Ubuntu 16.04' variables: buildConfiguration: 'Release' steps: #- script: dotne...
Set up CI with Azure Pipelines.
--- trigger: - master pr: - master jobs: - job: 'Test' pool: vmImage: 'ubuntu-latest' strategy: matrix: black: python.version: '3.7' tox.env: black isort: python.version: '3.7' tox.env: isort flake8: python.version: '3...
Update from Hackage at 2022-09-08T22:41:11Z
homepage: https://github.com/input-output-hk/cicero-api#readme changelog-type: '' hash: 2d161a9a977dc3a093734693f26f9d65765b9556688cd53ee2289bfbbd0c908d test-bench-deps: {} maintainer: shea.levy@iohk.io synopsis: API bindings to IOHK's Cicero job scheduler changelog: '' basic-deps: http-client: ^>=0.7.11 cicero-api...
Include Open Pros & Cons app
Categories: - Writing License: GPL-3.0-or-later AuthorName: Robert Mengual AuthorEmail: robert.mengual@outlook.com AuthorWebSite: robertmengual.com WebSite: https://tobertet.github.io/open-pros-cons/ SourceCode: https://github.com/Tobertet/open-pros-cons IssueTracker: https://github.com/Tobertet/open-pros-cons/issues...
Add release note for hm fixes
--- fixes: - | Fixes the logic within the health manager to prevent duplicate health checks from running on the same cluster. other: - | Adds a configuration option to the health manager to control the maximum amount of threads that can be created by the health manager.
Add github action to deploy firebase function
name: Deploy to firebase functions on: push: branches: - master jobs: build: runs-on: ubuntu-latest steps: - name: Checkout repository... uses: actions/checkout@v2.0.0 - name: Use Node.js 12.x uses: actions/setup-node@v1.1.0 with: version: 12.x ...
Update from Hackage at 2016-04-05T23:40:17+0000
homepage: http://github.com/Shou/annihilator#readme changelog-type: '' hash: 877d88f0839032315a27fc3597ef9976f52df1caf143a6b8ac14c21f6b887ef5 test-bench-deps: {} maintainer: x@shou.io synopsis: Semigroups with annihilators and utility functions changelog: '' basic-deps: base: ! '>=4.7 && <5' all-versions: - '0.1.0.0'...
Update from Hackage at 2022-05-30T03:01:52Z
homepage: '' changelog-type: '' hash: 310d43606f88adf823b073d269f2a14203e5db5145f6726d7cdeb95eb7a752d2 test-bench-deps: http-client: <0.7 bytestring: <0.11 file-path-th: <0.2 case-insensitive: <1.3 base: <5.0 hspec: <2.8 text: <1.3 containers: <0.7 network-uri: <2.7 file-embed: <0.1 attoparsec: <0...
Add retry on failure policy for st2workroom_upgrade_test workflow.
--- name: st2workroom_upgrade_test.retry_on_failure # Note: We retry this run on failure to try to avoid false positives # which are caused by intermediate networking issues and similar. description: Retry "st2workroom_upgrade_test" tests on failure for up to 1 times. enabled: true resource_ref: st2cd.st2workroom_upgra...
Add opsfile to add variables for UAA JWT rotation
--- - type: replace path: /variables/- value: name: uaa_jwt_signing_key_old type: rsa - type: replace path: /variables/- value: name: uaa_jwt_signing_key_id type: password - type: replace path: /variables/- value: name: uaa_jwt_signing_key_old_id type: password
Update from Hackage at 2017-09-13T17:45:25Z
homepage: https://github.com/haskell-haskey changelog-type: '' hash: 96179aa004488ed00933205377a35893297587416b7a43d02e3cd3a6a0b46fc9 test-bench-deps: exceptions: ! '>=0.8.3 && <0.9' base: ! '>=4.7 && <5' haskey-mtl: -any haskey: -any text: ! '>=1.2 && <2' haskey-btree: ! '>=0.2 && <1' lens: ! '>=4.12 && ...
Move site into college_landing sub dir
# Site settings title: Matt DePero header-img: img/home-bg.jpg email: deperomd@gmail.com description: "Projects, ideas, and resume by Matthew DePero, a computer science student at Miami University from the hometown of Wadsworth, Ohio." baseurl: "/college" url: "https://mattdepero.com" twitter_username: mattdepero githu...
# Site settings title: Matt DePero header-img: img/home-bg.jpg email: deperomd@gmail.com description: "Projects, ideas, and resume by Matthew DePero, a computer science student at Miami University from the hometown of Wadsworth, Ohio." baseurl: "/college_landing" url: "https://mattdepero.com" twitter_username: mattdepe...
Update from Hackage at 2017-03-09T18:13:56Z
homepage: https://bitbucket.org/robagar/haskell-tsne changelog-type: '' hash: d3687f96a0c0f9e5d1486fe33e0e9e0a5bf51fc3baf5d926ea896a4bd81eeaee test-bench-deps: tsne: -any base: -any hspec: -any data-default: -any maintainer: robagar@fastmail.net synopsis: t-SNE changelog: '' basic-deps: tsne: -any base: ! '...
Update from Hackage at 2017-09-29T14:45:53Z
homepage: https://github.com/athanclark/attoparsec-ip#readme changelog-type: '' hash: 35827dea2836cd974ef83894e5b0afa1d944484a079e0241b2a6bfc6d4cf4c88 test-bench-deps: base: -any attoparsec-ip: -any maintainer: athan.clark@gmail.com synopsis: Parse IP data types with attoparsec changelog: '' basic-deps: base: ! '...
Copy env file into inst
development: base_path: ~/src/arctic-data/packages/ alternate_path: ~/src/arctic-data/packages-alt/ metadata_identifier_scheme: UUID data_identifier_scheme: UUID mn_base_url: https://dev.nceas.ucsb.edu/knb/d1/mn/v2 submitter: http://orcid.org/0000-0002-0381-3766 rights_holder: CN=arctic-data-admins,DC=dat...
Update from Hackage at 2020-02-12T18:31:16Z
homepage: https://github.com/stoeffel/pretty-diff#readme changelog-type: markdown hash: a72ccb571fece5d1b51c7a6fd4f027444ed070f028d11ec617bed99d29147a76 test-bench-deps: base: -any Diff: ! '>=0.3 && <0.4' text: ! '>=1.2 && <1.3' data-default: ! '>=0.7 && <0.8' tasty-test-reporter: -any tasty-hunit: -any t...
Update from Hackage at 2021-03-22T04:09:01Z
homepage: https://github.com/ejconlon/simple-parser#readme changelog-type: '' hash: edef0ca5206571add836e20cc773d20718a0f5fc2f7c5d8733015d5bf14a65d6 test-bench-deps: simple-parser: -any tasty-th: -any base: '>=4.12 && <5' text: '>=1.2 && <1.3' list-t: '>=1.0 && <1.1' containers: '>=0.6 && <0.7' mtl: '>=2....
Use GitHub Actions for CI
on: [push] name: build jobs: test: strategy: matrix: ghc: ['8.0.2', '8.2.2', '8.4.4', '8.6.5', '8.8.3', '8.10.1'] runs-on: ubuntu-latest name: Haskell GHC ${{ matrix.ghc }} steps: - uses: actions/checkout@v2 - name: Setup Haskell uses: actions/setup-haskell@v1 ...
Add workflow file for CI
name: Test on: [push] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Build and test with Rake run: | gem install bundler bundle install --jobs ...
Add incremental preload for 3 wfp drivers
# This file configures the OOI Pioneer WPF instance configuration load_sequence: - name: load_ooi_assets_inc1 docstring: Reapply OOI preload to create new models, devices, sites for increased deployment time period config: op: load loadooi: True assets: res/preload/r2_ioc/ooi_asse...
Update from Hackage at 2017-12-16T11:39:08Z
homepage: http://hub.darcs.net/thielema/combinatorial/ changelog-type: markdown hash: 626b3e4837e6ed0f9bdb795b88f7b36b30a050c063fa15467a85968a5b835786 test-bench-deps: base: -any utility-ht: -any combinatorial: -any QuickCheck: ! '>=2.5 && <3.0' maintainer: Henning Thielemann <haskell@henning-thielemann.de> syn...
Update from Hackage at 2016-10-08T19:32:12+00:00
homepage: https://github.com/EarthCitizen/escape-artist#readme changelog-type: '' hash: a8b2a28cb29fcc89888aedd76d958631b5dbe34374ae5a2333eb95fa886637b0 test-bench-deps: bytestring: ! '>=0.10.8.1 && <0.11' base: ! '>=4.7 && <5' escape-artist: -any hspec: ! '>=2.2.4 && <2.3' text: ! '>=1.2.2.1 && <1.3' silen...
Update from Hackage at 2020-02-20T15:45:14Z
homepage: http://github.com/GregorySchwartz/elbow#readme changelog-type: '' hash: 931564aae88763a58c272c70b79dbca4276f4932657fd58799424aba163d147d test-bench-deps: {} maintainer: gsch@pennmedicine.upenn.edu synopsis: Find the elbow point. changelog: '' basic-deps: base: ! '>=4.7 && <5' hmatrix: -any safe: -any al...
Set s3 buckets as option inputs
--- platform: linux image_resource: type: docker-image source: repository: cfbuildpacks/ci inputs: - name: pivotal-buildpack - name: pivotal-buildpack-cached - name: buildpacks-ci - name: buildpack outputs: - name: buildpack-artifacts run: path: bash args: - -cl - | set -e push...
--- platform: linux image_resource: type: docker-image source: repository: cfbuildpacks/ci inputs: - name: pivotal-buildpack option: true - name: pivotal-buildpack-cached option: true - name: buildpacks-ci - name: buildpack outputs: - name: buildpack-artifacts run: path: bash args: - -...
Add bosh lite manifest to deploy garden with groot
--- name: garden-runc # replace with bosh status --uuid director_uuid: <%= `bosh target lite > /dev/null 2>&1 && bosh status --uuid` %> releases: - name: garden-runc version: latest - name: grootfs-release version: latest jobs: - name: garden instances: 1 templates: - name: grootfs ...
Add a rule for running st2enterprise workroom tests.
--- name: "st2workroom_st2enterprise_test_master_ubuntu14" description: "Test st2workroom on each build" pack: "st2cd" enabled: true trigger: type: "core.st2.generic.actiontrigger" criteria: trigger.action_name: pattern: "st2cd.st2_pkg_ubuntu14" type: "equ...
Update from Hackage at 2017-01-19T17:44:43Z
homepage: https://github.com/agrafix/format-numbers#readme changelog-type: '' hash: dbf701598c9e33c0849072bb37cc3630c56caba65b6afc86c664e4611391151c test-bench-deps: base: ! '>=4.7 && <5' hspec: -any text: -any maintainer: mail@athiemann.net synopsis: Various number formatting functions changelog: '' basic-deps: ...
Add a recipe to package libgfortran on OS X.
{% set libgfortran_version = [3, 0, 0] %} {% set libquadmath_version = [0, 0, 0] %} {% set libgcc_s_version = [1, 0, 0] %} package: name: libgfortran version: {{ libgfortran_version|join('.') }} build: number: 0 skip: true # [not osx] always_include_files: ...
Update from Hackage at 2018-04-08T02:22:11Z
homepage: http://tathougies.github.io/beam/user-guide/backends/beam-postgres changelog-type: markdown hash: d4f637b44cf1d5eb1e512894413d5aa2256c602634514cfac4759c7868f1c1c4 test-bench-deps: {} maintainer: travis@athougies.net synopsis: Connection layer between beam and postgres changelog: ! '# 0.3.0.0 Initial hacka...
Set up CI with Azure Pipelines
# ASP.NET Core (.NET Framework) # Build and test ASP.NET Core projects targeting the full .NET Framework. # Add steps that publish symbols, save build artifacts, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core trigger: - master pool: vmImage: 'windows-latest' variables: soluti...
Update from Hackage at 2020-01-25T20:03:55Z
homepage: '' changelog-type: text hash: b33e8cdbf6aa516be723c7cc77f2207d932360ed98043ba313cfe56f1795e434 test-bench-deps: {} maintainer: Joey Hess <id@joeyh.name> synopsis: Arduino programming in haskell using the Copilot stream DSL changelog: | arduino-copilot (1.0.0) unstable; urgency=medium * First release. ...
Set up CI with Azure Pipelines
# 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 16.04' variables: imageName: 'lacledeslan/...
Add Code Climate configuration file
languages: JavaScript: true exclude_paths: - "*.min.js" - "public/assets/wee/temp/*" - "public/assets/wee/tests/*" - "public/assets/js/polyfill/es5-shim.js" - "public/assets/js/polyfill/html5shiv.js" - "public/assets/js/polyfill/sizzle.js"
Add release note for vnx and unity template changes
--- fixes: - | manila-backend-vnx.yaml: 1. Remove ManilaVNXServerMetaPool since meta_pool is not used by Manila VNX. 2. Add ManilaVNXServerContainer. - | cinder-dellemc-vnx-config.yaml: 1. Remove default value of CinderDellEMCVNXStorageSecurityFileDir since it is not mand...
Update from Forestry.io - Updated Forestry configuration
--- 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: previ...
Update from Hackage at 2015-08-01T22:18:52+0000
homepage: https://github.com/trskop/verbosity changelog-type: markdown hash: 01960b792573971ab6069027e6289cb03f3ad7504a7bcdf1c58e981d0e73b502 test-bench-deps: {} maintainer: peter.trsko@gmail.com synopsis: Simple enum that encodes application verbosity. changelog: ! "# ChangeLog / ReleaseNotes\n\n\n## Version 0.1.0.0\n...
Add playbook to test user module
--- - hosts: all user: root vars: # created with: # crypt.crypt('This is my Password', '$1$SomeSalt') password: $1$SomeSalt$UqddPX3r4kH3UL5jq5/ZI. tasks: # Walk through account creation, modification, and deletion - name: test basic user account creation action: user name=tset comment=...
Add closed issue message github action
name: Closed Issue Message on: issues: types: [closed] jobs: auto_comment: runs-on: ubuntu-latest steps: - uses: aws-actions/closed-issue-message@v1 with: # These inputs are both required repo-token: "${{ secrets.GITHUB_TOKEN }}" messa...
Add config for ext network with tiny DHCP pool
--- networks: net1: external_connectivity: no name: "data" ip_address: "192.168.{{ data_net }}.254" netmask: "255.255.255.0" net2: external_connectivity: yes name: "management" ip_address: "172.16.{{ net }}.1" netmask: "255.255.255.0" forwa...
Set up CI with Azure Pipelines
# ASP.NET Core # Build and test ASP.NET Core projects targeting .NET Core. # Add steps that run tests, create a NuGet package, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core trigger: - master pool: vmImage: 'ubuntu-latest' variables: buildConfiguration: 'Release' ste...
Update from Hackage at 2017-08-28T12:43:18Z
homepage: https://github.com/habibalamin/wai-secure-cookies changelog-type: '' hash: e8ad40acf006bea4eeb8eedd9a8ebb17b636cc8e4a8a0c902bda9aaf5c3123ef test-bench-deps: {} maintainer: ha.alamin@gmail.com synopsis: '' changelog: '' basic-deps: bytestring: ==0.10.* wai: ! '>=3.2 && <4' split: ! '>=0.2 && <0.3' base...
Add some addition links to issues
blank_issues_enabled: false contact_links: - name: Ask a question on Discussions area url: https://github.com/netbootxyz/netboot.xyz/discussions - name: Ask a question on the netboot.xyz Discord Server url: https://discord.gg/An6PA2a
Update from Hackage at 2018-01-15T01:45:32Z
homepage: https://github.com/oisdk/uniquely-represented-sets#readme changelog-type: '' hash: 4ecfccd6c9cf8df0353cc24009624f9306497399139de1afa19c0cbcb4684ef2 test-bench-deps: uniquely-represented-sets: -any checkers: -any base: ! '>=4.7 && <5' criterion: -any doctest: -any containers: -any random: -any ...
Update from Hackage at 2018-09-15T15:58:58Z
homepage: https://github.com/lucasdicioccio/deptrack-project changelog-type: markdown hash: 200ad7814ceccda33c7c26d49fb569bb089ba637608f75a5e732577f368e4cd0 test-bench-deps: {} maintainer: lucas@dicioccio.fr synopsis: DepTrack applied to DevOps. changelog: ! '# Changelog for deptrack-devops ## Unreleased changes '...
Update from Hackage at 2018-10-16T15:16:17Z
homepage: http://github.com/lyokha/nginx-haskell-module changelog-type: markdown hash: b36a28d7cbd1152692247002d6bfc9361f02d415aac98d9831fc6e461bb353d0 test-bench-deps: {} maintainer: Alexey Radkov <alexey.radkov@gmail.com> synopsis: Extra tools for Nginx haskell module changelog: ! '### 0.1.0.0 - Initial version. ...
Revert "Secrets isn't commited anymore."
# Be sure to restart your server when you modify this file. # Your secret key is used for verifying the integrity of signed cookies. # If you change this key, all old signed cookies will become invalid! # Make sure the secret is at least 30 characters and all random, # no regular words or you'll be exposed to diction...
Update from Hackage at 2016-10-20T10:07:28Z
homepage: '' changelog-type: '' hash: d8beb68affcdf470a2a76c5eb5a0a64e38995f1011f4412d2538613ff28b1f9d test-bench-deps: {} maintainer: runKleisli@openmailbox.org synopsis: Netwire/GLFW/VinylGL input handling demo changelog: '' basic-deps: GLUtil: ! '>=0.7' bytestring: -any OpenGL: ! '>=2.9.2' netwire-input-glfw...
Add hello-world yaml for generator
exercise: HelloWorld version: 2 plan: 3 imports: '&hello' tests: | #`[Go through the cases (hiding at the bottom of this file) and check that &hello gives us the correct response.] is &::('hello')(), |.<expected description> for @($c-data<cases>); exercise_comment: The name of this exercise. module_comment: "%*E...
Test on Trusty in Travis
language: ruby cache: bundler sudo: false branches: only: - master - 8-stable before_install: - gem update --system - gem --version - gem uninstall bundler -a -x -I - rvm @global do gem uninstall bundler -a -x -I - gem install bundler - bundle --version - rm -f .bundle/config rvm: - 2.3.4 ...
language: ruby cache: bundler dist: trusty sudo: false branches: only: - master - 8-stable before_install: - gem update --system - gem --version - rvm @global do gem uninstall bundler -a -x -I - gem install bundler - bundle --version - rm -f .bundle/config rvm: - 2.3.4 - 2.4.1 - ruby-head...
Use GitHub Action for Ruby CI
name: Ruby on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Build and test with Rake run: | gem install bundler bundle install --jobs...
Fix trailing leader election cm when using helm
apiVersion: v1 kind: ConfigMap metadata: name: {{ include "nginx-ingress.leaderElectionName" . }} namespace: {{ .Release.Namespace }} labels: {{- include "nginx-ingress.labels" . | nindent 4 }}
Add support for architecture ppc64le in ieee754
# ---------------------------------------------------------------------------- # # Package : ieee754 # Source Repo : https://github.com/feross/ieee754.git # Travis Job Link : https://travis-ci.com/github/ddeka2910/ieee754/builds/211034884 # Created travis.yml : No # Maintainer : Debabr...
Set up CI with Azure Pipelines
# Node.js with gulp # Build a Node.js project using the gulp task runner. # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript pool: vmImage: 'Ubuntu 18.04' steps: - task: NodeTool@0 inputs: versionSpec: '10.x' displa...