Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Set up CI with Azure Pipelines | # Xcode
# Build, test, and archive an Xcode workspace on macOS.
# Add steps that install certificates, test, sign, and distribute an app, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/xcode
pool:
vmImage: 'macOS 10.13'
steps:
- task: Xcode@5
inputs:
actions: 'bu... | |
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
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionS... | |
Update from Hackage at 2019-06-21T01:00:17Z | homepage: https://github.com/shirren/json-api-lib
changelog-type: ''
hash: bbbb518114e715bb2e09bc4c32cddac50e81115e50cd89170f550787193211ce
test-bench-deps:
json-api-lib: -any
bytestring: ! '>=0.10.8 && <0.11'
lens-aeson: ! '>=1.0.2 && <1.1'
base: ! '>=4.11 && <5'
aeson-pretty: ! '>0.8 && <0.9'
unordered-co... | |
Update from Hackage at 2019-05-05T14:50:46Z | homepage: https://github.com/isovector/polysemy-zoo#readme
changelog-type: markdown
hash: aabb2f31832daad68965a6d2e038583223ed8aa81fe2d8af3f486c35325c415c
test-bench-deps:
polysemy-plugin: -any
base: ! '>=4.7 && <5'
hspec: -any
containers: -any
polysemy-zoo: -any
polysemy: -any
maintainer: sandy@sandymaguir... | |
Add action to publish package to pypi on release | # This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Upload Python Package
on:
release:
types: [created]
jobs:
dep... | |
Add a Coverity Scan Github action. | name: Coverity Scan
on:
push:
branches: [ master ]
jobs:
coverity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt-get -y install g++ libcfitsio-dev autoconf-archive
- name: bootstrap
run: ./bootstrap
- name: configure
ru... | |
Remove non existing cache directory. | machine:
services:
- docker
node:
version:
6.1.0
python:
version:
2.7.3
dependencies:
pre:
- pip install -r requirements_dev.txt
- pip install -r requirements.txt
- pip install pymongo==3.2.1
- if [ "$CIRCLE_BRANCH" = "master" ]; then make deps; fi
cache_directories:
... | machine:
services:
- docker
node:
version:
6.1.0
python:
version:
2.7.3
dependencies:
pre:
- pip install -r requirements_dev.txt
- pip install -r requirements.txt
- pip install pymongo==3.2.1
- if [ "$CIRCLE_BRANCH" = "master" ]; then make deps; fi
cache_directories:
... |
Add slather to gem install | osx_image: xcode6.4
language: objective-c
before_install: gem install cocoapods xcpretty obcd -N
podfile: GTScrollNavigationBarExample/Podfile
env:
- LC_CTYPE=en_US.UTF-8 LANG=en_US.UTF-8
script:
- set -o pipefail && xcodebuild -workspace GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcworkspace
-scheme G... | osx_image: xcode6.4
language: objective-c
before_install: gem install cocoapods xcpretty obcd slather -N
podfile: GTScrollNavigationBarExample/Podfile
env:
- LC_CTYPE=en_US.UTF-8 LANG=en_US.UTF-8
script:
- set -o pipefail && xcodebuild -workspace GTScrollNavigationBarExample/GTScrollNavigationBarExample.xcworkspace
-... |
Add an initial configuration for Travis | language: go
go:
- 1.6
- 1.7
- tip
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get -qq install btrfs-tools libdevmapper-dev
script:
- make
| |
Use latest GAE SDK for Travis builds | language: go
install:
- curl -sSo gae_sdk.zip https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.12.zip
- unzip -q gae_sdk.zip
script:
- ./go_appengine/goapp test -v ./endpoints
| language: go
install:
- curl -sSo gae_sdk.zip https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.15.zip
- unzip -q gae_sdk.zip
script:
- ./go_appengine/goapp test -v ./endpoints
|
Allow github to perform integration testing | ---
language: python
python: "2.7"
before_install:
- sudo apt-get update --assume-yes -qq
- sudo apt-get install --assume-yes -qq python-apt python-pycurl
install:
- sudo pip install ansible
script:
- ansible --version
- ansible-playbook --inventory-file tests/hosts --syntax-check tests/playbook.yml
- ansib... | |
Add old version of workflow | 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 -scheme Vie... | |
Add code climate YAML file | ---
engines:
duplication:
enabled: true
config:
languages:
- python
fixme:
enabled: true
pep8:
enabled: true
radon:
enabled: true
ratings:
paths:
- "**.py"
exclude_paths:
- "docs/*"
- "examples/*"
| |
Add initial github actions workflow | ---
name: build
'on':
push:
branches:
- master
pull_request:
branches: ["*"]
env:
GOPROXY: https://proxy.golang.org
GOPATH: ${{ github.workspace }}/go
jobs:
build:
strategy:
matrix:
os: [ubuntu-18.04, macos-10.15]
go: [1.13, 1.14]
fail-fast: true
runs-on: ... | |
Build with Actions, ship coverage to Codecov. | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
... | |
Update data hourly using GitHub actions | on:
schedule:
- cron: '37 * * * *'
push:
branches:
- master
name: update
jobs:
crawl:
runs-on: ubuntu-18.04
steps:
- name: checkout
uses: actions/checkout@master
- name: setup python
uses: actions/setup-python@master
with:
python-version: 2.x
- name: updat... | |
Enable testing on Travis CI | language: python
python:
- "2.7"
- "3.3"
install:
- python setup.py --quiet install
script:
- superzippy --output=foo superzippy superzippy.packaging:run
- ./foo --output=bar superzippy superzippy.packaging:run
- ./bar --help
| |
Allow failure of MRI 2.0 | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
|
Update from Hackage at 2018-03-12T06:25:59Z | homepage: https://github.com/debug-ito/greskell/
changelog-type: markdown
hash: 70e56c08ce910ba50de2254f9aa7e9bb1a7534f2b5d8cc024aa5e2a0e95f1b9a
test-bench-deps:
base: -any
hspec: ! '>=2.2.3'
text: -any
doctest: ! '>=0.11 && <0.15'
doctest-discover: ! '>=0.1.0.7 && <0.2'
QuickCheck: ! '>=2.8.2 && <2.12'
g... | |
Add Travis script using gfortran 6 | language: generic
# Use the trusty environment, since the netcdf packages in 12.04 are broken
dist: trusty
sudo: required
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gfortran-6
before_install:
# Install requirements for M.C. Kernel
# - pip install --user cpp-coveralls
# - sudo ... | |
Send build notifications to seb (can't subscribe Travis from: address to google groups) | language: ruby
branches:
only:
- develop
- master
rvm:
- 1.8.7
before_install:
- sudo gem install rubygems-update --version=1.6.2
- sudo gem update --system 1.6.2
- sudo gem install rake
- git submodule update --init --recursive
- psql -c "create database foi_test template template0 encoding 'SQL_... | language: ruby
branches:
only:
- develop
- master
rvm:
- 1.8.7
before_install:
- sudo gem install rubygems-update --version=1.6.2
- sudo gem update --system 1.6.2
- sudo gem install rake
- git submodule update --init --recursive
- psql -c "create database foi_test template template0 encoding 'SQL_... |
Add TravisCI for automated test running | language: python
python:
- "2.7"
virtualenv:
# let the tests pick up the system-installed pygame
system_site_packages: true
before_install:
- sudo apt-get -qq update
- sudo apt-get install python-pygame
install: "pip install -r requirements_dev.txt"
script: python setup.py test
| |
Update from Hackage at 2016-12-23T19:41:14Z | homepage: ''
changelog-type: ''
hash: 8f499412a72838ee300377e9571cfd76ad96d7e0f78bdbd4b8c36dc9a9487f8f
test-bench-deps: {}
maintainer: jeanphilippe.bernardy@gmail.com
synopsis: A generator of nix files
changelog: ''
basic-deps:
base: <=666
text: -any
filepath: ! '>=1.3'
process: ! '>=1.1'
containers: -any
m... | |
Disable pandas master tests for python 2.6 and 3.2 | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- PANDAS_VERSION=v0.13.1
- PANDAS_VERSION=v0.14.1
- PANDAS_VERSION=master
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ppa
- sudo apt-get update
- sudo apt-get install libgdal1h gdal-bin libgdal-dev libspatialindex-dev li... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- PANDAS_VERSION=v0.13.1
- PANDAS_VERSION=v0.14.1
- PANDAS_VERSION=master
matrix:
exclude:
- python: 2.6
env: PANDAS_VERSION=master
- python: 3.2
env: PANDAS_VERSION=master
before_install:
- sudo add-apt-repository -... |
Add TravisCI config <3 <3 <3 | language: ruby
rvm:
- 2.1
- 2.0.0
- 1.9.3
- 1.9.2
- ruby-head
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-19mode
| |
Add reek configuration back to the repo | ---
UncommunicativeParameterName:
accept: []
exclude: []
enabled: true
reject:
- !ruby/regexp /^.$/
- !ruby/regexp /[0-9]$/
- !ruby/regexp /[A-Z]/
LargeClass:
max_methods: 1
exclude: []
enabled: true
max_instance_variables: 1
UncommunicativeMethodName:
accept: []
exclude: []
enabled: true
... | |
Remove dependabot complaining about javascript code | # For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your ... | |
Update from Forestry.io - Updated Forestry configuration | ---
label: The Data Visualisation Catalogue
hide_body:
is_partial:
fields:
- name: layout
label: Layout
type: text
hidden: false
default: ''
- name: title
label: Title
type: text
hidden: false
default: ''
- name: date
label: Date
type: datetime
hidden: false
default: ''
- name: modified
labe... | |
Add the is-property module as a dependency of ths snap | name: dillinger
version: master
summary: The last Markdown editor, ever
description: |
Dillinger is a cloud-enabled, mobile-ready, offline-storage, AngularJS powered
HTML5 Markdown editor.
confinement: strict
apps:
server:
command: node $SNAP/lib/node_modules/Dillinger/app.js
plugs: [network-bind]
d... | name: dillinger
version: master
summary: The last Markdown editor, ever
description: |
Dillinger is a cloud-enabled, mobile-ready, offline-storage, AngularJS powered
HTML5 Markdown editor.
confinement: strict
apps:
server:
command: node $SNAP/lib/node_modules/Dillinger/app.js
plugs: [network-bind]
d... |
Add github action for publishing releases to pypi | # This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are pro... | |
Fix arguments to match replication controller | apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: nginx-ingress-lb
spec:
template:
metadata:
labels:
name: nginx-ingress-lb
spec:
terminationGracePeriodSeconds: 60
containers:
- image: gcr.io/google_containers/nginx-ingress-controller:0.5
name: ngin... | apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: nginx-ingress-lb
spec:
template:
metadata:
labels:
name: nginx-ingress-lb
spec:
terminationGracePeriodSeconds: 60
containers:
- image: gcr.io/google_containers/nginx-ingress-controller:0.5
name: ngin... |
Create first conda-forge 2.2.2 fine recipe | package:
name: fine
version: 2.2.2
source:
url: https://github.com/FZJ-IEK3-VSA/FINE/archive/refs/tags/v2.2.2.tar.gz
sha256: 1e8bff5de0770e1b4e6aba4f9502c107781bb4b9e1faff5d99db32f836cb0fc0
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install --no-deps .
requirements:
host:
- pyth... | |
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 GitHub action to validate markdown documentation. | # Copyright 2020 The TensorFlow Hub Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by app... | |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
collections:
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
| |
Add programmatic site configuration to Ansible | ---
# Tasks to automate the stuffing of default Drupal VM variables for synced
# folders, databases, and webhosts. I pulled the arcane "union" syntax from
# https://github.com/ansible/ansible/pull/8019#issuecomment-152079657
- name: Programmatically add synced folders for all regular sites, plus one for
the UCSF m... | |
Add project board workflow for good first issues | name: Add good first issues to project board
on:
# Trigger when an issue gets labeled or deleted
issues:
types: [opened, reopened, closed, labeled, assigned]
jobs:
manage_project_issues:
runs-on: ubuntu-latest
if: contains(github.event.issue.labels.*.name, 'good first issue')
steps:
- name:... | |
Add stale issue cleanup action | name: "Close stale issues"
# Controls when the action will run.
on:
schedule:
- cron: "0 0 * * *"
jobs:
cleanup:
runs-on: ubuntu-latest
name: Stale issue job
steps:
- uses: aws-actions/stale-issue-cleanup@v3
with:
# Setting messages to an empty string will cause the automation to s... | |
Add ops-file to enable TLS on File Server | ---
- type: replace
path: /instance_groups/name=api/jobs/name=file_server/properties/https_server_enabled?
value: true
- type: replace
path: /instance_groups/name=api/jobs/name=file_server/properties/tls?
value:
cert: ((file_server_cert.certificate))
key: ((file_server_cert.private_key))
- type: replace... | |
Add a workflow for handling branch-specific containers, if needed | name: Upload docker containers modified for release branches
on:
workflow_dispatch:
push:
paths:
- '.github/workflows/docker.yml'
- 'tf_sig_build_dockerfiles/**'
- '!tf_sig_build_dockerfiles/README.md'
branches:
# Branch should match the TF branch name
- "r[1-9].[0-9]+"
jobs:... | |
Update from Hackage at 2018-10-17T01:30:58Z | homepage: https://github.com/jonascarpay/apecs-physics#readme
changelog-type: ''
hash: 2c7170d0d5f2477795af1eabd7506c75959b0533f0ddba1dba26f125d00ac4f2
test-bench-deps: {}
maintainer: jonascarpay@gmail.com
synopsis: Gloss rendering for apecs-physics
changelog: ''
basic-deps:
gloss: -any
apecs: ! '>=0.6'
base: ! '... | |
Update from Hackage at 2018-03-17T07:20:09Z | homepage: https://github.com/parsonsmatt/garlic-bread#readme
changelog-type: markdown
hash: 673437c96e8927265e7306955f90b2e0be248f11db575c5cf45fe4dcb9d0c693
test-bench-deps:
base: ! '>=4.9 && <5'
hspec: -any
garlic-bread: -any
mtl: -any
transformers: -any
maintainer: parsonsmatt@gmail.com
synopsis: A monad tr... | |
Update from Hackage at 2021-02-09T21:49:18Z | homepage: ''
changelog-type: ''
hash: a0cd615fc3bfc0f8715afde6316cecff34b65b1b7873e64a0eb8f875c271d134
test-bench-deps:
invert: -any
base: '>=4.12 && <4.15'
criterion: ^>=1.5
maintainer: ''
synopsis: Automatically generate a function's inverse
changelog: ''
basic-deps:
base: ^>=4.12 || ^>=4.13 || ^>=4.14
unor... | |
Add Github Actions regression testing | name: Regression Tests
on: [push, pull_request]
jobs:
build:
name: Python ${{ matrix.python-version }} (${{ matrix.group }}/10)
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.9]
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
steps:
- uses: actions/checkout@v1
... | |
Add Github actions testing of style/unit | name: delivery
on: [push, pull_request]
jobs:
delivery:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@master
- name: Run Chef Delivery
uses: actionshub/chef-delivery@master
env:
CHEF_LICENSE: accept-no-persist | |
Update from Hackage at 2015-06-25T12:19:43+0000 | homepage: https://github.com/emilaxelsson/ho-rewriting
changelog-type: ''
hash: edf30383db4bbfcd3c0344503bb52842f8292a2fd5f07b62aba1c4f647099a0f
test-bench-deps:
patch-combinators: -any
base: -any
compdata: -any
ho-rewriting: -any
maintainer: emax@chalmers.se
synopsis: Generic rewrite rules with safe treatment ... | |
Update from Hackage at 2018-11-20T17:44:01Z | homepage: https://github.com/nh2/lambdabot-zulip
changelog-type: ''
hash: 48610a54ff5b78b488a5b13b60c665d1032db677f9d9efcc515a7f503171540a
test-bench-deps:
base: ! '>=4 && <5'
hspec: ! '>=1.3.0.1'
text: -any
HUnit: ! '>=1.2'
lambdabot-zulip: -any
maintainer: Niklas Hambüchen <mail@nh2.me>
synopsis: Lambdabot ... | |
Configure procurement.cabinetoffice.gov.uk for global archive | ---
site: cabinetoffice_procurement
whitehall_slug: cabinet-office
title: Cabinet Office
redirection_date: 1st February 2014
homepage: https://www.gov.uk/government/organisations/cabinet-office
tna_timestamp: 20130503183627
host: procurement.cabinetoffice.gov.uk
furl: www.gov.uk/cabinetoffice
global: =410
| |
Add example with deployment that has a data volume. | apiVersion: v1
kind: PersistentVolume
metadata:
name: hello-volume
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 100Mi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/data"
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: hello-claim
spec:
storage... | |
Add database settings to ci tests | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.5"
env:
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11rc1
install:
- pip install -r requirements.txt
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSION
before_script:
- psql -c 'create database access_mo_django;' -U postgre... | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.5"
env:
- DJANGO_VERSION=1.10 DATABASE_SETTINGS='settings_local.py'
- DJANGO_VERSION=1.11rc1 DATABASE_SETTINGS='settings_local.py'
install:
- pip install -r requirements.txt
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSIO... |
Update from Forestry.io - Updated Forestry configuration | ---
label: Variados
hide_body: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: ''
- name: title
label: Title
type: text
hidden: false
default: ''
- name: date
label: Date
type: datetime
hidden: false
default: ''
- name: img
label: Img
type: file
hidden: false
... | |
Add Edge Gateway firewall and NAT rule config file | gateway: 0E7T-IS-GATEWAY-002
firewall_service:
enabled: true
policy: drop
firewall_rules:
- description: "Outbound"
protocols: any
destination_ip: "external"
source_ip: "internal"
- description: "Public ICMP access to backup network"
protocols: icmp
destination_ip: "31.210.24... | |
Add ghcr.io images build and push | name: Docker images
on:
push:
branches: [ master ]
tags: [ 'v*' ]
pull_request:
branches: [ master ]
jobs:
docker:
name: Build image
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docke... | |
Update from Hackage at 2016-11-29T14:58:52Z | homepage: http://github.com/aelve/fmt
changelog-type: markdown
hash: ee40f5f74bc70265be6c523cbb8bc786ef33958f9c3ee3038ddc7e24ac650582
test-bench-deps: {}
maintainer: yom@artyom.me
synopsis: Nice formatting library
changelog: ! '# 0.1.0.0
First release.
'
basic-deps:
base: ! '>=4.6 && <5'
text: -any
text-form... | |
Revert "Even more component types." | - group: Atomic
components:
- name: Button
path: button
- name: Menu
path: menu
- name: Radio Button
path: radio-button
- name: Check Box
path: check-box
- name: String Input
path: string-input
- name: Slider
path: slider
- name: Command Loop
... | - group: Atomic
components:
- name: Button
path: button
- name: Menu
path: menu
- name: Radio Button
path: radio-button
- name: Check Box
path: check-box
- name: String Input
path: string-input
- name: Slider
path: slider
- name: Command Loop
... |
Add C dev environment play | ---
- hosts: all
become: yes
become_user: root
become_method: sudo
gather_facts: no
tasks:
- name: Make sure C dev environment is installed
include_role:
name: c-devenv
...
| |
Remove setuptools as running dependency | {% set name = "falcon" %}
{% set version = "052016" %}
package:
name: {{ name }}
version: {{ version }}
about:
home: 'https://github.com/PacificBiosciences/FALCON'
license: "Standard PacBio Open Source License"
summary: "A set of tools for fast aligning long reads for consensus and assembly"
source:
fn: ... | {% set name = "falcon" %}
{% set version = "052016" %}
package:
name: {{ name }}
version: {{ version }}
about:
home: 'https://github.com/PacificBiosciences/FALCON'
license: "Standard PacBio Open Source License"
summary: "A set of tools for fast aligning long reads for consensus and assembly"
source:
fn: ... |
Add basic GitHub actions workflow | name: Build and test QDLDL
on: [push, pull_request]
env:
# The CMake build type
BUILD_TYPE: Release
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
use... | |
Update from Hackage at 2019-05-04T03:38:29Z | homepage: https://github.com/thomaseding/math-metric
changelog-type: ''
hash: 77ba8b9a420c98c2dd4a9ba24126fc2df5c1e8f55307b6b0324d21fe49c1d41f
test-bench-deps: {}
maintainer: Thomas Eding
synopsis: Typeclass for metric spaces
changelog: ''
basic-deps:
base: ^>=4.12.0.0
all-versions:
- 0.1.0.1
author: Thomas Eding
lat... | |
Change location of coverage data | sudo: required
language: python
python:
- "3.6"
services:
- docker
before_install:
- docker build -t singularitynet_agent agent
- docker volume create results
script:
- docker run --volume results:/data singularitynet_agent /bin/sh -c "./agent.sh test"
after_success:
- docker run --volume results:/dat... | sudo: required
language: python
python:
- "3.6"
services:
- docker
before_install:
- docker build -t singularitynet_agent agent
- docker volume create results
- pip install coveralls
script:
- docker run --volume ${PWD}/test-results:/data singularitynet_agent /bin/sh -c "./agent.sh test"
after_success... |
Add redis-server to build env | language: python
python:
- "2.6"
env:
- CFLAGS=-O0
branches:
only:
- master
install:
- "uname -a"
- "lsb_release -a"
- "sudo apt-get install moreutils libblas-dev liblapack-dev"
- "bash -ex .travis/upgrade-couchdb.sh | ts"
- "git clone https://github.com/dimagi/commcarehq-venv.git"
- "cp -r commcarehq-venv... | language: python
python:
- "2.6"
env:
- CFLAGS=-O0
branches:
only:
- master
install:
- "uname -a"
- "lsb_release -a"
- "sudo apt-get install moreutils libblas-dev liblapack-dev"
- "bash -ex .travis/upgrade-couchdb.sh | ts"
- "git clone https://github.com/dimagi/commcarehq-venv.git"
- "cp -r commcarehq-venv... |
Update from Hackage at 2017-09-17T05:52:02Z | homepage: https://github.com/michael-swan/pcf-font-embed
changelog-type: markdown
hash: 21d4ecb723ac29f761145d25f71dda66797b83b29feac88228b68580f1afb4cf
test-bench-deps: {}
maintainer: mswan@fastmail.com
synopsis: Template Haskell for embedding text rendered using PCF fonts.
changelog: ! '# 0.1.0.0
Complete basic PC... | |
Fix PHP versions in Travis config | language: php
sudo: false
matrix:
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 5.6
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: 7.0
- php: hhvm
- php: nightly
allow_failures:
- php: 7.0
- php: nightly
fast_finish: true
before_install:... | language: php
sudo: false
matrix:
include:
- php: 5.5
- php: 5.6
- php: 5.6
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: 7.0
- php: hhvm
- php: nightly
allow_failures:
- php: 7.0
- php: nightly
fast_finish: true
before_install:
- travis_retry composer sel... |
Add Symfony 2.5 + Remove 2.0 branch | language: php
php: 5.3.3
env:
- SYMFONY_VERSION="2.1.*"
- SYMFONY_VERSION="2.2.*"
- SYMFONY_VERSION="2.3.*"
- SYMFONY_VERSION="2.4.*"
before_script:
- composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION}
- composer require --no-update symfony/form:${SYMFONY_VERSION}
- ... | language: php
php: 5.3.3
env:
- SYMFONY_VERSION="2.1.*"
- SYMFONY_VERSION="2.2.*"
- SYMFONY_VERSION="2.3.*"
- SYMFONY_VERSION="2.4.*"
- SYMFONY_VERSION="2.5.*"
before_script:
- composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION}
- composer require --no-update symfony/... |
Configure Travis for external code coverage | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer install --dev
script: phpunit --coverage-text
| language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer install --dev
script: phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover |
Include acceptance test environment yaml | resources:
etcd:
number: 1
flavor: 100
image: 169d484a-dde2-44c8-8f15-daaa1ba69e94
networks:
- d7c83218-276b-4e4c-8ed1-1165b44c3a44
apache:
number: 1
flavor: 100
image: 169d484a-dde2-44c8-8f15-daaa1ba69e94
networks:
- d7c83218-276b-4e4c-8ed1-1165b44c3a44
| |
Update from Hackage at 2021-12-18T10:39:24Z | homepage: https://andriusstank.github.io/downhill/
changelog-type: markdown
hash: 40763fc666b656bd58c21e4ad39a46ca396e18651d90a6d1a02f6d78683aee8e
test-bench-deps:
base: -any
vector-space: -any
downhill: -any
tasty-hunit: -any
tasty: -any
maintainer: floppycat@gmail.com
synopsis: Reverse mode automatic differ... | |
Set up ndawg.org as a global redirect | ---
site: phe_ndawg
whitehall_slug: public-health-england
homepage: https://www.gov.uk/government/organisations/public-health-england
homepage_furl: www.gov.uk/phe
tna_timestamp: 20170605150000 # Stub timestamp - site not in TNA
host: ndawg.org
aliases:
- www.ndawg.org
global: =301 https://www.gov.uk/government/organ... | |
Add reno note on volumes.backups_enabled option | ---
upgrade:
- New config section ``volumes`` with new config option
``[volumes]backups_enabled`` (defaults to ``True``).
Operators that do not have Cinder backup service deployed in their cloud
are encouraged to set this option to ``False``.
fixes:
- Allow to configure Heat service to forbid creation o... | |
Update from Hackage at 2017-03-27T12:39:28Z | homepage: xy30.com
changelog-type: ''
hash: 8a8c4d4393ef94a9b5358a3030e9ec5bda707ba7958d30e08fb0c10bce4c2303
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: Display the number of bytes of each line
changelog: ''
basic-deps:
base: ! '>4 && <10000'
all-versions:
- '0.1.0.0'
author: Alan Hawkins
latest: '0... | |
Update from Hackage at 2016-11-21T15:04:19Z | homepage: https://github.com/hltcoe
changelog-type: ''
hash: 92bf3fced5ca9e29e745a6c986e3cf94bbdbb8f339cbc2dfb112aa33a8189898
test-bench-deps: {}
maintainer: tom@cs.jhu.edu
synopsis: Library for the Concrete data format.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
unordered-containers: -any
... | |
Add Travis CI configuration file | # 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 u... | |
Add Travis CI config file | language: python
python:
- 2.7
- pypy
env:
- VCLOUD_API_ROOT=http://test-api-root
install:
- pip install . --use-mirrors
script: nosetests
| |
Update from Hackage at 2017-08-15T16:09:03Z | homepage: https://github.com/moesenle/servant-websockets#readme
changelog-type: markdown
hash: 7fce7e16a25e47dd65a8c5a32fdf7d439b490be075d4ba038a2a406d2a4ec3c9
test-bench-deps: {}
maintainer: moesenle@gmail.com
synopsis: Small library providing WebSocket endpoints for servant.
changelog: ! "# Version 1.0.0\n\n * Initi... | |
Add handlers for child node role. | ---
- name: Run pulp-manage-db
command: pulp-manage-db
become_user: apache
become_method: sudo
- name: Restart server components
service: name={{ item }} state=restarted
with_items:
- pulp_workers
- pulp_celerybeat
- pulp_resource_manager
- goferd
| |
Add action to send a notification of non-PR CirrusCI failures to Zulip | name: Cirrus CI failures
on:
check_run:
type: ['completed']
jobs:
send-failure-notification-to-zulip:
name: Send Cirrus CI failure to Zulip
if: github.event.check_run.app.name == 'Cirrus CI' && github.event.check_run.conclusion == 'failure' && toJson(github.event.check_run.pull_requests) == '[]'
r... | |
Update from Hackage at 2017-10-09T17:42:33Z | homepage: https://github.com/andrewthad/concurrent-st#readme
changelog-type: ''
hash: 11b0df84e519961f467a9ebd561783db38ad614f3efab6f0685e936306b529bf
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: Concurrent Haskell in ST
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
ghc-prim: -any
all-versi... | |
Update from Hackage at 2017-07-08T15:40:51Z | homepage: https://bitbucket.org/fmapE/h2c
changelog-type: ''
hash: 32fcb3552fc4ddd3e1336d59dbb0f695e86c12fa8fa28e1c956cc498dafe0fde
test-bench-deps: {}
maintainer: edwardamsden@gmail.com
synopsis: Bindings to Linux I2C with support for repeated-start transactions.
changelog: ''
basic-deps:
bytestring: -any
base: ! ... | |
Enable OpenSM Infiniband subnet manager | ---
###############################################################################
# OpenSM Infiniband subnet manager configuration.
# Whether OpenSM is enabled.
#opensm_enabled:
opensm_enabled: True
###############################################################################
# Dummy variable to allow Ansible to ... | |
Add release note about the swift Large Object changes | ---
fixes:
- Delete swift objects uploaded in service of uploading images
at the time that the corresponding image is deleted. On some clouds,
image uploads are accomplished by uploading the image to swift and
then running a task-import. As shade does this action on behalf of the
user, it is not reaso... | |
Update from Hackage at 2017-06-08T08:32:09Z | homepage: https://github.com/mjhopkins/alerta-client
changelog-type: markdown
hash: c6a8db93d249c803e6c5ee707093142b2c05aca02f43b2d07114592044ba6f60
test-bench-deps: {}
maintainer: markjohnhopkins@gmail.com
synopsis: Bindings to the alerta REST API
changelog: ! "# Change log\n\n## 0.1.0.0\n Mark Hopkins <markjohnhopki... | |
Update from Hackage at 2018-11-25T18:36:47Z | homepage: https://github.com/woehr/open-adt
changelog-type: ''
hash: 8e3a9cc486542ed5caa10c7c38b27a1a6e2b1ddf65735bbabee6db59f6e962ee
test-bench-deps: {}
maintainer: Jordan Woehr
synopsis: Open algebraic data type examples.
changelog: ''
basic-deps:
row-types: ! '>=0.2.3 && <1'
base: ! '>=4.9 && <5'
deriving-comp... | |
Update from Hackage at 2017-05-30T13:03:33Z | homepage: https://github.com/andrewthad/teleshell#readme
changelog-type: ''
hash: 000b3c0983fe7ceed42e0f81576ac99afc83d8a7eb20ef9ba81d0c7f0abb8eb7
test-bench-deps:
bytestring: -any
split: -any
base: -any
pipes: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
QuickCheck: -any
teleshell: -any
... | |
Add action to register new issues for triaging | on:
issues:
types: opened
jobs:
assign_issue_to_project:
runs-on: ubuntu-latest
name: Add new issues to the triage project
steps:
- name: Create new project card with issue
id: list
uses: qmacro/action-add-issue-to-project-column@v1
with:
token: ${{ secrets.GITHUB_TOKE... | |
Switch to GitHub Actions for CI. | name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ '2.5', '2.6', '2.7' ]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
... | |
Update from Hackage at 2016-04-03T17:24:30+0000 | homepage: http://github.com/slpopejoy/
changelog-type: ''
hash: 0920c1d843ed9bc41339c90f3b1cd6c7922f7b3868cf505e5c282cefa6c5524f
test-bench-deps: {}
maintainer: spopejoy@panix.com
synopsis: Braid representations in Haskell
changelog: ''
basic-deps:
diagrams-lib: ==1.3.*
base: ! '>=4.8 && <4.9'
diagrams-rasterific... | |
Add go tip github action |
on:
workflow_dispatch:
pull_request:
types: [opened, reopened,ready_for_review,synchronize]
push:
branches:
- main
- master
name: Test Go Tip
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go tip
run: |
curl -sL https://storage.googleapis.com/go-build-... | |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
previ... | |
Use Travis CI to run flake8 tests on pull requests | language: python
cache: pip
python:
- "2.7"
- "3.6"
matrix:
allow_failures:
- python: "3.6"
install:
#- pip install -r requirements.txt
- pip install flake8 # pytest # add another testing frameworks later
before_script:
# stop the build if there are Python syntax errors or undefined na... | |
Update from Hackage at 2022-01-16T16:06:43Z | homepage: https://github.com/haskell-gi/haskell-gi
changelog-type: markdown
hash: 74318728f4b7fcb91208e103a8b70ec13925f900c05496fc0c9dc24b14c47040
test-bench-deps: {}
maintainer: Iñaki García Etxebarria
synopsis: Adwaita bindings
changelog: |+
1.0.1
=====
+ Initial release
basic-deps:
haskell-gi-base: '>=0.26... | |
Build with Actions, ship coverage to Codecov. | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
... | |
Add a Travis CI config | # Enables support for a docker container-based build:
# https://docs.travis-ci.com/user/workers/container-based-infrastructure/#Routing-your-build-to-container-based-infrastructure
sudo: false
language: python
python:
- "2.7"
script: ./ci.sh
| |
Update from Hackage at 2022-09-21T20:07:46Z | homepage: https://github.com/monadicsystems/lucid-htmx/tree/main/lucid2#readme
changelog-type: markdown
hash: cde494a8e4d199dfcc59331f41c72e1a60c3d2106e1bee56e61d97b09425f850
test-bench-deps:
base: '>=4.7 && <5'
lucid2: <=0.0.20220526
hspec: -any
text: -any
HUnit: -any
lucid2-htmx: <=0.1.0.8
maintainer: tec... | |
Update from Hackage at 2017-02-12T04:14:57Z | homepage: https://github.com/minad/tasty-stats#readme
changelog-type: ''
hash: 33e2b388a2825ead59fc718f5fe8d873664ced5a0afaafb08d04512c10090a9a
test-bench-deps: {}
maintainer: Daniel Mendler <mail@daniel-mendler.de>
synopsis: Collecting statistics of the Tasty testsuite
changelog: ''
basic-deps:
stm: ! '>=2.4 && <2.6... | |
Add algorithms as a package. | {% set name = "algorithms" %}
{% set version = "0.1.4" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/algorithms-{{ version }}.tar.gz
sha256: ccd05e13d4ad169b0061028b16b16e7f67e884d237a8bbff13b354ee5d31f34c
build:
number: 0
... | |
Add `docker-compose-mac-volume.yml` overlay for faster mac volume syncing. | # This is an docker-compose overlay that uses performance-tuned volumes for OSX.
# see https://docs.docker.com/docker-for-mac/osxfs-caching/ for more infomation
# A convient way to overlay this file is to add a `.env` file with the contents:
# COMPOSE_FILE=docker-compose.yml:docker/dev/docker-compose-mac-volumes.yml... | |
Create official build with github actions | name: Official Build CI
on:
push:
branches:
- master
env:
IMAGE_NAME: donkeybot
REGISTRY: suchtilt.azurecr.io
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to docker
env:
REGISTRY_PW: ${{ secrets.CONTAINER_REGISTRY_PW }}
... | |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
collections:
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
| |
Update from Forestry.io - Updated Forestry configuration | ---
upload_path: "/uploads/:year:/:month:/:day:"
frontmatter_file_url_template: "/uploads/:year:/:month:/:day:"
body_file_url_template: "/uploads/:year:/:month:/:day:"
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
collections:
| |
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: 'macOS-10.13'
steps:
- script: |
brew install bitrise
bitrise setup
bitrise run primary
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.