Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Update from Hackage at 2018-09-15T10:13:05Z | homepage: ''
changelog-type: markdown
hash: 1cafbf3f1c63a62fc42e3283ec08c89a10988be61f2bcce9e9b6458a0276e502
test-bench-deps: {}
maintainer: fresheyeball@protonmail.com
synopsis: Sets of fixed size, with typelits
changelog: ! '# Revision history for set-of
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on a... | |
Check in lobby register schema. | # EC/EP register of interests
- name: representative
label: Representative in the EC/EP register of interests
obj: entity
attributes:
- name: reg_identifier
label: Identifier in the register
- name: reg_legal_status
label: Legal status
- name: reg_entry_status
l... | |
Set up CI with Azure Pipelines | # .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
trigger:
- master
pool:
vmImage: 'default'
variables:
solution: '**/*.sln'
build... | |
Add greeting action for first interactions | name: Greetings
on: [pull_request, issues]
jobs:
greeting:
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Hello! The CSSBot project is only intended for use in the CSS Discord. Please keep that scope ... | |
Set up CI with Azure Pipelines | # ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Re... | |
Add initial version for jaeger-browser | {% set name = "jaeger-browser" %}
{% set name_ = "jaeger_browser" %}
{% set version = "1.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
# https://files.pythonhosted.org/packages/f4/dc/76d789d1f3ab38dda369ad41242aa61cd139ebc94b89bc160e6474f1d057/jaeger_browser-1.0.1.tar.gz
source:
url: https://py... | |
Add conda forge recipe for torchgeo | {% set name = "torchgeo" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/torchgeo-{{ version }}.tar.gz
sha256: 44eb3cf10ab2ac63ff95e92fcd3807096bac3dcb9bdfe15a8edac9d440d2f323
build:
number: 0
noa... | |
Monitor system of another host | monit_services:
- name: blog.entwicklerbier.org
type: system
rules:
- "if memory usage > 90% for 3 cycles then alert"
- "if swap usage > 70% for 3 cycles then alert"
- "if cpu usage (user) > 70% then alert"
- "if cpu usage (system) > 30% then alert"
- "if cpu usage (wait) > 2... | |
Add Action to clean up tests | name: Clean PR checks
on:
workflow_dispatch:
inputs:
pr:
description: PR to be cleaned
required: true
checks:
description: Checks to be cleaned
required: true
default: 'build/O2/o2,build/AliceO2/O2/o2/macOS,build/O2/fullCI'
owner:
description: Orga... | |
Add basic profile post schema | title: Basic Profile
type: object
properties:
name:
description: Name to be displayed publicly.
type: string
website:
description: The entity's primary website.
type: string
format: uri
birthdate:
description: Date of birth in `YYYY-MM-DD` format with omitted information set to all zero.
... | |
Add playbook to install flatpak from PPA | ---
- hosts: all
become: yes
become_user: root
become_method: sudo
gather_facts: yes
tasks:
- name: Add flatpak PPA
apt_repository:
repo: "ppa:alexlarsson/flatpak"
state: present
- name: Install flatpak and flatpak-builder
apt:
package: [flatpak, flatpak-builder]
... | |
Add swig back into the openmm conda build requirements. | package:
name: openmm
version: 6.2
source:
url: https://github.com/pandegroup/openmm/archive/6.2.tar.gz
fn: 6.2.tar.gz
patches:
- plugin-dir.patch
build:
number: 1
preserve_egg_dir: yes
requirements:
build:
# on windows, need to install cmake manually
- cmake # [not win]
- python
... | package:
name: openmm
version: 6.2
source:
url: https://github.com/pandegroup/openmm/archive/6.2.tar.gz
fn: 6.2.tar.gz
patches:
- plugin-dir.patch
build:
number: 1
preserve_egg_dir: yes
requirements:
build:
# on windows, need to install cmake manually
- cmake # [not win]
- python
... |
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: ... | |
Add CI with GitHub Actions | name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{... | |
Move CI configuration from Travis to GitHub actions | on: [push, pull_request]
name: Build
env:
GO111MODULE: on
jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
... | |
Add GitHub Action config file for CI | name: Tests
on:
pull_request:
branches:
- master
paths-ignore:
- 'README.md'
push:
branches:
- master
paths-ignore:
- 'README.md'
jobs:
unit_tests:
name: Unit Tests
if: "contains(github.event.commits[0].message, '[ci skip]') == false"
strategy:
fail-fast... | |
Update from Hackage at 2021-12-20T13:27:03Z | homepage: ''
changelog-type: markdown
hash: d2ee6a1b06c1ba5cf4258cf3a32ef5fc34c3c2702db9836f2c64b060cb7c3d4a
test-bench-deps: {}
maintainer: divipp@gmail.com
synopsis: K_M,N quadratic programming
changelog: |+
# Revision history for kmn-programming
## 0.9.0.1 -- 2020-03-06
* Add Wmat44.txt
* Add SplitProblem... | |
Add recipe for splink library | # Note: there are many handy hints in comments in this example -- remove them when you've finalized your recipe
# Jinja variables help maintain the recipe as you'll update the version only here.
# Using the name variable with the URL in line 14 is convenient
# when copying and pasting from another recipe, but not real... | |
Add a GH action for PHP & Composer | # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the develop branch
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
# Allows you to run this workflow m... | |
Update from Hackage at 2015-05-14T18:41:06+0000 | homepage: https://github.com/ion1/acme-memorandom
changelog-type: markdown
hash: 5ee761691aaad8805126b2fc38c8e188ba784c191435ae1b4a3a2ce35fbc006e
test-bench-deps: {}
maintainer: Johan Kiviniemi <devel@johan.kiviniemi.name>
synopsis: Memoized random number generation
changelog: ! '# 0.0.1 (2015-05-14)
* Initial rele... | |
Add composition - towards 1.0.0 | ###
# Copyright (c) 2015-2017 Mainflux
#
# Mainflux server is licensed under an Apache license, version 2.0 license.
# All rights not explicitly granted in the Apache license, version 2.0 are reserved.
# See the included LICENSE file for more details.
###
version: "2"
services:
###
# NATS
###
nats:
image:... | |
Update from Hackage at 2016-09-22T21:34:29+00:00 | homepage: https://github.com/pbrisbin/gh-pocket-knife#readme
changelog-type: ''
hash: 690c5f4bf33af132e6b9359fd240bcecbb9785e581e5b5475b6449f1aa6729f7
test-bench-deps:
base: -any
hspec: -any
gh-pocket-knife: -any
QuickCheck: -any
maintainer: pbrisbin@gmail.com
synopsis: Script helpers for interacting with GitHu... | |
Set up pr label size action | name: size-label
on: pull_request
jobs:
size-label:
runs-on: ubuntu-latest
steps:
- name: size-label
uses: "pascalgn/size-label-action@d909487e1a0057d85c638f1ddefdb315a63d2e98"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
| |
Update from Hackage at 2016-03-20T06:20:33+0000 | homepage: ''
changelog-type: ''
hash: 6341ce0b176121b900f2c4f60068a0fe6ec00e2561ff16a7c4260a1dea3daf15
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: zZzzZz
changelog: ''
basic-deps:
base: <10000
time: <1000
all-versions:
- '0.1.0.0'
author: Alan Hawkins
latest: '0.1.0.0'
description-type: haddock
de... | |
Update from Hackage at 2018-08-20T06:09:26Z | homepage: https://github.com/frasertweedale/hs-tax
changelog-type: ''
hash: 70712a80e5e066bfe4789b11564ed694b9bd31e9a6aefc328dffe7f87903909c
test-bench-deps: {}
maintainer: frase@frase.id.au
synopsis: Types and combinators for taxes
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
semigroups: ! '>=0.16'
dollaridoo... | |
Disable Travis running 'go get' three times then failing the build >:| | language: go
go:
- 1.4
script:
- goad validate
- goad test
- goad install
| language: go
go:
- 1.4
# I know I like my dependencies specified by custom meta tags in HTML!
# Oh wait, no. No I don't.
install: true
script:
- goad init
- goad validate
- goad test
- goad install
|
Move Trusty e2e testing jobs to job-configs | - job-template:
name: 'kubernetes-e2e-gce-trusty-{suffix}'
description: '{description} Test owner: {test-owner}.'
logrotate:
daysToKeep: 7
builders:
- shell: |
curl -fsS --retry 3 "https://raw.githubusercontent.com/kubernetes/kubernetes/{branch}/hack/jenkins/e2e.sh" | bash -... | |
Update from Hackage at 2019-12-17T23:44:56Z | homepage: https://github.com/maquinitas/maquinitas-tidal
changelog-type: markdown
hash: 15817cc10ba8ab59ed99d5fa24f17e0fe5fc0700be3c48c3e652673c0e2e0919
test-bench-deps: {}
maintainer: montoyamoraga@gmail.com
synopsis: library for MIDI control of hardware
changelog: |
# Revision history for maquinitas
## 0.1.0.0 -... | |
Add or update the Azure App Service build and deployment workflow config | # Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions
# More info on Python, GitHub Actions, and Azure App Service: https://aka.ms/python-webapps-actions
name: Build and deploy Python app to Azure Web App - propalyzer-... | |
Update from Hackage at 2021-06-26T07:33:38Z | homepage: https://github.com/lehmacdj/polysemy-readline#readme
changelog-type: markdown
hash: bd049f9e5252973b8584be2bdae95e7facb3356f834b4f7b613c33a171168944
test-bench-deps:
polysemy-plugin: '>=0.3.0 && <0.4'
exceptions: '>=0.10.4 && <0.11'
haskeline: '>=0.8.1 && <0.9.0'
base: '>=4.12 && <4.15'
polysemy-rea... | |
Add support for AppVeyor (ugexe++) | os: Visual Studio 2015
platform: x64
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
- choco install strawberryperl
- SET PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin;%PATH%
- git clone https://github.com/rakudo/rakudo.git %APPVEYOR_BUILD_FOLDER%\... | |
Update from Hackage at 2022-08-19T10:44:59Z | homepage: http://github.com/lyokha/nginx-log-plugin
changelog-type: markdown
hash: 2658a5694aa44bcc36b29f42db0115edf9776eb2a036319dfb00dcc567cff114
test-bench-deps: {}
maintainer: Alexey Radkov <alexey.radkov@gmail.com>
synopsis: Native Nginx logging from configuration files and Haskell handlers
changelog: |+
### 1.5... | |
Update from Hackage at 2017-07-06T12:48:10Z | homepage: https://github.com/louispan/data-diverse-lens#readme
changelog-type: ''
hash: 1dde6cced9d30a42df36728ba3d3a4225616f0a72cd7a0b4b6e65cf0166a15e0
test-bench-deps:
data-diverse: ! '>=0.6 && <1'
base: -any
hspec: ! '>=2 && <3'
tagged: ! '>=0.8.5 && <1'
lens: ! '>=4 && <5'
data-diverse-lens: -any
mainta... | |
Set up CI with Azure Pipelines | strategy:
matrix:
linux:
imageName: 'ubuntu-16.04'
mac:
imageName: 'macos-10.13'
windows:
imageName: 'vs2017-win2016' # windows-2019
pool:
vmImage: $(imageName)
steps:
- task: UseDotNet@2
displayName: 'Install .net core 3.0'
inputs:
packageType: sdk
version: '3.0.100'
... | |
Add first GitHub Actions pipeline | name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2... | |
Update from Hackage at 2017-12-14T09:25:30Z | homepage: https://github.com/mniip/singleton-typelits
changelog-type: ''
hash: 30aafede59fe7f481abe41ced9cdfded3b9640b984e12fb48db88714756b1687
test-bench-deps: {}
maintainer: mniip@mniip.com
synopsis: Singletons and induction over GHC TypeLits
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.11'
all-versions:
- '0.0.0... | |
Use GitHub Actions for CI testing. | name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['10', '12', '14']
os: [ubuntu-latest]
steps:
- u... | |
Move ci to GH Actions | name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10.0-beta.4"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ mat... | |
Use ruby 2.5.7 in CI | version: 2
jobs:
build:
docker:
- image: circleci/ruby:2.4.6
working_directory: ~/intercom-rails
steps:
- checkout
- run: bundle install
- run: bundle exec rake
| version: 2
jobs:
build:
docker:
- image: circleci/ruby:2.5.7
working_directory: ~/intercom-rails
steps:
- checkout
- run: bundle install
- run: bundle exec rake
|
Update Travis to test on the latest ruby releases | language: ruby
cache: bundler
dist: xenial
rvm:
- 2.4.5
- 2.5.3
- 2.6
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
branches:
only:
- master
- omnibus/3.2-stable
bundler_args: --jobs 7
before_install: gem install bundler
script: bundle exec rake travis:ci
| language: ruby
cache: bundler
dist: xenial
before_install:
- gem install bundler || true
- bundle --version
- gem update --system
- gem --version
matrix:
include:
- rvm: 2.4.5
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
b... |
Test installation with Travis CI | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
install:
# Install the cloned dragonn package from source
- pip install .
# Do not test the package functionality, simply run an arbitrary tutorial function
script: python -c 'from dragonn.tutorial_utils import pri... | |
Update from Hackage at 2020-01-13T09:59:04Z | homepage: https://higherkindness.io/mu-haskell/
changelog-type: markdown
hash: 2c85ed4ea340a592e5265e5c6d3937fdceda2fc3b3398fdeea7deaf3442a9362
test-bench-deps: {}
maintainer: alejandro.serrano@47deg.com
synopsis: Protocol-independent declaration of services and servers
changelog: |
# Revision history for mu-haskell
... | |
Configure legacy domain with global (nuclear) option to organisational homepage | ---
site: mcga
whitehall_slug: maritime-and-coastguard-agency
title: Maritime and Coastguard Agency
redirection_date: 17th June 2014
homepage: https://www.gov.uk/government/organisations/maritime-and-coastguard-agency
tna_timestamp: 20140305221616
host: www.mcga.gov.uk
furl: www.gov.uk/mca
global: =301 https://www.gov.... | |
Update from Hackage at 2016-02-09T23:22:42+0000 | homepage: ''
changelog-type: ''
hash: f0164cc7b5a6fcdc714afa794ef07d5768e85d095d07cdf2e005009803010894
test-bench-deps: {}
maintainer: JDawson@ku.edu
synopsis: Web server wrapper for remote-json
changelog: ''
basic-deps:
warp: ! '>=3.2 && <3.3'
base: ! '>=4 && <5'
data-default-class: ==0.0.1
text: ! '>=1.2 && <... | |
Fix typo in doc region tag | # Copyright 2016 Google, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2016 Google, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... |
Add first version of a GitHub Actions based CI | name: CI
on:
pull_request:
push:
tags-ignore:
- '*'
paths-ignore:
- README.md
- CHANGELOG.md
schedule:
- cron: '0 7 * * SUN'
jobs:
rspec:
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
ruby:
- ruby-2.7
- ruby-2.... | |
Update from Hackage at 2016-10-28T21:23:58Z | homepage: ''
changelog-type: ''
hash: 7e2091c6715de3ef5d5422e22d61d42b86c0b0a0aa005685cebda58b7805abd7
test-bench-deps: {}
maintainer: simon@cse.yorku.ca
synopsis: Specify axioms for type classes and quickCheck all available instances
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
monad-loops: -any
th-printf: -a... | |
Add docker provisioner yaml file Debian 8 AArch64 | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | |
Create workflow which manages GitHub labels | name: Manage Labels
on: push
jobs:
labeler:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Run Labeler
if: success()
uses: crazy-max/ghaction-github-labeler@v2
with:
yaml_file: .github/labels.yml
... | |
Add Senlin-dashboard Train release notes | ---
upgrade:
- >
Switched nodejs4-jobs to nodejs10.
- >
Dropped the py35 testing.
- >
Switched to the new canonical constraints URL on master.
- >
Added Python3 Train unit tests.
| |
Update from Hackage at 2018-11-01T03:25:41Z | homepage: https://github.com/xafizoff/n2o#readme
changelog-type: ''
hash: 69920bb046db179ceeb16f6c4eb4dac803e2fa8cbfc58f2defb2daf2cd641981
test-bench-deps:
base: ! '>=4.7 && <5'
hspec: -any
bert: -any
n2o: -any
maintainer: xafizoff@gmail.com
synopsis: Abstract Protocol Loop
changelog: ''
basic-deps:
bytestrin... | |
Update from Hackage at 2017-07-22T18:28:23Z | homepage: https://github.com/caneroj1/mbtiles#readme
changelog-type: ''
hash: ba753b02570d697232ab6029421fcbcdc744ff8a5ac283d3dc4d764238951f59
test-bench-deps:
base: -any
HUnit: -any
mbtiles: -any
maintainer: jmc41493@gmail.com
synopsis: Haskell MBTiles client
changelog: ''
basic-deps:
bytestring: -any
base: ... | |
Update from Hackage at 2022-10-11T02:44:40Z | homepage: https://github.com/owensmurray/om-show
changelog-type: ''
hash: 879a12ea8cfb6af5fdcbb21bf6e8d7b8c3fef64c03af418e96e54761e0dc5093
test-bench-deps: {}
maintainer: rick@owensmurray.com
synopsis: Utilities for showing string-like things.
changelog: ''
basic-deps:
base: '>=4.15.0.0 && <4.16'
text: '>=1.2.5.0 &... | |
Update from Hackage at 2018-10-06T07:31:55Z | homepage: https://github.com/NorfairKing/cursor
changelog-type: ''
hash: 6e1a678ccf3dccde203c5ea0d5739803af5cbe75d71d7d74b23af1de8130c807
test-bench-deps:
cursor: -any
base: -any
hspec: -any
text: -any
cursor-gen: -any
genvalidity-hspec: -any
genvalidity-hspec-optics: -any
containers: -any
pretty-show... | |
Add bash shell to deploy user | ---
- name: Setup deploy group
group: name={{ deploy_group }} state=present
- name: Setup deploy user
user: name={{ deploy_user }} group={{ deploy_group }} groups={{ deploy_groups }} state=present
- name: Adding public key to server
authorized_key: user={{ deploy_user }} key='{{ item }}'
with_file: deploy_key... | ---
- name: Setup deploy group
group: name={{ deploy_group }} state=present
- name: Setup deploy user
user: name={{ deploy_user }}
group={{ deploy_group }}
groups={{ deploy_groups }}
state=present
shell=/bin/bash
- name: Adding public key to server
authorized_key: user={{ deploy_... |
Update from Hackage at 2019-05-16T21:16:40Z | homepage: https://github.com/chessai/primitive-stablename
changelog-type: markdown
hash: dc9aeb27861a17726faa3a9eff1cbba64d2b558ab09799524063b4e25607f1dc
test-bench-deps: {}
maintainer: chessai <chessai1996@gmail.com>
synopsis: primitive operations on StableNames
changelog: |-
# Changelog
`primitive-stablename` us... | |
Set up CI with Azure Pipelines for Extensions | # 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
jobs:
- job: rolling_VS2017_build
displayName: 'Extensions build'
pool:
name: Hosted VS2017
steps:
... | |
Update from Hackage at 2019-04-17T15:01:09Z | homepage: https://github.com/chessai/hedgehog-generic
changelog-type: markdown
hash: 379138b084fdcd1bd4d0321cf1735c20fa50c911572a9e44fffbf73a543eb87a
test-bench-deps: {}
maintainer: chessai <chessai1996@gmail.com>
synopsis: GHC Generics automatically derived hedgehog generators
changelog: |-
# Changelog
`hedgehog-... | |
Add bob.ip.optflow.liu recipe [skip appveyor] | {% set version = "2.0.5" %}
package:
name: bob.ip.optflow.liu
version: {{ version }}
source:
fn: bob.ip.optflow.liu-{{ version }}.zip
md5: 4fe7ce56f749b7a19e683cb16a946b94
url: https://pypi.python.org/packages/source/b/bob.ip.optflow.liu/bob.ip.optflow.liu-{{ version }}.zip
build:
entry_points:
- bob... | |
Add example to down and remove a profile | # SPDX-License-Identifier: BSD-3-Clause
---
- name: Set {{ profile }} down
hosts: all
vars:
network_connections:
- name: "{{ profile }}"
persistent_state: absent
state: down
roles:
- linux-system-roles.network
...
| |
Add missing module to make it work | ---
classes:
- apache
- collectd::plugin::postfix
- mx_asf
- pflogsumm
- ssl::name::wildcard_apache_org
postfix::server::inet_interfaces: 'all'
postfix::server::postscreen: 'true'
postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subversion.net,subver... | ---
classes:
- apache
- collectd::plugin::postfix
- mx_asf
- pflogsumm
- postfix_asf
- ssl::name::wildcard_apache_org
postfix::server::inet_interfaces: 'all'
postfix::server::postscreen: 'true'
postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subve... |
Update from Hackage at 2015-11-27T11:16:41+0000 | homepage: https://github.com/atzedijkstra/delimiter-separated
changelog-type: ''
hash: 85d9b153e18011c857629c5d689ead637073739700cb174aa4dae2c42f0ab92f
test-bench-deps: {}
maintainer: atze@uu.nl
synopsis: Library for dealing with tab and/or comma (or other) separated files
changelog: ''
basic-deps:
uulib: ! '>=0.9'
... | |
Add GitHub action for syncing main branch | # Synchronize all pushes to 'master' branch with 'main' branch to facilitate migration
name: "Sync main branch"
on:
push:
branches:
- master
jobs:
sync_latest_from_upstream:
runs-on: ubuntu-latest
name: Sync latest commits from master branch
steps:
- name: Checkout target repo
... | |
Update from Hackage at 2017-03-21T16:14:59Z | homepage: https://github.com/qoelet/storeviva-login#readme
changelog-type: ''
hash: ed7f0d41d50fde9ce37c1beb878391af90f0a95f979d9b437977d000ecaf4621
test-bench-deps:
bytestring: -any
base: ! '>=4.7 && <5'
base64-bytestring: -any
hspec: ==2.*
SimpleAES: -any
QuickCheck: -any
string-conversions: -any
mainta... | |
Update from Hackage at 2018-12-30T17:34:55Z | homepage: https://github.com/athanclark/z85#readme
changelog-type: markdown
hash: cf84acb9d9418c876c7d383a43b42aa77be41e6dee84cc6c7746c53771c459bc
test-bench-deps:
z85: -any
bytestring: -any
pipes-text: -any
attoparsec-binary: -any
base: ! '>=4.7 && <5'
pipes-bytestring: -any
vector-sized: -any
text: -a... | |
Add the adjudicators office to list of transitioned sites | ---
site: adjudicatorsoffice
whitehall_slug: the-adjudicator-s-office
homepage: https://www.gov.uk/government/organisations/the-adjudicator-s-office
tna_timestamp: 20190501125725
host: www.adjudicatorsoffice.gov.uk
aliases:
- adjudicatorsoffice.gov.uk
| |
Check things in the CI (node16 and node18 only) | name: ci
on:
push:
pull_request:
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
node-version: [ '16', '18' ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matr... | |
Add github action for testing | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [6.x, 8.x, 10.x, 12.x]
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: instal... | |
Test against node 4 instead of iojs | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
sudo: false
script:
- npm run lint
- npm test
matrix:
allow_failures:
- node_js: iojs | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
sudo: false
script:
- npm run lint
- npm test
matrix:
allow_failures:
- node_js: "4" |
Add the Travis CI configuration | # Use Python
language: python
# Run the test runner using the same version of Python we use.
python: 3.5
# Install the test runner.
install: pip install tox
# Run each environment separately so we get errors back from all of them.
env:
- TOX_ENV=py35
- TOX_ENV=pep8
- TOX_ENV=docs
script:
- tox -e $TOX_ENV
| |
Add Travis CI configuration file | before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-regex-dev libyaml-cpp-dev cmake libgtest-dev
- cd /usr/src/gtest
- sudo cmake CMakeLists.txt
- sudo make
- sudo cp *.a /usr/lib
- cd -
script:
- make test
language: cpp
| |
Build Newsboat on FreeBSD with Cirrus CI | freebsd_instance:
image: freebsd-11-2-release-amd64
task:
install_script: pkg install -y rust gmake asciidoc pkgconf stfl curl json-c ncurses openssl sqlite3 gettext-tools
script: RUST_BACKTRACE=1 gmake
| |
Add workflow to trigger image rebuild | ---
name: CRON Trigger testing images
on:
schedule:
# 7am UTC, 12am PDT
- cron: '0 7 * * *'
push:
branches:
- main
paths:
- 'ros2/testing/**'
jobs:
testing_build:
name: Trigger testing image
runs-on: ubuntu-latest
container:
image: osrf/ros2:testing
steps:
- name... | |
Set up basic Travis CI, including rustdoc builds | language: rust
sudo: required
rust:
- stable
- beta
- nightly
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo bench &&
travis-cargo doc
after_success:
- travis-cargo --only nightly doc-upload
-... | |
Add github actions to build library and build docs... | name: build-and-docs
on:
push:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.1
- run: |
mkdir build && cd build
cmake .. && make
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.1
- ... | |
Update from Hackage at 2017-05-04T03:23:44Z | homepage: https://github.com/glguy/toml-parser
changelog-type: markdown
hash: fd731b1a7f192710d3ffd37eab0695a05bd1d1d20a0c377dcac61e2bb78d1f8b
test-bench-deps: {}
maintainer: emertens@gmail.com
synopsis: Parser for the TOML configuration language
changelog: ! '# Revision history for toml-parser
## 0.1.0.0 -- YYYY-... | |
Set `page.title` instead of `site.title` | # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings
paginate: 10 # pagination based on number of posts
paginate_path: "page:num"
exclude: ["README.md"] # files to exclude
pygments: true
markdown: kramdown
title: dbyll
description: Stylish Jekyll Theme
author:
name: dbyll
email: dbyll@is... | # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings
paginate: 10 # pagination based on number of posts
paginate_path: "page:num"
exclude: ["README.md"] # files to exclude
pygments: true
markdown: kramdown
defaults:
-
scope:
path: "" # empty string for all files
values:
... |
Add bob.db.biosecurid.face recipe [skip appveyor] | {% set version = "2.0.5" %}
package:
name: bob.db.biosecurid.face
version: {{ version }}
source:
fn: bob.db.biosecurid.face-{{ version }}.zip
md5: f70ebc28151001459ee83c33af20af1d
url: https://pypi.python.org/packages/source/b/bob.db.biosecurid.face/bob.db.biosecurid.face-{{ version }}.zip
build:
number:... | |
Add a basic Travis config file | language: objective-c
osx_image: xcode8.2
script:
- xcodebuild -project Movies.xcodeproj -scheme Movies -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6S,OS=10.1' build test
| |
Update from Hackage at 2017-03-12T09:39:13Z | homepage: https://github.com/agrafix/powerqueue#readme
changelog-type: ''
hash: dc9951c1c4f4fbf9b211733d480f8b8206d8fe36c6da905d4d66b6049a18c1bc
test-bench-deps:
stm: ! '>=2.4'
base: -any
hspec: ! '>=2.2'
powerqueue-distributed: -any
async: ! '>=2.1'
timespan: -any
powerqueue: -any
maintainer: mail@athiem... | |
Add CI (via GitHub Actions) | name: ci
on:
pull_request:
push:
branches: [master]
jobs:
stack:
name: ${{ matrix.os }}, ${{ matrix.resolver }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
... | |
Add Travis CI config file | language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install:
- pip install .
- pip install -r requirements.txt
# command to run tests
script: make check
| |
Disable some of the Rubocop rules | Style/CommentedKeyword:
Enabled: false
Lint/AmbiguousRegexpLiteral:
Enabled: false
Lint/UselessAssignment:
Enabled: false
Lint/HandleExceptions:
Enabled: false
Lint/AssignmentInCondition:
Enabled: false
| |
Add an AppVeyor file for Windows CI builds | environment:
MVN_VERSION: 3.3.3
install:
- cinst maven --version=%MVN_VERSION% -y
- set PATH=C:\tools\apache-maven-%MVN_VERSION%\bin;%PATH%
cache:
- C:\Users\appveyor\.m2\repository -> pom.xml
build_script:
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V # This is what Travis CI does by def... | |
Add custon spell icons in the spellbook gui and memory gui | spellNameFormat: "&5&ka&r&bMagic Scroll&5&ka&r {NAME}"
memorizationEnabled: true
spellbookEnabled: true
spellbookName: "&bSpellbook"
spellpageNameFormat: "&5&ka&r&bSpell Page&5&ka&r {NAME}"
manaPerHalfHeart: 1
Mysql:
username: user
password: pass
database: civspellapi
hostname: localhost
port: 3306
spells:
... | |
Add Gitlab CI startup testing |
before_script:
stages:
- test
- stop
test_job:
stage: test
script:
- ./start.sh
- sleep 5
- ./stop.sh
only:
- master
stop:
stage: stop
script:
- ./stop.sh
only:
- master
when: always
| |
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: ... | |
Add a GitHub funding config | # These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
- jaraco
- webknjaz
# patreon: # Replace with a single Patreon username
# open_collective: # Replace with a single Open Collective username
# ko_fi: # Replace with a single Ko-fi username... | |
Add node to ring role | ---
# The MIT License (MIT)
#
# Copyright (c) 2015 Taio Jia (jiasir) <jiasir@icloud.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation th... | |
Add optking recipe. Generated with grayskull | {% set name = "optking" %}
{% set version = "0.1.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/psi-rking/optking/archive/{{ version }}.tar.gz
sha256: 57c5b15fc160a6ed7cf260f669f332d97fd74ff5f0eb6cad9cf27d65d049d24a
build:
noarch: python
script: {{ PYTHON }}... | |
Set up marker sync for @muriloricci | name: 'Import markers from Ricci'
on:
workflow_dispatch
jobs:
import-markers:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Set up Node.js
... | |
Add config file for production server | # Build settings
# Gems
gems:
- jekyll-paginate
- jekyll-feed
# url is the full website URL
# baseurl is the website's URL without the hostname
# If you are hosting it on Github for some project with name 'projectname', then the url and baseurl should look like:
#url: "http://username.github.io/projectname"
#baseurl: ... | |
Set up CI with Azure Pipelines | # .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
trigger:
- main
pool:
vmImage: 'windows-latest'
variables:
solution: '**/*.sln'
... | |
Configure Government IT Profession site | ---
site: civilservice_it
whitehall_slug: civil-service
homepage_title: 'Civil Service IT Profession'
homepage: https://www.gov.uk/government/organisations/civil-service-government-it-profession/about
tna_timestamp: 20140618001128
host: it.civilservice.gov.uk
global: =301 https://www.gov.uk/government/organisations/civ... | |
Define development default for Let's Encrypt variable | env: development
ferm_enabled: false
mysql_root_password: "{{ vault_mysql_root_password }}" # Define this variable in group_vars/development/vault.yml
web_user: vagrant
| acme_tiny_challenges_directory: "{{ www_root }}/letsencrypt"
env: development
ferm_enabled: false
mysql_root_password: "{{ vault_mysql_root_password }}" # Define this variable in group_vars/development/vault.yml
web_user: vagrant
|
Update from Hackage at 2018-09-12T12:47:46Z | homepage: http://github.com/eltix/quantities
changelog-type: markdown
hash: a715b6d0467038237c9d20f0bfb88815a1563e08380607dec5be5d31942c1b42
test-bench-deps:
hlint: -any
base: ==4.*
hspec: -any
process: -any
parsec: -any
doctest: -any
containers: -any
regex-compat: -any
mtl: -any
quantities: -any
... | |
Add release notes for Immutable Parameters feature | ---
features:
- Adds a new "immutable" boolean field to the parameters section in
a HOT template. This gives template authors the ability to mark
template parameters as immutable to restrict updating parameters
which have destructive effects on the application. A value of
True results in the engine ... | |
Update from Hackage at 2021-04-21T21:05:55Z | homepage: https://github.com/parsonsmatt/lift-type#readme
changelog-type: markdown
hash: ee0e3a3da22c8de7c4de1addaff85a42deb0d01497d0458fb72f285a631e8da3
test-bench-deps:
lift-type: -any
base: '>=4.7 && <5'
template-haskell: -any
maintainer: parsonsmatt@gmail.com
synopsis: ''
changelog: |
# Changelog for lift-t... | |
Update from Hackage at 2016-09-15T14:47:04+0000 | homepage: https://github.com/RyanGlScott/code-page
changelog-type: markdown
hash: a541192b317c29962c8f98e4613c6311032699bfce26a8483f7102fc469ca74e
test-bench-deps:
base: ! '>=4.3 && <5'
code-page: ==0.1
maintainer: Ryan Scott <ryan.gl.scott@gmail.com>
synopsis: Windows code page library for Haskell
changelog: ! "# ... | |
Use Ansible 2.x feature in "cikit-jenkins" | ---
- include: repo.yml
- name: Download Jenkins
get_url:
url: "{{ jenkins.package }}"
dest: ~/jenkins.deb
mode: 440
- name: Create default config
template:
src: jenkins.j2
dest: /etc/default/jenkins
- name: Install Jenkins
# Do not override previously created Jenkins config during installa... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.