Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Install the full texlive distribution for tests instead of using single packages. | sudo: false
addons:
apt:
packages:
- texlive-latex-recommended
- texlive-latex-extra
- texlive-fonts-recommended
- texlive-science
- texlive-bibtex-extra
- texlive-latex-recommended
- latexmk
script:
- latexmk masterthesis
- latexmk presentation
| sudo: false
addons:
apt:
packages:
- texlive-full
- latexmk
script:
- latexmk masterthesis
- latexmk presentation
|
Configure Travis to install geos and proj libs before test | language: ruby
rvm:
- 2.2.2
branches:
only:
- master
before_install:
- mysql -e "create database IF NOT EXISTS transam_spatial_testing;" -uroot
addons:
code_climate:
repo_token: ce7c157104b0cf1f2babf66d9cc10bbe598607781e8eeb1ba1593fec1d1fc5c1
before_script:
- cp spec/dummy/config/database.travis.yml spec/dumm... | language: ruby
rvm:
- 2.2.2
branches:
only:
- master
before_install:
- sudo apt-get update
- gem update bundler
- sudo apt-get install libgeos-dev libproj-dev
- mysql -e "create database IF NOT EXISTS transam_spatial_testing;" -uroot
addons:
code_climate:
repo_token: ce7c157104b0cf1f2babf66d9cc10bbe598607781e... |
Upgrade Travis CI to Ubuntu Trusty to fix Chrome usage in testing. | language: node_js
sudo: false
node_js: stable
addons:
sauce_connect: true
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- npm install
script:
-... | language: node_js
sudo: required
dist: trusty
node_js: stable
addons:
sauce_connect: true
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- npm i... |
Disable rbx on CI, simplecov bug? | ---
language: ruby
rvm:
- 1.8.7
- 1.9.3
- jruby-19mode
- rbx-19mode
| ---
language: ruby
rvm:
- 1.8.7
- 1.9.3
- jruby-19mode
|
Add page for our publications | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... |
Update from Hackage at 2016-12-20T13:23:44Z | homepage: ''
changelog-type: ''
hash: 98a5575eff129b96cee0946d4ae2630bce8f4ef45b9168840ee7d27ce6027f9e
test-bench-deps: {}
maintainer: luka.horvat9@gmail.com
synopsis: Prelude replacement based on protolude
changelog: ''
basic-deps:
exceptions: ==0.8.*
witherable: ==0.1.*
MonadRandom: -any
base: ! '>=4.7 && <5'... | homepage: ''
changelog-type: ''
hash: 5b2c133d41700380d3b927a114a4b1c32978e283ff9f075e8a467701ed80a90f
test-bench-deps: {}
maintainer: luka.horvat9@gmail.com
synopsis: Prelude replacement based on protolude
changelog: ''
basic-deps:
exceptions: ==0.8.*
witherable: ==0.1.*
MonadRandom: -any
base: ! '>=4.7 && <5'... |
Comment out ROS2 for now | name: CI
on: [push, pull_request]
jobs:
industrial_ci:
strategy:
matrix:
env:
- {ROS_DISTRO: kinetic, ROS_REPO: testing}
- {ROS_DISTRO: kinetic, ROS_REPO: main}
- {ROS_DISTRO: melodic, ROS_REPO: testing}
- {ROS_DISTRO: melodic, ROS_REPO: main}
- ... | name: CI
on: [push, pull_request]
jobs:
industrial_ci:
strategy:
matrix:
env:
- {ROS_DISTRO: kinetic, ROS_REPO: testing}
- {ROS_DISTRO: kinetic, ROS_REPO: main}
- {ROS_DISTRO: melodic, ROS_REPO: testing}
- {ROS_DISTRO: melodic, ROS_REPO: main}
... |
Use custom pylint configuration file | checks:
python:
code_rating: true
duplicate_code: true
tools:
external_code_coverage: true
pylint:
python_version: 3
config_file: ".pylint.ini"
filter:
excluded_paths:
- "*/tests/*"
| build:
tests:
override:
- pylint-run --rcfile=.pylint.ini
checks:
python:
code_rating: true
duplicate_code: true
filter:
excluded_paths:
- "*/tests/*"
|
Update from Hackage at 2017-08-03T09:37:58Z | homepage: https://github.com/biocad/bio-sequence
changelog-type: ''
hash: 9bb6cff2af494fbe530420d93358f6811faeef22a70111be08ed8da0612c9203
test-bench-deps:
bytestring: -any
base: -any
hspec: -any
bio-sequence: -any
QuickCheck: -any
maintainer: yakovlev@biocad.ru
synopsis: Initial project template from stack
c... | |
Update from Hackage at 2017-08-10T01:10:07Z | homepage: https://github.com/qfpl/papa
changelog-type: markdown
hash: 8bb49884e55332ed0badf36691c66c2bb09c988f530e3578b0b1b74774afe348
test-bench-deps:
base: <5 && >=3
filepath: ! '>=1.3'
doctest: ! '>=0.9.7'
QuickCheck: ! '>=2.0'
template-haskell: ! '>=2.8'
directory: ! '>=1.1'
maintainer: Queensland Funct... | |
Add package size limit action | name: Package Size Report
on:
pull_request:
branches: [ master, develop ]
jobs:
pkg-size-report:
name: Package Size Report
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Package size report
uses: pkg-size/action@v1
env:
... | |
Update from Hackage at 2018-01-02T22:28:22Z | homepage: https://github.com/koterpillar/simpleconfig#readme
changelog-type: ''
hash: 31214c4d628d1017d4b05bde57e7944d6773e866d60bc7f3f6ff88ff81145d14
test-bench-deps:
base: -any
text: -any
generic-deriving: -any
containers: -any
simpleconfig: -any
lens: -any
maintainer: a@koterpillar.com
synopsis: Short de... | |
Update from Hackage at 2017-03-10T14:41:21Z | homepage: https://github.com/szehk/Haskell-Carbonara-Library
changelog-type: markdown
hash: dd9ff006eeb6b5e3ccb4694aa971daaec1886c296fbdbcf4d85dd8f133176c9e
test-bench-deps: {}
maintainer: Chris Sze <cris@graduate.hku.hk>
synopsis: some spaghetti code
changelog: ! '
0.0.1
* Initial release
'
basic-deps:
split... | |
Update from Hackage at 2017-07-26T07:44:57Z | homepage: https://github.com/clintonmead/fast-mult#readme
changelog-type: ''
hash: e1e7f128d0ab7b182506ad541f430eeb975543166faf76c4b0e79a2d1d5aa2ba
test-bench-deps: {}
maintainer: clintonmead@gmail.com
synopsis: Numeric type with asymptotically faster multiplications.
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
... | |
Update from Hackage at 2017-05-25T01:13:09Z | homepage: ''
changelog-type: ''
hash: affba040236344c799a6afbed82ecedc802386a0d2cef481ccc4bb0d57ba17d4
test-bench-deps:
hourglass: -any
base: -any
hspec: -any
chronologique: -any
QuickCheck: -any
maintainer: Andrew Cowie <andrew@operationaldynamics.com>
synopsis: Time to manipulate time
changelog: ''
basic-de... | |
Add example docker compose for load balance configuration | #
# Docker compose file to demonstrate multiple load balanced instances of services
#
version: '2'
services:
discovery:
# Expose port 8671 to host. Not for the application but
# handy to view the Eureka info page from the host machine.
ports:
- "8761:8761"
image: hotblac/disco:latest
r... | |
Update from Forestry.io - Updated Forestry configuration | ---
hide_body: false
fields:
- name: title
label: Title
type: text
hidden: false
default: ''
- name: type
label: Type
type: text
hidden: false
default: ''
- name: location
label: Location
type: text
hidden: false
default: ''
- name: website
label: Website
type: text
hidden: false
default... | |
Add code climate config file | engines:
duplication:
enabled: true
config:
languages:
- php
fixme:
enabled: true
phpmd:
enabled: true
ratings:
paths:
- "**.php"
exclude_paths:
- config/
| |
Add nginx frontend in docker-compose | redash:
image: redash
ports:
- "5000:5000"
- "9001:9001"
links:
- redis
- postgres
env_file: .env
redis:
image: redis:2.8
ports:
- "6379:6379"
postgres:
image: postgres:9.3
ports:
- "5432:5432"
| redash:
image: redash
ports:
- "5000:5000"
- "9001:9001"
links:
- redis
- postgres
env_file: .env
redis:
image: redis:2.8
ports:
- "6379:6379"
postgres:
image: postgres:9.3
ports:
- "5432:5432"
redash-nginx:
image: redash-nginx:1.0
ports:
- "80:80"
volumes:
- "../re... |
Add bob.bio.face recipe [skip appveyor] | {% set version = "2.0.4" %}
package:
name: bob.bio.face
version: {{ version }}
source:
fn: bob.bio.face-{{ version }}.zip
url: https://pypi.python.org/packages/source/b/bob.bio.face/bob.bio.face-{{ version }}.zip
md5: 6ee54e0020fac3cdbc7f99bb59bf84fc
build:
entry_points:
- baselines.py = bob.bio.f... | |
Comment from MelissaEnari on creating-a-mean-prototype-6 | _id: 7472f680-d468-11ea-90eb-078ee7ca9bfb
message: 'You are my heart: http://clickfrm.com/zbZL'
name: MelissaEnari
date: 1596335568
| |
Update from Hackage at 2018-06-13T08:44:01Z | homepage: https://github.com/iij-ii/wss-client
changelog-type: ''
hash: 61376f6c088b0e40e9949e8c08b2c3aed0663b5db56625173cd1d3560168c16f
test-bench-deps:
base: -any
hspec: -any
wss-client: -any
QuickCheck: -any
maintainer: yuji-yamamoto@iij.ad.jp
synopsis: A-little-higher-level WebSockets client.
changelog: ''
... | |
Add a route to kibana | apiVersion: v1
kind: Route
metadata:
labels:
name: eparis-kibana
name: eparis-kibana
spec:
port:
targetPort: http
tls:
insecureEdgeTerminationPolicy: Redirect
termination: edge
to:
kind: Service
name: eparis-kibana-logging
| |
Add to test in GitHub Actions | name: Tests
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.7]
phonopy-version: [2.7.0, 2.14.0]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-pyth... | |
Add Travis configuration with PHP 7.1 build for SS 3.6 | # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- DB=MYSQL CORE_RELEASE=3.5
matrix:
include:
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3.4
- php: 7.1
... | |
Add mounted postfix compose script | version: '2'
services:
db:
image: mysql:5.6 # mimics recommendations for AWS RDS
environment:
- MYSQL_ROOT_PASSWORD
- MYSQL_DATABASE=drupal
- MYSQL_USER=drupal
- MYSQL_PASSWORD
ports:
- "3306:3306"
web:
image: plainlychrist/site-buildbarbuda:unstable
environment:
... | |
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 build and test ci with gh actions | name: Build and test
on:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Test on node ${{ matrix.node_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [8, 10, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
step... | |
Update from Hackage at 2019-05-17T20:09:39Z | homepage: https://github.com/andrewthad/primitive-unlifted
changelog-type: markdown
hash: 374860a58684a751112ec3a2783419007c1252cce4c87fc4924be5e8f743267d
test-bench-deps:
stm: -any
base: -any
primitive-unlifted: -any
primitive: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Primitive GHC types with unlif... | |
Use py37 env for test. | version: 2
jobs:
py3test:
working_directory: ~/custodian
docker:
- image: materialsvirtuallab/circle-ci-pmg-py3:0.0.2
steps:
- checkout
- run:
command: |
export PATH=$HOME/miniconda3/bin:$PATH
conda create --quiet --yes --name test_env python=3.6
... | version: 2
jobs:
py3test:
working_directory: ~/custodian
docker:
- image: materialsvirtuallab/circle-ci-pmg-py3:0.0.2
steps:
- checkout
- run:
command: |
export PATH=$HOME/miniconda3/bin:$PATH
conda create --quiet --yes --name test_env python=3.7
... |
Update SHA256 after tag update | {% set repo_name = "whitebox-geospatial-analysis-tools" %}
{% set name = "whitebox_tools" %}
{% set version = "0.1.1" %}
{% set sha256 = "9eafecddb122479b66e9945e0611e5e9a3858aa0455480f3686b6d5c536507e9" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
path: {{ name }}
fn: {{ name|lower }}-{{... | {% set repo_name = "whitebox-geospatial-analysis-tools" %}
{% set name = "whitebox_tools" %}
{% set version = "0.1.1" %}
{% set sha256 = "1a5b80b6f0fffaae67aa8d22e0c8696f4d8368365a0962d5436395e93eb7bb80" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
path: {{ name }}
fn: {{ name|lower }}-{{... |
Set up CI with Azure Pipelines | # Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
trigger:
branches:
include:
- master
- st... | |
Update from Hackage at 2015-07-31T14:19:04+0000 | homepage: https://github.com/tibbe/ekg-json
changelog-type: ''
hash: 36572f70392960b874000598bf21238e7ccffd8a17219835a90f705de013f7bd
test-bench-deps: {}
maintainer: johan.tibell@gmail.com
synopsis: JSON encoding of ekg metrics
changelog: ''
basic-deps:
ekg-core: ! '>=0.1 && <0.2'
base: ! '>=4.5 && <4.9'
unordere... | |
Deploy assets to S3 via GitHub Action | name: Deploy
on:
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure AWS Credentials
uses: aws-actions/co... | |
Update from Hackage at 2015-10-06T08:17:30+0000 | homepage: https://github.com/ocean0yohsuke/deepcontrol
changelog-type: ''
hash: ffb89821e78fce97e48fc82ab6b7102e653b0d11e5d28c50e3786b59e13ef808
test-bench-deps:
base: -any
deepcontrol: -any
doctest: ! '>=0.9.3'
HUnit: ! '>=1.3.0'
QuickCheck: ! '>=2.8.1'
maintainer: ocean0yohsuke@gmail.com
synopsis: Enable de... | |
Add a playbook for archiving Cassandra logs | ---
- hosts: kv
vars:
cassandra_home: /opt/apache-cassandra
tasks:
- name: creating a temporary directory
tempfile:
state: directory
register: result
- name: archiving the database logs
archive:
path: "{{ cassandra_home }}/logs"
dest: "{{ result.path }}/{{ inventory_hostname }... | |
Use AppVeyor as our CI. | # gitversion will change the version number
version: x-{build}
# Install scripts. (runs after repo cloning)
install:
- choco install gitversion.portable -pre -y
before_build:
- npm install
- ps: gitversion /output buildserver
# Post-install test scripts.
test_script:
- npm test
# Don't actua... | |
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
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '8.x'
displayName: 'Install Node.... | |
Update from Hackage at 2022-08-08T11:43:13Z | homepage: https://github.com/stla/jackpolynomials#readme
changelog-type: markdown
hash: f973ec71af44f6b63fac4382105716d124779cf43a9db8b9dd258b680bbe1cce
test-bench-deps: {}
maintainer: laurent_step@outlook.fr
synopsis: Jack, zonal, and Schur polynomials
changelog: |-
1.0.0.0
-------
* initial release
basic-deps:
... | |
Update from Hackage at 2015-12-31T09:35:47+0000 | homepage: http://github.com/ylilarry/fcache#readme
changelog-type: ''
hash: f74d13173494b3dc2e4a25ad6c111cec31712cb9434f32ea4135e12d9ba2ac39
test-bench-deps:
base: -any
hspec: -any
fcache: -any
mtl: -any
maintainer: ylilarry@gmail.com
synopsis: Cache a function (a -> b)
changelog: ''
basic-deps:
base: ! '>=4.... | |
Disable Firefox beta in Travis tests until unbranded build is available | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_CHANNEL=""
- FX_CHANNEL="-esr"
- FX_CHANNEL="-beta"
matrix:
fast_finish: true
allow_failures:
- env: FX_CHANNEL="-beta"
notifications:
email: false
install:
- wget -O tarball "https://download.mozilla.org/?product=firefox${FX_CH... | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_CHANNEL=""
- FX_CHANNEL="-esr"
# Disabled until unbranded build is available
#- FX_CHANNEL="-beta"
matrix:
fast_finish: true
allow_failures:
- env: FX_CHANNEL="-beta"
notifications:
email: false
install:
- wget -O tarball "h... |
Update from Hackage at 2018-03-21T20:10:01Z | homepage: https://github.com/identicalsnowflake/hlrdb
changelog-type: ''
hash: 1fe6b06dcbe251c3173eeef37e5d4189478c8a922675a38857fe5fbeffb4faef
test-bench-deps: {}
maintainer: identicalsnowflake@protonmail.com
synopsis: High-level Redis Database
changelog: ''
basic-deps:
bytestring: ^>=0.10.8.1
time-exts: ^>=3.0
... | |
Add sphinx-testing recipe from conda skeleton pypi | {% set name = "sphinx-testing" %}
{% set version = "1.0.1" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "ef661775b5722d7b00f67fc229104317d35637a4fb4434bf2c005afdf1da4d09"
build:
... | |
Update from Hackage at 2016-01-13T18:36:00+0000 | homepage: https://github.com/s9gf4ult/dom-parser
changelog-type: markdown
hash: 8d509db218b80863aa5b9a23474f27caaf894b028c11a9f0aae2e1d7722e94a7
test-bench-deps:
shakespeare: -any
dom-parser: -any
xml-conduit: -any
base: -any
hspec: -any
text: -any
data-default: -any
maintainer: s9gf4ult@gmail.com
synopsi... | |
Add a recipe for packaging. | {% set name = "packaging" %}
{% set version = "16.7" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: 5bfeb52de8dee2fcc95a003b0ebe9011
build:
number: 0
scrip... | |
Remove API jar from CircleCI release artifacts |
checkout:
post:
# clone the Glowkit submodule (see https://circleci.com/docs/configuration)
- git submodule sync
- git submodule update --init
# setup for mvn dependency:resolve (see http://stackoverflow.com/questions/7772556/maven-fails-to-resolve-dependency)
- (cd Glowkit ... |
checkout:
post:
# clone the Glowkit submodule (see https://circleci.com/docs/configuration)
- git submodule sync
- git submodule update --init
# setup for mvn dependency:resolve (see http://stackoverflow.com/questions/7772556/maven-fails-to-resolve-dependency)
- (cd Glowkit ... |
Update from Hackage at 2020-08-30T20:16:33Z | homepage: https://hackage.haskell.org/package/uniqueness-periods-vector-common
changelog-type: markdown
hash: c222b702d909f9334642af53a294fbd86b6ec9a2d9b38ce619e29cf12324f43e
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Generalization of the dobutokO-poetry-general package functionality
changelog: |
... | |
Update from Hackage at 2019-04-17T13:34:24Z | homepage: https://github.com/groscoe/simple-units#readme
changelog-type: ''
hash: 3b7a85c47b2ede1972e4bdc50c783f4a5d621229ce46137cc8af75fc16fab86e
test-bench-deps: {}
maintainer: gustavo@gustavoroscoe.com
synopsis: Simple arithmetic with SI units using type-checked dimensional analysis.
changelog: ''
basic-deps:
firs... | |
Add docker compose file for all services for public USSD line | version: '3'
services:
junebug:
image: praekeltfoundation/junebug:alpine
ports:
- '80:80'
- '9001:9001'
links:
- rabbitmq
- redis
environment:
- AMQP_HOST=rabbitmq
- AMQP_VHOST=/
- REDIS_HOST=redis
command: jb --channel 'telnet_addr:vumi.transports.telnet.... | |
Add file format to carry claim mappings. | ###############################################################################
# Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) 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 cop... | |
Set up CI with Azure Pipelines | pr:
- master
pool:
vmImage: "ubuntu-latest"
steps:
- task: NodeTool@0
inputs:
versionSpec: "10.x"
displayName: "Install NodeJS"
- script: |
npm install -g vsce
displayName: "Install VSCE"
- script: |
npm install
displayName: "NPM Install"
- script: |
vsce package --out $(Build.ArtifactS... | |
Add CI via Github Actions | name: ci
on: [push, pull_request]
jobs:
autotools:
runs-on: ubuntu-latest
steps:
- name: Prepare
run: |
sudo apt update -qq
sudo apt install -qq check
pip install cpp-coveralls
- uses: actions/checkout@v2
- name: Build
run: |
./autogen.sh
./conf... | |
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 16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '8.x'
display... | |
Set up CI with Azure Pipelines | # Universal Windows Platform
# Build a Universal Windows Platform project using Visual Studio.
# Add steps that test and distribute an app, save build artifacts, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: '**/*.sln'
buildPlatform: 'x86|x64|ARM'
buil... | |
Create template for logobatch home dotfile | default_email: example_email@gmail.com
storage:
- name: remote1
hostname: remote1_nfs.rc.uni.edu
- name: cluster_shared
hostname: cluster_nfs.nfs.rc.uni.edu
default_path: /mnt/cluster_shared
compute:
- name: Compute1
type: compute
hostname: compute1.rc.uni.edu
fast_storage: ['/disk/scra... | |
Add circleCI for build test | version: 2
aliases:
docker-cp: &docker-cp
run:
name: Create Docker Volume
command: |
docker create -v /${WORKING_DIR} --name ${VOLUME} --privileged tizenrt/tizenrt:${DOCKER_IMG_VERSION} /bin/bash
docker cp ./. ${VOLUME}:/${WORKING_DIR}
docker run -d --rm -it --name ${BUILDER} ... | |
Add thoughtbot-specific SCSS style guide | scss_files: "**/*.scss"
linters:
BangFormat:
enabled: true
space_before_bang: true
space_after_bang: false
BorderZero:
enabled: false
ColorKeyword:
enabled: true
severity: warning
Comment:
enabled: true
DebugStatement:
enabled: true
DeclarationOrder:
enabled: true
... | |
Update from Hackage at 2019-06-17T19:09:54Z | homepage: https://github.com/haskell-primitive/primitive-ffi
changelog-type: markdown
hash: 194a02c3465fbc8eed5dd2f22f7d5d22201b3a33b873358c221028b1b3f4b8dc
test-bench-deps:
primitive-foreign: -any
base: -any
QuickCheck: -any
primitive: -any
maintainer: chessai <chessai1996@gmail.com>
synopsis: using the `Prim`... | |
Add recipe for simmer package | {% set name = "simmer" %}
{% set version = "0.3.7" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 7b6bb13189ebcec123e290163dce18d98c697c7fa9d8a78112cce2cdea53379e
build:
number: 0
... | |
Add CircleCI configuration to repo | machine:
java:
version: openjdk8
dependencies:
pre:
- echo y | android -s update sdk -u -a -t "tools"
- mkdir -p $ANDROID_HOME/licenses
- echo -e "8933bad161af4178b1185d1a37fbf41ea5269c55" > $ANDROID_HOME/licenses/android-sdk-license
- echo -e "84831b9409646a918e30573bab4c9c91346d8abd" > $ANDRO... | |
Add daemonset that uses Canonical provided installer on GKE. | # Copyright 2017 Google Inc. 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 applicable law or a... | |
Update from Hackage at 2021-09-01T01:52:08Z | homepage: https://github.com/iand675/thread-utils#readme
changelog-type: markdown
hash: a8435240bfc0ae96c94704d2986699a11a395c496f9a7f2e5f5d729a0b967549
test-bench-deps:
base: '>=4.7 && <5'
ghc-prim: -any
thread-utils-finalizers: -any
maintainer: ian@iankduncan.com
synopsis: Perform finalization for threads.
chan... | |
Add build script for Travis CI | language: csharp
solution: ./Extension Library/Extension Library.sln
install:
- nuget restore ./Extension Library/Extension Library.sln
- nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release ./Extension Library/Extension Library.sln
- mono ./testrunner... | |
Update from Hackage at 2019-09-16T22:38:25Z | homepage: https://github.com/andys8/network-manager-tui#readme
changelog-type: ''
hash: 6509358d96588d8b9d19daa28b33f5b76b1a06cc0c1ab6c88d4c2bd0c168cd22
test-bench-deps:
split: -any
base: ! '>=4.7 && <5'
hspec: -any
vty: -any
process: -any
network-manager-tui-lib: -any
microlens: -any
brick: -any
vect... | |
Stop gs-pages from running under ci | # CircleCI by default tests every push to every branch. This mean automated release from source to gp-pages will trigger CI testing gp-pages.
# we disable that. Piece and quiet: https://circleci.com/docs/1.0/configuration/#branches
# this also prevents pull requests from triggering the CI and thrashing e.g. the crowdin... | |
Add linting as a CI step | name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js v14.15.4
uses: actions/setu... | |
Add Github Actions as defined in jaraco/skeleton | name: Automated Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python: [3.6, 3.7, 3.8]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/set... | |
Update from Hackage at 2022-09-09T17:19:06Z | homepage: https://github.com/TristanCacqueray/haskell-xstatic#readme
changelog-type: markdown
hash: f4903d1e5900c074553bb7b5078b22c08d95983ad01be010d4533ece0cd35eb6
test-bench-deps: {}
maintainer: tdecacqu@redhat.com
synopsis: XStatic adapter for servant
changelog: |
# Changelog
## 0.1.0
- Initial release
basic... | |
Add GitHub actions for PyPI release. | name: Publish tfds-nightly to PyPI
on:
# Event manually triggered (in the Github UI)
workflow_dispatch:
inputs:
git-ref:
description: Git ref (e.g. SHA or tag) (Optional)
default: ""
required: false
jobs:
publish-job:
# Prevents action from running on forks.
if: github.... | |
Set up CI with Azure Pipelines | # Maven
# Build your Java project and run tests with Apache Maven.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger:
- master
pool:
vmImage: 'Ubuntu-16.04'
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
... | |
Migrate "At least one ELB node is not responding" monitor to Prometheus | # Source: paas-metrics
---
- type: replace
path: /instance_groups/name=prometheus2/jobs/name=prometheus2/properties/prometheus/custom_rules?/-
value:
name: AWSELBUnhealthyNodes
rules:
- alert: AWSELBUnhealthyNodes_Warning
expr: max_over_time(paas_aws_elb_unhealthy_node_count[5m]) > 0
labels... | |
Update from Hackage at 2019-11-07T23:12:39Z | homepage: ''
changelog-type: ''
hash: 15c4ecc86d6d71a93adf99b5893d7b5587c31f88f405d95fd47b8f3d3b16d27d
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Store of values of arbitrary types
changelog: ''
basic-deps:
base-unicode-symbols: -any
base: ! '>=4.7 && <5'
containers: -any
util: -any
key: -a... | |
Add release note for Aggregate[Core|Ram|Disk]Filter change | ---
upgrade:
- |
Starting in Ocata, there is a behavior change where aggregate-based
overcommit ratios will no longer be honored during scheduling for the
FilterScheduler. Instead, overcommit values must be set on a
per-compute-node basis in the Nova configuration files.
If you have been relying ... | |
Update from Hackage at 2017-10-06T22:47:37Z | homepage: https://github.com/masterdezign/hmep#readme
changelog-type: ''
hash: e9232c9c15db26c3afb3a65e0bb7f2f5db560ce68801385fbbabb11b62970060
test-bench-deps:
base: -any
HUnit: -any
containers: -any
hmep: -any
vector: -any
maintainer: dev at penkovsky dot com
synopsis: ! 'HMEP Multi Expression Programming –... | |
Create GitHub Action to build+test on push or PR | # This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ "master"... | |
Add bob.db.frgc recipe [skip appveyor] | {% set version = "2.0.3" %}
package:
name: bob.db.frgc
version: {{ version }}
source:
fn: bob.db.frgc-{{ version }}.zip
md5: 078eb06307c7ef586ec7564ec5efdad5
url: https://pypi.python.org/packages/source/b/bob.db.frgc/bob.db.frgc-{{ version }}.zip
build:
number: 0
skip: true # [not linux]
script: pyt... | |
Send code coverage reports to Codecov | osx_image: xcode9.2
language: objective-c
xcode_workspace: Iterable-iOS-SDK.xcworkspace
xcode_scheme: Iterable-iOS-SDKTests
xcode_sdk: iphonesimulator
before_install:
- gem install xcpretty xcpretty-travis-formatter
script:
- xcodebuild test -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone X'... | osx_image: xcode9.2
language: objective-c
xcode_workspace: Iterable-iOS-SDK.xcworkspace
xcode_scheme: Iterable-iOS-SDKTests
xcode_sdk: iphonesimulator
before_install:
- gem install xcpretty xcpretty-travis-formatter
script:
- xcodebuild test -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone X'... |
Fix issue with no NAT on Travis | ---
# Test IPv4 network
subnetwork_ipv4: '192.168.128.1'
| ---
# Test IPv4 network
subnetwork_ipv4: '192.168.128.1/24'
# Test IPv6 network
subnetwork_ipv6: [ '2001:db8:1234:5678::1/64' ]
# NAT is disabled on Travis-CI
# https://github.com/travis-ci/travis-ci/issues/1341
subnetwork_ipv4_nat: False
|
Test against latest Ruby 2.1 release | before_install: gem update bundler
bundler_args: --without development
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-2
- ruby-head
matrix:
include:
allow_failures:
- rvm: ruby-head
fast_finish: true
script: bundle exec rake default
| before_install: gem update bundler
bundler_args: --without development
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- rbx-2
- ruby-head
matrix:
include:
allow_failures:
- rvm: rbx-2
- rvm: ruby-head
fast_finish: true
script: bundle exec rake default
|
Add configuration file for Travis | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
| |
Add config for Travis CI | language: python
python:
- "2.5"
- "2.6"
- "2.7"
install:
- pip install unittest2 mock nose --use-mirrors
- pip install . --use-mirrors
script: nosetests
| |
Add integration to Travis CI | language: node_js
notifications:
email:
on_success: never
on_failure: change
node_js:
- stable
before_install:
- npm install -g typings gulp && typings install
script:
- npm test
| |
Update from Hackage at 2019-04-16T15:24:45Z | homepage: https://github.com/chessai/dura
changelog-type: markdown
hash: d89958cf89ffd463465ffa348720447498a5f6a7bf5749ddf3295b903b1d9f23
test-bench-deps: {}
maintainer: chessai <chessai1996@gmail.com>
synopsis: durable/atomic file system writes (from rio package)
changelog: |-
# Changelog
`dura` uses [PVP Version... | |
Add some Rust related CI jobs | name: Rust
on:
pull_request: {}
push:
branches:
- master
jobs:
cargo_bloat:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
tool... | |
Add Staticman comment from JoeHx | _id: 9eee6ff0-0536-11e9-9a4e-a50effefcdf5
replyto: entry1545375446
msg: "Hi Kim!\r\n\r\nPrint-on-demand is where the product isn't printed until a sale is made. In the case of t-shirts, I provide a design to be printed on the t-shirt, and then when the website sells a t-shirt with that design, they'll print the design ... | |
Use Appveyor for Windows CI | install:
- ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.exe'
- rust-nightly-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- rustc -V
- cargo -V
- git submodule update --init --... | |
Update from Hackage at 2016-09-16T13:51:51+0000 | homepage: ''
changelog-type: ''
hash: c4e4a28c405311df73a5c398bdd7303a6a0c5e436a9fc9bbeed66a237faf552d
test-bench-deps: {}
maintainer: haskelldevelopers@chordify.net
synopsis: Functionality for reporting function progress.
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.10'
time: ! '>=1.4 && <1.7'
mtl: ! '>=2.1 &&... | |
Set up CI with Azure Pipelines | # Jekyll site
# Package your Jekyll site using the jekyll/builder Docker container image.
# Add steps that build, test, save build artifacts, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Docker@0
displayName: 'Run Jekyll'
inputs:
containerRegistryT... | |
Update from Hackage at 2019-01-10T15:26:48Z | homepage: https://github.com/vabal/vabal
changelog-type: markdown
hash: 1bfabb8cdac506262f636743f211b45a3710d9f3ecb06421927d75543be07137
test-bench-deps:
Cabal: -any
base: -any
containers: -any
vabal-lib: -any
maintainer: franciman12@gmail.com
synopsis: Core algorithms and datatypes used by vabal
changelog: |
... | |
Configure Insolvency Service legacy domain on transition | ---
site: bis_insolvency
whitehall_slug: insolvency-service
title: The Insolvency Service
redirection_date: 30th April 2014
homepage: https://www.gov.uk/government/organisations/insolvency-service
tna_timestamp: 20140111212538
host: www.insolvency.gov.uk
furl: www.gov.uk/insolvency-service
aliases:
- insolvency.gov.uk
... | |
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... | |
Add HHVM to test targets | language: php
env:
- DB=sqlite
php:
- 5.3
- 5.4
- 5.5
before_script:
- cd tests
script: phpunit
| language: php
env:
- DB=sqlite
php:
- 5.3
- 5.4
- 5.5
- hhvm
before_script:
- cd tests
script: phpunit
|
Update from Hackage at 2016-01-17T08:35:31+0000 | homepage: http://github.com/mstksg/configurator-export
changelog-type: markdown
hash: ad6d0ac555b0f6d1851895a7803fcc22dba5395a3b94ddf3e9d3e850d44c9a86
test-bench-deps:
base: -any
configurator-export: -any
maintainer: justin@jle.im
synopsis: ! 'Pretty printer and exporter for configurations from
the "configurator... | |
Add ec2 example with regions and stuff | plugin: aws_ec2
regions:
- us-west-1
groups:
ec2: true
keyed_groups:
- prefix: ""
separator: ""
key: placement.region
- prefix: "unsafe_region_"
separator: ""
key: placement.region
unsafe: true
| |
Update CI configs to v0.7.3 | name: "CodeQL"
on:
workflow_dispatch:
schedule:
- cron: '23 5 * * 0'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Initializ... | |
Update from Hackage at 2020-01-09T21:05:00Z | homepage: https://github.com/ejconlon/blanks#readme
changelog-type: ''
hash: 7c2c3c7f8752503226abc1125394cbc389e598240a87d31c72dbaa4163f955e5
test-bench-deps:
base: ! '>=4.12 && <5'
tasty-discover: -any
adjunctions: ! '>=4.4'
distributive: ! '>=0.6'
containers: ! '>=0.6'
mtl: ! '>=2.2'
tasty-hunit: -any
... | |
Add a GitHub Packages Release workflow | ---
jobs:
github_packages:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v1"
- uses: "actions/setup-ruby@v1"
with:
ruby-version: "2.7"
- name: "Publish to GitHub"
uses: "jstastny/publish-gem-to-github@v1.1"
with:
owner: "envylabs"
... | |
Support for the HDArea.co tracker. | ---
site: hdarea
name: HDArea
language: en-us
links:
- http://www.hdarea.co/
caps:
categories:
402: TV #TV Series
403: TV #TV Shows
410: Movies/HD #FullHD
410: TV/HD #FullHD
411: Movies/HD #HD
411: TV/HD #HD
413: Movies/HD #HDTV
413: TV... | |
Update from Hackage at 2017-07-16T09:37:33Z | homepage: https://github.com/jystic/transformers-bifunctors
changelog-type: markdown
hash: 67d1d3a860f8db3cc87983c76f79cb24078b8d837f6b46e331a3038ab0b8fbc6
test-bench-deps: {}
maintainer: Jacob Stanley <jacob@stanley.io>
synopsis: Bifunctors over monad transformers.
changelog: ! '## Version 0.1 (2017-07-16)
* First... | |
Migrate project Nailgun off AppVeyor CI | version: 2.1
orbs:
win: circleci/windows@2.2.0
windows_environment: &windows_environment
PLATFORM: "windows"
NAILGUN_ROOT: "C:\\Users\\circleci\\nailgun"
jobs:
windows_build_test:
environment:
<<: *windows_environment
working_directory: "C:\\Users\\circleci\\nailgun"
executor: win/default
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.