commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266 values | license stringclasses 13 values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
4b3a97230f575f1945df5812e1ef54ba2176f163 | roles/wordpress-setup/tasks/nginx-includes.yml | roles/wordpress-setup/tasks/nginx-includes.yml | ---
- name: Create includes.d directories
file:
path: "{{ nginx_path }}/includes.d/{{ item }}"
state: directory
mode: 0755
with_items: "{{ wordpress_sites.keys() }}"
register: nginx_includes_paths
- name: Template files out to includes.d
template:
src: "includes.d/{{ item }}"
dest: "{{ nginx_path }}/includes.d/{{ item[:-3] }}"
with_lines: "cd {{ role_path }}/templates/includes.d && find {{ wordpress_sites.keys() | join(' ') }} -type f -name \\*.conf.j2 2>/dev/null || :"
register: nginx_includes_managed
notify: reload nginx
- name: Retrieve list of existing files in includes.d
shell: "find {{ nginx_includes_paths.results | map(attribute='path') | join(' ') }} -type f -name \\*.conf 2>/dev/null || :"
register: nginx_includes_existing
changed_when: false
- name: Remove unmanaged files from includes.d
file:
path: "{{ item }}"
state: absent
with_items: "{{ nginx_includes_existing.stdout_lines |
difference(nginx_includes_managed.results | default([]) | map(attribute='item') |
map('regex_replace', '(.*)\\.j2', '/etc/nginx/includes.d/\\1') | list
)
}}"
notify: reload nginx
| ---
- name: Build list of Nginx includes templates
find:
paths: roles/wordpress-setup/templates/includes.d
pattern: "*.conf.j2"
recurse: yes
become: no
connection: local
register: nginx_includes_templates
- name: Create includes.d directories
file:
path: "{{ nginx_path }}/includes.d/{{ item }}"
state: directory
mode: 0755
with_items: "{{ nginx_includes_templates.files | map(attribute='path') | map('relpath', 'roles/wordpress-setup/templates/includes.d') | map('dirname') | unique | select | list | sort }}"
register: nginx_includes_paths
- name: Template files out to includes.d
template:
src: "{{ item }}"
dest: "{{ nginx_path }}/includes.d/{{ item[:-3] | relpath('roles/wordpress-setup/templates/includes.d') }}"
with_items: "{{ nginx_includes_templates.files | map(attribute='path') | list }}"
register: nginx_includes_managed
notify: reload nginx
- name: Retrieve list of existing files in includes.d
shell: "find {{ nginx_includes_paths.results | map(attribute='path') | join(' ') }} -type f -name \\*.conf 2>/dev/null || :"
register: nginx_includes_existing
changed_when: false
- name: Remove unmanaged files from includes.d
file:
path: "{{ item }}"
state: absent
with_items: "{{ nginx_includes_existing.stdout_lines |
difference(nginx_includes_managed.results | default([]) | map(attribute='item') |
map('regex_replace', '(.*)\\.j2', '/etc/nginx/includes.d/\\1') | list
)
}}"
notify: reload nginx
| Use find module to build list of Nginx includes without errors | Use find module to build list of Nginx includes without errors
| YAML | mit | mAAdhaTTah/bedrock-ansible,mAAdhaTTah/bedrock-ansible,partounian/trellis,kalenjohnson/trellis,NicBeltramelli/trellis,jeffstieler/bedrock-ansible,fullyint/trellis,pressbooks/trellis,newtonne/trellis,alan-c/trellis,Twansparant/trellis-db-sync,cimocimocimo/cimo-wordpress-server,alan-c/trellis,cimocimocimo/cimo-wordpress-server,jeffstieler/bedrock-ansible,proteusthemes/pt-ops,fullyint/trellis,buluma/trellis,NicBeltramelli/trellis,fullyint/trellis,roots/bedrock-ansible,partounian/trellis,newtonne/trellis,roots/bedrock-ansible,mAAdhaTTah/bedrock-ansible,kalenjohnson/trellis,proteusthemes/pt-ops,buluma/trellis,mAAdhaTTah/bedrock-ansible,proteusthemes/pt-ops,buluma/trellis,jeffstieler/bedrock-ansible,NicBeltramelli/trellis,Twansparant/trellis-db-sync,partounian/trellis,pressbooks/trellis,newtonne/trellis,roots/trellis,cimocimocimo/cimo-wordpress-server,NicBeltramelli/trellis,Twansparant/trellis-db-sync,roots/trellis,fullyint/trellis,kalenjohnson/trellis,cimocimocimo/cimo-wordpress-server,Twansparant/trellis-db-sync,kalenjohnson/trellis,buluma/trellis,partounian/trellis |
de8e521e3ea1434c09ac4db0b82b5f3ad71fa9a8 | config/oracle_jre.yml | config/oracle_jre.yml | # Cloud Foundry Java Buildpack
# Copyright (c) 2013 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Configuration for JRE repositories keyed by vendor
# From Java 1.8 onwards, metaspace should be used instead of permgen. Please see the documentation for more detail.
---
# You must specify a the repository root of an Oracle JRE repository. Please see the documentation for more detail.
# e.g. repository_root: "http://example.com/oracle-jre/{platform}/{architecture}"
repository_root: ""
version: 1.7.0_+
memory_sizes:
# metaspace: 64m..
permgen: 64m..
memory_heuristics:
heap: 75
# metaspace: 10
permgen: 10
stack: 5
native: 10
| # Cloud Foundry Java Buildpack
# Copyright (c) 2013 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Configuration for JRE repositories keyed by vendor
# Pre Java 1.8, permgen was used instead of metaspace. Please see the documentation for more detail.
---
# You must specify a the repository root of an Oracle JRE repository. Please see the documentation for more detail.
# e.g. repository_root: "http://example.com/oracle-jre/{platform}/{architecture}"
repository_root: ""
version: 1.8.0_+
memory_sizes:
metaspace: 64m..
# permgen: 64m..
memory_heuristics:
heap: 75
metaspace: 10
# permgen: 10
stack: 5
native: 10
| Update the Oracle JRE to Java 8 | Update the Oracle JRE to Java 8
The Oracle JRE configuration needs to be updated to Java 8 to be consistent
with the Open JDK Java version. This commit changes that configuration.
[#70715740]
| YAML | apache-2.0 | snaik17/java-buildpack,thesrinivas/java-buildpack,ctoestreich/java-buildpack,mtrocchio/MyCF,chrisumbel/java-buildpack,santoshsrivastava/kieserver_mvn,seakayone/java-buildpack,my3D-Team/java-buildpack,mcelrojb58/java-buildpack,alokhm/java-multi-jar-buildpack,snaik17/java-buildpack,hmlingesh/java-buildpack,sureshkatragadda/java-buildpack,sivabalans/java-buildpack,tkaburagi1214/java-buildpack,brijeshgp/java-buildpack,rbrutas/java-buildpack,nevenc-pivotal/java-buildpack,thesrinivas/java-buildpack,pdesgarets/java-buildpack,roagarwal/java-buildpack-newrelic,mulesoft-consulting/mule-cf-java-buildpack,SudarsananRengarajan/java-buildpack,es11558/java-buildpack,tfynes-pivotal/java-buildpack,bencabanas/hacked_java_buildpack,anshada/java-buildpack,Altoros/java-buildpack,roagarwal/java-buildpack-newrelic,PonmaniPandian/java-buildpack,nishit85/java-buildpack,JagannathLenka/java-buildpack,blandong/java-buildpack,my3D-Team/java-buildpack,dsyer/java-buildpack,broec/java-buildpack,dattnguyen82/java-buildpack,kishoretiwary/kieserver_mvn_prod,john-k-ge/java-buildpack,oviboc-hybris/buildpacknorestart,tspatel02/java-buildpack,shinji62/liferay-buildpack,grigorijk/java-buildpack,whewatt-pivotal/java-buildpack,stipx/java-buildpack,mcelrojb58/java-buildpack,trisberg/java-buildpack,andrewBrunette/java-buildpack,chrisumbel/java-buildpack,chrisumbel/java-buildpack,tspatel02/java-buildpack,cf-platform-eng/java-buildpack,sherbet/java-buildpack,Informatthic/weblogic-buildpack,phopper-pivotal/java-buildpack,voxgen/java-buildpack,demo-app/java-buildpack,hmlingesh/java-buildpack,SudarsananRengarajan/java-buildpack,joek/java-jetty-buildpack-1,cloudfoundry-community/tomee-buildpack,jiaweizhou/java-buildpack,chrisumbel/jboss-buildpack,ajdennis78/java-buildpack,BLaurent/java-buildpack,lucasreginato/custom-java-buildpack,voxgen/java-buildpack,bbooth/java-buildpack,tpweber/java-buildpack,datianshi/app-dynamic-jb,jdeoliveira/mule-cf-java-buildpack,cf-guardian/java-buildpack,Altoros/java-buildpack,hurleyinnovations/java-buildpack,broec/java-buildpack,willtf/java-buildpack,peeeto/java-buildpack-cloudfoundry,kei-yamazaki/java-buildpack,jgawor/java-buildpack,rakutentech/java-buildpack,sentinelgh/java-buildpack,hmlingesh/java-buildpack,gyantcs/kieserver_mvn,ajjaskie/java-buildpack,tom-collings/jboss-buildpack,gcristof/java-buildpack,bsinno/bic-sp-java-buildpack,veyrats/cf-java-buildpack-production,ActiveState/java-buildpack-harbor-debug,phopper-pivotal/java-buildpack,andrewBrunette/java-buildpack,kyletravis/java-buildpack,waltersve/java-buildpack,tom-collings/java-buildpack,joek/java-jetty-buildpack-1,bencabanas/hacked_java_buildpack,priyankaSood/java-buildpack,grigorijk/java-buildpack,AlpanaKumari/java-buildpack,bob-jackson/java-buildpack,dixanms/CF-java-buildpack-tests,nishit85/java-buildpack,jgawor/java-buildpack,tkarlsson-pivotal/weblogic-buildpack,davidehringer/java-buildpack,ariel-bentu/java-buildpack,jghiloni/java-buildpack,JagannathLenka/java-buildpack,kei-yamazaki/java-buildpack,trisberg/java-buildpack,yihyunyi/java-buildpack,Informatthic/weblogic-buildpack,ringgi/java-buildpack,ajdennis78/java-buildpack,rhardt-pivotal/sidecar-buildpack,kyletravis/java-buildpack,hurleyinnovations/java-buildpack,happiestminds-covisint/java-buildpack,gittify/java-buildpack,jhaefele/java-buildpack,peeeto/java-buildpack-cloudfoundry,na-na/java-buildpack,rakutentech/java-buildpack,es11558/java-buildpack,pivotal-cf/weblogic-buildpack,agairing/java-buildpack,tkarlsson-pivotal/weblogic-buildpack,dixanms/CF-java-buildpack-tests,ajjaskie/java-buildpack,jghiloni/java-buildpack,alokhm/java-buildpack,jasenbg/jtest,qatsi/java-buildpack,lhotari/java-buildpack,dnsw83/java-buildpack,joelavalos/java-buildpack,bencabanas/hacked_java_buildpack,kjmd75/java-buildpack,homedepot/cloudfoundry-java-buildpack,phopper-pivotal/java-buildpack,pivotalservices/oracle-jre-java-buildpack,owaism/cf-java-buildpack,willtf/java-buildpack,jdeoliveira/mule-cf-java-buildpack,SudarsananRengarajan/java-buildpack,ringgi/java-buildpack,bbyers-pivotal/java-buildpack,chrisribble/java-buildpack,cf-platform-eng/java-buildpack,bluebreezecf/java-buildpack,qatsi/java-buildpack,snaik17/java-buildpack,tfynes-pivotal/java-buildpack,santoshsrivastava/kieserver_mvn,mpkmtv/java-buildpack,europeana/java-buildpack-pass-dea,skysports-digitalmedia/java-buildpack,jhaefele/java-buildpack,ThomasBruggenwirth/shop-java-buildpack,waltersve/java-buildpack,rsamban/java-buildpack,bsinno/bic-sp-java-buildpack,Informatthic/weblogic-buildpack,celkins/dropwizard-buildpack,chrisribble/java-buildpack,pivotal-oscar/java-buildpack,bluebreezecf/java-buildpack,jiaweizhou/java-buildpack,bbyers-pivotal/java-buildpack,tspatel02/java-buildpack,amulyas/java-buildpack,kyletravis/java-buildpack,ariel-bentu/java-buildpack,jiaweizhou/java-buildpack,sureshkatragadda/java-buildpack,tom-collings/java-buildpack,hpcloud/java-buildpack-harbor-debug,blandong/java-buildpack,cloudfoundry/java-buildpack,broec/java-buildpack,PonmaniPandian/java-buildpack,mpkmtv/java-buildpack,sherbet/java-buildpack,venkytv/covisint-java-buildpack,PonmaniPandian/java-buildpack,tkarlsson-pivotal/weblogic-buildpack,cf-platform-eng/java-buildpack,cwstewart/java-buildpack,europeana/java-buildpack-pass-dea,skysports-digitalmedia/java-buildpack,leelakranthi/java-buildpack,pivotalservices/oracle-jre-java-buildpack,alokhm/java-buildpack,cf-guardian/java-buildpack,sureshkatragadda/java-buildpack,pdesgarets/java-buildpack,tspatel02/java-buildpack,PatrikSteuer/java-buildpack,nkatre/java-buildpack,priyankaSood/java-buildpack,ctoestreich/java-buildpack,mulesoft-consulting/anypoint-buildpack,karthikmob/mobnlp,pivotal-cf/weblogic-buildpack,kaizimmerm/java-buildpack,seakayone/java-buildpack,rsamban/java-buildpack,thesrinivas/java-buildpack,kei-yamazaki/java-buildpack,YannRobert/java-buildpack,bbyers-pivotal/java-buildpack,bbooth/java-buildpack,bob-jackson/java-buildpack,sky-uk/shop-java-buildpack,ActiveState/java-buildpack-harbor-debug,roagarwal/java-buildpack-newrelic,karthikmob/mobnlp,shinji62/liferay-buildpack,svenfrauen/java-buildpack,YannRobert/java-buildpack,tpweber/java-buildpack,mulesoft-consulting/mule-cf-java-buildpack,anshada/java-buildpack,tkaburagi1214/java-buildpack,mgunter-pivotal/java-buildpack,tkarlsson-pivotal/weblogic-buildpack,pivotal-cf/weblogic-buildpack,alokhm/java-jar-support,cloudfoundry-community/jboss-buildpack,gittify/java-buildpack,leachbj/java-buildpack,es11558/java-buildpack,leachbj/java-buildpack,thesrinivas/java-buildpack,pdesgarets/java-buildpack,jghiloni/java-buildpack,yihyunyi/java-buildpack,ctoestreich/java-buildpack,nishit85/java-buildpack,nkatre/java-buildpack,priyankaSood/java-buildpack,rsamban/java-buildpack,lhotari/java-buildpack,PonmaniPandian/java-buildpack,es11558/java-buildpack,Service-Flow/java-buildpack-cloudfoundry,violetagg/tomee-buildpack,kjmd75/java-buildpack,hurleyinnovations/java-buildpack,nevenc-pivotal/java-buildpack,ywang-pivotal/java-buildpack,allomov/jenkins-buildpack-v2,my3D-Team/java-buildpack,SudarsananRengarajan/java-buildpack,violetagg/tomee-buildpack,homedepot/cloudfoundry-java-buildpack,sky-uk/shop-java-buildpack,Service-Flow/java-buildpack-cloudfoundry,mcelrojb58/java-buildpack,Covisint-PST/java-buildpack,jghiloni/java-buildpack,ringgi/java-buildpack,heroicefforts/java-buildpack-pyclid,sentinelgh/java-buildpack,mulesoft-consulting/anypoint-buildpack,mtrocchio/MyCF,tkaburagi1214/java-buildpack,priyankaSood/java-buildpack,krujos/java-buildpack,cloudfoundry/java-buildpack,kaizimmerm/java-buildpack,agairing/java-buildpack,dave-malone/jboss-buildpack,krujos/java-buildpack,dsyer/java-buildpack,hmlingesh/java-buildpack,agairing/java-buildpack,martinSaad/cfJavaBuildPack_newRelic,ringgi/java-buildpack,mgunter-pivotal/java-buildpack,amulyas/java-buildpack,cwstewart/java-buildpack,sentinelgh/java-buildpack,cwstewart/java-buildpack,amulyas/java-buildpack,mtrocchio/MyCF,bob-jackson/java-buildpack,heroicefforts/java-buildpack-pyclid,cloudfoundry-community/tomee-buildpack,AlpanaKumari/java-buildpack,celkins/dropwizard-buildpack,cdejonge/java-buildpack,pivotal-oscar/java-buildpack,cloudfoundry-community/jboss-buildpack,qatsi/java-buildpack,gcristof/java-buildpack,sivabalans/java-buildpack,dnsw83/java-buildpack,tfynes-pivotal/java-buildpack,AlpanaKumari/java-buildpack,svenfrauen/java-buildpack,stipx/java-buildpack,dattnguyen82/java-buildpack,gittify/java-buildpack,roagarwal/java-buildpack-newrelic,datianshi/app-dynamic-jb,phopper-pivotal/java-buildpack,grigorijk/java-buildpack,leelakranthi/java-buildpack,whewatt-pivotal/java-buildpack,veyrats/cf-java-buildpack-production,joelavalos/java-buildpack,europeana/java-buildpack,john-k-ge/java-buildpack,afalak/java-buildpack,jiaweizhou/java-buildpack,trisberg/java-buildpack,venkytv/covisint-java-buildpack,skysports-digitalmedia/java-buildpack,ctoestreich/java-buildpack,rhardt-pivotal/sidecar-buildpack,davidehringer/java-buildpack,kodierer3/CF,BLaurent/java-buildpack,dixanms/CF-java-buildpack-tests,brijeshgp/java-buildpack,seakayone/java-buildpack,afalak/java-buildpack,ThomasBruggenwirth/shop-java-buildpack,pdesgarets/java-buildpack,JagannathLenka/java-buildpack,rbrutas/java-buildpack,yihyunyi/java-buildpack,pivotal-cf/weblogic-buildpack,ajdennis78/java-buildpack,dave-malone/jboss-buildpack,AlpanaKumari/java-buildpack,dave-malone/jboss-buildpack,bluebreezecf/java-buildpack,bbooth/java-buildpack,violetagg/java-buildpack,kjmd75/java-buildpack,andrewBrunette/java-buildpack,whewatt-pivotal/java-buildpack,leachbj/java-buildpack,andrewBrunette/java-buildpack,pivotal-oscar/java-buildpack,mulesoft-consulting/anypoint-buildpack,nevenc-pivotal/java-buildpack,gyantcs/kieserver_mvn,ywang-pivotal/java-buildpack,kodierer3/CF,mcelrojb58/java-buildpack,Appdynamics/java-buildpack,martinSaad/cfJavaBuildPack_newRelic,chrisumbel/jboss-buildpack,pivotalservices/oracle-jre-java-buildpack,kei-yamazaki/java-buildpack,jdeoliveira/mule-cf-java-buildpack,joek/java-jetty-buildpack-1,davidehringer/java-buildpack,kishoretiwary/kieserver_mvn_prod,JagannathLenka/java-buildpack,mpkmtv/java-buildpack,ajdennis78/java-buildpack,Informatthic/weblogic-buildpack,pivotal-oscar/java-buildpack,alokhm/java-multi-jar-buildpack,owaism/cf-java-buildpack,PatrikSteuer/java-buildpack,homedepot/cloudfoundry-java-buildpack,europeana/java-buildpack,mulesoft-consulting/mule-cf-java-buildpack,kaizimmerm/java-buildpack,allomov/jenkins-buildpack-v2,leelakranthi/java-buildpack,cdejonge/java-buildpack,alokhm/java-jar-support,na-na/java-buildpack,oviboc-hybris/buildpacknorestart,hpcloud/java-buildpack-harbor-debug,tpweber/java-buildpack,oviboc-hybris/buildpacknorestart,happiestminds-covisint/java-buildpack,sherbet/java-buildpack,snaik17/java-buildpack,shinji62/liferay-buildpack,ajjaskie/java-buildpack,chrisumbel/jboss-buildpack,violetagg/java-buildpack,jhaefele/java-buildpack,krujos/java-buildpack,jasenbg/jtest,na-na/java-buildpack,tom-collings/jboss-buildpack,demo-app/java-buildpack,kodierer3/CF,seakayone/java-buildpack,Appdynamics/java-buildpack,kaizimmerm/java-buildpack,tom-collings/java-buildpack,mgunter-pivotal/java-buildpack,bluebreezecf/java-buildpack,lucasreginato/custom-java-buildpack,Covisint-PST/java-buildpack |
b9da60c29bf84e77d61a547b8eb667cdac72c2fb | .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.1
jobs:
build:
docker:
- image: circleci/node:14.14
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm run lint
- run: npm test
| # JavaScript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
jobs:
build:
docker:
- image: circleci/node:14.15
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm run lint
- run: npm test
| Update circleci/node Docker tag to v14.15 | Update circleci/node Docker tag to v14.15
Signed-off-by: Renovate Bot <c71e7261d37a4f6ae4cfb0cbd79081310a237e67@renovateapp.com>
| YAML | mit | paazmaya/tozan |
93e38a6329a6958783166ef92ba09cc29593141c | .appveyor.yml | .appveyor.yml | # AppVeyor configuration file for broadbean
branches:
only:
- master
- version1.0
environment:
CONDA_INSTALL_LOCATION: "C:\\Miniconda36-x64"
# Do not use MSBuild
build: false
# Init scripts
# Install scripts
install:
- set PATH=%CONDA_INSTALL_LOCN%;%CONDA_INSTALL_LOCN%\scripts;%PATH%;
- conda update --all
- conda info -a
- conda create -q -n test-environment python=%PYTHON_VERSION% pip setuptools
- conda activate test-environment
- python -m pip install --upgrade pip
- pip install -r test_requirements.txt
- pip install .
# Test scripts
test_script:
- mypy broadbean --ignore-missing-imports
- cd tests
- pytest
| # AppVeyor configuration file for broadbean
branches:
only:
- master
- version1.0
environment:
global:
CONDA_INSTALL_LOCATION: "C:\\Miniconda36-x64"
# Do not use MSBuild
build: false
# Init scripts
# Install scripts
install:
- set PATH=%CONDA_INSTALL_LOCN%;%CONDA_INSTALL_LOCN%\scripts;%PATH%;
- conda update --all
- conda info -a
- conda create -q -n test-environment python=%PYTHON_VERSION% pip setuptools
- conda activate test-environment
- python -m pip install --upgrade pip
- pip install -r test_requirements.txt
- pip install .
# Test scripts
test_script:
- mypy broadbean --ignore-missing-imports
- cd tests
- pytest
| Make the conda install path globally known | Make the conda install path globally known
| YAML | mit | WilliamHPNielsen/broadbean |
9aec1d0026c84e8f1a27fec0503db728b05adf06 | .appveyor.yml | .appveyor.yml | environment:
global:
RANDOM_SEED: 0
matrix:
- PYTHON_MAJOR: 3
PYTHON_MINOR: 5
- PYTHON_MAJOR: 3
PYTHON_MINOR: 6
- PYTHON_MAJOR: 3
PYTHON_MINOR: 7
cache:
- .venv -> poetry.lock
install:
# Add Make and Python to the PATH
- copy C:\MinGW\bin\mingw32-make.exe C:\MinGW\bin\make.exe
- set PATH=%PATH%;C:\MinGW\bin
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%;%PATH%
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%\Scripts;%PATH%
# Install system dependencies
- set POETRY_PREVIEW=true
- curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
- set PATH=%USERPROFILE%\.poetry\bin;%PATH%
- make doctor
# Install project dependencies
- make install
build: off
test_script:
- make check
- make test
| environment:
global:
RANDOM_SEED: 0
matrix:
- PYTHON_MAJOR: 3
PYTHON_MINOR: 6
- PYTHON_MAJOR: 3
PYTHON_MINOR: 7
cache:
- .venv -> poetry.lock
install:
# Add Make and Python to the PATH
- copy C:\MinGW\bin\mingw32-make.exe C:\MinGW\bin\make.exe
- set PATH=%PATH%;C:\MinGW\bin
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%;%PATH%
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%\Scripts;%PATH%
# Install system dependencies
- set POETRY_PREVIEW=true
- curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
- set PATH=%USERPROFILE%\.poetry\bin;%PATH%
- make doctor
# Install project dependencies
- make install
build: off
test_script:
- make check
- make test
| Remove Python 3.5 from Windows build matrix | Remove Python 3.5 from Windows build matrix
| YAML | mit | jacebrowning/coverage-space-cli |
1367f70fbc16af76f1d77161bb8f769ff48c0348 | docs/_data/nav.yml | docs/_data/nav.yml | - title: Getting started
pages:
- title: Introduction
- title: Download
- title: Browsers & devices
- title: Options
- title: Flexbox
- title: Build tools
- title: Best practices
- title: Layout
pages:
- title: Overview
- title: Grid
- title: Media object
- title: Responsive utilities
- title: Content
pages:
- title: Reboot
- title: Typography
- title: Code
- title: Images
- title: Tables
- title: Figures
- title: Components
pages:
- title: Buttons
- title: Button group
- title: Button dropdown
- title: Forms
- title: Input group
- title: Dropdowns
- title: Jumbotron
- title: Label
- title: Alerts
- title: Card
- title: Navs
- title: Navbar
- title: Breadcrumb
- title: Pagination
- title: Progress
- title: List group
- title: Modal
- title: Scrollspy
- title: Tooltips
- title: Popovers
- title: Collapse
- title: Carousel
- title: Utilities
# - title: Extend
# pages:
# - title: Approach
# - title: Icon fonts
- title: About
pages:
- title: History
- title: Team
- title: Accessibility
- title: Brand
- title: License
- title: Translations
- title: Migration
| - title: Getting started
pages:
- title: Introduction
- title: Download
- title: Contents
- title: Browsers & devices
- title: JavaScript
- title: Options
- title: Flexbox
- title: Build tools
- title: Best practices
- title: Layout
pages:
- title: Overview
- title: Grid
- title: Media object
- title: Responsive utilities
- title: Content
pages:
- title: Reboot
- title: Typography
- title: Code
- title: Images
- title: Tables
- title: Figures
- title: Components
pages:
- title: Buttons
- title: Button group
- title: Button dropdown
- title: Forms
- title: Input group
- title: Dropdowns
- title: Jumbotron
- title: Label
- title: Alerts
- title: Card
- title: Navs
- title: Navbar
- title: Breadcrumb
- title: Pagination
- title: Progress
- title: List group
- title: Modal
- title: Scrollspy
- title: Tooltips
- title: Popovers
- title: Collapse
- title: Carousel
- title: Utilities
# - title: Extend
# pages:
# - title: Approach
# - title: Icon fonts
- title: About
pages:
- title: History
- title: Team
- title: Accessibility
- title: Brand
- title: License
- title: Translations
- title: Migration
| Add missing pages to "Getting started" TOC | Docs: Add missing pages to "Getting started" TOC
Fixes #17986
[skip sauce]
| YAML | mit | janseliger/bootstrap,inway/bootstrap,davethegr8/bootstrap,GerHobbelt/bootstrap,Delagen/bootstrap,abvalentine/bootstrap,SweetProcess/bootstrap,lemuelbarango/bootstrap,vsn4ik/bootstrap,SweetProcess/bootstrap,IdanCo/bootstrap,frostbitten/bootstrap,tagliala/bootstrap,n054/bootstrap,seanwu99/bootstrap,copperdesign/bootstrap,IdanCo/bootstrap,fschumann1211/bootstrap,hebbet/bootstrap,tibo66/bootstrap,david-schopf/bootstrap,n054/bootstrap,realcrowd/bootstrap,zalog/bootstrap,onenameio/rhythm-bootstrap,xt0rted/bootstrap,gijsbotje/bootstrap,igoynawamreh/bootstrap,afuno/bootstrap,tomlutzenberger/bootstrap,IdanCo/bootstrap,lipis/bootstrap,9-chirno/chirno,Hemphill/bootstrap-docs,realcrowd/bootstrap,stanwmusic/bootstrap,JumpLinkNetwork/bootstrap-backward,sealocal/bootstrap,igoynawamreh/bootstrap,tibo66/bootstrap,abvalentine/bootstrap,andresgalante/bootstrap,johnajacob/bootstrap,bardiharborow/bootstrap,GerHobbelt/bootstrap,abvalentine/bootstrap,seanwu99/bootstrap,slavanga/bootstrap,sealocal/bootstrap,sealocal/bootstrap,lipis/bootstrap,tibo66/bootstrap,inway/bootstrap,Scoutski/bootstrap,davethegr8/bootstrap,blockstack/blockstack-bootstrap,lemuelbarango/bootstrap,davethegr8/bootstrap,stanwmusic/bootstrap,seanwu99/bootstrap,9-chirno/chirno,wesamco/bootstrap-rtl,Scoutski/bootstrap,bardiharborow/bootstrap,edanbarak/bootstrap,TheFridayInstitute/bootstrap,Hemphill/bootstrap-docs,vsn4ik/bootstrap,tjkohli/bootstrap,n054/bootstrap,lemuelbarango/bootstrap,Hemphill/bootstrap-docs,andresgalante/bootstrap,afuno/bootstrap,supergibbs/bootstrap,wesamco/bootstrap-rtl,slavanga/bootstrap,joblocal/bootstrap,nice-fungal/bootstrap,afuno/bootstrap,edanbarak/bootstrap,wesamco/bootstrap-rtl,sealocal/bootstrap,Hightrack/bootstrap,wesamco/bootstrap-rtl,m5o/bootstrap,nice-fungal/bootstrap,slavanga/bootstrap,janseliger/bootstrap,coliff/bootstrap,Delagen/bootstrap,xt0rted/bootstrap,onenameio/rhythm-bootstrap,IdanCo/bootstrap,zalog/bootstrap,gijsbotje/bootstrap,blockstack/blockstack-bootstrap,johnajacob/bootstrap,Delagen/bootstrap,lemuelbarango/bootstrap,Scoutski/bootstrap,9-chirno/chirno,david-schopf/bootstrap,yuyokk/bootstrap,joblocal/bootstrap,stanwmusic/bootstrap,joblocal/bootstrap,creativewebjp/bootstrap,hebbet/bootstrap,Scoutski/bootstrap,TheFridayInstitute/bootstrap,seanwu99/bootstrap,stanwmusic/bootstrap,Hemphill/bootstrap-docs,andresgalante/bootstrap,supergibbs/bootstrap,hebbet/bootstrap,NCARB/bootstrap,tagliala/bootstrap,twbs/bootstrap,edanbarak/bootstrap,JumpLinkNetwork/bootstrap-backward,copperdesign/bootstrap,vitaligent/4,coliff/bootstrap,yuyokk/bootstrap,yuyokk/bootstrap,igoynawamreh/bootstrap,andresgalante/bootstrap,hebbet/bootstrap,GerHobbelt/bootstrap,joblocal/bootstrap,bootstrapbrasil/bootstrap,xt0rted/bootstrap,tjkohli/bootstrap,kvlsrg/bootstrap,gijsbotje/bootstrap,davethegr8/bootstrap,peterblazejewicz/bootstrap,janseliger/bootstrap,frostbitten/bootstrap,tagliala/bootstrap,jipexu/bootstrap,Hightrack/bootstrap,vitaligent/4,igoynawamreh/bootstrap,9-chirno/chirno,vitaligent/4,NCARB/bootstrap,Delagen/bootstrap,slavanga/bootstrap,peterblazejewicz/bootstrap,edanbarak/bootstrap,n054/bootstrap,bootstrapbrasil/bootstrap,blockstack/blockstack-bootstrap,copperdesign/bootstrap,Hightrack/bootstrap,janseliger/bootstrap,Lyricalz/bootstrap,bootstrapbrasil/bootstrap,supergibbs/bootstrap,tibo66/bootstrap,creativewebjp/bootstrap,TheFridayInstitute/bootstrap,inway/bootstrap,fschumann1211/bootstrap,zalog/bootstrap,lipis/bootstrap,onenameio/rhythm-bootstrap,kvlsrg/bootstrap,fschumann1211/bootstrap,kvlsrg/bootstrap,afuno/bootstrap,bardiharborow/bootstrap,frostbitten/bootstrap,tomlutzenberger/bootstrap,gijsbotje/bootstrap,realcrowd/bootstrap,johnajacob/bootstrap,vsn4ik/bootstrap,SweetProcess/bootstrap,JumpLinkNetwork/bootstrap-backward,jipexu/bootstrap,abvalentine/bootstrap,NCARB/bootstrap,fschumann1211/bootstrap,lipis/bootstrap,peterblazejewicz/bootstrap,SweetProcess/bootstrap,xt0rted/bootstrap,frostbitten/bootstrap,tomlutzenberger/bootstrap,creativewebjp/bootstrap,Lyricalz/bootstrap,supergibbs/bootstrap,creativewebjp/bootstrap,johnajacob/bootstrap,TheFridayInstitute/bootstrap,JumpLinkNetwork/bootstrap-backward,yuyokk/bootstrap,Lyricalz/bootstrap,m5o/bootstrap,jipexu/bootstrap,realcrowd/bootstrap,twbs/bootstrap,bardiharborow/bootstrap,copperdesign/bootstrap,jipexu/bootstrap,NCARB/bootstrap,Lyricalz/bootstrap,david-schopf/bootstrap,vsn4ik/bootstrap,nice-fungal/bootstrap |
ded7cd9e40629bdd56923081eeb503c7be6331e3 | config/worker.osx.yml | config/worker.osx.yml | json:
travis_build_environment:
use_tmpfs_for_builds: false
home: /Users/travis
group: staff
recipes:
- homebrew
- travis_build_environment::osx
- rvm::multi
| json:
travis_build_environment:
use_tmpfs_for_builds: false
home: /Users/travis
group: staff
rvm:
default: 1.9.3
rubies:
- name: 1.8.7
- name: 1.9.3
gems:
- bundler
- rake
recipes:
- homebrew
- travis_build_environment::osx
- rvm::multi
| Install 1.8.7 and 1.9.3 on OS X box | Install 1.8.7 and 1.9.3 on OS X box
| YAML | mit | travis-ci/travis-boxes |
c14747bd78760c5581ea6eb8633d44ce4d8b761e | .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: circleci/node:10.16.1
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
- image: circleci/mongo:4.0.5
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn add mongoose
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: yarn test
| # 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:12.13.0
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
- image: circleci/mongo:4.0.5
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn add mongoose
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: yarn test
| Update node.js version for circleci | Update node.js version for circleci
| YAML | mit | brendannee/node-gtfs,BlinkTagInc/node-gtfs,BlinkTagInc/node-gtfs,BlinkTagInc/node-gtfs |
c614b0a8ec4380a1b2819b3a891c96e7a6f8c300 | .circleci/config.yml | .circleci/config.yml | version: 2.0
jobs:
build:
docker:
- image: circleci/node:4.8.2
steps:
- checkout
- run:
name: Test
command: ./test/e2e.sh
| version: 2.0
jobs:
build:
docker:
- image: circleci/node:8
steps:
- checkout
- run:
name: Test
command: ./test/e2e.sh
| Use node 8 in build | Use node 8 in build
| YAML | mit | MaartenDesnouck/google-apps-script,MaartenDesnouck/google-apps-script |
33aa4d88ae052f894a203004217da1c4ac8c280b | .circleci/config.yml | .circleci/config.yml | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.2@sha256:398089ea890e222b56bc8fcc905df6caf89cf6cf9000148ce1d755210fbb4405
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
| # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.2@sha256:5b39ae733466100d9231a42f882e58df00f5bcf2caebaa45266aea01135a3963
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
| Update circleci/python:3.7.2 Docker digest to 5b39ae7 | Update circleci/python:3.7.2 Docker digest to 5b39ae7 | YAML | bsd-3-clause | kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler |
316e2ee49dfa85d1cba825b05f2084eeedfa90df | .circleci/config.yml | .circleci/config.yml | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.3@sha256:07d4860bef011cb9f133bdb967fc707be56780968db7091f2770e97bebfbfd44
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- cache-{{ checksum "Pipfile.lock" }}
- cache-
- run:
name: Install dependencies
command: |
python3 -m venv .venv
pip install --user pipenv
pipenv sync --dev
- save_cache:
key: cache-{{ checksum "Pipfile.lock" }}
paths:
- ~/.local
- ~/.cache
- run:
name: run tests
command: |
pipenv run flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID='1234'
export AWS_SECRET_ACCESS_KEY='5678'
pipenv run python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
| # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.3@sha256:d95601afe4bf164ac9356bef5a1fa4fe027e5cd95e65c846bf610be4dc2a4de3
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- cache-{{ checksum "Pipfile.lock" }}
- cache-
- run:
name: Install dependencies
command: |
python3 -m venv .venv
pip install --user pipenv
pipenv sync --dev
- save_cache:
key: cache-{{ checksum "Pipfile.lock" }}
paths:
- ~/.local
- ~/.cache
- run:
name: run tests
command: |
pipenv run flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID='1234'
export AWS_SECRET_ACCESS_KEY='5678'
pipenv run python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
| Update circleci/python:3.7.3 Docker digest to d95601a | Update circleci/python:3.7.3 Docker digest to d95601a
| YAML | bsd-3-clause | kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler |
9ffdafdf791d584de9385fddf0d6e4f43e15dcca | .circleci/matrix.yml | .circleci/matrix.yml | env:
- RUSTUP_TOOLCHAIN=1.15.0
- RUSTUP_TOOLCHAIN=1.16.0
- RUSTUP_TOOLCHAIN=1.17.0
command:
- export CARGO_TARGET_DIR="$PWD/target/$RUSTUP_TOOLCHAIN" REPORT_DIR="$PWD/test-reports/$RUSTUP_TOOLCHAIN" && cargo build && mkdir -p "$REPORT_DIR" && cargo test-junit --name="$REPORT_DIR/report"
| env:
- RUSTUP_TOOLCHAIN=1.15.0
- RUSTUP_TOOLCHAIN=1.16.0
- RUSTUP_TOOLCHAIN=1.17.0
command:
- export CARGO_TARGET_DIR="$PWD/target/$RUSTUP_TOOLCHAIN" REPORT_DIR="$PWD/test-reports/$RUSTUP_TOOLCHAIN" && cargo build --verbose && mkdir -p "$REPORT_DIR" && cargo test-junit --name="$REPORT_DIR/report"
| Make CircleCI Cargo build verbose | Make CircleCI Cargo build verbose
| YAML | mit | devurandom/libdrm-sys-rs,devurandom/libdrm-sys-rs,devurandom/libdrm-sys-rs |
0fa56115928d0782a691ff194527999e9ad4acc5 | packages/op/optional-args.yaml | packages/op/optional-args.yaml | homepage: ''
changelog-type: ''
hash: f3b5ea2354b1ec16153dfe46f1b4e61a9c324b93ce6ccd8550665c59622cc37f
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Optional function arguments
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
all-versions:
- 1.0.0
- 1.0.1
- 1.0.2
author: Gabriel Gonzalez
latest: 1.0.2
description-type: haddock
description: ! 'This library provides a type for specifying `Optional` function
arguments
Read the tutorial in "Data.Optional" to learn more'
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: 83f6a4c838bf011e85ea5573bfd4d7f8a8516d97c64d07135b1713526135aa39
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Optional function arguments
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
all-versions:
- 1.0.0
- 1.0.1
- 1.0.2
author: Gabriel Gonzalez
latest: 1.0.2
description-type: haddock
description: |-
This library provides a type for specifying `Optional` function
arguments
Read the tutorial in "Data.Optional" to learn more
license-name: BSD-3-Clause
| Update from Hackage at 2019-05-12T20:45:52Z | Update from Hackage at 2019-05-12T20:45:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f9764bbb9dcdee2954c617fe22057d423f8b077d | .erb-lint.yml | .erb-lint.yml | ---
linters:
ErbSafety:
enabled: true
Rubocop:
enabled: true
rubocop_config:
inherit_from:
- .rubocop.yml
Layout/InitialIndentation:
Enabled: false
Layout/TrailingBlankLines:
Enabled: false
Layout/TrailingWhitespace:
Enabled: false
Naming/FileName:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Metrics/LineLength:
Enabled: true
Lint/UselessAssignment:
Enabled: false
Rails/OutputSafety:
Enabled: true
| ---
linters:
ErbSafety:
enabled: true
Rubocop:
enabled: true
rubocop_config:
inherit_from:
- .rubocop.yml
Layout/InitialIndentation:
Enabled: false
Layout/TrailingBlankLines:
Enabled: false
Layout/TrailingWhitespace:
Enabled: false
Naming/FileName:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Metrics/LineLength:
Enabled: true
Lint/UselessAssignment:
Enabled: false
Rails/OutputSafety:
Enabled: false
| Use only ErbSafety to check ERB output safety | Use only ErbSafety to check ERB output safety
| YAML | mit | publify/publify,publify/publify,publify/publify |
b90c83634427fb341beed9411884fb4a6213e3d3 | tusk.yml | tusk.yml | ---
options:
fast:
usage: Skip slow linters/tests
type: bool
tasks:
bootstrap:
usage: Set up the app for first time use
run:
- command:
- go get -u gopkg.in/alecthomas/gometalinter.v1
- go get -u github.com/golang/dep/cmd/dep
- dep ensure
lint:
usage: Run the linter
options:
opts:
private: true
computed:
- when:
test: ${fast} = true
default: --fast
run:
- command: gometalinter.v1 --vendor ${opts} ./...
test:
usage: Run the linter and tests
options:
lint:
usage: Run the linter with the tests
default: true
type: bool
pre:
- name: lint
when:
test: ${lint} = true
run:
- command: go test $(go list ./... | grep -v '/vendor/')
| ---
options:
fast:
usage: Skip slow linters/tests
type: bool
tasks:
bootstrap:
usage: Set up the app for first time use
run:
- command:
- go get -u gopkg.in/alecthomas/gometalinter.v1
- go get -u github.com/golang/dep/cmd/dep
- dep ensure
lint:
usage: Run the linter
options:
opts:
private: true
computed:
- when:
test: ${fast} = true
default: --fast
run:
- command: gometalinter.v1 --vendor ${opts} ./...
test:
usage: Run the linter and tests
options:
lint:
usage: Run the linter with the tests
default: true
type: bool
pre:
- name: lint
when:
test: ${lint} = true
run:
- command: go test -cover $(go list ./... | grep -v '/vendor/')
| Add coverage to default test task | Add coverage to default test task
| YAML | mit | rliebz/tusk,rliebz/tusk |
5375bcc1cfb87764ad46ef4b09e11d5da556f7aa | .golangci.yml | .golangci.yml | run:
deadline: 5m
skip-files:
- "rice-box.go$"
issues:
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
max-issues-per-linter: 0
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
max-same-issues: 0
# We want to try and improve the comments in the k6 codebase, so individual
# non-golint items from the default exclusion list will gradually be addded
# to the exclude-rules below
exclude-use-default: false
exclude-rules:
# Exclude duplicate code checking in test files (due to common repeats in
# test setup code)
- path: _test\.go
linters:
- dupl
linters-settings:
govet:
check-shadowing: true
golint:
min-confidence: 0
gocyclo:
min-complexity: 25
maligned:
suggest-new: true
dupl:
threshold: 150
goconst:
min-len: 5
min-occurrences: 4
linters:
enable-all: true
disable:
- gochecknoinits
fast: false
| run:
deadline: 5m
skip-files:
- "rice-box.go$"
issues:
# Maximum issues count per one linter. Set to 0 to disable. Default is 50.
max-issues-per-linter: 0
# Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
max-same-issues: 0
# We want to try and improve the comments in the k6 codebase, so individual
# non-golint items from the default exclusion list will gradually be addded
# to the exclude-rules below
exclude-use-default: false
exclude-rules:
# Exclude duplicate code checking in test files (due to common repeats in
# test setup code)
- path: _test\.go
linters:
- dupl
exclude:
#TODO: remove this exclusion after https://github.com/golang/lint/issues/381
# is fixed by https://github.com/golang/lint/pull/380 or something else
- "should have a package comment, unless it's in another file for this package"
linters-settings:
govet:
check-shadowing: true
golint:
min-confidence: 0
gocyclo:
min-complexity: 25
maligned:
suggest-new: true
dupl:
threshold: 150
goconst:
min-len: 5
min-occurrences: 4
linters:
enable-all: true
disable:
- gochecknoinits
fast: false
| Disable the golint package comment check due to its inaccuracy | Disable the golint package comment check due to its inaccuracy
We can remove this exclusion after https://github.com/golang/lint/issues/381 is fixed by https://github.com/golang/lint/pull/380 or something else.
| YAML | agpl-3.0 | loadimpact/k6,loadimpact/k6 |
084bc03c8f2438d773e673dbe760592e036ffca5 | .github/workflows/auto-update.yml | .github/workflows/auto-update.yml | name: Auto Update
on:
# schedule:
# - cron: '*/5 * * * *'
workflow_dispatch:
jobs:
nix:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: cachix/install-nix-action@v8
- uses: cachix/cachix-action@v6
with:
name: vulkan-haskell
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- name: Init git
run: |
git config user.name 'Joe Hermaszewski'
git config user.email 'expipiplus1@users.noreply.github.com'
- run: ./update.sh
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
| name: Auto Update
on:
# schedule:
# - cron: '*/5 * * * *'
workflow_dispatch:
jobs:
nix:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: cachix/install-nix-action@v8
- uses: cachix/cachix-action@v6
with:
name: vulkan-haskell
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- uses: tibdex/github-app-token@v1
id: generate-token
with:
app_id: '${{ secrets.APP_ID }}'
private_key: '${{ secrets.APP_PRIVATE_KEY }}'
- name: Init git
run: |
git config user.name 'Three Of Twelve'
git config user.email 'expipiplus1@users.noreply.github.com'
- run: ./update.sh
- run: export VULKAN_VERSION=$(git -C generate-new/Vulkan-Docs describe --tags | head -n1)
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ steps.generate-token.outputs.token }}
delete-branch: true
branch: vulkan-updates-${{ env.VULKAN_VERSION }}
title: Update Vulkan to ${{ env.VULKAN_VERSION }}
| Use bot to open update PR | Use bot to open update PR
| YAML | bsd-3-clause | expipiplus1/vulkan,expipiplus1/vulkan,expipiplus1/vulkan |
c84420dad41e4ba186d1875486d9c4efac8bbcad | .github/workflows/bazel-test.yaml | .github/workflows/bazel-test.yaml | # Copyright 2021 Google LLC
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Run Bazel tests
on: [push, pull_request]
jobs:
bazel-versions:
name: All supported Bazel versions
strategy:
matrix:
# We don’t use the GitHub matrix support for the Emacs toolchain to
# allow Bazel to cache intermediate results between the test runs.
bazel: [4.0.0, 4.1.0, 4.2.0, 4.2.1, latest]
os: [ubuntu-latest, macos-latest]
runs-on: ${{matrix.os}}
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Install Bazelisk
uses: bazelbuild/setup-bazelisk@v1
- name: Install xmllint
run: sudo apt-get install libxml2-utils
if: runner.os == 'Linux'
- name: Run Bazel tests
run: make
env:
USE_BAZEL_VERSION: ${{matrix.bazel}}
| # Copyright 2021 Google LLC
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Run Bazel tests
on: [push, pull_request]
jobs:
bazel-versions:
name: All supported Bazel versions
strategy:
matrix:
# We don’t use the GitHub matrix support for the Emacs toolchain to
# allow Bazel to cache intermediate results between the test runs.
bazel: [4.0.0, 4.1.0, 4.2.0, 4.2.1, latest]
os: [ubuntu-latest, macos-latest]
runs-on: ${{matrix.os}}
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Install Bazelisk
uses: bazelbuild/setup-bazelisk@v1
- name: Install APT packages
run: sudo apt-get install libxml2-utils pylint
if: runner.os == 'Linux'
- name: Install Python packages
run: pip install pytype
- name: Run Bazel tests
run: make
env:
USE_BAZEL_VERSION: ${{matrix.bazel}}
| Install linters on the GitHub runners. | Install linters on the GitHub runners.
| YAML | apache-2.0 | phst/rules_elisp,phst/rules_elisp,phst/rules_elisp,phst/rules_elisp,phst/rules_elisp |
afd81a321dcb57bd9b12453c43f377ce434f874c | extras/docker/compose/docker-compose.yml | extras/docker/compose/docker-compose.yml | version: '3.7'
services:
web:
image: wger/devel:2.0-dev
volumes:
- type: bind
source: ../../../
target: /home/wger/src/
ports:
- 8000:8000
env_file:
- ./dev.env
depends_on:
- db
- cache
db:
image: postgres:12.0-alpine
volumes:
- type: bind
source: ./wger-postgres-data
target: /var/lib/postgresql/data/
environment:
- POSTGRES_USER=wger
- POSTGRES_PASSWORD=wger
- POSTGRES_DB=wger
cache:
image: memcached
volumes:
postgres_data:
| version: '3.7'
services:
web:
image: wger/devel:2.0-dev
volumes:
- type: bind
source: ../../../
target: /home/wger/src/
ports:
- 8000:8000
env_file:
- ./dev.env
depends_on:
- db
- cache
db:
image: postgres:12.0-alpine
volumes:
- wger-postgres-data:/var/lib/postgresql/data/
environment:
- POSTGRES_USER=wger
- POSTGRES_PASSWORD=wger
- POSTGRES_DB=wger
cache:
image: memcached
volumes:
wger-postgres-data:
| Use a volume to store postgres' data | Use a volume to store postgres' data
| YAML | agpl-3.0 | wger-project/wger,wger-project/wger,wger-project/wger,rolandgeider/wger,rolandgeider/wger,petervanderdoes/wger,petervanderdoes/wger,wger-project/wger,petervanderdoes/wger,rolandgeider/wger,petervanderdoes/wger,rolandgeider/wger |
7806f0a252e8d261fd27274fbcd4ab4338278bff | ansible/roles/solr6/vars/main.yml | ansible/roles/solr6/vars/main.yml | artifactId: "solr"
solr_version: "6.6.5"
solr_mode: ""
solr_zk_host: ""
| artifactId: "solr"
solr_version: "6.6.6"
solr_mode: ""
solr_zk_host: ""
| Use solr-6.6.6 for solr6 role | Use solr-6.6.6 for solr6 role
Signed-off-by: Peter Ansell <aaf1ec639befe0a570b950d5d6cbd0c6638a063e@yahoo.com>
| YAML | apache-2.0 | AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install |
dbf1583ed60bd816b739f96ba5b02d6947349a7b | lib/reevoocop.yml | lib/reevoocop.yml | LineLength:
Max: 120
Documentation:
Enabled: false
AndOr:
Enabled: false
# Allow use of empty lines to visually group code into 'paragraphs'
EmptyLines:
Enabled: false
Style/EmptyLinesAroundBlockBody:
Enabled: false
Style/EmptyLinesAroundClassBody:
Enabled: false
Style/EmptyLinesAroundMethodBody:
Enabled: false
Style/EmptyLinesAroundModuleBody:
Enabled: false
Style/ModuleFunction:
Enabled: false
TrailingComma:
Enabled: true
EnforcedStyleForMultiline: comma
SupportedStyles:
- comma
- no_comma
AllCops:
Exclude:
- !ruby/regexp /node_modules/
- !ruby/regexp /db\/schema\.rb/
| LineLength:
Max: 120
Metrics/MethodLength:
Max: 15
Documentation:
Enabled: false
AndOr:
Enabled: false
# Allow use of empty lines to visually group code into 'paragraphs'
EmptyLines:
Enabled: false
Style/EmptyLinesAroundBlockBody:
Enabled: false
Style/EmptyLinesAroundClassBody:
Enabled: false
Style/EmptyLinesAroundMethodBody:
Enabled: false
Style/EmptyLinesAroundModuleBody:
Enabled: false
Style/ModuleFunction:
Enabled: false
TrailingComma:
Enabled: true
EnforcedStyleForMultiline: comma
SupportedStyles:
- comma
- no_comma
AllCops:
Exclude:
- !ruby/regexp /node_modules/
- !ruby/regexp /db\/schema\.rb/
| Increase max method length to 15 lines | Increase max method length to 15 lines
| YAML | mit | reevoo/reevoocop |
6ece6962acebb06469e3e71ecdb2811992246af7 | _data/toc.yml | _data/toc.yml | entries:
- title: Entry 1
pages:
- title: Page 1
url: /page-1.html
sections:
- title: Section a
- title: Section b
- title: Section c
- title: Page 2
url: /page-2.html
sections:
- title: Section a
- title: Section b
- title: Section c
- title: Page 3
url: /page-3.html
sections:
- title: Section a
- title: Section b
- title: Section c
- title: Entry 2
pages:
- title: Page 4
url: /page-4.html
- title: Page 5
url: /page-5.html
- title: Entry 3
pages:
- title: Page 6
url: /page-6.html
- title: Page 7
url: /page-7.html
- title: Page 8
url: /page-8.html
| entries:
- title: Entry 1
pages:
- title: Page 1
url: page-1.html
sections:
- title: Section a
- title: Section b
- title: Section c
- title: Page 2
url: page-1.html
sections:
- title: Section a
- title: Section b
- title: Section c
- title: Page 3
url: page-1.html
sections:
- title: Section a
- title: Section b
- title: Section c
- title: Entry 2
pages:
- title: Page 4
url: page-1.html
- title: Page 5
url: page-1.html
- title: Entry 3
pages:
- title: Page 6
url: page-1.html
- title: Page 7
url: page-1.html
- title: Page 8
url: page-1.html
| Fix table of content relative link | Fix table of content relative link
| YAML | mit | cedricss/photon-book-creator |
24a0b54ab3c1507ca92ccb5858796dde406780e4 | parmed/meta.yaml | parmed/meta.yaml | package:
name: parmed
version: !!str 2.7.3
source:
fn: ParmEd-2.7.3.tar.gz
url: https://github.com/ParmEd/ParmEd/archive/2.7.3.tar.gz
build:
number: 0
requirements:
build:
- python
- numpy
- setuptools
run:
- python
- numpy
- pandas
- openmm
about:
home: http://parmed.github.io/ParmEd
license: GNU Lesser General Public License v2 or later (LGPLv2+)
summary: A package for parsing, interconverting, manipulating, and simulating biomolecular simulations with many packages
| package:
name: parmed
version: !!str 2.7.3
source:
fn: ParmEd-2.7.3.tar.gz
url: https://github.com/ParmEd/ParmEd/archive/2.7.3.tar.gz
build:
number: 0
requirements:
build:
- python
- numpy
- setuptools
run:
- python
- numpy
- pandas
about:
home: http://parmed.github.io/ParmEd
license: GNU Lesser General Public License v2 or later (LGPLv2+)
summary: A package for parsing, interconverting, manipulating, and simulating biomolecular simulations with many packages
| Remove parmed dependence on openmm | Remove parmed dependence on openmm
Since openmm is an optional dependency of parmed, can we remove the dependency?
We are deploying our own versions of openmm and meld built against specific cuda versions. Installing parmed from the omnia channel tries to pull in openmm, which leads to a conflict. | YAML | mit | omnia-md/conda-recipes,omnia-md/conda-recipes,peastman/conda-recipes,omnia-md/conda-recipes,peastman/conda-recipes,peastman/conda-recipes |
6d34c6263fb1fea94c7c5d77b153edbd50721eaa | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: content/veille
label: Veille
create: all
match: "**/*"
- type: directory
path: content/oss
label: Oss
create: all
match: "**/*"
- type: directory
path: content/blog
label: Blog
create: all
match: "**/*"
- type: directory
path: content/talks
label: Talks
create: all
match: "**/*"
- type: directory
path: content
label: Pages
create: all
match: "*"
upload_dir: static/uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.80.0
preview_output_directory: public
preview_docker_image: forestryio/hugo:latest
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: hugo server -D -E -F --renderToDisk -d public
version: 0.80.0
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: content/veille
label: Veille
create: all
match: "**/*"
- type: directory
path: content/oss
label: Oss
create: all
match: "**/*"
- type: directory
path: content/blog
label: Blog
create: all
match: "**/*"
- type: directory
path: content/talks
label: Talks
create: all
match: "**/*"
- type: directory
path: content
label: Pages
create: all
match: "*"
upload_dir: static/img
public_path: "/img"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.80.0
preview_output_directory: public
preview_docker_image: forestryio/hugo:latest
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: hugo server -D -E -F --renderToDisk -d public
version: 0.80.0
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | welcoMattic/welcoMattic.github.io,welcoMattic/welcoMattic.github.io |
5a007a0c3e2f3f8f391f5bab0afb0fdf7c4b3e75 | recipe/meta.yaml | recipe/meta.yaml | {% set name = "cca-babel" %}
{% set version = "1.4.0" %}
package:
name: {{ name }}
version: {{ version }}
source:
git_url: https://github.com/csdms/{{ name }}
patches:
- mac-inline.patch [osx]
- override-java.patch [unix]
requirements:
build:
- python >=2.7.13,<3
- numpy x.x [osx]
- numpy [linux]
- libxml2
- gcc
- isl <=0.12.2
- libgcc
- libgfortran
- chasm
- libparsifal
- libtool
- pkg-config [osx]
run:
- python >=2.7.13,<3
- numpy x.x [osx]
- numpy [linux]
- libxml2
- gcc
- isl <=0.12.2
- libgcc
- libgfortran
- chasm
- libparsifal
- libtool
- pkg-config [osx]
build:
number: 2
script_env:
- JAVA_HOME
- CC
- CXX
- FC
about:
home: https://github.com/csdms/cca-babel
summary: |
Babel is a language interoperability tool intended for use by
the high-performance scientific computing community.
license: GNU Lesser General Public License v2.1
| {% set name = "cca-babel" %}
{% set version = "1.4.0" %}
package:
name: {{ name }}
version: {{ version }}
source:
git_url: https://github.com/csdms/{{ name }}
patches:
- mac-inline.patch [osx]
- override-java.patch [unix]
requirements:
build:
- python >=2.7.13,<3
- numpy x.x
- libxml2
- gcc
- isl <=0.12.2
- libgcc
- libgfortran
- chasm
- libparsifal
- libtool
- pkg-config [osx]
run:
- python >=2.7.13,<3
- numpy x.x
- libxml2
- gcc
- isl <=0.12.2
- libgcc
- libgfortran
- chasm
- libparsifal
- libtool
- pkg-config [osx]
build:
number: 2
script_env:
- JAVA_HOME
- CC
- CXX
- FC
about:
home: https://github.com/csdms/cca-babel
summary: |
Babel is a language interoperability tool intended for use by
the high-performance scientific computing community.
license: GNU Lesser General Public License v2.1
| Build with multiple numpy versions on linux, mac. | Build with multiple numpy versions on linux, mac.
| YAML | mit | csdms-stack/cca-babel-recipe |
f5e326bc6d661efb017709229cf296927e97d93e | recipe/meta.yaml | recipe/meta.yaml | package:
name: conda-verify
version: "0.2.1"
source:
path: ../
requirements:
build:
- python
- setuptools
run:
- python
build:
script: python setup.py install
about:
home: https://github.com/conda/conda-verify
license: BSD | package:
name: conda-verify
version: "2.0.1"
source:
path: ../
requirements:
build:
- python
- setuptools
run:
- python
build:
script: python setup.py install
about:
home: https://github.com/conda/conda-verify
license: BSD
license_file: LICENSE.txt | Fix version number typo and add license_file to about | Fix version number typo and add license_file to about
| YAML | bsd-3-clause | mandeep/conda-verify |
77e6e2a2b57a59a00a7e18beeb5d7d3381df2973 | .github/workflows/dev-build.yml | .github/workflows/dev-build.yml | name: Build Dev
on: push
jobs:
main:
name: "Build the EW project"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-
- name: Install dependencies
run: |
npm install
- name: Build the project
run: |
npm run build -- --configuration=mobile
- name: Install Snapcraft
uses: samuelmeuli/action-snapcraft@v1
with:
snapcraft_token: ${{ secrets.snapcraft_token_edge }}
- name: Install dependencies
run: |
npm install -g cordova
- name: Build packages
run: |
cordova platform add electron@^3.1.0
cp res/electron/build-snap-dev.json build.json
cordova build electron --no-telemetry --edge
env:
GH_TOKEN: '${{ secrets.GH_TOKEN }}'
- name: Publish Snap
run: |
FILE=$(ls platforms/electron/build/*.snap)
for i in $FILE
do
snapcraft upload --release=edge $i
done
if: ${{ github.ref == 'refs/heads/master' }}
| name: Build Dev
on: push
env:
node: 18
electron: ${{ env.electron }}
jobs:
main:
name: "Build the EW project"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ env.node }}
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-
- name: Install dependencies
run: |
npm install
- name: Build the project
run: |
npm run build -- --configuration=mobile
- name: Install Snapcraft
uses: samuelmeuli/action-snapcraft@v1
with:
snapcraft_token: ${{ secrets.snapcraft_token_edge }}
- name: Install dependencies
run: |
npm install -g cordova
- name: Build packages
run: |
cordova platform add electron@^${{ env.electron }}
cp res/electron/build-snap-dev.json build.json
cordova build electron --no-telemetry --edge
env:
GH_TOKEN: '${{ secrets.GH_TOKEN }}'
- name: Publish Snap
run: |
FILE=$(ls platforms/electron/build/*.snap)
for i in $FILE
do
snapcraft upload --release=edge $i
done
if: ${{ github.ref == 'refs/heads/master' }}
| Use an env var for node and electron version | Use an env var for node and electron version
| YAML | agpl-3.0 | V-Paranoiaque/Ellas-War,V-Paranoiaque/Ellas-War,V-Paranoiaque/Ellas-War,V-Paranoiaque/Ellas-War |
6b1f870e7d15ff1a419fb27f6a9071b49c4f3698 | src/site/_config.yml | src/site/_config.yml | # For AppEngine
safe: false
port: 8081
source: site
destination: appengine/build/static
markdown: kramdown
permalink: /articles/:title.html
baseurl: /web
fundamentals: /fundamentals
url: /web
highlighter: pygments
pygments: true
spotlights: false
github:
root: https://github.com/Google/WebFundamentals
content: tree/master/src/site
include_open_html: true
custom:
kramdown:
toc_levels: "2"
include: ['.htaccess']
exclude: ['config.rb']
# comment this for plain jekyll serve usage.
langs_available: ['ko']
sample_link_base: "/web/fundamentals/resources/samples/" | # For AppEngine
safe: false
port: 8081
source: site
destination: appengine/build/static
markdown: kramdown
permalink: /articles/:title.html
baseurl: /web
fundamentals: /web/fundamentals
url: /web
highlighter: pygments
pygments: true
spotlights: false
github:
root: https://github.com/Google/WebFundamentals
content: tree/master/src/site
include_open_html: true
custom:
kramdown:
toc_levels: "2"
include: ['.htaccess']
exclude: ['config.rb']
# comment this for plain jekyll serve usage.
langs_available: ['ko']
sample_link_base: "/web/fundamentals/resources/samples/" | Update base url on config | Update base url on config
| YAML | apache-2.0 | agektmr/WebFundamentals,abdshomad/WebFundamentals,beaufortfrancois/WebFundamentals,SungwonKim/WebFundamentals,sonyarianto/WebFundamentals,jeffposnick/WebFundamentals,lucab85/WebFundamentals,ebidel/WebFundamentals,jeffposnick/WebFundamentals,abdshomad/WebFundamentals,lucab85/WebFundamentals,beaufortfrancois/WebFundamentals,samdutton/WebFundamentals,abdshomad/WebFundamentals,agektmr/WebFundamentals,samdutton/WebFundamentals,jeffposnick/WebFundamentals,ebidel/WebFundamentals,sonyarianto/WebFundamentals,robdodson/WebFundamentals,beaufortfrancois/WebFundamentals,samthor/WebFundamentals,sonyarianto/WebFundamentals,SungwonKim/WebFundamentals,yoichiro/WebFundamentals,google/WebFundamentals,robdodson/WebFundamentals,jeffposnick/WebFundamentals,myakura/WebFundamentals,samdutton/WebFundamentals,SungwonKim/WebFundamentals,google/WebFundamentals,yoichiro/WebFundamentals,myakura/WebFundamentals,lucab85/WebFundamentals,ebidel/WebFundamentals,google/WebFundamentals,google/WebFundamentals,agektmr/WebFundamentals,yoichiro/WebFundamentals,ebidel/WebFundamentals,sonyarianto/WebFundamentals,jeffposnick/WebFundamentals,abdshomad/WebFundamentals,myakura/WebFundamentals,yoichiro/WebFundamentals,samthor/WebFundamentals,samdutton/WebFundamentals,SungwonKim/WebFundamentals,lucab85/WebFundamentals,myakura/WebFundamentals,samthor/WebFundamentals,beaufortfrancois/WebFundamentals,samthor/WebFundamentals,robdodson/WebFundamentals,yoichiro/WebFundamentals,agektmr/WebFundamentals,beaufortfrancois/WebFundamentals,SungwonKim/WebFundamentals,robdodson/WebFundamentals |
3dc2559a0b2b245ea684543c04a5f2a7ebba8744 | devtools/conda-recipe/meta.yaml | devtools/conda-recipe/meta.yaml | package:
name: yank
version: !!str 0.0.0
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- cython
- numpy
- scipy
- setuptools
- netcdf4
- openmm
- openmmtools
- pymbar
- ambermini
- docopt
- gaff2xml
- jinja2
run:
- python
- pandas
- numpy
- scipy
- cython
- netcdf4
- openmm
- openmmtools
- pymbar
- ambermini
- docopt
- gaff2xml
- mpi4py
- pyyaml
- jinja2
- cluster_utils
test:
requires:
- nose
imports:
- yank
commands:
- nosetests yank --nocapture --verbosity=2 --with-doctest
- which yank
- yank --help
about:
home: https://github.com/choderalab/yank
license: GNU Lesser General Public License v2 or later (LGPLv2+)
| package:
name: yank
version: !!str 0.0.0
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- cython
- numpy
- scipy
- setuptools
- netcdf4
- openmm
- openmmtools
- pymbar
- ambermini
- docopt
- gaff2xml
- jinja2
run:
- python
- pandas
- numpy
- scipy
- cython
- netcdf4
- openmm
- openmmtools
- pymbar
- ambermini
- docopt
- gaff2xml
- mpi4py
- pyyaml
- jinja2
- cluster_utils
test:
requires:
- nose
imports:
- yank
commands:
- nosetests yank --nocapture --verbosity=2 --with-doctest -a '!slow'
- which yank
- yank --help
about:
home: https://github.com/choderalab/yank
license: GNU Lesser General Public License v2 or later (LGPLv2+)
| Add flag for skipping slow tests. | Add flag for skipping slow tests.
| YAML | mit | choderalab/yank,andrrizzi/yank,choderalab/yank,andrrizzi/yank,andrrizzi/yank |
4465ce22ca0fa6209458c5efae5add63c77a3f18 | packages/as/asn1-codec.yaml | packages/as/asn1-codec.yaml | homepage: https://github.com/andrewthad/asn1-codec
changelog-type: ''
hash: 70ec2a9e531b1356127479fdeef9e3497a226ffddb544963188a65c856d816d8
test-bench-deps:
test-framework-hunit: -any
bytestring: -any
test-framework: -any
base: -any
text: -any
asn1-codec: -any
HUnit: -any
base16-bytestring: -any
aeson: -any
vector: -any
directory: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Encode and decode ASN.1
changelog: ''
basic-deps:
bytestring: -any
stm: -any
base: ! '>=4.9 && <5'
text: -any
network: -any
integer-gmp: -any
memory: -any
containers: -any
contravariant: -any
cryptonite: -any
hashable: -any
pretty: -any
vector: -any
all-versions:
- '0.1.0'
- '0.2.0'
author: Andrew Martin
latest: '0.2.0'
description-type: haddock
description: Add a better description later
license-name: BSD3
| homepage: https://github.com/andrewthad/asn1-codec
changelog-type: ''
hash: 09355f6ff521412fe003ba563e4de48e9256b31728b00589814f816840043534
test-bench-deps:
test-framework-hunit: -any
bytestring: -any
test-framework: -any
base: -any
text: -any
asn1-codec: -any
HUnit: -any
base16-bytestring: -any
aeson: -any
vector: -any
directory: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Encode and decode ASN.1
changelog: ''
basic-deps:
bytestring: -any
stm: -any
base: ! '>=4.9 && <4.12'
text: -any
network: -any
integer-gmp: -any
memory: -any
containers: -any
contravariant: -any
cryptonite: -any
hashable: -any
pretty: -any
vector: -any
all-versions:
- '0.1.0'
- '0.2.0'
author: Andrew Martin
latest: '0.2.0'
description-type: haddock
description: Add a better description later
license-name: BSD3
| Update from Hackage at 2018-10-01T11:46:03Z | Update from Hackage at 2018-10-01T11:46:03Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1450f06472a5621ba3dfd702705a6d0c3f2685cf | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- jruby-head
- ruby-head
- jruby-9.0.1.0
- "2.2"
- "2.1"
- "2.0.0"
- jruby-19mode
gemfile:
- gemfiles/ar42.gemfile
- gemfiles/ar41.gemfile
- gemfiles/ar40.gemfile
- gemfiles/ar32.gemfile
env:
global:
- JRUBY_OPTS="--dev"
matrix:
- ADAPTER="postgresql"
- ADAPTER="derby"
- ADAPTER="sqlite3"
matrix:
allow_failures:
- rvm: ruby-head
gemfile: gemfiles/ar40.gemfile
- rvm: ruby-head
gemfile: gemfiles/ar32.gemfile
| language: ruby
sudo: false
rvm:
- jruby-head
- ruby-head
- jruby-9.0.1.0
- "2.2"
- "2.1"
- "2.0.0"
- jruby-19mode
gemfile:
- gemfiles/ar42.gemfile
- gemfiles/ar41.gemfile
- gemfiles/ar40.gemfile
- gemfiles/ar32.gemfile
env:
- ADAPTER="postgresql"
- ADAPTER="derby"
- ADAPTER="sqlite3"
matrix:
allow_failures:
- rvm: ruby-head
gemfile: gemfiles/ar40.gemfile
- rvm: ruby-head
gemfile: gemfiles/ar32.gemfile
| Revert JRuby setup since it made no difference | Revert JRuby setup since it made no difference | YAML | mit | donv/activerecord-time |
b4e0708eb4f053dc9a99542e02f4ec1904b4a3cc | packages/fr/FractalArt.yaml | packages/fr/FractalArt.yaml | homepage: https://github.com/TomSmeets/FractalArt
changelog-type: ''
hash: 48d930dade2bd4a6227afe64520227357a9d829806e0f88726453c22609a09a9
test-bench-deps: {}
maintainer: Tom.TSmeets@Gmail.com
synopsis: Generates colorful wallpapers
changelog: ''
basic-deps:
JuicyPixels: ! '>=3.2 && <3.3'
mwc-random: ! '>=0.13 && <0.14'
base: ! '>=4.7 && <4.9'
filepath: ! '>=1.3 && <1.5'
random: ! '>=1.0 && <1.2'
primitive: ! '>=0.5 && <0.6'
vector: ! '>=0.10 && <0.11'
directory: ! '>=1.2 && <1.3'
all-versions:
- '0.2.0.0'
author: Tom
latest: '0.2.0.0'
description-type: haddock
description: This application generates colorful images as a wallpaper
license-name: MIT
| homepage: https://github.com/TomSmeets/FractalArt
changelog-type: ''
hash: 5ce975b8ccd2d1ed165abada3d4b8af27d8bac02783595343aac28a6d7617b74
test-bench-deps: {}
maintainer: Tom.TSmeets@Gmail.com
synopsis: Generates colorful wallpapers
changelog: ''
basic-deps:
JuicyPixels: ! '>=3.2 && <3.3'
mwc-random: ! '>=0.13 && <0.14'
base: ! '>=4.7 && <4.9'
filepath: ! '>=1.3 && <1.5'
random: ! '>=1.0 && <1.2'
primitive: ! '>=0.5 && <0.6'
vector: ! '>=0.10 && <0.11'
directory: ! '>=1.2 && <1.3'
all-versions:
- '0.2.0.0'
author: Tom
latest: '0.2.0.0'
description-type: haddock
description: This application generates colorful images as a wallpaper
license-name: MIT
| Update from Hackage at 2015-12-21T15:15:52+0000 | Update from Hackage at 2015-12-21T15:15:52+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
5e44badbb582ef8daa96885346fa1542d09b546f | packages/gh/ghc-bignum.yaml | packages/gh/ghc-bignum.yaml | homepage: ''
changelog-type: markdown
hash: 5a5725f5aeff2d6ddd0022a009bb3a87d6ac4bbfd02e88dcd93ded2b13e1475b
test-bench-deps: {}
maintainer: libraries@haskell.org
synopsis: GHC BigNum library
changelog: |
# Changelog for `ghc-bignum` package
## 1.2
- Moved naturalToDouble# and naturalToFloat# to `base` package
## 1.1
- Moved integerToDouble# and integerToFloat# to `base` package with fixed
rounding (#15926, #17231, #17782)
- Added Eq and Ord instances for BigNat (#19647)
- Bump in-tree GMP to version 6.2.1
- Support for autoconf >= 2.70 especially on Windows (#19189)
- Fixed extra-source-files in .cabal file
- Fixed incorrect declaration in .hs-boot file (#19638)
basic-deps:
ghc-prim: '>=0.5.1.0 && <0.9'
all-versions:
- '1.0'
- '1.2'
author: Sylvain Henry
latest: '1.2'
description-type: haddock
description: |-
This package provides the low-level implementation of the standard
'BigNat', 'Natural' and 'Integer' types.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: markdown
hash: 5a5725f5aeff2d6ddd0022a009bb3a87d6ac4bbfd02e88dcd93ded2b13e1475b
test-bench-deps: {}
maintainer: libraries@haskell.org
synopsis: GHC BigNum library
changelog: |
# Changelog for `ghc-bignum` package
## 1.2
- Moved naturalToDouble# and naturalToFloat# to `base` package
## 1.1
- Moved integerToDouble# and integerToFloat# to `base` package with fixed
rounding (#15926, #17231, #17782)
- Added Eq and Ord instances for BigNat (#19647)
- Bump in-tree GMP to version 6.2.1
- Support for autoconf >= 2.70 especially on Windows (#19189)
- Fixed extra-source-files in .cabal file
- Fixed incorrect declaration in .hs-boot file (#19638)
basic-deps:
ghc-prim: '>=0.5.1.0 && <0.9'
all-versions:
- '1.0'
- '1.1'
- '1.2'
author: Sylvain Henry
latest: '1.2'
description-type: haddock
description: |-
This package provides the low-level implementation of the standard
'BigNat', 'Natural' and 'Integer' types.
license-name: BSD-3-Clause
| Update from Hackage at 2022-04-11T09:29:28Z | Update from Hackage at 2022-04-11T09:29:28Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ad47ca4cbd3f158b50834649077832689e641618 | buildspec.yml | buildspec.yml | version: 0.2
phases:
install:
commands:
- pip install -r requirements.txt
build:
commands:
- pytest test
artifacts:
files:
- stringer
- permutations_cli.py
- permutations_app.py
- log_redaction_cli.py
| version: 0.2
phases:
install:
commands:
- pip install -r requirements.txt
build:
commands:
- pytest test
artifacts:
files:
- stringer/**/*
- permutations_cli.py
- permutations_app.py
- log_redaction_cli.py
| Edit to include the directory for stringer and verified with UI that this worked. Publish to test through the service. | Edit to include the directory for stringer and verified with UI that this worked. Publish to test through the service.
| YAML | apache-2.0 | kalaboster/stringer,kalaboster/stringer |
c321a9c8cfd6a7d32004efa119d09131c1ea596a | test-environment.yml | test-environment.yml | name: skantest
dependencies:
- python>=3.6*
- setuptools>=19.6*
- numba>=0.29
- numpy>=1.11*
- numpydoc>=0.5*
- scipy>=1.0*
- scikit-image>=0.14*
- networkx>=2.0*
- matplotlib>=3.0.2*
- pandas>=0.24*
- openpyxl>=2.4*
- xlrd>=1.0*
- pytest>=3*
- coverage>=4.0
- pytest-cov>=2.2
- click>=0.5
- pip:
- hypothesis>=3.6
- imageio>=2.0
- tqdm>=4.11
- nose>=1.3
- nb2plots>=0.5
- sphinx_rtd_theme
- seaborn>=0.9
| name: skantest
dependencies:
- python>=3.6*
- setuptools>=19.6*
- numba>=0.29
- numpy>=1.11*
- numpydoc>=0.5*
- scipy>=1.0*
- scikit-image>=0.14*
- networkx>=2.0*
- matplotlib>=3.0.2*
- pandas>=0.24*
- openpyxl>=2.4*
- xlrd>=1.0*
- pytest>=3*
- coverage>=4.0
- pytest-cov>=2.2
- click>=0.5
- pip:
- tifffile>=2019.*
- hypothesis>=3.6
- imageio>=2.0
- tqdm>=4.11
- nose>=1.3
- nb2plots>=0.5
- sphinx_rtd_theme
- seaborn>=0.9
| Add tifffile to test env | Add tifffile to test env
| YAML | bsd-3-clause | jni/skan |
e1950a13ca9089da079e6e01bd163d8a525ad9a8 | packages/ps/psql-utils.yaml | packages/ps/psql-utils.yaml | homepage: https://github.com/Lupino/yuntan-common/tree/master/psql-utils#readme
changelog-type: ''
hash: 8486320f274c4a77e75564728866b59d6224d29fcea7419b842ccd483579a42f
test-bench-deps: {}
maintainer: lmjubuntu@gmail.com
synopsis: PostgreSQL Simple util tools.
changelog: ''
basic-deps:
base: '>=4.7 && <5'
time: -any
resource-pool: -any
postgresql-simple: -any
hashable: -any
aeson: -any
all-versions:
- 0.1.0.0
- 0.2.0.0
author: Li Meng Jun
latest: 0.2.0.0
description-type: haddock
description: An easy way to use postgresql-simple library.
license-name: BSD-3-Clause
| homepage: https://github.com/Lupino/yuntan-common/tree/master/psql-utils#readme
changelog-type: ''
hash: 268cbbbf725e8065d0336062d6075aec86470ea5f75ecd4f64081ba6a0d7a435
test-bench-deps: {}
maintainer: lmjubuntu@gmail.com
synopsis: PostgreSQL Simple util tools.
changelog: ''
basic-deps:
base: '>=4.7 && <5'
time: -any
resource-pool: -any
postgresql-simple: -any
hashable: -any
aeson: -any
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.2.0.1
author: Li Meng Jun
latest: 0.2.0.1
description-type: haddock
description: An easy way to use postgresql-simple library.
license-name: BSD-3-Clause
| Update from Hackage at 2020-09-14T01:43:34Z | Update from Hackage at 2020-09-14T01:43:34Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e6284b69acbd290d7fc170a8cc8f0acbb7800792 | packages/ti/tidal-midi.yaml | packages/ti/tidal-midi.yaml | homepage: http://tidal.lurk.org/
changelog-type: ''
hash: ebd4882c7810fa9ad9a2b046aa5dc5fa24a213079289efde650717a65bf95627
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -any
tidal: ==0.8
PortMidi: ==0.1.6.0
transformers: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.1'
- '0.6'
- '0.8'
author: Alex McLean
latest: '0.8'
description-type: haddock
description: MIDI support for Tidal. Supports Volca Keys, Bass and Beats and other
synths. Interface is likely to change significantly.
license-name: GPL-3
| homepage: http://tidal.lurk.org/
changelog-type: ''
hash: fe86dee6e6fa0be36385d2c2f0b9ebfc812324a351a0d0d076290fc32bd568e4
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -any
tidal: ==0.8.2
PortMidi: ==0.1.6.0
transformers: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.1'
- '0.6'
- '0.8'
- '0.8.2'
author: Alex McLean
latest: '0.8.2'
description-type: haddock
description: MIDI support for Tidal. Supports Volca Keys, Bass and Beats and other
synths. Interface is likely to change significantly.
license-name: GPL-3
| Update from Hackage at 2016-12-20T09:28:52Z | Update from Hackage at 2016-12-20T09:28:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
401d0c99baba631da754bb15d0e493280e618bc9 | config/prisons/HOI-high-down.yml | config/prisons/HOI-high-down.yml | ---
name: High Down
nomis_id: HOI
address:
- Sutton Lane
- SM2 5PJ
email: socialvisits.highdown@hmps.gsi.gov.uk
enabled: true
estate: High Down
phone: 020 7147 6570
slot_anomalies:
2015-12-21:
- 1400-1600
2015-12-28:
- 1400-1600
slots:
sat:
- 1400-1600
sun:
- 1400-1600
thu:
- 1400-1600
tue:
- 1400-1600
wed:
- 1400-1600
unbookable:
- 2015-10-14
- 2015-11-11
- 2015-11-18
- 2015-12-09
- 2015-12-16
- 2015-12-26
| ---
name: High Down
nomis_id: HOI
address:
- Sutton Lane
- SM2 5PJ
email: socialvisits.highdown@hmps.gsi.gov.uk
enabled: true
estate: High Down
phone: 020 7147 6570
slot_anomalies:
2015-12-21:
- 1400-1600
2015-12-28:
- 1400-1600
2015-12-09:
- 1400-1600
slots:
sat:
- 1400-1600
sun:
- 1400-1600
thu:
- 1400-1600
tue:
- 1400-1600
wed:
- 1400-1600
unbookable:
- 2015-10-14
- 2015-11-11
- 2015-11-18
- 2015-12-09
- 2015-12-16
- 2015-12-26
| Update High Down 9th December | Update High Down 9th December
Adding slot anomaly for 9th December | YAML | mit | ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits |
a9827033fb064dc7edfff9cebee0c40d2d0fcd19 | spec/dummy/config/database.yml | spec/dummy/config/database.yml | development:
adapter: mysql2
encoding: utf8
reconnect: false
database: monologue_development
pool: 5
username: david
password: davidsql
test:
adapter: mysql2
encoding: utf8
reconnect: false
database: monologue_test
pool: 5
username: david
password: davidsql
| development:
adapter: mysql2
encoding: utf8
reconnect: false
database: monologue_development
pool: 5
username: root
password:
test:
adapter: mysql2
encoding: utf8
reconnect: false
database: monologue_test
pool: 5
username: root
password:
| Reset password for db in dummy app | Reset password for db in dummy app
| YAML | mit | jaimerson/monologue,caitlingoldman/monologue,thiesa/monologue,kyle-annen/monologue,bertomartin/monologue,jipiboily/monologue,abreckner/monologue,caitlingoldman/monologue,bertomartin/monologue,caitlingoldman/monologue,bertomartin/monologue,abreckner/monologue,jaimerson/monologue,kyle-annen/monologue,tam-vo/monologue,thiesa/monologue,GapIntelligence/monologue,tam-vo/monologue,paresharma/monologue,tam-vo/monologue,paresharma/monologue,jaimerson/monologue,paresharma/monologue,jipiboily/monologue,kyle-annen/monologue,munirent/monologue,GapIntelligence/monologue,GapIntelligence/monologue,abreckner/monologue,thiesa/monologue,munirent/monologue,jipiboily/monologue |
1f74f229268b8e3051fcd7d6b2e0a0a4a1ed4dc3 | roles/dev/defaults/main.yml | roles/dev/defaults/main.yml | ---
dev_bashrc_path: "{{ ansible_env.HOME }}/.bashrc"
dev_jetbrains_applications:
- { name: goland, version: '2021.2.2', url_prefix: 'https://download.jetbrains.com/go/goland-' }
- { name: idea, version: '2021.2.2', url_prefix: 'https://download.jetbrains.com/idea/ideaIU-' }
- { name: pycharm, version: '2021.2.2', url_prefix: 'https://download.jetbrains.com/python/pycharm-professional-' }
- { name: rubymine, version: '2021.2.2', url_prefix: 'https://download.jetbrains.com/ruby/RubyMine-' }
- { name: webstorm, version: '2021.2.2', url_prefix: 'https://download.jetbrains.com/webstorm/WebStorm-' }
| ---
dev_bashrc_path: "{{ ansible_env.HOME }}/.bashrc"
dev_jetbrains_applications:
- { name: goland, version: '2020.2.4', url_prefix: 'https://download.jetbrains.com/go/goland-' }
- { name: idea, version: '2020.2.4', url_prefix: 'https://download.jetbrains.com/idea/ideaIU-' }
- { name: pycharm, version: '2020.2.5', url_prefix: 'https://download.jetbrains.com/python/pycharm-professional-' }
- { name: rubymine, version: '2020.2.4', url_prefix: 'https://download.jetbrains.com/ruby/RubyMine-' }
- { name: webstorm, version: '2020.2.4', url_prefix: 'https://download.jetbrains.com/webstorm/WebStorm-' }
| Downgrade to last licensed version of jetbrains apps | Downgrade to last licensed version of jetbrains apps
| YAML | mit | andornaut/ansible-workstation |
c8b4a4b9642a65bcc20b5982be42ea9abf37571c | examples/simpleagent/config.yml | examples/simpleagent/config.yml | ---
:user: nanite
:pass: testing
:vhost: /nanite
| ---
:user: nanite
:pass: testing
:vhost: /nanite
:identity: simpleagent | Add identity for simpleagent example nanite so it does not produce log files with UUIDs | Add identity for simpleagent example nanite so it does not produce log files with UUIDs
| YAML | apache-2.0 | raphael/nanite,beni55/nanite,ezmobius/nanite |
13f87b8a18196582806dc4c66ec74d6514422c8a | manifest.jenkins.yml | manifest.jenkins.yml | applications:
- name: pz-gateway
host: pz-gateway
path: pz-gateway.jar
domain: stage.geointservices.io
memory: 512M
instances: 1
timeout: 80
| applications:
- name: pz-gateway
host: pz-gateway
path: pz-gateway.jar
buildpack: java_buildpack_offline
domain: stage.geointservices.io
memory: 512M
instances: 1
timeout: 80
| Revert "Attempt not specifying a buildpack" | Revert "Attempt not specifying a buildpack"
This reverts commit 7ab9134ef8c1104d7cba25d978846ce6211c62f9.
| YAML | apache-2.0 | venicegeo/pz-gateway,venicegeo/pz-gateway,venicegeo/pz-gateway |
927526084c5148362699245e6a59a66f709337d2 | metadata/com.flasskamp.subz.yml | metadata/com.flasskamp.subz.yml | Categories:
- Money
License: MIT
AuthorName: Christian Flaßkamp
SourceCode: https://codeberg.org/epinez/Subz/
IssueTracker: https://codeberg.org/epinez/Subz/issues
AutoName: Subz
RepoType: git
Repo: https://codeberg.org/epinez/Subz.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0-fdroid-fix2
subdir: android/app
gradle:
- yes
AutoUpdateMode: Version v%v-fdroid
UpdateCheckMode: Tags
CurrentVersion: '1.0'
CurrentVersionCode: 1
| Categories:
- Money
License: MIT
AuthorName: Christian Flaßkamp
SourceCode: https://codeberg.org/epinez/Subz/
IssueTracker: https://codeberg.org/epinez/Subz/issues
AutoName: Subz
RepoType: git
Repo: https://codeberg.org/epinez/Subz.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0-fdroid-fix2
subdir: android/app
gradle:
- yes
- versionName: '1.1'
versionCode: 2
commit: v1.1-fdroid
subdir: android/app
gradle:
- yes
AutoUpdateMode: Version v%v-fdroid
UpdateCheckMode: Tags
CurrentVersion: '1.1'
CurrentVersionCode: 2
| Update Subz to 1.1 (2) | Update Subz to 1.1 (2)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
58ae6b4ba6bf7c2e5a87c2d86dda8ed164bc0f9a | metadata/fr.covidat.android.yml | metadata/fr.covidat.android.yml | Categories:
- Navigation
- Sports & Health
License: CECILL-2.1
AuthorName: Codefish
AuthorEmail: codefish@online.fr
SourceCode: https://gitlab.com/codefish42/covidat
IssueTracker: https://gitlab.com/codefish42/covidat/issues
AutoName: CovidAt
RepoType: git
Repo: https://gitlab.com/codefish42/covidat.git
Builds:
- versionName: 1.0.1
versionCode: 2
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: 2.0.1
versionCode: 4
commit: v2.0.1
subdir: app
gradle:
- yes
- versionName: 2.1.0
versionCode: 5
commit: v2.1.0
subdir: app
gradle:
- yes
- versionName: 2.1.1
versionCode: 6
commit: v2.1.1
subdir: app
gradle:
- yes
ArchivePolicy: 0 versions
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags ^v.+[0-9]$
CurrentVersion: 2.1.1
CurrentVersionCode: 6
| Categories:
- Navigation
- Sports & Health
License: CECILL-2.1
AuthorName: Codefish
AuthorEmail: codefish@online.fr
SourceCode: https://gitlab.com/codefish42/covidat
IssueTracker: https://gitlab.com/codefish42/covidat/issues
AutoName: CovidAt
RepoType: git
Repo: https://gitlab.com/codefish42/covidat.git
Builds:
- versionName: 1.0.1
versionCode: 2
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: 2.0.1
versionCode: 4
commit: v2.0.1
subdir: app
gradle:
- yes
- versionName: 2.1.0
versionCode: 5
commit: v2.1.0
subdir: app
gradle:
- yes
- versionName: 2.1.1
versionCode: 6
commit: v2.1.1
subdir: app
gradle:
- yes
- versionName: 3.0.0
versionCode: 7
commit: v3.0.0
subdir: app
gradle:
- yes
ArchivePolicy: 0 versions
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags ^v.+[0-9]$
CurrentVersion: 3.0.0
CurrentVersionCode: 7
| Update CovidAt to 3.0.0 (7) | Update CovidAt to 3.0.0 (7)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
c2334bc09b0a137c36c45a0042cb87f30e94faa0 | meta/main.yml | meta/main.yml | # file: nginx/meta/main.yml
galaxy_info:
author: pjan vandaele
company: Ansibles
description: Install and configure Nginx
min_ansible_version: 1.4
license: MIT
platforms:
- name: Ubuntu
versions:
- all
categories:
- system
dependencies:
- Ansibles.hostname
- Ansibles.apt
- Ansibles.build-essential
- Ansibles.perl
- Ansibles.monit
| # file: nginx/meta/main.yml
galaxy_info:
author: pjan vandaele
company: Ansibles
description: Install and configure Nginx
min_ansible_version: 1.4
license: MIT
platforms:
- name: Ubuntu
versions:
- all
categories:
- system
dependencies:
- Ansibles.hostname
- Ansibles.apt
- Ansibles.build-essential
- Ansibles.perl
- role: Ansibles.monit
when: monit_protection is defined and monit_protection == true
| Add condition to Ansible.monit dependency | Add condition to Ansible.monit dependency | YAML | mit | ANXS/nginx,benbovy/nginx,KrashStudio/nginx,orlissenberg/ansible-nginx,benbovy/nginx,KrashStudio/nginx,ANXS/nginx,orlissenberg/ansible-nginx |
38f754d631ce8fd7a88d6a37c0075a0e2847f375 | packages/al/alg.yaml | packages/al/alg.yaml | homepage: ''
changelog-type: ''
hash: 78bdd2280384ec8cdbe2f44e49ca26e37dcef65a50b82ba45e64019e6feccd51
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Algebraic structures
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
util: ! '>=0.1.9 && <0.2'
all-versions:
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
- '0.2.2.1'
- '0.2.3.0'
author: M Farkas-Dyck
latest: '0.2.3.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 3ad9f39cd04a72bc75af6422260c516e076dd8922747f8932857e5e8fd669156
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Algebraic structures
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
util: ! '>=0.1.9 && <0.2'
all-versions:
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
- '0.2.2.1'
- '0.2.3.0'
- '0.2.4.0'
author: M Farkas-Dyck
latest: '0.2.4.0'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2018-05-07T07:38:45Z | Update from Hackage at 2018-05-07T07:38:45Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f65d5d29943c6facf76fd09df1ac5d93a4200652 | packages/dm/dmc.yaml | packages/dm/dmc.yaml | homepage: https://github.com/ciez/dmc
changelog-type: markdown
hash: b7c1b4230c6c50c0e6f5617c85330823c598dd435e0ab53a925412e548cf9aa3
test-bench-deps:
base: ! '>=4.8'
hspec: ! '>=2.1.7'
process: ! '>=1.3.0.0'
dmc: -any
QuickCheck: ! '>=2.8.1'
maintainer: Imants Cekusins
synopsis: run shell commands from code
changelog: ! "##### 1.1\n fix failing test on NixOS\n\n##### 1.0\n initial
version\n \n test pass \n "
basic-deps:
base: ! '>=4.8 && <5.0'
process: ! '>=1.3.0.0'
all-versions:
- '1.0'
- '1.1'
author: Imants Cekusins
latest: '1.1'
description-type: haddock
description: run shell commands from code
license-name: PublicDomain
| homepage: https://github.com/ciez/dmc
changelog-type: markdown
hash: a6e8ae3524d68892f9bd71b80c0cb52f4ef0c11ec7212b554f63e25ae65afde6
test-bench-deps:
base: ! '>=4.8'
hspec: ! '>=2.1.7'
process: ! '>=1.3.0.0'
dmc: -any
QuickCheck: ! '>=2.8.1'
maintainer: Imants Cekusins
synopsis: ! 'cmd: run shell commands from code'
changelog: ! "##### 1.1\n fix failing test on NixOS\n\n##### 1.0\n initial
version\n \n test pass \n "
basic-deps:
base: ! '>=4.8 && <5.0'
process: ! '>=1.3.0.0'
all-versions:
- '1.0'
- '1.1'
author: Imants Cekusins
latest: '1.1'
description-type: haddock
description: run shell commands from code
license-name: PublicDomain
| Update from Hackage at 2016-12-09T06:36:11Z | Update from Hackage at 2016-12-09T06:36:11Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d72a653f9fb7dfcbe58ec32236030d6df774b60e | packages/re/rei.yaml | packages/re/rei.yaml | homepage: https://github.com/kerkomen/rei
changelog-type: ''
hash: bd3c72750f7cfad86d6f5953754bef799b9a3958e4e66ce6fa5b35c4a82fe674
test-bench-deps: {}
maintainer: Daniel
synopsis: Process lists easily
changelog: ''
basic-deps:
bytestring: -any
split: -any
base: ! '>=4.7 && <4.8'
containers: -any
regex-tdfa: -any
attoparsec: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2.0.0'
- '0.3.0.0'
- '0.3.2.0'
- '0.3.3.0'
author: Daniel
latest: '0.3.3.0'
description-type: haddock
description: A tool for processing lists easily
license-name: MIT
| homepage: https://github.com/kerkomen/rei
changelog-type: ''
hash: 2076cd0059af9c9dfe864d97b1ec7d0e29128b28816dff652f543a2cc3bcb9e1
test-bench-deps: {}
maintainer: Daniel
synopsis: Process lists easily
changelog: ''
basic-deps:
bytestring: -any
split: -any
base: ! '>=4.7 && <4.8'
containers: -any
regex-tdfa: -any
attoparsec: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2.0.0'
- '0.3.0.0'
- '0.3.2.0'
- '0.3.3.0'
- '0.3.4.0'
author: Daniel
latest: '0.3.4.0'
description-type: haddock
description: A tool for processing lists easily
license-name: MIT
| Update from Hackage at 2015-11-21T01:16:41+0000 | Update from Hackage at 2015-11-21T01:16:41+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
7fc5e59edf867433120e41ff165337c4bafd3d44 | meta/main.yml | meta/main.yml | ---
# Setup dependencies here:
# Dependencies are pulled into the play and executed in order
# of appearance.
dependencies:
- { role: silpion.util }
# https://galaxy.ansibleworks.com
# Meta information required when uploading a role to the
# galaxy.
galaxy_info:
author: Mark Kusch
description: Manage Java installation
company: http://silpion.de
license: Apache 2
min_ansible_version: 1.9
#
# Below are all platforms currently available. Just uncomment
# the ones that apply to your role. If you don't see your
# platform on this list, let us know and we'll get it added!
#
platforms:
- name: EL
versions:
- 6
- name: Fedora
versions:
- 20
- name: Ubuntu
versions:
- trusty
- name: Debian
versions:
- wheezy
# Below are all categories currently available. Just as with
# the platforms above, uncomment those that apply to your role.
#
categories:
- development
| ---
# Setup dependencies here:
# Dependencies are pulled into the play and executed in order
# of appearance.
dependencies:
- { role: silpion.util }
# https://galaxy.ansibleworks.com
# Meta information required when uploading a role to the
# galaxy.
galaxy_info:
author: Mark Kusch
description: Manage Java installation
company: http://silpion.de
license: Apache 2
min_ansible_version: 2.0.0.2
#
# Below are all platforms currently available. Just uncomment
# the ones that apply to your role. If you don't see your
# platform on this list, let us know and we'll get it added!
#
platforms:
- name: EL
versions:
- 6
- name: Fedora
versions:
- 20
- name: Ubuntu
versions:
- trusty
- name: Debian
versions:
- wheezy
# Below are all categories currently available. Just as with
# the platforms above, uncomment those that apply to your role.
#
categories:
- development
| Add dependency to min Ansible version 2.0.0.2 | Add dependency to min Ansible version 2.0.0.2
Signed-off-by: Mark Kusch <100d753b1bf12c46cb1704d669587da1096d0b23@silpion.de>
| YAML | apache-2.0 | silpion/ansible-java,silpion/ansible-java,ludovicc/ansible-java,silpion/ansible-java,ludovicc/ansible-java,ludovicc/ansible-java |
a21ba1265ae684d5e8f7e15cb184a6a521a53b76 | .github/workflows/python-package.yml | .github/workflows/python-package.yml | name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pipenv
pipenv install --dev
- name: Lint with black
run: |
make black
- name: Test with pytest
run: |
make test
- name: Send Push Notification
uses: techulus/push-github-action@v0.0.2
env:
API_KEY: ${{ secrets.PUSH_API_KEY }}
MESSAGE: "Build Success!"
| name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pipenv
pipenv install --dev
- name: Lint with black
run: |
make black
- name: Test with pytest
run: |
make test
- name: Send Push Notification
uses: techulus/push-github-action@v0.0.2
env:
API_KEY: ${{ secrets.PUSH_API_KEY }}
MESSAGE: "Build Success!"
| Update python versions in github actions | Update python versions in github actions
| YAML | mit | hudsonbrendon/python-musixmatch |
012d9d350a8fe95fe051e14567793c1ab0532a7a | .rubocop_todo.yml | .rubocop_todo.yml | # This configuration was generated by `rubocop --auto-gen-config`
# on 2015-04-12 17:50:17 +0200 using RuboCop version 0.30.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 155
Metrics/AbcSize:
Max: 38
# Offense count: 13
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 146
# Offense count: 38
Metrics/CyclomaticComplexity:
Max: 10
# Offense count: 153
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 16
# Offense count: 7
# Configuration parameters: CountComments.
Metrics/ModuleLength:
Max: 161
# Offense count: 22
Metrics/PerceivedComplexity:
Max: 11
| # This configuration was generated by `rubocop --auto-gen-config`
# on 2015-04-12 17:50:17 +0200 using RuboCop version 0.30.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 155
Metrics/AbcSize:
Max: 38
# Offense count: 13
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 146
# Offense count: 38
Metrics/CyclomaticComplexity:
Max: 10
# Offense count: 153
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 17
# Offense count: 7
# Configuration parameters: CountComments.
Metrics/ModuleLength:
Max: 164
# Offense count: 22
Metrics/PerceivedComplexity:
Max: 11
| Increase the maximum values for ModuleLength and MethodLength | Increase the maximum values for ModuleLength and MethodLength
| YAML | mit | NobodysNightmare/rubocop,apiology/rubocop,mikegee/rubocop,mikegee/rubocop,bquorning/rubocop,scottmatthewman/rubocop,mikegee/rubocop,unmanbearpig/rubocop,benlovell/rubocop,dennisfaust/rubocop,edmz/rubocop,sinsoku/rubocop,brunoocasali/rubocop,zvkemp/rubocop,irfanah/rubocop,sachin21/rubocop,ypresto/rubocop,lumeet/rubocop,josiahsoh/rubocop,jfelchner/rubocop,tdeo/rubocop,tansaku/rubocop,vergenzt/rubocop,tejasbubane/rubocop,unmanbearpig/rubocop,iGEL/rubocop,haziqhafizuddin/rubocop,Drenmi/rubocop,hanumakanthvvn/rubocop,sue445/rubocop,dblock/rubocop,deepj/rubocop,panthomakos/rubocop,fastly/rubocop,MeetMe/rubocop,sue445/rubocop,imtayadeway/rubocop,MGerrior/rubocop,fphilipe/rubocop,lucasuyezu/rubocop,maxjacobson/rubocop,rtlechow/rubocop,akihiro17/rubocop,segiddins/rubocop,Talentee/rubocop,Likita/rubocop,karreiro/rubocop,irfanah/rubocop,rrosenblum/rubocop,backus/rubocop,savef/rubocop,dennisfaust/rubocop,smakagon/rubocop,martinciu/rubocop,Koronen/rubocop,Likita/rubocop,plribeiro3000/rubocop,sue445/rubocop,alexdowad/rubocop,bquorning/rubocop,tranvictor/rubocop,sch1zo/rubocop,kjavier/rubocop,syndbg/rubocop,crazydog115/rubocop,stbenjam/rubocop,kjavier/rubocop,dblock/rubocop,sferik/rubocop,karreiro/rubocop,hanumakanthvvn/rubocop,melch/rubocop,sinsoku/rubocop,byroot/rubocop,redbricksystems/rubocop,vergenzt/rubocop,urbanautomaton/rubocop,bquorning/rubocop,crazydog115/rubocop,palkan/rubocop,bbatsov/rubocop,martinciu/rubocop,melch/rubocop,alexcstark/rubocop,apiology/rubocop,akihiro17/rubocop,meganemura/rubocop,panthomakos/rubocop,jmks/rubocop,stbenjam/rubocop,meganemura/rubocop,kdmsnr/rubocop,hamhut1066/rubocop,panthomakos/rubocop,tansaku/rubocop,bglusman/rubocop,deivid-rodriguez/rubocop,janusnic/rubocop,janusnic/rubocop,agrimm/rubocop,lumeet/rubocop,caseywebdev/rubocop,petehamilton/rubocop,maxjacobson/rubocop,byroot/rubocop,mrb/rubocop,backus/rubocop,savef/rubocop,mrb/rubocop,pocke/rubocop,sch1zo/rubocop,pocke/rubocop,hamhut1066/rubocop,dmnd/rubocop,palkan/rubocop,tranvictor/rubocop,namack/rubocop,segiddins/rubocop,Talentee/rubocop,iGEL/rubocop,rrosenblum/rubocop,brunoocasali/rubocop,tdeo/rubocop,petehamilton/rubocop,scottmatthewman/rubocop,hkraji/rubocop,brayzen/rubocop,alexdowad/rubocop,plribeiro3000/rubocop,urbanautomaton/rubocop,tdeo/rubocop,ypresto/rubocop,smakagon/rubocop,brayzen/rubocop,haziqhafizuddin/rubocop,ilansh/rubocop,syndbg/rubocop,bankair/rubocop,sferik/rubocop,sachin21/rubocop,jfelchner/rubocop,zhwcoder/rubocop,deivid-rodriguez/rubocop,miquella/rubocop,ilansh/rubocop,benlovell/rubocop,vergenzt/rubocop,kdmsnr/rubocop,b-t-g/rubocop,namack/rubocop,Drenmi/rubocop,fastly/rubocop,jfelchner/rubocop,edmz/rubocop,linchus/rubocop,NobodysNightmare/rubocop,imtayadeway/rubocop,MGerrior/rubocop,miquella/rubocop,linchus/rubocop,akihiro17/rubocop,zBMNForks/rubocop,josiahsoh/rubocop,net-engine/rubocop,agrimm/rubocop,zhwcoder/rubocop,mlitwiniuk/rubocop,deivid-rodriguez/rubocop,deepj/rubocop,tejasbubane/rubocop,palkan/rubocop,jmks/rubocop,zvkemp/rubocop,dreyks/rubocop,b-t-g/rubocop,seanhussey/rubocop,dreyks/rubocop,hkraji/rubocop,Koronen/rubocop,legendetm/rubocop,lucasuyezu/rubocop,bankair/rubocop,jmks/rubocop,mrfoto/rubocop,petehamilton/rubocop,caseywebdev/rubocop,mlitwiniuk/rubocop,dmnd/rubocop,fphilipe/rubocop,meganemura/rubocop,rrosenblum/rubocop,mrfoto/rubocop,tejasbubane/rubocop,bglusman/rubocop,net-engine/rubocop,mclark/rubocop,seanhussey/rubocop,volkert/rubocop,MeetMe/rubocop,maxjacobson/rubocop,rtlechow/rubocop,volkert/rubocop,mclark/rubocop,bbatsov/rubocop,legendetm/rubocop,redbricksystems/rubocop,alexcstark/rubocop,zBMNForks/rubocop |
caf4738f54159e1962b9158ae0820f0c5ade82a6 | metadata/community.fairphone.checkup.yml | metadata/community.fairphone.checkup.yml | Categories:
- System
License: Apache-2.0
WebSite: https://github.com/WeAreFairphone/FP2-Checkup
SourceCode: https://github.com/WeAreFairphone/FP2-Checkup
IssueTracker: https://github.com/WeAreFairphone/FP2-Checkup/issues
AutoName: Checkup
Summary: An app that allows end users to test the features of their device
Description: |-
This is a fork of the Fairphone 2 checkup app that has been modified in
order to work on other devices as well.
It allows you to test various components of your phone:
* Screen
* Speakers
* Microphones
* Mobile connectivity
* Wi-Fi
* Vibration
It can be useful when you need to diagnose an issue with your device.
RepoType: git
Repo: https://github.com/WeAreFairphone/FP2-Checkup
Builds:
- versionName: 2.1.8
versionCode: 20108
commit: 2.1.8
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 2.1.8
CurrentVersionCode: 20108
| Categories:
- System
License: Apache-2.0
WebSite: https://github.com/WeAreFairphone/FP2-Checkup
SourceCode: https://github.com/WeAreFairphone/FP2-Checkup
IssueTracker: https://github.com/WeAreFairphone/FP2-Checkup/issues
AutoName: Fairphone Checkup
Summary: An app that allows end users to test the features of their device
Description: |-
This is a fork of the Fairphone 2 checkup app that has been modified in
order to work on other devices as well.
It allows you to test various components of your phone:
* Screen
* Speakers
* Microphones
* Mobile connectivity
* Wi-Fi
* Vibration
It can be useful when you need to diagnose an issue with your device.
RepoType: git
Repo: https://github.com/WeAreFairphone/FP2-Checkup
Builds:
- versionName: 2.1.8
versionCode: 20108
commit: 2.1.8
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 2.1.8
CurrentVersionCode: 20108
| Set autoname of Fairphone Checkup | Set autoname of Fairphone Checkup
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata |
5ceed9a936ce7d2a79289a9c400a3292c28137d9 | pcl/meta.yaml | pcl/meta.yaml | package:
name: pcl
version: 1.7.1
source:
fn: pcl-1.7.1.tar.gz
url: https://github.com/PointCloudLibrary/pcl/archive/pcl-1.7.1.tar.gz
patches:
- supervoxel.patch [win]
- gp3_surface.patch [win]
- mls_smoothing.patch [win]
requirements:
build:
- cmake
- eigen3
- flann
- boost <1.56.0
- libpng [unix]
- zlib [unix]
run:
- eigen3
- flann
- boost <1.56.0
- libpng [unix]
- zlib [unix]
about:
home: http://pointclouds.org/
license: BSD
| package:
name: pcl
version: 1.7.2
source:
fn: pcl-1.7.2.tar.gz
url: https://github.com/PointCloudLibrary/pcl/archive/pcl-1.7.2.tar.gz
patches:
- supervoxel.patch [win]
- gp3_surface.patch [win]
- mls_smoothing.patch [win]
requirements:
build:
- cmake
- eigen3
- flann
- boost <1.56.0
- libpng [unix]
- zlib [unix]
- pkg-config [unix]
run:
- eigen3
- flann
- boost <1.56.0
- libpng [unix]
- zlib [unix]
about:
home: http://pointclouds.org/
license: BSD
| Update it to version 1.7.2 to fix compilation error on Mac | PCL: Update it to version 1.7.2 to fix compilation error on Mac
- Also add pkg-config as a build dep after reviewing the Homebrew
formula
| YAML | bsd-2-clause | ccordoba12/pcl-conda-recipes,ccordoba12/pcl-conda-recipes |
07d7d7ddde07e225d638ddb4c72320458e3ff8be | packages/un/universe-instances-base.yaml | packages/un/universe-instances-base.yaml | homepage: https://github.com/dmwit/universe
changelog-type: ''
hash: c92e0c18faf4fb8b25336afbc9451709c0b0dd9dd7655fddd70adf119a15ee97
test-bench-deps: {}
maintainer: me@dmwit.com
synopsis: Universe instances for types from the base package
changelog: ''
basic-deps:
base: ! '>=4 && <5'
universe-base: ! '>=1.0 && <1.1'
containers: ! '>=0.5 && <0.6'
all-versions:
- '1.0'
author: Daniel Wagner
latest: '1.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: https://github.com/dmwit/universe
changelog-type: ''
hash: 0a7d8febd8307c71705ddadfad43d7df2facfa7009a6d33687d7f0b9757f488f
test-bench-deps: {}
maintainer: me@dmwit.com
synopsis: Universe instances for types from the base package
changelog: ''
basic-deps:
base: ! '>=4 && <5'
universe-base: ! '>=1.0 && <1.1'
containers: ! '>=0.4.2.1 && <0.6'
all-versions:
- '1.0'
author: Daniel Wagner
latest: '1.0'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2018-01-29T18:34:23Z | Update from Hackage at 2018-01-29T18:34:23Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1ac3e2c5747463c12140be60a403ec064834f289 | provision/roles/xmonad/tasks/install.yml | provision/roles/xmonad/tasks/install.yml | - name: Install xmonad
apt:
name:
- libghc-xmonad-contrib-dev
- libghc-xmonad-contrib-doc
- libghc-xmonad-dev
- libghc-xmonad-doc
- suckless-tools
- xmonad
become: true
- name: make directory for config
file: path="~/.xmonad" state=directory
- name: copy xmonad config
copy: src=xmonad.hs dest=~/.xmonad/xmonad.hs
- name: reset xmonad
shell: "xmonad --recompile"
- name: set window manager
dconf:
key: /org/mate/desktop/session/required-components/windowmanager
value: "'xmonad'"
state: present
- name: remove super key mappings
dconf:
key: /org/mate/mate-menu/hot-key
value: "''"
state: present
dconf:
key: /com/solus-project/brisk-menu/hot-key
value: "''"
state: present
| - name: Install xmonad
apt:
name:
- libghc-xmonad-contrib-dev
- libghc-xmonad-contrib-doc
- libghc-xmonad-dev
- libghc-xmonad-doc
- suckless-tools
- xmonad
become: true
- name: make directory for config
file: path="~/.xmonad" state=directory
- name: copy xmonad config
copy: src=xmonad.hs dest=~/.xmonad/xmonad.hs
- name: reset xmonad
shell: "xmonad --recompile"
- name: set window manager
dconf:
key: /org/mate/desktop/session/required-components/windowmanager
value: "'xmonad'"
state: present
- name: remove super key mappings 1
dconf:
key: /org/mate/mate-menu/hot-key
value: "''"
state: present
- name: remove super key mappings 2
dconf:
key: /com/solus-project/brisk-menu/hot-key
value: "''"
state: present
| Add missing name parameter for dconf key call | Add missing name parameter for dconf key call
| YAML | apache-2.0 | cfgrok/dotfiles,cfgrok/dotfiles |
6ffbe56d914defefdd57c2fa28365998a4049b40 | metadata/com.madlonkay.orgro.yml | metadata/com.madlonkay.orgro.yml | AntiFeatures:
- NonFreeNet
Categories:
- Reading
- Development
License: GPL-3.0-only
AuthorName: Aaron Madlon-Kay
WebSite: https://orgro.org
SourceCode: https://github.com/amake/orgro
IssueTracker: https://github.com/amake/orgro/issues
Donate: https://github.com/sponsors/amake
RepoType: git
Repo: https://github.com/amake/orgro
Builds:
- versionName: 1.12.2
versionCode: 35
commit: v1.12.2+35
output: build/app/outputs/flutter-apk/app-release.apk
srclibs:
- flutter@1.21.0-9.2.pre
prebuild: touch android/key.properties
build:
- $$flutter$$/bin/flutter config --no-analytics
- $$flutter$$/bin/flutter packages pub get
- $$flutter$$/bin/flutter build apk
AutoUpdateMode: Version v%v+%c
UpdateCheckMode: HTTP
UpdateCheckData: https://raw.githubusercontent.com/amake/orgro/master/pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+
CurrentVersion: 1.12.2
CurrentVersionCode: 35
| AntiFeatures:
- NonFreeNet
Categories:
- Reading
- Development
License: GPL-3.0-only
AuthorName: Aaron Madlon-Kay
WebSite: https://orgro.org
SourceCode: https://github.com/amake/orgro
IssueTracker: https://github.com/amake/orgro/issues
Donate: https://github.com/sponsors/amake
RepoType: git
Repo: https://github.com/amake/orgro
Builds:
- versionName: 1.12.2
versionCode: 35
commit: v1.12.2+35
output: build/app/outputs/flutter-apk/app-release.apk
srclibs:
- flutter@1.21.0-9.2.pre
prebuild: touch android/key.properties
build:
- $$flutter$$/bin/flutter config --no-analytics
- $$flutter$$/bin/flutter packages pub get
- $$flutter$$/bin/flutter build apk
- versionName: 1.13.1
versionCode: 38
commit: v1.13.1+38
output: build/app/outputs/flutter-apk/app-release.apk
srclibs:
- flutter@1.25.0-8.3.pre
prebuild: touch android/key.properties
build:
- $$flutter$$/bin/flutter config --no-analytics
- $$flutter$$/bin/flutter packages pub get
- $$flutter$$/bin/flutter build apk
AutoUpdateMode: Version v%v+%c
UpdateCheckMode: HTTP
UpdateCheckData: https://raw.githubusercontent.com/amake/orgro/master/pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+
CurrentVersion: 1.13.1
CurrentVersionCode: 38
| Update Orgro to 1.13.1 (38), Flutter 1.25.0-8.3.pre | Update Orgro to 1.13.1 (38), Flutter 1.25.0-8.3.pre
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
d20908dfad563d66fa4e7af45bb88025360a1496 | packages/cr/crdt.yaml | packages/cr/crdt.yaml | homepage: https://github.com/cblp/crdt#readme
changelog-type: ''
hash: fb28fa9e77ba2e17b975de9367007e440d2f32bda5bcad3766d179d4e26ee5d9
test-bench-deps:
base: ! '>=4.9 && <4.10'
containers: -any
tasty-quickcheck: -any
tasty: -any
QuickCheck: -any
crdt: -any
maintainer: Yuriy Syrovetskiy <cblp@cblp.su>
synopsis: Conflict-free replicated data types
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.10'
containers: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
author: ''
latest: '0.4'
description-type: haddock
description: Definitions of CmRDT and CvRDT. Implementations for some classic CRDTs.
license-name: BSD3
| homepage: https://github.com/cblp/crdt#readme
changelog-type: ''
hash: 46f30859b16d6d07a7386c534c4e3db0081c7f7693e6a27169692ab01cedc938
test-bench-deps:
base: ! '>=4.9 && <4.10'
containers: -any
tasty-quickcheck: -any
tasty: -any
QuickCheck: -any
crdt: -any
maintainer: Yuriy Syrovetskiy <cblp@cblp.su>
synopsis: Conflict-free replicated data types
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.10'
containers: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
- '0.5'
author: ''
latest: '0.5'
description-type: haddock
description: Definitions of CmRDT and CvRDT. Implementations for some classic CRDTs.
license-name: BSD3
| Update from Hackage at 2017-09-26T12:19:33Z | Update from Hackage at 2017-09-26T12:19:33Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7760c1233752eb206dad84bd99525b3e3e2b4515 | packages/ha/harp.yaml | packages/ha/harp.yaml | homepage: https://github.com/seereason/harp
changelog-type: ''
hash: 6a009645b5eabeaef0b7917c65b20e2bea8358bb1a498ef61984cb6f57d95f87
test-bench-deps: {}
maintainer: David Fox <dsf@seereason.com>
synopsis: HaRP allows pattern-matching with regular expressions
changelog: ''
basic-deps:
base: <4.10
all-versions:
- '0.2.1'
- '0.4'
- '0.4.1'
- '0.4.2'
author: Niklas Broberg
latest: '0.4.2'
description-type: haddock
description: ! 'HaRP, or Haskell Regular Patterns, is a Haskell extension
that extends the normal pattern matching facility with
the power of regular expressions. This expressive power
is highly useful in a wide range of areas, including text parsing
and XML processing. Regular expression patterns in HaRP work over
ordinary Haskell lists ([]) of arbitrary type. We have implemented
HaRP as a pre-processor to ordinary Haskell.
For details on usage, please see the website.'
license-name: BSD3
| homepage: https://github.com/seereason/harp
changelog-type: ''
hash: 0e646bc87f9d884229be35792b2c63101790db9318793afc88d20764c4e927fe
test-bench-deps: {}
maintainer: David Fox <dsf@seereason.com>
synopsis: HaRP allows pattern-matching with regular expressions
changelog: ''
basic-deps:
base: <4.11
all-versions:
- '0.2.1'
- '0.4'
- '0.4.1'
- '0.4.2'
- '0.4.3'
author: Niklas Broberg
latest: '0.4.3'
description-type: haddock
description: ! 'HaRP, or Haskell Regular Patterns, is a Haskell extension
that extends the normal pattern matching facility with
the power of regular expressions. This expressive power
is highly useful in a wide range of areas, including text parsing
and XML processing. Regular expression patterns in HaRP work over
ordinary Haskell lists ([]) of arbitrary type. We have implemented
HaRP as a pre-processor to ordinary Haskell.
For details on usage, please see the website.'
license-name: BSD3
| Update from Hackage at 2017-09-03T18:55:21Z | Update from Hackage at 2017-09-03T18:55:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a6976b443b4b93832b0b3edb070196679fbbbb8b | src_files.yml | src_files.yml | riscv:
incdirs: [
include,
]
files: [
alu.sv,
alu_div.sv,
compressed_decoder.sv,
controller.sv,
cs_registers.sv,
debug_unit.sv,
decoder.sv,
exc_controller.sv,
ex_stage.sv,
hwloop_controller.sv,
hwloop_regs.sv,
id_stage.sv,
if_stage.sv,
load_store_unit.sv,
mult.sv,
prefetch_buffer.sv,
prefetch_L0_buffer.sv,
riscv_core.sv,
]
riscv_vip_rtl:
incdirs: [
include,
]
files: [
riscv_tracer.sv,
riscv_simchecker.sv,
]
riscv_regfile_rtl:
incdirs: [
include,
]
files: [
register_file.sv,
]
riscv_regfile_fpga:
incdirs: [
include,
]
files: [
register_file_ff.sv,
]
| riscv:
incdirs: [
include,
]
files: [
alu.sv,
alu_div.sv,
compressed_decoder.sv,
controller.sv,
cs_registers.sv,
debug_unit.sv,
decoder.sv,
exc_controller.sv,
ex_stage.sv,
hwloop_controller.sv,
hwloop_regs.sv,
id_stage.sv,
if_stage.sv,
load_store_unit.sv,
mult.sv,
prefetch_buffer.sv,
prefetch_L0_buffer.sv,
riscv_core.sv,
]
riscv_vip_rtl:
targets: [
rtl,
]
incdirs: [
include,
]
files: [
riscv_tracer.sv,
riscv_simchecker.sv,
]
riscv_regfile_rtl:
targets: [
rtl,
]
incdirs: [
include,
]
files: [
register_file.sv,
]
riscv_regfile_fpga:
targets: [
xilinx,
]
incdirs: [
include,
]
files: [
register_file_ff.sv,
]
| Add proper targets for sub-ips | Add proper targets for sub-ips
| YAML | apache-2.0 | AmbiML/ibex,lowRISC/ibex,AmbiML/ibex,lowRISC/ibex,AmbiML/ibex,AmbiML/ibex,lowRISC/ibex,lowRISC/ibex |
20246a74198a11d3ac3e83e94cf5e6e171209ed5 | codeship-steps.yml | codeship-steps.yml | - service: compile
name: Compile
command: cp /go/src/github.com/replaygaming/go-eventsource/go-eventsource /go/src/github.com/replaygaming/go-eventsource/client/client /artifacts
cached: true
dockercfg_service: gcr_dockercfg
- service: dist
name: Distribute
command: true
- name: Integration Test
service: eventsource_integration_tests
command: /run_tests
dockercfg_service: gcr_dockercfg
- name: Push images
service: dist
type: parallel
steps:
#- type: push
#image_name: us.gcr.io/replay-gaming/go-eventsource
#image_tag: "latest"
#registry: https://us.gcr.io
#dockercfg_service: gcr_dockercfg
- type: push
image_name: us.gcr.io/replay-gaming/go-eventsource
image_tag: "{{.Timestamp}}"
registry: https://us.gcr.io
dockercfg_service: gcr_dockercfg
- type: push
image_name: us.gcr.io/replay-gaming/go-eventsource
image_tag: "{{.CommitID}}"
registry: https://us.gcr.io
dockercfg_service: gcr_dockercfg
| - service: compile
name: Compile
command: cp /go/src/github.com/replaygaming/go-eventsource/go-eventsource /go/src/github.com/replaygaming/go-eventsource/client/client /artifacts
cached: true
dockercfg_service: gcr_dockercfg
- service: dist
name: Distribute
command: true
- name: Integration Test
service: eventsource_integration_tests
command: /run_tests
dockercfg_service: gcr_dockercfg
- name: Push images
service: dist
type: parallel
steps:
- type: push
name: Push commit tag
image_name: us.gcr.io/replay-gaming/go-eventsource
image_tag: "{{.CommitID}}"
registry: https://us.gcr.io
dockercfg_service: gcr_dockercfg
- type: push
tag: ^(v\d+\.\d+\.\d+)$
name: Push branch tag
image_name: us.gcr.io/replay-gaming/go-eventsource
image_tag: "{{.Branch}}"
registry: https://us.gcr.io
dockercfg_service: gcr_dockercfg
| Clean up codeship steps and add push for tags | Clean up codeship steps and add push for tags
| YAML | mit | replaygaming/go-eventsource,replaygaming/go-eventsource,replaygaming/go-eventsource |
e2e96fa0a62773d15a3eaa160665ce85e3ad0e3a | bolt-project.yaml | bolt-project.yaml | ---
name: psick
analytics: true
apply-settings:
evaltrace: true
log_level: debug
show_diff: true
trace: true
modules:
- git: https://github.com/example42/psick-hieradata
ref: production
- 'example42/tp'
- 'example42/tinydata'
- 'example42/psick'
- 'example42/tp_profile'
- 'puppetlabs/concat'
- 'puppetlabs/stdlib'
- 'puppetlabs/vcsrepo'
- 'puppetlabs/firewall'
- 'puppetlabs/inifile'
- 'puppetlabs/catalog_preview'
- 'jdowning/rbenv'
- 'trlinkin/noop'
- 'puppet/archive'
format: human
hiera-config: "hiera.yaml"
modulepath:
- "site"
- "modules"
tasks:
- tp::test
- psick::puppet_*
puppetdb:
server_urls: ["https://puppet.lab.psick.io:8081"]
cacert: /etc/puppetlabs/puppet/ssl/certs/ca.pem
cert: /etc/puppetlabs/puppet/ssl/certs/lab.psick.io.pem
key: /home/lab/.puppetlabs/lab.psick.io.pem | ---
name: psick
analytics: true
apply-settings:
evaltrace: true
log_level: debug
show_diff: true
trace: true
modules:
- git: https://github.com/example42/psick-hieradata
ref: production
- 'example42/tp'
- 'example42/tinydata'
- 'example42/psick'
- 'example42/tp_profile'
- 'puppetlabs/concat'
- 'puppetlabs/stdlib'
- 'puppetlabs/vcsrepo'
- 'puppetlabs/firewall'
- 'puppetlabs/inifile'
- 'puppetlabs/catalog_preview'
- 'jdowning/rbenv'
- 'trlinkin/noop'
- 'puppet/archive'
format: human
hiera-config: "hiera.yaml"
modulepath:
- "site"
- "modules"
tasks:
- tp::test
- psick::puppet_*
puppetdb:
server_urls: ["https://puppet.lab.psick.io:8081"]
cacert: /etc/puppetlabs/puppet/ssl/certs/ca.pem
token: ~/.puppetlabs/token
| Use token in bolt project | Use token in bolt project
| YAML | apache-2.0 | example42/psick,example42/psick,example42/psick,example42/psick |
fc0916ca47150b27e2627172a5517af52b330ad0 | test-integration/commands.yml | test-integration/commands.yml | - description: Command init should create template files
command: datagen init
exitcode: 0
output: 'Creating example template files: header, segment, footer'
- description: Command gen should default to 1 worker
command: datagen gen
exitcode: 0
output: Start worker 1\nFinish worker 1
- description: Command gen should work with optional flags
command: datagen gen --gen-id foobar --num-segments 100 --num-workers 8 --max-concurrent-workers 10 --out-file data
exitcode: 0
output: ((Start|Finish) worker [1-8]\n){16}
| - description: Command init should create template files
command: datagen init
exitcode: 0
output: 'Creating example template files: header, segment, footer'
- description: Command gen should default to 1 worker
command: datagen gen
exitcode: 0
output: Start worker 1\nFinish worker 1
- description: Command gen should work with optional flags
command: datagen gen --gen-id foobar --num-segments 100 --num-workers 8 --max-concurrent-workers 2 --out-file data
exitcode: 0
output: ((Start|Finish) worker [1-8]\n){16}
| Change max concurrent workers to a more reasonable 2. | Change max concurrent workers to a more reasonable 2.
| YAML | mit | cliffano/datagen |
faee74400d11d135c583754770bf4f6ec0f54344 | config/example.yml | config/example.yml | app:
port: 3000
# namespace:
# The base path for this application. Leave empty or omit for none.
namespace: /site
# trustProxy:
# Whether to set the Express 'trust proxy' setting, which tells Express to
# use the X-Forwarded-* headers to get client information like IP address and
# protocol.
trustProxy: true
# secret:
# The secret key to use for Express sessions.
secret: please use something better than this
# mongoUrl:
# The connection URL to use for MongoDB (to store sessions).
mongoUrl: mongodb://localhost/connect-sessions
logging:
# level:
# The minimum log level that will be shown in console output. Levels are:
# silly:0, input:1, verbose:2, prompt:3, debug:4, http:4.5, info:5, data:6,
# help:7, warn:8, error:9
level: http
auth:
# digestFile:
# The file containing usernames and hashed passwords in htdigest format
# (lines like 'user:realm:hash' where hash = md5(username:realm:password))
digestFile: /path/to/users.digest
| app:
port: 3000
# namespace:
# The base path for this application. Leave empty or omit for none.
namespace: /site
# trustProxy:
# Whether to set the Express 'trust proxy' setting, which tells Express to
# use the X-Forwarded-* headers to get client information like IP address and
# protocol.
trustProxy: true
# secret:
# The secret key to use for Express sessions.
secret: please use something better than this
# mongoUrl:
# The connection URL to use for MongoDB (to store sessions).
mongoUrl: mongodb://localhost/connect-sessions
logging:
# level:
# The minimum log level that will be shown in console output. Levels are:
# silly:0, input:1, verbose:2, prompt:3, debug:4, http:4.5, info:5, data:6,
# help:7, warn:8, error:9
level: http
auth:
# digestFile:
# The file containing usernames and hashed passwords in htdigest format
# (lines like 'user:realm:hash' where hash = md5(username:realm:password))
digestFile: /path/to/users.digest
| Change config to 4 spaces | Change config to 4 spaces
| YAML | mit | nylen/node-web-media-player,nylen/node-web-template |
0622991f38974d0f1fd2d996389fa946a625993c | config/sidekiq.yml | config/sidekiq.yml | ---
:verbose: false
:concurrency: 10
:logfile: ./log/sidekiq.json.log
:queues:
- downstream_high
- dependency_resolution
- downstream_low
- experiments
- default
- import
| ---
:verbose: false
:concurrency: 4
:logfile: ./log/sidekiq.json.log
:queues:
- downstream_high
- dependency_resolution
- downstream_low
- experiments
- default
- import
| Revert "Revert "Turn down concurrency on Sidekiq"" | Revert "Revert "Turn down concurrency on Sidekiq""
| YAML | mit | alphagov/publishing-api,alphagov/publishing-api |
7d3d1670902014e04a4a15ed3d281b3804b3eb9b | config/config.yml | config/config.yml | redis:
host: 'localhost'
port: 6379
namespace: 'gitlab-irc'
irc:
server: 'chat.freenode.net'
port: 6667
poll_interval: 10
channel: '#yourcodingchannel'
nickname: 'GitLab'
verbose: true
web:
bind: 'localhost'
port: 4567
| redis:
host: 'localhost'
port: 6379
namespace: 'gitlab-irc'
irc:
server: 'chat.freenode.net'
port: 6667
poll_interval: 10
channel: '#yourcodingchannel'
channel_password: ''
nickname: 'GitLab'
verbose: true
web:
bind: 'localhost'
port: 4567
| Add example of channel password | Add example of channel password
| YAML | mit | nTraum/gitlab-irc,ochorocho/gitlab-irc,ochorocho/gitlab-irc |
5c3a048551e64adb1baf7f4ca8b3b1c111cb9537 | packages/ma/Map.yaml | packages/ma/Map.yaml | homepage: ''
changelog-type: ''
hash: e829b553f95d0f3e1adb74bd518c8c62c3acea563d39cf81b8aa57be10245bd3
test-bench-deps:
tasty-smallcheck: ! '>=0.8'
base: ! '>=4.11 && <5'
smallcheck: ! '>=1.1.4'
Map: -any
tasty: ! '>=1.0'
maintainer: strake888@gmail.com
synopsis: Class of key-value maps
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
containers: ! '>=0.5.9 && <0.7'
util: ! '>=0.1.10 && <0.2'
filtrable: ! '>=0.1.2 && <0.2'
either-both: ! '>=0.1.1 && <0.2'
all-versions:
- 0.0.0.0
- 0.0.1.0
- 0.0.1.1
- 0.0.2.0
- 0.1.0.0
- 0.1.1.0
- 0.1.2.0
author: M Farkas-Dyck
latest: 0.1.2.0
description-type: markdown
description: |
# map
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: f2fbb556ae957992b5c99ff44e1e68f84c1546b80f533c19ce1ac1d227d63b8d
test-bench-deps:
tasty-smallcheck: ! '>=0.8'
base: ! '>=4.11 && <5'
smallcheck: ! '>=1.1.4'
Map: -any
tasty: ! '>=1.0'
maintainer: strake888@gmail.com
synopsis: Class of key-value maps
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
containers: ! '>=0.5.9 && <0.7'
util: ! '>=0.1.10 && <0.2'
filtrable: ! '>=0.1.2 && <0.2'
either-both: ! '>=0.1.1 && <0.2'
all-versions:
- 0.0.0.0
- 0.0.1.0
- 0.0.1.1
- 0.0.2.0
- 0.1.0.0
- 0.1.1.0
- 0.1.2.0
- 0.1.3.0
author: M Farkas-Dyck
latest: 0.1.3.0
description-type: markdown
description: |
# map
license-name: BSD-3-Clause
| Update from Hackage at 2019-11-04T23:24:21Z | Update from Hackage at 2019-11-04T23:24:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9e2db1f93f0f3561abbec288bb8fdc0f11d7f3a9 | packages/st/stt.yaml | packages/st/stt.yaml | homepage: ''
changelog-type: ''
hash: 249292b53bf21ebc7bdb425de093671b768703b69890b21d8333de7daf615bb6
test-bench-deps: {}
maintainer: mckean.kylej@gmail.com
synopsis: A monad transformer version of the ST monad
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.10'
mtl: ! '>=2.2.1 && <3'
primitive: ! '>=0.6.1 && <0.7'
all-versions:
- '0.1.0.0'
author: Kyle McKean
latest: '0.1.0.0'
description-type: haddock
description: ! 'A monad transformer version of the ST monad
Warning! This monad transformer should not be used with monads that
can contain multiple answers, like the list monad. The reason is that
the state token will be duplicated across the different answers and this causes
Bad Things to happen (such as loss of referential transparency). Safe
monads include the monads State, Reader, Writer, Maybe and
combinations of their corresponding monad transformers.'
license-name: MIT
| homepage: ''
changelog-type: ''
hash: ac56b1b049dc00fe9230186b6617f7f6c9f2602f52b1ecfe49c2a1eeebd52894
test-bench-deps:
base: ! '>=4 && <5'
tasty-quickcheck: ! '>=0.8.4 && <0.9'
tasty-hunit: ! '>=0.9.2 && <0.10'
transformers: ! '>=0.4 && <0.6'
tasty: ! '>=0.11.0.4 && <0.12'
stt: -any
maintainer: mckean.kylej@gmail.com
synopsis: A monad transformer version of the ST monad
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
mtl: ! '>=2.2.1 && <3'
primitive: ! '>=0.6.1 && <0.7'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Kyle McKean
latest: '0.2.0.0'
description-type: haddock
description: ! 'A monad transformer version of the ST monad
Warning! This monad transformer should not be used with monads that
can contain multiple answers, like the list monad. The reason is that
the state token will be duplicated across the different answers and this causes
Bad Things to happen (such as loss of referential transparency). Safe
monads include the monads State, Reader, Writer, Maybe and
combinations of their corresponding monad transformers.'
license-name: MIT
| Update from Hackage at 2016-11-06T20:23:14Z | Update from Hackage at 2016-11-06T20:23:14Z | YAML | mit | commercialhaskell/all-cabal-metadata |
9909bbf1d80edc7190c3c5140e2f795b5428d793 | provision-docker.yml | provision-docker.yml | ---
- hosts: all
gather_facts: no
tasks:
- name: Read vars from secrets file
include_vars: "{{ secrets_file }}"
tags:
- always
- hosts: all
gather_facts: yes
sudo: true
roles:
- role: common
- role: iptables
- role: tls
handlers:
- include: roles/httpd/handlers/main.yml
- include: roles/nginx/handlers/main.yml
- hosts: php-apps:java-apps-centos7
gather_facts: yes
sudo: true
roles:
- httpd
handlers:
- include: roles/httpd/handlers/main.yml
- include: roles/nginx/handlers/main.yml
- hosts: java-apps-centos7
gather_facts: true
sudo: true
vars:
env_lang: java
roles:
- tomcat
- java
- shibboleth
- metadata-exporter
- grouper
- teams
- mujina-idp
- mujina-sp
- authz-server
- voot
- authz-playground
- pdp
- oidc
- aa
handlers:
- include: roles/httpd/handlers/main.yml
- include: roles/nginx/handlers/main.yml
| ---
- hosts: all
gather_facts: no
tasks:
- name: Read vars from secrets file
include_vars: "{{ secrets_file }}"
tags:
- always
- hosts: all
gather_facts: yes
sudo: true
roles:
- role: common
- role: iptables
- role: tls
handlers:
- include: roles/httpd/handlers/main.yml
- include: roles/nginx/handlers/main.yml
- hosts: storage
gather_facts: yes
sudo: true
roles:
- { role: mysql, tags: ['mysql'] }
- hosts: php-apps:java-apps-centos7
gather_facts: yes
sudo: true
roles:
- httpd
handlers:
- include: roles/httpd/handlers/main.yml
- include: roles/nginx/handlers/main.yml
- hosts: java-apps-centos7
gather_facts: true
sudo: true
vars:
env_lang: java
roles:
- tomcat
- java
- shibboleth
- metadata-exporter
- grouper
- teams
- mujina-idp
- mujina-sp
- authz-server
- voot
- authz-playground
- pdp
- oidc
- aa
handlers:
- include: roles/httpd/handlers/main.yml
- include: roles/nginx/handlers/main.yml
| Add Mysql to docker image | Add Mysql to docker image
| YAML | apache-2.0 | baszoetekouw/OpenConext-deploy,baszoetekouw/OpenConext-deploy,baszoetekouw/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,baszoetekouw/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,baszoetekouw/OpenConext-deploy |
28397783f6f76a5531016c73ae5d60142b3d3ccc | .gitlab-ci.yml | .gitlab-ci.yml | image: commit451/android-sdk:latest
before_script:
- android-sdk-installer
stages:
- build
- test
build:
stage: build
script:
- ./gradlew assembleFdroidDebug
test:
stage: test
script:
- ./gradlew testFdroidDebug
| image: commit451/android-sdk-installer:latest
before_script:
- android-sdk-installer
stages:
- build
- test
build:
stage: build
script:
- ./gradlew assembleFdroidDebug
test:
stage: test
script:
- ./gradlew testFdroidDebug
| Change to other docker image | Change to other docker image
| YAML | apache-2.0 | Commit451/GitLabAndroid,Commit451/LabCoat |
d7847bc84a27b2f9d01f4dbc5bdefe85b360f683 | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- apt-get update -yqq
- apt-get install -yqq libmcrypt-dev g++ libsqlite3-dev libssl-dev libcurl3-dev libxml2-dev libzzip-dev libpq-dev
- rm -rf /var/lib/apt/lists/*
- docker-php-ext-install hash json mcrypt mbstring pdo pdo_mysql simplexml pdo_pgsql pdo_sqlite
- echo "date.timezone = UTC" > /usr/local/etc/php/php.ini
services:
- mysql
variables:
# Configure mysql service (https://hub.docker.com/_/mysql/)
MYSQL_DATABASE: freischutz_test
MYSQL_ROOT_PASSWORD: mysql
php5.6:
image: mileschou/phalcon:5.6
script:
- curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit-5.7.9.phar
- chmod +x /usr/local/bin/phpunit
- phpunit --configuration phpunit.xml
php7:
image: mileschou/phalcon:7.0
script:
- curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
- chmod +x /usr/local/bin/phpunit
- phpunit --configuration phpunit.xml
| before_script:
- apt-get update -yqq
- apt-get install -yqq libmcrypt-dev g++ libsqlite3-dev libssl-dev libcurl3-dev libxml2-dev libzzip-dev libpq-dev
- rm -rf /var/lib/apt/lists/*
- docker-php-ext-install hash json mcrypt mbstring pdo pdo_mysql simplexml pdo_pgsql pdo_sqlite
- echo "date.timezone = UTC" > /usr/local/etc/php/php.ini
services:
- mysql
variables:
# Configure mysql service (https://hub.docker.com/_/mysql/)
MYSQL_DATABASE: freischutz_test
MYSQL_ROOT_PASSWORD: mysql
php5.6:
image: mileschou/phalcon:5.6
script:
- curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit-5.7.9.phar
- chmod +x /usr/local/bin/phpunit
- phpunit --configuration phpunit.xml
| Remove failed PHP 7.0 testing | Remove failed PHP 7.0 testing
| YAML | bsd-3-clause | tdely/freischutz,tdely/freischutz,tdely/freischutz |
c897ee50698b3ba942711261306c0e14af6b5964 | .gitlab-ci.yml | .gitlab-ci.yml |
# Copyright (c) 2015-2018 Agalmic Ventures LLC (www.agalmicventures.com)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
before_script:
- python3 -m venv myenv
- source myenv/bin/activate
- pip3 install -r requirements.txt
stages:
- test
- stop
test_job:
stage: test
script:
- ./start.sh
- ./stop.sh
only:
- master
stop:
stage: stop
script:
- ./stop.sh
only:
- master
when: on_failure
|
# Copyright (c) 2015-2018 Agalmic Ventures LLC (www.agalmicventures.com)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
before_script:
- python3 -m venv myenv
- source myenv/bin/activate
- pip3 install -r requirements.txt
stages:
- lint
- test
- stop
shellcheck_lint_job:
stage: lint
script:
- shellcheck *.sh
only:
- master
test_job:
stage: test
script:
- ./start.sh
- ./stop.sh
only:
- master
stop:
stage: stop
script:
- ./stop.sh
only:
- master
when: on_failure
| Add shellcheck linting to CI | Add shellcheck linting to CI
| YAML | mit | AgalmicVentures/PQRS,AgalmicVentures/PQRS,AgalmicVentures/PQRS |
0abd565305940c21378c58336fbb63826642ec06 | .gitlab-ci.yml | .gitlab-ci.yml | # This file is generated by GitLab CI
before_script:
- ./scripts/build_prepare.sh
- ruby -v
- which ruby
- gem install bundler --no-ri --no-rdoc
- cp config/gitlab.yml.example config/gitlab.yml
- touch log/application.log
- touch log/test.log
- bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}"
- bundle exec rake db:create RAILS_ENV=test
Rspec:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec
tags:
- ruby
- mysql
Spinach:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach
tags:
- ruby
- mysql
Jasmine:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake jasmine:ci
tags:
- ruby
- mysql
Rubocop:
script:
- bundle exec rubocop
tags:
- ruby
- mysql
Brakeman:
script:
- bundle exec rake brakeman
tags:
- ruby
- mysql
| # This file is generated by GitLab CI
before_script:
- ./scripts/prepare_build.sh
- ruby -v
- which ruby
- gem install bundler --no-ri --no-rdoc
- cp config/gitlab.yml.example config/gitlab.yml
- touch log/application.log
- touch log/test.log
- bundle install --without postgres production --jobs $(nproc) "${FLAGS[@]}"
- bundle exec rake db:create RAILS_ENV=test
Rspec:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spec
tags:
- ruby
- mysql
Spinach:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake spinach
tags:
- ruby
- mysql
Jasmine:
script:
- RAILS_ENV=test SIMPLECOV=true bundle exec rake jasmine:ci
tags:
- ruby
- mysql
Rubocop:
script:
- bundle exec rubocop
tags:
- ruby
- mysql
Brakeman:
script:
- bundle exec rake brakeman
tags:
- ruby
- mysql
| Use correct name for the script. | Use correct name for the script.
| YAML | mit | icedwater/gitlabhq,folpindo/gitlabhq,dukex/gitlabhq,Soullivaneuh/gitlabhq,tim-hoff/gitlabhq,Burick/gitlabhq,michaKFromParis/gitlabhq,Exeia/gitlabhq,eliasp/gitlabhq,lvfeng1130/gitlabhq,dwrensha/gitlabhq,NKMR6194/gitlabhq,gopeter/gitlabhq,NKMR6194/gitlabhq,ordiychen/gitlabhq,whluwit/gitlabhq,chenrui2014/gitlabhq,pulkit21/gitlabhq,whluwit/gitlabhq,hacsoc/gitlabhq,dukex/gitlabhq,Burick/gitlabhq,bozaro/gitlabhq,bigsurge/gitlabhq,louahola/gitlabhq,cui-liqiang/gitlab-ce,allistera/gitlabhq,johnmyqin/gitlabhq,k4zzk/gitlabhq,duduribeiro/gitlabhq,stoplightio/gitlabhq,mr-dxdy/gitlabhq,ikappas/gitlabhq,darkrasid/gitlabhq,larryli/gitlabhq,iiet/iiet-git,sakishum/gitlabhq,tempbottle/gitlabhq,michaKFromParis/gitlabhq,k4zzk/gitlabhq,joalmeid/gitlabhq,zBMNForks/gitlabhq,t-zuehlsdorff/gitlabhq,ksoichiro/gitlabhq,manfer/gitlabhq,WSDC-NITWarangal/gitlabhq,larryli/gitlabhq,liyakun/gitlabhq,folpindo/gitlabhq,chadyred/gitlabhq,hq804116393/gitlabhq,yama07/gitlabhq,LUMC/gitlabhq,michaKFromParis/gitlabhqold,LytayTOUCH/gitlabhq,julianengel/gitlabhq,jaepyoung/gitlabhq,wangcan2014/gitlabhq,tim-hoff/gitlabhq,ikappas/gitlabhq,TheWatcher/gitlabhq,WSDC-NITWarangal/gitlabhq,OlegGirko/gitlab-ce,darkrasid/gitlabhq,t-zuehlsdorff/gitlabhq,fgbreel/gitlabhq,fendoudeqingchunhh/gitlabhq,Soullivaneuh/gitlabhq,it33/gitlabhq,allysonbarros/gitlabhq,tim-hoff/gitlabhq,zrbsprite/gitlabhq,dreampet/gitlab,williamherry/gitlabhq,bbodenmiller/gitlabhq,daiyu/gitlab-zh,ngpestelos/gitlabhq,OtkurBiz/gitlabhq,nguyen-tien-mulodo/gitlabhq,jirutka/gitlabhq,tk23/gitlabhq,allysonbarros/gitlabhq,kitech/gitlabhq,ttasanen/gitlabhq,delkyd/gitlabhq,sonalkr132/gitlabhq,theonlydoo/gitlabhq,martijnvermaat/gitlabhq,fscherwi/gitlabhq,dplarson/gitlabhq,tempbottle/gitlabhq,MauriceMohlek/gitlabhq,mrb/gitlabhq,chenrui2014/gitlabhq,hq804116393/gitlabhq,duduribeiro/gitlabhq,stoplightio/gitlabhq,MauriceMohlek/gitlabhq,initiummedia/gitlabhq,hzy001/gitlabhq,jirutka/gitlabhq,mmkassem/gitlabhq,rebecamendez/gitlabhq,szechyjs/gitlabhq,dvrylc/gitlabhq,icedwater/gitlabhq,MauriceMohlek/gitlabhq,fantasywind/gitlabhq,fpgentil/gitlabhq,mrb/gitlabhq,fantasywind/gitlabhq,fscherwi/gitlabhq,louahola/gitlabhq,Exeia/gitlabhq,OtkurBiz/gitlabhq,lvfeng1130/gitlabhq,wangcan2014/gitlabhq,OlegGirko/gitlab-ce,iiet/iiet-git,jrjang/gitlab-ce,martijnvermaat/gitlabhq,ikappas/gitlabhq,revaret/gitlabhq,koreamic/gitlabhq,joalmeid/gitlabhq,copystudy/gitlabhq,mmkassem/gitlabhq,bbodenmiller/gitlabhq,dukex/gitlabhq,youprofit/gitlabhq,since2014/gitlabhq,rebecamendez/gitlabhq,it33/gitlabhq,since2014/gitlabhq,nguyen-tien-mulodo/gitlabhq,jirutka/gitlabhq,kitech/gitlabhq,rumpelsepp/gitlabhq,jrjang/gitlabhq,stoplightio/gitlabhq,jvanbaarsen/gitlabhq,bozaro/gitlabhq,mrb/gitlabhq,Telekom-PD/gitlabhq,salipro4ever/gitlabhq,manfer/gitlabhq,szechyjs/gitlabhq,Soullivaneuh/gitlabhq,sue445/gitlabhq,eliasp/gitlabhq,jrjang/gitlab-ce,sonalkr132/gitlabhq,daiyu/gitlab-zh,sekcheong/gitlabhq,ferdinandrosario/gitlabhq,darkrasid/gitlabhq,rumpelsepp/gitlabhq,martinma4/gitlabhq,Telekom-PD/gitlabhq,martinma4/gitlabhq,theonlydoo/gitlabhq,fscherwi/gitlabhq,fgbreel/gitlabhq,bigsurge/gitlabhq,Tyrael/gitlabhq,nmav/gitlabhq,whluwit/gitlabhq,tk23/gitlabhq,manfer/gitlabhq,delkyd/gitlabhq,k4zzk/gitlabhq,fendoudeqingchunhh/gitlabhq,Devin001/gitlabhq,bozaro/gitlabhq,tempbottle/gitlabhq,SVArago/gitlabhq,Datacom/gitlabhq,jrjang/gitlab-ce,yama07/gitlabhq,kemenaran/gitlabhq,t-zuehlsdorff/gitlabhq,since2014/gitlabhq,zrbsprite/gitlabhq,sue445/gitlabhq,hq804116393/gitlabhq,initiummedia/gitlabhq,dreampet/gitlab,eliasp/gitlabhq,dplarson/gitlabhq,DanielZhangQingLong/gitlabhq,louahola/gitlabhq,lvfeng1130/gitlabhq,revaret/gitlabhq,dreampet/gitlab,liyakun/gitlabhq,stanhu/gitlabhq,hzy001/gitlabhq,TheWatcher/gitlabhq,LytayTOUCH/gitlabhq,vjustov/gitlabhq,fantasywind/gitlabhq,zBMNForks/gitlabhq,chenrui2014/gitlabhq,michaKFromParis/sparkslab,vjustov/gitlabhq,yatish27/gitlabhq,martinma4/gitlabhq,LytayTOUCH/gitlabhq,dvrylc/gitlabhq,duduribeiro/gitlabhq,Datacom/gitlabhq,OlegGirko/gitlab-ce,fearenales/gitlabhq,rebecamendez/gitlabhq,fscherwi/gitlabhq,shinexiao/gitlabhq,dwrensha/gitlabhq,ngpestelos/gitlabhq,ksoichiro/gitlabhq,sue445/gitlabhq,initiummedia/gitlabhq,axilleas/gitlabhq,tk23/gitlabhq,stanhu/gitlabhq,screenpages/gitlabhq,cinderblock/gitlabhq,dvrylc/gitlabhq,ferdinandrosario/gitlabhq,koreamic/gitlabhq,jaepyoung/gitlabhq,fgbreel/gitlabhq,screenpages/gitlabhq,Soullivaneuh/gitlabhq,jvanbaarsen/gitlabhq,ayufan/gitlabhq,fpgentil/gitlabhq,OlegGirko/gitlab-ce,sakishum/gitlabhq,chadyred/gitlabhq,fendoudeqingchunhh/gitlabhq,vjustov/gitlabhq,martinma4/gitlabhq,gopeter/gitlabhq,michaKFromParis/gitlabhqold,yonglehou/gitlabhq,tempbottle/gitlabhq,SVArago/gitlabhq,sakishum/gitlabhq,openwide-java/gitlabhq,MauriceMohlek/gitlabhq,bbodenmiller/gitlabhq,DanielZhangQingLong/gitlabhq,fearenales/gitlabhq,since2014/gitlabhq,openwide-java/gitlabhq,gopeter/gitlabhq,sonalkr132/gitlabhq,julianengel/gitlabhq,ayufan/gitlabhq,duduribeiro/gitlabhq,ferdinandrosario/gitlabhq,mente/gitlabhq,screenpages/gitlabhq,yonglehou/gitlabhq,chadyred/gitlabhq,wangcan2014/gitlabhq,Datacom/gitlabhq,dwrensha/gitlabhq,yama07/gitlabhq,daiyu/gitlab-zh,ferdinandrosario/gitlabhq,NKMR6194/gitlabhq,cui-liqiang/gitlab-ce,jvanbaarsen/gitlabhq,wangcan2014/gitlabhq,jirutka/gitlabhq,liyakun/gitlabhq,zBMNForks/gitlabhq,ksoichiro/gitlabhq,WSDC-NITWarangal/gitlabhq,copystudy/gitlabhq,chenrui2014/gitlabhq,gorgee/gitlabhq,sekcheong/gitlabhq,htve/GitlabForChinese,hzy001/gitlabhq,Telekom-PD/gitlabhq,openwide-java/gitlabhq,stanhu/gitlabhq,dvrylc/gitlabhq,williamherry/gitlabhq,rumpelsepp/gitlabhq,michaKFromParis/gitlabhq,dreampet/gitlab,ttasanen/gitlabhq,gorgee/gitlabhq,theonlydoo/gitlabhq,luzhongyang/gitlabhq,delkyd/gitlabhq,salipro4ever/gitlabhq,aaronsnyder/gitlabhq,H3Chief/gitlabhq,julianengel/gitlabhq,Devin001/gitlabhq,pulkit21/gitlabhq,yatish27/gitlabhq,Razer6/gitlabhq,folpindo/gitlabhq,nmav/gitlabhq,flashbuckets/gitlabhq,Devin001/gitlabhq,Tyrael/gitlabhq,nguyen-tien-mulodo/gitlabhq,Exeia/gitlabhq,salipro4ever/gitlabhq,szechyjs/gitlabhq,jaepyoung/gitlabhq,nmav/gitlabhq,jaepyoung/gitlabhq,Razer6/gitlabhq,Razer6/gitlabhq,sue445/gitlabhq,copystudy/gitlabhq,aaronsnyder/gitlabhq,it33/gitlabhq,zrbsprite/gitlabhq,htve/GitlabForChinese,pulkit21/gitlabhq,williamherry/gitlabhq,luzhongyang/gitlabhq,OtkurBiz/gitlabhq,yonglehou/gitlabhq,fearenales/gitlabhq,yama07/gitlabhq,kemenaran/gitlabhq,tim-hoff/gitlabhq,jrjang/gitlabhq,yatish27/gitlabhq,kemenaran/gitlabhq,aaronsnyder/gitlabhq,H3Chief/gitlabhq,allistera/gitlabhq,htve/GitlabForChinese,jrjang/gitlabhq,ngpestelos/gitlabhq,luzhongyang/gitlabhq,manfer/gitlabhq,bbodenmiller/gitlabhq,icedwater/gitlabhq,youprofit/gitlabhq,Telekom-PD/gitlabhq,sakishum/gitlabhq,hzy001/gitlabhq,allysonbarros/gitlabhq,michaKFromParis/gitlabhqold,ngpestelos/gitlabhq,flashbuckets/gitlabhq,youprofit/gitlabhq,copystudy/gitlabhq,ayufan/gitlabhq,zBMNForks/gitlabhq,kitech/gitlabhq,larryli/gitlabhq,LUMC/gitlabhq,sekcheong/gitlabhq,dukex/gitlabhq,chadyred/gitlabhq,koreamic/gitlabhq,iiet/iiet-git,mr-dxdy/gitlabhq,flashbuckets/gitlabhq,julianengel/gitlabhq,ayufan/gitlabhq,ordiychen/gitlabhq,t-zuehlsdorff/gitlabhq,gorgee/gitlabhq,mr-dxdy/gitlabhq,daiyu/gitlab-zh,hacsoc/gitlabhq,vjustov/gitlabhq,cui-liqiang/gitlab-ce,it33/gitlabhq,Exeia/gitlabhq,ordiychen/gitlabhq,DanielZhangQingLong/gitlabhq,stanhu/gitlabhq,revaret/gitlabhq,louahola/gitlabhq,fendoudeqingchunhh/gitlabhq,axilleas/gitlabhq,ttasanen/gitlabhq,koreamic/gitlabhq,allistera/gitlabhq,yfaizal/gitlabhq,WSDC-NITWarangal/gitlabhq,jvanbaarsen/gitlabhq,revaret/gitlabhq,luzhongyang/gitlabhq,shinexiao/gitlabhq,dwrensha/gitlabhq,youprofit/gitlabhq,gorgee/gitlabhq,k4zzk/gitlabhq,fpgentil/gitlabhq,DanielZhangQingLong/gitlabhq,gopeter/gitlabhq,zrbsprite/gitlabhq,williamherry/gitlabhq,theonlydoo/gitlabhq,Tyrael/gitlabhq,htve/GitlabForChinese,H3Chief/gitlabhq,yatish27/gitlabhq,fantasywind/gitlabhq,tk23/gitlabhq,pulkit21/gitlabhq,rebecamendez/gitlabhq,pjknkda/gitlabhq,jrjang/gitlab-ce,nguyen-tien-mulodo/gitlabhq,LUMC/gitlabhq,johnmyqin/gitlabhq,openwide-java/gitlabhq,delkyd/gitlabhq,iiet/iiet-git,michaKFromParis/sparkslab,LUMC/gitlabhq,TheWatcher/gitlabhq,yfaizal/gitlabhq,shinexiao/gitlabhq,mente/gitlabhq,axilleas/gitlabhq,Razer6/gitlabhq,cui-liqiang/gitlab-ce,michaKFromParis/gitlabhq,salipro4ever/gitlabhq,lvfeng1130/gitlabhq,nmav/gitlabhq,michaKFromParis/gitlabhqold,joalmeid/gitlabhq,Datacom/gitlabhq,mr-dxdy/gitlabhq,martijnvermaat/gitlabhq,screenpages/gitlabhq,Tyrael/gitlabhq,szechyjs/gitlabhq,TheWatcher/gitlabhq,johnmyqin/gitlabhq,mrb/gitlabhq,dplarson/gitlabhq,mente/gitlabhq,pjknkda/gitlabhq,hacsoc/gitlabhq,mmkassem/gitlabhq,martijnvermaat/gitlabhq,liyakun/gitlabhq,kitech/gitlabhq,aaronsnyder/gitlabhq,OtkurBiz/gitlabhq,hacsoc/gitlabhq,fpgentil/gitlabhq,SVArago/gitlabhq,kemenaran/gitlabhq,yfaizal/gitlabhq,ordiychen/gitlabhq,sonalkr132/gitlabhq,initiummedia/gitlabhq,pjknkda/gitlabhq,cinderblock/gitlabhq,allysonbarros/gitlabhq,mente/gitlabhq,mmkassem/gitlabhq,NKMR6194/gitlabhq,axilleas/gitlabhq,Burick/gitlabhq,folpindo/gitlabhq,bigsurge/gitlabhq,icedwater/gitlabhq,cinderblock/gitlabhq,Devin001/gitlabhq,fgbreel/gitlabhq,bozaro/gitlabhq,allistera/gitlabhq,rumpelsepp/gitlabhq,fearenales/gitlabhq,ksoichiro/gitlabhq,sekcheong/gitlabhq,larryli/gitlabhq,hq804116393/gitlabhq,ttasanen/gitlabhq,cinderblock/gitlabhq,jrjang/gitlabhq,Burick/gitlabhq,ikappas/gitlabhq,H3Chief/gitlabhq,darkrasid/gitlabhq,michaKFromParis/sparkslab,SVArago/gitlabhq,yfaizal/gitlabhq,eliasp/gitlabhq,dplarson/gitlabhq,whluwit/gitlabhq,pjknkda/gitlabhq,flashbuckets/gitlabhq,stoplightio/gitlabhq,yonglehou/gitlabhq,michaKFromParis/sparkslab,LytayTOUCH/gitlabhq,johnmyqin/gitlabhq,joalmeid/gitlabhq,bigsurge/gitlabhq,shinexiao/gitlabhq |
de432cf4817dc4a0599e6992e17844006305a66e | .gitlab-ci.yml | .gitlab-ci.yml | image: jacob9230/linter
before_script:
- npm install --no-package-lock --no-save --quiet stylelint-config-standard stylelint-order stylelint-scss
- node -v
- npm -v
- php -v
code_quality:
script:
- stylelint "./src/assets/styles/**/*.scss"
- eslint "./src/assets/scripts/**/*.js"
- phplint "./src"
| image: jacob9230/linter
before_script:
- npm install --global --quiet eslint stylelint
- npm install --no-package-lock --no-save --quiet stylelint stylelint-config-standard stylelint-order stylelint-scss
- node -v
- npm -v
- php -v
code_quality:
script:
- stylelint "./src/assets/styles/**/*.scss"
- eslint "./src/assets/scripts/**/*.js"
- phplint "./src"
| Install stylelint locally for CI | Install stylelint locally for CI
| YAML | mit | JacobDB/new-site,revxx14/new-site,JacobDB/new-site,revxx14/new-site,JacobDB/new-site |
4b097f5a9b3a2cd98b6a8c34e42b5cd5dff8a812 | .gitlab-ci.yml | .gitlab-ci.yml | Flake8:
script:
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-flake8.sh
- . ./prepare-and-run-flake8.sh "$CI_PROJECT_NAME" examples
tags:
- python3
except:
- tags
Documentation:
script:
- EXTRA_INSTALL="numpy"
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-docs.sh
- ". ./build-docs.sh"
tags:
- python3
only:
- master
| Flake8:
script:
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-flake8.sh
- . ./prepare-and-run-flake8.sh "$CI_PROJECT_NAME" examples
tags:
- python3
except:
- tags
Documentation:
script: |
EXTRA_INSTALL="numpy"
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh
. ./ci-support.sh
build_project_in_venv
build_docs --no-check
tags:
- python3
| Build docs without nitpick on Gitlab CI | Build docs without nitpick on Gitlab CI
| YAML | mit | inducer/pyvisfile,inducer/pyvisfile,inducer/pyvisfile |
998904661c39870d7c699829e23967ab32a85eb5 | metadata/com.github.muellerma.coffee.yml | metadata/com.github.muellerma.coffee.yml | Categories:
- System
License: Apache-2.0
SourceCode: https://github.com/mueller-ma/Coffee
IssueTracker: https://github.com/mueller-ma/Coffee/issues
Changelog: https://github.com/mueller-ma/Coffee/releases
AutoName: Coffee
RepoType: git
Repo: https://github.com/mueller-ma/Coffee.git
Builds:
- versionName: '1.2'
versionCode: 3
commit: '1.2'
subdir: app
gradle:
- yes
- versionName: '1.3'
versionCode: 4
commit: '1.3'
subdir: app
gradle:
- yes
- versionName: '1.4'
versionCode: 5
commit: '1.4'
subdir: app
gradle:
- yes
- versionName: '1.5'
versionCode: 6
commit: '1.5'
subdir: app
gradle:
- yes
- versionName: '1.7'
versionCode: 7
commit: '1.7'
subdir: app
gradle:
- yes
- versionName: '1.8'
versionCode: 8
commit: '1.8'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.8'
CurrentVersionCode: 8
| Categories:
- System
License: Apache-2.0
SourceCode: https://github.com/mueller-ma/Coffee
IssueTracker: https://github.com/mueller-ma/Coffee/issues
Changelog: https://github.com/mueller-ma/Coffee/releases
AutoName: Coffee
RepoType: git
Repo: https://github.com/mueller-ma/Coffee.git
Builds:
- versionName: '1.2'
versionCode: 3
commit: '1.2'
subdir: app
gradle:
- yes
- versionName: '1.3'
versionCode: 4
commit: '1.3'
subdir: app
gradle:
- yes
- versionName: '1.4'
versionCode: 5
commit: '1.4'
subdir: app
gradle:
- yes
- versionName: '1.5'
versionCode: 6
commit: '1.5'
subdir: app
gradle:
- yes
- versionName: '1.7'
versionCode: 7
commit: '1.7'
subdir: app
gradle:
- yes
- versionName: '1.8'
versionCode: 8
commit: '1.8'
subdir: app
gradle:
- yes
- versionName: '1.9'
versionCode: 9
commit: '1.9'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.9'
CurrentVersionCode: 9
| Update Coffee to 1.9 (9) | Update Coffee to 1.9 (9)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
ed350192c9f7c5c181b9b44c41ef13dd7234dc98 | .github/workflows/boards_build.yml | .github/workflows/boards_build.yml | ---
name: Build supported boards
on:
push:
paths:
- 'patches/tock/**'
- 'third_party/**'
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'patches/tock/**'
- 'third_party/**'
jobs:
build_boards:
strategy:
matrix:
os: [ubuntu-18.04, macos-10.15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
target: thumbv7em-none-eabi
- uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install Python dependencies
run: python -m pip install --upgrade pip setuptools wheel
- name: Set up OpenSK
run: ./setup.sh
- name: Building board nrf52840dk
run: make -C third_party/tock/boards/nordic/nrf52840dk
- name: Building board nrf52840_dongle
run: make -C third_party/tock/boards/nordic/nrf52840_dongle
| ---
name: Build supported boards
on:
push:
paths:
- 'patches/tock/**'
- 'third_party/**'
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'patches/tock/**'
- 'third_party/**'
jobs:
build_boards:
strategy:
matrix:
os: [ubuntu-18.04, macos-10.15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
target: thumbv7em-none-eabi
- uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install Python dependencies
run: python -m pip install --upgrade pip setuptools wheel
- name: Set up OpenSK
run: ./setup.sh
- name: Create a long build directory
run: mkdir this-is-a-long-build-directory-0123456789abcdefghijklmnopqrstuvwxyz && mv third_party this-is-a-long-build-directory-0123456789abcdefghijklmnopqrstuvwxyz/
- name: Building board nrf52840dk
run: make -C this-is-a-long-build-directory-0123456789abcdefghijklmnopqrstuvwxyz/third_party/tock/boards/nordic/nrf52840dk
- name: Building board nrf52840_dongle
run: make -C this-is-a-long-build-directory-0123456789abcdefghijklmnopqrstuvwxyz/third_party/tock/boards/nordic/nrf52840_dongle
| Move third_party/tock to a long build directory to catch limits in the linker scripts. | Move third_party/tock to a long build directory to catch limits in the linker scripts.
| YAML | apache-2.0 | google/OpenSK,google/OpenSK,google/OpenSK |
f657745ec42f32ca96c6fe68182b3e3218068686 | meta/main.yml | meta/main.yml | ---
galaxy_info:
author: newmen
description: RVM and Ruby installation
min_ansible_version: 1.5
license: MIT
platforms:
- name: CentOS
versions:
- 6
- 7
- name: Debian
versions:
- squeeze
- wheezy
- jessie
- name: Fedora
versions:
- 18
- 19
- 20
- 21
- name: Ubuntu
versions:
- lucid
- precise
- saucy
- trusty
- utopic
- vivid
categories:
- development
dependencies: []
version: 0.1.0
| ---
galaxy_info:
author: newmen
description: RVM and Ruby installation
min_ansible_version: 1.5
license: MIT
platforms:
- name: CentOS
versions:
- 6
- 7
- name: Debian
versions:
- squeeze
- wheezy
- jessie
- name: Fedora
versions:
- 18
- 19
- 20
- 21
- name: Ubuntu
versions:
- lucid
- precise
- saucy
- trusty
- utopic
- vivid
categories:
- development
dependencies: []
| Fix to "ERROR! 'version' is not a valid attribute for a RoleMetadata" | Fix to "ERROR! 'version' is not a valid attribute for a RoleMetadata" | YAML | mit | newmen/ansible-rvm |
4108157fc92833c783ad62ccd87c3fd001fd140d | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- apt-get update && apt-get install -y nodejs
- node --version
- npm --version
- java -version # Required for selenium server
- npm install
- ./scripts/setup_ci.sh
test:
script:
- xvfb-run ./scripts/run_ci.sh
| before_script:
- echo "Starting tests..."
test_linux:
script:
- apt-get update && apt-get install -y nodejs
- node --version
- npm --version
- java -version # Required for selenium server
- npm install
- ./scripts/setup_ci.sh
- xvfb-run ./scripts/run_ci.sh
tags:
- linux
test_windows:
script:
- bash scripts/setup.ci.sh
- bash scripts/run_ci.sh
test:
- windows
| Split CI jobs into Linux and Windows | Split CI jobs into Linux and Windows
| YAML | mit | spiegelm/xd-testing,spiegelm/xd-testing,spiegelm/xd-testing |
18e5dad0931f49fac4fe7a0a736adabd5fcba689 | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- "npm install"
- "grunt"
stages:
- test
check_v0_10:
script: "./tests/test_all.sh"
stage: test
tags:
- v0_10
check_v5:
script: "./tests/test_all.sh"
stage: test
tags:
- v5
| before_script:
- "npm install"
- "grunt"
stages:
- test
check_v0_10:
script: "cd tests && ./test_all.sh"
stage: test
tags:
- v0_10
check_v5:
script: "cd tests && ./test_all.sh"
stage: test
tags:
- v5
| Move to the testing dir | Move to the testing dir
| YAML | mit | LockateMe/Lawncipher,LockateMe/Lawncipher |
c2fa28185b670fc4484428e0efe2c4065898d798 | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- apt-get update -qq
- apt-get install -qq build-essential curl git
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
- source "$HOME/.cargo/env"
nightly:
script:
- cargo build
- make tests
| before_script:
- apt-get update -qq
- apt-get install -qq build-essential curl git
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
- source "$HOME/.cargo/env"
linux-nightly:
script:
- cargo build
- make tests
redox-nightly:
variables:
CC: "x86_64-unknown-redox-gcc"
before_script:
- apt-get update -qq
- apt-get install -qq build-essential curl git gnupg software-properties-common
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys AA12E97F0881517F
- add-apt-repository 'deb https://static.redox-os.org/toolchain/apt /'
- apt-get update -qq && apt-get install -qq x86-64-unknown-redox-gcc
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
- source "$HOME/.cargo/env"
- rustup target add x86_64-unknown-redox
script:
- cargo build --target x86_64-unknown-redox
| Add Redox to GitLab CI | Add Redox to GitLab CI
| YAML | mit | redox-os/ion,redox-os/ion,redox-os/ion |
46bdc6adfd7ff98a15edafb09bb9e415c0e31422 | .scss-lint.yml | .scss-lint.yml | scss_files: 'app/assets/stylesheets/**/*.scss'
NestingDepth:
max_depth: 5
SelectorDepth:
max_depth: 5
| scss_files: 'app/assets/stylesheets/**/*.scss'
linters:
NestingDepth:
max_depth: 5
SelectorDepth:
max_depth: 5
| Put our linters config in linters | Put our linters config in linters
| YAML | mit | Coursemology/coursemology2,xzhflying/coursemology2,Coursemology/coursemology2,BenMQ/coursemology2,Coursemology/coursemology2,Coursemology/coursemology2,cysjonathan/coursemology2,xzhflying/coursemology2,cysjonathan/coursemology2,xzhflying/coursemology2,Coursemology/coursemology2,harryggg/coursemology2,cysjonathan/coursemology2,harryggg/coursemology2,Coursemology/coursemology2,BenMQ/coursemology2,harryggg/coursemology2,BenMQ/coursemology2,Coursemology/coursemology2 |
2a4756d6422eabfbcb1d0416b9352d9eb9bfbcbb | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
branches: [ feature/github-actions-for-windows-compilers ]
pull_request:
branches: [ master ]
jobs:
build-windows-vs2019:
name: Windows VS2019 Debug
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.1
- name: Checkout UnitTest++
uses: actions/checkout@v2
with:
repository: unittest-cpp/unittest-cpp
path: ${GITHUB_WORKSPACE}/../unittest-cpp
- name: Build
run: MSBuild.exe test/vs2019/etl.sln
- name: Run tests
run: ./test/etl_tests
| name: CI
on:
push:
branches: [ feature/github-actions-for-windows-compilers ]
pull_request:
branches: [ master ]
jobs:
build-windows-vs2019:
name: Windows VS2019 Debug
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.1
- name: Checkout UnitTest++
uses: actions/checkout@v2
with:
repository: unittest-cpp/unittest-cpp
path: ${GITHUB_WORKSPACE}/../../../unittest-cpp
- name: Build
run: MSBuild.exe test/vs2019/etl.sln
- name: Run tests
run: ./test/etl_tests
| Add VS2019 configuration to Github CI | Add VS2019 configuration to Github CI
| YAML | mit | ETLCPP/etl,ETLCPP/etl,ETLCPP/etl,ETLCPP/etl |
fe875b51fa04573ea3c184d985d037de95dfdcc4 | .github/workflows/main.yml | .github/workflows/main.yml | name: Python tests
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6.13", "3.7.10", "3.8.9", "3.9.4"]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements.txt
- name: Run tests
run: |
coverage run mrcrowbar/tests.py
- name: Upload to Coveralls
run: |
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| name: Python tests
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7.11", "3.8.11", "3.9.6"]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements.txt
- name: Run tests
run: |
coverage run mrcrowbar/tests.py
- name: Upload to Coveralls
run: |
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| Update GitHub workflows to remove 3.6 | Update GitHub workflows to remove 3.6
| YAML | bsd-3-clause | moralrecordings/mrcrowbar |
5973701fd2983499e8b0f266c5d9738dee0ebdd3 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI tests
on:
pull_request:
paths-ignore:
- 'doc/*'
- 'docker/*'
- 'media/*'
- '*.md'
push:
paths-ignore:
- 'doc/*'
- 'docker/*'
- 'media/*'
- '*.md'
jobs:
run-tests:
name: Test on ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Install packages
run: |
sudo apt update
sudo apt install neovim
sudo apt install texlive texlive-latex-extra texlive-extra-utils
sudo apt install texlive-bibtex-extra libtext-bibtex-perl
sudo apt install latexmk
sudo apt install gcc moreutils
sudo apt install libmodule-build-perl
sudo apt install libconfig-autoconf-perl
sudo apt install libextutils-libbuilder-perl
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Test with neovim
run: cd test/tests && make -j1
- name: Test with vim
env:
MYVIM: vim -T dumb --not-a-term --noplugin -n
run: cd test/tests && make -j1
| name: CI tests
on:
pull_request:
paths-ignore:
- 'doc/*'
- 'docker/*'
- 'media/*'
- '*.md'
push:
paths-ignore:
- 'doc/*'
- 'docker/*'
- 'media/*'
- '*.md'
jobs:
run-tests:
name: Test on ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Install packages
run: |
sudo apt update
sudo apt install neovim \
texlive texlive-latex-extra texlive-extra-utils \
texlive-bibtex-extra libtext-bibtex-perl \
latexmk \
gcc moreutils \
libmodule-build-perl \
libconfig-autoconf-perl \
libextutils-libbuilder-perl
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Test with neovim
run: cd test/tests && make -j1
- name: Test with vim
env:
MYVIM: vim -T dumb --not-a-term --noplugin -n
run: cd test/tests && make -j1
| Simplify installation command in GitHub Actions to use a single `apt install`. | Simplify installation command in GitHub Actions to use a single `apt install`.
| YAML | mit | lervag/vimtex,lervag/vimtex |
023d805a48cc1b072fa9ad2407636c7dc7bd04a9 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on: [push]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@master
with:
submodules: true
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.0.100-19424.4' # SDK Version to use.
- run: dotnet build OutlookDesktop.sln
| name: CI
on: [push]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@master
with:
submodules: true
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.0.100-014004' # SDK Version to use.
- run: dotnet build OutlookDesktop.sln
| Correct .net core 3 version string | Correct .net core 3 version string | YAML | mit | mscrivo/ootd |
ea1c502cdb16c7cbc43f31362937bb883b01fbb1 | .github/workflows/ruby.yml | .github/workflows/ruby.yml | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.6, 2.7, 3.0]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake ci
| # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.6, 2.7, 3.0]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake
| Use the correct rake test command | Use the correct rake test command
| YAML | mit | cbeer/deprecation |
7ceb3947961bb9dff0e44225cfed294172f68d23 | .github/workflows/test.yml | .github/workflows/test.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm test
run: npm test
env:
CI: true
| # This workflow will do an 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: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
env:
CI: true
| Test pull requests with GitHub Actions | Test pull requests with GitHub Actions | YAML | agpl-3.0 | Zarel/Pokemon-Showdown-Client,Zarel/Pokemon-Showdown-Client,Zarel/Pokemon-Showdown-Client,Zarel/Pokemon-Showdown-Client |
5e44b6fc174a0caf782aad2f38daaeb4ebdff9f7 | .miniconda-recipe/construct.yaml | .miniconda-recipe/construct.yaml | name: MicroDrop
version: {{ GIT_DESCRIBE_TAG[1:] }}
channels:
- https://conda.anaconda.org/wheeler-microfluidics/
- http://repo.continuum.io/pkgs/free/
specs:
- python 2.7*
- conda
- microdrop-launcher >=0.4
- pip
- pywin32
- microdrop =={{ GIT_DESCRIBE_TAG[1:] }}
# Install requirements for "featured" plugins
- dmf-device-ui-plugin-requirements >=2.0.post37
- dropbot-dx-plugin-requirements >=2.3.post1
- droplet-planning-plugin-requirements >=1.0.post36
- metadata-plugin-requirements
license_file: EULA.txt
conda_default_channels:
- https://conda.anaconda.org/wheeler-microfluidics/
- http://repo.continuum.io/pkgs/free/
# Welcome image for Windows installer
welcome_image: logo.png [win]
| name: MicroDrop
version: {{ GIT_DESCRIBE_TAG[1:] }}
channels:
- https://conda.anaconda.org/wheeler-microfluidics/
- https://conda.anaconda.org/conda-forge/
- http://repo.continuum.io/pkgs/free/
specs:
- python 2.7*
- conda
- microdrop-launcher >=0.4
- pip
- pywin32
- microdrop =={{ GIT_DESCRIBE_TAG[1:] }}
# Install requirements for "featured" plugins
- dmf-device-ui-plugin-requirements >=2.0.post37
- dropbot-dx-plugin-requirements >=2.3.post1
- droplet-planning-plugin-requirements >=1.0.post36
- metadata-plugin-requirements
license_file: EULA.txt
conda_default_channels:
- https://conda.anaconda.org/wheeler-microfluidics/
- https://conda.anaconda.org/conda-forge/
- http://repo.continuum.io/pkgs/free/
# Welcome image for Windows installer
welcome_image: logo.png [win]
| Add conda-forge channel for installer | [FIX] Add conda-forge channel for installer
| YAML | bsd-3-clause | wheeler-microfluidics/microdrop |
47a35fa743d79ae7d61c5781a0fff1a5d336cacf | config/prisons/WCI-winchester-convicted-only.yml | config/prisons/WCI-winchester-convicted-only.yml | ---
name: Winchester (Convicted only)
nomis_id: WCI
address:
- Romsey Road
- SO22 5DF
email: socialvisits.winchester@hmps.gsi.gov.uk
enabled: true
estate: Winchester
finder_slug: winchester
phone: 0845 223 5514
slots:
fri:
- 1400-1600
mon:
- 1400-1600
sat:
- 1400-1600
sun:
- 1400-1600
thu:
- 1400-1600
tue:
- 1400-1600
wed:
- 1400-1600
unbookable:
- 2014-12-25
- 2014-12-26
- 2015-04-03
| ---
name: Winchester (Convicted only)
nomis_id: WCI
address:
- Romsey Road
- SO22 5DF
email: socialvisits.winchester@hmps.gsi.gov.uk
enabled: true
estate: Winchester
finder_slug: winchester
phone: 0845 223 5514
slots:
fri:
- 1400-1600
mon:
- 1400-1600
sat:
- 1400-1600
sun:
- 1400-1600
thu:
- 1400-1600
tue:
- 1400-1600
wed:
- 1400-1600
unbookable:
- 2014-12-25
- 2014-12-26
- 2015-04-03
- 2015-12-25
- 2015-12-26
| Update Winchester convicted Christmas visit slots | Update Winchester convicted Christmas visit slots
Unbookable - Christmas Day, Boxing Day | YAML | mit | ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits |
986ecb13218c6c3cfdf1e2dfa872c53a20a8328b | packages/ae/aeson-casing.yaml | packages/ae/aeson-casing.yaml | homepage: ''
changelog-type: ''
hash: 98eb1ceb86581b7200803d9cb176961246986a29b1725e142679667f6c3efe73
test-bench-deps:
tasty-th: -any
aeson-casing: -any
base: ! '>=4.7 && <5.0'
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
aeson: -any
maintainer: andrewrademacher@gmail.com
synopsis: ! 'Tools to change the formatting of field names in Aeson
instances.'
changelog: ''
basic-deps:
base: ! '>=4.7 && <5.0'
aeson: ! '>=0.8'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
author: Andrew Rademacher
latest: '0.1.0.4'
description-type: haddock
description: ! 'Tools to change the formatting of field names in Aeson
instances. This includes CamelCasing, Pascal Casing and
Snake Casing.'
license-name: MIT
| homepage: ''
changelog-type: ''
hash: dfa52ef1ceaed3e22f5c157703359828aa6d4d295761480cf8a21fa7d3af153b
test-bench-deps:
tasty-th: -any
aeson-casing: -any
base: ! '>=4.7 && <5.0'
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
aeson: -any
maintainer: andrewrademacher@gmail.com
synopsis: ! 'Tools to change the formatting of field names in Aeson
instances.'
changelog: ''
basic-deps:
base: ! '>=4.7 && <5.0'
aeson: ! '>=0.8'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
author: Andrew Rademacher
latest: '0.1.0.5'
description-type: haddock
description: ! 'Tools to change the formatting of field names in Aeson
instances. This includes CamelCasing, Pascal Casing and
Snake Casing.'
license-name: MIT
| Update from Hackage at 2015-12-25T00:35:51+0000 | Update from Hackage at 2015-12-25T00:35:51+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
166c0b97df6f42e0d5b3ac80693ba6863dd02004 | packages/co/composite-ix.yaml | packages/co/composite-ix.yaml | homepage: ''
changelog-type: markdown
hash: 7a3a153b241ddea7ddd5c07bcd828df4b62bfe3dff36a1be3264109ffbea087c
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Indexing utilities for composite records.
changelog: |
# Changelog for composite-ix
## 0.0.1.0
* Added module `Composite.Ix.Vector`.
* Added modules `Composite.Ix.List` and `Composite.Ix.NonEmpty`.
basic-deps:
base: '>=4.7 && <5'
composite-base: -any
nonempty-containers: -any
containers: -any
vinyl: -any
lens: -any
vector: -any
all-versions:
- 0.0.1.0
author: Daniel Firth
latest: 0.0.1.0
description-type: markdown
description: |
# composite-ix
license-name: BSD-3-Clause
| homepage: ''
changelog-type: markdown
hash: e120935bb3b6c64ba7f976446a4f8ee3fb24383e30c1906025e64212d02af0d9
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Indexing utilities for composite records.
changelog: |
# Changelog for composite-ix
## 0.0.1.0
* Added module `Composite.Ix.Vector`.
* Added modules `Composite.Ix.List` and `Composite.Ix.NonEmpty`.
basic-deps:
base: '>=4.7 && <5'
composite-base: '>=0.7.0.0'
nonempty-containers: -any
containers: -any
vinyl: -any
lens: -any
vector: -any
all-versions:
- 0.0.1.0
author: Daniel Firth
latest: 0.0.1.0
description-type: markdown
description: |
# composite-ix
license-name: BSD-3-Clause
| Update from Hackage at 2022-05-24T09:35:43Z | Update from Hackage at 2022-05-24T09:35:43Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f6eb01fbfe66ef8454b368ef2eec515f38c72e4a | packages/da/data-foldapp.yaml | packages/da/data-foldapp.yaml | homepage: https://github.com/erisco/data-foldapp
changelog-type: markdown
hash: 3acb5de40baa1b8af3d2dd066c46c93633e618f6abbb0a731079392887775064
test-bench-deps: {}
maintainer: eric.brisco@gmail.com
synopsis: Fold function applications. Framework for variadic functions.
changelog: ! "# Revision history for data-foldapp\r\n\r\n## 0.1.0.0 -- YYYY-mm-dd\r\n\r\n*
First version. Released on an unsuspecting world.\r\n"
basic-deps:
base: ! '>=4.9 && <4.10'
containers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
author: Eric Brisco
latest: '0.1.0.0'
description-type: haddock
description: Fold function applications. Framework for variadic functions.
license-name: BSD3
| homepage: https://github.com/erisco/data-foldapp
changelog-type: markdown
hash: e24888810b31ac579edea316d3cc8230c54de0c5ba7108e7fbd85c9944d3d17c
test-bench-deps: {}
maintainer: eric.brisco@gmail.com
synopsis: Fold function applications. Framework for variadic functions.
changelog: ! "# Revision history for data-foldapp\r\n\r\n## 0.1.0.0 -- YYYY-mm-dd\r\n\r\n*
First version. Released on an unsuspecting world.\r\n"
basic-deps:
base: ! '>=4.9 && <9223372036854775807'
containers: ! '>=0.5 && <9223372036854775807'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
author: Eric Brisco
latest: '0.1.1.0'
description-type: haddock
description: Fold function applications. Framework for variadic functions.
license-name: BSD3
| Update from Hackage at 2018-01-21T18:44:44Z | Update from Hackage at 2018-01-21T18:44:44Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d24ffa22d3acbe27c2493471c9cee1d73df4f2c5 | packages/mi/Michelangelo.yaml | packages/mi/Michelangelo.yaml | homepage: ''
changelog-type: ''
hash: 3af2eb2be7a36e8170f3c280e69f2a3e2efd3a74eb0fea25c1165ad47458f52e
test-bench-deps: {}
maintainer: jonatanhsundqvist@gmail.com
synopsis: OpenGL for dummies
changelog: ''
basic-deps:
GLUtil: -any
bytestring: -any
OpenGL: -any
base: <=4.8.1.0
containers: -any
lens: <=4.13.0.0
WaveFront: -any
linear: -any
OpenGLRaw: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.2.0.0'
- '0.2.1.0'
author: Jonatan H Sundqvist
latest: '0.2.1.0'
description-type: markdown
description: ! "Michelangelo\r\n============\r\n\r\n\r\nContributors\r\n------------\r\nJonatan
H Sundqvist\r\n\r\n\r\nTODO\r\n----\r\n"
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 198006b88dba586e85f60738100582633f5a7f89ac412dd07cf76d0381956a72
test-bench-deps: {}
maintainer: jonatanhsundqvist@gmail.com
synopsis: OpenGL for dummies
changelog: ''
basic-deps:
GLUtil: -any
bytestring: -any
OpenGL: -any
base: <=4.8.1.0
containers: -any
lens: <=4.13.0.0
WaveFront: -any
linear: -any
OpenGLRaw: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
author: Jonatan H Sundqvist
latest: '0.2.2.0'
description-type: markdown
description: ! "Michelangelo\r\n============\r\n\r\n\r\nContributors\r\n------------\r\nJonatan
H Sundqvist\r\n\r\n\r\nTODO\r\n----\r\n"
license-name: MIT
| Update from Hackage at 2015-11-23T20:16:29+0000 | Update from Hackage at 2015-11-23T20:16:29+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
24a2dbaccbb132966dafe5ab0952320b589e30a9 | ansible/roles/network-interfaces/tasks/main.yml | ansible/roles/network-interfaces/tasks/main.yml | ---
- name: Check if NetworkManager package is installed
command: dpkg -s network-manager
register: nm_installed_check
failed_when: nm_installed_check.rc > 1
- name: Stop NetworkManager
service:
name: network-manager
state: stopped
enabled: no
when: nm_installed_check.rc == 0
- name: Remove NetworkManager
apt:
pkg: network-manager
state: absent
- name: Configure network interfaces
template:
src: etc_network_interfaces.j2
dest: /etc/network/interfaces
owner: root
group: root
mode: 0644
register: etc_network_interfaces
# Note: this is not a handler because we need the network configuration in
# effect before proceeding with the wifi-ap and firewall roles, which will
# otherwise fail if not.
- name: Restart network
service:
name: systemd-networkd.service
state: restarted
when: etc_network_interfaces.changed
tags:
# This task on change is intentionally not a handler; don't trigger ANSIBLE0016
- skip_ansible_lint
| ---
- name: Check if NetworkManager package is installed
command: dpkg -s network-manager
register: nm_installed_check
failed_when: nm_installed_check.rc > 1
- name: Stop NetworkManager
service:
name: network-manager
state: stopped
enabled: no
when: nm_installed_check.rc == 0
- name: Remove NetworkManager
apt:
pkg: network-manager
state: absent
- name: Configure network interfaces NEO
template:
src: etc_network_interfaces.j2
dest: /etc/network/interfaces
owner: root
group: root
mode: 0644
when: connectbox_os != "raspbian"
register: etc_network_interfaces
- name: Configure network interfaces RPi
template:
src: etc_network_interfaces-RPi.j2
dest: /etc/network/interfaces
owner: root
group: root
mode: 0644
when: connectbox_os == "raspbian"
register: etc_network_interfaces
# Note: this is not a handler because we need the network configuration in
# effect before proceeding with the wifi-ap and firewall roles, which will
# otherwise fail if not.
- name: Restart network
service:
name: systemd-networkd.service
state: restarted
when: etc_network_interfaces.changed
tags:
# This task on change is intentionally not a handler; don't trigger ANSIBLE0016
- skip_ansible_lint
| Create separate NEO/RPi network configurations | Create separate NEO/RPi network configurations | YAML | apache-2.0 | edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi |
416a64f8c0d1521f811713ec6f819fee48c355e4 | .github/workflows/draft-release.yaml | .github/workflows/draft-release.yaml | on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
- 'protocol*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Create Draft Releases
jobs:
release-tags:
name: draft-release
runs-on: ubuntu-latest
steps:
- name: Create Draft Release
id: create_draft_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true
prerelease: false
| on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
- 'protocol/**' # Push events to matching protocol/foo/bar/v*, i.e. protocol/foo/bar/v1.0, protocol/foo/bar/v20.15.10
name: Create Draft Releases
jobs:
release-tags:
name: draft-release
runs-on: ubuntu-latest
steps:
- name: Create Draft Release
id: create_draft_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true
prerelease: false
| Correct github actions tag selection for draft releases. | Correct github actions tag selection for draft releases.
Correct github actions tag selection for draft releases.
Signed-off-by: Scott Nichols <7cffec84f3535751e7e39fdb515d54ec7792b8a5@vmware.com> | YAML | apache-2.0 | cloudevents/sdk-go,cloudevents/sdk-go |
ac98aca4439895402dd190b1e696fbdd87ea3da7 | .github/workflows/ossar-analysis.yml | .github/workflows/ossar-analysis.yml | # This workflow integrates a collection of open source static analysis tools
# with GitHub code scanning. For documentation, or to provide feedback, visit
# https://github.com/github/ossar-action
name: OSSAR
on:
push:
pull_request:
jobs:
OSSAR-Scan:
# OSSAR runs on windows-latest.
# ubuntu-latest and macos-latest support coming soon
runs-on: windows-latest
steps:
# Checkout your code repository to scan
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
# Install dotnet, used by OSSAR
- name: Install .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.201'
# Run open source static analysis tools
- name: Run OSSAR
uses: github/ossar-action@v1
id: ossar
# Upload results to the Security tab
- name: Upload OSSAR results
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: ${{ steps.ossar.outputs.sarifFile }}
| # This workflow integrates a collection of open source static analysis tools
# with GitHub code scanning. For documentation, or to provide feedback, visit
# https://github.com/github/ossar-action
name: OSSAR
on:
push:
pull_request:
jobs:
OSSAR-Scan:
# OSSAR runs on windows-latest.
# ubuntu-latest and macos-latest support coming soon
runs-on: windows-latest
steps:
# Checkout your code repository to scan
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
# Install dotnet, used by OSSAR
- name: Install .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: '3.1.201'
# Run open source static analysis tools
- name: Run OSSAR
uses: github/ossar-action@v1
id: ossar
# Upload results to the Security tab
- name: Upload OSSAR results
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: ${{ steps.ossar.outputs.sarifFile }}
| Update actions/setup-dotnet action to v2 | Update actions/setup-dotnet action to v2
Signed-off-by: Renovate Bot <c71e7261d37a4f6ae4cfb0cbd79081310a237e67@renovateapp.com>
| YAML | mit | paazmaya/image-flatify |
84bc6344a44cecfab7d4fe5ffcd143b9b06dea62 | .github/workflows/python-package.yml | .github/workflows/python-package.yml | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
# branches: [ master ]
pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- python-version: ['3.7']
os: macos-latest
- python-version: '3.8'
os: ubuntu-latest
- python-version: '3.9'
os: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[cache,doc,test]
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest -ra -m "not experimental" --cov pandasdmx --cov-report term-missing
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
# branches: [ master ]
pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- python-version: '3.7'
os: macos-latest
- python-version: '3.8'
os: ubuntu-latest
- python-version: '3.9'
os: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[cache,doc,test]
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest -ra -m "not experimental" --cov pandasdmx --cov-report term-missing
| Fix syntax in build matrix for py3.7 | Fix syntax in build matrix for py3.7
| YAML | apache-2.0 | dr-leo/pandaSDMX |
5af29c325db6c520fb0f28bd4a6e16dd12a21c6a | roles/iptables/tasks/main.yml | roles/iptables/tasks/main.yml | ---
- name: Check if firewalld exists
shell: "if systemctl -l | grep -q firewalld; then echo true; else echo false; fi;"
register: firewalld_exists
- name: "Disable firewalld"
service: name=firewalld enabled=no state=stopped
when: firewalld_exists == True
- name: Install iptables and ip6tables
yum: name={{item}} state=present
with_items:
- iptables-services
- name: Put iptables
template: src=iptables.j2 dest='/etc/sysconfig/iptables'
notify:
- restart iptables
- name: Put ip6tables
template: src=ip6tables.j2 dest='/etc/sysconfig/ip6tables'
notify:
- restart ip6tables
- name: Start and enable services iptables and iptables6
service: name={{item}} state=started enabled=true
with_items:
- iptables
- ip6tables
| ---
- name: Uninstall firewalld
yum: name=firewalld state=absent
- name: Install iptables and ip6tables
yum: name={{item}} state=present
with_items:
- iptables-services
- name: Put iptables
template: src=iptables.j2 dest='/etc/sysconfig/iptables'
notify:
- restart iptables
- name: Put ip6tables
template: src=ip6tables.j2 dest='/etc/sysconfig/ip6tables'
notify:
- restart ip6tables
- name: Start and enable services iptables and iptables6
service: name={{item}} state=started enabled=true
with_items:
- iptables
- ip6tables
| Make sure firewalld is uninstalled | Iptables: Make sure firewalld is uninstalled
| YAML | apache-2.0 | baszoetekouw/OpenConext-deploy,OpenConext/OpenConext-deploy,baszoetekouw/OpenConext-deploy,baszoetekouw/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,baszoetekouw/OpenConext-deploy,baszoetekouw/OpenConext-deploy |
666da776c726181d5c84804f4ff5d6c7b79559f6 | roles/macos/handlers/main.yml | roles/macos/handlers/main.yml | ---
- name: Clean homebrew
shell: |
brew cleanup
- name: Notify updates of the system via Slack
when:
- slack_token is defined
- slack_channel is defined
- slack_icon_url is defined
local_action:
module: slack
msg: 'The system was updated.'
token: "{{ slack_token }}"
channel: "#{{ slack_channel }}"
username: "{{ ansible_ssh_user }}@{{ inventory_hostname }}"
icon_url: "{{ slack_icon_url }}"
| ---
- name: Clean homebrew
shell: |
/usr/local/bin/brew cleanup
- name: Notify updates of the system via Slack
when:
- slack_token is defined
- slack_channel is defined
- slack_icon_url is defined
local_action:
module: slack
msg: 'The system was updated.'
token: "{{ slack_token }}"
channel: "#{{ slack_channel }}"
username: "{{ ansible_ssh_user }}@{{ inventory_hostname }}"
icon_url: "{{ slack_icon_url }}"
| Add the path to homebrew | Add the path to homebrew
| YAML | agpl-3.0 | dceoy/ansible-dev,dceoy/ansible-dev |
3ab177ca9b86bfba17d5b0ed6796dfdc92fda09f | roles/mesos/handlers/main.yml | roles/mesos/handlers/main.yml | ---
- name: restart mesos leader
sudo: yes
command: systemctl restart mesos-master
- name: remove mesos follower metadata
sudo: yes
command: "{{ item }}"
with_items:
- systemctl stop mesos-slave
- rm -rf /tmp/mesos/meta/slaves/latest
- systemctl start mesos-slave
- name: restart mesos follower
sudo: yes
command: systemctl restart mesos-slave
- name: reload consul
sudo: yes
command: "{{ consul_bin }} reload"
- name: restart nginx-mesos-leader
sudo: yes
command: systemctl restart nginx-mesos-leader
- name: reload nginx-mesos-leader
sudo: yes
command: systemctl daemon-reload
- name: restart collectd
sudo: yes
service:
name: collectd
state: restarted
| ---
- name: restart mesos leader
sudo: yes
command: systemctl restart mesos-master
- name: remove mesos follower metadata
sudo: yes
command: "{{ item }}"
with_items:
- systemctl stop mesos-slave
- rm -rf /tmp/mesos/meta/slaves/latest
- systemctl start mesos-slave
- name: restart mesos follower
sudo: yes
command: systemctl restart mesos-slave
- name: restart nginx-mesos-leader
sudo: yes
command: systemctl restart nginx-mesos-leader
- name: reload nginx-mesos-leader
sudo: yes
command: systemctl daemon-reload
- name: restart collectd
sudo: yes
service:
name: collectd
state: restarted
| Use handlers/ `reload consul` handler | Use handlers/ `reload consul` handler
| YAML | apache-2.0 | sehqlr/mantl,phnmnl/mantl,KaGeN101/mantl,abn/microservices-infrastructure,datascienceinc/mantl,phnmnl/mantl,bitium/mantl,CiscoCloud/mantl,ContainerSolutions/microservices-infrastructure,bitium/mantl,KaGeN101/mantl,abn/microservices-infrastructure,mantl/mantl,ContainerSolutions/microservices-infrastructure,CiscoCloud/microservices-infrastructure,abn/microservices-infrastructure,sehqlr/mantl,mantl/mantl,CiscoCloud/microservices-infrastructure,datascienceinc/mantl,CiscoCloud/mantl |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.