commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
eec6df930abb17e73dcff3227e9c83bba9ea829c | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- apt-get update -qq && apt-get install -y -qq nodejs
- npm install -g gulp
- npm install
build:
script:
- gulp build
| before_script:
- sudo apt-get update -qq && sudo apt-get install -y -qq nodejs
- npm install -g gulp
- npm install
build:
script:
- gulp build
| Add sudo to build tasks | Add sudo to build tasks
| YAML | mit | findologic/sentry-browser-demo,findologic/sentry-browser-demo |
863bf2b8c1048c9b83f8ac504962c5f85f84deb5 | .gitlab-ci.yml | .gitlab-ci.yml | pages:
stage: deploy
script:
- echo 'Nothing to do...'
artifacts:
paths:
- "/"
only:
- master
| pages:
stage: deploy
script:
- echo 'Nothing to do...'
artifacts:
paths:
- "."
only:
- master
| Update path to use root | Update path to use root
| YAML | mit | JikkuJose/JikkuJose.github.io,JikkuJose/JikkuJose.github.io |
099ced1a9c157bee2892228c3d12df57f55dd027 | ansible/playbook.yml | ansible/playbook.yml | ---
- hosts: servers
become: yes
roles:
- base
- groonga
- postgresql
- mariadb
- redmine
- httpd
- hosts: log
become: yes
roles:
- base
- fluentd
- benchmark
| ---
- hosts: servers
become: yes
roles:
- base
- groonga
- { role: postgresql, when: database_adapter == "postgresql" }
- { role: mariadb, when: database_adapter == "mysql2" }
- redmine
- httpd
- hosts: log
become: yes
roles:
- base
- fluentd
- benchmark
| Set up database when use it | Set up database when use it
| YAML | apache-2.0 | okkez/redmine_full_text_search-benchmark,okkez/redmine_full_text_search-benchmark |
03e7420e6d1bb48d67aa505a45008424ca48758c | ggd-recipes/hg38/hisat2.yaml | ggd-recipes/hg38/hisat2.yaml | # hisat2 (v2.0.1) reference with Ensembl release 78 exon and splicesite annotations
# Derived from NCBI set with HLA and decoy alternative alleles
# ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/technical/reference/GRCh38_reference_genome/
# README.md has an in depth description of how this was created
---
attributes:
nam... | # hisat2 (v2.0.1) reference with Ensembl release 78 exon and splicesite annotations
# Derived from NCBI set with HLA and decoy alternative alleles
# ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/technical/reference/GRCh38_reference_genome/
# README.md has an in depth description of how this was created
---
attributes:
nam... | Use the right tar flag for xz. | Use the right tar flag for xz.
| YAML | mit | chapmanb/cloudbiolinux,rchekaluk/cloudbiolinux,rchekaluk/cloudbiolinux,chapmanb/cloudbiolinux,rchekaluk/cloudbiolinux,chapmanb/cloudbiolinux,rchekaluk/cloudbiolinux,chapmanb/cloudbiolinux |
87925c714e0183230524463cec420255536d4fc5 | metadata/org.bitbatzen.wlanscanner.yml | metadata/org.bitbatzen.wlanscanner.yml | Categories:
- System
- Connectivity
- Security
License: GPL-3.0-only
SourceCode: https://github.com/bewue/WLANScanner
IssueTracker: https://github.com/bewue/WLANScanner/issues
AutoName: WLANScanner
RepoType: git
Repo: https://github.com/bewue/WLANScanner.git
Builds:
- versionName: 1.0.1
versionCode: 1
... | Categories:
- System
- Connectivity
- Security
License: GPL-3.0-only
SourceCode: https://github.com/bewue/WLANScanner
IssueTracker: https://github.com/bewue/WLANScanner/issues
AutoName: WLANScanner
RepoType: git
Repo: https://github.com/bewue/WLANScanner.git
Builds:
- versionName: 1.0.1
versionCode: 1
... | Update WLANScanner to 1.2.0 (4) | Update WLANScanner to 1.2.0 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
d47f46129e921da7f1a10e861bd74643825f5430 | tasks/main.yml | tasks/main.yml | ---
- name: EL...
when: ansible_os_family == 'RedHat'
include: EL.yml
- name: Debian...
when: ansible_os_family == 'Debian'
include: Debian.yml
- name: configure...
template: >-
src=etc/logstash/conf.d/{{item}}.j2
dest=/etc/logstash/conf.d/{{item}}
owner=root
group=root
mode=0644
with_... | ---
- name: EL...
when: ansible_os_family == 'RedHat'
include: EL.yml
- name: Debian...
when: ansible_os_family == 'Debian'
include: Debian.yml
- name: configure...
template: >-
src=etc/logstash/conf.d/{{item}}.j2
dest=/etc/logstash/conf.d/{{item}}
owner=root
group=root
mode=0644
with_... | Remove use of to_json - not required | Remove use of to_json - not required
| YAML | mit | andrewrothstein/ansible-logstash |
9a145537aae0220bbbfe7bb895456c12deff3b73 | .github/workflows/codeql-analysis.yml | .github/workflows/codeql-analysis.yml | name: "Code scanning - action"
on:
push:
branches: ['*/dev','*/contrib']
pull_request:
# The branches below must be a subset of the branches above
branches: ['*/dev','*/contrib']
jobs:
CodeQL-Build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout... | name: "Code scanning - action"
on:
push:
branches: ['*/dev','*/contrib']
pull_request:
# The branches below must be a subset of the branches above
branches: ['*/dev','*/contrib']
jobs:
CodeQL-Build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout... | Fix config file, should be on init | Fix config file, should be on init
| YAML | mit | marcemarc/Umbraco-CMS,abryukhov/Umbraco-CMS,robertjf/Umbraco-CMS,arknu/Umbraco-CMS,dawoe/Umbraco-CMS,marcemarc/Umbraco-CMS,umbraco/Umbraco-CMS,abjerner/Umbraco-CMS,KevinJump/Umbraco-CMS,arknu/Umbraco-CMS,arknu/Umbraco-CMS,abjerner/Umbraco-CMS,KevinJump/Umbraco-CMS,umbraco/Umbraco-CMS,robertjf/Umbraco-CMS,dawoe/Umbraco-... |
89e9612d46150402dd8b83846a43bd71146d78aa | .github/workflows/publish-package.yml | .github/workflows/publish-package.yml | # This workflows 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:
push:
tags:
- 'v*' # Push event... | # This workflows 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:
push:
tags:
- 'v*' # Push event... | Set the correct username for PyPI | Set the correct username for PyPI
| YAML | mit | blue-yonder/pyscaffold,blue-yonder/pyscaffold |
c7e68b9e3caa9df3993122d00eee8b9799729071 | cluster/manifests/kube-state-metrics/deployment.yaml | cluster/manifests/kube-state-metrics/deployment.yaml | apiVersion: apps/v1
kind: Deployment
metadata:
name: kube-state-metrics
namespace: kube-system
labels:
application: kube-state-metrics
version: v1.3.0
spec:
replicas: 1
selector:
matchLabels:
application: kube-state-metrics
template:
metadata:
labels:
application: kube-st... | apiVersion: apps/v1
kind: Deployment
metadata:
name: kube-state-metrics
namespace: kube-system
labels:
application: kube-state-metrics
version: v1.3.0
spec:
replicas: 1
selector:
matchLabels:
application: kube-state-metrics
template:
metadata:
labels:
application: kube-st... | Increase CPU limit for kube-state-metrics | Increase CPU limit for kube-state-metrics
| YAML | mit | zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws |
72ea1f86c6f848eaf7f1d35c83dfd324e86a0786 | tasks/nodejs.yml | tasks/nodejs.yml | ---
- include: install.deb.yml
when: ansible_pkg_mgr == 'apt' and nodejs_install == 'pkg'
- include: install.yum.yml
when: ansible_pkg_mgr == 'yum' and nodejs_install == 'pkg'
- include: install.src.yml
when: nodejs_install == 'src'
# TODO - make it idempotent
- name: Update npm configuration
shell:
np... | ---
- include: install.deb.yml
when: ansible_pkg_mgr == 'apt' and nodejs_install == 'pkg'
- include: install.yum.yml
when: ansible_pkg_mgr == 'yum' and nodejs_install == 'pkg'
- include: install.src.yml
when: nodejs_install == 'src'
# TODO - make it idempotent
- name: Update npm configuration
shell:
np... | Use regular naming convention for the npm package versions | Use regular naming convention for the npm package versions
| YAML | mit | wiredcraft-ops/role-wcl-nodejs |
2ec635f3a3581c1648a7958950f11a5d641bb491 | pubspec.yaml | pubspec.yaml | name: guinness2
version: 0.0.2
author: Julie Ralph <ju.ralph@gmail.com>
homepage: https://github.com/juliemr/guinness2
description: A port of the Jasmine testing framework.
dependencies:
collection: ">=1.4.0 <2.0.0"
test: "^0.12.9"
dev_dependencies:
mockito: "0.11.0"
browser: ">= 0.10.0 <1.0.0"
environment:
s... | name: guinness2
version: 0.0.2
author: Julie Ralph <ju.ralph@gmail.com>
homepage: https://github.com/juliemr/guinness2
description: A port of the Jasmine testing framework.
dependencies:
collection: ">=1.4.0 <2.0.0"
test: "^0.12.9"
dev_dependencies:
mockito: "0.11.0"
environment:
sdk: ">=1.13.0 <2.0.0"
| Remove unused dependency on browser. | Remove unused dependency on browser.
| YAML | mit | juliemr/dart_test_bdd,juliemr/dart_test_bdd,juliemr/guinness2,juliemr/guinness2 |
1638801be71825271a959fbf4e222b44aea89e8e | packages/rv/rv.yaml | packages/rv/rv.yaml | homepage: ''
changelog-type: ''
hash: 86134ce6aee533f4a3798a336bb01a8e328d4a3eb1c090d23c3ade52f7374184
test-bench-deps:
tasty-smallcheck: ! '>=0.8'
base: ! '>=4.11 && <5'
criterion: ! '>=1.4.1'
smallcheck: ! '>=1.1.4'
rv: -any
tasty: ! '>=1.0'
maintainer: strake888@gmail.com
synopsis: RISC-V
changelog: ''
b... | homepage: ''
changelog-type: ''
hash: a1cb2a2e3778b27ecc5057eaae20c3debe2cd2df670157b766be568d6ffac1e8
test-bench-deps:
tasty-smallcheck: ! '>=0.8'
base: ! '>=4.11 && <5'
criterion: ! '>=1.4.1'
smallcheck: ! '>=1.1.4'
rv: -any
tasty: ! '>=1.0'
maintainer: strake888@gmail.com
synopsis: RISC-V
changelog: ''
b... | Update from Hackage at 2020-02-11T10:24:54Z | Update from Hackage at 2020-02-11T10:24:54Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9d40c3ae75be50f046571cd4cf22312e71cf4f66 | vamp-kubernetes/vga.yml | vamp-kubernetes/vga.yml | ---
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: vamp-gateway-agent
spec:
template:
metadata:
labels:
vamp: vamp-gateway-agent
spec:
containers:
- name: vamp-gateway-agent
image: magneticio/vamp-gateway-agent:katana
ports:
- name: p80
... | ---
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: vamp-gateway-agent
spec:
template:
metadata:
labels:
vamp: vamp-gateway-agent
spec:
containers:
- name: vamp-gateway-agent
image: magneticio/vamp-gateway-agent:katana
ports:
- name: p80
... | Replace arguments with environment variables | Replace arguments with environment variables
Issue: https://github.com/magneticio/vamp/issues/868
| YAML | apache-2.0 | magneticio/vamp-docker-images,magnetic-ci/vamp-docker-images |
f1ac2a903488e5276ef6fffdd634e10b54951f0f | meetups/ostatni.yml | meetups/ostatni.yml | # Pozor, nové meetupy se přidávají na konec souboru
[]
| # Pozor, nové meetupy se přidávají na konec souboru
- name: PyLadies Olomouc <br> začátečnický kurz
registration:
url: https://forms.gle/74qRf346E7YRT1Kr5
end: 2019-08-01
start: 2019-09-01
end: 2019-12-31
place: &rc-hermanek
name: RC Heřmánek
address: Náves Svobody 41, Olomouc - Holice
url: ... | Add first PyLadies course for beginners | Olomouc: Add first PyLadies course for beginners
| YAML | mit | PyLadiesCZ/pyladies.cz,PyLadiesCZ/pyladies.cz,PyLadiesCZ/pyladies.cz |
57ccdd22b030a31fb79665917981c5ab4623e486 | meetups/ostatni.yml | meetups/ostatni.yml | # Pozor, nové meetupy se přidávají na konec souboru
- name: PyLadies Olomouc <br> začátečnický kurz
registration:
url: https://forms.gle/74qRf346E7YRT1Kr5
end: 2019-08-01
start: 2019-09-01
end: 2019-12-31
place: &rc-hermanek
name: RC Heřmánek
address: Náves Svobody 41, Olomouc - Holice
url: ... | # Pozor, nové meetupy se přidávají na konec souboru
- name: PyLadies Olomouc <br> začátečnický kurz
registration:
url: https://forms.gle/74qRf346E7YRT1Kr5
end: 2019-09-01
start: 2019-10-01
end: 2020-01-31
place: &rc-hermanek
name: RC Heřmánek
address: Náves Svobody 41, Olomouc - Holice
url: ... | Extend registration period & move start/end of the course | Olomouc: Extend registration period & move start/end of the course
| YAML | mit | PyLadiesCZ/pyladies.cz,PyLadiesCZ/pyladies.cz,PyLadiesCZ/pyladies.cz |
72041ef857b20ef16f8644b750c8866dcc91bd8e | recipes/mkdocs-macros-plugin/meta.yaml | recipes/mkdocs-macros-plugin/meta.yaml | {% set name = "mkdocs-macros-plugin" %}
{% set version = "0.3.3" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: ea435a920a58ac9f819ace59fa4efc0887b24ba1cae14e58d3294d1edf80fc0f
build... | {% set name = "mkdocs-macros-plugin" %}
{% set version = "0.3.3" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: ea435a920a58ac9f819ace59fa4efc0887b24ba1cae14e58d3294d1edf80fc0f
build... | Remove setuptools from run and constrained python | Remove setuptools from run and constrained python | YAML | bsd-3-clause | igortg/staged-recipes,asmeurer/staged-recipes,Juanlu001/staged-recipes,hadim/staged-recipes,SylvainCorlay/staged-recipes,dschreij/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-re... |
9c52ec36c50202d25c619115f9dee363e3981c52 | .github/workflows/static-analysis.yaml | .github/workflows/static-analysis.yaml | name: Code style and static analysis
on:
pull_request:
push:
branches: [ master ]
jobs:
composer-validate:
name: Validate composer.json
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
- name: Validate
... | name: Code style and static analysis
on:
pull_request:
push:
branches: [ master ]
jobs:
composer-validate:
name: Validate composer.json
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
- name: Validate
... | Bring back bin/update-readme status check to CI again | Bring back bin/update-readme status check to CI again
| YAML | mit | knpuniversity/oauth2-client-bundle |
2f3086ea429e9af0ee08d062d0190a214320aac0 | roles/container-runtime/tasks/main.yml | roles/container-runtime/tasks/main.yml | ---
- when: container_runtime == 'nvidia-docker'
raw: "nvidia-smi"
ignore_errors: True
register: check_driver
# nvidia-docker runtime
- when:
- container_runtime == 'nvidia-docker'
- "'not found' not in check_driver.stdout"
include_tasks: nvidia-docker/main.yml
# docker runtime
- when: container_runtime... | ---
- when: container_runtime == 'nvidia-docker'
raw: "nvidia-smi"
ignore_errors: True
register: check_driver
# nvidia-docker runtime
- when:
- container_runtime == 'nvidia-docker'
- "'not found' not in check_driver.stdout"
include_tasks: nvidia-docker/main.yml
# docker runtime
- when: container_runtime... | Fix sysctl not work issue | Fix sysctl not work issue
| YAML | apache-2.0 | kairen/vagrants,kairen/kube-ansible,kairen/kube-ansible,kairen/vagrants,kairen/kubernetes-ceph-ansible,kairen/kube-ansible,kairen/kubernetes-ceph-ansible |
814ba5e44b3bf3b5469f3011ada6d114e556e104 | metadata/com.ctemplar.app.fdroid.yml | metadata/com.ctemplar.app.fdroid.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: Apache-2.0
WebSite: https://ctemplar.com
SourceCode: https://github.com/CTemplar/android/tree/fdroid
IssueTracker: https://github.com/CTemplar/android/issues
AutoName: CTemplar
RepoType: git
Repo: https://github.com/CTemplar/android.git
Builds:
- versi... | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: Apache-2.0
WebSite: https://ctemplar.com
SourceCode: https://github.com/CTemplar/android/tree/fdroid
IssueTracker: https://github.com/CTemplar/android/issues
AutoName: CTemplar
RepoType: git
Repo: https://github.com/CTemplar/android.git
Builds:
- versi... | Update CTemplar to 1.2.7 (5) | Update CTemplar to 1.2.7 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
886f364c22e7296c11be96a7aeb5ccfa97250e01 | circle.yml | circle.yml | version: 2
jobs:
build:
working_directory: ~/voter-engagement
docker:
- image: maketested/python-node:latest
environment:
PIPENV_VENV_IN_PROJECT: true
PIPENV_NOSPIN: true
PIPENV_HIDE_EMOJIS: true
RANDOM_SEED: 0
- image: circleci/postgres:9.6-alpine... | version: 2
jobs:
build:
working_directory: ~/voter-engagement
docker:
- image: maketested/python-node:latest
environment:
PIPENV_VENV_IN_PROJECT: true
PIPENV_NOSPIN: true
PIPENV_HIDE_EMOJIS: true
RANDOM_SEED: 0
- image: circleci/postgres:9.6-alpine... | Disable frontend CI for now | Disable frontend CI for now
| YAML | mit | citizenlabsgr/voter-engagement,citizenlabsgr/voter-engagement,citizenlabsgr/voter-engagement,citizenlabsgr/voter-engagement,citizenlabsgr/voter-engagement |
aef6e5ec04e17ec9192b96739e2f69f46781e4f7 | circle.yml | circle.yml | machine:
node:
version: 4.3.1
dependencies:
post:
- npm install -g gulp-cli && gulp build
test:
override:
- npm run lint
general:
artifacts:
- "build"
- "data"
- "index.html"
| machine:
node:
version: 4.3.1
dependencies:
post:
- npm install -g gulp-cli && gulp build
test:
override:
- npm run lint
post:
- cp -R build data index.html $CIRCLE_ARTIFACTS
| Copy build files to $CIRCLE_ARTIFACTS to unconfuse Precog | Copy build files to $CIRCLE_ARTIFACTS to unconfuse Precog
| YAML | mit | tangrams/tangram-play,tangrams/tangram-play |
ab326a8659cc3b2ca970a75d6843056863ae32e4 | circle.yml | circle.yml | general:
artifacts:
- "dist"
machine:
services:
- docker
dependencies:
override:
- echo "Skipped"
test:
override:
- docker run -d -p 4001:4001 quay.io/coreos/etcd:v2.0.8
- nosetests -c nose.cfg --cover-html-dir=$CIRCLE_ARTIFACTS
- cd build_calicoctl && ./create_binary.sh
| general:
artifacts:
- "dist"
machine:
services:
- docker
test:
override:
- docker run -d -p 4001:4001 quay.io/coreos/etcd:v2.0.8
- nosetests -c nose.cfg --cover-html-dir=$CIRCLE_ARTIFACTS
- cd build_calicoctl && ./create_binary.sh
| Remove the skipping of deps | Remove the skipping of deps
| YAML | apache-2.0 | johscheuer/calico-docker,tomdee/calico-docker,alexhersh/calico-docker,frostynova/calico-docker,robbrockbank/calico-containers,dalanlan/calico-docker,johscheuer/calico-docker,TeaBough/calico-docker,tomdee/calico-docker,webwurst/calico-docker,caseydavenport/calico-containers,robbrockbank/calico-docker,TrimBiggs/calico-co... |
60ae81b41af5bff89781dadeb9563ef8381859d1 | circle.yml | circle.yml | machine:
node:
version: v4.2.2
deployment:
production:
branch: master
commands:
- npm run deploy
| machine:
node:
version: v6.3.0
deployment:
production:
branch: master
commands:
- npm run deploy
| Update CircleCI environment to Node v6.3.0. | Update CircleCI environment to Node v6.3.0.
| YAML | mit | interlockjs/www |
861e11a4de49f06149a5f5f28eea0c617ae5d083 | circle.yml | circle.yml | machine:
node:
version: 5.1.0
services:
- docker
dependencies:
cache_directories:
- "~/docker"
pre:
- npm install -g npm@3.5
- sudo apt-get install gcc-4.8 g++-4.8
override:
- docker info
- cp deploy/sample.config deploy/config
- cd deploy/circleCi && chmod 755 ensurePermissio... | machine:
node:
version: 5.1.0
services:
- docker
dependencies:
cache_directories:
- "~/docker"
pre:
- npm install -g npm@3.5
- sudo apt-get install gcc-4.8 g++-4.8
override:
- docker info
- cp deploy/sample.config deploy/config
- cd deploy/circleCi && chmod 755 ensurePermissio... | Correct save/cache script name for containers | Correct save/cache script name for containers
| YAML | apache-2.0 | AdaptiveConsulting/ReactiveTraderCloud,AdaptiveConsulting/ReactiveTraderCloud,AdaptiveConsulting/ReactiveTraderCloud,AdaptiveConsulting/ReactiveTraderCloud |
a9e435809e517414fba1d8b4e32b06365809efa7 | circle.yml | circle.yml | machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6.10.0
dependencies:
override:
- yarn
dependencies:
override:
- yarn
cache_directories:
- ~/.cache/yarn
test:
override:
- yarn test
| machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6.10.0
dependencies:
override:
- yarn
dependencies:
override:
- yarn
cache_directories:
- ~/.cache/yarn
test:
override:
- yarn test
- mocha test --reporter mocha-junit-rep... | Create test reports in CircleCI | CSRA-274: Create test reports in CircleCI
| YAML | mit | noms-digital-studio/csra-app,noms-digital-studio/csra-app,noms-digital-studio/csra-app |
82e1d9d5b5b1513a21557357ca2e5b767938c746 | packages/ec/ecta-plugin.yaml | packages/ec/ecta-plugin.yaml | homepage: ''
changelog-type: ''
hash: 343cd4873242553f4f01f309e7481eacc5989803d0d97f65b80224890aca0790
test-bench-deps: {}
maintainer: mpg@mpg.is
synopsis: Hole-Fit Synthesis using ECTAs
changelog: ''
basic-deps:
ghc: '>8.10 && <9'
base: '>=4 && <5'
text: '>1.2 && <=1.3'
ecta: '>=1.0 && <1.1'
containers: '>0.... | homepage: ''
changelog-type: ''
hash: 14eb4321c5495bf11abb2eaeed23d11e45b47e9f9567e7d545cae2a99dc19bb1
test-bench-deps: {}
maintainer: mpg@mpg.is
synopsis: Hole-Fit Synthesis using ECTAs
changelog: ''
basic-deps:
ghc: '>8.10 && <9'
base: '>=4 && <5'
text: '>1.2 && <=1.3'
ecta: '>=1.0 && <1.1'
containers: '>0.... | Update from Hackage at 2022-09-14T15:07:30Z | Update from Hackage at 2022-09-14T15:07:30Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
b90a435728641821e0b549b2daf2d096f3ca20bd | packages/em/empty-monad.yaml | packages/em/empty-monad.yaml | homepage: https://github.com/vadimvinnik/empty-monad
changelog-type: ''
hash: 6accbf16d0a53e412f45cf24853f2d7c370266c6a985534bdcd9b27f6704755f
test-bench-deps: {}
maintainer: vadim.vinnik@gmail.com
synopsis: A container that always has no values.
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
all-versions:
- '0.1.... | homepage: https://github.com/vadimvinnik/empty-monad
changelog-type: ''
hash: e26529fd435f6ae82ec553b9c19bcf36b0ea3579d6d10024cd7f6dabcb7913ac
test-bench-deps: {}
maintainer: vadim.vinnik@gmail.com
synopsis: A container that always has no values.
changelog: ''
basic-deps:
base: ! '>=4.8 && <5.0'
all-versions:
- '0.1.... | Update from Hackage at 2017-02-02T23:25:43Z | Update from Hackage at 2017-02-02T23:25:43Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
dacdf34f62859b2c229fda5166eeb51469a2333e | packages/pr/prune-juice.yaml | packages/pr/prune-juice.yaml | homepage: ''
changelog-type: ''
hash: c3840313eb9600ff76036bf9cacb5959b2ad22043c75f561bdb3d2adc680a667
test-bench-deps:
bytestring: -any
file-path-th: -any
base: <5.0
hspec: -any
text: -any
megaparsec: -any
filepath: -any
turtle: -any
containers: -any
mtl: -any
aeson: -any
yaml: -any
prune-jui... | homepage: ''
changelog-type: ''
hash: 4ee3255a3df4dd45b60437d5c9f7db288146cbbbd069fd6df182aaaec1deb720
test-bench-deps:
bytestring: -any
file-path-th: -any
base: <5.0
hspec: -any
text: -any
megaparsec: -any
filepath: -any
turtle: -any
containers: -any
mtl: -any
aeson: -any
yaml: -any
prune-jui... | Update from Hackage at 2021-03-08T05:03:31Z | Update from Hackage at 2021-03-08T05:03:31Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9ccf935043c5e33e43c70c0504c0297335d3c094 | playbooks/base-test/pre.yaml | playbooks/base-test/pre.yaml | - hosts: localhost
roles:
- role: emit-job-header
zuul_log_url: "http://logs.openstack.org"
- hosts: all
pre_tasks:
# NOTE(pabelanger): Until we hit the validate-host role, we have a minimal
# set of ansible variables collected by zuul-executor. This doesn't include
# network variables (ansib... | - hosts: localhost
roles:
- role: emit-job-header
zuul_log_url: "http://logs.openstack.org"
- hosts: all
pre_tasks:
# NOTE(pabelanger): Until we hit the validate-host role, we have a minimal
# set of ansible variables collected by zuul-executor. This doesn't include
# network variables (ansib... | Test workspace setup role changes | Test workspace setup role changes
This will test that the retries addition to the workspace setup role
works before we apply it to all jobs via the update to the non test
role.
Depends-On: https://review.openstack.org/608342
Change-Id: I8279e425024a4fdee858fc5b2d40d1262d3741de
| YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
a4b489eaae0a8b84f80d2d133e99b24d2775a675 | .conda-recipe/meta.yaml | .conda-recipe/meta.yaml | # source will be downloaded prior to filling in jinja templates
# Example assumes that this folder has setup.py in it
source:
git_url: ../
package:
name: dmf-control-board-firmware
{% if GIT_DESCRIBE_NUMBER > '0' %}
version: {{ GIT_DESCRIBE_TAG[1:] }}.post{{ GIT_DESCRIBE_NUMBER }}
{% else %}
version: {{ GIT_DE... | # source will be downloaded prior to filling in jinja templates
# Example assumes that this folder has setup.py in it
source:
git_url: ../
package:
name: dmf-control-board-firmware
{% if GIT_DESCRIBE_NUMBER > '0' %}
version: {{ GIT_DESCRIBE_TAG[1:] }}.post{{ GIT_DESCRIBE_NUMBER }}
{% else %}
version: {{ GIT_DE... | Add conda-helpers>=0.4 as run-time dependency | Add conda-helpers>=0.4 as run-time dependency
| YAML | bsd-3-clause | wheeler-microfluidics/dmf-control-board-firmware,wheeler-microfluidics/dmf-control-board-firmware,wheeler-microfluidics/dmf-control-board-firmware,wheeler-microfluidics/dmf-control-board-firmware |
783ad055b3fbd73c1cb53bfa7cd553ec9dbbcce1 | .dependabot/config.yaml | .dependabot/config.yaml | version: 1
update_configs:
- package_manager: php:composer
directory: "/"
update_schedule: daily
ignored_updates:
- match:
dependency_name: "symfony/*"
automerged_updates:
- match:
dependency_name: "elasticsearch/elasticsearch"
update_type: "semver:minor"
... | version: 1
update_configs:
- package_manager: php:composer
directory: "/"
update_schedule: daily
ignored_updates:
- match:
dependency_name: "symfony/*"
automerged_updates:
- match:
dependency_name: "elasticsearch/elasticsearch"
update_type: "semver:minor"
... | Add dependency management for action versions | Add dependency management for action versions
This will update the workflows we have with actions dependencies when
those dependencies are updated.
| YAML | mit | stopfstedt/ilios,Trott/ilios,dartajax/ilios,ilios/ilios,stopfstedt/ilios,thecoolestguy/ilios,Trott/ilios,dartajax/ilios,ilios/ilios,thecoolestguy/ilios |
d781b30934b727897c8e2d992e0497e1d9dc3452 | .pre-commit-config.yaml | .pre-commit-config.yaml | default_language_version:
python: python3
repos:
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
- repo: https://github.com/python-poetry/poetry
rev: '1.2.2'
hooks:
- id: poetry-check
# Since poetry-lock... | default_language_version:
python: python3
repos:
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
- repo: https://github.com/python-poetry/poetry
rev: '1.2.2'
hooks:
- id: poetry-check
- id: poetry-lock
... | Remove poetry lock from the pre-commit hooks as it can take a long time in certain instances. | Remove poetry lock from the pre-commit hooks as it can take a long time in certain instances.
| YAML | mit | Flexget/Flexget,Flexget/Flexget,Flexget/Flexget,Flexget/Flexget |
1d1318f2a46764191284218a3f3e7e01537c1685 | .github/workflows/commit.yaml | .github/workflows/commit.yaml | ---
name: build
on: [push, pull_request]
jobs:
std_tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
... | ---
name: build
on: [push, pull_request]
jobs:
std_tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
... | Fix directory name for test | Fix directory name for test
| YAML | apache-2.0 | spotify/napalm,spotify/napalm,napalm-automation/napalm |
d546a43e803203f6d8bc949902a37452a0bfe361 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Run a one-line script
run: echo Hello, world!
| name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.6"
- name: Run a one-line script
... | Print message through configured Python | Print message through configured Python
| YAML | apache-2.0 | svunit/svunit,svunit/svunit,svunit/svunit |
fd6d5eb4fb7c38e67bf712743cac8e1105df102e | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
test:
name: Rust ${{matrix.rust}} on ${{matrix.os}}
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.31.0]
os: [ubuntu, macos, windows]
steps:
... | name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
test:
name: Rust ${{matrix.rust}} on ${{matrix.os}}
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.34.0]
os: [ubuntu, macos, windows]
steps:
... | Raise min tested rustc version to 1.34 | Raise min tested rustc version to 1.34
Required by use of str::split_ascii_whitespace in the cc crate.
error[E0658]: use of unstable library feature 'split_ascii_whitespace' (see issue #48656)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.62/src/lib.rs:2157:14
|
2157 | ... | YAML | apache-2.0 | dtolnay/link-cplusplus |
5f2aee8fcf7fb6bcf6b5af793cd9fc62d73052e7 | .github/workflows/ci.yml | .github/workflows/ci.yml | ---
name: CI
'on':
pull_request:
push:
branches:
- master
jobs:
test:
name: Molecule
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- centos8
- debian10
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
- name: Se... | ---
name: CI
'on':
pull_request:
push:
branches:
- master
jobs:
test:
name: Molecule
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- centos8
- debian10
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
- name: Se... | Test if molecule[docker] works correctly. | Test if molecule[docker] works correctly.
| YAML | mit | geerlingguy/ansible-for-devops,geerlingguy/ansible-for-devops,geerlingguy/ansible-for-devops,geerlingguy/ansible-for-devops,geerlingguy/ansible-for-devops |
432744a177f636cfa5ce9202292ff12cfd9b9359 | .github/workflows/ci.yml | .github/workflows/ci.yml | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
pull_request:
branches: [ master ]
... | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
pull_request:
branches: [ master ]
... | Add npm upgrade step to CI workflow | Chore: Add npm upgrade step to CI workflow
| YAML | mit | platinumazure/eslint-plugin-qunit |
bb8d2b230f746c337776be3f82e495edb12143f0 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version... | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version... | Switch from testing on Node 12/14 to 14/16 | Switch from testing on Node 12/14 to 14/16
| YAML | mit | dottorblaster/stocazzo,dottorblaster/stocazzo |
c6708dea5975e26bd7a31c4259abe6ad8c773f89 | .github/workflows/release.yml | .github/workflows/release.yml | name: Build, Test, and Publish on release
on:
release:
types: [published]
branches: [master]
jobs:
build:
name: Build, test and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: 10
registry-url: '... | name: Build, Test, and Publish on release
on:
release:
types: [published]
branches: [main]
jobs:
build:
name: Build, test and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: 10
registry-url: 'ht... | Set main as default branch (patch) | Set main as default branch (patch)
| YAML | mit | zrrrzzt/ssb |
546ef0ce09f8e8aebc7972ccacb6128d7087a26f | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
branches:
- master
- 'v*' # older version branches
tags:
- '*'
pull_request: {}
schedule:
- cron: '0 6 * * 0' # weekly, on sundays
jobs:
test:
name: "Node ${{ matrix.node }} - ${{ matrix.os }}"
runs-on: ubuntu-latest
strategy:
matrix:
... | name: CI
on:
push:
branches:
- master
- 'v*' # older version branches
tags:
- '*'
pull_request: {}
schedule:
- cron: '0 6 * * 0' # weekly, on sundays
jobs:
test:
name: "Node ${{ matrix.node }} - ${{ matrix.os }}"
runs-on: "${{ matrix.os }}-latest"
strategy:
matr... | Add Windows test runs to GitHub Actions CI | Add Windows test runs to GitHub Actions CI
| YAML | mit | tildeio/broccoli-typescript-compiler,tildeio/broccoli-typescript-compiler |
e31011f5c1947122957a319c297f2177aa62ecd7 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: "CI"
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
- run: chmod +x gradlew
- run: ./gradlew check --stacktrace
deploy:
needs: build
runs-on: ubuntu-... | name: "CI"
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
- run: chmod +x gradlew
- run: ./gradlew check --stacktrace
deploy:
needs: build
runs-on: ubuntu-... | Test running Liquibase only on deploy | Test running Liquibase only on deploy
| YAML | apache-2.0 | traintracker/traintracker,traintracker/traintracker,traintracker/traintracker |
e298d3a3b876b8134f651e38bd84eaec148f2542 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push, pull_request]
jobs:
macOS:
name: Test on macOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Show environments
run: |
swift --version
xcodebuild -version
- name: Lint Swift
run: |
swiftlint
- name: Build & test Sw... | name: CI
on: [push, pull_request]
jobs:
macOS:
name: Test on macOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Show environments
run: |
swift --version
xcodebuild -version
- name: Lint Swift
run: |
swiftlint
- name: Build & test Sw... | Remove deprecated option in CI | Remove deprecated option in CI
| YAML | mit | 1024jp/GzipSwift,1024jp/GzipSwift,1024jp/GzipSwift |
da7578cbf11701df47423de19fc5060041b46843 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push, pull_request]
jobs:
Tests:
runs-on: ${{ matrix.os }}
timeout-minutes: 6
strategy:
matrix:
node-version: [8, 10, 12, 14]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
... | name: CI
on: [push, pull_request]
jobs:
Tests:
runs-on: ${{ matrix.os }}
timeout-minutes: 6
strategy:
matrix:
node-version: [8, 10, 12, 14]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
... | Increase timeout for unit tests | Increase timeout for unit tests
Mac build randomly takes between 1 minute + 4 minutes, so this stops it getting cancelled. | YAML | mit | sveltejs/svelte,sveltejs/svelte |
1229ffc7ae69f2b95c812993506522a0e7cd54e2 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Java CI
on:
pull_request:
branches:
- latest
push:
branches:
- latest
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ '8', '11', '12', '13', '14', '15', '16', '17',... | name: Java CI
on:
pull_request:
branches:
- latest
push:
branches:
- latest
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ '8', '11', '12', '13', '14', '15', '16', '17',... | Bump actions/setup-java from 2 to 3 | Bump actions/setup-java from 2 to 3
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/setup-java
depe... | YAML | mit | lukehutch/fast-classpath-scanner,lukehutch/fast-classpath-scanner,classgraph/classgraph |
fa5e57d33492419083f1c6268cf71abcef2ff9d6 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
branches-ignore:
- 'wip-*'
pull_request:
branches:
- main
release:
types: [released]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16'
... | name: CI
on:
push:
branches-ignore:
- 'wip-*'
pull_request:
branches:
- main
release:
types: [released]
workflow_dispatch:
inputs:
deploy:
required: false
type: boolean
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
-... | Add input for manual deployment | Add input for manual deployment
| YAML | mit | cocopon/tweakpane,cocopon/tweakpane,cocopon/tweakpane |
8e17fb30e9af4da96380937f320446d295162a0e | .semaphore/semaphore.yml | .semaphore/semaphore.yml | version: v1.0
name: Tests
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
execution_time_limit:
minutes: 4
blocks:
- name: Lint
task:
prologue:
commands:
- sem-version node 8.16.1
- checkout
- npm ci
jobs:
- name: Execu... | version: v1.0
name: Tests
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
execution_time_limit:
minutes: 4
auto_cancel:
running:
when: 'true'
blocks:
- name: Lint
task:
prologue:
commands:
- sem-version node 8.16.1
- checkout
... | Add "auto-cancel" policy on test pipeline | Add "auto-cancel" policy on test pipeline | YAML | mit | botfactoryit/terremotibot |
83ff2f22dae324a983cc4845b00900b08cdac3d9 | puppet/services/certmonger-user.yaml | puppet/services/certmonger-user.yaml | heat_template_version: pike
description: >
Requests certificates using certmonger through Puppet
parameters:
ServiceNetMap:
default: {}
description: Mapping of service_name -> network name. Typically set
via parameter_defaults in the resource registry. This
mapping overr... | heat_template_version: pike
description: >
Requests certificates using certmonger through Puppet
parameters:
ServiceNetMap:
default: {}
description: Mapping of service_name -> network name. Typically set
via parameter_defaults in the resource registry. This
mapping overr... | Configure CRL URI if TLS in the internal network is enabled | Configure CRL URI if TLS in the internal network is enabled
This uses by default the URL for the CRL provided by FreeIPA (the
default CA in TripleO).
bp tls-via-certmonger
Depends-On: I38e163e8ebb80ea5f79cfb8df44a71fdcd284e04
Change-Id: I87001388f300f3decb3b74bc037fff9d3b3ccdc2
| YAML | apache-2.0 | dprince/tripleo-heat-templates,openstack/tripleo-heat-templates,openstack/tripleo-heat-templates,dprince/tripleo-heat-templates |
1bf989d138ecc380294efeab22177f503a26d5bf | packages/bu/buffon.yaml | packages/bu/buffon.yaml | homepage: https://github.com/derekelkins/buffon
changelog-type: ''
hash: 072148f21ef4c96089e381056efde23925fde97bcab072cfa451c6dc387f50d4
test-bench-deps: {}
maintainer: derek.a.elkins+github@gmail.com
synopsis: An implementation of Buffon machines.
changelog: ''
basic-deps:
mwc-random: ! '>=0.13 && <0.14'
base: ! ... | homepage: https://github.com/derekelkins/buffon
changelog-type: ''
hash: d86b3711b5753fcd0e352d8471b3bed94b7a5c4b9c217cdf3087ec21425b2e8e
test-bench-deps: {}
maintainer: derek.a.elkins+github@gmail.com
synopsis: An implementation of Buffon machines.
changelog: ''
basic-deps:
mwc-random: ! '>=0.13 && <0.14'
base: ! ... | Update from Hackage at 2018-03-26T09:55:18Z | Update from Hackage at 2018-03-26T09:55:18Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
bdb8b095058d32ffadb7407f4a8769f3d18347da | packages/ha/halive.yaml | packages/ha/halive.yaml | homepage: https://github.com/lukexi/halive
changelog-type: ''
hash: 5356bbeef99a802b1a47976a3080ed49ba58af3e29189a9a23a6cfd7730b8155
test-bench-deps: {}
maintainer: lukexi@me.com
synopsis: A live recompiler
changelog: ''
basic-deps:
foreign-store: -any
ghc: -any
base: ! '>=4.7 && <4.9'
filepath: -any
bin-pack... | homepage: https://github.com/lukexi/halive
changelog-type: ''
hash: eb063f3dbf75e6b73e0234a1c7b0f217bd9ad1250075dd30f9cc4a3764e057d0
test-bench-deps: {}
maintainer: lukexi@me.com
synopsis: A live recompiler
changelog: ''
basic-deps:
foreign-store: -any
ghc: -any
base: ==4.8.*
filepath: -any
bin-package-db: -a... | Update from Hackage at 2015-06-27T23:21:19+0000 | Update from Hackage at 2015-06-27T23:21:19+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
6c5173cbecd20cbcdd3c289ca9c8bdd695246390 | recipes/jupyterlab_widgets/meta.yaml | recipes/jupyterlab_widgets/meta.yaml | {% set version = "1.0.0a3" %}
{% set sha256 = "6cf804fed4f4ee33d486948e21c9a8fc6a4bccf78cdf79d0b7fdab5ae87c5447" %}
package:
name: jupyterlab_widgets
version: {{ version }}
source:
url: https://pypi.io/packages/source/j/jupyterlab_widgets/jupyterlab_widgets-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
n... | {% set version = "1.0.0a3" %}
{% set sha256 = "6cf804fed4f4ee33d486948e21c9a8fc6a4bccf78cdf79d0b7fdab5ae87c5447" %}
package:
name: jupyterlab_widgets
version: {{ version }}
source:
url: https://pypi.io/packages/source/j/jupyterlab_widgets/jupyterlab_widgets-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
n... | Add nodejs to build requirements | Add nodejs to build requirements
| YAML | bsd-3-clause | scopatz/staged-recipes,ocefpaf/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,chrisburr/staged-recipes,jakirkham/staged-recipes,igortg/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,scopatz/staged-recipes,conda-forge/stage... |
e9c8c71fc75b4c50e191640063a443136d4b4415 | recipes/pysingular/meta.yaml | recipes/pysingular/meta.yaml | {% set name = "PySingular" %}
{% set version = "0.9.7" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ca03d1d7538fc61f4350acff42708c6c443e0232712a2dc42ce72140831ef60c
build:
number: 0
... | {% set name = "PySingular" %}
{% set version = "0.9.7" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ca03d1d7538fc61f4350acff42708c6c443e0232712a2dc42ce72140831ef60c
build:
number: 0
... | Use singular 4.1.1 for now | Use singular 4.1.1 for now
| YAML | bsd-3-clause | dschreij/staged-recipes,conda-forge/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,asmeurer/staged-recipes,ocefpaf/staged-recipes,chrisburr/staged-recipes,synapticarbors/staged-recipes,goanpeca/staged-recipes,petrushy/staged-rec... |
fa8817057d6f7e93b73c19a33e2f43d9fdf538bf | recipes/watchfiles/meta.yaml | recipes/watchfiles/meta.yaml | {% set name = "watchfiles" %}
{% set version = "0.12" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 962aa5fcc212fe4d838f9b28fcf70b6a5c850930fc4d389f444edb821d264110
build:
number: 0
... | {% set name = "watchfiles" %}
{% set version = "0.12" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 962aa5fcc212fe4d838f9b28fcf70b6a5c850930fc4d389f444edb821d264110
build:
number: 0
... | Add rust compiler to build requirements, remove noarch: python | Add rust compiler to build requirements, remove noarch: python
| YAML | bsd-3-clause | jakirkham/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes |
ae521c29f94b609536d6ef9e0e10308b222c8651 | roles/signalk/tasks/main.yml | roles/signalk/tasks/main.yml | # Copyright 2016 Teppo Kurki <teppo.kurki@iki.fi>
#
# 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... | # Copyright 2016 Teppo Kurki <teppo.kurki@iki.fi>
#
# 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... | Copy SignalK settings from local file if “signalk_settings_file” is defined | Copy SignalK settings from local file if “signalk_settings_file” is defined
NOTE! By default the copied file is not used! Use SIGNALK_NODE_SETTINGS
environment variable to take it into use. For example:
- role: signalk
signalk_settings_file: signalk-settings-freya.json
node_app_env:
- "NODE_ENV=produc... | YAML | apache-2.0 | tkurki/marinepi-provisioning |
fd5558b36480903de0032a57fedd4847eaeee4e7 | roles/percona-arbiter/tasks/main.yml | roles/percona-arbiter/tasks/main.yml | ---
- name: try to stop old garbd service
service: name=garbd state=stopped enabled=false pattern=/usr/bin/garbd
failed_when: False
- name: make garbd log
copy: dest=/var/log/garbd.log owner=nobody content='' force=no
# the arbiter node only needs the garbd daemon
- name: install percona garbd package
apt: pk... | ---
- name: try to stop old garbd service
service: name=garbd state=stopped enabled=false pattern=/usr/bin/garbd
failed_when: False
- name: make garbd log
copy: dest=/var/log/garbd.log owner=nobody content='' force=no
- name: galera data dir
file:
path: /var/lib/galera
owner: nobody
state: directo... | Create directory for garbd data | Create directory for garbd data
This directory appears to be needed now, as nobody owner so that data
can be written into it.
| YAML | mit | panxia6679/ursula,rongzhus/ursula,masteinhauser/ursula,pgraziano/ursula,nirajdp76/ursula,zrs233/ursula,dlundquist/ursula,dlundquist/ursula,wupeiran/ursula,lihkin213/ursula,ddaskal/ursula,nirajdp76/ursula,twaldrop/ursula,sivakom/ursula,panxia6679/ursula,pgraziano/ursula,blueboxgroup/ursula,ryshah/ursula,edtubillara/ursu... |
bc4cec86257d730e179d30e5591e74faf1fed983 | recipes/ecole/meta.yaml | recipes/ecole/meta.yaml | {% set version = "0.5.0" %}
package:
name: ecole
version: {{ version }}
source:
url: https://github.com/ds4dm/ecole/archive/v{{ version }}.tar.gz
sha256: b127d7871c0f6b2cd9854a1e6cdcc715177b52aba4c44666c5a57f5385d86a19
build:
number: 0
skip: True # [win]
requirements:
build:
- {{ compiler('cxx') ... | {% set version = "0.5.0" %}
package:
name: ecole
version: {{ version }}
source:
url: https://github.com/ds4dm/ecole/archive/v{{ version }}.tar.gz
sha256: b127d7871c0f6b2cd9854a1e6cdcc715177b52aba4c44666c5a57f5385d86a19
build:
number: 0
skip: True # [win]
requirements:
build:
- {{ compiler('cxx') ... | Add about information to Ecole recipe | Add about information to Ecole recipe
| YAML | bsd-3-clause | ocefpaf/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,scopatz/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,scopatz/staged-recipes,ReimarBauer/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,j... |
1563de52a9eb31c96961153ca49159646dd4f4fe | recipes/pbbam/meta.yaml | recipes/pbbam/meta.yaml | {% set name = "pbbam" %}
{% set version = "0.1" %}
package:
name: {{ name }}
version: {{ version }}
build:
number: 0
skip: False
string: boost{{CONDA_BOOST}}_{{PKG_BUILDNUM}}
source:
git_url: https://github.com/PacificBiosciences/{{ name }}.git
git_rev: 928605a86ac024aced821fe4a4bce0b43d5ee680
req... | {% set name = "pbbam" %}
{% set version = "0.1" %}
package:
name: {{ name }}
version: {{ version }}
build:
number: 0
skip: False
string: boost{{CONDA_BOOST}}_{{PKG_BUILDNUM}}
source:
git_url: https://github.com/PacificBiosciences/{{ name }}.git
git_rev: 928605a86ac024aced821fe4a4bce0b43d5ee680
req... | Add zlib as run dependency | Add zlib as run dependency
| YAML | mit | bow/bioconda-recipes,JenCabral/bioconda-recipes,HassanAmr/bioconda-recipes,cokelaer/bioconda-recipes,mdehollander/bioconda-recipes,omicsnut/bioconda-recipes,pinguinkiste/bioconda-recipes,phac-nml/bioconda-recipes,omicsnut/bioconda-recipes,lpantano/recipes,jfallmann/bioconda-recipes,HassanAmr/bioconda-recipes,bow/biocon... |
68d7e2ab3ba87845952f39cff217a5ceacfef6cf | config/sidekiq.yml | config/sidekiq.yml | ---
:queues:
- default
- mailers
- load_testing
- zendesk
| ---
:concurrency: <%= ENV.fetch('RAILS_MAX_THREADS') { 5 } %>
:queues:
- default
- mailers
- load_testing
- zendesk
| Set Sidekiq pool to 'Rails Max Threads' | Set Sidekiq pool to 'Rails Max Threads'
| YAML | mit | ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2 |
a89b0825d8fdee31e11ae4e1419ffb79ffa298ce | app/email_domains.yml | app/email_domains.yml | ---
- gov.uk
- mod.uk
- mil.uk
- ddc-mod.org
- slc.co.uk
- gov.scot
- parliament.uk
- nhs.uk
- nhs.net
- police.uk
- dclgdatamart.co.uk
- ucds.email
- naturalengland.org.uk
- hmcts.net
- scotent.co.uk
- assembly.wales
- cjsm.net
- cqc.org.uk
- bl.uk
- stfc.ac.uk
- wmfs.net
- bbsrc.ac.uk
- acas.org.uk
- gov.wales
- bigl... | ---
- gov.uk
- mod.uk
- mil.uk
- ddc-mod.org
- slc.co.uk
- gov.scot
- parliament.scot
- parliament.uk
- nhs.uk
- nhs.net
- police.uk
- dclgdatamart.co.uk
- ucds.email
- naturalengland.org.uk
- hmcts.net
- scotent.co.uk
- assembly.wales
- cjsm.net
- cqc.org.uk
- bl.uk
- stfc.ac.uk
- wmfs.net
- bbsrc.ac.uk
- acas.org.uk
... | Add Scottish Parliament to list of government email addresses | Add Scottish Parliament to list of government email addresses
We have the Welsh and UK parliaments already.
Northern Ireland’s devolved legislature use `niassembly.gov.uk`, so they’re covered by virtue of their domain ending in .gov.uk | YAML | mit | alphagov/notifications-admin,alphagov/notifications-admin,alphagov/notifications-admin,alphagov/notifications-admin |
9ca189fdda6c94b60fd0e2cd89db1f88f83b554c | hack/deploy/admission/rbac-list.yaml | hack/deploy/admission/rbac-list.yaml | # to read the config for terminating authentication
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: RoleBinding
metadata:
name: searchlight-admission-webhook-extension-server-authentication-reader
namespace: kube-system
roleRef:
kind: Role
apiGroup: rbac.authorization.k8s.io
name: extension-apiserver-auth... | # to read the config for terminating authentication
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: RoleBinding
metadata:
name: searchlight-admission-webhook-extension-server-authentication-reader
namespace: kube-system
roleRef:
kind: Role
apiGroup: rbac.authorization.k8s.io
name: extension-apiserver-auth... | Remove system prefix from webhook cluster role | Remove system prefix from webhook cluster role
| YAML | apache-2.0 | searchlight/searchlight,searchlight/searchlight,searchlight/searchlight,appscode/searchlight,searchlight/searchlight,appscode/searchlight,appscode/searchlight,appscode/searchlight |
4552a976e0a5d6fe675af8a62cb236d5b2d5d595 | docker-compose.yml | docker-compose.yml | version: '2'
services:
tests:
image: buildkite/plugin-tester:latest@sha256:973f078d7d648c88cd211dbaf6edcd17bd18778a6fda0aa9e00a7cf8fba32006
volumes:
- ".:/plugin"
| version: '2'
services:
tests:
image: buildkite/plugin-tester:latest@sha256:a784b49bb241291feb47b578a2cb58938d3565dff5b0f6d9bf627036cbd7f419
volumes:
- ".:/plugin"
| Update buildkite/plugin-tester:latest Docker digest to a784b4 | Update buildkite/plugin-tester:latest Docker digest to a784b4 | YAML | mit | buildkite/docker-compose-buildkite-plugin,buildkite-plugins/docker-compose-buildkite-plugin,buildkite-plugins/docker-compose |
e1618b75b636f517e29e2af875fb8dd2be97963d | .appveyor.yml | .appveyor.yml | version: '{branch}-{build}'
init:
- cmd: git config --global core.autocrlf true
before_build:
- cmd: >-
git submodule update --init --recursive
nuget restore CSF.Screenplay.sln
copy /y Tests\CSF.Screenplay.Web.Tests\App.config.AppVeyor Tests\CSF.Screenplay.Web.Tests\App.config
services:
- ii... | version: '{branch}-{build}'
init:
- cmd: git config --global core.autocrlf true
before_build:
- cmd: >-
git submodule update --init --recursive
nuget restore CSF.Screenplay.sln
copy /y Tests\CSF.Screenplay.Web.Tests\App.config.AppVeyor Tests\CSF.Screenplay.Web.Tests\App.config
services:
- ii... | Change the way Screenplay reports are displayed (not artifacts) | Change the way Screenplay reports are displayed (not artifacts)
| YAML | mit | csf-dev/CSF.Screenplay,csf-dev/CSF.Screenplay,csf-dev/CSF.Screenplay |
ced9aebfe5185d7acb0a6b69465a3bf71bc74a4d | .appveyor.yml | .appveyor.yml | version: 0.0.{build}-{branch}
image: Visual Studio 2017
shallow_clone: true
environment:
matrix:
- CONFIG: Release
RENDERER: Null
- CONFIG: Debug
RENDERER: Null
- CONFIG: Release
RENDERER: OpenGL
- CONFIG: Debug
RENDERER: OpenGL
install:
- cmd: |
set PREFIX_DIR=%APPVE... | version: 0.0.{build}-{branch}
image: Visual Studio 2017
shallow_clone: true
environment:
matrix:
- CONFIG: Release
RENDERER: Null
- CONFIG: Debug
RENDERER: Null
- CONFIG: Release
RENDERER: OpenGL
- CONFIG: Debug
RENDERER: OpenGL
cache:
- _3rdparty\.cache
install:
- cmd: ... | Save bootstrapper cache on AppVeyor | Save bootstrapper cache on AppVeyor
| YAML | apache-2.0 | blagodarin/yttrium,blagodarin/yttrium |
3c22c38ff506bfb9ffc7456c65c5492f8d59fb96 | .fixtures.yml | .fixtures.yml | fixtures:
repositories:
"stdlib": "git://github.com/puppetlabs/puppetlabs-stdlib.git"
symlinks:
"python": "#{source_dir}"
| fixtures:
repositories:
stdlib: "git://github.com/puppetlabs/puppetlabs-stdlib.git"
symlinks:
python: "#{source_dir}"
| Fix some quotes which are unnecessary according to Puppet Labs | Fix some quotes which are unnecessary according to Puppet Labs
| YAML | apache-2.0 | ody/puppet-python,xaque208/puppet-python,stankevich/puppet-python,skpy/puppet-python,skpy/puppet-python,ghoneycutt/puppet-python,vicinus/puppet-python,ghoneycutt/puppet-python,vmfarms/puppet-python,xaque208/puppet-python,stankevich/puppet-python,vmfarms/puppet-python,ody/puppet-python,vicinus/puppet-python,xaque208/pup... |
accef1a9b72b03e02592ac1bc08b0ad97bd85875 | .appveyor.yml | .appveyor.yml | environment:
matrix:
- TOXENV: py27-pip8
- TOXENV: py27-pip8.1.1
- TOXENV: py27-pip9
- TOXENV: py27-piplatest
- TOXENV: py34-pip8
- TOXENV: py34-pip8.1.1
- TOXENV: py34-pip9
- TOXENV: py34-piplatest
- TOXENV: py35-pip8
- TOXENV: py35-p... | environment:
matrix:
- TOXENV: py27-pip8
- TOXENV: py27-pip8.1.1
- TOXENV: py27-pip9
- TOXENV: py27-piplatest
- TOXENV: py34-pip8
- TOXENV: py34-pip8.1.1
- TOXENV: py34-pip9
- TOXENV: py34-piplatest
- TOXENV: py35-pip8
- TOXENV: py35-p... | Remove unsupported PyPy from AppVeyor build matrix | Remove unsupported PyPy from AppVeyor build matrix
| YAML | bsd-2-clause | suutari-ai/prequ,suutari/prequ,suutari/prequ |
f5094c35d387a0bab51c4caa876cc365732b867a | .appveyor.yml | .appveyor.yml | version: "{branch}-ci-{build}"
image: Visual Studio 2019
branches:
only:
- master
platform:
- mingw32
- mingw64
install:
- set PATH=C:\msys64\%platform%;C:\msys64\%platform%\bin;C:\projects\deps\ninja;C:\Libraries\boost_1_73_0;%PATH%
before_build:
- git submodule update --init
build_script:
- mkdir build &... | version: "{branch}-ci-{build}"
image: Visual Studio 2019
branches:
only:
- main
platform:
- mingw32
- mingw64
install:
- set PATH=C:\msys64\%platform%;C:\msys64\%platform%\bin;C:\projects\deps\ninja;C:\Libraries\boost_1_73_0;%PATH%
before_build:
- git submodule update --init
build_script:
- mkdir build && ... | Update branch name on AppVeyor | Update branch name on AppVeyor | YAML | mit | MIPT-ILab/mipt-mips,MIPT-ILab/mipt-mips,MIPT-ILab/mipt-mips-2015,MIPT-ILab/mipt-mips-2015,MIPT-ILab/mipt-mips-2015,MIPT-ILab/mipt-mips-2015 |
b76563e8546f60c5b453345426325b5e5cd89dd9 | .appveyor.yml | .appveyor.yml | version: '{build}'
only_commits:
files:
- CMakeLists.txt
- appveyor.yml
- include/
- tests/
image:
- Visual Studio 2017
- Visual Studio 2019
configuration:
- Release
- Debug
platform:
- x64
init:
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" ( set generator="Visual Studio 16 2019" )
- if "%A... | version: '{build}'
only_commits:
files:
- CMakeLists.txt
- appveyor.yml
- include/
- tests/
image:
- Visual Studio 2017
- Visual Studio 2019
configuration:
- Release
- Debug
platform:
- x64
init:
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" ( set generator="Visual Studio 16 2019" )
- if "%A... | Remove Win64 from generation and add configuration to build command | Remove Win64 from generation and add configuration to build command
| YAML | mit | tinfoilboy/CTML |
8f211c88a8e5f08f28614cd736d5b7ad5af9d78a | .appveyor.yml | .appveyor.yml | environment:
matrix:
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-msvc
- TARGET: x86_64-pc-windows-gnu
- TARGET: i686-pc-windows-gnu
install:
- cinst openssl.light
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe" -FileName "rust-nightly.exe"
- ps:... | environment:
matrix:
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-msvc
- TARGET: x86_64-pc-windows-gnu
- TARGET: i686-pc-windows-gnu
install:
- cinst openssl.light
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe" -FileName "rust-nightly.exe"
- ps:... | Add OpenSSL path to windows build | Add OpenSSL path to windows build
| YAML | mit | amousset/rust-smtp,lettre/lettre,cloudvlts/lettre,amousset/lettre,amousset/lettre |
67ae89345e5479bb76b8cc7a0c309c03ca088721 | .golangci.yml | .golangci.yml | run:
timeout: 10m
linters-settings:
goimports:
local-prefixes: vitess.io/vitess
linters:
disable-all: true
enable:
# Defaults
- deadcode
# - errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- structcheck
- typecheck
- varcheck
# Extras
- gofmt
- ... | run:
timeout: 10m
linters-settings:
goimports:
local-prefixes: vitess.io/vitess
linters:
disable-all: true
enable:
# Defaults
- deadcode
# - errcheck
- gosimple
- govet
- ineffassign
- staticcheck
- structcheck
- typecheck
- varcheck
# Extras
- gofmt
- ... | Exclude protoc-gen-go generated files from the linter goimports check | Exclude protoc-gen-go generated files from the linter goimports check
Signed-off-by: Andrew Mason <8a240ff75aa1467ba5eba4db0c8200b61262547e@slack-corp.com>
| YAML | apache-2.0 | tinyspeck/vitess,vitessio/vitess,vitessio/vitess,mahak/vitess,mahak/vitess,vitessio/vitess,mahak/vitess,mahak/vitess,mahak/vitess,vitessio/vitess,tinyspeck/vitess,tinyspeck/vitess,mahak/vitess,tinyspeck/vitess,vitessio/vitess,mahak/vitess,vitessio/vitess,tinyspeck/vitess,vitessio/vitess,tinyspeck/vitess,tinyspeck/vites... |
d799353dcf08e2a789e60ccb3ddfd412a387f011 | config/sidekiq.yml | config/sidekiq.yml | ---
:concurrency: 15
:pidfile: tmp/pids/morph-worker-1.pid
:queues:
- default
- scraper
:limits:
scraper: 10
| ---
:concurrency: 20
:pidfile: tmp/pids/morph-worker-1.pid
:queues:
- default
- scraper
:limits:
scraper: 15
| Increase the scraper queue size from 10 to 15 | Increase the scraper queue size from 10 to 15
We've currently got a lot of scrapers that are taking a long time to
finish and this means we have quite a backlog of scraper runs.
This is a small increase that we can easily cater for with our current
server resources to see if it alleviates the problem.
| YAML | agpl-3.0 | openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph |
c35b5b5a8c2bdfc3d04dd82641657f54e5caa62e | data/hostname/storage0.euwest.azure.internal.softwareheritage.org.yaml | data/hostname/storage0.euwest.azure.internal.softwareheritage.org.yaml | swh::deploy::storage::backend::listen::host: 0.0.0.0
swh::deploy::storage::backend::workers: 96
swh::deploy::storage::db::host: somerset.internal.softwareheritage.org
swh::deploy::storage::db::port: 5433
swh::deploy::objstorage::config: "%{alias('swh::remote_service::objstorage::config::azure_readonly_with_fallback')... | swh::deploy::storage::backend::listen::host: 0.0.0.0
swh::deploy::storage::backend::workers: 96
swh::deploy::storage::db::host: dbreplica0.euwest.azure.internal.softwareheritage.org
swh::deploy::storage::db::port: 5433
swh::deploy::objstorage::config: "%{alias('swh::remote_service::objstorage::config::azure_readonly_... | Revert "storage0: Switch database back to somerset" | Revert "storage0: Switch database back to somerset"
This reverts commit aa443628b1104094fa4318e93e4bb684c875867f.
| YAML | apache-2.0 | SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site |
f97713a75c7eb0604c5cfec5826e727ae0ed9bf2 | config/kubernetes/wg-structured-logging/teams.yaml | config/kubernetes/wg-structured-logging/teams.yaml | teams:
wg-structured-logging-leads:
description: ""
members:
- serathius
- shubheksha
privacy: closed
wg-structured-logging-members:
description: ""
members:
- Priyankasaggu11929
- yangjunmyfm192085
privacy: closed
wg-structured-logging-reviews:
description: ""
... | teams:
wg-structured-logging-leads:
description: ""
members:
- serathius
- shubheksha
privacy: closed
wg-structured-logging-members:
description: ""
members:
- Priyankasaggu11929
- serathius
- shubheksha
- yangjunmyfm192085
privacy: closed
wg-structured-... | Add leads to members and reviewers | Add leads to members and reviewers | YAML | apache-2.0 | kubernetes/org,kubernetes/org,kubernetes/org |
e64bb5dbd82552b42707d48ca2c021ed595ce845 | deploy/appspec.yml | deploy/appspec.yml | version: 0.0
os: linux
files:
- source: /
destination: /srv/openregister-java
hooks:
ApplicationStop:
- location: scripts/stop-service.sh
timeout: 60
runas: root
AfterInstall:
- location: scripts/change_permissions.sh
timeout: 30
runas: root
ApplicationStart:
- location: ... | version: 0.0
os: linux
files:
- source: /
destination: /srv/openregister-java
hooks:
ApplicationStop:
- location: scripts/stop-service.sh
timeout: 60
runas: root
AfterInstall:
- location: scripts/change_permissions.sh
timeout: 30
runas: root
ApplicationStart:
- location: ... | Revert "Temporarily increase the deploy timeout" | Revert "Temporarily increase the deploy timeout"
We fixed the problem that meant we had to increase this timeout as part
of `9f2daaa6c52541a4c81f99fc707b07db9f76731d` on
`openregister/deployment`.
This reverts commit 80be73aef1349cc65e457c64f30f07d914bb0ca7.
| YAML | mit | openregister/openregister-java,openregister/openregister-java,openregister/openregister-java,openregister/openregister-java,openregister/openregister-java |
b410140b635089782db39fe46b9b4ba8cfebf954 | bootstrap.yml | bootstrap.yml | ---
- hosts: all
roles:
- pacman-mirrors
- facts
- locale
- bootloader
- mounts
- networking
- users
# Dialog is required by wifi-menu if doing setup over wifi
- { role: packages, packages: ['git', 'openssh', 'dialog'] }
- { role: services, services: ['sshd'] }
- { role: vi... | ---
- hosts: all
roles:
- pacman-mirrors
- facts
- locale
- bootloader
- mounts
- networking
- users
- { role: packages, packages: ['git', 'openssh'] }
- { role: services, services: ['sshd'] }
- { role: virtualbox-guest, when: ansible_virtualization_type == 'virtualbox' }
- ho... | Set wireless domain for laptops | Set wireless domain for laptops
| YAML | mit | henrik-farre/ansible,henrik-farre/ansible,henrik-farre/ansible |
6557722d7aef4ebcfc5491ecdbedae7a91871dd2 | .builds/binary-generic-amd64-obsd.yaml | .builds/binary-generic-amd64-obsd.yaml | image: openbsd/latest
arch: amd64
packages:
- gcc
- perl5
- p5-App-cpanminus
secrets:
- 63069bd6-993a-4133-aaf9-51398b07d60e
tasks:
- prepare: |
mkdir -p "/tmp/ci-$JOB_ID"
mkdir -p ~/.ssh
cat <<-EOF > ~/.ssh/config
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
EOF
... | image: openbsd/latest
arch: amd64
packages:
- gcc
secrets:
- 63069bd6-993a-4133-aaf9-51398b07d60e
tasks:
- prepare: |
mkdir -p "/tmp/ci-$JOB_ID"
mkdir -p ~/.ssh
cat <<-EOF > ~/.ssh/config
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
EOF
curl -L http://cpanmin.us ... | Fix up OpenBSD build manifest | Fix up OpenBSD build manifest
| YAML | artistic-2.0 | rakudo/star |
0482c201d9df371ff85933db6b9db820378c6851 | tripleo_common/templates/deployments.yaml | tripleo_common/templates/deployments.yaml | - name: "Render deployment file for {{ item }}"
template:
src: ../templates/heat-config.j2
dest: "/var/lib/heat-config/tripleo-config-download/{{ item }}"
become: true
vars:
deployment: "{{ vars[item] | to_json }}"
- name: "Force remove deployed file for {{ item }}"
file:
path: /var/lib/heat-co... | - name: "Render deployment file for {{ item }}"
template:
src: ../templates/heat-config.j2
dest: "/var/lib/heat-config/tripleo-config-download/{{ item ~ '-' ~ vars[item]['id'] }}"
become: true
vars:
deployment: "{{ vars[item] | to_json }}"
- name: "Force remove deployed file for {{ item }}"
file:
... | Add UUID to directory where Heat configs are stored | Add UUID to directory where Heat configs are stored
Change-Id: I3ec019e2719749786d6af51ad131ddb531dec9bb
Closes-Bug: 1748973
| YAML | apache-2.0 | openstack/tripleo-common,openstack/tripleo-common |
2984fe809db7166326224eaa16a69d0f24719e16 | Resources/config/services/main.yml | Resources/config/services/main.yml | services:
# Video Manager Pro API credentials instance
vmpro_api.credentials:
class: MovingImage\Client\VMPro\Entity\ApiCredentials
arguments:
- %vm_pro_api_credentials_username%
- %vm_pro_api_credentials_password%
# JWT Token extractor instance
vmpro_api.token_e... | services:
# Video Manager Pro API credentials instance
vmpro_api.credentials:
class: MovingImage\Client\VMPro\Entity\ApiCredentials
arguments:
- %vm_pro_api_credentials_username%
- %vm_pro_api_credentials_password%
# JWT Token extractor instance
vmpro_api.token_e... | Fix this bug for autowiring | Fix this bug for autowiring
| YAML | bsd-3-clause | MovingImage24/VMProApiBundle |
bc8843db00d7b2630fecb1380844627f4dd8ba76 | .github/workflows/build-and-deploy.yml | .github/workflows/build-and-deploy.yml | # Builds the Next.js site and deploys it to Firebase hosting
name: Deploy each push
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
# - name: Build site
# uses: docker://jekyll/builder:4.1.0
# with:
# args: jekyl... | # Builds the Next.js site and deploys it to Firebase hosting
name: Deploy each push
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
# See https://github.com/act... | Change github action to build next.js site instead of jekyll | Change github action to build next.js site instead of jekyll
| YAML | mit | teelahti/kerkesix.fi,teelahti/kerkesix.fi |
3821ba2e008520853763031bd3ff559209eceacb | ansible/roles/docker/tasks/main.yaml | ansible/roles/docker/tasks/main.yaml | ---
- name: reload services
command: systemctl daemon-reload
- name: enable docker
command: systemctl enable "docker.service"
- name: start docker service
service:
name: "docker"
state: started
enabled: yes
# force_docker_restart=true to force restart
- name: force restart docke... | ---
- name: reload services
command: systemctl daemon-reload
- name: enable docker
command: systemctl enable "docker.service"
- name: start docker service
service:
name: "docker"
state: started
enabled: yes
# force_docker_restart=true to force restart
- name: force restart docke... | Load docker images for ingress | Load docker images for ingress
| YAML | apache-2.0 | apprenda/kismatic,apprenda/kismatic,apprenda/kismatic |
e50a312dea2c9d9597d973c08aed04c45a7c2c21 | test-environment.yml | test-environment.yml | name: skantest
dependencies:
- python>=3.5*
- setuptools>=19.6*
- numba>=0.29
- numpy>=1.11*
- numpydoc>=0.5*
- scipy>=0.18*
- networkx>=1.11*
- matplotlib>=1.5*
- pandas>=0.18*
- pytest>=3*
- coverage>=4.0
- pytest-cov>=2.2
- pip:
- git+http://github.com/jni/scikit-image.git@fix-sauvola
- hypothesis>=3.6
- image... | name: skantest
dependencies:
- python>=3.5*
- setuptools>=19.6*
- numba>=0.29
- numpy>=1.11*
- numpydoc>=0.5*
- scipy>=0.18*
- networkx>=1.11*
- matplotlib>=1.5*
- pandas>=0.18*
- pytest>=3*
- coverage>=4.0
- pytest-cov>=2.2
- pip:
- git+http://github.com/scikit-image/scikit-image.git
- hypothesis>=3.6
- imageio>... | Use scikit-image master on git | Use scikit-image master on git
| YAML | bsd-3-clause | jni/skan |
97f062db615b9e779d9b338a205fbfe94957359e | db/seeds/prisons/NWI-norwich-a-b-c-e-m-only.yml | db/seeds/prisons/NWI-norwich-a-b-c-e-m-only.yml | ---
name: Norwich (A, B, C, E, M only)
nomis_id: NWI
address: |-
Knox Road
postcode: NR1 4LU
email_address: socialvisits.norwich@hmps.gsi.gov.uk
phone_no: 01603 708795
enabled: true
private: false
closed: false
recurring:
tue:
- 0930-1130
wed:
- 1400-1600
thu:
- 0930-1130
sat:
- 1400-1600
sun:
- 0... | ---
name: Norwich (A, B, C, E, M only)
nomis_id: NWI
address: |-
Knox Road
postcode: NR1 4LU
email_address: socialvisits.norwich@hmps.gsi.gov.uk
phone_no: 01603 708795
enabled: true
private: false
closed: false
recurring:
tue:
- 0930-1130
wed:
- 1400-1600
thu:
- 0930-1130
sat:
- 1400-1600
sun:
- 0... | Remove trailing whitespace from Norwich yml file | Remove trailing whitespace from Norwich yml file
| YAML | mit | ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2 |
facdfa639e5cabf30efcf9200453f4e01c13be71 | docker-compose.yml | docker-compose.yml | version: "3"
services:
# service configuration for our database
database:
# use the preferred version of the official Postgres image
# see https://hub.docker.com/_/postgres/
image: postgres:9.6.21
environment:
- POSTGRES_PASSWORD=$POSTGRES_PASSWORD
# persist the database between container... | version: "3"
services:
# service configuration for our database
database:
# use the preferred version of the official Postgres image
# see https://hub.docker.com/_/postgres/
image: postgres:9.6.21
environment:
- POSTGRES_PASSWORD=$POSTGRES_PASSWORD
# persist the database between container... | Remove SSH_AUTH references in docker compose | Remove SSH_AUTH references in docker compose
It was added in commit 1db5a00ea, probably due to the Capistrano
configuration of the developer who wrote the code. On my machine, docker
compose crashed due to these lines.
| YAML | agpl-3.0 | consul/consul,consul/consul,consul/consul,consul/consul,consul/consul |
65db08d507b547a8387b979ab15806420e8a2412 | docker-compose.yml | docker-compose.yml | ---
version: '2'
services:
zookeeper:
image: confluentinc/cp-zookeeper:latest
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
kafka:
image: confluentinc/cp-kafka:latest
depends_on:
- zookeeper
ports:
- 9092:9092
environment:
KAFKA_BROKER_ID... | ---
version: '2'
services:
zookeeper:
image: confluentinc/cp-zookeeper:5.2.6
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
kafka:
image: confluentinc/cp-kafka:latest
depends_on:
- zookeeper
ports:
- 9092:9092
environment:
KAFKA_BROKER_ID:... | Rollback zookeeper version to 5.x.x | Rollback zookeeper version to 5.x.x
Version > 6 was not working out of-the-box therefore making the
development environment not able to run.
---
Changelog: fix
| YAML | mit | thijsc/rdkafka-ruby |
2df54338eda5c0c01525776f1cdc0ba3a63bbb3c | docker-compose.yml | docker-compose.yml | version: "2"
services:
mysql:
image: mysql:5.7
volumes:
- mysql-data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
restart: unless-stopped
wiki:
build: wiki/docker-mediawiki
depends_on:
- mysql
ports:
- "8080:80"
volumes:
- ./wiki/conf:/var/www-s... | version: "2"
services:
mysql:
image: mysql:5.7
volumes:
- mysql-data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
restart: unless-stopped
wiki:
build: wiki/docker-mediawiki
depends_on:
- mysql
ports:
- "8080:80"
volumes:
- ./wiki/conf:/var/www-s... | Remove unused environment variables passed to WP container | Remove unused environment variables passed to WP container
| YAML | mit | oc4d/main,oc4d/main,oc4d/main |
97eed95a82ae816b29c19ace53096f4af9e528ee | docker-compose.yml | docker-compose.yml | version: '2'
services:
tests:
image: buildkite/plugin-tester:latest@sha256:a784b49bb241291feb47b578a2cb58938d3565dff5b0f6d9bf627036cbd7f419
volumes:
- ".:/plugin:ro"
| version: '2'
services:
tests:
image: buildkite/plugin-tester:latest@sha256:7c2d08e8d6dc32637236105e82f6c161fe2a2c3098e9035a92eb1401b6593bdf
volumes:
- ".:/plugin:ro"
| Update buildkite/plugin-tester:latest Docker digest to 7c2d08 | Update buildkite/plugin-tester:latest Docker digest to 7c2d08 | YAML | mit | mikeknox/docker-buildkite-plugin |
add288ac1aa7690e55607b353a16c6e0bee785c2 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
- pull_request
- push
jobs:
windows:
name: Test on Windows
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Restore chocolatey
uses: actions/cache@v2
with:
path:... | name: CI
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
- pull_request
- push
jobs:
windows:
name: Test on Windows
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Restore chocolatey
uses: actions/cache@v2
with:
path:... | Test tests on windows without coverage | Test tests on windows without coverage
| YAML | mit | hrzndhrn/xema |
3dd9face09dae8f29f1ed06e095d19c8d163226e | data/templates/ive/config.yml | data/templates/ive/config.yml | name: Jony Ive Redesigns Things
default:
-
link: http://www.quickmeme.com/Jony-Ive
aliases:
- jony
- best-thing-ever
| name: Jony Ive Redesigns Things
default:
-
link: https://www.apple.com/pr/bios/jonathan-ive.html
aliases:
- jony
- best-thing-ever
| Swap out broken quickmeme.com link | Swap out broken quickmeme.com link
| YAML | mit | joshfriend/memegen,joshfriend/memegen,DanLindeman/memegen,DanLindeman/memegen,joshfriend/memegen,DanLindeman/memegen,joshfriend/memegen,DanLindeman/memegen |
be3e8e2aa12be270fa50674e85aaa22aa548236b | .github/workflows/add-to-project.yml | .github/workflows/add-to-project.yml | name: Axon Framework
on:
pull_request:
types:
- labeled
jobs:
add-to-project:
name: Add Dependency Upgrade PR to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@main
with:
project_url: https://github.com/orgs/AxonFramework/projects/2
git... | name: Axon Framework
on:
pull_request:
types:
- labeled
jobs:
add-to-project:
name: Add Dependency Upgrade PR to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/AxonFramework/projects/2
git... | Adjust parameters to use dash instead of underscore | Adjust parameters to use dash instead of underscore
Adjust parameters to use dash instead of underscore
| YAML | apache-2.0 | AxonFramework/AxonFramework |
0fa4b166605bf0175677a38cedc2a35cc71bc153 | tools/docker-compose/unit-tests/docker-compose.yml | tools/docker-compose/unit-tests/docker-compose.yml | ---
version: '2'
services:
unit-tests:
build:
context: ../../../
dockerfile: tools/docker-compose/unit-tests/Dockerfile
image: gcr.io/ansible-tower-engineering/unit-test-runner:latest
environment:
SWIG_FEATURES: "-cpperraswarn -includeall -I/usr/include/openssl"
TEST_DIRS: awx/main... | ---
version: '2'
services:
unit-tests:
build:
context: ../../../
dockerfile: tools/docker-compose/unit-tests/Dockerfile
image: gcr.io/ansible-tower-engineering/unit-test-runner:${GIT_BRANCH}
environment:
SWIG_FEATURES: "-cpperraswarn -includeall -I/usr/include/openssl"
TEST_DIRS: a... | Rebuild unit-test image for every branch | Rebuild unit-test image for every branch
This variable is set by Jenkins, you'll have to set it manually if you build locally.
| YAML | apache-2.0 | wwitzel3/awx,snahelou/awx,snahelou/awx,snahelou/awx,snahelou/awx,wwitzel3/awx,wwitzel3/awx,wwitzel3/awx |
fe3bfbce91ba52ed21274df0c4c9488341278174 | db/config/database.travis-ci.yml | db/config/database.travis-ci.yml | ---
bootstrap:
- tests/bootstrap.php
schema:
auto_id: true
base_model: \LazyRecord\BaseModel
base_collection: \LazyRecord\BaseCollection
paths:
- tests
cache:
class: LazyRecord\Cache\Memcache
servers:
- { host: localhost, port: 11211 }
data_source:
default: sqlite
nodes:
sqlite:
dsn:... | ---
bootstrap:
- tests/bootstrap.php
schema:
auto_id: true
base_model: \LazyRecord\BaseModel
base_collection: \LazyRecord\BaseCollection
paths:
- tests
cache:
class: LazyRecord\Cache\Memcache
servers:
- { host: localhost, port: 11211 }
data_source:
default: sqlite
nodes:
sqlite:
dsn:... | Remove password field from config for travis | Remove password field from config for travis
| YAML | bsd-3-clause | talib570/LazyRecord,talib570/LazyRecord,c9s/LazyRecord,c9s/LazyRecord,c9s/LazyRecord,talib570/LazyRecord |
3897d9c91aa44f8d348b34e6c3aaa470e30f47fa | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
yarn: artsy/yarn@2.1.1
codecov: codecov/codecov@1.0.5
workflows:
build_and_verify:
jobs:
- yarn/workflow-queue
- yarn/update-cache:
requires:
- yarn/workflow-queue
- yarn/relay:
requires:
- yarn/workflow-queue
- yarn/lint... | version: 2.1
orbs:
yarn: artsy/yarn@3.0.0
codecov: codecov/codecov@1.0.5
workflows:
build_and_verify:
jobs:
- yarn/workflow-queue
- yarn/update-cache:
requires:
- yarn/workflow-queue
- yarn/relay:
requires:
- yarn/workflow-queue
- yarn/lint... | Update yarn orb to v3 | Update yarn orb to v3
| YAML | mit | artsy/reaction,artsy/reaction-force,artsy/reaction-force,artsy/reaction,artsy/reaction |
3cb758685dc9c4fb2576af2de2fedd2d691f8c98 | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
python: circleci/python@1.0.0
jobs:
build:
docker:
- image: cimg/python:3.6.10
steps:
- checkout
- run: pip install pytest pytest-cov
- run: |
curl -L https://github.com/rqlite/rqlite/releases/download/v6.7.0/rqlite-v6.7.0-linux-amd64.tar.gz -o rqlite... | version: 2.1
orbs:
python: circleci/python@1.0.0
jobs:
build:
docker:
- image: cimg/python:3.6.10
steps:
- checkout
- run: pip install pytest pytest-cov
- run: |
curl -L https://github.com/rqlite/rqlite/releases/download/v7.2.0/rqlite-v7.2.0-linux-amd64.tar.gz -o rqlite... | Use rqlite 7.2.0 for testing | Use rqlite 7.2.0 for testing
| YAML | mit | rqlite/pyrqlite |
083c35676ad9bb4521a5c103bfb44eda81b763b0 | .circleci/config.yml | .circleci/config.yml | # Ruby CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/ruby:2.4.1-node-browsers
# Specify service dependencies here if necessary
# Circl... | # Ruby CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/ruby:2.4.1-node-browsers
# Specify service dependencies here if necessary
# Circl... | Move gems to gems folder, like locally | Move gems to gems folder, like locally
| YAML | mit | jimmythompson/jimmythompson.co.uk,jimmythompson/jimmythompson.co.uk,jimmythompson/jimmythompson.co.uk |
89bcdc79c0b5a82b25e3151af0768efe7b97c6f5 | gcsweb.k8s.io/deployment.yaml | gcsweb.k8s.io/deployment.yaml | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: gcsweb
labels:
app: gcsweb
spec:
replicas: 2
# selector defaults from template labels
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
template:
metadata:
labels:
app: gcsweb
... | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: gcsweb
labels:
app: gcsweb
spec:
replicas: 2
# selector defaults from template labels
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
template:
metadata:
labels:
app: gcsweb
... | Add k8s-release-dev bucket to gcsweb | Add k8s-release-dev bucket to gcsweb
| YAML | apache-2.0 | thockin/k8s.io,kubernetes/k8s.io,kubernetes/k8s.io,thockin/k8s.io,thockin/k8s.io,kubernetes/k8s.io,thockin/k8s.io,kubernetes/k8s.io |
85a812a0399c444c52b7354b334d324252b74a7e | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/datavisyn
docker:
- image: circleci/node:12.13-buster-browsers
steps:
- checkout
- restore_cache:
key: deps3-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
- run:
name: install-npm-wee
... | version: 2
jobs:
build:
working_directory: ~/datavisyn
docker:
- image: circleci/node:12.13-buster-browsers
steps:
- checkout
- restore_cache:
key: deps3-{{ .Branch }}-{{ checksum "package.json" }}
- run:
name: install-npm-wee
command: npm install
... | Remove package-lock.json from CircleCI cache hash | Remove package-lock.json from CircleCI cache hash
| YAML | bsd-3-clause | datavisyn/datavisyn-scatterplot,datavisyn/datavisyn-scatterplot |
51d4bcd9d9784b80a8b08567bdf81ae2d6273613 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8
steps:
- checkout
- run: ./gradlew build
- run: mkdir -p circle-test-results/junit/
- run: find . -type f -regex ".*/build/test-results/test/.*xml" -exec cp {} circle-test-results/junit/ \;
- run: mkdir -p circle-... | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8
steps:
- checkout
- run: ./gradlew build --max-workers=2
- run: mkdir -p circle-test-results/junit/
- run: find . -type f -regex ".*/build/test-results/test/.*xml" -exec cp {} circle-test-results/junit/ \;
- run: ... | Add a --max-workers argument to the Gradle CircleCI build | Add a --max-workers argument to the Gradle CircleCI build
Java 8 has problems getting the CPU count in Docker, so Gradle
could use some assistance in choosing its parallelism level.
| YAML | apache-2.0 | AlexLandau/semlang,AlexLandau/semlang,AlexLandau/semlang,AlexLandau/semlang |
2377566d143f69903ce24cd9286493ac1b7d21b4 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
test:
working_directory: ~/js-sdk
docker:
- image: circleci/node:10.5-stretch-browsers
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run:
name: Instal... | version: 2
jobs:
test:
working_directory: ~/js-sdk
docker:
- image: circleci/node:10.12.0
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run:
name: Install Dependencies... | Update node docker image in circleci | Update node docker image in circleci
| YAML | mit | procore/js-sdk |
c3fda1f322587f2e8a80bcb14a0aa836c260acd1 | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
gradle: circleci/gradle@1.0.10
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-29
environment:
- JVM_OPTS: -Xmx3200m
steps:
- checkout
- gradle/with_cache:
steps:
- run:
name: Download Depen... | version: 2.1
orbs:
gradle: circleci/gradle@1.0.10
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-29
environment:
- JVM_OPTS: -Xmx3200m
steps:
- checkout
- gradle/with_cache:
steps:
- run:
name: Download Depen... | Remove incorrect test artifact paths | Remove incorrect test artifact paths
| YAML | apache-2.0 | evant/redux |
7eabf5045723c13351e129d1f0bf04322c80effc | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
test:
docker:
- image: circleci/golang:latest
steps:
- checkout
- run: go test -v ./
- run: go test -v ./cmd/jid
release:
docker:
- image: circleci/golang:latest
steps:
- checkout
- run:
name: build jid using goreleaser
... | version: 2
jobs:
test:
docker:
- image: circleci/golang:latest
steps:
- checkout
- run: go test -v ./
- run: go test -v ./cmd/jid
release:
docker:
- image: circleci/golang:latest
steps:
- checkout
- run:
name: build jid using goreleaser
... | Add CircleCI filter: run test when push version tags | Add CircleCI filter: run test when push version tags
| YAML | mit | simeji/jid |
7d4a153a18ae3dfe384c09b428c92826c7662b8d | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: microsoft/dotnet:1.1-sdk
steps:
- checkout
- run: dotnet test -f netcoreapp1.1 test/BinaryEncoding.Tests/BinaryEncoding.Tests.csproj
build:
docker:
- image: microsoft/dotnet:2.0-sdk
steps:
- checkout
- run: dotnet test -f n... | version: 2
jobs:
build:
docker:
- image: microsoft/dotnet:1.1-sdk
steps:
- checkout
- run: dotnet test -f netcoreapp1.1 -c Release test/BinaryEncoding.Tests/BinaryEncoding.Tests.csproj
build:
docker:
- image: microsoft/dotnet:2.2-sdk
steps:
- checkout
- run: dotne... | Use newest dotnet docker image for circleci | Use newest dotnet docker image for circleci
| YAML | mit | tabrath/BinaryEncoding |
1b7eafe5f5657683fc0e7276de2ddb38db94f61d | .circleci/config.yml | .circleci/config.yml | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: selenium/node-chrome
# Specify service dependencies here if necessary
# Ci... | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:10.14-jessie-browsers
# Specify service dependencies here if neces... | Use stock circle image with browser support | Use stock circle image with browser support
| YAML | mit | wearemolecule/date-range-picker,wearemolecule/date-range-picker |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.