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
|
---|---|---|---|---|---|---|---|---|---|
61239d1ef723877f2e82a0e857f5cd86195f7290
|
tests/use-cached-repos.yaml
|
tests/use-cached-repos.yaml
|
- name: Test the use-cached-repos role
hosts: all
roles:
- role: use-cached-repos
post_tasks:
# openstack-infra/project-config is in 'required-projects'.
# openstack-infra/opentack-zuul-jobs is also implicitly in 'projects'.
# We're checking them explicitly rather than with_items on zuul.projects
# in case there is a regression which would take an item out.
- name: Check that openstack-infra/project-config was prepared
stat:
path: "{{ ansible_user_dir }}/src/git.openstack.org/openstack-infra/project-config"
register: project_config
- name: Check that openstack-infra/openstack-zuul-jobs was prepared
stat:
path: "{{ ansible_user_dir }}/src/git.openstack.org/openstack-infra/openstack-zuul-jobs"
register: ozj_config
- name: Validate that required projects have been prepared
assert:
that:
- project_config.stat.exists
- ozj_config.stat.exists
|
- name: Test the use-cached-repos role
hosts: all
roles:
- role: use-cached-repos
post_tasks:
# openstack-infra/project-config is in 'required-projects'.
# Also check that the project being tested is being prepared.
# We're checking them explicitly rather than with_items on zuul.projects
# in case there is a regression which would take an item out.
- name: Check that openstack-infra/project-config was prepared
stat:
path: "{{ ansible_user_dir }}/src/git.openstack.org/openstack-infra/project-config"
register: project_config
- name: Check this project was prepared
stat:
path: "{{ ansible_user_dir }}/src/{{ zuul.project.canonical_name }}"
register: self_config
- name: Validate that required projects have been prepared
assert:
that:
- project_config.stat.exists
- self_config.stat.exists
|
Test that the project being tested was prepared, not necessarily o-z-j
|
Test that the project being tested was prepared, not necessarily o-z-j
When this job is ran against other repositories such as project-config
or zuul-jobs, the project being prepared won't be o-z-j.
Change-Id: I8487680ad573b1127e5d2e73fafbd0442e003c62
|
YAML
|
apache-2.0
|
openstack-infra/openstack-zuul-jobs,openstack-infra/openstack-zuul-jobs
|
9065009252f3cb2394d7cda7202c7fd50259672c
|
.forestry/settings.yml
|
.forestry/settings.yml
|
---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: document
path: _data/nav.yml
label: 文档
- type: heading
label: 博客
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6-node12
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bliss s --drafts --unpublished --future --port 8080 --host
0.0.0.0 -d _site
|
---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: document
path: _data/nav.yml
label: 文档
- type: heading
label: 博客
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: npm install jekyll-bliss; bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6-node12
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bliss s --drafts --unpublished --future --port 8080 --host
0.0.0.0 -d _site
|
Update from Forestry.io - Updated Forestry configuration
|
Update from Forestry.io - Updated Forestry configuration
|
YAML
|
apache-2.0
|
zuonx/zuonx.github.io,zuonx/zuonx.github.io,zuonx/zuonx.github.io
|
25cc54cacd4eb8f997dba2290e9d09818bd6a269
|
lib/gitlab/ci/templates/Serverless.gitlab-ci.yml
|
lib/gitlab/ci/templates/Serverless.gitlab-ci.yml
|
# GitLab Serverless template
image: alpine:latest
stages:
- build
- test
- deploy
.serverless:build:image:
stage: build
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
script: /usr/bin/gitlabktl app build
.serverless:deploy:image:
stage: deploy
image: gcr.io/triggermesh/tm@sha256:3cfdd470a66b741004fb02354319d79f1598c70117ce79978d2e07e192bfb336 # v0.0.11
environment: development
script:
- echo "$CI_REGISTRY_IMAGE"
- tm -n "$KUBE_NAMESPACE" --config "$KUBECONFIG" deploy service "$CI_PROJECT_NAME" --from-image "$CI_REGISTRY_IMAGE" --wait
.serverless:build:functions:
stage: build
environment: development
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
script: /usr/bin/gitlabktl serverless build
.serverless:deploy:functions:
stage: deploy
environment: development
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
script: /usr/bin/gitlabktl serverless deploy
|
# GitLab Serverless template
image: alpine:latest
stages:
- build
- test
- deploy
.serverless:build:image:
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
stage: build
script: /usr/bin/gitlabktl app build
.serverless:deploy:image:
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
stage: deploy
environment: development
script: /usr/bin/gitlabktl app deploy
.serverless:build:functions:
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
stage: build
script: /usr/bin/gitlabktl serverless build
.serverless:deploy:functions:
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
stage: deploy
environment: development
script: /usr/bin/gitlabktl serverless deploy
|
Deploy serverless apps with `gitlabktl`
|
Deploy serverless apps with `gitlabktl`
|
YAML
|
mit
|
mmkassem/gitlabhq,stoplightio/gitlabhq,stoplightio/gitlabhq,mmkassem/gitlabhq,stoplightio/gitlabhq,mmkassem/gitlabhq,stoplightio/gitlabhq,mmkassem/gitlabhq
|
4680b25f2393a24af76ac79ced86bbc31abb975d
|
.github/workflows/check-change-note.yml
|
.github/workflows/check-change-note.yml
|
on:
pull_request_target:
types: [labeled, unlabeled, opened, synchronize, reopened, ready_for_review]
paths:
- "*/ql/src/**/*.ql"
- "*/ql/src/**/*.qll"
- "!**/experimental/**"
jobs:
check-change-note:
runs-on: ubuntu-latest
steps:
- name: Check if change note file is present
uses: dorny/paths-filter@7c0f15b688b020e95e00f15c61299b022f08ca95 # v2.8.0
id: paths_filter
with:
filters: |
change_note:
- '**/change-notes/*.md'
- name: Get PR labels
id: pr-labels
uses: joerick/pr-labels-action@0a4cc4ee0ab557ec0b1ae1157fa6fa7f9f4c494b # v1.0.6
- name: Fail if change note is missing
uses: actions/github-script@v3
if: |
github.event.pull_request.draft == false &&
steps.paths_filter.outputs.change_note == 'false' &&
!contains(steps.pr-labels.outputs.labels, ' no-change-note-required ')
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
core.setFailed('No change note found.' +
' Either add one, or add the `no-change-note-required` label.')
|
on:
pull_request_target:
types: [labeled, unlabeled, opened, synchronize, reopened, ready_for_review]
paths:
- "*/ql/src/**/*.ql"
- "*/ql/src/**/*.qll"
- "!**/experimental/**"
jobs:
check-change-note:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Fail if no change note found. To fix, either add one, or add the `no-change-note-required` label.
if: |
github.event.pull_request.draft == false &&
!contains(github.event.pull_request.labels.*.name, 'no-change-note-required')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh api 'repos/${{github.repository}}/pulls/${{github.event.number}}/files' --paginate |
jq '.[].filename' --raw-output |
grep '/change-notes/.*\.md$'
|
Remove dependence on external actions
|
Actions: Remove dependence on external actions
|
YAML
|
mit
|
github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql,github/codeql
|
656d46d41990037352642fad77d269753fa28be0
|
omni4d.core.yaml
|
omni4d.core.yaml
|
class_of_individuals: omni4d.core.persons
# Identification and Naming Pattern
class_of_individuals: omni4d.core.character_strings
class_of_individuals: omni4d.core.identifiers
class_of_individuals: omni4d.core.names
class_member_tuple: c8696a7c-db68-431a-bd51-100fd1804ec2
objects: [omni4d.core.character_strings, omni4d.core.identifiers]
class_member_tuple: 196e2a22-b5a9-4698-b571-eb51277b46da
objects: [omni4d.core.identifiers, omni4d.core.names]
class_of_tuples: omni4d.core.identification_tuples
class_of_tuples: omni4d.core.naming_tuples
class_member_tuple: f4e0e9b0-a597-4b39-81bb-d381f62bbbdb
objects: [omni4d.core.identification_tuples, omni4d.core.naming_tuples]
|
omni4d.core.persons:
type: class_of_individuals
omni4d.core.character_strings:
type: class_of_individuals
omni4d.core.identifiers:
type: class_of_individuals
c8696a7c-db68-431a-bd51-100fd1804ec2:
type: whole_part_tuple'
objects: [omni4d.core.character_strings, omni4d.core.identifiers]
omni4d.core.names:
type: class_of_individuals
196e2a22-b5a9-4698-b571-eb51277b46da:
type: class_member_tuple
objects: [omni4d.core.identifiers, omni4d.core.names]
omni4d.core.identification_tuples:
type: class_of_tuples
omni4d.core.naming_tuples:
type: class_of_tuples
f4e0e9b0-a597-4b39-81bb-d381f62bbbdb:
type: class_member_tuple
objetcs: [omni4d.core.identification_tuples, omni4d.core.naming_tuples]
|
Refactor yaml format to get closer to graph structure
|
Refactor yaml format to get closer to graph structure
|
YAML
|
mit
|
omni4d/model
|
807929bde0aedcb73b26b98466cb9017221ddeec
|
cloudbuild.yaml
|
cloudbuild.yaml
|
steps:
#
# Extract the cache
#
# The gradle build cache is stored as a tarball in Google Cloud Storage to
# make builds faster.
#
# After extracting the cache to the /build_cache directory, we need to supply
# that to gradle, and include the volume in steps that require the cache.
#
- name: gcr.io/cloud-builders/gsutil
id: copy_build_cache
# we use rsync and not cp so that the step does not fail the first time it is run
args: ['rsync', 'gs://gradle_cache_$PROJECT_ID/', '/build_cache']
volumes:
- name: 'build_cache'
path: '/build_cache'
- name: 'gcr.io/$PROJECT_ID/android-builder'
entrypoint: 'gradle-build'
args: ['-g', '.gradle', 'assemble']
- name: gcr.io/cloud-builders/gsutil
args: ['cp', 'cache.zip', 'gs://gradle_cache_$PROJECT_ID/cache.zip']
|
steps:
#
# Extract the cache
#
# The gradle build cache is stored as a tarball in Google Cloud Storage to
# make builds faster.
#
# After extracting the cache to the /build_cache directory, we need to supply
# that to gradle, and include the volume in steps that require the cache.
#
- name: gcr.io/cloud-builders/gsutil
id: copy_build_cache
# we use rsync and not cp so that the step does not fail the first time it is run
args: ['rsync', 'gs://gradle_cache_$PROJECT_ID/', '/build_cache']
volumes:
- name: 'build_cache'
path: '/build_cache'
- name: 'gcr.io/$PROJECT_ID/tar'
id: extract_build_cache
waitFor: ['copy_build_cache']
# This might fail the first time, but that's okay
entrypoint: 'bash'
args:
- '-c'
- |
tar xpzf /build_cache/cache.tgz -C /build_cache || echo "No cache found."
volumes:
- name: 'build_cache'
path: '/build_cache'
- name: 'gcr.io/$PROJECT_ID/android-builder'
entrypoint: 'gradle-build'
args: ['-g', '.gradle', 'assemble']
- name: gcr.io/cloud-builders/gsutil
args: ['cp', 'cache.zip', 'gs://gradle_cache_$PROJECT_ID/cache.zip']
|
Add step to extract build cache
|
Add step to extract build cache
- This is to avoid using gradle-build file
|
YAML
|
apache-2.0
|
google/ground-android,google/ground-android,google/ground-android
|
d2b4c45a781eb57ccae1813ff20468c4b6770333
|
config/ldap.yml
|
config/ldap.yml
|
## Authorizations
# Uncomment out the merging for each environment that you'd like to include.
# You can also just copy and paste the tree (do not include the "authorizations") to each
# environment if you need something different per enviornment.
authorizations: &AUTHORIZATIONS
allow_unauthenticated_bind: false
# group_base: ou=groups,dc=test,dc=com
## Requires config.ldap_check_group_membership in devise.rb be true
# Can have multiple values, must match all to be authorized
# required_groups:
# # If only a group name is given, membership will be checked against "uniqueMember"
# - cn=admins,ou=groups,dc=test,dc=com
# - cn=users,ou=groups,dc=test,dc=com
# # If an array is given, the first element will be the attribute to check against, the second the group name
# - ["moreMembers", "cn=users,ou=groups,dc=test,dc=com"]
# ## Requires config.ldap_check_attributes in devise.rb to be true
# ## Can have multiple attributes and values, must match all to be authorized
# require_attribute:
# objectClass: inetOrgPerson
# authorizationRole: postsAdmin
## Environment
production:
host: <%= ENV['SOMERVILLE_LDAP_HOST'] %>
port: <%= ENV['SOMERVILLE_LDAP_PORT'] %>
attribute: mail
base: <%= ENV['SOMERVILLE_LDAP_BASE'] %>
ssl: true
<<: *AUTHORIZATIONS
|
## Authorizations
# Uncomment out the merging for each environment that you'd like to include.
# You can also just copy and paste the tree (do not include the "authorizations") to each
# environment if you need something different per enviornment.
authorizations: &AUTHORIZATIONS
allow_unauthenticated_bind: false
# group_base: ou=groups,dc=test,dc=com
## Requires config.ldap_check_group_membership in devise.rb be true
# Can have multiple values, must match all to be authorized
# required_groups:
# # If only a group name is given, membership will be checked against "uniqueMember"
# - cn=admins,ou=groups,dc=test,dc=com
# - cn=users,ou=groups,dc=test,dc=com
# # If an array is given, the first element will be the attribute to check against, the second the group name
# - ["moreMembers", "cn=users,ou=groups,dc=test,dc=com"]
# ## Requires config.ldap_check_attributes in devise.rb to be true
# ## Can have multiple attributes and values, must match all to be authorized
# require_attribute:
# objectClass: inetOrgPerson
# authorizationRole: postsAdmin
## Environment
production:
host: <%= ENV['DISTRICT_LDAP_HOST'] %>
port: <%= ENV['DISTRICT_LDAP_PORT'] %>
attribute: mail
base: <%= ENV['DISTRICT_LDAP_BASE'] %>
ssl: true
<<: *AUTHORIZATIONS
|
Use more general variable names for LDAP config
|
Use more general variable names for LDAP config
+ Right now the ENV config keys are hardcoded with a "SOMERVILLE_" prefix, doesn't make much sense for us to use when setting up New Bedford's LDAP integration
|
YAML
|
mit
|
studentinsights/studentinsights,studentinsights/studentinsights,studentinsights/studentinsights,studentinsights/studentinsights
|
af90c2644c1cfd4e9a97d5ef57eee1f3f4cbdff3
|
.github/config.yml
|
.github/config.yml
|
# Comment to be posted to on first time issues
newIssueWelcomeComment: >
Hello and welcome to the Oni repository! Thanks for opening your first issue here. To help us out, please make sure to include as much detail as possible - including screenshots and logs, if possible.
backers:
- 78856
- 1359421
- 4650931
- 13532591
- 5097613
- 22454918
- 347552
- 977348
- 28748
- 2835826
- 515720
- 124171
- 230476
- 10102132
- 10038688
- 817509
- 163128
- 4762
- 933251
- 3974037
- 141159
- 10263
- 3117205
- 5697723
- 6803419
- 1718128
- 2042893
- 14060883
- 244396
|
# Comment to be posted to on first time issues
newIssueWelcomeComment: >
Hello and welcome to the Oni repository! Thanks for opening your first issue here. To help us out, please make sure to include as much detail as possible - including screenshots and logs, if possible.
backers:
- 78856
- 1359421
- 4650931
- 13532591
- 5097613
- 22454918
- 347552
- 977348
- 28748
- 2835826
- 515720
- 124171
- 230476
- 10102132
- 10038688
- 817509
- 163128
- 4762
- 933251
- 3974037
- 141159
- 10263
- 3117205
- 5697723
- 6803419
- 1718128
- 2042893
- 14060883
- 244396
- 8832878
|
Add Tom Boland as a backer - thank you! :)
|
Add Tom Boland as a backer - thank you! :)
|
YAML
|
mit
|
extr0py/oni,extr0py/oni,extr0py/oni,extr0py/oni,extr0py/oni
|
11a8c0680d331b546b8b24f80b461010bfe40780
|
azure-pipelines.yaml
|
azure-pipelines.yaml
|
name: "build-n-test"
resources:
containers:
- container: build-golang-1.12-alpine
image: golang:1.12-alpine
trigger:
branches:
include:
- "feature/rewrite"
jobs:
- job: "PR"
strategy:
parallel: 1
pool:
vmImage: "ubuntu-16.04"
container: "build-golang-1.12-alpine"
steps:
- checkout: self
clean: true
lfs: true
submodules: recursive
persistCredentials: true
- bash: |
set -exo pipefail
export PATH=/usr/local/go/bin:$(go env GOPATH)/bin:${PATH}
make && make test
name: "build-and-test"
displayName: "build-and-test"
|
name: "build-n-test"
resources:
containers:
- container: build-golang-1.12-alpine
image: golang:1.12-alpine
trigger:
branches:
include:
- "feature/rewrite"
jobs:
- job: "PR"
strategy:
parallel: 1
pool:
vmImage: "ubuntu-16.04"
container: "build-golang-1.12-alpine"
steps:
- checkout: self
clean: true
lfs: true
submodules: recursive
persistCredentials: true
- bash: |
set -exo pipefail
export PATH=/usr/local/go/bin:$(go env GOPATH)/bin:${PATH}
make && make test
name: "build_and_test"
displayName: "build_and_test"
|
Fix job name take 2
|
Fix job name take 2
|
YAML
|
apache-2.0
|
interuss/dss,interuss/dss,interuss/dss,interuss/dss
|
0fdebc7f5de03ff57af0371432fc32bf341d4880
|
recipes/beautifulsoup4/meta.yaml
|
recipes/beautifulsoup4/meta.yaml
|
{% set name = "beautifulsoup4" %}
{% set version = "4.5.3" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: 937e0df0d699a1237646f38fd567f0c6
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- bs4
about:
home: http://www.crummy.com/software/BeautifulSoup/
license: MIT
license_file: COPYING.txt
summary: Python library designed for screen-scraping
description: |
Beautiful Soup is a library for pulling data out of HTML and XML files.
It provides ways of navigating, searching, and modifying parse trees.
doc_url: http://www.crummy.com/software/BeautifulSoup/bs4/doc/
dev_url: https://code.launchpad.net/beautifulsoup
|
{% set name = "beautifulsoup4" %}
{% set version = "4.6.0" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: c17714d0f91a23b708a592cb3c697728
build:
number: 0
noarch: python
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- bs4
about:
home: http://www.crummy.com/software/BeautifulSoup/
license: MIT
license_file: COPYING.txt
summary: Python library designed for screen-scraping
description: |
Beautiful Soup is a library for pulling data out of HTML and XML files.
It provides ways of navigating, searching, and modifying parse trees.
doc_url: http://www.crummy.com/software/BeautifulSoup/bs4/doc/
dev_url: https://code.launchpad.net/beautifulsoup
|
Update beautifulsoup4 recipe to version 4.6.0
|
Update beautifulsoup4 recipe to version 4.6.0
Change to noarch: python recipe
|
YAML
|
bsd-3-clause
|
jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda
|
e927bd9657d8eeef3c4e207d5368677632e95bad
|
recipes/FLAML/meta.yaml
|
recipes/FLAML/meta.yaml
|
{% set name = "FLAML" %}
{% set version = "0.6.6" %}
package:
name: {{ name|lower }}
version: {{ version }}
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install --no-deps https://files.pythonhosted.org/packages/b0/b5/d0001c3d3e335aba4b72590546e3a6bc5f13e182aa31cc2693558153b491/{{ name }}-{{ version }}.tar.gz
requirements:
host:
- pip
- python >=3.6
run:
- lightgbm >=2.3.1
- numpy >=1.16.2
- python >=3.6
- scikit-learn >=0.24
- scipy >=1.4.1
- xgboost <=1.3.3,>=0.90
test:
imports:
- flaml
- flaml.nlp
commands:
- pip check
requires:
- pip
- pandas >=1.0.0
about:
home: https://github.com/microsoft/FLAML
summary: A fast and lightweight autoML system
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- michalchromcak
|
{% set name = "FLAML" %}
{% set version = "0.6.6" %}
package:
name: {{ name|lower }}
version: {{ version }}
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install --no-deps https://files.pythonhosted.org/packages/b0/b5/d0001c3d3e335aba4b72590546e3a6bc5f13e182aa31cc2693558153b491/{{ name }}-{{ version }}.tar.gz
requirements:
host:
- pip
- python >=3.6
run:
- lightgbm >=2.3.1
- numpy >=1.16.2
- python >=3.6
- scikit-learn >=0.24
- scipy >=1.4.1
- xgboost <=1.3.3,>=0.90
test:
imports:
- flaml
- flaml.nlp
commands:
- pip check
requires:
- pip
- pandas >=1.0.0
- xgboost <=1.3.3,>=0.90
about:
home: https://github.com/microsoft/FLAML
summary: A fast and lightweight autoML system
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- michalchromcak
|
Add xgboost for win pip check
|
Add xgboost for win pip check
|
YAML
|
bsd-3-clause
|
jakirkham/staged-recipes,jochym/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes
|
136e848cad25324009a3e32b3497532e3316baa9
|
roles/install/tasks/steam.yml
|
roles/install/tasks/steam.yml
|
- name: Create dedicated steam user
user:
name: steam
create_home: True
- name: Install dependencies
yum:
name: "{{ item }}"
loop:
- glibc.i686
- libstdc++.i686
- unzip
- dos2unix
- patch
- git
- tar
- name: Create main Steam directory
file:
path: '{{ steam_home }}/Steam'
state: directory
owner: steam
group: steam
- name: Obtain SteamCMD
get_url:
url: https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz
dest: '{{ steam_home }}/steamcmd_linux.tar.gz'
owner: steam
group: steam
register: steamcmd_dl
- name: Extract SteamCMD
unarchive:
src: '{{ steam_home }}/steamcmd_linux.tar.gz'
dest: '{{ steam_home }}/Steam'
remote_src: yes
owner: steam
group: steam
# this won't work if SteamCMD is downloaded but install failed
# when: steamcmd_dl.changed
- name: Add Steam to PATH
replace:
path: '{{ steam_home }}/{% if ansible_distribution_major_version == '7' %}.bash_profile{% else %}.bashrc{% endif %}'
regexp: 'PATH="(.*):\$PATH"$'
replace: 'PATH="\1:$PATH:$HOME/Steam"'
owner: steam
group: steam
|
- name: Create dedicated steam user
user:
name: steam
create_home: True
- name: Install dependencies
yum:
name: "{{ item }}"
loop:
- glibc.i686
- libstdc++.i686
- unzip
- dos2unix
- patch
- git
- tar
- name: Create main Steam directory
file:
path: '{{ steam_home }}/Steam'
state: directory
owner: steam
group: steam
- name: Obtain SteamCMD
get_url:
url: https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz
dest: '{{ steam_home }}/steamcmd_linux.tar.gz'
owner: steam
group: steam
register: steamcmd_dl
- name: Extract SteamCMD
# owner/group seem to be bugged, use become instead
become: yes
become_user: steam
unarchive:
src: '{{ steam_home }}/steamcmd_linux.tar.gz'
dest: '{{ steam_home }}/Steam'
remote_src: yes
# this won't work if SteamCMD is downloaded but install failed
# when: steamcmd_dl.changed
- name: Add Steam to PATH
replace:
path: '{{ steam_home }}/{% if ansible_distribution_major_version == '7' %}.bash_profile{% else %}.bashrc{% endif %}'
regexp: 'PATH="(.*):\$PATH"$'
replace: 'PATH="\1:$PATH:$HOME/Steam"'
owner: steam
group: steam
|
Fix unarchive creating files owned by root despite setting owner/group
|
Fix unarchive creating files owned by root despite setting owner/group
|
YAML
|
mit
|
bviktor/kf2-centos
|
daffaff75213335f1731c951e0d38f8eb29f49dd
|
metadata/com.github.howeyc.crocgui.yml
|
metadata/com.github.howeyc.crocgui.yml
|
Categories:
- Internet
License: ISC
AuthorName: Chris Howey
AuthorEmail: [email protected]
AuthorWebSite: https://chris.howey.me/
SourceCode: https://github.com/howeyc/crocgui
IssueTracker: https://github.com/howeyc/crocgui/issues
AutoName: Croc
RepoType: git
Repo: https://github.com/howeyc/crocgui.git
Builds:
- versionName: 1.4.1
versionCode: 8
commit: v1.4.1
output: crocgui.apk
build:
- export ANDROID_SDK_ROOT=$$SDK$$
- export ANDROID_NDK_ROOT=$$NDK$$
- bash ./fdroid-build.sh
ndk: r21e
- versionName: 1.5.0
versionCode: 9
commit: v1.5.0
output: crocgui.apk
build:
- export ANDROID_SDK_ROOT=$$SDK$$
- export ANDROID_NDK_ROOT=$$NDK$$
- bash ./fdroid-build.sh
ndk: r21e
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.5.0
CurrentVersionCode: 9
|
Categories:
- Internet
License: ISC
AuthorName: Chris Howey
AuthorEmail: [email protected]
AuthorWebSite: https://chris.howey.me/
SourceCode: https://github.com/howeyc/crocgui
IssueTracker: https://github.com/howeyc/crocgui/issues
AutoName: Croc
RepoType: git
Repo: https://github.com/howeyc/crocgui.git
Builds:
- versionName: 1.4.1
versionCode: 8
commit: v1.4.1
output: crocgui.apk
build:
- export ANDROID_SDK_ROOT=$$SDK$$
- export ANDROID_NDK_ROOT=$$NDK$$
- bash ./fdroid-build.sh
ndk: r21e
- versionName: 1.5.0
versionCode: 9
commit: v1.5.0
output: crocgui.apk
build:
- export ANDROID_SDK_ROOT=$$SDK$$
- export ANDROID_NDK_ROOT=$$NDK$$
- bash ./fdroid-build.sh
ndk: r21e
- versionName: 1.6.0
versionCode: 10
commit: v1.6.0
output: crocgui.apk
build:
- export ANDROID_SDK_ROOT=$$SDK$$
- export ANDROID_NDK_ROOT=$$NDK$$
- bash ./fdroid-build.sh
ndk: r21e
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.6.0
CurrentVersionCode: 10
|
Update Croc to 1.6.0 (10)
|
Update Croc to 1.6.0 (10)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
494e300fbeac9376c23f52bbfd1d3c6e168363bf
|
src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/config/framework.yml
|
src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/config/framework.yml
|
framework:
secret: test
csrf_protection:
enabled: true
router: { resource: "%kernel.root_dir%/%kernel.test_case%/routing.yml" }
validation: { enabled: true, enable_annotations: true }
form: ~
test: ~
default_locale: en
session:
storage_id: session.storage.mock_file
profiler: { only_exceptions: false }
services:
logger: { class: Psr\Log\NullLogger }
|
framework:
secret: test
csrf_protection:
enabled: true
router: { resource: "%kernel.root_dir%/%kernel.test_case%/routing.yml" }
validation: { enabled: true, enable_annotations: true }
assets: ~
form: ~
test: ~
default_locale: en
session:
storage_id: session.storage.mock_file
profiler: { only_exceptions: false }
services:
logger: { class: Psr\Log\NullLogger }
|
Enable assets in functional tests.
|
[SecurityBundle] Enable assets in functional tests.
|
YAML
|
mit
|
lemoinem/symfony,SofHad/symfony,Taluu/symfony,GuilhemN/symfony,ajgarlag/symfony,danionut90/symfony,mickaelandrieu/symfony,peterjmit/symfony,ianfp/symfony,geoffrey-brier/symfony,dzuelke/symfony,pamil/symfony,sstok/symfony,dosten/symfony,dunglas/symfony,SofHad/symfony,mweimerskirch/symfony,bburnichon/symfony,lyrixx/symfony,tPl0ch/symfony,c960657/symfony,patrick-mcdougle/symfony,superdav42/symfony,Tobion/symfony,sgehrig/symfony,mweimerskirch/symfony,natechicago/symfony,gencer/symfony,jvasseur/symfony,Taluu/symfony,zerkms/symfony,apfelbox/symfony,alekitto/symfony,Pierstoval/symfony,Strate/symfony,raziel057/symfony,derrabus/symfony,SofHad/symfony,backbone87/symfony,druid628/symfony,moycarretero/behat,HeahDude/symfony,bryanagee/symfony,Engerim/symfony,jpauli/symfony,ogizanagi/symfony,jean-gui/symfony,garak/symfony,klandaika/symfony,c960657/symfony,Pierstoval/symfony,stof/symfony,joelwurtz/symfony,javiereguiluz/symfony,teohhanhui/symfony,sdiaz/symfony,dbu/symfony,pix-art/symfony,DavidGarciaCat/symfony,OskarStark/symfony,damienalexandre/symfony,peterrehm/symfony,Ener-Getick/symfony,gharlan/symfony,smatyas/symfony,hhamon/symfony,nasimnabavi/symfony,gharlan/symfony,jakzal/symfony,chalasr/symfony,Slamdunk/symfony,pyrech-forks/symfony,kix/symfony,dzuelke/symfony,jakzal/symfony,Nyholm/symfony,k0pernikus/symfony,adamelso/symfony,webmozart/symfony,Koc/symfony,hhamon/symfony,Einenlum/symfony,GuilhemN/symfony,Einenlum/symfony,gnat42/symfony,pamil/symfony,dawehner/symfony,nicolas-grekas/symfony,danionut90/symfony,yethee/symfony,iltar/symfony,damienalexandre/symfony,Ocramius/symfony,peterjmit/symfony,WouterJ/symfony,believer-ufa/symfony,Strate/symfony,d-ph/symfony,Mak-Di/symfony,dmaicher/symfony,oleg-andreyev/symfony,yceruto/symfony,andrerom/symfony,jakzal/symfony,mweimerskirch/symfony,Triiistan/symfony,ewgRa/symfony,zerkms/symfony,Koc/symfony,kbond/symfony,sdiaz/symfony,fabpot/symfony,codeclimate-testing/symfony,lepiaf/symfony,peterjmit/symfony,aeoris/symfony,druid628/symfony,1ed/symfony,gimler/symfony,peterrehm/symfony,bryanagee/symfony,druid628/symfony,Simperfit/symfony,sdiaz/symfony,Deamon/symfony,javiereguiluz/symfony,lepiaf/symfony,Einenlum/symfony,javiereguiluz/symfony,jameshalsall/symfony,Engerim/symfony,Nicofuma/symfony,jean-gui/symfony,Nyholm/symfony,hhamon/symfony,localheinz/symfony,docteurklein/symfony,Padam87/symfony,dbu/symfony,Ener-Getick/symfony,alekitto/symfony,apetitpa/symfony,dzuelke/symfony,phramz/symfony,mnapoli/symfony,ragboyjr/symfony,raziel057/symfony,gimler/symfony,voronkovich/symfony,alebo/symfony,iltar/symfony,believer-ufa/symfony,Mak-Di/symfony,pamil/symfony,bryanagee/symfony,yceruto/symfony,frankdejonge/symfony,sgehrig/symfony,sroze/symfony,d-ph/symfony,ewgRa/symfony,neemzy/symfony,MisatoTremor/symfony,Deamon/symfony,believer-ufa/symfony,issei-m/symfony,teohhanhui/symfony,jeremyFreeAgent/symfony,mickaelandrieu/symfony,mickaelandrieu/symfony,calm10/Symfony2,romainneutron/symfony,andreia/symfony,WhiteEagle88/symfony,stof/symfony,javiereguiluz/symfony,josephdpurcell/symfony,zorn-v/symfony,derrabus/symfony,unexge/symfony,WouterJ/symfony,phramz/symfony,thunderer/symfony,mpdude/symfony,ewgRa/symfony,arjenm/symfony,Triiistan/symfony,romainneutron/symfony,andrerom/symfony,nasimnabavi/symfony,Ener-Getick/symfony,dmaicher/symfony,pyrech-forks/symfony,believer-ufa/symfony,mnapoli/symfony,MatTheCat/symfony,docteurklein/symfony,thunderer/symfony,fabpot/symfony,yethee/symfony,dosten/symfony,yethee/symfony,deguif/symfony,dunglas/symfony,michaelperrin/symfony,lemoinem/symfony,codeclimate-testing/symfony,pyrech-forks/symfony,gimler/symfony,mpdude/symfony,unexge/symfony,WhiteEagle88/symfony,cvuorinen/symfony,moycarretero/behat,pyrech-forks/symfony,jean-gui/symfony,smatyas/symfony,neemzy/symfony,chalasr/symfony,digitalkaoz/symfony,dawehner/symfony,gonzalovilaseca/symfony,curry684/symfony,jeremyFreeAgent/symfony,jpauli/symfony,webmozart/symfony,stof/symfony,alebo/symfony,k0pernikus/symfony,weaverryan/symfony,ogizanagi/symfony,vincentaubert/symfony,Triiistan/symfony,DavidGarciaCat/symfony,Amo/symfony,okdana/symfony,Simperfit/symfony,alebo/symfony,weaverryan/symfony,pix-art/symfony,adamelso/symfony,believer-ufa/symfony,dzuelke/symfony,raziel057/symfony,danionut90/symfony,apfelbox/symfony,lstrojny/symfony,WouterJ/symfony,garak/symfony,SofHad/symfony,jpauli/symfony,garak/symfony,jzawadzki/symfony,mpdude/symfony,MisatoTremor/symfony,jameshalsall/symfony,mpdude/symfony,moycarretero/behat,mickaelandrieu/symfony,Mak-Di/symfony,alebo/symfony,tucksaun/symfony,dbu/symfony,javiereguiluz/symfony,shieldo/symfony,Triiistan/symfony,druid628/symfony,klandaika/symfony,garak/symfony,MatTheCat/symfony,dawehner/symfony,Padam87/symfony,shieldo/symfony,calm10/Symfony2,ianfp/symfony,tgalopin/symfony,sstok/symfony,c960657/symfony,MisatoTremor/symfony,realityking/symfony,paradajozsef/symfony,hhamon/symfony,georaldc/symfony,oleg-andreyev/symfony,Aliance/symfony,MisatoTremor/symfony,sroze/symfony,pierredup/symfony,romaricdrigon/symfony,symfony/symfony,c960657/symfony,patrick-mcdougle/symfony,Deamon/symfony,hacfi/symfony,yceruto/symfony,hacfi/symfony,jameshalsall/symfony,chrisguitarguy/symfony,sstok/symfony,patrick-mcdougle/symfony,romainneutron/symfony,k0pernikus/symfony,Slamdunk/symfony,deguif/symfony,kix/symfony,issei-m/symfony,tgalopin/symfony,damienalexandre/symfony,natechicago/symfony,DavidGarciaCat/symfony,issei-m/symfony,jzawadzki/symfony,maidmaid/symfony,arjenm/symfony,Engerim/symfony,adamelso/symfony,realityking/symfony,voronkovich/symfony,pyrech/symfony,tucksaun/symfony,neemzy/symfony,jjanvier/symfony,calm10/Symfony2,ro0NL/symfony,paradajozsef/symfony,jjanvier/symfony,unexge/symfony,bendavies/symfony,tucksaun/symfony,gonzalovilaseca/symfony,nasimnabavi/symfony,sroze/symfony,Nicofuma/symfony,Mak-Di/symfony,pierredup/symfony,Amo/symfony,Ocramius/symfony,lyrixx/symfony,Ener-Getick/symfony,romainneutron/symfony,phramz/symfony,romaricdrigon/symfony,Simperfit/symfony,Ocramius/symfony,superdav42/symfony,e-moe/symfony,bburnichon/symfony,oleg-andreyev/symfony,stof/symfony,pierredup/symfony,OskarStark/symfony,Deamon/symfony,andrerom/symfony,tPl0ch/symfony,docteurklein/symfony,k0pernikus/symfony,OskarStark/symfony,druid628/symfony,apetitpa/symfony,ewgRa/symfony,digitalkaoz/symfony,localheinz/symfony,cvuorinen/symfony,michaelperrin/symfony,Ocramius/symfony,ogizanagi/symfony,apfelbox/symfony,jjanvier/symfony,GuilhemN/symfony,maidmaid/symfony,lemoinem/symfony,romaricdrigon/symfony,cvuorinen/symfony,jvasseur/symfony,lemoinem/symfony,paradajozsef/symfony,iltar/symfony,peterjmit/symfony,k0pernikus/symfony,symfony/symfony,natechicago/symfony,lstrojny/symfony,Aliance/symfony,d-ph/symfony,kbond/symfony,dmaicher/symfony,chrisguitarguy/symfony,csarrazi/symfony,cvuorinen/symfony,Nicofuma/symfony,jpauli/symfony,kix/symfony,jvasseur/symfony,kbond/symfony,geoffrey-brier/symfony,peterrehm/symfony,andreia/symfony,sstok/symfony,cvuorinen/symfony,tucksaun/symfony,tPl0ch/symfony,GuilhemN/symfony,Pierstoval/symfony,pyrech/symfony,moycarretero/behat,backbone87/symfony,fabpot/symfony,d-ph/symfony,curry684/symfony,beoboo/symfony,sstok/symfony,voronkovich/symfony,kix/symfony,Aliance/symfony,havvg/symfony,1ed/symfony,backbone87/symfony,1ed/symfony,havvg/symfony,andrerom/symfony,gonzalovilaseca/symfony,kix/symfony,superdav42/symfony,ajgarlag/symfony,dmaicher/symfony,jpauli/symfony,hason/symfony,okdana/symfony,sdiaz/symfony,gencer/symfony,gharlan/symfony,zorn-v/symfony,bburnichon/symfony,georaldc/symfony,HeahDude/symfony,jeremyFreeAgent/symfony,MisatoTremor/symfony,gencer/symfony,romaricdrigon/symfony,michaelperrin/symfony,apetitpa/symfony,teohhanhui/symfony,HeahDude/symfony,jderusse/symfony,dzuelke/symfony,pyrech/symfony,mnapoli/symfony,lstrojny/symfony,e-moe/symfony,josephdpurcell/symfony,Slamdunk/symfony,danionut90/symfony,gharlan/symfony,xabbuh/symfony,zerkms/symfony,alekitto/symfony,Ener-Getick/symfony,gnat42/symfony,pix-art/symfony,bendavies/symfony,joelwurtz/symfony,nasimnabavi/symfony,aeoris/symfony,iltar/symfony,dawehner/symfony,Amo/symfony,derrabus/symfony,xabbuh/symfony,Pierstoval/symfony,ewgRa/symfony,geoffrey-brier/symfony,yceruto/symfony,raziel057/symfony,sgehrig/symfony,GuilhemN/symfony,havvg/symfony,Koc/symfony,joelwurtz/symfony,apfelbox/symfony,curry684/symfony,MatTheCat/symfony,frankdejonge/symfony,chrisguitarguy/symfony,danionut90/symfony,believer-ufa/symfony,andreia/symfony,smatyas/symfony,mickaelandrieu/symfony,joelwurtz/symfony,superdav42/symfony,fabpot/symfony,e-moe/symfony,geoffrey-brier/symfony,webmozart/symfony,beoboo/symfony,jderusse/symfony,michaelperrin/symfony,georaldc/symfony,dbu/symfony,ragboyjr/symfony,xabbuh/symfony,Nyholm/symfony,jderusse/symfony,dbu/symfony,phramz/symfony,Ocramius/symfony,deguif/symfony,jameshalsall/symfony,Ener-Getick/symfony,ogizanagi/symfony,gimler/symfony,dosten/symfony,georaldc/symfony,unexge/symfony,ragboyjr/symfony,Padam87/symfony,georaldc/symfony,raziel057/symfony,Koc/symfony,1ed/symfony,thunderer/symfony,unexge/symfony,pix-art/symfony,hacfi/symfony,vincentaubert/symfony,Tobion/symfony,adamelso/symfony,bryanagee/symfony,mweimerskirch/symfony,ianfp/symfony,paradajozsef/symfony,zorn-v/symfony,pierredup/symfony,gharlan/symfony,teohhanhui/symfony,digitalkaoz/symfony,realityking/symfony,pamil/symfony,csarrazi/symfony,ajgarlag/symfony,peterjmit/symfony,yethee/symfony,klandaika/symfony,bryanagee/symfony,ro0NL/symfony,alebo/symfony,MatTheCat/symfony,ewgRa/symfony,vincentaubert/symfony,weaverryan/symfony,ianfp/symfony,peterrehm/symfony,dosten/symfony,ianfp/symfony,chrisguitarguy/symfony,calm10/Symfony2,nicolas-grekas/symfony,SofHad/symfony,pyrech/symfony,localheinz/symfony,bburnichon/symfony,chalasr/symfony,ro0NL/symfony,codeclimate-testing/symfony,shieldo/symfony,csarrazi/symfony,pyrech-forks/symfony,zerkms/symfony,docteurklein/symfony,Strate/symfony,pix-art/symfony,lepiaf/symfony,sroze/symfony,romainneutron/symfony,jjanvier/symfony,Taluu/symfony,ragboyjr/symfony,gnat42/symfony,Nicofuma/symfony,lemoinem/symfony,issei-m/symfony,dawehner/symfony,derrabus/symfony,bburnichon/symfony,kbond/symfony,apetitpa/symfony,Slamdunk/symfony,realityking/symfony,Einenlum/symfony,localheinz/symfony,mnapoli/symfony,apfelbox/symfony,natechicago/symfony,geoffrey-brier/symfony,arjenm/symfony,adamelso/symfony,chalasr/symfony,realityking/symfony,zcodes/symfony,codeclimate-testing/symfony,maidmaid/symfony,Simperfit/symfony,beoboo/symfony,digitalkaoz/symfony,georaldc/symfony,jvasseur/symfony,weaverryan/symfony,mweimerskirch/symfony,okdana/symfony,webmozart/symfony,klandaika/symfony,havvg/symfony,Mak-Di/symfony,hason/symfony,klandaika/symfony,geoffrey-brier/symfony,superdav42/symfony,ro0NL/symfony,digitalkaoz/symfony,maidmaid/symfony,damienalexandre/symfony,HeahDude/symfony,Amo/symfony,andreia/symfony,mnapoli/symfony,thunderer/symfony,bendavies/symfony,Nicofuma/symfony,jzawadzki/symfony,arjenm/symfony,sgehrig/symfony,smatyas/symfony,curry684/symfony,e-moe/symfony,alekitto/symfony,peterrehm/symfony,chrisguitarguy/symfony,Simperfit/symfony,ajgarlag/symfony,jameshalsall/symfony,zorn-v/symfony,dosten/symfony,dunglas/symfony,webmozart/symfony,zcodes/symfony,Taluu/symfony,natechicago/symfony,frankdejonge/symfony,tgalopin/symfony,issei-m/symfony,jeremyFreeAgent/symfony,pix-art/symfony,jpauli/symfony,patrick-mcdougle/symfony,oleg-andreyev/symfony,jderusse/symfony,frankdejonge/symfony,superdav42/symfony,tPl0ch/symfony,vincentaubert/symfony,jakzal/symfony,beoboo/symfony,symfony/symfony,deguif/symfony,Padam87/symfony,patrick-mcdougle/symfony,shieldo/symfony,yethee/symfony,gonzalovilaseca/symfony,OskarStark/symfony,nicolas-grekas/symfony,zcodes/symfony,tPl0ch/symfony,nicolas-grekas/symfony,hason/symfony,moycarretero/behat,jean-gui/symfony,Tobion/symfony,Deamon/symfony,jeremyFreeAgent/symfony,Padam87/symfony,Nyholm/symfony,lyrixx/symfony,tgalopin/symfony,natechicago/symfony,Ocramius/symfony,havvg/symfony,thunderer/symfony,zcodes/symfony,danionut90/symfony,jjanvier/symfony,realityking/symfony,sdiaz/symfony,Tobion/symfony,calm10/Symfony2,gnat42/symfony,Amo/symfony,WhiteEagle88/symfony,docteurklein/symfony,symfony/symfony,Triiistan/symfony,smatyas/symfony,MisatoTremor/symfony,xabbuh/symfony,voronkovich/symfony,aeoris/symfony,bendavies/symfony,lyrixx/symfony,beoboo/symfony,josephdpurcell/symfony
|
146221c4b98c847db04d68ef44c5553ad3ea708e
|
.travis.yml
|
.travis.yml
|
language: clojure
lein: lein
script: "lein do compile, spec"
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
- oraclejdk9
|
language: clojure
lein: lein
script: "lein do compile, spec"
addons:
apt:
packages:
- openjdk-6-jdk
jdk:
- openjdk6
- openjdk7
- openjdk8
- oraclejdk8
- oraclejdk9
- oraclejdk11
|
Update JVMs based on what's available
|
Update JVMs based on what's available
https://docs.travis-ci.com/user/reference/trusty/#jvm-clojure-groovy-java-scala-images
|
YAML
|
epl-1.0
|
trptcolin/reply,trptcolin/reply
|
61fb2ecbeeba12285a6f95cb54694a5108a62bb6
|
.travis.yml
|
.travis.yml
|
jdk: oraclejdk8
language: scala
matrix:
include:
- scala: 2.12.8
- scala: 2.13.0-M5
script:
# TODO scalatags for Scala 2.13.0-M4
- sbt "++ ${TRAVIS_SCALA_VERSION}!" test
|
language: scala
before_install:
# adding $HOME/.sdkman to cache would create an empty directory, which interferes with the initial installation
- "[[ -d $HOME/.sdkman/bin ]] || rm -rf $HOME/.sdkman/"
- curl -sL https://get.sdkman.io | bash
- echo sdkman_auto_answer=true > "$HOME/.sdkman/etc/config"
- source "$HOME/.sdkman/bin/sdkman-init.sh"
install:
- sdk install java $(sdk list java | grep -o "$ADOPTOPENJDK\.[0-9\.]*hs-adpt" | head -1)
- unset JAVA_HOME
- java -Xmx32m -version
- javac -J-Xmx32m -version
matrix:
include:
- scala: 2.12.8
env:
- ADOPTOPENJDK=8
- scala: 2.13.0-M5
env:
- ADOPTOPENJDK=8
script:
# TODO scalatags for Scala 2.13.0-M4
- sbt "++ ${TRAVIS_SCALA_VERSION}!" test
|
Use SDKMAN to install openjdk that is more robust on Travis update
|
Use SDKMAN to install openjdk that is more robust on Travis update
|
YAML
|
apache-2.0
|
underscoreio/doodle,underscoreio/doodle
|
db6456283d6814cd2a106c191747870d801ef092
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
after_success:
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then bash .travis/deploy.sh; fi
|
language: node_js
node_js: 10
sudo: false
after_success:
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then bash .travis/deploy.sh; fi
|
Use Node 10 to build and lints
|
CI: Use Node 10 to build and lints
|
YAML
|
mit
|
Turbo87/leaflet-sidebar,Turbo87/leaflet-sidebar
|
71e8a01407a0fe5294209c3c2721c217aeb7ea4d
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode8
script:
- set -o pipefail
- git submodule update --init --recursive
- xcodebuild -project JWT.xcodeproj -scheme JWT-OSX test -sdk macosx | xcpretty -c
- pod lib lint --quick
|
os:
- linux
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode8.3
env:
- SWIFT_VERSION=3.1.1
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
- git submodule update --init --recursive
script:
- swift test
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then xcodebuild -project JWT.xcodeproj -scheme JWT-OSX test -sdk macosx; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then xcodebuild -project JWT.xcodeproj -scheme JWT-iOS build -sdk iphonesimulator; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then xcodebuild -project JWT.xcodeproj -scheme JWT-tvOS build -sdk appletvsimulator; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then xcodebuild -project JWT.xcodeproj -scheme JWT-watchOS build -sdk watchsimulator; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then pod lib lint; fi
|
Build and test on all supported platforms
|
chore: Build and test on all supported platforms
|
YAML
|
bsd-2-clause
|
kylef/JSONWebToken.swift,kylef/JSONWebToken.swift
|
236e988a9a897f89b6068f0fa34fab558335063d
|
.travis.yml
|
.travis.yml
|
language: python
python: '2.7'
sudo: false
branches:
only:
- master
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
addons:
firefox: '28.0'
install:
- pip install -r test_requirements.txt
- pip install -r requirements.txt
- pip install -r doc_requirements.txt
- ./scripts/install_browsermob_proxy.sh
script:
- pylint bok_choy
- export PATH=browsermobtemp/browsermob-proxy/bin:$PATH
- ./run_tests.sh
after_success:
- pip install coveralls
- coveralls
deploy:
provider: pypi
user: edx
password:
secure: o6nRxgpLeCLLh1yerbXvWOi95wyPGzuP+d1CpjeSq5bLYKpij+IDzpWZxSO+OzQWoUFVmFkv+3h1U9W2Awzc6ptl0MCJjTBxBmMmrrgodPPg1gHhQe0Da+Fqw2MTcv5UK4yUoJ5AGtj0N2XZhKMl00pvU10AVSVV1Izm61CLn9c=
distributions: sdist
on:
tags: true
|
language: python
python: '2.7'
sudo: false
branches:
only:
- master
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
addons:
firefox: '42.0'
install:
- pip install -r test_requirements.txt
- pip install -r requirements.txt
- pip install -r doc_requirements.txt
- ./scripts/install_browsermob_proxy.sh
script:
- pylint bok_choy
- export PATH=browsermobtemp/browsermob-proxy/bin:$PATH
- ./run_tests.sh
after_success:
- pip install coveralls
- coveralls
deploy:
provider: pypi
user: edx
password:
secure: o6nRxgpLeCLLh1yerbXvWOi95wyPGzuP+d1CpjeSq5bLYKpij+IDzpWZxSO+OzQWoUFVmFkv+3h1U9W2Awzc6ptl0MCJjTBxBmMmrrgodPPg1gHhQe0Da+Fqw2MTcv5UK4yUoJ5AGtj0N2XZhKMl00pvU10AVSVV1Izm61CLn9c=
distributions: sdist
on:
tags: true
|
Upgrade to firefox 42 for builds.
|
Upgrade to firefox 42 for builds.
|
YAML
|
apache-2.0
|
edx/bok-choy,edx/bok-choy,edx/bok-choy
|
0028a102597c0731db0ec16208a6a61d6f46c6f2
|
.travis.yml
|
.travis.yml
|
branches:
except:
- servo
env:
global:
- secure: ONY+Bnbox9d5fHcSbYd4/G2cx6IprfyH6GP6BWd6zazFTdmYc4X754FUUM1Po0Rj+2JX97Mvj5oBKahT7r+SyxiixqAjHHHqNWni3RKVodA7lhtXudHW03K05lkyHwtW7ayJbWxPG28xPYkAwNrUHHuJng483iNiG78YTeKrpN0=
language: rust
script:
- mkdir build
- cd build
- ../configure
- make check docs for_c
after_script:
- cd /home/travis/build/servo/html5ever/target
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
|
branches:
except:
- servo
env:
global:
- secure: uytPp0Fs+LT3QDEhDM3LJWiLvT2AHbdWnXrPEs+bYshQwt9wST+KQnYLyRfBuGg2ux3pkZwsRUFexvN8pQ3ab4aU2P21Xo98TzdXRwXurNYePgk/3tykEH+JrL52DfjCWB1VsjzzFrP02XU0XtB30qWC/n+fxeMWT7JT2GVh/OE=
language: rust
script:
- mkdir build
- cd build
- ../configure
- make check docs for_c
after_script:
- cd /home/travis/build/servo/html5ever/target
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
|
Update Rust CI doc upload config
|
Update Rust CI doc upload config
|
YAML
|
apache-2.0
|
aroben/html5ever,aroben/html5ever,Manishearth/html5ever,Manishearth/html5ever,Manishearth/html5ever,aroben/html5ever
|
b032c424a2c78722beed057bef320175f546a8da
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "3.5"
env:
- TOXENV=py27-django18-normal,py33-django18-normal
- TOXENV=py27-django18-custom,py33-django18-custom
- TOXENV=py27-django19-normal,py34-django19-normal
- TOXENV=py27-django19-custom,py34-django19-custom
- TOXENV=py27-django110-normal,py34-django110-normal,py35-django110-normal
- TOXENV=py27-django110-custom,py34-django110-custom,py35-django110-custom
cache:
directories:
- $HOME/.cache/pip
install:
- pip install tox pip wheel codecov -U
script:
- tox
after_success:
- codecov -e TOX_ENV
branches:
only:
- master
deploy:
provider: pypi
user: mlavin
password:
secure: "TcTMW0Kxty9Wz3uedxYdTisKsUulx+/9Cls5qnm1/sE8McHmR719Qs5An7VA+XWuVq2fdAsyQw/JQI6gYbtLvkb8wyLJA7WggWG1/pAscIyFNRpKM0qvFWxXrSA7eSu1jG9z/kM68wfdTBmHTLGiyGqWuvtGzYy9KdNXEVKNUj0="
distributions: "sdist bdist_wheel"
on:
tags: true
repo: mlavin/django-all-access
|
sudo: false
language: python
python:
- "3.5"
env:
- TOXENV=py27-django18-normal,py33-django18-normal
- TOXENV=py27-django18-custom,py33-django18-custom
- TOXENV=py27-django19-normal,py34-django19-normal
- TOXENV=py27-django19-custom,py34-django19-custom
- TOXENV=py27-django110-normal,py34-django110-normal,py35-django110-normal
- TOXENV=py27-django110-custom,py34-django110-custom,py35-django110-custom
cache:
directories:
- $HOME/.cache/pip
install:
- pip install tox pip wheel codecov -U
script:
- tox
after_success:
- codecov -e TOX_ENV
branches:
only:
- master
|
Remove this deploy section because it never works.
|
Remove this deploy section because it never works.
|
YAML
|
bsd-2-clause
|
mlavin/django-all-access,mlavin/django-all-access,iXioN/django-all-access,iXioN/django-all-access
|
97ee5571096f8c1a90262fc7aee3ceb066d20a1b
|
roles/osxw.developer-atom/defaults/main.yml
|
roles/osxw.developer-atom/defaults/main.yml
|
---
brew_taps: []
npm_packages:
- dockerlint
- eslint
- yaml-js
- csslint
brew_packages:
- node
cask_packages:
- atom
- font-inconsolata
- font-source-code-pro
- font-sauce-code-powerline
atom_packages:
- atom-terminal
- atomatigit
- trailing-spaces
- auto-detect-indentation
- highlight-selected
- less-than-slash
- quick-editor
- editorconfig
- emmet
- pigments
- file-icons
- tabularize
- language-docker
- language-twig
- language-diff
- language-nginx
- behat-atom
- react
- docblockr
- autocomplete-php
- atom-autocomplete-php
- atom-symfony2
- php-getters-setters
- linter
- linter-php
- linter-phpcs
- linter-phpmd
- linter-js-yaml
- linter-htmlhint
- linter-csslint
- linter-eslint
- linter-jscs
- linter-docker
|
---
brew_taps: []
npm_packages:
- dockerlint
- eslint
- yaml-js
- csslint
brew_packages:
- node
cask_packages:
- atom
- font-inconsolata
- font-source-code-pro
- font-sauce-code-powerline
atom_packages:
- atom-terminal
- project-manager
- atomatigit
- trailing-spaces
- auto-detect-indentation
- highlight-selected
- less-than-slash
- quick-editor
- editorconfig
- emmet
- pigments
- file-icons
- tabularize
- language-docker
- language-twig
- language-diff
- language-nginx
- behat-atom
- react
- docblockr
- autocomplete-php
- atom-autocomplete-php
- atom-symfony2
- php-getters-setters
- linter
- linter-php
- linter-phpcs
- linter-phpmd
- linter-js-yaml
- linter-htmlhint
- linter-csslint
- linter-eslint
- linter-jscs
- linter-docker
|
Add project manager to atom
|
Add project manager to atom
|
YAML
|
mit
|
ansible-macos/macos-playbook,ansible-macos/macos-playbook,luishdez/osx-playbook
|
45e4e71c12c81b9c7fdff5a9e385a4e30ce17f87
|
deploy/site.yml
|
deploy/site.yml
|
- hosts: '{{ group | default("qa") }}'
connection: '{{ conn | default("local") }}'
remote_user: deploy
# Set environment to use scl rh-python35
environment:
PATH: '/opt/rh/rh-python35/root/usr/bin/:{{ lookup("env","PATH") }}'
LD_LIBRARY_PATH: '/opt/rh/rh-python35/root/usr/lib64'
roles:
# Creates repo variable names and builds repo
- projectrepo
# Builds a production deploy and sets file permissions correctly
- buildprod
# Makes an emergency database backup, run migrations, and then resets
# symlinks
- golive
|
- hosts: '{{ group | default("qa") }}'
connection: '{{ conn | default("local") }}'
remote_user: deploy
# Set environment to use scl rh-python35
environment:
PATH: '/opt/rh/rh-python35/root/usr/bin/:/opt/rh/rh-nodejs6/root/usr/bin:{{ ansible_env.PATH }}'
LD_LIBRARY_PATH: '/opt/rh/rh-python35/root/usr/lib64:/opt/rh/rh-nodejs6/root/usr/lib64'
roles:
# Creates repo variable names and builds repo
- projectrepo
# Builds a production deploy and sets file permissions correctly
- buildprod
# Makes an emergency database backup, run migrations, and then resets
# symlinks
- golive
|
Add nodejs6 to path for ansible user
|
Add nodejs6 to path for ansible user
|
YAML
|
apache-2.0
|
Princeton-CDH/derrida-django,Princeton-CDH/derrida-django,Princeton-CDH/derrida-django,Princeton-CDH/derrida-django
|
d41b2de26efc878ec3aae545d241058fea3929e0
|
.github/workflows/gradle.yml
|
.github/workflows/gradle.yml
|
name: JPX Build
on:
push:
branches:
- master
- releases/*
- issues/*
pull_request:
branches:
- master
- releases/*
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
java-version: [ 17, 18-ea ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java-version }} on ${{ matrix.os }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
distribution: 'zulu'
- name: Build with Gradle
run: ./gradlew build --stacktrace --info
|
name: JPX Build
on:
push:
branches:
- master
- releases/*
- issues/*
pull_request:
branches:
- master
- releases/*
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
java-version: [ 17, 18 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java-version }} on ${{ matrix.os }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
distribution: 'zulu'
- name: Build with Gradle
run: ./gradlew build --stacktrace --info
|
Add Java 18 build configuration.
|
Add Java 18 build configuration.
|
YAML
|
apache-2.0
|
jenetics/jpx,jenetics/jpx
|
d0deb0dff0d2867dc4da3197afae95708d973c6e
|
.github/workflows/jekyll.yml
|
.github/workflows/jekyll.yml
|
name: Jekyll site CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
|
name: Jekyll site CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
|
Bump actions/checkout from 3.0.2 to 3.1.0
|
Bump actions/checkout from 3.0.2 to 3.1.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 to 3.1.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3.0.2...v3.1.0)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
|
YAML
|
mit
|
LeoColomb/leocolomb.github.io,LeoColomb/leocolomb.github.io,LeoColomb/leocolomb.github.io
|
038bc22edfc40a353d3591b328b902aa267395a1
|
actions/docker_prep_dev.meta.yaml
|
actions/docker_prep_dev.meta.yaml
|
---
name: docker_prep_dev
runner_type: orquesta
description: Prep dev images for st2 release
enabled: true
entry_point: workflows/docker_prep_dev.yaml
parameters:
version:
type: string
description: Version used for the release. Should include the patch e.g. 0.1.0
required: true
fork:
type: string
description: Fork to use
default: StackStorm
host:
type: string
description: Host where to run the release process.
cwd:
type: string
description: Working directory where remote shell scripts use
default: /home/stanley
|
---
name: docker_prep_dev
runner_type: orquesta
description: Prep dev images for st2 release
enabled: true
entry_point: workflows/docker_prep_dev.yaml
parameters:
version:
type: string
description: Version used for the release. Should include the patch e.g. 0.1.0
required: true
org:
type: string
description: GitHub organization (or username) to use
default: StackStorm
host:
type: string
description: Host where to run the release process.
cwd:
type: string
description: Working directory where remote shell scripts use
default: /home/stanley
|
Change remaining fork to org
|
Change remaining fork to org
|
YAML
|
apache-2.0
|
StackStorm/st2cd,StackStorm/st2cd
|
2a6807f12c1e3a070f1ec0af51ce1dd26b3023b3
|
data/os/OpenBSD.yaml
|
data/os/OpenBSD.yaml
|
---
unbound::confdir: '/var/unbound/etc'
unbound::logdir: '/var/log/unbound'
unbound::owner: '_unbound'
unbound::group: '_unbound'
unbound::fetch_client: 'ftp -o'
unbound::validate_cmd: '/usr/sbin/unbound-checkconf %'
unbound::package_name: ''
|
---
unbound::confdir: '/var/unbound/etc'
unbound::pidfile: '/var/run/unbound.pid'
unbound::logdir: '/var/log/unbound'
unbound::owner: '_unbound'
unbound::group: '_unbound'
unbound::fetch_client: 'ftp -o'
unbound::validate_cmd: '/usr/sbin/unbound-checkconf %'
unbound::package_name: ''
|
Set unbound pidfile for 6.3
|
Set unbound pidfile for 6.3
Without this change, OpenBSD 6.3 has the incorrect pid file.
|
YAML
|
apache-2.0
|
xaque208/puppet-unbound,xaque208/puppet-unbound,icann-dns/puppet-unbound,icann-dns/puppet-unbound,icann-dns/puppet-unbound,xaque208/puppet-unbound
|
8419cb01d68d85c2b1684c23681580e3f6d658e0
|
.github/workflows/tests.yaml
|
.github/workflows/tests.yaml
|
on:
push:
branches:
- master
pull_request:
name: Run Tests
jobs:
test:
name: Tests
strategy:
matrix:
node: [10, 12]
os: [windows-2016, ubuntu-16.04, ubuntu-18.04, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node }}
- run: yarn
- run: yarn test
|
on:
push:
branches:
- master
- release/*
pull_request:
name: Run Tests
jobs:
test:
name: Tests
strategy:
matrix:
node: [10, 12]
os: [windows-2016, ubuntu-16.04, ubuntu-18.04, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node }}
- run: yarn
- run: yarn test
|
Add testing for release branches
|
Add testing for release branches
|
YAML
|
mit
|
Axosoft/nsfw,Axosoft/nsfw,Axosoft/nsfw
|
288b124af7ba2066da213f2d74eee98115ee1af1
|
docker-compose.yml
|
docker-compose.yml
|
version: '2'
services:
influxdb:
image: influxdb
ports:
- "8086:8086"
volumes:
- ./STORAGE/influxdb:/var/lib/influxdb
db:
image: postgres
ports:
- "5432:5432"
volumes:
- ./STORAGE/db:/var/lib/postgresql/data
environment:
POSTGRES_USER: luminis
POSTGRES_PASSWORD: luminis
|
version: '2'
services:
influxdb:
image: influxdb
ports:
- "8086:8086"
volumes:
- ./STORAGE/influxdb:/var/lib/influxdb
environment:
INFLUXDB_HTTP_MAX_ROW_LIMIT: 0
db:
image: postgres
ports:
- "5432:5432"
volumes:
- ./STORAGE/db:/var/lib/postgresql/data
environment:
POSTGRES_USER: luminis
POSTGRES_PASSWORD: luminis
|
Allow Influx for unlimited num of rows
|
Allow Influx for unlimited num of rows
|
YAML
|
mit
|
qiubit/luminis,qiubit/luminis,qiubit/luminis,qiubit/luminis
|
8a418a9317e7c259986926880b5c84c90ca2ac9f
|
docker-compose.yml
|
docker-compose.yml
|
version: "3"
services:
mysql:
image: mariadb:10.2
restart: always
ports:
- "33061:3306"
volumes:
- mysql:/var/lib/mysql
- ./install/sql/mysql.sql:/docker-entrypoint-initdb.d/mysql.sql
env_file:
- .env
toloka:
image: hurtom/php:nginx
restart: always
ports:
- "8081:80"
volumes:
- ./:/var/www/html
- ./docker/php.ini:/usr/local/etc/php/php.ini
env_file:
- .env
phpmyadmin:
image: phpmyadmin/phpmyadmin
ports:
- "8082:80"
environment:
- PMA_HOST=mysql
cron:
image: hurtom/curl
command: sh -c "echo '* * * * * curl -I toloka/cron.php' > /var/spool/cron/crontabs/root && crond -l 2 -f"
volumes:
mysql:
driver: local
|
version: "3"
services:
mysql:
image: mariadb:10.2
restart: always
ports:
- "33061:3306"
volumes:
- mysql:/var/lib/mysql
- ./install/sql/mysql.sql:/docker-entrypoint-initdb.d/mysql.sql
env_file:
- .env
toloka:
image: hurtom/php:nginx
restart: always
ports:
- "8081:80"
volumes:
- ./:/var/www/html
- ./docker/php.ini:/usr/local/etc/php/php.ini
env_file:
- .env
phpmyadmin:
image: phpmyadmin/phpmyadmin
restart: always
ports:
- "8082:80"
environment:
- PMA_HOST=mysql
cron:
image: hurtom/curl
restart: always
command: sh -c "echo '* * * * * curl -I toloka/cron.php' > /var/spool/cron/crontabs/root && crond -l 2 -f"
volumes:
mysql:
driver: local
|
Add auto restart for all containers
|
Add auto restart for all containers
|
YAML
|
mit
|
hurtom/toloka,yukoff/toloka,yukoff/toloka,chief-j/toloka,chief-j/toloka,chief-j/toloka,yukoff/toloka,hurtom/toloka,hurtom/toloka
|
0851ce52515622b59807edcd32220ca1ae4be7e5
|
packages/fi/Fin.yaml
|
packages/fi/Fin.yaml
|
homepage: ''
changelog-type: ''
hash: 883289aebf6342007ff4995d433098fe8532cf8f6bd068db6b7771e769eb5fe0
test-bench-deps: {}
maintainer: [email protected]
synopsis: Finite totally-ordered sets
changelog: ''
basic-deps:
peano: -any
base: ! '>=4.7 && <5'
natural-induction: ! '>=0.2 && <0.3'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
- '0.2.3.0'
author: M Farkas-Dyck
latest: '0.2.3.0'
description-type: haddock
description: ''
license-name: BSD3
|
homepage: ''
changelog-type: ''
hash: 1413f5a6666cfc1801ddd57f301671820f47af9e64e5136ceb76f7aaa1500ada
test-bench-deps: {}
maintainer: [email protected]
synopsis: Finite totally-ordered sets
changelog: ''
basic-deps:
alg: ! '>=0.2.5 && <0.3'
foldable1: ! '>=0.1 && <0.2'
peano: -any
base: ! '>=4.7 && <5'
natural-induction: ! '>=0.2 && <0.3'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
- '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-08-21T20:18:37Z
|
Update from Hackage at 2018-08-21T20:18:37Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
e353b75885145467749c3560530bc2f65d55825e
|
aws-beta/roles/system/tasks/main.yml
|
aws-beta/roles/system/tasks/main.yml
|
---
# general setup
- name: Verify Ansible meets Clojars version requirements.
assert:
that: "ansible_version.full is version_compare('2.9.4', '>=')"
msg: >
"You must update Ansible to at least 2.9.4 to deploy Clojars."
- name: Install EPEL for additional packages
# sudo yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
become: yes
yum:
name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
state: present
- name: update yum caches
become: yes
yum:
update_cache: yes
- name: Upgrade yum to the latest packages
yum:
name: '*'
state: latest
- name: Install packages
yum:
name: al2_packages
state: latest
- name: set hostname
hostname: name={{ hostname }}
- name: Set timezone to UTC
when: ansible_date_time.tz != 'UTC'
command: timedatectl set-timezone UTC
|
---
# general setup
- name: Verify Ansible meets Clojars version requirements.
assert:
that: "ansible_version.full is version_compare('2.9.4', '>=')"
msg: >
"You must update Ansible to at least 2.9.4 to deploy Clojars."
- name: Install EPEL for additional packages
# sudo yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
become: yes
yum:
name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
state: present
- name: update yum caches
become: yes
yum:
update_cache: yes
- name: Upgrade yum to the latest packages
yum:
name: '*'
state: latest
- name: Install packages
yum:
name: "{{ al2_packages }}"
state: latest
- name: set hostname
hostname:
name: "{{ hostname }}"
- name: Set timezone to UTC
when: ansible_date_time.tz != 'UTC'
command: timedatectl set-timezone UTC
|
Fix typos in ansible config
|
Fix typos in ansible config
|
YAML
|
mit
|
clojars/clojars-server-config,clojars/clojars-server-config
|
9436dcca3269b146872ffd252dc07ddf5eacf0ba
|
openstack/swift/templates/ingress.yaml
|
openstack/swift/templates/ingress.yaml
|
{{- range $index, $cluster := .Values.clusters }}
{{- if $.Values.vice_president }}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: swift-{{$cluster.name}}
annotations:
# the ingress controller won't pick this up
kubernetes.io/ingress.class: "noop.vice-president"
# enable vice-president
vice-president: "true"
# workaround to enable the vice-president for non-ingress based swift.
# the vp will only evaluate the following spec.tls section
spec:
tls:
- secretName: tls-swift-{{$cluster.name}}
hosts: [swift-{{$cluster.name}}.{{$.Values.global.region}}.{{$.Values.global.domain}}]
# the following is mandatory in an ingress resource, but will be ignored by the vice-president
rules:
- host: swift-{{$cluster.name}}.{{$.Values.global.region}}.{{$.Values.global.domain}}
http:
paths:
- path: /
backend:
serviceName: swift-{{$cluster.name}}
servicePort: 9090
---
{{- end }}
{{- end }}
|
{{- range $index, $cluster := .Values.clusters }}
{{- if $.Values.vice_president }}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: swift-{{$cluster.name}}
annotations:
# the ingress controller won't pick this up
kubernetes.io/ingress.class: "noop.vice-president"
# enable vice-president
vice-president: "true"
# workaround to enable the vice-president for non-ingress based swift.
# the vp will only evaluate the following spec.tls section
spec:
tls:
- secretName: tls-swift-{{$cluster.name}}
hosts: [swift-{{$cluster.name}}.{{$.Values.global.region}}.{{$.Values.global.tld}}]
# the following is mandatory in an ingress resource, but will be ignored by the vice-president
rules:
- host: swift-{{$cluster.name}}.{{$.Values.global.region}}.{{$.Values.global.tld}}
http:
paths:
- path: /
backend:
serviceName: swift-{{$cluster.name}}
servicePort: 9090
---
{{- end }}
{{- end }}
|
Use correct value for top level domain
|
Use correct value for top level domain
|
YAML
|
apache-2.0
|
sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts
|
e04a28bea2fe5a7ab80413b892c24b1e7d9f0c0e
|
src/deedee_tutorials/config/main.yaml
|
src/deedee_tutorials/config/main.yaml
|
robot_name: "deedee" # Name of the robot, used for namespace
sim_plant: true # Actual or simulated robot
autonomous: false # Manual (false) or autonomous (true) control
sim_display: "gzclient" # Visualisation client: gzclient|gzweb|both|none
gzweb_path: "/home/cyrill/gzweb" # Path to the installation folder for gzweb
|
robot_name: "deedee" # Name of the robot, used for namespace
sim_plant: true # Actual or simulated robot
autonomous: true # Manual (false) or autonomous (true) control
sim_display: "gzclient" # Visualisation client: gzclient|gzweb|both|none
gzweb_path: "/home/cyrill/gzweb" # Path to the installation folder for gzweb
|
Put default behaviour of Deedee as autonomous
|
Put default behaviour of Deedee as autonomous
|
YAML
|
mit
|
cyrillg/ros-playground,cyrillg/ros-playground
|
aea2153f088567a4cfc832b9a6791fa62a216c1a
|
data/building-hours/10-registrar.yaml
|
data/building-hours/10-registrar.yaml
|
name: Registrar
category: Offices
schedule:
- title: Hours
hours:
# - {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '4:30pm'}
breakSchedule:
fall: []
thanksgiving: []
winter: []
interim: []
spring: []
easter: []
summer:
- title: Hours
hours:
- {days: [Mo, Tu, We, Th], from: '7:30am', to: '4:30pm'}
- {days: [Fr], from: '7:30am', to: '12:00pm'}
|
name: Registrar
category: Offices
schedule:
- title: Hours
hours:
# - {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '4:30pm'}
- {days: [Mo, Tu, We, Th], from: '7:30am', to: '4:30pm'}
- {days: [Fr], from: '7:30am', to: '12:00pm'}
breakSchedule:
fall: []
thanksgiving: []
winter: []
interim: []
spring: []
easter: []
summer:
- title: Hours
hours:
- {days: [Mo, Tu, We, Th], from: '7:30am', to: '4:30pm'}
- {days: [Fr], from: '7:30am', to: '12:00pm'}
|
Add guessed summer Registrar hours
|
Add guessed summer Registrar hours
|
YAML
|
agpl-3.0
|
StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native
|
884ec1719c9bd3747da726741ff9d48510472396
|
.pre-commit-config.yaml
|
.pre-commit-config.yaml
|
default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-added-large-files
args: [ '--maxkb=500' ]
- id: check-byte-order-marker
exclude: .*\.csv|.*\.xsd|.*\.xlsx|.*\.xml
- id: check-case-conflict
- id: check-merge-conflict
- id: check-symlinks
- id: detect-private-key
- id: fix-encoding-pragma
- id: end-of-file-fixer
exclude: .idea/.*|.*\.blg|.*\.json|.*\.dat
- id: trailing-whitespace
exclude: .idea/.*|.*\.blg|.*\.json|.*\.dat
- id: mixed-line-ending
exclude: .idea/.*
- id: check-json
- repo: https://github.com/ambv/black
rev: 22.1.0
hooks:
- id: black
language_version: python3.10
additional_dependencies: ['click==8.0.4']
- repo: https://gitlab.com/pycqa/flake8
rev: 4.0.1
hooks:
- id: flake8
additional_dependencies:
- flake8-black>=0.1.1
language_version: python3.10
|
default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-added-large-files
args: [ '--maxkb=500' ]
- id: check-byte-order-marker
exclude: .*\.csv|.*\.xsd|.*\.xlsx|.*\.xml
- id: check-case-conflict
- id: check-merge-conflict
- id: check-symlinks
- id: detect-private-key
- id: fix-encoding-pragma
- id: end-of-file-fixer
exclude: .idea/.*|.*\.blg|.*\.json|.*\.dat
- id: trailing-whitespace
exclude: .idea/.*|.*\.blg|.*\.json|.*\.dat
- id: mixed-line-ending
exclude: .idea/.*
- id: check-json
- repo: https://github.com/ambv/black
rev: 22.1.0
hooks:
- id: black
language_version: python3.10
additional_dependencies: ['click==8.0.4']
- repo: https://github.com/pycqa/flake8
rev: 5.0.4
hooks:
- id: flake8
language_version: python3.10
|
Move flake8 from gitlab to github.
|
Move flake8 from gitlab to github.
|
YAML
|
bsd-3-clause
|
pivotal-energy-solutions/django-app-metrics,pivotal-energy-solutions/django-app-metrics
|
0720c0a50843d930ef498e3512f625dc2888e758
|
.pre-commit-config.yaml
|
.pre-commit-config.yaml
|
# pre-commit hook which runs all the various lint checks + black auto formatting on the added
# files.
# This hook relies on development virtual environment being present in virtualenv/.
default_language_version:
python: python3.6
exclude: '(build|dist)'
repos:
- repo: local
hooks:
- id: black
name: black
entry: ./virtualenv/bin/python -m black --config pyproject.toml
language: script
types: [file, python]
- repo: local
hooks:
- id: flake8
name: flake8
entry: ./virtualenv/bin/python -m flake8 --config lint-configs/python/.flake8
language: script
types: [file, python]
- repo: local
hooks:
- id: pylint
name: pylint
entry: ./virtualenv/bin/python -m pylint -E --rcfile=./lint-configs/python/.pylintrc
language: script
types: [file, python]
- repo: local
hooks:
- id: bandit
name: bandit
entry: ./virtualenv/bin/python -m bandit -lll -x build,dist
language: script
types: [file, python]
# - repo: https://github.com/pre-commit/pre-commit-hooks
# rev: v2.5.0
# hooks:
# - id: trailing-whitespace
# - id: check-yaml
# exclude: (^openapi|fixtures)
|
# pre-commit hook which runs all the various lint checks + black auto formatting on the added
# files.
# This hook relies on development virtual environment being present in virtualenv/.
default_language_version:
python: python3.6
exclude: '(build|dist)'
repos:
- repo: local
hooks:
- id: black
name: black
entry: ./virtualenv/bin/python -m black --config pyproject.toml
language: script
types: [file, python]
- repo: local
hooks:
- id: flake8
name: flake8
entry: ./virtualenv/bin/python -m flake8 --config lint-configs/python/.flake8
language: script
types: [file, python]
- repo: local
hooks:
- id: pylint
name: pylint
entry: ./virtualenv/bin/python -m pylint -E --rcfile=./lint-configs/python/.pylintrc
language: script
types: [file, python]
- repo: local
hooks:
- id: bandit
name: bandit
entry: ./virtualenv/bin/python -m bandit -lll -x build,dist
language: script
types: [file, python]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
hooks:
- id: trailing-whitespace
- id: check-yaml
exclude: (openapi\.yaml)
|
Update pre-commit config to also run trialing whitespace and check yaml syntax check.
|
Update pre-commit config to also run trialing whitespace and check yaml
syntax check.
|
YAML
|
apache-2.0
|
nzlosh/st2,Plexxi/st2,StackStorm/st2,StackStorm/st2,StackStorm/st2,StackStorm/st2,nzlosh/st2,Plexxi/st2,Plexxi/st2,nzlosh/st2,Plexxi/st2,nzlosh/st2
|
b2da71a8b5aef01d5c4158a35df07ebacda6b467
|
metadata/com.dozingcatsoftware.mouse_pounce.yml
|
metadata/com.dozingcatsoftware.mouse_pounce.yml
|
Categories:
- Games
License: GPL-3.0-only
WebSite: https://github.com/dozingcat/MousePounce
SourceCode: https://github.com/dozingcat/MousePounce
IssueTracker: https://github.com/dozingcat/MousePounce/issues
AutoName: Egyptian Mouse Pounce
RepoType: git
Repo: https://github.com/dozingcat/MousePounce.git
Builds:
- versionName: 1.1.0
versionCode: 2
commit: v1.1.0
output: build/app/outputs/apk/fdroid/release/app-fdroid-release.apk
srclibs:
- [email protected]
prebuild: rm -fr ios
build:
- export PATH=$$flutter$$/bin:$PATH
- flutter build apk --flavor fdroid
AutoUpdateMode: Version v%v
UpdateCheckMode: HTTP
UpdateCheckData: https://raw.githubusercontent.com/dozingcat/MousePounce/master/pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+
CurrentVersion: 1.1.0
CurrentVersionCode: 2
|
Categories:
- Games
License: GPL-3.0-only
WebSite: https://github.com/dozingcat/MousePounce
SourceCode: https://github.com/dozingcat/MousePounce
IssueTracker: https://github.com/dozingcat/MousePounce/issues
AutoName: Egyptian Mouse Pounce
RepoType: git
Repo: https://github.com/dozingcat/MousePounce.git
Builds:
- versionName: 1.1.0
versionCode: 2
commit: v1.1.0
output: build/app/outputs/apk/fdroid/release/app-fdroid-release.apk
srclibs:
- [email protected]
prebuild: rm -fr ios
build:
- export PATH=$$flutter$$/bin:$PATH
- flutter build apk --flavor fdroid
- versionName: 1.1.1
versionCode: 3
commit: v1.1.1
output: build/app/outputs/apk/fdroid/release/app-fdroid-release.apk
srclibs:
- [email protected]
prebuild: rm -fr ios
build:
- export PATH=$$flutter$$/bin:$PATH
- flutter build apk --flavor fdroid
AutoUpdateMode: Version v%v
UpdateCheckMode: HTTP
UpdateCheckData: https://raw.githubusercontent.com/dozingcat/MousePounce/master/pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+
CurrentVersion: 1.1.1
CurrentVersionCode: 3
|
Update Egyptian Mouse Pounce to 1.1.1 (3)
|
Update Egyptian Mouse Pounce to 1.1.1 (3)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
81f0195252bfe72fcef3d0037874ce763337bc60
|
.pre-commit-config.yaml
|
.pre-commit-config.yaml
|
---
repos:
- repo: https://github.com/PyCQA/doc8
rev: 0.8.1
hooks:
- id: doc8
name: doc8
description: This hook runs doc8 for linting docs.
entry: python -m doc8
language: python
files: \.rst$
require_serial: true
- repo: https://github.com/psf/black.git
rev: 21.9b0
hooks:
- id: black
language_version: python3
exclude: ^(tests\/hooks-abort-render\/hooks|docs\/HelloCookieCutter1)
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: mixed-line-ending
- id: check-byte-order-marker
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-symlinks
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.9
hooks:
- id: flake8
additional_dependencies:
- flake8-absolute-import
- flake8-black
- flake8-docstrings
- repo: https://github.com/PyCQA/bandit
rev: 1.6.0
hooks:
- id: bandit
args: [--ini, .bandit]
|
---
repos:
# - repo: https://github.com/PyCQA/doc8
# rev: 0.8.1
# hooks:
# - id: doc8
# name: doc8
# description: This hook runs doc8 for linting docs.
# entry: python -m doc8
# language: python
# files: \.rst$
# require_serial: true
- repo: https://github.com/psf/black.git
rev: 21.9b0
hooks:
- id: black
language_version: python3
exclude: ^(tests\/hooks-abort-render\/hooks|docs\/HelloCookieCutter1)
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: mixed-line-ending
- id: check-byte-order-marker
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-symlinks
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.9
hooks:
- id: flake8
additional_dependencies:
- flake8-absolute-import
- flake8-black
- flake8-docstrings
- repo: https://github.com/PyCQA/bandit
rev: 1.6.0
hooks:
- id: bandit
args: [--ini, .bandit]
|
Comment out doc8 to see if it is the issue with GHCI
|
Comment out doc8 to see if it is the issue with GHCI
|
YAML
|
bsd-3-clause
|
audreyr/cookiecutter,audreyr/cookiecutter
|
db8ece6e284dcd97d41e0b2514c3c5a52a0bae86
|
metadata/de.kromke.andreas.opus1musicplayer.yml
|
metadata/de.kromke.andreas.opus1musicplayer.yml
|
Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Andreas Kromke
SourceCode: https://gitlab.com/AndreasK/opus1-music-player
IssueTracker: https://gitlab.com/AndreasK/opus1-music-player/issues
Changelog: https://gitlab.com/AndreasK/opus1-music-player/blob/HEAD/app/src/main/assets/version-history.txt
AutoName: Opus 1 Music Player
RepoType: git
Repo: https://gitlab.com/AndreasK/opus1-music-player.git
Builds:
- versionName: 2.40.1
versionCode: 59
commit: v2.40.1
subdir: app
gradle:
- yes
- versionName: '2.50'
versionCode: 60
commit: v2.50
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '2.50'
CurrentVersionCode: 60
|
Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Andreas Kromke
SourceCode: https://gitlab.com/AndreasK/opus1-music-player
IssueTracker: https://gitlab.com/AndreasK/opus1-music-player/issues
Changelog: https://gitlab.com/AndreasK/opus1-music-player/blob/HEAD/app/src/main/assets/version-history.txt
AutoName: Opus 1 Music Player
RepoType: git
Repo: https://gitlab.com/AndreasK/opus1-music-player.git
Builds:
- versionName: 2.40.1
versionCode: 59
commit: v2.40.1
subdir: app
gradle:
- yes
- versionName: '2.50'
versionCode: 60
commit: v2.50
subdir: app
gradle:
- yes
- versionName: '2.60'
versionCode: 61
commit: 530d43d9ced7f3d67eaabf7bc211157f3aac352d
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '2.60'
CurrentVersionCode: 61
|
Update Opus 1 Music Player to 2.60 (61)
|
Update Opus 1 Music Player to 2.60 (61)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
341c20e981e241d24fc20d52394cd24f4415be3a
|
.kitchen.yml
|
.kitchen.yml
|
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-14.04
- name: ubuntu-12.04
- name: ubuntu-10.04
- name: centos-7.0
- name: centos-6.6
- name: centos-5.9
- name: fedora-21
- name: amazon-2014.09.1
driver:
name: ec2
aws_access_key_id: <%= ENV['AWS_ACCESS_KEY'] || 'AWS_ACCESS_KEY' %>
aws_secret_access_key: <%= ENV['AWS_SECRET_KEY'] || 'AWS_SECRET_KEY' %>
aws_ssh_key_id: <%= ENV['AWS_SSH_KEY_ID'] || 'AWS_SSH_KEY_ID' %>
region: us-east-1
image_id: ami-b66ed3de
flavor_id: m3.medium
ebs_volume_size: 8
ebs_delete_on_termination: true
ebs_device_name: /dev/sda
username: ec2-user
suites:
- name: default
run_list: ["recipe[timezone-ii]"]
attributes:
tz: "Pacific/Tongatapu" # "TOT"
|
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-14.04
- name: ubuntu-12.04
- name: ubuntu-10.04
- name: debian-7.8
- name: centos-7.0
- name: centos-6.6
- name: centos-5.9
- name: fedora-21
- name: amazon-2014.09.1
driver:
name: ec2
aws_access_key_id: <%= ENV['AWS_ACCESS_KEY'] || 'AWS_ACCESS_KEY' %>
aws_secret_access_key: <%= ENV['AWS_SECRET_KEY'] || 'AWS_SECRET_KEY' %>
aws_ssh_key_id: <%= ENV['AWS_SSH_KEY_ID'] || 'AWS_SSH_KEY_ID' %>
region: us-east-1
image_id: ami-b66ed3de
flavor_id: m3.medium
ebs_volume_size: 8
ebs_delete_on_termination: true
ebs_device_name: /dev/sda
username: ec2-user
suites:
- name: default
run_list: ["recipe[timezone-ii]"]
attributes:
tz: "Pacific/Tongatapu" # "TOT"
|
Add Debian 7.8 to Test Kitchen
|
Add Debian 7.8 to Test Kitchen
|
YAML
|
apache-2.0
|
gkra/timezone-ii,L2G/timezone-ii,bluespurs/timezone-ii,L2G/timezone-ii,gkra/timezone-ii,gkra/timezone-ii,L2G/timezone-ii,bluespurs/timezone-ii,bluespurs/timezone-ii
|
9c6aa21fa088008180b2d4b6f1a2deb9f78fa67d
|
.kitchen.yml
|
.kitchen.yml
|
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
#- name: debian-7.2.0
#driver_config:
#box: debian-7.2.0
- name: ubuntu-14.04
driver_config:
box: ubuntu-14.04
suites:
- name: default
run_list:
- recipe[statsdaemon]
attributes:
go:
owner: 'vagrant'
group: 'vagrant'
statsdaemon:
graphite: '-'
|
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
#- name: debian-7.2.0
- name: ubuntu-14.04
suites:
- name: default
run_list:
- recipe[statsdaemon]
attributes:
go:
owner: 'vagrant'
group: 'vagrant'
statsdaemon:
graphite: '-'
|
Remove useless config for kitchn.yml
|
Remove useless config for kitchn.yml
|
YAML
|
mit
|
mburns/cookbook-statsdaemon,mburns/cookbook-statsdaemon,mburns/cookbook-statsdaemon
|
13356b3844ad1a72be4078fcf9d7ff9dea0a3f94
|
.kitchen.yml
|
.kitchen.yml
|
---
driver:
name: vagrant
require_chef_omnibus: true
customize:
memory: 512
provisioner:
name: chef_zero
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-6.5
run_list:
- recipe[yum-epel]
suites:
- name: default
run_list:
- recipe[collectd]
- recipe[collectd::attribute_driven]
attributes:
collectd:
version: 5.4.1
url: https://s3.amazonaws.com/collectd-5.4.1/collectd-5.4.1.tar.gz
checksum: 853680936893df00bfc2be58f61ab9181fecb1cf45fc5cddcb7d25da98855f65
graphite_ipaddress: localhost
plugins:
write_graphite:
config: { Prefix: "collectd." }
syslog:
config: { LogLevel: "Info" }
disk: { }
swap: { }
memory: { }
cpu: { }
interface:
config: { Interface: "lo", IgnoreSelected: true }
df:
config:
ReportReserved: false
FSType: [ "proc", "sysfs", "fusectl", "debugfs", "devtmpfs", "devpts", "tmpfs" ]
IgnoreSelected: true
|
---
driver:
name: vagrant
require_chef_omnibus: true
customize:
memory: 512
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.04
run_list:
- recipe[apt]
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-6.5
run_list:
- recipe[yum-epel]
suites:
- name: default
run_list:
- recipe[collectd]
- recipe[collectd::attribute_driven]
attributes:
collectd:
version: 5.4.1
url: https://s3.amazonaws.com/collectd-5.4.1/collectd-5.4.1.tar.gz
checksum: 853680936893df00bfc2be58f61ab9181fecb1cf45fc5cddcb7d25da98855f65
graphite_ipaddress: localhost
plugins:
write_graphite:
config: { Prefix: "collectd." }
syslog:
config: { LogLevel: "Info" }
disk: { }
swap: { }
memory: { }
cpu: { }
interface:
config: { Interface: "lo", IgnoreSelected: true }
df:
config:
ReportReserved: false
FSType: [ "proc", "sysfs", "fusectl", "debugfs", "devtmpfs", "devpts", "tmpfs" ]
IgnoreSelected: true
|
Add support for Ubuntu 14.04 (Trusty) to test suite
|
Add support for Ubuntu 14.04 (Trusty) to test suite
This changeset adds Ubuntu 14.04 to the platforms covered in the Test
Kitchen test suite.
|
YAML
|
apache-2.0
|
kri5/chef-collectd,kri5/chef-collectd,obazoud/chef-collectd-hectcastro,hectcastro/chef-collectd,kri5/chef-collectd,brumschlag/chef-collectd,hectcastro/chef-collectd,obazoud/chef-collectd-hectcastro,brumschlag/chef-collectd,obazoud/chef-collectd-hectcastro,brumschlag/chef-collectd,hectcastro/chef-collectd
|
de078c562ff101598e83340182f943c5736be6b4
|
.kitchen.yml
|
.kitchen.yml
|
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
run_list: apt::default
- name: debian-8.6
run_list: apt::default
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
run_list: apt::default
- name: ubuntu-16.04
run_list: apt::default
suites:
- name: default
run_list:
- recipe[iptables_test::default]
attributes:
iptables:
iptables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
ip6tables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
- name: disabled
run_list:
- recipe[iptables::disabled]
- name: no_template
run_list:
- recipe[iptables_test::no_template]
attributes:
iptables:
iptables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
ip6tables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
- name: nested
run_list:
- recipe[iptables_test::nested]
attributes:
iptables:
iptables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
ip6tables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
|
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
run_list: apt::default
- name: debian-8.7
run_list: apt::default
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
run_list: apt::default
- name: ubuntu-16.04
run_list: apt::default
suites:
- name: default
run_list:
- recipe[iptables_test::default]
attributes:
iptables:
iptables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
ip6tables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
- name: disabled
run_list:
- recipe[iptables::disabled]
- name: no_template
run_list:
- recipe[iptables_test::no_template]
attributes:
iptables:
iptables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
ip6tables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
- name: nested
run_list:
- recipe[iptables_test::nested]
attributes:
iptables:
iptables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
ip6tables_sysconfig:
IPTABLES_STATUS_VERBOSE: 'yes'
|
Update Debian 8 in Test Kitchen
|
Update Debian 8 in Test Kitchen
Signed-off-by: Tim Smith <[email protected]>
|
YAML
|
apache-2.0
|
chef-cookbooks/iptables,opscode-cookbooks/iptables,chef-cookbooks/iptables,opscode-cookbooks/iptables,chef-cookbooks/iptables,opscode-cookbooks/iptables
|
d34825ac1681c359934e03961011a72f4c8366fe
|
.kitchen.yml
|
.kitchen.yml
|
---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
- name: ubuntu-10.04
suites:
- name: default
run_list:
- recipe[serf::default]
attributes:
|
---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
suites:
- name: default
run_list:
- recipe[serf::default]
attributes:
|
Remove support for Lucid - it's time.
|
Remove support for Lucid - it's time.
|
YAML
|
apache-2.0
|
darron/serf-cookbook
|
0111a416590895eec2edbd2f288e941233c06347
|
.rubocop.yml
|
.rubocop.yml
|
# This is the Hanami generator default
Style/ClassAndModuleChildren:
EnforcedStyle: compact
Exclude:
- 'apps/web/application.rb'
# Almost all classes in this app are self-explanatory
Style/Documentation:
Enabled: false
|
# This is the Hanami generator default
Style/ClassAndModuleChildren:
EnforcedStyle: compact
Exclude:
- 'apps/web/application.rb'
- 'apps/web/views/application_layout.rb'
# Almost all classes in this app are self-explanatory
Style/Documentation:
Enabled: false
|
Add exception for lingering Rubocop issue
|
Add exception for lingering Rubocop issue
|
YAML
|
mit
|
bruz/bookshelf-delivery-example,bruz/bookshelf-delivery-example
|
c3730e41bf7fd14d8f6fc7edefd1dda0502c5923
|
data/transition-sites/dfid_blogs.yml
|
data/transition-sites/dfid_blogs.yml
|
---
site: dfid_blogs
whitehall_slug: department-for-international-development
title: Department for International Development
redirection_date: 17th March 2014
homepage: https://dfid.blog.gov.uk
tna_timestamp: 20130704203515
host: blogs.dfid.gov.uk
furl: www.gov.uk/dfid
aliases:
- dfidimport.blog.gov.uk
|
---
site: dfid_blogs
whitehall_slug: department-for-international-development
title: Department for International Development
redirection_date: 19th March 2014
homepage: https://dfid.blog.gov.uk
tna_timestamp: 20130704203515
host: blogs.dfid.gov.uk
furl: www.gov.uk/dfid
aliases:
- dfidimport.blog.gov.uk
|
Change date of DFID migration
|
Change date of DFID migration
|
YAML
|
mit
|
alphagov/transition-config,alphagov/transition-config
|
79806fb8b3c393b568c8410711a116fdd0963dad
|
config/mongoid.yml
|
config/mongoid.yml
|
common: &default_client
options:
write:
w: <%= ENV['MONGOID_WRITE_MODE'] || 1 %>
read:
mode: :<%= ENV['MONGOID_READ_MODE'] || 'primary' %>
max_retries: <%= ENV['MONGOID_MAX_RETRIES'] || 1 %>
retry_interval: <%= ENV['MONGOID_RETRY_INTERVAL'] || 0 %>
timeout: <%= ENV['MONGOID_TIMEOUT'] || 0.5 %>
ssl: <%= ENV['MONGOID_USE_SSL'] || false %>
common_uri: &default_uri
uri: <%= ENV['MONGOHQ_URL'] %>
development:
clients:
default:
<<: *default_uri
<<: *default_client
test:
clients:
default:
<<: *default_uri
<<: *default_client
production:
clients:
default:
<<: *default_uri
<<: *default_client
edgeprod:
clients:
default:
<<: *default_uri
<<: *default_client
edgestage:
clients:
default:
<<: *default_uri
<<: *default_client
staging:
clients:
default:
<<: *default_uri
<<: *default_client
loadtest:
clients:
default:
<<: *default_uri
<<: *default_client
defaults: &defaults
use_utc: false
use_activesupport_time_zone: true
|
common: &default_client
options:
write:
w: <%= ENV['MONGOID_WRITE_MODE'] || 1 %>
read:
mode: :<%= ENV['MONGOID_READ_MODE'] || 'primary' %>
max_retries: <%= ENV['MONGOID_MAX_RETRIES'] || 1 %>
retry_interval: <%= ENV['MONGOID_RETRY_INTERVAL'] || 0 %>
timeout: <%= ENV['MONGOID_TIMEOUT'] || 0.5 %>
ssl: <%= ENV['MONGOID_USE_SSL'] || false %>
auth_source: <%= ENV['MONGOID_AUTH_SOURCE'] || '' %>
common_uri: &default_uri
uri: <%= ENV['MONGOHQ_URL'] %>
development:
clients:
default:
<<: *default_uri
<<: *default_client
test:
clients:
default:
<<: *default_uri
<<: *default_client
production:
clients:
default:
<<: *default_uri
<<: *default_client
edgeprod:
clients:
default:
<<: *default_uri
<<: *default_client
edgestage:
clients:
default:
<<: *default_uri
<<: *default_client
staging:
clients:
default:
<<: *default_uri
<<: *default_client
loadtest:
clients:
default:
<<: *default_uri
<<: *default_client
defaults: &defaults
use_utc: false
use_activesupport_time_zone: true
|
Add support for configuring auth_source for Mongo connection
|
Add support for configuring auth_source for Mongo connection
|
YAML
|
agpl-3.0
|
edx/cs_comments_service,edx/cs_comments_service,EDUlib/cs_comments_service,edx-solutions/cs_comments_service,edx-solutions/cs_comments_service,edx/cs_comments_service,EDUlib/cs_comments_service,EDUlib/cs_comments_service,edx-solutions/cs_comments_service
|
c3e9a5685fa1d49feb033b0a4354e37f0e895996
|
roles/quarkslab.peid/defaults/main.yml
|
roles/quarkslab.peid/defaults/main.yml
|
---
peid_sig_url: http://handlers.sans.org/jclausing/userdb.txt
sig_dir: /opt/irma/peid_sig
|
---
peid_sig_url: https://raw.githubusercontent.com/viper-framework/viper/master/data/peid/UserDB.TXT
sig_dir: /opt/irma/peid_sig
|
Fix get peid signatures from viper
|
Fix get peid signatures from viper
|
YAML
|
apache-2.0
|
quarkslab/irma,quarkslab/irma,hirokihamasaki/irma,quarkslab/irma,hirokihamasaki/irma,quarkslab/irma,hirokihamasaki/irma,hirokihamasaki/irma,hirokihamasaki/irma
|
ec0f5b9a8bd9d96b46fc304d662cdeff3de2400d
|
test/config/cucumber.yaml
|
test/config/cucumber.yaml
|
# https://github.com/cucumber/cucumber/wiki/cucumber.yml
<% omit_wip = "--tags ~@wip" %>
<% omit_migration = "--tags ~@migration" %>
default: <%= omit_migration %> <%= omit_wip %> features
html_report: <%= omit_migration %> <%= omit_wip %> --format html --out report/index.html
wip: <%= omit_migration %> --tags @wip
html_report_wip: <%= omit_migration %> --tags @wip --format html --out report/index_wip.html
migration: <%= omit_wip %> --tags @migration
html_report_migration: <%= omit_wip %> --tags @migration --format html --out report/index_migration.html
migration_wip: --tags @wip --tags @migration
html_report_migration_wip: --tags @wip --tags @migration --format html --out report/index_migration_wip.html
|
# https://github.com/cucumber/cucumber/wiki/cucumber.yml
<% omit_ignore = "--tags ~@ignore" %>
<% omit_wip = "--tags ~@wip" %>
<% omit_migration = "--tags ~@migration" %>
default: <%= omit_ignore %> <%= omit_migration %> <%= omit_wip %> features
html_report: <%= omit_ignore %> <%= omit_migration %> <%= omit_wip %> --format html --out report/index.html
wip: <%= omit_ignore %> <%= omit_migration %> --tags @wip
html_report_wip: <%= omit_ignore %> <%= omit_migration %> --tags @wip --format html --out report/index_wip.html
migration: <%= omit_ignore %> <%= omit_wip %> --tags @migration
html_report_migration: <%= omit_ignore %> <%= omit_wip %> --tags @migration --format html --out report/index_migration.html
migration_wip: <%= omit_ignore %> --tags @wip --tags @migration
html_report_migration_wip: <%= omit_ignore %> --tags @wip --tags @migration --format html --out report/index_migration_wip.html
|
Add support for cuke - @ignore-tag.
|
Add support for cuke - @ignore-tag.
Scenarios marked @ignore should never be run.
Please make a note in the feature file why you @ignore.
|
YAML
|
mit
|
digibib/ls.ext,digibib/ls.ext,digibib/ls.ext,digibib/ls.ext
|
57807924b4e4ec20b27a63f28b1277e373873c43
|
config/storage.yml
|
config/storage.yml
|
amazon:
service: S3
access_key_id: <%= ENV['S3_REWARDS_ACCESS_KEY_ID'] %>
secret_access_key: <%= ENV['S3_REWARDS_SECRET_ACCESS_KEY'] %>
region: us-east-2
bucket: <%= ENV['S3_REWARDS_BUCKET_NAME'] %>
local:
service: Disk
root: <%= Rails.root.join("storage") %>
test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>
|
amazon:
service: S3
access_key_id: <%= ENV['S3_REWARDS_ACCESS_KEY_ID'] %>
secret_access_key: <%= ENV['S3_REWARDS_SECRET_ACCESS_KEY'] %>
region: <%= ENV['S3_REWARDS_BUCKET_REGION'] %>
bucket: <%= ENV['S3_REWARDS_BUCKET_NAME'] %>
local:
service: Disk
root: <%= Rails.root.join("storage") %>
test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>
|
Use S3 region based on env as opposed to hardcode
|
Use S3 region based on env as opposed to hardcode
Closes #1251
|
YAML
|
mpl-2.0
|
brave/publishers,brave/publishers,brave/publishers
|
ca645245e886a4ec58357bcc566e084cbc457c1b
|
playbook.yml
|
playbook.yml
|
---
- connection: local
hosts: localhost
sudo: true
remote_user: douglas
vars_files:
- vault.yml
vars:
project: openvpn
roles:
- role: stevenharradine.pseudo-forge
- role: stevenharradine.static-ip
static_ip_address: "192.168.1.{% if environment_tier=='development' %}90{% elif environment_tier=='production' %}200{% endif %}"
- role: stevenharradine.hostname
- role: stevenharradine.openvpn
openvpn_server: yes
openvpn_server_firewall_allow_ssh: yes
|
---
- connection: local
hosts: localhost
sudo: true
remote_user: douglas
vars_files:
- vault.yml
vars:
project: openvpn
roles:
- role: stevenharradine.pseudo-forge
- role: stevenharradine.static-ip
static_ip_address: "192.168.2.{% if environment_tier=='development' %}90{% elif environment_tier=='production' %}200{% endif %}"
- role: stevenharradine.hostname
- role: stevenharradine.openvpn
openvpn_server: yes
openvpn_server_firewall_allow_ssh: yes
|
Update ips to not conflict with android hotspot
|
Update ips to not conflict with android hotspot
|
YAML
|
isc
|
stevenharradine/playbook-openvpn
|
3afdedd2de5ee42c450c3662e355c374e2e092e1
|
.bazelci/presubmit.yml
|
.bazelci/presubmit.yml
|
---
tasks:
debian10:
shell_commands:
- apt-get update && apt-get install llvm-11-dev libclang-11-dev libncurses-dev
- pip3 install absl-py clang
build_targets:
- "..."
|
---
tasks:
debian10:
shell_commands:
- "sudo apt -y update && sudo apt -y install llvm-11-dev libclang-11-dev libncurses-dev"
- pip3 install absl-py clang
build_targets:
- "..."
|
Install the packages with `sudo`
|
BazelCI: Install the packages with `sudo`
PiperOrigin-RevId: 438800858
Change-Id: Ib7584313ff51869e3e62d5c54c2f04e2969bae50
|
YAML
|
apache-2.0
|
google/sandboxed-api,google/sandboxed-api,google/sandboxed-api,google/sandboxed-api
|
341f58e6d9a4928c50a645540ba33aee6402af8b
|
manifest-pcf.yml
|
manifest-pcf.yml
|
---
instances: 1
memory: 1024M
applications:
- name: fortune-service
host: fortunes
path: fortune-teller-fortune-service/target/fortune-teller-fortune-service-0.0.1-SNAPSHOT.jar
services:
- fortunes-db
- config-server
- service-registry
- name: fortune-ui
host: fortunes-ui
path: fortune-teller-ui/target/fortune-teller-ui-0.0.1-SNAPSHOT.jar
services:
- config-server
- service-registry
- circuit-breaker-dashboard
env:
SPRING_PROFILES_ACTIVE: pcf
CF_TARGET: https://api.cf.deepsouth.com
|
---
instances: 1
memory: 1024M
applications:
- name: fortune-service
host: fortunes
path: fortune-teller-fortune-service/target/fortune-teller-fortune-service-0.0.1-SNAPSHOT.jar
services:
- fortunes-db
- config-server
- service-registry
- name: fortune-ui
host: fortunes-ui
path: fortune-teller-ui/target/fortune-teller-ui-0.0.1-SNAPSHOT.jar
services:
- config-server
- service-registry
- circuit-breaker-dashboard
env:
SPRING_PROFILES_ACTIVE: pcf
# Replace with API URI of target PCF environment
#CF_TARGET: https://api.yourpcfenvironment.local
|
Add comment about updating CF_TARGET
|
Add comment about updating CF_TARGET
|
YAML
|
apache-2.0
|
spring-cloud-services-samples/fortune-teller,spring-cloud-services-samples/fortune-teller,spring-cloud-services-samples/fortune-teller,spring-cloud-services-samples/fortune-teller,spring-cloud-services-samples/fortune-teller
|
0c548ec618b6eac9ccf1d261ec79c6f9ebb43fb3
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Publish package to GitHub Packages
on:
push:
pull_request:
jobs:
ci:
runs-on: windows-latest
permissions:
contents: read
packages: write
env:
JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: "17"
distribution: "adopt"
- name: Validate
run: |
cd code
mvn --batch-mode validate
- name: Test
run: |
cd code
mvn --batch-mode test
- name: Publish
if: github.ref == 'refs/heads/master' && github.repository_owner == 'Codeforces'
run: |
cd code
mvn --batch-mode deploy -DskipTests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
name: Publish package to GitHub Packages
on:
push:
pull_request:
jobs:
test:
runs-on: windows-latest
env:
JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: "17"
distribution: "adopt"
- name: Validate
run: |
cd code
mvn --batch-mode validate
- name: Test
run: |
cd code
mvn --batch-mode test
publish:
if: github.ref == 'refs/heads/master' && github.repository_owner == 'Codeforces'
needs: test
runs-on: windows-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: "17"
distribution: "adopt"
- name: Validate
run: |
cd code
mvn --batch-mode validate
- name: Publish
run: |
cd code
mvn --batch-mode deploy -DskipTests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Split test and publish jobs
|
Split test and publish jobs
|
YAML
|
apache-2.0
|
Codeforces/codeforces-commons,Codeforces/codeforces-commons
|
e4fc80567ca4b101ca2a896334bc2ea685fad8b3
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Continuous Integration
on:
push:
branches:
- master
pull_request:
jobs:
unit_tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
|
name: Continuous Integration
on:
push:
branches:
- master
pull_request:
jobs:
unit_tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
- name: cargo test --features enum-map
uses: actions-rs/cargo@v1
with:
command: test --features enum-map
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
|
Add CI test for enum-map feature
|
Add CI test for enum-map feature
|
YAML
|
mit
|
greyblake/whatlang-rs,greyblake/whatlang-rs,greyblake/whatlang-rs
|
9f648134448f405f5edb3f31aa24ca253274591e
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: macOS-latest
strategy:
matrix:
env:
- sdk: iphonesimulator12.2
destination: platform=iOS Simulator,name=iPhone XS,OS=12.2
- sdk: appletvsimulator12.2
destination: OS=12.2,name=Apple TV
steps:
- uses: actions/checkout@v1
- name: Generate Xcode Project
run: swift package generate-xcodeproj --enable-code-coverage
- name: Build and Test
run: |
set -o pipefail && xcodebuild clean build test \
-project "$PROJECT" \
-scheme "$SCHEME" \
-sdk "$SDK" \
-destination "$DESTINATION" \
-configuration Debug \
-enableCodeCoverage YES \
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c;
env:
PROJECT: SwiftyImage.xcodeproj
SCHEME: SwiftyImage-Package
SDK: ${{ matrix.env.sdk }}
DESTINATION: ${{ matrix.env.destination }}
- name: Upload Code Coverage
run: |
bash <(curl -s https://codecov.io/bash) \
-J SwiftyImage \
-t d308ef2d-d20b-4423-bd44-b92c082f7683
|
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: macOS-latest
strategy:
matrix:
env:
- sdk: iphonesimulator12.2
destination: platform=iOS Simulator,name=iPhone XS,OS=12.2
- sdk: appletvsimulator12.2
destination: OS=12.2,name=Apple TV
steps:
- uses: actions/checkout@v1
- name: Generate Xcode Project
run: swift package generate-xcodeproj --enable-code-coverage
- name: Build and Test
run: |
set -o pipefail && xcodebuild clean build test \
-project "$PROJECT" \
-scheme "$SCHEME" \
-sdk "$SDK" \
-destination "$DESTINATION" \
-configuration Debug \
-enableCodeCoverage YES \
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c;
env:
PROJECT: SwiftyImage.xcodeproj
SCHEME: SwiftyImage-Package
SDK: ${{ matrix.env.sdk }}
DESTINATION: ${{ matrix.env.destination }}
- name: Upload Code Coverage
run: |
bash <(curl -s https://codecov.io/bash) \
-X xcodeplist \
-J SwiftyImage \
-t d308ef2d-d20b-4423-bd44-b92c082f7683
|
Add -X flag to codecov command
|
Add -X flag to codecov command
|
YAML
|
mit
|
devxoul/SwiftyImage,devxoul/SwiftyImage
|
b528efb3ede34cfdfec677ab2b58a97c4680b015
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- { ruby: 2.5 }
- { ruby: 2.6 }
- { ruby: 2.7 }
- { ruby: 3.0 }
- { ruby: jruby, allow-failure: true }
- { ruby: jruby-head, allow-failure: true }
- { ruby: head, allow-failure: true }
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
timeout-minutes: 10
run: bundle exec rake
|
name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
continue-on-error: ${{ fromJSON(matrix.experimental) }}
name: ${{ matrix.ruby }}
strategy:
matrix:
experimental: [ false ]
include:
- { ruby: 2.5 }
- { ruby: 2.6 }
- { ruby: 2.7 }
- { ruby: "3.0" }
- { ruby: jruby, experimental: true }
- { ruby: jruby-head, experimental: true }
- { ruby: head, experimental: true }
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
timeout-minutes: 10
run: bundle exec rake
|
Use experimental: true to allow failures
|
CI: Use experimental: true to allow failures
Example taken from https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idcontinue-on-error
|
YAML
|
mit
|
eileencodes/sprockets,rails/sprockets
|
655db6839d12451f38bef69f44c6b8d134abb728
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on:
push:
branches:
- '*'
pull_request:
schedule:
- cron: 0 14 * * 0
jobs:
ci:
name: PHP v${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.2', '7.3', '7.4']
steps:
- name: Set up PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}
coverage: xdebug
- name: Check PHP version
run: php -v
- name: Checkout
uses: actions/checkout@v1
- name: Make
run: make ci
- name: Upload Coverage Reports
if: success()
run: |
[[ -z "${{ secrets.CODECOV_TOKEN }}" ]] || bash <(curl -s https://codecov.io/bash) -t "${{ secrets.CODECOV_TOKEN }}" -B "${{ github.ref }}"
|
name: CI
on:
push:
branches:
- '*'
pull_request:
schedule:
- cron: 0 14 * * 0
jobs:
ci:
name: PHP v${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.3', '7.4', '8.0']
steps:
- name: Set up PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}
coverage: xdebug
- name: Check PHP version
run: php -v
- name: Checkout
uses: actions/checkout@v1
- name: Make
run: make ci
- name: Upload Coverage Reports
if: success()
run: |
[[ -z "${{ secrets.CODECOV_TOKEN }}" ]] || bash <(curl -s https://codecov.io/bash) -t "${{ secrets.CODECOV_TOKEN }}" -B "${{ github.ref }}"
|
Add PHP v8 to workflow configuration.
|
Add PHP v8 to workflow configuration.
|
YAML
|
mit
|
recoilphp/dev
|
9aa9cc0bd07871c6dec0ef02b25d91e2e8e92ed3
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
ruby: [ '2.6', '2.7', '3.0', '3.1' ]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: 2.1.4
bundler-cache: true
- name: Set up Appraisal
run: bundle exec appraisal update
- name: Test
env:
CI: "true"
run: bundle exec appraisal rspec
|
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
ruby: [ '2.6', '2.7', '3.0', '3.1' ]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Set up Appraisal
run: bundle exec appraisal update
- name: Test
env:
CI: "true"
run: bundle exec appraisal rspec
|
Remove bundler version from CI.
|
build: Remove bundler version from CI.
2.7 isn’t happy for some reason - perhaps this is why?
|
YAML
|
mit
|
flying-sphinx/flying-sphinx
|
39575a04ad006b534ffa4d36aa7aac9a516bdc98
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on:
push: {}
pull_request:
types: [opened, synchronize]
jobs:
build:
if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login != 'dylanahsmith'
runs-on: ubuntu-latest
strategy:
matrix:
entry:
- name: 'Minimum supported'
ruby: 2.4
gemfile: Gemfile.rails52
- name: "Latest released versions"
ruby: 3.0
gemfile: Gemfile
- name: "Rails master branch"
ruby: 3.0
gemfile: Gemfile.rails_head
name: ${{ matrix.entry.name }}
env:
BUNDLE_GEMFILE: ${{ matrix.entry.gemfile }}
steps:
- name: Install required packages
run: |
sudo apt-get update
sudo apt-get -y install libsqlite3-dev
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.entry.ruby }}
- name: Install bundler and gems
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rake
|
name: CI
on:
push: {}
pull_request:
types: [opened, synchronize]
jobs:
build:
if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login != 'dylanahsmith'
runs-on: ubuntu-latest
strategy:
matrix:
entry:
- name: 'Minimum supported'
ruby: 2.4
gemfile: Gemfile.rails52
- name: "Latest released versions"
ruby: 3.0
gemfile: Gemfile
- name: "Rails main branch"
ruby: 3.0
gemfile: Gemfile.rails_head
name: ${{ matrix.entry.name }}
env:
BUNDLE_GEMFILE: ${{ matrix.entry.gemfile }}
steps:
- name: Install required packages
run: |
sudo apt-get update
sudo apt-get -y install libsqlite3-dev
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.entry.ruby }}
- name: Install bundler and gems
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rake
|
Update Rails head branch name in CI workflow
|
Update Rails head branch name in CI workflow
|
YAML
|
mit
|
dylanahsmith/ar_transaction_changes
|
91f0afd29d08a802b3dcca3fbfa47e4817ec0b10
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Tests
on: [push, pull_request]
jobs:
run:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.3', '7.4']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
tools: composer, php-cs-fixer, phpunit
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer update --prefer-dist
- name: Run tests
run: vendor/bin/phpunit
- name: Upload coverage results to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: vendor/bin/php-coveralls --coverage_clover=build/logs/clover.xml -v
|
name: Tests
on: [push, pull_request]
jobs:
run:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.3', '7.4']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
tools: composer, php-cs-fixer, phpunit
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer update --prefer-dist
- name: Run tests
run: vendor/bin/phpunit
- name: Upload coverage results to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
USERNAME: ${{ secrets.USERNAME }}
PASSWORD: ${{ secrets.PASSWORD }}
run: vendor/bin/php-coveralls --coverage_clover=build/logs/clover.xml -v
|
Set username and password env vars for E2E tests
|
Set username and password env vars for E2E tests
|
YAML
|
mit
|
lildude/phpZenfolio
|
5b05a416ac04568cbdfad1dd5076598786d27596
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: ci
on:
push:
branches:
- master
pull_request:
jobs:
cabal:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ["8.6.5", "8.8.4", "8.10.4", "8.10.7", "9.2"]
cabal: ["3.6.2.0"]
os: [ubuntu-latest, macOS-latest]
name: build and test (cabal)
steps:
- uses: actions/checkout@v2
- name: Run Haskell
uses: haskell/actions/setup@v1
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: |
cabal build --enable-tests && cabal test
stack:
name: build and test (stack)
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
ghc-version: "8.10.7"
enable-stack: true
stack-version: "latest"
- run: |
stack build && stack test
|
name: ci
on:
push:
branches:
- master
pull_request:
jobs:
cabal:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ["8.6.5", "8.8.4", "8.10.7", "9.0.2", "9.2"]
cabal: ["3.6.2.0"]
os: [ubuntu-latest, macOS-latest]
name: build and test (cabal)
steps:
- uses: actions/checkout@v2
- name: Run Haskell
uses: haskell/actions/setup@v1
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: |
cabal build --enable-tests && cabal test
stack:
name: build and test (stack)
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
ghc-version: "9.0.2"
enable-stack: true
stack-version: "latest"
- run: |
stack build && stack test
|
Enable tests on 9.0.2, make it latest (stable)
|
Enable tests on 9.0.2, make it latest (stable)
|
YAML
|
bsd-3-clause
|
GetShopTV/swagger2
|
61bad005dc6051a44a61e1106c5f0fb2d1dffcf4
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: NPM Test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- run: node --version
- run: npm --version
- run: npm ci
- run: npm test
|
name: NPM Test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- run: node --version
- run: npm --version
- run: npm ci
- run: npm test
|
Change supported node version to 12 and 14
|
Change supported node version to 12 and 14
|
YAML
|
mit
|
yeoman/yeoman-test
|
7bfc4d32269bde98826fed6bd8f09ad1ef8c981b
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
---
name: Run tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- name: rspec
run: bundle exec rake
|
---
name: Run tests
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.5, 2.6, 2.7]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: rspec
run: bundle exec rake
|
Update github actions to run multiple rubies
|
Update github actions to run multiple rubies
|
YAML
|
mit
|
muffinista/chatterbot
|
a4019eb9cc9074bd69472bf4de78ec5a6c60a461
|
defaults.yaml
|
defaults.yaml
|
'NSGlobalDomain':
# General > Use dark menu bar and Dock
'AppleInterfaceStyle': 'Dark'
# Keyboard > Shortcuts > Full Keyboard Access: All controls
'AppleKeyboardUIMode': 3
# Keyboard > Keyboard > Delay Until Repeat: Short
'InitialKeyRepeat': 25
# Keyboard > Keyboard > Key Repeat: Fast
'KeyRepeat': 0
# General > Ask to keep changes when closing documents
'NSCloseAlwaysConfirmsChanges': true
'com.apple.Safari':
# Safari > General > Open "safe" files after downloading
'AutoOpenSafeDownloads': false
# Safari > Advanced > Smart Search Field: Show full website address
'ShowFullURLInSmartSearchField': true
# Safari > View > Show Status Bar
'ShowStatusBar': true
'com.apple.dock':
# Dock > Automatically hide and show the Dock
'autohide': true
'com.apple.finder':
# Finder > View > Show Path Bar
'ShowPathbar': true
# Finder > View > Show Status Bar
'ShowStatusBar': true
'com.apple.screensaver':
# Security & Privacy > General > Require password `askForPasswordDelay` seconds after sleep or screen saver begins
'askForPassword': 1
'askForPasswordDelay': 5
|
'NSGlobalDomain':
# General > Use dark menu bar and Dock
'AppleInterfaceStyle': 'Dark'
# Keyboard > Shortcuts > Full Keyboard Access: All controls
'AppleKeyboardUIMode': 3
# Keyboard > Keyboard > Delay Until Repeat: Short
'InitialKeyRepeat': 25
# Keyboard > Keyboard > Key Repeat: Fast
'KeyRepeat': 0
# General > Ask to keep changes when closing documents
'NSCloseAlwaysConfirmsChanges': true
# General > Close windows when quitting an app
'NSQuitAlwaysKeepsWindows': true
'com.apple.Safari':
# Safari > General > Open "safe" files after downloading
'AutoOpenSafeDownloads': false
# Safari > Advanced > Smart Search Field: Show full website address
'ShowFullURLInSmartSearchField': true
# Safari > View > Show Status Bar
'ShowStatusBar': true
'com.apple.dock':
# Dock > Automatically hide and show the Dock
'autohide': true
'com.apple.finder':
# Finder > View > Show Path Bar
'ShowPathbar': true
# Finder > View > Show Status Bar
'ShowStatusBar': true
'com.apple.screensaver':
# Security & Privacy > General > Require password `askForPasswordDelay` seconds after sleep or screen saver begins
'askForPassword': 1
'askForPasswordDelay': 5
|
Add default to reopen windows when apps are relaunched
|
Add default to reopen windows when apps are relaunched
|
YAML
|
mit
|
alykhank/dotfiles,alykhank/dotfiles
|
e1786c74ebd989d9793cb08589c91c24fd200b3d
|
.forestry/settings.yml
|
.forestry/settings.yml
|
---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: data/authors.yml
label: Authors
upload_dir: bgmf
public_path: ''
front_matter_path: ''
use_front_matter_path:
file_template: ":filename:"
build:
preview_command: hugo -E -F -D -b $DEPLOY_URL -d public
publish_command: hugo -d public
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.52
publish_env:
- HUGO_ENV=production
- HUGO_VERSION=0.52
preview_output_directory: public
output_directory: public
version: '0.52'
|
---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: data/authors.yml
label: Authors
upload_dir: ''
public_path: ''
front_matter_path: ''
use_front_matter_path:
file_template: ":filename:"
build:
preview_command: hugo -E -F -D -b $DEPLOY_URL -d public
publish_command: hugo -d public
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.52
publish_env:
- HUGO_ENV=production
- HUGO_VERSION=0.52
preview_output_directory: public
output_directory: public
version: '0.52'
|
Update from Forestry.io - Updated Forestry configuration
|
Update from Forestry.io - Updated Forestry configuration
|
YAML
|
mit
|
jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io
|
667626262b2a99647c1953cfa3b921d04fbf1c50
|
config/environments/feature_toggles.yml
|
config/environments/feature_toggles.yml
|
# Add feature toggles with the format:
# <feature_name>: off|dev|release
show_licensing_overview_success_rate: dev
|
# Add feature toggles with the format:
# <feature_name>: off|dev|release
show_licensing_overview_success_rate: release
|
Enable success rate on licensing overview.
|
Enable success rate on licensing overview.
|
YAML
|
mit
|
gds-attic/limelight,gds-attic/limelight,gds-attic/limelight
|
028862f5955bef0e48ba0766a9dff037b4b0d52d
|
pubspec.yaml
|
pubspec.yaml
|
name: http_parser
version: 0.0.2+4
author: "Dart Team <[email protected]>"
homepage: http://www.dartlang.org
description: >
A platform-independent package for parsing and serializing HTTP formats.
dependencies:
crypto: ">=0.9.0 <0.10.0"
collection: ">=0.9.1 <0.10.0"
string_scanner: ">=0.0.0 <0.2.0"
dev_dependencies:
unittest: ">=0.10.0 <0.11.0"
environment:
sdk: ">=1.2.0 <2.0.0"
|
name: http_parser
version: 0.0.2+5
author: "Dart Team <[email protected]>"
homepage: http://www.dartlang.org
description: >
A platform-independent package for parsing and serializing HTTP formats.
dependencies:
crypto: ">=0.9.0 <0.10.0"
collection: ">=0.9.1 <2.0.0"
string_scanner: ">=0.0.0 <0.2.0"
dev_dependencies:
unittest: ">=0.10.0 <0.11.0"
environment:
sdk: ">=1.2.0 <2.0.0"
|
Update dart:collection to version 1.0.0
|
Update dart:collection to version 1.0.0
[email protected]
Review URL: https://codereview.chromium.org//463333004
git-svn-id: da6bca2648e04c17f8345558aaf5a164717834e9@39484 260f80e4-7a28-3924-810f-c04153c831b5
|
YAML
|
bsd-3-clause
|
dart-lang/http_parser
|
e9086957a25b53132bb5e94a2a86cbef3ad2be1c
|
metadata/com.github.gotify.yml
|
metadata/com.github.gotify.yml
|
Categories:
- Internet
License: MIT
SourceCode: https://github.com/gotify/android
IssueTracker: https://github.com/gotify/android/issues
AutoName: Gotify
Description: |-
Gotify is a service for sending and receiving push notifications.
This app subscribes to [https://github.com/gotify/server gotify/server] and creates push notifications for incoming messages.
Note: A self-hosted [https://github.com/gotify/server gotify/server] is required for this app to work.
RepoType: git
Repo: https://github.com/gotify/android
Builds:
- versionName: 2.0.1
versionCode: 4
commit: v2.0.1
subdir: app
gradle:
- yes
- versionName: 2.0.2
versionCode: 5
commit: v2.0.2
subdir: app
gradle:
- yes
- versionName: 2.0.3
versionCode: 6
commit: v2.0.3
subdir: app
gradle:
- yes
- versionName: 2.0.4
versionCode: 7
commit: v2.0.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+(\.\d+)?
CurrentVersion: 2.0.4
CurrentVersionCode: 7
|
Categories:
- Internet
License: MIT
SourceCode: https://github.com/gotify/android
IssueTracker: https://github.com/gotify/android/issues
AutoName: Gotify
Description: |-
Gotify is a service for sending and receiving push notifications.
This app subscribes to [https://github.com/gotify/server gotify/server] and creates push notifications for incoming messages.
Note: A self-hosted [https://github.com/gotify/server gotify/server] is required for this app to work.
RepoType: git
Repo: https://github.com/gotify/android
Builds:
- versionName: 2.0.1
versionCode: 4
commit: v2.0.1
subdir: app
gradle:
- yes
- versionName: 2.0.2
versionCode: 5
commit: v2.0.2
subdir: app
gradle:
- yes
- versionName: 2.0.3
versionCode: 6
commit: v2.0.3
subdir: app
gradle:
- yes
- versionName: 2.0.4
versionCode: 7
commit: v2.0.4
subdir: app
gradle:
- yes
- versionName: 2.0.5
versionCode: 8
commit: v2.0.5
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+(\.\d+)?
CurrentVersion: 2.0.5
CurrentVersionCode: 8
|
Update Gotify to 2.0.5 (8)
|
Update Gotify to 2.0.5 (8)
|
YAML
|
agpl-3.0
|
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
|
82f2645c9c2691c4332c93a21963fa9ec2e6f41b
|
.forestry/settings.yml
|
.forestry/settings.yml
|
---
new_page_extension: md
auto_deploy: false
admin_path: redac
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200
use_front_matter_path: true
file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:'
build:
preview_command: hugo -E -F -D -b $DEPLOY_URL -d public
publish_command: hugo -d public
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.55.6
publish_env:
- HUGO_ENV=production
- HUGO_VERSION=0.55.6
preview_output_directory: public
output_directory: public
instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk
-d public
preview_docker_image: forestryio/hugo:latest
mount_path: "/srv"
version: 0.55.6
|
---
new_page_extension: md
auto_deploy: false
admin_path: redac
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200
use_front_matter_path: true
file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:'
instant_preview: true
build:
preview_command: hugo -E -F -D -b $DEPLOY_URL -d public
publish_command: hugo -d public
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.55.6
publish_env:
- HUGO_ENV=production
- HUGO_VERSION=0.55.6
preview_output_directory: public
output_directory: public
instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk
-d public
preview_docker_image: forestryio/hugo:latest
mount_path: "/srv"
version: 0.55.6
|
Update from Forestry.io - Updated Forestry configuration
|
Update from Forestry.io - Updated Forestry configuration
|
YAML
|
mit
|
jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io
|
ff38000418b5422492e7bd63f19c478cd5c0a710
|
.forestry/settings.yml
|
.forestry/settings.yml
|
---
new_page_extension: md
auto_deploy: true
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _deep-speeding-blog
label: Deep speeding blog
create: all
match: "**/*"
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
|
---
new_page_extension: md
auto_deploy: true
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _deep-speeling-blog
label: Deep speeling blog
create: all
match: "**/*"
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
|
Update from Forestry.io - Updated Forestry configuration
|
Update from Forestry.io - Updated Forestry configuration
|
YAML
|
mit
|
mdcramer/Deep-Speeling-Blog,mdcramer/Deep-Speeling-Blog,mdcramer/Deep-Speeling-Blog
|
95a9e5357300832d3bd1ecd46ee8aa16b56807d6
|
metadata/de.tadris.fitness.yml
|
metadata/de.tadris.fitness.yml
|
Categories:
- Sports & Health
License: GPL-3.0-or-later
WebSite: https://codeberg.org/jannis/FitoTrack
SourceCode: https://codeberg.org/jannis/FitoTrack
IssueTracker: https://codeberg.org/jannis/FitoTrack/issues
Changelog: https://codeberg.org/jannis/FitoTrack/src/branch/master/CHANGELOG.md
Bitcoin: 3BSbGRbJaiSxVg3D6nVRK5C1SZEezhjtK5
AutoName: FitoTrack
RepoType: git
Repo: https://codeberg.org/jannis/FitoTrack.git
Builds:
- versionName: 1.0.2
versionCode: 102
commit: v1.0.2
subdir: app
gradle:
- yes
- versionName: '2.1'
versionCode: 210
commit: v2.1
subdir: app
gradle:
- yes
- versionName: '3.0'
versionCode: 300
commit: v3.0
subdir: app
gradle:
- yes
- versionName: '4.0'
versionCode: 401
commit: v4.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '4.0'
CurrentVersionCode: 401
|
Categories:
- Sports & Health
License: GPL-3.0-or-later
WebSite: https://codeberg.org/jannis/FitoTrack
SourceCode: https://codeberg.org/jannis/FitoTrack
IssueTracker: https://codeberg.org/jannis/FitoTrack/issues
Changelog: https://codeberg.org/jannis/FitoTrack/src/branch/master/CHANGELOG.md
Bitcoin: 3BSbGRbJaiSxVg3D6nVRK5C1SZEezhjtK5
AutoName: FitoTrack
RepoType: git
Repo: https://codeberg.org/jannis/FitoTrack.git
Builds:
- versionName: 1.0.2
versionCode: 102
commit: v1.0.2
subdir: app
gradle:
- yes
- versionName: '2.1'
versionCode: 210
commit: v2.1
subdir: app
gradle:
- yes
- versionName: '3.0'
versionCode: 300
commit: v3.0
subdir: app
gradle:
- yes
- versionName: '4.0'
versionCode: 401
commit: v4.0
subdir: app
gradle:
- yes
- versionName: '4.1'
versionCode: 410
commit: v4.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '4.1'
CurrentVersionCode: 410
|
Update FitoTrack to 4.1 (410)
|
Update FitoTrack to 4.1 (410)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
dc499760711e4953fc953c8f58570a652bd564fb
|
.github/workflows/failure-cases.yml
|
.github/workflows/failure-cases.yml
|
name: Execute failure cases
on:
workflow_dispatch:
env:
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
jobs:
wrapper-missing:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Test wrapper missing
uses: ./
continue-on-error: true
with:
build-root-directory: .github/workflow-samples/no-wrapper
arguments: help
bad-configuration:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Test bad config value
uses: ./
continue-on-error: true
with:
build-root-directory: .github/workflow-samples/no-wrapper
arguments: help
cache-disabled: yes
|
name: Execute failure cases
on:
workflow_dispatch:
env:
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
jobs:
failing-build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Test build failure
uses: ./
continue-on-error: true
with:
build-root-directory: .github/workflow-samples/groovy-dsl
arguments: not-a-valid-task
wrapper-missing:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Test wrapper missing
uses: ./
continue-on-error: true
with:
build-root-directory: .github/workflow-samples/no-wrapper
arguments: help
bad-configuration:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Test bad config value
uses: ./
continue-on-error: true
with:
build-root-directory: .github/workflow-samples/no-wrapper
arguments: help
cache-disabled: yes
|
Add manual test to demonstrate failing build
|
Add manual test to demonstrate failing build
|
YAML
|
mit
|
eskatos/gradle-command-action,eskatos/gradle-command-action,eskatos/gradle-command-action
|
afcecd47592435bc36ef6c3b91ad06d852ba4488
|
.github/workflows/test_with_tox.yml
|
.github/workflows/test_with_tox.yml
|
name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install tox
- run: tox -e py
- if: matrix.python == 3.9
run: TOXENV=codespell,flake8,manifest,docs tox
|
name: Test DBUtils using tox
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install tox
- run: tox -e py
- if: matrix.python == 3.9
run: TOXENV=codespell,flake8,manifest,docs tox
|
Change name of GitHub workflow
|
Change name of GitHub workflow
|
YAML
|
mit
|
Cito/DBUtils,Cito/DBUtils
|
00e284a72125c22dcc1508ac157d32a389a461de
|
.github/workflows/docs.yml
|
.github/workflows/docs.yml
|
name: docs
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test-ubuntu:
name: "docs on ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt install -y pandoc
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-jax.txt
pip install -r requirements-test.txt
pip install -r docs/requirements.txt
pip install .
- name: Test docs
run: |
cd docs
make coverage_check
make doctest
make html
|
name: docs
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test-ubuntu:
name: "docs on ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt install -y pandoc
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-jax.txt
pip install -r requirements-test.txt
pip install -r docs/requirements.txt
pip install .
- name: Test coverage
run: |
cd docs
make coverage_check
- name: Test doctests
run: |
cd docs
make doctest
- name: Test docs to HTML
run: |
cd docs
make html
|
Break down doc tests into sections.
|
Break down doc tests into sections.
We can now see clearly that the slowest part of the docs testing is running our
doctests.
PiperOrigin-RevId: 377301313
|
YAML
|
apache-2.0
|
deepmind/dm-haiku,deepmind/dm-haiku
|
6360120a8ac1f8e660a102ca169a2eebb72daf29
|
.github/workflows/main.yml
|
.github/workflows/main.yml
|
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
php: ['5.6', '7.3', '7.4']
runs-on: ubuntu-latest
steps:
- name: Set up PHP environment
uses: shivammathur/setup-php@v2
with:
php-version: '${{ matrix.php }}'
tools: composer
extensions: 'xdebug'
- uses: actions/checkout@v2
- name: Install Composer dependencies & cache dependencies
uses: "ramsey/composer-install@v2"
with:
composer-options: "--prefer-dist"
custom-cache-key: "{{ runner.os }}-composer-${{ matrix.php }}"
env:
COMPOSER_ROOT_VERSION: dev-${{ github.event.repository.default_branch }}
- name: Validate composer.json and composer.lock
#run: composer validate --strict # Currently we’re installing mf2/tests from a commit ref.
run: composer validate
- name: Run Test Suite
run: XDEBUG_MODE=coverage ./vendor/bin/phpunit tests --coverage-text
- name: Run Code Sniffer
run: ./vendor/bin/phpcs
#- name: Run Static Analysis
# run: ./vendor/bin/psalm
|
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
php: ['5.6', '7.3', '7.4', '8.0', '8.1']
runs-on: ubuntu-latest
steps:
- name: Set up PHP environment
uses: shivammathur/setup-php@v2
with:
php-version: '${{ matrix.php }}'
tools: composer
extensions: 'xdebug'
- uses: actions/checkout@v2
- name: Install Composer dependencies & cache dependencies
uses: "ramsey/composer-install@v2"
with:
composer-options: "--prefer-dist"
custom-cache-key: "{{ runner.os }}-composer-${{ matrix.php }}"
env:
COMPOSER_ROOT_VERSION: dev-${{ github.event.repository.default_branch }}
- name: Validate composer.json and composer.lock
#run: composer validate --strict # Currently we’re installing mf2/tests from a commit ref.
run: composer validate
- name: Run Test Suite
run: XDEBUG_MODE=coverage ./vendor/bin/phpunit tests --coverage-text
- name: Run Code Sniffer
run: ./vendor/bin/phpcs
#- name: Run Static Analysis
# run: ./vendor/bin/psalm
|
Add 8 and 8.1 to CI branches
|
Add 8 and 8.1 to CI branches
|
YAML
|
cc0-1.0
|
gRegorLove/php-mf2,gRegorLove/php-mf2
|
eb1dd7e473ae25044d5642457424eca82b214aee
|
.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/[email protected]
- name: Build and run
run: |
cmake -G "Visual Studio 16 2019" -D BUILD_TESTS=ON ./
ls
#MSBuild.exe test/.sln
|
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/[email protected]
- name: Build and run
run: |
cmake -G "Visual Studio 16 2019" -D BUILD_TESTS=ON ./
MSBuild.exe etl.sln
|
Add VS2019 configuration to Github CI
|
Add VS2019 configuration to Github CI
|
YAML
|
mit
|
ETLCPP/etl,ETLCPP/etl,ETLCPP/etl,ETLCPP/etl
|
52a3bf9fd5127ce22c3c6b4b9951d062d8407880
|
.github/workflows/main.yml
|
.github/workflows/main.yml
|
name: Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v1
- name: Installing dependencies
run: |
sudo apt update && sudo apt install make -y
git clone https://github.com/estesp/manifest-tool && cd manifest-tool && git checkout v0.9.0 && sudo make && sudo make install && cd .. && rm -Rf manifest-tool
docker run --rm --privileged multiarch/qemu-user-static:register
sudo apt install -y qemu qemu-user-static qemu-user binfmt-support
echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_LOGIN }}" --password-stdin
- name: Build image
run: make build-docker
- name: Publish image
run: make publish-docker latest
|
name: Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Installing dependencies
run: |
sudo apt update && sudo apt install make -y
git clone https://github.com/estesp/manifest-tool && cd manifest-tool && git checkout v0.9.0 && sudo make && sudo make install && cd .. && rm -Rf manifest-tool
docker run --rm --privileged multiarch/qemu-user-static:register
sudo apt install -y qemu qemu-user-static qemu-user binfmt-support
echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_LOGIN }}" --password-stdin
- name: Build image
run: make build-docker
- name: Publish image
run: make publish-docker latest
|
Update actions to use latest ubuntu (deprecated older)
|
Update actions to use latest ubuntu (deprecated older)
|
YAML
|
mit
|
femtopixel/docker-google-closure-compiler-api,femtopixel/docker-google-closure-compiler-api
|
800d83bf04b7036cde35605966ed824777da9b46
|
.github/workflows/ruby.yml
|
.github/workflows/ruby.yml
|
name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
|
name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build and test with RSpec
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
|
Fix GitHub workflow step name
|
Fix GitHub workflow step name
|
YAML
|
mit
|
tomstuart/monads
|
ee606fe17c3f1d35ccacaa7ab8146e3720948c98
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Node CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm test
env:
CI: true
|
name: Node CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Yarn install, build, and test
run: |
yarn install
yarn build
yarn test
env:
CI: true
|
Use Yarn in GitHub Actions
|
Use Yarn in GitHub Actions
|
YAML
|
mit
|
jbhannah/jbhannah.net,jbhannah/jbhannah.net
|
d5ba5c9a6ca60372deeb80d10c8ffe2ab997a26c
|
roles/onos-load-apps/defaults/main.yml
|
roles/onos-load-apps/defaults/main.yml
|
---
# onos-load-apps/defaults/main.yml
onos_cord_vm_hostname: "onos-cord-1"
onos_web_user: "onos"
onos_web_pass: "rocks"
cord_apps:
- name: cord-config
onos_name: org.opencord.config
- name: vtn
onos_name: org.opencord.vtn
cord_apps_repo_url: "https://oss.sonatype.org/content/repositories/public"
cord_apps_version: "1.0-rc4"
|
---
# onos-load-apps/defaults/main.yml
onos_cord_vm_hostname: "onos-cord-1"
onos_web_user: "onos"
onos_web_pass: "rocks"
cord_apps:
- name: cord-config
onos_name: org.opencord.config
- name: vtn
onos_name: org.opencord.vtn
cord_apps_repo_url: "https://oss.sonatype.org/content/repositories/public"
cord_apps_version: "1.1-SNAPSHOT"
|
Use 1.1-SNAPSHOT version for CORD apps
|
Use 1.1-SNAPSHOT version for CORD apps
Change-Id: I737b9d1d83af8ab9840224710a5768b66023e80b
|
YAML
|
apache-2.0
|
opencord/platform-install,opencord/platform-install
|
e1561d68510aa921e0bfb0365c451e248e1cf9d5
|
Scripts/script-ExtractDomainFromUrlFormat.yml
|
Scripts/script-ExtractDomainFromUrlFormat.yml
|
commonfields:
id: ExtractDomainFromUrlAndEmail
version: -1
name: ExtractDomainFromUrlAndEmail
script: |-
from tld import get_tld
from validate_email import validate_email
import re
inp = demisto.args()['input']
is_url = None
domain_from_mail = None
is_email = validate_email(inp)
if is_email:
# Take the entire part after the @ of the email
domain_from_mail = inp.split('@')[1]
else:
# Test if URL, else proceed as domain
is_url = domain = get_tld(inp, fail_silently=True)
# Extract domain itself from a potential subdomain
if domain_from_mail or not is_url:
full_domain = 'https://'
full_domain += domain_from_mail if domain_from_mail else inp
# get_tld fails to parse subdomain since it is not URL, over-ride error by injecting protocol.
domain = get_tld(full_domain, fail_silently=True)
# convert None to empty string if needed
domain = '' if not domain else domain
demisto.results(domain)
type: python
tags:
- indicator-format
comment: Extract Domain from a URL or Email
enabled: true
args:
- name: input
required: true
default: true
description: The URL or Email to process
scripttarget: 0
runonce: false
dockerimage: demisto/tld
runas: DBotWeakRole
tests:
- ExtractDomainFromEmailTest
|
commonfields:
id: ExtractDomainFromUrlAndEmail
version: -1
name: ExtractDomainFromUrlAndEmail
script: |-
from tld import get_tld
from validate_email import validate_email
import re
def extract_domain(the_input):
is_email = validate_email(the_input)
if is_email:
domain = re.search('@[\w.]+', the_input)
if len(domain.group()) > 0:
return(domain.group()[1:])
else:
domain = get_tld(the_input, fail_silently=True)
if not domain:
the_input_with_http = 'https://' + the_input
domain = get_tld(the_input_with_http, fail_silently=True)
if domain:
return(domain)
else:
return('')
else:
return(domain)
domains = []
the_input = demisto.args().get('input')
if isinstance(the_input, str):
the_input = argToList(the_input)
# Otherwise assumes it's an array
for item in the_input:
domains.append(extract_domain(item))
demisto.results(domains)
type: python
tags:
- indicator-format
comment: Extract Domain from a URL or Email
enabled: true
args:
- name: input
required: true
default: true
description: The URL(s) or Email(s) to process
scripttarget: 0
runonce: false
dockerimage: demisto/tld
runas: DBotWeakRole
releaseNotes: Update script to accept array input
tests:
- ExtractDomainFromEmailTest
|
Update ExtractDomainFromUrlAndEmail script to accept array input
|
Update ExtractDomainFromUrlAndEmail script to accept array input
|
YAML
|
mit
|
VirusTotal/content,VirusTotal/content,demisto/content,VirusTotal/content,demisto/content,demisto/content,VirusTotal/content,demisto/content
|
9c609a773dbc0fddb822ff13abb8e1b8eb3b0d83
|
.forestry/front_matter/templates/billet.yml
|
.forestry/front_matter/templates/billet.yml
|
---
label: Billet
hide_body: false
display_field: title
fields:
- type: text
name: title
label: Title
config:
required: true
- type: datetime
name: date
label: Date
config:
date_format: DD/MM/YYYY
required: true
default: now
- type: list
name: tags
label: Tags
- type: file
name: image
label: Image
- type: text
name: typora-root-url
label: typora-root-url
hidden: true
pages:
- content/blog/test.md
|
---
label: Billet
hide_body: false
display_field: title
fields:
- type: text
name: title
label: Title
config:
required: true
- type: datetime
name: date
label: Date
config:
date_format: DD/MM/YYYY
required: true
default: now
- type: list
name: tags
label: Tags
- type: file
name: image
label: Image
- name: draft
type: boolean
label: Draft
default: true
- type: text
name: typora-root-url
label: typora-root-url
hidden: true
pages:
- content/blog/test.md
|
Update from Forestry.io - Updated Forestry configuration
|
Update from Forestry.io - Updated Forestry configuration
|
YAML
|
mit
|
Narno/arnaudligny.fr,Narno/arnaudligny.fr,Narno/arnaudligny.fr
|
4ea5979efc411936b06db3468c940d9e01665e39
|
.forestry/front_matter/templates/billet.yml
|
.forestry/front_matter/templates/billet.yml
|
---
label: Billet
hide_body: false
fields:
- type: text
name: title
label: title
- type: datetime
name: date
label: date
- type: list
name: tags
label: tags
- type: file
name: image
label: image
- type: text
name: typora-root-url
label: typora-root-url
|
---
label: Billet
hide_body: false
fields:
- type: text
name: title
label: Title
config:
required: true
- type: datetime
name: date
label: Date
config:
date_format: DD/MM/YYYY
required: true
default: now
- type: list
name: tags
label: Tags
- type: file
name: image
label: Image
- type: text
name: typora-root-url
label: typora-root-url
hidden: true
|
Update from Forestry.io - Updated Forestry configuration
|
Update from Forestry.io - Updated Forestry configuration
|
YAML
|
mit
|
Narno/arnaudligny.fr,Narno/arnaudligny.fr,Narno/arnaudligny.fr
|
bbb108f040f1af4c29756f9bcc45c83964ffc778
|
www/_config.yml
|
www/_config.yml
|
# Site settings
title: fun design
header-img: img/home-bg.jpg
email: [email protected]
description: "Write your site description here. It will be used as your sites meta description as well!"
baseurl: ""
url: "http://myltsev.name"
twitter_username: Alex_Myltsev
github_username: alexander-myltsev
facebook_username: alexander.myltsev
disqus_shortname: fun-design
google_tracking_id: UA-63953015-1
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 5
exclude: ["less", "node_modules", "Gruntfile.js", "package.json", "README.md", "Gemfile", "Gemfile.lock"]
kramdown:
input: GFM
syntax_highlighter: rouge
|
# Site settings
title: y-code
header-img: img/home-bg.jpg
email: [email protected]
description: "Blog about things I am mostly interested in code: functional programming, parsing grammars, compilers, etc."
baseurl: ""
url: "http://myltsev.name"
twitter_username: Alex_Myltsev
github_username: alexander-myltsev
facebook_username: alexander.myltsev
disqus_shortname: fun-design
google_tracking_id: UA-63953015-1
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 5
exclude: ["less", "node_modules", "Gruntfile.js", "package.json", "README.md", "Gemfile", "Gemfile.lock"]
kramdown:
input: GFM
syntax_highlighter: rouge
|
Update blog title and description
|
Update blog title and description
|
YAML
|
apache-2.0
|
alexander-myltsev/alexander-myltsev-blog,alexander-myltsev/alexander-myltsev-blog,alexander-myltsev/alexander-myltsev-blog,alexander-myltsev/alexander-myltsev-blog
|
5cdf157600ee68ef08ebf7c6c080b27a67d417ec
|
docs/environment.yml
|
docs/environment.yml
|
name: _anypytools-docs
channels:
- conda-forge
- defaults
dependencies:
- sphinx<4
- cloud_sptheme
- nbsphinx
- IPython
- numpy
- scipy
- tqdm
- h5py
- pytest
- myst-parser
- ipywidgets
|
name: _anypytools-docs
channels:
- conda-forge
- defaults
dependencies:
- python=3.9
- sphinx<4
- cloud_sptheme
- nbsphinx
- IPython
- numpy
- scipy
- tqdm
- h5py
- pytest
- myst-parser
- ipywidgets
|
Build docs on python 3.9
|
Build docs on python 3.9
|
YAML
|
mit
|
AnyBody-Research-Group/AnyPyTools
|
c650ae3757c6dba6dd9156c31a11996f249a35d3
|
docker-compose.yml
|
docker-compose.yml
|
mongo:
image: mongo:2.6
redis:
image: redis:2.8
www:
build: .
ports:
- "8080"
links:
- mongo
- redis
volumes:
- .:/usr/src/app
environment:
- APP_PORT=8080
- NODE_ENV=development
- NPM_CONFIG_LOGLEVEL=info
command: npm run-script watch
|
mongo:
image: mongo:2.6
command: mongod --smallfiles
redis:
image: redis:2.8
www:
build: .
ports:
- "8080"
links:
- mongo
- redis
volumes:
- .:/usr/src/app
environment:
- APP_PORT=8080
- NODE_ENV=development
- NPM_CONFIG_LOGLEVEL=info
command: npm run-script watch
|
Use small files for local MongoDB instance
|
Use small files for local MongoDB instance
|
YAML
|
mit
|
Turbasen/Turbasen,Turistforeningen/Turbasen
|
f8f9da03333ca91734a7c45eb1875eb98011461e
|
GitReleaseManager.yaml
|
GitReleaseManager.yaml
|
issue-labels-include:
- Breaking change
- Feature
- Bug
- Improvement
- Documentation
issue-labels-exclude:
- Build
issue-labels-alias:
- name: Documentation
header: Documentation
plural: Documentation
|
issue-labels-include:
- Breaking change
- Feature
- Bug
- Improvement
- Documentation
issue-labels-exclude:
- Build
issue-labels-alias:
- name: Documentation
header: Documentation
plural: Documentation
|
Fix Git Release Manager configuration
|
Fix Git Release Manager configuration
|
YAML
|
mit
|
Philo/cake-npm,Philo/cake-npm
|
1883817481f655a1b8fed54c4bd0b3c20acd7a29
|
build.yaml
|
build.yaml
|
repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
jsinterop_base: com.google.jsinterop:base:jar:1.0.0-RC1
elemental2_core: com.google.elemental2:elemental2-core:jar:1.0.0-RC1
elemental2_dom: com.google.elemental2:elemental2-dom:jar:1.0.0-RC1
elemental2_promise: com.google.elemental2:elemental2-promise:jar:1.0.0-RC1
javax_annotation: org.realityforge.javax.annotation:javax.annotation:jar:1.0.0
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
# Mocking library used in tests
mockito: org.mockito:mockito-all:jar:1.9.5
javaee: javax:javaee-api:jar:7.0
|
repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
jsinterop_base: com.google.jsinterop:base:jar:1.0.0-RC1
elemental2_core: org.realityforge.com.google.elemental2:elemental2-core:jar:1.0.0-b14-2f97dbe
elemental2_dom: org.realityforge.com.google.elemental2:elemental2-dom:jar:1.0.0-b14-2f97dbe
elemental2_promise: org.realityforge.com.google.elemental2:elemental2-promise:jar:1.0.0-b14-2f97dbe
javax_annotation: org.realityforge.javax.annotation:javax.annotation:jar:1.0.0
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
# Mocking library used in tests
mockito: org.mockito:mockito-all:jar:1.9.5
javaee: javax:javaee-api:jar:7.0
|
Update the com.google.elemental2 dependency coordinates.
|
Update the com.google.elemental2 dependency coordinates.
|
YAML
|
apache-2.0
|
realityforge/gwt-webpoller,realityforge/gwt-webpoller
|
2a4922a314f05bb4ccb5f3c11de96c888919a3d8
|
src/app_charts/ros-master/robot/ros-master.yaml
|
src/app_charts/ros-master/robot/ros-master.yaml
|
# This defines a service in the robot cluster, available at:
# ros-master-<robot name>.app-ros-master.svc.cluster.local
# The user can configure what it points to by setting `values.ros_master_host`
# in the AppRollout, allowing a single-point-of-configuration for the ROS
# master. Note that this can't specify the port, so deployments should set:
# ROS_MASTER_URI=http://ros-master.app-ros-master.svc.cluster.local:11311
apiVersion: v1
kind: Service
metadata:
name: ros-master
spec:
type: ExternalName
externalName: {{ tpl (required "missing required value ros_master_host" .Values.ros_master_host) . }}
|
# This defines a service in the robot cluster, available at:
# ros-master-<robot name>.app-ros-master.svc.cluster.local
# The user can configure what it points to by setting `values.ros_master_host`
# in the AppRollout, allowing a single-point-of-configuration for the ROS
# master. Note that this can't specify the port, so deployments should set:
# ROS_MASTER_URI=http://ros-master.app-ros-master.svc.cluster.local:11311
{{ $ipv4Pattern := `(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}` }}
{{ $host := tpl (required "missing required value ros_master_host" .Values.ros_master_host) . }}
{{ if regexMatch $ipv4Pattern $host }}
# Host is an IPv4 address, so use a headless Service.
apiVersion: v1
kind: Service
metadata:
name: ros-master
spec:
type: ClusterIP
ports:
- name: ros-master-api
port: 11311
---
apiVersion: v1
kind: Endpoints
metadata:
name: ros-master
subsets:
- addresses:
- ip: {{ $host }}
ports:
- name: ros-master-api
port: 11311
{{ else }}
# Host is a DNS name, so use an ExternalName Service.
apiVersion: v1
kind: Service
metadata:
name: ros-master
spec:
type: ExternalName
externalName: {{ $host }}
{{ end }}
|
Use headless service for ROS master on robot
|
Use headless service for ROS master on robot
I36b764d70 introduced the ros-master app, which aims to provide a DNS
name for the ROS master that works for both simulated and non-simulated
robots. However, this used an ExternalName service, which is inadequate
for non-simulated robots, as it can't use an IPv4 address for the
backend.
The k8s docs[1] recommend using a "headless service" for this case,
which was the approach used in I36b764d70. It is possible to make the
ros-master chart use a headless service or ExternalName service as
appropriate, albeit with some rather complicated templating.
Alternatives considered: rollback the ros-master app and use Helm values
to specify ROS_MASTER_URI for every app that uses ROS. If we have any
further trouble with the ros-master app, we should give up on it.
[1]: https://kubernetes.io/docs/concepts/services-networking/service/#externalname
Change-Id: I2498fce111be5cf3053d1ea7d3839e7a1028abdb
GitOrigin-RevId: 61844862f0ca0bf848977eb44c218138b6bef3a6
|
YAML
|
apache-2.0
|
googlecloudrobotics/core,googlecloudrobotics/core,googlecloudrobotics/core
|
c6ddc5a37a2e63dfca74481732bce40f5fe63f61
|
.github/workflows/update-assets-manifest.yml
|
.github/workflows/update-assets-manifest.yml
|
name: Update assets-manifest
on:
pull_request_target:
branches:
- "dependabot/npm_and_yarn/**"
workflow_dispatch:
jobs:
build:
name: Update assets-manifest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- name: Cache npm dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install node and npm
run: ./mvnw --batch-mode frontend:install-node-and-npm
- name: Install npm dependencies and build
run: |
npm ci
npm run build
- name: Assets-Manifest commit
run: |
git config --local user.name "Tobias Schneider[bot]"
git config --local user.email [email protected]
git diff --quiet --name-only src/main/webapp/WEB-INF/assets-manifest.json || (git add src/main/webapp/WEB-INF/assets-manifest.json; git commit -m "[dependabot skip] Adapt assets-manifest")
- name: Assets-Manifest push
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.AM_PAT }}
branch: ${{ github.ref }}
|
name: Update assets-manifest
on:
push:
branches:
- "dependabot/npm_and_yarn/**"
workflow_dispatch:
jobs:
build:
name: Update assets-manifest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- name: Cache npm dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install node and npm
run: ./mvnw --batch-mode frontend:install-node-and-npm
- name: Install npm dependencies and build
run: |
npm ci
npm run build
- name: Assets-Manifest commit
run: |
git config --local user.name "Tobias Schneider[bot]"
git config --local user.email [email protected]
git diff --quiet --name-only src/main/webapp/WEB-INF/assets-manifest.json || (git add src/main/webapp/WEB-INF/assets-manifest.json; git commit -m "[dependabot skip] Adapt assets-manifest")
- name: Assets-Manifest push
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
|
Revert "Try to fix update assets manifest"
|
Revert "Try to fix update assets manifest"
This reverts commit 4f39318c66d4dbebe240d334ab0b0424ec6823d3.
|
YAML
|
apache-2.0
|
synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung
|
2e4c5f53c55846be07048a39d82caf321dc54e01
|
.codeclimate.yml
|
.codeclimate.yml
|
engines:
eslint:
enabled: true
config: .eslintrc
duplication:
enabled: false
config:
languages:
- javascript
fixme:
enabled: true
ratings:
paths:
- "**.js"
exclude_paths:
- data/*
- assets/*
|
engines:
eslint:
enabled: true
config: .eslintrc
duplication:
enabled: false
config:
languages:
- javascript
fixme:
enabled: true
checks:
return-statements:
enabled: false
method-complexity:
enabled: false
method-lines:
enabled: false
file-lines:
enabled: false
similar-code:
enabled: false
ratings:
paths:
- "**.js"
exclude_paths:
- data/*
- assets/*
|
Disable some bs Code Climate checks
|
Disable some bs Code Climate checks
|
YAML
|
unknown
|
owo-dev-team/owo-whats-this,ClarityMoe/Clara,awau/owo-whats-this,awau/Clara,sr229/owo-whats-this
|
3e12239b768be57ea450f3326b77d290b229f698
|
circle.yml
|
circle.yml
|
machine:
environment:
PATH: ${HOME}/extras/bin:${HOME}/extras/otp/18.3/bin:${PATH}
dependencies:
cache_directories:
- ~/extras
- ~/.dialyzer_core*
- ~/.rebar
- .rebar
- .cache
- ~/.cache
pre:
- sudo service mongodb stop
- sudo service rabbitmq-server stop
- sudo service couchdb stop
- sudo service zookeeper stop
- sudo service mysql stop
- sudo service postgresql stop
- sudo service redis-server stop
- curl -O -L https://raw.githubusercontent.com/yrashk/kerl/master/kerl && chmod 755 kerl
- if [ ! -d ~/extras/otp/18.3 ]; then ./kerl build 18.3 18.3; ./kerl install 18.3 ~/extras/otp/18.3; fi:
timeout: 1800
override:
- make
test:
override:
- make check
- ./elvis rock
post:
- mkdir -p $CIRCLE_TEST_REPORTS/
- mv TEST-*.xml $CIRCLE_TEST_REPORTS
- cp -r _build/test/cover $CIRCLE_TEST_REPORTS
|
machine:
environment:
PATH: ${HOME}/extras/bin:${HOME}/extras/otp/19.0/bin:${PATH}
dependencies:
cache_directories:
- ~/extras
- ~/.dialyzer_core*
- ~/.rebar
- .rebar
- .cache
- ~/.cache
pre:
- sudo service mongodb stop
- sudo service rabbitmq-server stop
- sudo service couchdb stop
- sudo service zookeeper stop
- sudo service mysql stop
- sudo service postgresql stop
- sudo service redis-server stop
- curl -O -L https://raw.githubusercontent.com/yrashk/kerl/master/kerl && chmod 755 kerl
- if [ ! -d ~/extras/otp/19.0 ]; then ./kerl build 19.0 19.0; ./kerl install 19.0 ~/extras/otp/19.0; fi:
timeout: 1800
override:
- make
test:
override:
- make check
- ./elvis rock
post:
- mkdir -p $CIRCLE_TEST_REPORTS/
- mv TEST-*.xml $CIRCLE_TEST_REPORTS
- cp -r _build/test/cover $CIRCLE_TEST_REPORTS
|
Upgrade Erlang for Circle CI to 19
|
Upgrade Erlang for Circle CI to 19
|
YAML
|
apache-2.0
|
GoelDeepak/minuteman,GoelDeepak/minuteman
|
3961c040b544a063834faf9da18a29b8ddb8b578
|
circle.yml
|
circle.yml
|
dependencies:
override:
- cabal update
- cabal sandbox init
- cabal install --upgrade-dependencies --constraint="template-haskell installed" --dependencies-only --enable-tests --reorder-goals --max-backjumps=-1
- cabal configure --enable-tests --flags=static
machine:
ghc:
version: 7.10.1
deployment:
staging:
branch: master
codedeploy:
yesod-hello:
deployment_group: yesod-hello-dg
|
dependencies:
override:
- cabal update
- cabal sandbox init
- cabal install --upgrade-dependencies --constraint="template-haskell installed" --dependencies-only --enable-tests --reorder-goals --max-backjumps=-1
- cabal configure --enable-tests --flags=static
machine:
ghc:
version: 7.10.2
deployment:
staging:
branch: master
codedeploy:
yesod-hello:
deployment_group: yesod-hello-dg
|
Upgrade GHC version in the hope of fixing CircleCI build
|
Upgrade GHC version in the hope of fixing CircleCI build
|
YAML
|
unlicense
|
philipmw/yesod-website
|
344cba565d1a49d1c0e642d55d1749cbee81f2cf
|
circle.yml
|
circle.yml
|
test:
override:
- npm test
deployment:
development:
branch: dev
heroku:
appname: dev-clearjs
production:
branch: master
heroku:
appname: clearjs
machine:
node:
version: iojs-v1.3.0
|
test:
override:
- npm test
deployment:
development:
branch: dev
heroku:
appname: dev-clearjs
production:
branch: master
heroku:
appname: clearjs
machine:
node:
version: iojs-v2.4.0
|
Check how much more time is needed for newer iojs.
|
Check how much more time is needed for newer iojs.
|
YAML
|
mit
|
clearjs/clearjs.com
|
969483e40c7f497a654a4572611cc66bffb70e40
|
circle.yml
|
circle.yml
|
dependencies:
override:
- printf '%s\n' color=false progress=false >.npmrc
- rm -rf node_modules
- case $CIRCLE_NODE_INDEX in 0) make setup ;; 1) nvm exec 4 make setup ;; 2) nvm install 6 && nvm exec 6 make setup ;; esac:
parallel: true
machine:
node:
version: 0.12.7
test:
override:
- make lint
- case $CIRCLE_NODE_INDEX in 0) make test ;; 1) nvm exec 4 make test ;; 2) nvm exec 6 make test ;; esac:
parallel: true
|
dependencies:
override:
- printf '%s\n' color=false progress=false >.npmrc
- rm -rf node_modules
- case $CIRCLE_NODE_INDEX in 0) make setup ;; 1) nvm install 6 && nvm exec 6 make setup ;; 2) nvm install 7 && nvm exec 7 make setup ;; esac:
parallel: true
machine:
node:
version: 4
test:
override:
- make lint
- case $CIRCLE_NODE_INDEX in 0) make test ;; 1) nvm exec 6 make test ;; 2) nvm exec 7 make test ;; esac:
parallel: true
|
Replace Node 0.12 With Node 7 And Remove Node 0.10
|
Replace Node 0.12 With Node 7 And Remove Node 0.10
|
YAML
|
mit
|
plaid/sanctuary-int,plaid/sanctuary-int
|
b73c244bca3df3a36ceae59276318624f139a520
|
circle.yml
|
circle.yml
|
machine:
python:
version: 3.4.1
test:
override:
- python3.4 manage_development.py test --settings=gamecraft.settings
|
machine:
python:
version: 3.4.1
test:
override:
- python3.4 manage_development.py test --settings=gamecraft.settings
deployment:
staging:
branch: master
heroku:
appname: gamecraft-it-eu
|
Add heroku deployment to master
|
Add heroku deployment to master
|
YAML
|
mit
|
micktwomey/gamecraft-mk-iii,micktwomey/gamecraft-mk-iii,micktwomey/gamecraft-mk-iii,micktwomey/gamecraft-mk-iii
|
0bd102566b46d742b54ba5fc63db83250122cf82
|
circle.yml
|
circle.yml
|
machine:
node:
version: "6.8.0"
timezone: Asia/Tokyo
dependencies:
override:
- yarn install
test:
override:
- npm run test
|
machine:
node:
version: "6.8.0"
timezone: Asia/Tokyo
dependencies:
override:
- yarn install
test:
override:
- npm run test
- npm run flow
- npm run lint
|
Make to run typecheking/linting in CI
|
Make to run typecheking/linting in CI
|
YAML
|
apache-2.0
|
kjirou/developers-defense,kjirou/developers-defense
|
9430ba8bd114aa033584b53092fc04e278ae2d60
|
circle.yml
|
circle.yml
|
machine:
node:
version: 4.0.0
test:
pre:
- nvm install lts && nvm use lts && npm test
- nvm use node && npm test
- snyk test
|
machine:
node:
version: 4.0.0
test:
pre:
- nvm use --lts && npm test
- nvm use node && npm test
- snyk test
|
Use LTS differently inside pre-test on Circle
|
Use LTS differently inside pre-test on Circle
|
YAML
|
mit
|
RafalWilinski/express-status-monitor,RafalWilinski/express-status-monitor
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.