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
|
---|---|---|---|---|---|---|---|---|---|
77f8811b187855c15e87fbc55137332a95ab6a92
|
circle.yml
|
circle.yml
|
machine:
environment:
XCODE_SCHEME: test
XCODE_WORKSPACE: test
XCODE_PROJECT: test
xcode:
version: 7.3
general:
branches:
only:
- as-circle-ci
dependencies:
pre:
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.3/install.sh | bash
- nvm install 4.4.7
- nvm use 4.4.7
override:
- script/bootstrap
test:
override:
- script/grunt ci
|
machine:
environment:
XCODE_SCHEME: test
XCODE_WORKSPACE: test
XCODE_PROJECT: test
xcode:
version: 7.3
general:
branches:
only:
- as-circle-ci
dependencies:
pre:
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.3/install.sh | bash
- nvm install 4.4.7
- nvm use 4.4.7
- npm install -g npm
override:
- script/bootstrap
test:
override:
- script/grunt ci
|
Upgrade npm before running script/bootstrap
|
Upgrade npm before running script/bootstrap
|
YAML
|
mit
|
liuderchi/atom,Arcanemagus/atom,brumm/atom,gontadu/atom,gontadu/atom,kevinrenaers/atom,bsmr-x-script/atom,liuderchi/atom,bolinfest/atom,CraZySacX/atom,bolinfest/atom,AdrianVovk/substance-ide,xream/atom,stinsonga/atom,FIT-CSE2410-A-Bombs/atom,sotayamashita/atom,atom/atom,helber/atom,FIT-CSE2410-A-Bombs/atom,Mokolea/atom,brumm/atom,rlugojr/atom,t9md/atom,me-benni/atom,PKRoma/atom,helber/atom,Arcanemagus/atom,me-benni/atom,me-benni/atom,t9md/atom,AdrianVovk/substance-ide,andrewleverette/atom,Mokolea/atom,kevinrenaers/atom,decaffeinate-examples/atom,bolinfest/atom,AlexxNica/atom,helber/atom,ardeshirj/atom,decaffeinate-examples/atom,decaffeinate-examples/atom,brumm/atom,liuderchi/atom,bsmr-x-script/atom,AdrianVovk/substance-ide,AlexxNica/atom,gontadu/atom,tjkr/atom,andrewleverette/atom,Arcanemagus/atom,t9md/atom,PKRoma/atom,Ingramz/atom,bsmr-x-script/atom,stinsonga/atom,PKRoma/atom,tjkr/atom,liuderchi/atom,xream/atom,sotayamashita/atom,brettle/atom,Ingramz/atom,sotayamashita/atom,xream/atom,brettle/atom,Ingramz/atom,kevinrenaers/atom,Mokolea/atom,atom/atom,decaffeinate-examples/atom,CraZySacX/atom,brettle/atom,atom/atom,stinsonga/atom,andrewleverette/atom,ardeshirj/atom,FIT-CSE2410-A-Bombs/atom,rlugojr/atom,tjkr/atom,rlugojr/atom,AlexxNica/atom,stinsonga/atom,CraZySacX/atom,ardeshirj/atom
|
aa16a185a63cbb048daea2b8088389107142896a
|
circle.yml
|
circle.yml
|
deployment:
gemfury:
branch: master
commands:
- make release
|
machine:
node:
version: 6.1.0
deployment:
gemfury:
branch: master
commands:
- make release
|
Bump node version on Circle
|
Bump node version on Circle
|
YAML
|
mit
|
tictail/tide,tictail/tide,tictail/tide
|
76b2815c38beb9e4239e8ef7546049dc83d441b8
|
circle.yml
|
circle.yml
|
test:
override:
- ./node_modules/.bin/eslint lib
- |
./node_modules/.bin/jpm test --tbpl --binary /usr/bin/firefox | tee jpm.tbpl
# exit with exit code of jpm, not tee
(exit ${PIPESTATUS[0]})
post:
- woodchipper --timeout 600000 < jpm.tbpl > $CIRCLE_TEST_REPORTS/jpm.xml
- ./node_modules/.bin/jpm xpi && mv recipe-client.xpi $CIRCLE_ARTIFACTS/recipe-client.xpi
|
test:
override:
- ./node_modules/.bin/eslint lib
- |
./node_modules/.bin/jpm test --tbpl --binary /usr/bin/firefox | tee jpm.tbpl
# exit with exit code of jpm, not tee
(exit ${PIPESTATUS[0]})
post:
- woodchipper --timeout 600000 < jpm.tbpl > $CIRCLE_TEST_REPORTS/jpm.xml
- ./node_modules/.bin/jpm xpi && mv shield-recipe-client.xpi $CIRCLE_ARTIFACTS/shield-recipe-client.xpi
|
Update to reflect new package name
|
CI: Update to reflect new package name
|
YAML
|
mpl-2.0
|
Osmose/normandy,mozilla/normandy,Osmose/normandy,mozilla/normandy,mozilla/normandy,mozilla/normandy,Osmose/normandy,Osmose/normandy
|
1f87776305f5efa44f1f1d4a74655559268e8e90
|
circle.yml
|
circle.yml
|
dependencies:
pre:
- go get -v -t -u -f github.com/cee-dub/go-junit-report
test:
pre:
- go version
## Override test command for reporting
override:
- mkdir -p $CIRCLE_TEST_REPORTS/junit
- "(set -o pipefail && go test ./... -v -race | go-junit-report -dir $CIRCLE_TEST_REPORTS/junit)"
|
dependencies:
## Install specific Go version
pre:
- curl -o go.tar.gz -sL https://storage.googleapis.com/golang/go1.7.4.linux-amd64.tar.gz
- sudo rm -rf /usr/local/go
- sudo tar -C /usr/local -xzf go.tar.gz
- sudo chmod a+w /usr/local/go/src/
- go get -v -t -u -f github.com/cee-dub/go-junit-report
test:
pre:
- go version
## Override test command for reporting
override:
- mkdir -p $CIRCLE_TEST_REPORTS/junit
- "(set -o pipefail && go test ./... -v -race | go-junit-report -dir $CIRCLE_TEST_REPORTS/junit)"
|
Build on a recent version of Go
|
Build on a recent version of Go
|
YAML
|
mit
|
domainr/dnsr,domainr/dnsr
|
9749c0d155eac6cc445483ec4400db47a4945b6b
|
circle.yml
|
circle.yml
|
machine:
python:
version: 3.4
test:
post:
- 'python setup.py sdist'
- 'python setup.py bdist --formats=gztar,zip'
general:
artifacts:
- dist
|
machine:
python:
version: 3.4.2
test:
post:
- 'python setup.py sdist'
- 'python setup.py bdist --formats=gztar,zip'
general:
artifacts:
- dist
|
Fix the Python version spec
|
Fix the Python version spec
|
YAML
|
mit
|
prophile/beewarn
|
658c8761aef4cab0f595bc6222478a339ad9bce2
|
recipes/flask-table/meta.yaml
|
recipes/flask-table/meta.yaml
|
{% set name = "flask-table" %}
{% set version = "0.5.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/plumdog/{{ name }}/archive/{{ version }}.tar.gz
sha256: bb8a15307cd4ea1f2b6be93b3ffe60a397099827439b4c389d624bf9c2939086
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv"
requirements:
host:
- python
- pip
run:
- python
- flask
- flask-babel
test:
requires:
- flask-testing
imports:
- flask_table
commands:
- python -m unittest discover
about:
home: https://pypi.org/project/Flask-Table/
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: 'HTML tables for use with the Flask micro-framework'
description: |
Because writing HTML is fiddly and all of your tables are basically the same.
doc_url: https://flask-table.readthedocs.io
dev_url: https://github.com/plumdog/flask_table
extra:
recipe-maintainers:
- CurtLH
|
{% set name = "flask-table" %}
{% set version = "0.5.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/plumdog/{{ name }}/archive/v{{ version }}.tar.gz
sha256: bb8a15307cd4ea1f2b6be93b3ffe60a397099827439b4c389d624bf9c2939086
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv"
requirements:
host:
- python
- pip
run:
- python
- flask
- flask-babel
test:
requires:
- flask-testing
imports:
- flask_table
commands:
- python -m unittest discover
about:
home: https://pypi.org/project/Flask-Table/
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: 'HTML tables for use with the Flask micro-framework'
description: |
Because writing HTML is fiddly and all of your tables are basically the same.
doc_url: https://flask-table.readthedocs.io
dev_url: https://github.com/plumdog/flask_table
extra:
recipe-maintainers:
- CurtLH
|
Fix typo in GitHub URL
|
Fix typo in GitHub URL
|
YAML
|
bsd-3-clause
|
jakirkham/staged-recipes,SylvainCorlay/staged-recipes,chrisburr/staged-recipes,mcs07/staged-recipes,Juanlu001/staged-recipes,jochym/staged-recipes,stuertz/staged-recipes,jjhelmus/staged-recipes,Juanlu001/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,patricksnape/staged-recipes,hadim/staged-recipes,petrushy/staged-recipes,kwilcox/staged-recipes,SylvainCorlay/staged-recipes,johanneskoester/staged-recipes,birdsarah/staged-recipes,hadim/staged-recipes,rvalieris/staged-recipes,basnijholt/staged-recipes,asmeurer/staged-recipes,ocefpaf/staged-recipes,ReimarBauer/staged-recipes,shadowwalkersb/staged-recipes,isuruf/staged-recipes,stuertz/staged-recipes,scopatz/staged-recipes,synapticarbors/staged-recipes,synapticarbors/staged-recipes,rmcgibbo/staged-recipes,birdsarah/staged-recipes,jochym/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,mcs07/staged-recipes,basnijholt/staged-recipes,ocefpaf/staged-recipes,asmeurer/staged-recipes,dschreij/staged-recipes,jjhelmus/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,cpaulik/staged-recipes,rvalieris/staged-recipes,sodre/staged-recipes,mariusvniekerk/staged-recipes,goanpeca/staged-recipes,mariusvniekerk/staged-recipes,igortg/staged-recipes,ceholden/staged-recipes,rmcgibbo/staged-recipes,ceholden/staged-recipes,isuruf/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,sodre/staged-recipes,sodre/staged-recipes,shadowwalkersb/staged-recipes,chrisburr/staged-recipes,cpaulik/staged-recipes
|
f8e5a9a5b5136d6882d46c46ceb39b2a17eeb2fe
|
recipes/scikit-beam/meta.yaml
|
recipes/scikit-beam/meta.yaml
|
package:
name: scikit-beam
version: build_for_windows
source:
git_url: https://github.com/ericdill/scikit-beam
git_rev: build_for_windows
build:
number: 0
requirements:
build:
- python
- setuptools
- numpy
- six
- cython
run:
- python
- numpy
- scipy
- six
- xraylib [not win]
- scikit-image
- lmfit ==0.8.3
test:
imports:
- skbeam
about:
home: http://scikit-beam.github.io/scikit-beam/
license: 3-Clause BSD
|
package:
name: scikit-beam
version: build_for_windows
source:
git_url: https://github.com/ericdill/scikit-beam
git_rev: build-for-windows
build:
number: 0
requirements:
build:
- python
- setuptools
- numpy
- six
- cython
run:
- python
- numpy
- scipy
- six
- xraylib [not win]
- scikit-image
- lmfit ==0.8.3
test:
requires:
- nose
- coverage
imports:
- skbeam
- skbeam.diffraction
- skbeam.fluorescence
- skbeam.core
- skbeam.core.utils
- skbeam.core.feature
- skbeam.core.stats
- skbeam.core.calibration
- skbeam.core.speckle
- skbeam.core.dpc
- skbeam.core.correlation
- skbeam.core.recip
- skbeam.core.spectroscopy
- skbeam.core.mask
- skbeam.core.roi
- skbeam.core.arithmetic
- skbeam.core.image
- skbeam.core.cdi
- skbeam.core.accumulators
- skbeam.core.accumulators.timings
- skbeam.core.accumulators.histogram
- skbeam.core.accumulators.histogram
- skbeam.core.accumulators.histogram
- skbeam.core.fitting [not win]
- skbeam.core.fitting.xrf_model
- skbeam.core.fitting.funcs
- skbeam.core.fitting.models
- skbeam.core.fitting.lineshapes
- skbeam.core.fitting.background
- skbeam.core.fitting.base
- skbeam.core.fitting.base.parameter_data
- skbeam.core.constants
- skbeam.core.constants.basic
- skbeam.core.constants.xrs
- skbeam.core.constants.xrf [not win]
- skbeam.io
- skbeam.io.save_powder_output
- skbeam.io.avizo_io
# disabled because we are no longer shipping netcdf4 with skbeam
#- skbeam.io.net_cdf_io
- skbeam.io.gsas_file_reader
- skbeam.io.binary
- skbeam.ext
- skbeam.ext.ctrans
about:
home: http://scikit-beam.github.io/scikit-beam/
license: 3-Clause BSD
|
Add imports for scikit-beam 0.0.7
|
Add imports for scikit-beam 0.0.7
|
YAML
|
bsd-3-clause
|
scikit-beam/skbeam-recipes,scikit-beam/skbeam-recipes
|
64d05f812e968e36fe5f079fb032083650e172ac
|
_config/config.yml
|
_config/config.yml
|
---
Name: ideannotator
Before:
- 'mysite/*'
After:
- 'framework/*'
- 'cms/*'
---
DataObject:
extensions:
- Annotatable
AnnotatePermissionChecker:
enabled_modules:
- mysite
|
---
Name: ideannotator
Before:
- 'mysite/*'
After:
- 'framework/*'
- 'cms/*'
---
DataObject:
extensions:
- Annotatable
AnnotatePermissionChecker:
enabled: false
enabled_modules:
- mysite
|
Disable by default. Let mysite enable it.
|
Disable by default. Let mysite enable it.
|
YAML
|
bsd-3-clause
|
Firesphere/silverstripe-ideannotator
|
85cb1a78fd7c6e25460ebfbe977960338e98a4ef
|
pubspec.yaml
|
pubspec.yaml
|
name: streamy
version: 0.0.7
description: >
An experimental client API generator for services described using Google's API
discovery format (https://developers.google.com/discovery/v1/using#discovery-doc).
The generator comes with templates that generate streaming API via dart:async's
Stream object.
authors:
- Alex Rickabaugh <[email protected]>
- Yegor Jbanov <[email protected]>
homepage: https://github.com/google/streamy-dart
environment:
sdk: '>=1.4.0'
dependencies:
barback: any
browser: any
mustache: ">=0.1.5"
args: ">=0.9.0"
meta: ">=0.8.8"
fixnum: ">=0.9.0"
observe: ">=0.9.1 <=0.10.0"
quiver: ">=0.14.0"
yaml: any
dev_dependencies:
analyzer: any
path: any
unittest: any
benchmark_harness: ">=1.0.0"
intl: any
transformers:
- streamy
- $dart2js:
$include: nonexistent/path
|
name: streamy
version: 0.0.7
description: >
An experimental client API generator for services described using Google's API
discovery format (https://developers.google.com/discovery/v1/using#discovery-doc).
The generator comes with templates that generate streaming API via dart:async's
Stream object.
authors:
- Alex Rickabaugh <[email protected]>
- Yegor Jbanov <[email protected]>
homepage: https://github.com/google/streamy-dart
environment:
sdk: '>=1.4.0'
dependencies:
barback: any
browser: any
mustache: ">=0.1.5"
args: ">=0.9.0"
meta: ">=0.8.8"
fixnum: ">=0.9.0"
observe: ">=0.9.1 <=0.10.0"
quiver: ">=0.14.0"
yaml: any
dev_dependencies:
analyzer: any
path: any
protobuf: any
unittest: any
benchmark_harness: ">=1.0.0"
intl: any
transformers:
- streamy
- $dart2js:
$include: nonexistent/path
|
Add back protobuf - needed for descriptor.pb.dart.
|
Add back protobuf - needed for descriptor.pb.dart.
|
YAML
|
apache-2.0
|
ronlobo/streamy-dart,google/streamy-dart,ronlobo/streamy-dart,srawlins/streamy-dart,ronlobo/streamy-dart,srawlins/streamy-dart,google/streamy-dart,srawlins/streamy-dart,google/streamy-dart,ronlobo/streamy-dart,google/streamy-dart,srawlins/streamy-dart
|
066b1de225ebb5e0d31edd92d0191cd154c5075f
|
config/mongo.yml
|
config/mongo.yml
|
development:
database: stumpwise_development
host: 127.0.0.1
port: 27017
test:
database: stumpwise_test
host: 127.0.0.1
port: 27017
staging:
database: stumpwise_production
host: pearl.mongohq.com
port: 27078
username: stumpwise_admin
password: unGMV4U6skyV
production:
database: stumpwise
host: flame.mongohq.com
port: 27058
username: stumpwise_admin
password: unGMV4U6skyV
|
development:
database: stumpwise_development
host: 127.0.0.1
port: 27017
test:
database: stumpwise_test
host: 127.0.0.1
port: 27017
staging:
database: stumpwise_production
host: pearl.mongohq.com
port: 27078
username: stumpwise_admin
password: unGMV4U6skyV
production:
database: stumpwise_production
host: pearl.mongohq.com
port: 27078
username: stumpwise_admin
password: unGMV4U6skyV
|
Switch to new MongoHQ production database
|
Switch to new MongoHQ production database
|
YAML
|
mit
|
marclove/stumpwise,marclove/stumpwise
|
2323ce156b8b7ddc9d4faa63746ce577062b13af
|
recipes/simple_benchmark/meta.yaml
|
recipes/simple_benchmark/meta.yaml
|
{% set name = "simple_benchmark" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/simple_benchmark-{{ version }}.tar.gz
sha256: 2be6a87ef024c1387ec54de8792e80192080cb0572ebd049fdb1b60388d4251e
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
host:
- python
- pip
run:
- python
- numpy
- matplotlib
- pandas
test:
imports:
- simple_benchmark
commands:
- pip check
requires:
- pip
about:
home: https://github.com/MSeifert04/simple_benchmark
summary: A simple benchmarking package.
license: Apache-2.0
license_file: LICENSE
extra:
recipe-maintainers:
- bryanwweber
|
{% set name = "simple_benchmark" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/simple_benchmark-{{ version }}.tar.gz
sha256: 2be6a87ef024c1387ec54de8792e80192080cb0572ebd049fdb1b60388d4251e
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
host:
- python
- pip
run:
- python >=3.6
- numpy
- matplotlib-base
- pandas
test:
imports:
- simple_benchmark
commands:
- pip check
- pytest
source_files:
- tests
requires:
- pip
- pytest
- sphinx
about:
home: https://github.com/MSeifert04/simple_benchmark
summary: A simple benchmarking package.
license: Apache-2.0
license_file: LICENSE
extra:
recipe-maintainers:
- bryanwweber
|
Fix recipe and add tests
|
Fix recipe and add tests
|
YAML
|
bsd-3-clause
|
conda-forge/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes
|
16ad7ff511bdb859bcb46fa4b71282db551e7f27
|
roles/desktop/tasks/media.yml
|
roles/desktop/tasks/media.yml
|
---
- name: install udiskie for automount
pacman:
name: udiskie
- name: install media codecs
pacman:
name:
- flac
- lame
- opus
- gstreamer
- gst-libav
- gstreamer-vaapi
- gst-plugins-good
- gst-plugins-ugly
- gst-plugins-bad
- name: install pulseaudio
pacman:
name:
- alsa-utils
- pulseaudio
- pulseaudio-alsa
- pulseaudio-jack
- pavucontrol
- pamixer
- paprefs
- playerctl
- name: configure to switch audio output to newly connected devices
lineinfile:
dest: /etc/pulse/default.pa
state: present
line: "load-module module-switch-on-connect"
|
---
- name: install udiskie for automount
pacman:
name: udiskie
- name: install media codecs
pacman:
name:
- flac
- lame
- opus
- gstreamer
- gst-libav
- gstreamer-vaapi
- gst-plugins-good
- gst-plugins-ugly
- gst-plugins-bad
- name: install pulseaudio
pacman:
name:
- alsa-utils
- pulseaudio
- pulseaudio-alsa
- pulseaudio-jack
- pavucontrol
- pamixer
- paprefs
- playerctl
- name: install pro-audio packages
pacman:
name:
- pro-audio
- jack2
- name: add user to realtime group
user:
name: '{{ user.name }}'
groups: realtime
append: yes
- name: configure to switch audio output to newly connected devices
lineinfile:
dest: /etc/pulse/default.pa
state: present
line: "load-module module-switch-on-connect"
|
Install and configure pro-audio packages
|
Install and configure pro-audio packages
|
YAML
|
mit
|
zoresvit/archible
|
1f4f95b57504735b5db31d31d105c5a671e0c113
|
roles/reflector/vars/main.yml
|
roles/reflector/vars/main.yml
|
---
reflector:
files:
- src: mirrorupgrade.hook.j2
dest: /etc/pacman.d/hooksl
- src: reflector.service.j2
dest: /etc/systemd/system/reflector.service
- src: reflector.timer.j2
dest: /etc/systemd/system/reflector.timer
|
---
reflector:
files:
- src: mirrorupgrade.hook.j2
dest: /etc/pacman.d/hooks/mirrorupgrade.hook
- src: reflector.service.j2
dest: /etc/systemd/system/reflector.service
- src: reflector.timer.j2
dest: /etc/systemd/system/reflector.timer
|
Fix incorrect template dest in reflector role
|
Fix incorrect template dest in reflector role
|
YAML
|
bsd-2-clause
|
AsavarTzeth/ansible-archlinux-desktop
|
3239f99ea8b342311591ab9da316b66543b7380d
|
.github/release-drafter.yml
|
.github/release-drafter.yml
|
name-template: '$NEXT_PATCH_VERSION'
tag-template: '$NEXT_PATCH_VERSION'
categories:
- title: 'π Features'
labels:
- 'Type: Enhancement'
- title: 'π Bug Fixes'
labels:
- 'Type: Bug / Error'
- title: 'π§° Maintenance'
label: 'Type: Other'
change-template: '- $TITLE (#$NUMBER) @$AUTHOR'
no-changes-template: 'This release contains minor changes and bugfixes.'
template: |
# Release Notes
$CHANGES
π **Thanks to all contributors helping with this release!** π
|
name-template: '$NEXT_PATCH_VERSION'
tag-template: '$NEXT_PATCH_VERSION'
categories:
- title: 'π Features'
labels:
- 'Type: Enhancement'
- title: 'π Bug Fixes'
labels:
- 'Type: Bug / Error'
- title: 'π§° Maintenance'
label: 'Type: Other'
change-template: '- $TITLE (#$NUMBER) @$AUTHOR'
branches:
- develop
no-changes-template: 'This release contains minor changes and bugfixes.'
template: |
# Release Notes
$CHANGES
π **Thanks to all contributors helping with this release!** π
|
Set develop branch for release drafter
|
Set develop branch for release drafter
|
YAML
|
mit
|
knsv/mermaid,knsv/mermaid
|
03c3cd96134cb1be15dace6771366c7b0fa5a1e7
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: build
on: # @see https://help.github.com/en/articles/events-that-trigger-workflows#webhook-events
push:
branches: # Array of patterns that match refs/heads
- master # Push events on master branch
- dev
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master
with:
lfs: false
- name: Build
run: |
& git log -n 10 --pretty=oneline
New-Item -ItemType Directory -Force ~/.npm-global
npm config set prefix "~/.npm-global"
if ( "${{ matrix.os }}" -eq "windows-latest" ) {
$ENV:PATH="~/.npm-global/bin;$ENV:PATH"
} else {
$ENV:PATH="~/.npm-global/bin:$ENV:PATH"
}
if (Test-Path "out") { Remove-Item -Recurse -Force "out" }
& npm install -g yarn
& yarn install --registry https://registry.npmjs.org
& yarn run package-test --registry https://registry.npmjs.org
shell: pwsh
- name: Release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "out/*.7z;out/*.tar.xz"
tags: true
draft: true
overwrite: true
# verbose: true
|
name: build
on: # @see https://help.github.com/en/articles/events-that-trigger-workflows#webhook-events
push:
branches: # Array of patterns that match refs/heads
- main # Push events on master branch
pull_request:
branches: [ main ]
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master
with:
lfs: false
- name: Build
run: |
& git log -n 10 --pretty=oneline
New-Item -ItemType Directory -Force ~/.npm-global
npm config set prefix "~/.npm-global"
if ( "${{ matrix.os }}" -eq "windows-latest" ) {
$ENV:PATH="~/.npm-global/bin;$ENV:PATH"
} else {
$ENV:PATH="~/.npm-global/bin:$ENV:PATH"
}
if (Test-Path "out") { Remove-Item -Recurse -Force "out" }
& npm install -g yarn
& yarn install --registry https://registry.npmjs.org
& yarn run package-test --registry https://registry.npmjs.org
shell: pwsh
- name: Release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "out/*.7z;out/*.tar.xz"
tags: true
draft: true
overwrite: true
# verbose: true
|
Switch default branch into main
|
Switch default branch into main
Signed-off-by: owentou <[email protected]>
|
YAML
|
mit
|
xresloader/xresconv-gui,xresloader/xresconv-gui
|
c59b9f9f64eb0d85a5fcbdd327059afb47ecadc0
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: build
on:
push:
branches: main
pull_request:
branches: main
jobs:
haskell:
strategy:
fail-fast: false
matrix:
include:
- { os: ubuntu-latest }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v15
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v10
with:
name: amazonka
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: nix build
- run: nix flake check
|
name: build
on:
push:
branches: main
pull_request:
branches: main
jobs:
haskell:
strategy:
fail-fast: false
matrix:
include:
- { os: ubuntu-latest }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v15
- uses: cachix/cachix-action@v10
with:
name: amazonka
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: nix build
|
Remove nix flake check from github actions
|
Remove nix flake check from github actions
|
YAML
|
mpl-2.0
|
brendanhay/text-manipulate
|
a01f04a17ef97492ee0328a95e26930a6a766ce9
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: build
on: [ pull_request, push ]
jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
17 # Minimum supported by Minecraft
]
# and run on both Linux and Windows
os: [ ubuntu-20.04, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: build 1.16.5
run: ./gradlew build -PbuildVersion="1.16.5"
- name: build 1.17.1
run: ./gradlew build -PbuildVersion="1.17.1"
- name: capture build artifacts
if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS
uses: actions/upload-artifact@v2
with:
name: Artifacts
path: build/libs/
|
# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: build
on: [ pull_request, push ]
jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
17 # Minimum supported by Minecraft
]
# and run on both Linux and Windows
os: [ ubuntu-20.04, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup jdk ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: Build 1.16.5
run: ./gradlew build -PbuildVersion="1.16.5"
- name: Build 1.17.1
run: ./gradlew build -PbuildVersion="1.17.1"
- name: Build 1.18
run: ./gradlew build -PbuildVersion="1.18"
- name: Capture build artifacts
if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS
uses: actions/upload-artifact@v2
with:
name: Artifacts
path: build/libs/
|
Add the 1.18 run step
|
Add the 1.18 run step
|
YAML
|
mit
|
jonafanho/Minecraft-Transit-Railway,jonafanho/Minecraft-Transit-Railway,jonafanho/Minecraft-Transit-Railway
|
b5c30919e353897f1a8bf82f62b942e9dad52481
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
on:
push:
branches:
- osagnostic
pull_request:
branches:
- osagnostic
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, macos-10.15, macos-11]
include:
- os: macos-10.15
- os: macos-latest
- os: macos-11
steps:
- uses: actions/checkout@v2
with:
ref: 'osagnostic'
- name: Build
run: sh ./bundledApps/MAKEFILE.sh -q
- name: Install screenshot utility
run: pip3 install screenshot
- name: Run
working-directory: /Applications
run: |
pwd
ls
open -a /Applications/WAIL.app
sleep 10
ps -A | grep WAIL
- name: Iterate tabs, taking screenshot
env:
KEYCODES: 29 18 19 20 21
run: |
for k in $KEYCODES; do
osascript tests/changeTabs.scpt $k
screenshot WAIL --filename wail-${{matrix.os}}-$k.png --shadow
done
- name: Upload screenshot
uses: actions/upload-artifact@v2
with:
name: wail-screenshot-${{matrix.os}}
path: wail-${{matrix.os}}*.png
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: wail-screenshot-${{matrix.os}}
|
on:
push:
branches:
- osagnostic
pull_request:
branches:
- osagnostic
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, macos-10.15, macos-11]
include:
- os: macos-10.15
- os: macos-latest
- os: macos-11
steps:
- uses: actions/checkout@v2
with:
source_branch: ""
- name: Build
run: sh ./bundledApps/MAKEFILE.sh -q
- name: Install screenshot utility
run: pip3 install screenshot
- name: Run
working-directory: /Applications
run: |
pwd
ls
open -a /Applications/WAIL.app
sleep 10
ps -A | grep WAIL
- name: Iterate tabs, taking screenshot
env:
KEYCODES: 29 18 19 20 21
run: |
for k in $KEYCODES; do
osascript tests/changeTabs.scpt $k
screenshot WAIL --filename wail-${{matrix.os}}-$k.png --shadow
done
- name: Upload screenshot
uses: actions/upload-artifact@v2
with:
name: wail-screenshot-${{matrix.os}}
path: wail-${{matrix.os}}*.png
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: wail-screenshot-${{matrix.os}}
|
Update PR trigger to use source branch
|
Update PR trigger to use source branch
|
YAML
|
mit
|
machawk1/wail,machawk1/wail,machawk1/wail,machawk1/wail,machawk1/wail,machawk1/wail,machawk1/wail,machawk1/wail
|
2149a8ddd64d1ba1d5b03ee0b90b74ccdfb5b67a
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: Auto Build
on: push
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install requirements
run: pip install -r requirements.txt
- name: Lint with pylint
run: |
pip install pylint
pylint unicornclient/
- name: Test with unittest
run: python -m unittest
build:
if: github.ref == 'refs/heads/master'
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build the Docker image
run: docker build . --file Dockerfile --tag amm0nite/unicornclient:latest
- name: Publish the Docker image
run: |
docker login --username amm0nite --password ${{secrets.docker_hub_token}}
docker push amm0nite/unicornclient:latest
|
name: Auto Build
on: push
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install requirements
run: pip install -r requirements.txt
- name: Lint with pylint
run: |
pip install pylint
pylint unicornclient/
- name: Test with unittest
run: python -m unittest
build:
if: github.ref == 'refs/heads/master'
needs: check
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: amm0nite/unicornclient:latest
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
|
Update CI to python 3.9
|
Update CI to python 3.9
|
YAML
|
mit
|
amm0nite/unicornclient,amm0nite/unicornclient
|
56a336bf17c36cd710804c7a0ee897d98b244568
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
on: push
name: Build
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [
2.7,
3.1
]
env:
RAILS_ENV: test
CI: true
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Specs
run: |
bundle exec rake
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage/lcov.info
|
on: push
name: Build
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['2', '3']
env:
RAILS_ENV: test
CI: true
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Specs
run: |
bundle exec rake
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage/lcov.info
|
Test against latest 2 and 3
|
Test against latest 2 and 3
|
YAML
|
mit
|
adhearsion/adhearsion,adhearsion/adhearsion,adhearsion/adhearsion,adhearsion/adhearsion
|
7c0300543c73545bd9294872a94d41500a33aa29
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true
|
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
webpack-version: [4.0.x, ^4.0.0]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install webpack@${{ matrix.webpack-version }}
- run: npm run build --if-present
- run: npm test
env:
CI: true
|
Test against multiple webpack versions
|
CI: Test against multiple webpack versions
|
YAML
|
apache-2.0
|
GoogleChromeLabs/webbundle-webpack-plugin
|
4cae944d20acb550bd40c313da2f54e8c8abe05b
|
.github/workflows/maven.yml
|
.github/workflows/maven.yml
|
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: "Build"
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
java: [ 11, 15, 16 ]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Install JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build
run: mvn -B clean verify
|
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: "Build"
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
java: [ 11, 16 ]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Install JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build
run: mvn -B clean verify
|
Remove Java 15 build now that 16 is active
|
Remove Java 15 build now that 16 is active
|
YAML
|
apache-2.0
|
tabish121/proton4j
|
eb3d1f5da5f80cf22447cc03ac3fa55c06fb77b3
|
.github/workflows/maven.yml
|
.github/workflows/maven.yml
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 14, 15-ea, 16-ea ]
steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
java: [ 8, 11, 14, 15-ea, 16-ea ]
experimental: [false]
include:
- node: 15-ea
experimental: true
- node: 16-ea
experimental: true
steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml
|
Allow Java early access builds to fail.
|
Allow Java early access builds to fail.
|
YAML
|
apache-2.0
|
apache/commons-lang,britter/commons-lang,britter/commons-lang,apache/commons-lang,MarkDacek/commons-lang,britter/commons-lang,MarkDacek/commons-lang,MarkDacek/commons-lang,apache/commons-lang
|
13cd7951d2c348460c38c82e494e6b46e70bce4b
|
.github/workflows/test.yaml
|
.github/workflows/test.yaml
|
name: dotfiles
on: push
jobs:
osx:
runs-on: macos-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/[email protected]
- name: Cache homebrew packages
uses: actions/cache@v2
env:
cache-name: cache-installed-packages
with:
path: |
$HOME/Library/Caches/Homebrew
/Library/Caches/Homebrew
$HOME/.pyenv
key: homebrew-${{ runner.os }}
restore-keys: |
homebrew-${{ runner.os }}
- name: Upgrade homebrew
run: cd "$(brew --repo)" && git fetch && git reset --hard origin/master && brew update
- name: Remove problematic 2to3 bin
run: rm /usr/local/bin/2to3
- name: Run install.sh
run: ./install.sh
|
name: dotfiles
on: push
jobs:
archlinux:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v2
- name: Pull docker image
run: docker-compose pull
- name: Run installer on Archlinux
run: docker-compose up --build --exit-code-from dotfiles
- name: Push to GitHub Packages
uses: docker/build-push-action@v1
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: docker.pkg.github.com
repository: benmezger/dotfiles/arch-dotfiles
tag_with_ref: true
osx:
runs-on: macos-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/[email protected]
- name: Cache homebrew packages
uses: actions/cache@v2
env:
cache-name: cache-installed-packages
with:
path: |
$HOME/Library/Caches/Homebrew
/Library/Caches/Homebrew
$HOME/.pyenv
key: homebrew-${{ runner.os }}
restore-keys: |
homebrew-${{ runner.os }}
- name: Upgrade homebrew
run: cd "$(brew --repo)" && git fetch && git reset --hard origin/master && brew update
- name: Remove problematic 2to3 bin
run: rm /usr/local/bin/2to3
- name: Run install.sh
run: ./install.sh
|
Revert "Chore: Temporary disable Archlinux build"
|
Revert "Chore: Temporary disable Archlinux build"
This reverts commit 7edb425b051ffdb73aac7eb52495bdb5631bee05.
|
YAML
|
mit
|
benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles
|
b5c02088a0f64b1412efc5ea01800b3d1cead06c
|
.github/workflows/tests.yml
|
.github/workflows/tests.yml
|
name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
inputs:
git-ref:
description: Git Ref (Optional)
required: false
jobs:
build:
runs-on: ubuntu-latest
env:
TEST_TMPDIR: '/tmp'
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
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: |
pip install --upgrade pip setuptools
python setup.py install
pip install .[testing]
- name: Test with pytest
run: |
pytest -n "$(grep -c ^processor /proc/cpuinfo)" android_env
|
name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
inputs:
git-ref:
description: Git Ref (Optional)
required: false
jobs:
build:
runs-on: ubuntu-latest
env:
TEST_TMPDIR: '/tmp'
strategy:
matrix:
python-version: [3.8]
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: |
pip install --upgrade pip setuptools
python setup.py install
pip install .[testing]
- name: Test with pytest
run: |
pytest -n "$(grep -c ^processor /proc/cpuinfo)" android_env
|
Remove Python 3.6 and Python 3.7 due to `np` 1.23
|
Remove Python 3.6 and Python 3.7 due to `np` 1.23
Our `setup.py` needs `np>1.21` which currently resolves to `1.23`, and unfortunately that requires Python 3.8 or above.
|
YAML
|
apache-2.0
|
deepmind/android_env
|
eae598c6a819e29c3fbe638b369752fe3420a675
|
pipelines/mruby.yaml
|
pipelines/mruby.yaml
|
resources:
- name: ruby
type: docker-image
source:
repository: colstrom/ruby
- name: alpine
type: docker-image
source:
repository: colstrom/alpine
- name: src
type: git
source:
uri: https://github.com/mruby/mruby
- name: ci
type: git
source:
uri: https://github.com/colstrom/docker-mruby
- name: mruby:build
type: docker-image
source:
repository: lang/mruby
tag: build
email: {{docker-email}}
username: {{docker-username}}
password: {{docker-password}}
- name: mruby
type: docker-image
source:
repository: lang/mruby
email: {{docker-email}}
username: {{docker-username}}
password: {{docker-password}}
jobs:
- name: build
plan:
- get: ruby
trigger: true
- get: ci
- put: mruby:build
params:
build: ci/images/mruby/build
- name: mruby
plan:
- get: alpine
trigger: true
- get: ci
trigger: true
- get: mruby:build
- get: src
- task: compile
file: ci/tasks/mruby/compile.yaml
- task: strip
file: ci/tasks/mruby/strip.yaml
- task: pack
file: ci/tasks/mruby/pack.yaml
- task: prepare
file: ci/tasks/mruby/prepare.yaml
- put: mruby
params:
build: prepared
|
resources:
- name: ruby
type: docker-image
source:
repository: colstrom/ruby
- name: alpine
type: docker-image
source:
repository: colstrom/alpine
- name: src
type: git
source:
uri: https://github.com/mruby/mruby
- name: ci
type: git
source:
uri: https://github.com/colstrom/docker-mruby
- name: mruby:build
type: docker-image
source:
repository: lang/mruby
tag: build
email: {{docker-email}}
username: {{docker-username}}
password: {{docker-password}}
- name: mruby
type: docker-image
source:
repository: lang/mruby
email: {{docker-email}}
username: {{docker-username}}
password: {{docker-password}}
jobs:
- name: build
plan:
- get: ruby
trigger: true
- get: ci
- put: mruby:build
params:
build: ci/images/mruby/build
cache: true
- name: mruby
plan:
- get: alpine
trigger: true
- get: ci
trigger: true
- get: mruby:build
- get: src
- task: compile
file: ci/tasks/mruby/compile.yaml
- task: strip
file: ci/tasks/mruby/strip.yaml
- task: pack
file: ci/tasks/mruby/pack.yaml
- task: prepare
file: ci/tasks/mruby/prepare.yaml
- put: mruby
params:
build: prepared
|
Add caching to build output
|
Add caching to build output
|
YAML
|
mit
|
colstrom/docker-mruby
|
ea22e3f87224557d52f3869e6420e8753fe9a342
|
packages/co/country.yaml
|
packages/co/country.yaml
|
homepage: https://github.com/andrewthad/country#readme
changelog-type: ''
hash: 826813927d5c85d423e61de9260a34cc42e44ddbc620b2dd53e0e251dc4d1877
test-bench-deps:
base: -any
country: -any
maintainer: [email protected]
synopsis: Country data type and functions
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
base: ! '>=4.7 && <4.10'
unordered-containers: ! '>=0.2 && <0.3'
text: ! '>=1.2 && <1.3'
ghc-prim: ! '>=0.5 && <0.6'
hashable: ! '>=1.2 && <1.3'
scientific: ! '>=0.3 && <0.4'
aeson: ! '>=0.11 && <1.3'
primitive: ! '>=0.6.1 && <0.7'
all-versions:
- '0.1'
- '0.1.1'
- '0.1.2'
author: Andrew Martin
latest: '0.1.2'
description-type: markdown
description: ! '# country
'
license-name: BSD3
|
homepage: https://github.com/andrewthad/country#readme
changelog-type: ''
hash: 16885008d07e7cc8a9a4e37efffd2dda65fbbd6d01b4a5bdd8cff2ff2b7be939
test-bench-deps:
base: -any
country: -any
maintainer: [email protected]
synopsis: Country data type and functions
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
base: ! '>=4.7 && <4.10'
unordered-containers: ! '>=0.2 && <0.3'
text: ! '>=1.2 && <1.3'
ghc-prim: ! '>=0.5 && <0.6'
hashable: ! '>=1.2 && <1.3'
attoparsec: ! '>=0.13 && <0.14'
scientific: ! '>=0.3 && <0.4'
aeson: ! '>=0.11 && <1.3'
primitive: ! '>=0.6.1 && <0.7'
all-versions:
- '0.1'
- '0.1.1'
- '0.1.2'
- '0.1.3'
author: Andrew Martin
latest: '0.1.3'
description-type: markdown
description: ! '# country
'
license-name: BSD3
|
Update from Hackage at 2017-07-20T01:57:39Z
|
Update from Hackage at 2017-07-20T01:57:39Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
7c1532fc139f5d16beb0d1db96a8b32dd4870690
|
packages/cu/curryrs.yaml
|
packages/cu/curryrs.yaml
|
homepage: https://github.com/mgattozzi/curryrs#readme
changelog-type: ''
hash: 097ea44564d7c662631d57207b4c3736776030355dca50ed82168f2f454ca625
test-bench-deps:
base: -any
tasty-hunit: ! '>=0.9.2'
tasty: ! '>=0.11'
curryrs: -any
maintainer: [email protected]
synopsis: Easy to use FFI Bridge for using Rust in Haskell
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
mtl: ! '>=2.2 && <2.3'
all-versions:
- '0.1.0.0'
author: Michael Gattozzi
latest: '0.1.0.0'
description-type: haddock
description: Please see README.md for more information on how to use this library.
license-name: OtherLicense
|
homepage: https://github.com/mgattozzi/curryrs#readme
changelog-type: ''
hash: 0da648b4cd6a8378c1c375e1323ec7af8863eea5e051f7af1c7176fa5f4e7287
test-bench-deps:
base: -any
tasty-hunit: ! '>=0.9.2'
tasty: ! '>=0.11'
curryrs: -any
maintainer: [email protected]
synopsis: Easy to use FFI Bridge for using Rust in Haskell
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
mtl: ! '>=2.2 && <2.3'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
author: Michael Gattozzi
latest: '0.1.1.0'
description-type: haddock
description: Please see README.md for more information on how to use this library.
license-name: OtherLicense
|
Update from Hackage at 2016-10-16T01:28:17+00:00
|
Update from Hackage at 2016-10-16T01:28:17+00:00
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
248e605d4e43f3cad00b408e3a4ee87b44e23d30
|
packages/el/elision.yaml
|
packages/el/elision.yaml
|
homepage: http://github.com/crough/elision#readme
changelog-type: ''
hash: 10077606de3512e9bc405b363c3ef58e9df86a6cee527fee02911b48f3e74d68
test-bench-deps: {}
maintainer: [email protected]
synopsis: Arrows with holes.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
elision: -any
profunctors: ! '>=5.1.2'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.1.0'
- '0.1.2.0'
author: Alex Crough
latest: '0.1.2.0'
description-type: haddock
description: ! 'A framework for describing holes in transformations
and impure computations purely.'
license-name: BSD2
|
homepage: http://github.com/crough/elision#readme
changelog-type: ''
hash: 76c7042447aebffccddc68fd4ab94e5fd0676bdc2b50d4b2dc5c72cd0b2173ae
test-bench-deps: {}
maintainer: [email protected]
synopsis: Arrows with holes.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
elision: -any
profunctors: ! '>=5.1.2'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
- '0.1.3.1'
- '0.1.3.2'
author: Alex Crough
latest: '0.1.3.2'
description-type: haddock
description: ! 'A framework for describing holes in transformations
and impure computations purely.'
license-name: BSD2
|
Update from Hackage at 2016-02-18T21:43:00+0000
|
Update from Hackage at 2016-02-18T21:43:00+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
aaa5b7dc505bbd6b9063516bb681f50f3b619732
|
packages/fo/foreign.yaml
|
packages/fo/foreign.yaml
|
homepage: https://github.com/4eUeP/foreign
changelog-type: markdown
hash: 718514c63f4053c4ade83444178e00527e51694b9c2ffbf518329f18a6453da0
test-bench-deps:
base: '>=4.14 && <5'
hspec: -any
QuickCheck: -any
foreign: -any
maintainer: [email protected]
synopsis: A collection of helpers for ffi.
changelog: |
# Changelog for foreign
## Unreleased changes
basic-deps:
base: '>=4.14 && <5'
primitive-unlifted: ^>=1.0
ghc-prim: '>=0.5 && <1.0'
primitive: ^>=0.7
all-versions:
- 0.1.0.0
author: mu
latest: 0.1.0.0
description-type: markdown
description: |
# foreign
A collection of data types, classes, and functions for easing your ffi
experience.
license-name: BSD-3-Clause
|
homepage: https://github.com/4eUeP/foreign
changelog-type: markdown
hash: d0eab95733487180a3a33787d232fafacd20cd30298db1b1a9736f868b43a469
test-bench-deps:
base: '>=4.14 && <5'
hspec: -any
quickcheck-instances: -any
QuickCheck: -any
foreign: -any
maintainer: [email protected]
synopsis: A collection of helpers for ffi.
changelog: |
# Changelog for foreign
## Unreleased changes
basic-deps:
bytestring: '>=0.10 && <=0.12'
base: '>=4.14 && <5'
primitive-unlifted: ^>=1.0
ghc-prim: '>=0.5 && <1.0'
primitive: ^>=0.7
all-versions:
- 0.1.0.0
- 0.1.1.0
author: mu
latest: 0.1.1.0
description-type: markdown
description: |
# foreign
A collection of data types, classes, and functions for easing your ffi
experience.
license-name: BSD-3-Clause
|
Update from Hackage at 2022-09-16T06:04:07Z
|
Update from Hackage at 2022-09-16T06:04:07Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
b7019985cbab0bb7ad55c8226d0b44d72be2982f
|
packages/pi/picedit.yaml
|
packages/pi/picedit.yaml
|
homepage: https://github.com/mdibaiee/picedit#readme
changelog-type: ''
hash: 95f396fda85197542915fb3ccbe866b6876baec3bed4ff99d513276bae1cb50b
test-bench-deps: {}
maintainer: [email protected]
synopsis: simple image manipulation functions
changelog: ''
basic-deps:
JuicyPixels: ! '>=3.2.8 && <3.3'
base: ! '>=4.7 && <5'
picedit: -any
hmatrix: ! '>=0.17.0.2 && <0.19'
cli: ! '>=0.1.2 && <0.2'
vector: ! '>=0.11.0.0 && <0.13'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.1.1'
- '0.1.1.2'
- '0.2.0.0'
- '0.2.1.0'
author: Mahdi Dibaiee
latest: '0.2.1.0'
description-type: haddock
description: ! 'Simple set of functions for image manipulation: contrast, brightnesss,
rotation, etc.'
license-name: GPL-3
|
homepage: https://github.com/mdibaiee/picedit#readme
changelog-type: ''
hash: e8ced74872691df973919aafd371bccec2bfe5f08bba3d333f0d5d19a1b2c935
test-bench-deps: {}
maintainer: [email protected]
synopsis: simple image manipulation functions
changelog: ''
basic-deps:
JuicyPixels: ! '>=3.2.8 && <3.3'
base: ! '>=4.7 && <5'
picedit: -any
hmatrix: ! '>=0.17.0.2 && <0.19'
cli: ! '>=0.1.2 && <0.2'
vector: ! '>=0.11.0.0 && <0.13'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.1.1'
- '0.1.1.2'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
author: Mahdi Dibaiee
latest: '0.2.2.0'
description-type: haddock
description: ! 'Simple set of functions for image manipulation: contrast, brightnesss,
rotation, etc.'
license-name: GPL-3
|
Update from Hackage at 2017-02-04T08:54:25Z
|
Update from Hackage at 2017-02-04T08:54:25Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
649dee3ef161e5b2fe988818ea5bee55756f6645
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
stages:
- build
before_script:
- git submodule update --init --recursive
osx:
stage: build
script:
- export PATH=/Library/Developer/Toolchains/swift-latest.xctoolchain/usr/bin:"${PATH}"
- ./bootstrap/build.sh
tags:
- openswift
artifacts:
paths:
- bin/atbuild
|
stages:
- build
before_script:
- git submodule update --init --recursive
osx:
stage: build
script:
- export PATH=/Library/Developer/Toolchains/swift-latest.xctoolchain/usr/bin:"${PATH}"
- ./bootstrap/build.sh
tags:
- openswift
artifacts:
paths:
- .atllbuild/products/atbuild
|
Update products path to not use symlink
|
Update products path to not use symlink
|
YAML
|
apache-2.0
|
AnarchyTools/atbuild,AnarchyTools/atbuild,AnarchyTools/atbuild
|
fbff14b7ee0d6352c3e1204c81becdd7c2821ac4
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
image: tailhook/vagga:v0.7.2-93-g0884e15
stages:
- build
- test
- deploy
before_script:
- export FEATURES_SHASH=`vagga _version_hash --short features`
- export TEST_SHASH=`vagga _version_hash --short test`
- export MYSQL_SHASH=`vagga _version_hash --short mysql`
- "echo Features: $FEATURES_SHASH\\; Test: $TEST_SHASH\\; MySQL: $MYSQL_SHASH."
cache:
paths:
- .gitlab/containers
vagga:build:
stage: build
# basically just run pre-commit linters
script:
- cp -v .gitlab/.vagga.yaml .vagga.settings.yaml
- vagga _build test &
- test_build_pid=$!
- vagga _build mysql &
- mysql_build_pid=$!
- "( wait $test_build_pid; vagga _push_image features ) &"
- "( wait $test_build_pid; vagga _push_image test ) &"
- "( wait $mysql_build_pid; vagga _push_image mysql ) &"
- wait
artifacts:
paths:
- .gitlab/containers
cache: {}
vagga:lint:
stage: test
# basically just run pre-commit linters
script: vagga lint
vagga:test:
stage: test
script: vagga test
|
image: tailhook/vagga:v0.7.2-93-g0884e15
stages:
- build
- test
- deploy
before_script:
- export FEATURES_SHASH=`vagga _version_hash --short features`
- export TEST_SHASH=`vagga _version_hash --short test`
- export MYSQL_SHASH=`vagga _version_hash --short mysql`
- "echo Features: $FEATURES_SHASH\\; Test: $TEST_SHASH\\; MySQL: $MYSQL_SHASH."
cache:
paths:
- .gitlab/containers
vagga:build:
stage: build
# basically just run pre-commit linters
script:
- cp -v .gitlab/.vagga.yaml ~
- cp -v .gitlab/.vagga.yaml /root/
- cp -v .gitlab/.vagga.yaml .vagga.settings.yaml
- vagga _build test &
- test_build_pid=$!
- vagga _build mysql &
- mysql_build_pid=$!
- "( wait $test_build_pid; vagga _push_image features ) &"
- "( wait $test_build_pid; vagga _push_image test ) &"
- "( wait $mysql_build_pid; vagga _push_image mysql ) &"
- wait
artifacts:
paths:
- .gitlab/containers
cache: {}
vagga:lint:
stage: test
# basically just run pre-commit linters
script: vagga lint
vagga:test:
stage: test
script: vagga test
|
Copy config to few most probable places
|
Copy config to few most probable places
|
YAML
|
mit
|
open-craft-guild/aio-feature-flags
|
4294090c32a9942559d1937e5b6c92f6b13f7c43
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
build:
tags:
- maven
- docker
script:
- mvn clean compile
test:
tags:
- maven
- docker
script:
- (cd acme4j-it; mvn -B docker:remove)
- mvn -B -P ci verify
deploy:
tags:
- maven
- docker
script:
- mvn -B install javadoc:javadoc mkdocs:build
|
build:
tags:
- maven
- docker
script:
- mvn clean compile
test:
tags:
- maven
- docker
script:
- (cd acme4j-it; mvn -B docker:remove)
- mvn -B -P ci verify
deploy:
tags:
- maven
- docker
script:
- mvn -B install mkdocs:build javadoc:javadoc
|
Fix mvn order in CI deploy stage
|
Fix mvn order in CI deploy stage
|
YAML
|
apache-2.0
|
shred/acme4j,shred/acme4j,shred/acme4j
|
3b6e10b22f7626a44de3f1fdb81196a9777493fb
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
.rspec: &rspec
stage: test
tags:
- docker
before_script:
- "echo 'gem: --no-document' > ~/.gemrc"
- gem install bundler
- 'git -v || apk --update add git'
- bundle install -j $(nproc)
script:
- ./bin/rspec
rspec ruby-2.4:
image: ruby:2.4-alpine
<<: *rspec
rspec ruby-2.5:
image: ruby:2.5-alpine
<<: *rspec
rspec ruby-2.6:
image: ruby:2.6-alpine
<<: *rspec
rspec ruby-2.7:
image: ruby:2.7-rc-alpine
<<: *rspec
rspec jruby-9.2:
image: jruby:9.2-alpine
<<: *rspec
|
.rspec: &rspec
stage: test
tags:
- docker
before_script:
- "echo 'gem: --no-document' > ~/.gemrc"
- gem install bundler
- 'git -v || apk --update add git'
- bundle install -j $(nproc)
script:
- ./bin/rspec
rspec ruby-2.4:
image: ruby:2.4-alpine
<<: *rspec
rspec ruby-2.5:
image: ruby:2.5-alpine
<<: *rspec
rspec ruby-2.6:
image: ruby:2.6-alpine
<<: *rspec
rspec ruby-2.7:
image: ruby:2.7-rc-alpine
<<: *rspec
rspec jruby-9.2:
image: jruby:9.2-alpine
<<: *rspec
release:
stage: deploy
image: ruby:2.6-alpine
tags:
- docker
script:
- "echo 'gem: --no-document' > ~/.gemrc"
- gem install bundler
- 'git -v || apk --update add git'
- bundle install -j $(nproc)
- 'ruby -ryaml -e "puts YAML.dump({rubygems_api_key: ENV.fetch(%{RUBYGEMS_API_KEY})})" > ~/.gem/credentials'
- chmod 600 ~/.gem/credentials
- bundle exec rake release
only:
- tags
|
Resolve "deploy to rubygems on tag"
|
Resolve "deploy to rubygems on tag"
|
YAML
|
mit
|
eval/envied,eval/envied
|
d25de9929f1820b1f667abb338a84773cf6e1388
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
variables:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ""
POSTGRES_HOST_AUTH_METHOD: 'trust'
SP_VERSION: 11-10-stable
stages:
- test
services:
- postgres:latest
cache:
key: "$CI_PROJECT_NAME"
paths:
- $HOME/.cache/pip
include:
- project: thelabnyc/gitlab-ci-templates
file: /ci/sast.gitlab-ci.yml
test_python37:
stage: test
tags:
- django-oscar
image: python:3.7
script:
- pip install tox
- tox -e 'py37-django{220,300}-drf{310,311}-oscar{21}'
test_python38:
stage: test
tags:
- django-oscar
image: python:3.8
script:
- pip install tox
- tox -e 'py38-django{220,300}-drf{310,311}-oscar{21}'
# test_pypy3:
# stage: test
# tags:
# - django-oscar
# image: pypy:3
# script:
# - pip install tox
# - tox -e 'pypy3-django{220,300}-drf{310,311}-oscar{21}'
|
variables:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ""
POSTGRES_HOST_AUTH_METHOD: 'trust'
stages:
- test
services:
- postgres:latest
cache:
key: "$CI_PROJECT_NAME"
paths:
- $HOME/.cache/pip
test_python37:
stage: test
tags:
- django-oscar
image: python:3.7
script:
- pip install tox
- tox -e 'py37-django{220,300}-drf{310,311}-oscar{21}'
test_python38:
stage: test
tags:
- django-oscar
image: python:3.8
script:
- pip install tox
- tox -e 'py38-django{220,300}-drf{310,311}-oscar{21}'
# test_pypy3:
# stage: test
# tags:
# - django-oscar
# image: pypy:3
# script:
# - pip install tox
# - tox -e 'pypy3-django{220,300}-drf{310,311}-oscar{21}'
|
Remove SAST / DAST testing since it's never actionable and not worth the maintenence
|
Remove SAST / DAST testing since it's never actionable and not worth the maintenence
|
YAML
|
isc
|
thelabnyc/django-oscar-wfrs,thelabnyc/django-oscar-wfrs
|
f4596ba41f205dd65927b4f9f9ea0c5c49aaf145
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
tests:
stage: test
image: quay.io/craigbarnes/lua-testing-extra
script:
- make -j`nproc` local-libgumbo
- make check-all USE_LOCAL_LIBGUMBO=1
# - make clean check-luarocks-make LUAROCKS=luarocks-5.3
# - make check-luarocks-build LUAROCKS=luarocks-5.3
- make coverage.txt USE_LOCAL_LIBGUMBO=1
- sed -n '/^File *Hits .*Coverage$/,/^Total.*%$/p' coverage.txt
- luacov-coveralls-5.3 -t "$COVERALLS_TOKEN"
pages:
stage: deploy
image: quay.io/craigbarnes/pandoc
artifacts: {paths: [public]}
only: [master]
script:
- git fetch --tags
- make -j`nproc` docs dist
- make check-dist
|
tests:
stage: test
image: registry.gitlab.com/craigbarnes/container-lua-testing/image
script:
- make -j`nproc` local-libgumbo
- make check-all USE_LOCAL_LIBGUMBO=1
# - make clean check-luarocks-make LUAROCKS=luarocks-5.3
# - make check-luarocks-build LUAROCKS=luarocks-5.3
- make coverage.txt USE_LOCAL_LIBGUMBO=1
- sed -n '/^File *Hits .*Coverage$/,/^Total.*%$/p' coverage.txt
- luacov-coveralls-5.3 -t "$COVERALLS_TOKEN"
pages:
stage: deploy
image: quay.io/craigbarnes/pandoc
artifacts: {paths: [public]}
only: [master]
script:
- git fetch --tags
- make -j`nproc` docs dist
- make check-dist
|
Use GitLab container registry instead of quay.io for CI container image
|
Use GitLab container registry instead of quay.io for CI container image
|
YAML
|
apache-2.0
|
craigbarnes/lua-gumbo,craigbarnes/lua-gumbo,craigbarnes/lua-gumbo
|
b1c1fc5907216093211fe5ea1585b861f8649f07
|
ansible/roles.yml
|
ansible/roles.yml
|
---
- src: bbatsche.Base
version: v2.1.6
- src: bbatsche.Nginx
version: v4.2.1
- src: bbatsche.PHP
version: v2.2.0
- src: bbatsche.Node
version: v3.0.0
- src: bbatsche.Python
version: v2.1.0
- src: bbatsche.Ruby
version: v3.0.0
- src: bbatsche.MongoDB-Install
version: v2.1.2
- src: bbatsche.MongoDB-Manage
version: v2.1.1
- src: bbatsche.PostgreSQL-Install
version: v2.1.0
- src: bbatsche.PostgreSQL-Manage
version: v2.1.0
- src: bbatsche.WordPress
version: v1.2.1
- src: bbatsche.MySQL
version: v3.1.2
|
---
- src: bbatsche.Base
version: v2.1.6
- src: bbatsche.Nginx
version: v4.2.1
- src: bbatsche.PHP
version: v2.2.0
- src: bbatsche.Node
version: v3.0.0
- src: bbatsche.Python
version: v2.1.0
- src: bbatsche.Ruby
version: v3.0.0
- src: bbatsche.MongoDB-Install
version: v2.1.2
- src: bbatsche.MongoDB-Manage
version: v2.1.1
- src: bbatsche.MySQL
version: v3.1.2
- src: bbatsche.PostgreSQL
version: v3.0.0
|
Update PostgreSQL role; drop Wordpress role
|
Update PostgreSQL role; drop Wordpress role
|
YAML
|
mit
|
bbatsche/Vagrant-Setup
|
068cb48ad64ceb9e5d583a640e9346010dbca41f
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Build & Publish wheel
on:
push:
create:
jobs:
build:
strategy:
# Allows for matrix sub-jobs to fail without canceling the rest
fail-fast: false
matrix:
env: [{TARGET: wheel_manylinux2010_x86_64}, {TARGET: wheel_manylinux2010_i686}, {TARGET: wheel_manylinux2014_aarch64}]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Dependency
run: |
pip install --pre "Cython>=3.0"
- name: Building wheel
run: |
make sdist ${{ matrix.env.TARGET }}
- name: Copy wheels in dist
run: cp wheelhouse*/fastrlock*.whl dist/
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*manylinux*.whl
- name: Archive Wheels
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.env.TARGET }}
path: dist/*manylinux*.whl
if-no-files-found: ignore
|
name: Build & Publish wheel
on:
push:
create:
jobs:
build:
strategy:
# Allows for matrix sub-jobs to fail without canceling the rest
fail-fast: false
matrix:
env: [{TARGET: wheel_manylinux2010_x86_64}, {TARGET: wheel_manylinux2010_i686}, {TARGET: wheel_manylinux2014_aarch64}]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Dependency
run: |
pip install --pre "Cython>=3.0.0a9"
- name: Building wheel
run: |
make sdist ${{ matrix.env.TARGET }}
- name: Copy wheels in dist
run: cp wheelhouse*/fastrlock*.whl dist/
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*manylinux*.whl
- name: Archive Wheels
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.env.TARGET }}
path: dist/*manylinux*.whl
if-no-files-found: ignore
|
Use Cython 3.0 for the build to see if it makes a performance difference.
|
Use Cython 3.0 for the build to see if it makes a performance difference.
|
YAML
|
mit
|
scoder/fastrlock,scoder/fastrlock
|
112291721c17fb0eb80a76953816153bc6dd7b00
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: CI
on: [push, pull_request]
jobs:
Package:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [ "leap_latest" ]
container:
image: registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
steps:
- name: Git Checkout
uses: actions/checkout@v2
- name: Install Prerequisites
run: rake build_dependencies:install
# just for easier debugging...
- name: Inspect Installed Packages
run: rpm -qa | sort
- name: Package Build
run: yast-ci-ruby -o package
|
# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: CI
on: [push, pull_request]
jobs:
Package:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro: [ "leap_latest" ]
container:
image: registry.opensuse.org/yast/head/containers_${{matrix.distro}}/yast-ruby
steps:
- name: Git Checkout
uses: actions/checkout@v2
- name: Install Prerequisites
run: rake build_dependencies:install
# just for easier debugging...
- name: Inspect Installed Packages
run: rpm -qa | sort
- name: Package Build
run: yast-ci-ruby -o package
|
Disable fail-fast in GitHub Actions
|
Disable fail-fast in GitHub Actions
|
YAML
|
mit
|
yast/skelcd-control-SLED,yast/skelcd-control-SLED
|
aced742c32bcbc9e68b757100a7c2f2243b8d04a
|
wercker.yml
|
wercker.yml
|
box: wercker/nodejs
# Build definition
build:
# The steps that will be executed on build
steps:
# A step that executes `npm install` command
- npm-install
# A custom script step, name value is used in the UI
# and the code value contains the command that get executed
- script:
name: harp compile
code: |
harp compile
deploy :
steps :
- script:
name: Deploy to octohost.
code: |-
git push $GIT_REMOTE master
|
box: wercker/nodejs
# Build definition
build:
# The steps that will be executed on build
steps:
- script:
name: harp compile
code: |
npm -g install
harp compile
deploy :
steps :
- script:
name: Deploy to octohost.
code: |-
git push $GIT_REMOTE master
|
Install globally so that harp compile works.
|
Install globally so that harp compile works.
|
YAML
|
apache-2.0
|
octohost/www
|
6545a8fad3358f76b6187c8bb5f3f356f920950d
|
wercker.yml
|
wercker.yml
|
box: wercker/python
build:
steps:
- virtualenv:
name: Setup virtual environment
- pip-install:
name: Install requirements
auto_run_wheel: True
- script:
name: Run unit testing
code: |
python setup.py test
|
box: wercker/python
build:
steps:
- virtualenv:
name: Setup virtual environment
- pip-install:
name: Install requirements
auto_run_wheel: True
- script:
name: Run unit testing
code: |
python setup.py test
deploy:
steps:
- add-to-known_hosts:
hostname: $TARGET_HOST
- mktemp:
envvar: PRIVATEKEY_PATH
- create-file:
name: write key
filename: $PRIVATEKEY_PATH
content: $SSH_KEY_PRIVATE
overwrite: true
hide-from-log: true
- script:
name: transfer application
code: |
scp -r -i $PRIVATEKEY_PATH -o StrictHostKeyChecking=no -o UserKnownHostsFile=no * $TARGET_USER@$TARGET_HOST:dropbot/
- script:
name: building virtualenv
code: ssh -i $PRIVATEKEY_PATH -l root -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no $TARGET_HOST virtualenv venv --no-site-packages
- script:
name: installing requirements
code: ssh -i $PRIVATEKEY_PATH -l root -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no $TARGET_HOST source venv/bin/activate && cd dropbot/ && pip install -r requirements
|
Update wrecker config for SSH deployments
|
Update wrecker config for SSH deployments
|
YAML
|
mit
|
nikdoof/dropbot,nikdoof/dropbot
|
f6a6195d10452da79b0068a7003042fa03c87ab4
|
appveyor.yml
|
appveyor.yml
|
environment:
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
# - PYTHON: "C:\\Python27"
# - PYTHON: "C:\\Python33"
# - PYTHON: "C:\\Python34"
# - PYTHON: "C:\\Python35"
# - PYTHON: "C:\\Python27-x64"
# - PYTHON: "C:\\Python33-x64"
# DISTUTILS_USE_SDK: "1"
# - PYTHON: "C:\\Python34-x64"
# DISTUTILS_USE_SDK: "1"
# - PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
install:
# We need wheel installed to build wheels
- "%PYTHON%\\python.exe -m pip install -U pip wheel setuptools"
- "%PYTHON%\\python.exe -m pip install -r tests/requirements.txt"
- "%PYTHON%\\python.exe setup.py install"
build: off
test_script:
- "%PYTHON%\\python.exe -m unittest discover -vv"
|
environment:
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
# - PYTHON: "C:\\Python27"
# - PYTHON: "C:\\Python33"
# - PYTHON: "C:\\Python34"
# - PYTHON: "C:\\Python35"
# - PYTHON: "C:\\Python27-x64"
# - PYTHON: "C:\\Python33-x64"
# DISTUTILS_USE_SDK: "1"
# - PYTHON: "C:\\Python34-x64"
# DISTUTILS_USE_SDK: "1"
# - PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
install:
# We need wheel installed to build wheels
- "%PYTHON%\\python.exe -m pip install -U pip wheel setuptools"
- "%PYTHON%\\python.exe -m pip install pytest"
- "%PYTHON%\\python.exe -m pip install -r tests/requirements.txt"
- "%PYTHON%\\python.exe setup.py install"
build: off
test_script:
- "%PYTHON%\\python.exe -m pytest"
|
Revert back to testing with `pytest` in AppVeyor CI
|
Revert back to testing with `pytest` in AppVeyor CI
|
YAML
|
mit
|
PyFilesystem/pyfilesystem2
|
8663047410ee32b4de1fca7e4a0db0dcab7f6c4a
|
appveyor.yml
|
appveyor.yml
|
version: $(ShortVersion).{build}
image:
- Visual Studio 2017
- Ubuntu
configuration: Release
nuget:
project_feed: true
disable_publish_on_pr: true
artifacts:
- path: build\artifacts\*.nupkg
deploy: off
skip_commits:
files:
- LICENSE
- README.md
- .travis.yml
- Dotnet.Core.Infrastructure.sln.DotSettings
for:
-
matrix:
only:
- image: Visual Studio 2017
build_script:
- ps: >-
cd build
.\build.ps1
-
matrix:
only:
- image: Ubuntu
build_script:
- sh: >-
cd build
./build.sh
|
version: '{build}'
image:
- Visual Studio 2017
- Ubuntu
configuration: Release
nuget:
project_feed: true
disable_publish_on_pr: true
artifacts:
- path: build\artifacts\*.nupkg
deploy: off
skip_commits:
files:
- LICENSE
- README.md
- .travis.yml
- Dotnet.Core.Infrastructure.sln.DotSettings
for:
-
matrix:
only:
- image: Visual Studio 2017
build_script:
- ps: >-
cd build
.\build.ps1
-
matrix:
only:
- image: Ubuntu
build_script:
- sh: >-
cd build
./build.sh
|
Build number was fixed in AppVeyor build config
|
Build number was fixed in AppVeyor build config
|
YAML
|
mit
|
Byndyusoft/Byndyusoft.Dotnet.Core.Infrastructure,Byndyusoft/Byndyusoft.Dotnet.Core.Infrastructure,litichevskiydv/Byndyusoft.Dotnet.Core.Infrastructure,litichevskiydv/Byndyusoft.Dotnet.Core.Infrastructure,litichevskiydv/Byndyusoft.Dotnet.Core.Infrastructure,Byndyusoft/Byndyusoft.Dotnet.Core.Infrastructure
|
cf2234214374236b04589ddfe414bbef843ffa94
|
appveyor.yml
|
appveyor.yml
|
version: 1.0.{build}
branches:
only:
- master
before_build:
- ps: nuget restore PhotoLife\PhotoLife.sln
build:
project: PhotoLife\PhotoLife.sln
verbosity: minimal
after_test:
- PhotoLife\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"PhotoLife\packages\NUnit.ConsoleRunner.3.6.0\tools\nunit3-console.exe" -targetargs:"/domain:single PhotoLife\PhotoLife.Tests\bin\Debug\PhotoLife.Tests.dll" -output:coverage.xml
- PhotoLife\packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover coverage.xml
|
version: 1.0.{build}
branches:
only:
- master
before_build:
- ps: nuget restore PhotoLife\PhotoLife.sln
build:
project: PhotoLife\PhotoLife.sln
verbosity: minimal
after_test:
- PhotoLife\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"PhotoLife\packages\NUnit.ConsoleRunner.3.6.0\tools\nunit3-console.exe" -targetargs:"/domain:single PhotoLife\PhotoLife.Tests\bin\Debug\PhotoLife.Tests.dll PhotoLife\PhotoLife.Data.Tests\bin\Debug\PhotoLife.Data.Tests.dll" -output:coverage.xml
- PhotoLife\packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover coverage.xml
|
Update coveralls path to tests
|
Update coveralls path to tests
|
YAML
|
mit
|
Branimir123/PhotoLife,Branimir123/PhotoLife,Branimir123/PhotoLife
|
a7f074f13bd769b5c2a0f5651057605057549c90
|
appveyor.yml
|
appveyor.yml
|
version: '{branch}-{build}'
pull_requests:
do_not_increment_build_number: true
build_script:
- ps: >-
cd src/DarkSkyCore
dotnet restore
dotnet build
cd ../../
dotnet pack --configuration release -o nupkgs/ src/DarkSkyCore
test_script:
- ps: >-
cd test/DarkSkyCore.Tests
dotnet restore
dotnet test
artifacts:
- path: nupkgs/
name: nuget
deploy:
- provider: NuGet
server: nuget.org
api_key:
secure: YAF0FoHQVDwWAUmD/H8JUYkjiv4baMyRNdTaOgIw/NVMmo9IiYPq1wPOY525ubJG
artifact: nuget
on:
branch: master
APPVEYOR_REPO_TAG: true
|
version: '{branch}-{build}'
pull_requests:
do_not_increment_build_number: true
build_script:
- ps: >-
cd src/DarkSkyCore
dotnet restore
dotnet build
cd ../../
dotnet pack --configuration release -o nupkgs/ src/DarkSkyCore
test_script:
- ps: >-
cd test/DarkSkyCore.Tests
dotnet restore
dotnet test
artifacts:
- path: nupkgs/
name: nuget
deploy:
- provider: NuGet
server: nuget.org
api_key:
secure: YAF0FoHQVDwWAUmD/H8JUYkjiv4baMyRNdTaOgIw/NVMmo9IiYPq1wPOY525ubJG
artifact: /nupkgs//.*\.nupkg/
on:
branch: master
APPVEYOR_REPO_TAG: true
|
Call out nupkg artifact fro deployment
|
Call out nupkg artifact fro deployment
|
YAML
|
mit
|
amweiss/dark-sky-core
|
4b7ebd67a8a26604a57a30e7046833a40aa5a87c
|
appveyor.yml
|
appveyor.yml
|
build: false
environment:
matrix:
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.3"
PYTHON_ARCH: "64"
init:
- "echo %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "cinst vlc"
- "%PYTHON%/Scripts/pip.exe install -r requirements.txt"
test_script:
- ps: '&"$env:PYTHON/python.exe" ./tests.py -v'
- "%PYTHON%/Scripts/flake8.exe"
|
build: false
environment:
matrix:
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.3"
PYTHON_ARCH: "64"
init:
- "echo %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "cinst vlc"
- "%PYTHON%/Scripts/pip.exe install -r requirements.txt"
test_script:
- ps: iex "$env:PYTHON/python.exe ./tests.py -v"
- "%PYTHON%/Scripts/flake8.exe"
|
Use iex and environment variable
|
Use iex and environment variable
|
YAML
|
mit
|
Nadeflore/dakara-player-vlc
|
513ac9336de2cf909ecd86a2abf2ad4623191f17
|
appveyor.yml
|
appveyor.yml
|
# what combinations to test
environment:
matrix:
# Node.js
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "2.5"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
# Don't actually build.
build: off
|
# what combinations to test
environment:
matrix:
# Node.js
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "2.5"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm rebuild
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
# Don't actually build.
build: off
|
Change to force npm rebuild after each node version change
|
Change to force npm rebuild after each node version change
|
YAML
|
mit
|
FeodorFitsner/node-sentinel-file-watcher,FeodorFitsner/node-sentinel-file-watcher,FeodorFitsner/node-sentinel-file-watcher
|
2b325df58476678f2cd228055a7a7ecf1ea7e60b
|
appveyor.yml
|
appveyor.yml
|
branches:
only:
- master
clone_depth: 5
environment:
matrix:
- CMAKE_GENERATOR: "Visual Studio 12 2013"
CMAKE_PREFIX_PATH: C:/Qt/5.6.3/msvc2013
CONFIGURATION: Release
- CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
CMAKE_PREFIX_PATH: C:/Qt/5.6.3/msvc2015_64
CONFIGURATION: Release
BOOST_ROOT: c:\Libraries\boost_1_60_0
install:
- set PATH=%PATH%;%CMAKE_PREFIX_PATH%\bin
build_script:
- mkdir build && cd build
- cmake .. -G"%CMAKE_GENERATOR%" -DBoost_INCLUDE_DIR=%BOOST_ROOT%
- cmake --build . --config %CONFIGURATION%
- cmake --build . --config %CONFIGURATION% --target install
test_script:
- ctest -C %CONFIGURATION% -V
- qmlscene --quit -I lib/qml ../examples/TestApp.qml
|
branches:
only:
- master
clone_depth: 5
environment:
matrix:
- CMAKE_GENERATOR: "Visual Studio 12 2013"
CMAKE_PREFIX_PATH: C:\Qt\5.6.3\msvc2013
CONFIGURATION: Release
- CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
CMAKE_PREFIX_PATH: C:\Qt\5.6.3\msvc2015_64
CONFIGURATION: Release
BOOST_ROOT: C:\Libraries\boost_1_60_0
install:
- set PATH=%PATH%;%CMAKE_PREFIX_PATH%\bin
build_script:
- mkdir build && cd build
- cmake .. -G"%CMAKE_GENERATOR%" -DBoost_INCLUDE_DIR=%BOOST_ROOT%
- cmake --build . --config %CONFIGURATION%
- cmake --build . --config %CONFIGURATION% --target install
test_script:
- ctest -C %CONFIGURATION% -V
- qmlscene --quit -I lib/qml ../examples/TestApp.qml
|
Make the paths match AppVeyor's documentation
|
Style: Make the paths match AppVeyor's documentation
See https://www.appveyor.com/docs/build-environment/#build-worker-images
|
YAML
|
mit
|
AbletonAG/aqt-stylesheets,AbletonAG/aqt-stylesheets
|
259614cf2209aa6aef13ce3015115a5b8197c660
|
appveyor.yml
|
appveyor.yml
|
version: '1.0.{build}'
environment:
matrix:
- CHILDPROCESS_POSIX_SPAWN: true
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 23-x64
- CHILDPROCESS_POSIX_SPAWN: false
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 23-x64
- CHILDPROCESS_POSIX_SPAWN: true
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 24-x64
- CHILDPROCESS_POSIX_SPAWN: false
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 24-x64
- CHILDPROCESS_POSIX_SPAWN: true
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 25-x64
- CHILDPROCESS_POSIX_SPAWN: false
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 25-x64
- CHILDPROCESS_POSIX_SPAWN: true
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 26-x64
- CHILDPROCESS_POSIX_SPAWN: false
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 26-x64
install:
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
- bundle install
build: off
before_test:
- ruby -v
- gem -v
- bundle -v
test_script:
- bundle exec rake
|
version: '1.0.{build}'
environment:
matrix:
- CHILDPROCESS_POSIX_SPAWN: true
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 24-x64
- CHILDPROCESS_POSIX_SPAWN: false
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 24-x64
- CHILDPROCESS_POSIX_SPAWN: true
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 25-x64
- CHILDPROCESS_POSIX_SPAWN: false
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 25-x64
- CHILDPROCESS_POSIX_SPAWN: true
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 26-x64
- CHILDPROCESS_POSIX_SPAWN: false
CHILDPROCESS_UNSET: should-be-unset
RUBY_VERSION: 26-x64
install:
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
- bundle install
build: off
before_test:
- ruby -v
- gem -v
- bundle -v
test_script:
- bundle exec rake
|
Remove Ruby 2.3 from Windows builds
|
Remove Ruby 2.3 from Windows builds
This version is EOL.
|
YAML
|
mit
|
enkessler/childprocess
|
764a940253b19ddd88ea725c4ede111f43557478
|
metadata/de.kromke.andreas.musictagger.yml
|
metadata/de.kromke.andreas.musictagger.yml
|
Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Andreas Kromke
SourceCode: https://gitlab.com/AndreasK/classical-music-tagger
IssueTracker: https://gitlab.com/AndreasK/classical-music-tagger/issues
Changelog: https://gitlab.com/AndreasK/classical-music-tagger/blob/HEAD/app/src/main/assets/version-history.txt
AutoName: Classical Music Tagger
Summary: A plain audio file metadata editor especially for classical music
Description: |-
While most Android applications not even know about composers, this one
additionally handles works, movements, conductors etc.
This application is designed as auxiliary tool for the Unpopular Music Player
and the Opus 1 Music Player, but alternatively also runs in a standalone mode
showing a file browser.
RepoType: git
Repo: https://gitlab.com/AndreasK/classical-music-tagger.git
Builds:
- versionName: 1.0.1
versionCode: 9
commit: v1.0.1
subdir: app
gradle:
- yes
AutoUpdateMode: None
UpdateCheckMode: Tags
CurrentVersion: 1.0.1
CurrentVersionCode: 9
|
Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Andreas Kromke
SourceCode: https://gitlab.com/AndreasK/classical-music-tagger
IssueTracker: https://gitlab.com/AndreasK/classical-music-tagger/issues
Changelog: https://gitlab.com/AndreasK/classical-music-tagger/blob/HEAD/app/src/main/assets/version-history.txt
AutoName: Classical Music Tagger
Summary: A plain audio file metadata editor especially for classical music
Description: |-
While most Android applications not even know about composers, this one
additionally handles works, movements, conductors etc.
This application is designed as auxiliary tool for the Unpopular Music Player
and the Opus 1 Music Player, but alternatively also runs in a standalone mode
showing a file browser.
RepoType: git
Repo: https://gitlab.com/AndreasK/classical-music-tagger.git
Builds:
- versionName: 1.0.1
versionCode: 9
commit: v1.0.1
subdir: app
gradle:
- yes
AutoUpdateMode: None
UpdateCheckMode: Tags
CurrentVersion: '1.1'
CurrentVersionCode: 10
|
Update CV of Classical Music Tagger to 1.1 (10)
|
Update CV of Classical Music Tagger to 1.1 (10)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata
|
80fa5e4f89d4e0f860a4613d382f6d8c38a91994
|
tmuxinator/blog.yml
|
tmuxinator/blog.yml
|
# ~/.tmuxinator/blog.yml
name: blog
root: ~/blogs/paulfioravanti.github.io
on_project_first_start:
- bundle install
- bundle update
- open --background https://analytics.google.com/analytics
- open --background https://paulfioravanti.disqus.com
- open --background http://localhost:4000
# Grip
- open --background http://localhost:6419
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
pre_window:
- asdf local ruby 2.5.0
- asdf local nodejs 9.6.1
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
startup_window: editor
windows:
- editor: vim
- guard: bundle exec guard
- server: bundle exec jekyll liveserve --drafts
- grip: grip
|
# ~/.tmuxinator/blog.yml
<% jekyll_port = 5000 %>
<% grip_port = 6419 %>
name: blog
root: ~/blogs/paulfioravanti.github.io
on_project_first_start:
- bundle install
- bundle update
- open --background https://analytics.google.com/analytics
- open --background https://paulfioravanti.disqus.com
# Jekyll server
- open --background http://localhost:<%= jekyll_port %>
# Grip server
- open --background http://localhost:<%= grip_port %>
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
pre_window:
- asdf local ruby 2.5.0
- asdf local nodejs 9.6.1
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
startup_window: editor
windows:
- editor: vim
- guard: bundle exec guard
- server: bundle exec jekyll liveserve --drafts --port <%= jekyll_port %>
- grip: grip
|
Change Jekyll server port so it doesn't conflict with Phoenix
|
Change Jekyll server port so it doesn't conflict with Phoenix
|
YAML
|
mit
|
paulfioravanti/dotfiles,paulfioravanti/dotfiles,paulfioravanti/dotfiles
|
172d1710bb535ba34375b9d0a0a64f1a6ea936da
|
lib/.travis.yml
|
lib/.travis.yml
|
rvm:
- 1.9.2
- 1.9.3
- ruby-head
- rbx-19mode
env:
- JRUBY_OPTS="--1.9"
|
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.2
- ruby-head
- rbx-19mode
env:
- JRUBY_OPTS="--1.9"
|
Add Ruby 2 & 2.1 to Travis
|
Add Ruby 2 & 2.1 to Travis
|
YAML
|
mit
|
fogisland/grape-active_model_serializers,ruby-grape/grape-active_model_serializers,gaugau/grape-active_model_serializers,Thanx/grape-active_model_serializers,kulte/grape-active_model_serializers,jrhe/grape-active_model_serializers,onomated/grape-active_model_serializers
|
69b1b9e9c24df8de68d281a37bb45e055b229b91
|
.github/release-drafter.yml
|
.github/release-drafter.yml
|
name-template: 'v$RESOLVED_VERSION π'
tag-template: 'v$RESOLVED_VERSION'
template: |
$CHANGES
# Emoji reference: https://gitmoji.carloscuesta.me/
categories:
- title: π₯ Removed
label: removed
- title: β οΈ Deprecated
label: deprecated
- title: π New features
labels:
- feature
- title: β¨ Improvements
labels:
- enhancement
- title: π Bug Fixes
labels:
- bug
- fix
- bugfix
- regression
- title: π Documentation updates
label: documentation
- title: π¦ Dependency updates
label: dependencies
- title: π§ Internal changes
label: internal
- title: π¦ Tests
labels:
- test
- tests
version-resolver:
major:
labels:
- 'removed'
minor:
labels:
- 'feature'
- 'enhancement'
- 'deprecated'
patch:
labels:
- 'dependencies'
- 'documentation'
- 'tests'
- 'internal'
default: minor
replacers:
- search: '/\[*JENKINS-(\d+)\]*\s*-*\s*/g'
replace: '[JENKINS-$1](https://issues.jenkins.io/browse/JENKINS-$1) - '
|
name-template: 'v$RESOLVED_VERSION π'
tag-template: 'v$RESOLVED_VERSION'
template: |
$CHANGES
# Emoji reference: https://gitmoji.carloscuesta.me/
categories:
- title: π₯ Removed
label: removed
- title: β οΈ Deprecated
label: deprecated
- title: π New features
labels:
- feature
- title: β¨ Improvements
labels:
- enhancement
- title: π Bug Fixes
labels:
- bug
- fix
- bugfix
- regression
- title: π Documentation updates
label: documentation
- title: π¦ Dependency updates
label: dependencies
- title: π§ Internal changes
label: internal
- title: π¦ Tests
labels:
- test
- tests
version-resolver:
major:
labels:
- 'removed'
minor:
labels:
- 'feature'
- 'enhancement'
- 'deprecated'
patch:
labels:
- 'dependencies'
- 'documentation'
- 'tests'
- 'internal'
- 'bug'
default: minor
replacers:
- search: '/\[*JENKINS-(\d+)\]*\s*-*\s*/g'
replace: '[JENKINS-$1](https://issues.jenkins.io/browse/JENKINS-$1) - '
|
Include label `bug` when detecting minor version.
|
Include label `bug` when detecting minor version.
|
YAML
|
mit
|
jenkinsci/analysis-model,jenkinsci/analysis-model,jenkinsci/analysis-model,jenkinsci/analysis-model
|
ea91e365c271414b237545d585cf1e5432b70686
|
.github/release-drafter.yml
|
.github/release-drafter.yml
|
name-template: 'v$NEXT_MINOR_VERSION'
tag-template: 'v$NEXT_MINOR_VERSION'
categories:
- title: '𧬠Features'
labels:
- 'feature'
- title: 'π Bug Fixes'
labels:
- 'fix'
- title: 'π Performance Tweaks'
labels:
- 'performance'
- title: 'π¨ Style Tweaks'
labels:
- 'style tweak'
- title: 'βοΈ REST API Changes'
labels:
- 'api'
- title: 'β οΈ Deprecation'
labels:
- 'deprecation'
- title: 'π Documentation'
labels:
- 'documentation'
- title: 'π§Ή Cleanup'
labels:
- 'cleanup'
- title: 'π·ββοΈ Testing, Configuration & Deployment'
labels:
- 'test'
- 'devops'
- title: 'π§° Maintenance'
labels:
- 'chore'
- 'dependencies'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
## Changes
$CHANGES
## π΅οΈββοΈ Full commit logs
- https://github.com/oncokb/oncokb/compare/$PREVIOUS_TAG...v$NEXT_MINOR_VERSION
|
name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: '𧬠Features'
labels:
- 'feature'
- title: 'π Bug Fixes'
labels:
- 'fix'
- title: 'π Performance Tweaks'
labels:
- 'performance'
- title: 'π¨ Style Tweaks'
labels:
- 'style tweak'
- title: 'βοΈ REST API Changes'
labels:
- 'api'
- title: 'β οΈ Deprecation'
labels:
- 'deprecation'
- title: 'π Documentation'
labels:
- 'documentation'
- title: 'π§Ή Cleanup'
labels:
- 'cleanup'
- title: 'π·ββοΈ Testing, Configuration & Deployment'
labels:
- 'test'
- 'devops'
- title: 'π§° Maintenance'
labels:
- 'chore'
- 'dependencies'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
## Changes
$CHANGES
## π΅οΈββοΈ Full commit logs
- https://github.com/oncokb/oncokb/compare/$PREVIOUS_TAG...v$NEXT_PATCH_VERSION
|
Update action files to align the version level to patch
|
Update action files to align the version level to patch
|
YAML
|
agpl-3.0
|
zhx828/oncokb,oncokb/oncokb,zhx828/oncokb,zhx828/oncokb,oncokb/oncokb,oncokb/oncokb
|
03d679f7426daedf24f37ef91ed4a93846bd5a2f
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build plugin
run: |
./gradlew downloadDependencies
mvn verify
|
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 17]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: maven
- run: ./gradlew downloadDependencies
- run: mvn --batch-mode --update-snapshots verify
|
Enable cache and use adoptium JDK, including Java 17
|
Enable cache and use adoptium JDK, including Java 17
|
YAML
|
apache-2.0
|
thymeleaf/thymeleaf-extras-eclipse-plugin
|
f9c1bffb98b2239a0f2fefc41b98da62e16f7520
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: Build an test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Cache Gradle
uses: actions/cache@v2
env:
cache-name: gradle-cache
with:
path: |
${{ github.workspace }}/.opt/cache/gradle/wrapper
${{ github.workspace }}/.opt/cache/gradle/caches
${{ github.workspace }}/.opt/cache/gradle/caches
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/wrapper/gradle-wrapper.properties', '**/build.gradle') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build test -Pci
|
name: Build and test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 11
cache: 'gradle'
- name: Build and test with Gradle
run: ./gradlew build test -Pci
- name: Cleanup Gradle Cache
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions.
# Restoring these files from a GitHub Actions cache might cause problems for future builds.
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties
|
Use updated JDK setup and gradle caching
|
Use updated JDK setup and gradle caching
|
YAML
|
mit
|
cemrich/zapp
|
6dbb4768476b077515aa1af98d4e3b7f3323a707
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: Build
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
- uses: php-actions/phpunit@v3
with:
php_extensions: zip
deploy:
runs-on: ubuntu-latest
if: ${{ github.ref_name == 'master' }}
needs: test
steps:
- uses: actions/checkout@v2
- uses: akhileshns/[email protected]
with:
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
heroku_app_name: letterboxd-ical
heroku_email: ${{ secrets.HEROKU_EMAIL }}
env:
HD_LETTERBOXD_USERNAME: ${{ secrets.LETTERBOXD_USERNAME }}
HD_LETTERBOXD_PASSWORD: ${{ secrets.LETTERBOXD_PASSWORD }}
|
name: Build
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5
- uses: php-actions/phpunit@v3
with:
php_extensions: zip
deploy:
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
needs: test
steps:
- uses: actions/checkout@v2
- uses: akhileshns/[email protected]
with:
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
heroku_app_name: letterboxd-ical
heroku_email: ${{ secrets.HEROKU_EMAIL }}
env:
HD_LETTERBOXD_USERNAME: ${{ secrets.LETTERBOXD_USERNAME }}
HD_LETTERBOXD_PASSWORD: ${{ secrets.LETTERBOXD_PASSWORD }}
|
Switch workflow to deploy from tags
|
Switch workflow to deploy from tags
|
YAML
|
mit
|
cmbuckley/letterboxd-ics,cmbuckley/letterboxd-ics
|
affcff17607ecd6929ae61cc95b2b195310761c8
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
on: push
name: Build
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
RAILS_ENV: test
CI: true
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
bundler-cache: true
- name: Run Specs
run: |
bundle exec rake
|
on: push
name: Build
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [
2.7
]
env:
RAILS_ENV: test
CI: true
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Specs
run: |
bundle exec rake
|
Configure matrix for ruby versions
|
Configure matrix for ruby versions
|
YAML
|
mit
|
adhearsion/adhearsion,adhearsion/adhearsion,adhearsion/adhearsion,adhearsion/adhearsion
|
2b1767b9c00476aef15b7ac2c66e391ca44e39ba
|
mkdocs.yml
|
mkdocs.yml
|
site_name: Terminals Are Sexy
site_url: http://terminalsare.sexy
site_description: A curated list of sexy Terminal frameworks, extensions & resources for CLI lovers.
site_author: Nikolaos Kamarinakis
repo_url: https://github.com/k4m4/terminals-are-sexy
edit_uri: blob/master/readme.md
theme: cinder
google_analytics: ['UA-91770911-1', 'terminalsare.sexy']
nav:
- 'Terminals Are Sexy': 'index.md'
|
site_name: Terminals Are Sexy
site_url: http://terminalsare.sexy
site_description: A curated list of sexy Terminal frameworks, extensions & resources for CLI lovers.
site_author: Nikolaos Kamarinakis
repo_url: https://github.com/k4m4/terminals-are-sexy
edit_uri: ''
theme: cinder
google_analytics: ['UA-91770911-1', 'terminalsare.sexy']
nav:
- 'Terminals Are Sexy': 'index.md'
|
Remove "edit URL link" from site
|
Remove "edit URL link" from site
|
YAML
|
cc0-1.0
|
k4m4/terminals-are-sexy,unixorn/terminals-are-sexy
|
0a9e4ba1107019fec41d66c8ee0f0882bca06761
|
tools/jenkins/job-helpers/devstacks.yaml
|
tools/jenkins/job-helpers/devstacks.yaml
|
1: {name: "Single node, ML2: default", job: "devstack_single_node_nightly"}
2: {name: "Multi node, ML2: default", job: "devstack_multinode"}
3: {name: "Multi node with Nexus", job: "topo_2node_nexus"}
4: {name: "Single node with DHCP6", job: "topo_aio_dhcp6"}
5: {name: "Single node with Dibbler", job: "topo_aio_dibbler"}
6: {name: "Plugin N1KV", job: "n1kv_neutron"}
|
1: {name: "Single node, ML2: default", job: "devstack_single_node_nightly"}
2: {name: "Multi node, ML2: default", job: "devstack_multinode"}
3: {name: "Multi node with Nexus", job: "topo_2node_nexus"}
4: {name: "Single node with DHCP6", job: "topo_aio_dhcp6"}
5: {name: "Single node with Dibbler", job: "topo_aio_dibbler"}
6: {name: "Plugin N1KV", job: "n1kv_neutron"}
7: {name: "CSR1KV", job: "csr1kv_nightly"}
|
Enable CSR1KV job in the report.
|
Enable CSR1KV job in the report.
Change-Id: Id1f8455e2b38816f07e76481c2fde91206e391fd
|
YAML
|
apache-2.0
|
CiscoSystems/os-sqe,CiscoSystems/os-sqe,CiscoSystems/os-sqe
|
7839175402205fbfdbe7d25c33048d6fbb25d00e
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install -g npm@7
- uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- run: npm ci
- run: npm test
|
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node: [12, 14]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install -g npm@7
- uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- run: npm ci
- run: npm test
|
Use Ubuntu 20.04 on CI
|
Use Ubuntu 20.04 on CI
|
YAML
|
mit
|
kensho/babel-preset-kensho,kensho/babel-preset-kensho
|
a9ee45e06d9ce46bccfb28ebe4a80095eddd0fc5
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Publish package to GitHub Packages
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
java-version: [8, 11, 17]
runs-on: ${{ matrix.os }}
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: ${{ matrix.java-version }}
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 }}
|
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
java-version: [8, 11, 17]
runs-on: ${{ matrix.os }}
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: ${{ matrix.java-version }}
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 }}
|
Change name of the workflow
|
Change name of the workflow
|
YAML
|
apache-2.0
|
Codeforces/codeforces-commons,Codeforces/codeforces-commons
|
31ad6a8764abbc78d1b526999f4114b47cfa6c4d
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: GitHub CI
on:
pull_request:
push:
schedule:
- cron: 0 0 * * 0
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
jobs:
generate-jobs:
name: Generate Jobs
runs-on: ubuntu-latest
outputs:
strategy: ${{ steps.generate-jobs.outputs.strategy }}
steps:
- uses: actions/checkout@v3
- id: generate-jobs
name: Generate Jobs
run: |
git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew
strategy="$(~/bashbrew/scripts/github-actions/generate.sh)"
echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
jq . <<<"$strategy" # sanity check / debugging aid
test:
needs: generate-jobs
strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Prepare Environment
run: ${{ matrix.runs.prepare }}
- name: Pull Dependencies
run: ${{ matrix.runs.pull }}
- name: Build ${{ matrix.name }}
run: ${{ matrix.runs.build }}
- name: History ${{ matrix.name }}
run: ${{ matrix.runs.history }}
- name: Test ${{ matrix.name }}
run: ${{ matrix.runs.test }}
- name: '"docker images"'
run: ${{ matrix.runs.images }}
|
name: GitHub CI
on:
pull_request:
push:
schedule:
- cron: 0 0 * * 0
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
jobs:
generate-jobs:
name: Generate Jobs
runs-on: ubuntu-latest
outputs:
strategy: ${{ steps.generate-jobs.outputs.strategy }}
steps:
- uses: actions/checkout@v3
- uses: docker-library/bashbrew@HEAD
- id: generate-jobs
name: Generate Jobs
run: |
strategy="$("$BASHBREW_SCRIPTS/github-actions/generate.sh")"
echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
jq . <<<"$strategy" # sanity check / debugging aid
test:
needs: generate-jobs
strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Prepare Environment
run: ${{ matrix.runs.prepare }}
- name: Pull Dependencies
run: ${{ matrix.runs.pull }}
- name: Build ${{ matrix.name }}
run: ${{ matrix.runs.build }}
- name: History ${{ matrix.name }}
run: ${{ matrix.runs.history }}
- name: Test ${{ matrix.name }}
run: ${{ matrix.runs.test }}
- name: '"docker images"'
run: ${{ matrix.runs.images }}
|
Use new "bashbrew" composite action
|
Use new "bashbrew" composite action
|
YAML
|
mit
|
infosiftr/pypy,docker-library/pypy
|
5b765a089fdfd8a16beb3e25d4a05278e8d3297a
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push, pull_request]
jobs:
phpspec:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.2, 7.3, 7.4, 8.0]
steps:
- uses: actions/checkout@v1
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Validate Composer files
run: composer validate --no-check-all --strict
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: php vendor/bin/phpspec run
|
name: CI
on: [push, pull_request]
jobs:
phpspec:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.2, 7.3, 7.4, 8.0, 8.1]
steps:
- uses: actions/checkout@v1
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Validate Composer files
run: composer validate --no-check-all --strict
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: php vendor/bin/phpspec run
|
Test with PHP 8.1, too
|
CI: Test with PHP 8.1, too
|
YAML
|
mit
|
franzliedke/studio
|
12d6e9b0a18fc0fde5e58b665a1594ecd7a51b19
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-latest
name: Tests on ${{matrix.otp}}
strategy:
matrix:
otp: ['24.1']
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: 3.17.0
- name: Common Test tests
run: rebar3 ct --sname ct
- name: Dialyzer
run: rebar3 dialyzer
|
on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
jobs:
test:
runs-on: ubuntu-latest
name: Tests on ${{matrix.otp}}
strategy:
matrix:
otp: ['24.1', '23.3', '22.3', '21.3', '20.3']
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: 3.17.0
- name: Common Test tests
run: rebar3 ct --sname ct
- name: Dialyzer
run: rebar3 dialyzer
|
Add OTP versions to github actions.
|
Add OTP versions to github actions.
|
YAML
|
mit
|
ostinelli/syn
|
3c2d26f8a3a872abb6907cf40268bc7d1bbedb7f
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Continuous Integration
on:
push:
branches:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
pull_request: ~
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
tools: composer:v2, psalm
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Psalm
run: psalm --output-format=github --shepherd
|
name: Continuous Integration
on:
push:
branches:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
pull_request: ~
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
coverage: none
tools: composer:v2, psalm
- name: Install dependencies
run: composer install --prefer-dist --no-progress --ansi
- name: Psalm
run: psalm --output-format=github --shepherd
|
Remove the `--no-suggest` flag in github action
|
Remove the `--no-suggest` flag in github action
|
YAML
|
mit
|
Taluu/Behapi
|
56ed7bed5d898ef23ff016b985cdc2c0afef8671
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Continuous Integration
on:
push:
branches:
- master
- /.*-stable/
pull_request:
branches:
- master
- /.*-stable/
jobs:
ci:
name: 'SUITE: ${{ matrix.test_suite }} / OS: ${{ matrix.os }}'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
test_suite:
- test
- default-site
os:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 5
- name: Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Cache dependencies
uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: 'Update Rubygems'
run: 'gem update --system --no-document'
- name: 'Update Bundler'
run: 'gem update bundler --no-document'
- name: Set up bundle
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run Test Suite
run: bash script/cibuild
env:
CI: true
TEST_SUITE: ${{ matrix.test_suite }}
|
name: Continuous Integration
on:
push:
branches:
- master
- /.*-stable/
pull_request:
branches:
- master
- /.*-stable/
jobs:
ci:
name: 'SUITE: ${{ matrix.test_suite }} / OS: ${{ matrix.os }}'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
test_suite:
- test
- default-site
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 5
- name: Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Cache dependencies
uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: 'Update Rubygems'
run: 'gem update --system --no-document'
- name: 'Update Bundler'
run: 'gem update bundler --no-document'
- name: Set up bundle
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run Test Suite
run: bash script/cibuild
env:
CI: true
TEST_SUITE: ${{ matrix.test_suite }}
|
Stop testing on Windows via GitHub Actions
|
Stop testing on Windows via GitHub Actions
The builds seem to be choking for the past few days due to the presence of symlinked files.
Fortunately, AppVeyor builds continue to run as before.
|
YAML
|
mit
|
jaybe-jekyll/jekyll,x-way/jekyll,jaybe-jekyll/jekyll,chrisfinazzo/jekyll,x-way/jekyll,ryanshaw/jekyll,x-way/jekyll,ryanshaw/jekyll,fulldecent/jekyll,fulldecent/jekyll,chrisfinazzo/jekyll,jaybe-jekyll/jekyll,jekyll/jekyll,yhironaka/yhironaka.github.io,fulldecent/jekyll,x-way/jekyll,ryanshaw/jekyll,jekyll/jekyll,chrisfinazzo/jekyll,jekyll/jekyll,chrisfinazzo/jekyll,fulldecent/jekyll,jaybe-jekyll/jekyll,ryanshaw/jekyll,jekyll/jekyll
|
cda3953796245c5827cbc18f372d3457bc65a153
|
examples/kubernetes/vtgate-service.yaml
|
examples/kubernetes/vtgate-service.yaml
|
kind: Service
apiVersion: v1
metadata:
name: vtgate
labels:
component: vtgate
app: vitess
spec:
ports:
- name: web+bsonrpc
port: 15001
- name: grpc
port: 15991
selector:
component: vtgate
app: vitess
type: LoadBalancer
|
kind: Service
apiVersion: v1
metadata:
name: vtgate
labels:
component: vtgate
app: vitess
spec:
ports:
- name: web
port: 15001
- name: grpc
port: 15991
selector:
component: vtgate
app: vitess
type: LoadBalancer
|
Fix invalid vtgate port name.
|
example/kubernetes: Fix invalid vtgate port name.
Error was:
spec.ports[0].name: invalid value 'web+bsonrpc', Details: must be a DNS label (at most 63 characters, matching regex a-z0-9?): e.g. "my-name"
|
YAML
|
apache-2.0
|
alainjobart/vitess,aaijazi/vitess,enisoc/vitess,mahak/vitess,aaijazi/vitess,vitessio/vitess,guokeno0/vitess,tinyspeck/vitess,mahak/vitess,mahak/vitess,aaijazi/vitess,alainjobart/vitess,HubSpot/vitess,mahak/vitess,alainjobart/vitess,enisoc/vitess,erzel/vitess,mattharden/vitess,rnavarro/vitess,davygeek/vitess,dumbunny/vitess,tinyspeck/vitess,mahak/vitess,dcadevil/vitess,erzel/vitess,vitessio/vitess,mattharden/vitess,rnavarro/vitess,pivanof/vitess,guokeno0/vitess,enisoc/vitess,dcadevil/vitess,vitessio/vitess,HubSpot/vitess,erzel/vitess,davygeek/vitess,rnavarro/vitess,mattharden/vitess,mapbased/vitess,tinyspeck/vitess,tirsen/vitess,tirsen/vitess,erzel/vitess,aaijazi/vitess,dumbunny/vitess,tinyspeck/vitess,dcadevil/vitess,mattharden/vitess,tinyspeck/vitess,tinyspeck/vitess,sougou/vitess,applift/vitess,sougou/vitess,dumbunny/vitess,dumbunny/vitess,HubSpot/vitess,enisoc/vitess,rnavarro/vitess,dumbunny/vitess,pivanof/vitess,vitessio/vitess,guokeno0/vitess,mapbased/vitess,rnavarro/vitess,guokeno0/vitess,pivanof/vitess,AndyDiamondstein/vitess,AndyDiamondstein/vitess,guokeno0/vitess,mapbased/vitess,pivanof/vitess,sougou/vitess,enisoc/vitess,mattharden/vitess,vitessio/vitess,dcadevil/vitess,HubSpot/vitess,rnavarro/vitess,davygeek/vitess,HubSpot/vitess,AndyDiamondstein/vitess,AndyDiamondstein/vitess,erzel/vitess,guokeno0/vitess,mattharden/vitess,HubSpot/vitess,rnavarro/vitess,enisoc/vitess,alainjobart/vitess,mapbased/vitess,dcadevil/vitess,tirsen/vitess,aaijazi/vitess,dumbunny/vitess,mattharden/vitess,guokeno0/vitess,rnavarro/vitess,mahak/vitess,applift/vitess,applift/vitess,erzel/vitess,applift/vitess,applift/vitess,mapbased/vitess,mapbased/vitess,vitessio/vitess,alainjobart/vitess,davygeek/vitess,aaijazi/vitess,vitessio/vitess,enisoc/vitess,davygeek/vitess,tirsen/vitess,aaijazi/vitess,sougou/vitess,mattharden/vitess,AndyDiamondstein/vitess,erzel/vitess,applift/vitess,alainjobart/vitess,mapbased/vitess,dcadevil/vitess,mattharden/vitess,applift/vitess,erzel/vitess,rnavarro/vitess,tirsen/vitess,tinyspeck/vitess,sougou/vitess,guokeno0/vitess,davygeek/vitess,vitessio/vitess,dumbunny/vitess,dumbunny/vitess,pivanof/vitess,mapbased/vitess,tirsen/vitess,mahak/vitess,erzel/vitess,sougou/vitess,applift/vitess,tirsen/vitess,aaijazi/vitess,pivanof/vitess,mapbased/vitess,pivanof/vitess,mapbased/vitess,sougou/vitess,erzel/vitess,davygeek/vitess,dcadevil/vitess,applift/vitess,mattharden/vitess,sougou/vitess,HubSpot/vitess,alainjobart/vitess,guokeno0/vitess,AndyDiamondstein/vitess,tirsen/vitess,mahak/vitess,AndyDiamondstein/vitess,alainjobart/vitess,pivanof/vitess,AndyDiamondstein/vitess,aaijazi/vitess,HubSpot/vitess,pivanof/vitess,AndyDiamondstein/vitess,dumbunny/vitess,applift/vitess,dumbunny/vitess,tirsen/vitess
|
8f7fbfc7137630d2ec1db1753069de574958e6c6
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- '0.10'
before_install:
- sudo apt-get update -qq
- npm install -g grunt-cli
- npm link grunt
- git submodule update --init --recursive
env:
global:
- secure: |-
caiZawX1I0N6l9lh9ksYXf7SaoinQckitLw1Be8SY4UnG8fUKOoRN3qhAzf7
KaJeafrGDpQEkvt8BARaRRHGfReUcfLfcY8jvq5t2t8yEESpwtOrAfavAWP7
SrV1RO8tx0UieurhR0lo/Jh78oKWEN/pbao3UNO7vI6cZw+SO8o=
- secure: |-
h4wy2zjh9583ZwSgr+CMMLgWUyW1kx8uBjW4Zt1HcQGs1sQFE9EIJWHRB9iX
zrJYJnEjFG3sxbz6uvDZf5fvvxLQzOrjgIvAbkS00/I71BSeXg5Qclvvn0mp
8lO+hj8Pb93acGIcRnWvErvTJ9TNDqLpIosu6e61ZY/QpKl7Bkg=
before_script:
- grunt prepare
- grunt build
script:
- grunt test-sauce
|
---
language: node_js
node_js:
- '0.10'
before_install:
- sudo apt-get update -qq
- npm install -g grunt-cli
- git submodule update --init --recursive
env:
global:
- secure: |-
caiZawX1I0N6l9lh9ksYXf7SaoinQckitLw1Be8SY4UnG8fUKOoRN3qhAzf7
KaJeafrGDpQEkvt8BARaRRHGfReUcfLfcY8jvq5t2t8yEESpwtOrAfavAWP7
SrV1RO8tx0UieurhR0lo/Jh78oKWEN/pbao3UNO7vI6cZw+SO8o=
- secure: |-
h4wy2zjh9583ZwSgr+CMMLgWUyW1kx8uBjW4Zt1HcQGs1sQFE9EIJWHRB9iX
zrJYJnEjFG3sxbz6uvDZf5fvvxLQzOrjgIvAbkS00/I71BSeXg5Qclvvn0mp
8lO+hj8Pb93acGIcRnWvErvTJ9TNDqLpIosu6e61ZY/QpKl7Bkg=
before_script:
- grunt prepare
- grunt build
script:
- grunt test-sauce
|
Build order fixed to install grunt before using it.
|
Build order fixed to install grunt before using it.
|
YAML
|
mit
|
FineUploader/fine-uploader,FineUploader/fine-uploader,FineUploader/fine-uploader
|
b357e76668f154503b45dd3f1df4b25683891e67
|
.codeclimate.yml
|
.codeclimate.yml
|
version: "2"
plugins:
rubocop:
enabled: true
config:
file: .rubocop.yml
channel: "rubocop-0-60" # need to keep this value the same as rubocop version
# https://docs.codeclimate.com/v1.0/docs/rubocop#section-using-rubocop-s-newer-versions
eslint:
enabled: true
channel: "eslint-4" # need to keep this value the same as eslint version
# https://docs.codeclimate.com/v1.0/docs/eslint#section-eslint-versions
stylelint:
enabled: true
exclude_patterns:
- "**/bin/"
- "**/script/"
- "**/vendor/"
- "**/spec/"
- "public/"
- "guides/"
|
version: "2"
plugins:
rubocop:
enabled: true
config:
file: .rubocop.yml
channel: "rubocop-0-60" # need to keep this value the same as rubocop version
# https://docs.codeclimate.com/v1.0/docs/rubocop#section-using-rubocop-s-newer-versions
eslint:
enabled: true
channel: "eslint-4" # need to keep this value the same as eslint version
# https://docs.codeclimate.com/v1.0/docs/eslint#section-eslint-versions
stylelint:
enabled: true
exclude_patterns:
- "**/bin/"
- "**/script/"
- "**/vendor/"
- "**/spec/"
- "public/"
|
Enable CodeClimate checks for guides
|
Enable CodeClimate checks for guides
|
YAML
|
bsd-3-clause
|
imella/spree,ayb/spree,imella/spree,ayb/spree,ayb/spree,imella/spree,ayb/spree
|
3e50aee6f42f31f21d7b804a379d912c15856a07
|
.codeclimate.yml
|
.codeclimate.yml
|
languages:
Ruby: false
JavaScript: true
PHP: true
Python: false
exclude_paths:
- "vendor/*"
- "config/*"
- "bootstrap/*"
- "database/*"
- "storage/*"
- "resources/assets/css/skin-*.css"
- "resources/assets/js/AdminLTE.js"
- "resources/assets/css/AdminLTE.css"
- "resources/lang/en/*.php"
- "*.blade.php"
- "*.js"
|
engines:
markdownlint:
enabled: true
shellcheck:
enabled: true
languages:
Ruby: false
JavaScript: true
PHP: true
Python: false
exclude_paths:
- "vendor/*"
- "config/*"
- "bootstrap/*"
- "database/*"
- "storage/*"
- "resources/assets/css/skin-*.css"
- "resources/assets/js/AdminLTE.js"
- "resources/assets/css/AdminLTE.css"
- "resources/lang/en/*.php"
- "*.blade.php"
- "*.js"
|
Add shell check and markdown lint
|
Add shell check and markdown lint
|
YAML
|
mit
|
JamesForks/deployer,REBELinBLUE/deployer,REBELinBLUE/deployer,JamesForks/deployer,REBELinBLUE/deployer,REBELinBLUE/deployer,JamesForks/deployer,JamesForks/deployer
|
aeefa82cb92b55d701895c208435601e79e9b7ff
|
.readthedocs.yml
|
.readthedocs.yml
|
formats:
- htmlzip
- pdf
python:
version: 3
pip_install: true
extra_requirements:
- docs
|
version: 2
formats:
- htmlzip
- pdf
build:
image: stable
python:
version: 3.7
install:
- method: pip
path: .
extra_requirements:
- docs
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: true
|
Use v2 format for RTFD configuration, add some options
|
Use v2 format for RTFD configuration, add some options
|
YAML
|
bsd-3-clause
|
skirpichev/omg,diofant/diofant
|
89a32d777184578203ca0746d2583d6d204f720c
|
.scrutinizer.yml
|
.scrutinizer.yml
|
tools:
external_code_coverage:
timeout: 1800
runs: 3
build:
environment:
php:
version: 7.2
nodes:
phpcs:
tests:
override:
- phpcs-run src/ tests/
static-analysis:
environment:
php:
ini:
'memory_limit': -1
dependencies:
override:
- pecl install apcu
- pecl install redis
- pecl install memcached
- composer stan-setup
tests:
override:
- vendor/bin/phpstan.phar analyse src/
- vendor/bin/psalm.phar --show-info=false
build_failure_conditions:
- 'issues.count > 0'
- 'project.metric_change("scrutinizer.test_coverage", < -0.01)'
|
tools:
external_code_coverage:
timeout: 1800
runs: 3
build:
environment:
php:
version: 7.2
nodes:
phpcs:
tests:
override:
- phpcs-run src/ tests/
static-analysis:
environment:
php:
ini:
'memory_limit': -1
dependencies:
override:
- pecl install apcu
- pecl install redis
- pecl install memcached
- composer stan-setup
tests:
override:
- vendor/bin/phpstan.phar analyse src/
- vendor/bin/psalm.phar --show-info=false
build_failure_conditions:
# Issues reported by any analyzer (which generates report in checkstyle format) like phpcs
- 'issues.count > 0'
# Code Coverage decreased from previous inspection
- 'project.metric_change("scrutinizer.test_coverage", < -0.01)'
# Code Coverage drops below 90%
- 'project.metric("scrutinizer.test_coverage", < 0.90)'
|
Mark build as failed if test coverage goes below 90%.
|
Mark build as failed if test coverage goes below 90%.
|
YAML
|
mit
|
CakeDC/cakephp,CakeDC/cakephp,cakephp/cakephp,CakeDC/cakephp,dakota/cakephp,ADmad/cakephp,ADmad/cakephp,dakota/cakephp,dakota/cakephp,ndm2/cakephp,ADmad/cakephp,cakephp/cakephp,cakephp/cakephp,dakota/cakephp,CakeDC/cakephp,ndm2/cakephp,ndm2/cakephp,cakephp/cakephp,ndm2/cakephp,ADmad/cakephp
|
3b4659782450f631b2c88ec98d42684de12c329d
|
config/agents.yml
|
config/agents.yml
|
- kind: Agent
apiVersion: v1
metadata:
name: Jhon Doe
username: johndoe
secret: gJcxzr1v4zXUVXJ3
domains:
- ocean-ny.us1.sip.fonoster.com
- ocean-tx.us1.sip.fonoster.com
- kind: Agent
apiVersion: v1
metadata:
name: Janie Doe
username: janiedoe
secret: gJcxzr1v4zXUVXJ3
domains:
- ocean-ny.us1.sip.fonoster.com
|
- kind: Agent
apiVersion: v1
metadata:
name: Jhon Doe
username: johndoe
secret: gJcxzr1v4zXUVXJ3
domains:
- ocean-ny.us1.sip.fonoster.com
- ocean-tx.us1.sip.fonoster.com
- kind: Agent
apiVersion: v1
metadata:
name: Janie Doe
username: janiedoe
secret: gJcxzr1v4zXUVXJ3
domains:
- ocean-ny.us1.sip.fonoster.com
|
Remove extra space in config files
|
Remove extra space in config files
|
YAML
|
mit
|
fonoster/sipio,psanders/sipio,psanders/sip.io,psanders/sipio,psanders/sip.io,fonoster/sipio,fonoster/sipio
|
af20eae959908123262504c25657560af48c5e92
|
cucumber.yml
|
cucumber.yml
|
<%
cucumber_pro_opts = ENV['ENABLE_CUCUMBER_PRO'] ? "--format Cucumber::Pro --out /dev/null" : ""
std_opts = "--format progress features -r features --strict #{cucumber_pro_opts}".dup
std_opts << " --tags 'not @wip'"
std_opts << " --tags 'not @wip-jruby'" if defined?(JRUBY_VERSION)
wip_opts = "--color -r features".dup
wip_opts << " --tags @wip" if !defined?(JRUBY_VERSION)
wip_opts << " --tags '@wip or @wip-jruby'" if defined?(JRUBY_VERSION)
%>
default: <%= std_opts %> --tags "not @jruby"
jruby: <%= std_opts %> --tags "not @wire"
jruby_win: <%= std_opts %> --tags "not @wire" CUCUMBER_FORWARD_SLASH_PATHS=true
windows_mri: <%= std_opts %> --tags "not @jruby" --tags "not @wire" --tags "not @needs-many-fonts" --tags "not @todo-windows" CUCUMBER_FORWARD_SLASH_PATHS=true
ruby: <%= std_opts %> --tags "not @todo-windows" --tags "not @jruby"
wip: --wip <%= wip_opts %> features <%= cucumber_pro_opts %>
none: --format pretty --format Cucumber::Pro --out /dev/null
|
<%
cucumber_pro_opts = ENV['ENABLE_CUCUMBER_PRO'] ? "--format Cucumber::Pro --out /dev/null" : ""
std_opts = "--format progress features -r features --strict #{cucumber_pro_opts}".dup
std_opts << " --tags 'not @wip'"
std_opts << " --tags 'not @wip-jruby'" if defined?(JRUBY_VERSION)
wip_opts = "--color -r features".dup
wip_opts << " --tags @wip" if !defined?(JRUBY_VERSION)
wip_opts << " --tags '@wip or @wip-jruby'" if defined?(JRUBY_VERSION)
%>
default: <%= std_opts %> --tags "not @jruby"
jruby: <%= std_opts %> --tags "not @wire"
jruby_win: <%= std_opts %> --tags "not @wire" CUCUMBER_FORWARD_SLASH_PATHS=true
windows_mri: <%= std_opts %> --tags "not @jruby" --tags "not @wire" --tags "not @needs-many-fonts" --tags "not @todo-windows" CUCUMBER_FORWARD_SLASH_PATHS=true
ruby: <%= std_opts %> --tags "not @jruby"
wip: --wip <%= wip_opts %> features <%= cucumber_pro_opts %>
none: --format pretty --format Cucumber::Pro --out /dev/null
|
Fix ruby profile to run everything
|
Fix ruby profile to run everything
|
YAML
|
mit
|
cucumber/cucumber-ruby,cucumber/cucumber-ruby,cucumber/cucumber-ruby
|
f8ebce1d4928d3b386c07766e9fe4a8f16dc6edf
|
.circleci/config.yml
|
.circleci/config.yml
|
version: '2'
defaults: &defaults
jobs:
build:
docker:
- image: circleci/python:3
steps:
- checkout
- setup_remote_docker
- run:
name: Setup Environment
command: source setup_env.sh
- run:
name: Install Docker Compose
command: sudo pip install docker-compose
- run:
name: Building Container Images
command: ./build.sh
- run:
name: Generate Tests
command: bash tests/generate_tests.sh
- run:
environment:
DB: postgres
name: Postgres Tests
command: bash tests/test.sh
- run:
environment:
DB: mysql
name: MySQL Test
command: bash tests/test.sh
- deploy:
environment:
REGISTRY: QUAY
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
bash .travis/deploy.sh
fi
workflows:
version: 2
commit-workflow:
jobs:
- build
scheduled-workflow:
triggers:
- schedule:
cron: "@weekly"
filters:
branches:
only: master
jobs:
- build:
context: org-global
push-dev:
jobs:
- build:
context: org-global
filters:
branches:
only: master
|
version: '2'
defaults: &defaults
jobs:
build:
docker:
- image: circleci/python:3
steps:
- checkout
- setup_remote_docker
- run:
name: Setup Environment
command: source setup_env.sh
- run:
name: Install Docker Compose
command: sudo pip install docker-compose
- run:
name: Building Container Images
command: ./build.sh
- run:
name: Generate Tests
command: bash tests/generate_tests.sh
- run:
environment:
DB: postgres
name: Postgres Tests
command: bash tests/test.sh
- run:
environment:
DB: mysql
name: MySQL Test
command: bash tests/test.sh
- deploy:
environment:
REGISTRY: QUAY
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
bash .travis/deploy.sh
fi
workflows:
version: 2
commit-workflow:
jobs:
- build
scheduled-workflow:
triggers:
- schedule:
cron: "@weekly"
filters:
branches:
only: master
jobs:
- build:
context: org-global
push-dev:
jobs:
- build:
context: org-global
filters:
branches:
only: master
|
Fix build and test setup for dev images.
|
Fix build and test setup for dev images.
|
YAML
|
mit
|
maxking/docker-mailman,maxking/docker-mailman
|
5c93fa8efa69e7ddba5610910023e452e7ca60e4
|
.circleci/config.yml
|
.circleci/config.yml
|
# Java Gradle CircleCI 2.0 configuration file
# Check https://circleci.com/docs/2.0/language-java/ for more details
version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx1600m
steps:
- checkout
- run:
name: Calculate cache key for Maven dependencies
command: |
{
md5sum gradle/wrapper/gradle-wrapper.properties
md5sum settings.gradle
md5sum $(find . -name 'build.gradle')
} > ~/cache-key-source-gradle
- restore_cache:
keys:
- v1-dependencies-{{ checksum "~/cache-key-source-gradle" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: gradle build
- save_cache:
paths:
- ~/.gradle
- ~/.m2
key: v1-dependencies-{{ checksum "~/cache-key-source-gradle" }}
|
# Java Gradle CircleCI 2.0 configuration file
# Check https://circleci.com/docs/2.0/language-java/ for more details
version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx1600m
steps:
- checkout
- run:
name: Calculate cache key for Maven dependencies
command: |
{
md5sum gradle/wrapper/gradle-wrapper.properties
md5sum settings.gradle
md5sum $(find . -name 'build.gradle')
} > ~/cache-key-source-gradle
- restore_cache:
keys:
- v1-dependencies-{{ checksum "~/cache-key-source-gradle" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: gradle build
- store_test_results:
path: core/build/test-results
- save_cache:
paths:
- ~/.gradle
- ~/.m2
key: v1-dependencies-{{ checksum "~/cache-key-source-gradle" }}
|
Store test results on CircleCI
|
Store test results on CircleCI
|
YAML
|
apache-2.0
|
nobuoka/vc-oauth-java,nobuoka/vc-oauth-java
|
0d80452f9c0f42654f6d3727553a5fbd77416b9b
|
config/open_jdk_jre.yml
|
config/open_jdk_jre.yml
|
# Cloud Foundry Java Buildpack
# Copyright 2013-2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Configuration for JRE repositories keyed by vendor
# If Java 7 is required, permgen will be used instead of metaspace. Please see the documentation for more detail.
---
jre:
version: 1.8.0_+
repository_root: ! '{default.repository.root}/openjdk/{platform}/{architecture}'
memory_calculator:
version: 1.+
repository_root: ! '{default.repository.root}/memory-calculator/{platform}/{architecture}'
memory_sizes:
metaspace: 80m..
permgen: 80m..
stack: 228k
memory_heuristics:
heap: 60
metaspace: 15
permgen: 10
stack: 5
native: 20
|
# Cloud Foundry Java Buildpack
# Copyright 2013-2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Configuration for JRE repositories keyed by vendor
# If Java 7 is required, permgen will be used instead of metaspace. Please see the documentation for more detail.
---
jre:
version: 1.8.0_+
repository_root: ! '{default.repository.root}/openjdk/{platform}/{architecture}'
memory_calculator:
version: 1.+
repository_root: ! '{default.repository.root}/memory-calculator/{platform}/{architecture}'
memory_sizes:
metaspace: 80m..96m
permgen: 80m..
stack: 228k
memory_heuristics:
heap: 60
metaspace: 15
permgen: 10
stack: 5
native: 20
|
Set a maximum value of 96m for the metaspace.
|
Set a maximum value of 96m for the metaspace.
This is needed to prevent oom-killer running too frequently due to using too much native memory.
|
YAML
|
apache-2.0
|
peeeto/java-buildpack-cloudfoundry,Service-Flow/java-buildpack-cloudfoundry,Service-Flow/java-buildpack-cloudfoundry,peeeto/java-buildpack-cloudfoundry
|
f5611b9ece4812972c70306f2616609b5d4b7e26
|
.github/workflows/build-dev.yml
|
.github/workflows/build-dev.yml
|
name: Build and deploy
on:
push:
paths-ignore:
- 'docs/**'
- 'yarn.lock'
- 'package.json'
branches:
- master
tags:
- '*'
jobs:
test-netcore-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.201'
- name: Run tests netcoreapp3.1
run: dotnet test -c Release -f netcoreapp3.1
test-win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Run tests on Windows for all targets
run: dotnet test -c Release
nuget:
runs-on: windows-latest
needs: [test-win,test-netcore-linux]
steps:
- uses: actions/checkout@v1
- name: Create and push NuGet package
run: |
dotnet pack -c Release -o nuget -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
|
name: Build and deploy
on:
push:
paths-ignore:
- 'docs/**'
- 'yarn.lock'
- 'package.json'
branches:
- dev
tags:
- '*'
jobs:
test-netcore-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.201'
- name: Run tests netcoreapp3.1
run: dotnet test -c Release -f netcoreapp3.1
test-win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Run tests on Windows for all targets
run: dotnet test -c Release
nuget:
runs-on: windows-latest
needs: [test-win,test-netcore-linux]
steps:
- uses: actions/checkout@v1
- name: Create and push NuGet package
run: |
dotnet pack -c Release -o nuget -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
|
Fix GH Actions after the branch rename
|
Fix GH Actions after the branch rename
|
YAML
|
apache-2.0
|
restsharp/RestSharp
|
0e9584d93c29f41689dab9f8a0f130c5dd36e9fd
|
tests/regression/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920610.yaml
|
tests/regression/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920610.yaml
|
---
meta:
author: "karelorigin"
enabled: true
name: "920610.yaml"
description: "Tests for 920610"
tests:
- test_title: 920610-1
desc: Encoded URL fragment false positive test
stages:
- stage:
input:
dest_addr: "127.0.0.1"
port: 80
uri: "/%23fragment"
headers:
User-Agent: "OWASP ModSecurity Core Rule Set"
Host: "localhost"
Accept: text/html;q=0.9;charset=CP1026,*/*;q=0.8
output:
no_log_contains: "id \"920610\""
# Commented test because Apache errors before processing the rules, meaning it will always fail in our CI environment.
# - test_title: 920610-2
# desc: Raw URL fragment test
# stages:
# - stage:
# input:
# dest_addr: "127.0.0.1"
# port: 80
# uri: "/#fragment"
# headers:
# User-Agent: "OWASP ModSecurity Core Rule Set"
# Host: "localhost"
# Accept: text/html;q=0.9;charset=CP1026,*/*;q=0.8
# output:
# log_contains: "id \"920610\""
|
---
meta:
author: "karelorigin"
enabled: true
name: "920610.yaml"
description: "Tests for 920610"
tests:
- test_title: 920610-1
desc: Encoded URL fragment false positive test
stages:
- stage:
input:
dest_addr: "127.0.0.1"
port: 80
uri: "/%23fragment"
headers:
User-Agent: "OWASP ModSecurity Core Rule Set"
Host: "localhost"
Accept: text/html;q=0.9,*/*;q=0.8
output:
no_log_contains: "id \"920610\""
# Commented test because Apache errors before processing the rules, meaning it will always fail in our CI environment.
# - test_title: 920610-2
# desc: Raw URL fragment test
# stages:
# - stage:
# input:
# dest_addr: "127.0.0.1"
# port: 80
# uri: "/#fragment"
# headers:
# User-Agent: "OWASP ModSecurity Core Rule Set"
# Host: "localhost"
# Accept: text/html;q=0.9,*/*;q=0.8
# output:
# log_contains: "id \"920610\""
|
Change Accept headers to something reasonable
|
Change Accept headers to something reasonable
|
YAML
|
apache-2.0
|
coreruleset/coreruleset,coreruleset/coreruleset,coreruleset/coreruleset,coreruleset/coreruleset,coreruleset/coreruleset,coreruleset/coreruleset
|
8e887c5fbccdb2d328ec61ad8363957aa2730fad
|
lib/jekyll_picture_tag/defaults/presets.yml
|
lib/jekyll_picture_tag/defaults/presets.yml
|
markup: auto
formats: [original]
widths: [400, 600, 800, 1000]
fallback_width: 800
fallback_format: original
noscript: false
link_source: false
quality: 75
data_sizes: true
|
markup: auto
formats: [original]
widths: [400, 600, 800, 1000]
fallback_width: 800
fallback_format: original
noscript: false
link_source: false
quality: 75
data_sizes: true
gravity: center
|
Set default gravity to 'center'
|
Set default gravity to 'center'
|
YAML
|
bsd-3-clause
|
robwierzbowski/jekyll-picture-tag
|
6f07554043fd570f1cdd15a1775a205f8f62a701
|
ci/environment-py35.yml
|
ci/environment-py35.yml
|
name: test_env
dependencies:
- python=3.5
- xarray
- dask
- numpy
- pytest
- future
- scipy
- flake8
- pip:
- codecov
- pytest-cov
- "--editable=git+https://github.com/xgcm/xgcm.git@master#egg=xgcm"
|
name: test_env
dependencies:
- python=3.5
- xarray
- dask
- numpy
- pytest
- future
- scipy
- flake8
- astropy
- pip:
- codecov
- pytest-cov
- "--editable=git+https://github.com/xgcm/xgcm.git@master#egg=xgcm"
|
Add astropy to env file
|
Add astropy to env file
|
YAML
|
mit
|
jbusecke/xarrayutils
|
83faffbe6467c531588b8b136985ae01c346d3dc
|
metadata/mazechazer.android.wottankquiz.yml
|
metadata/mazechazer.android.wottankquiz.yml
|
Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Jonas SchΓΌrmann
WebSite: https://mazechazer.github.io/WoT-Tank-Quiz
SourceCode: https://github.com/MazeChaZer/WoT-Tank-Quiz
IssueTracker: https://github.com/MazeChaZer/WoT-Tank-Quiz/issues
Changelog: https://github.com/MazeChaZer/WoT-Tank-Quiz/releases
AutoName: WoT Tank Quiz
Description: |-
The WoT Tank Quiz is about guessing the names of tanks from the PC game World of
Tanks from their images. For each picture there are always 4 differnt possible
answers.
Depeding on the level of difficulty, these options will be rather different or
very similar to each other.
RepoType: git
Repo: https://github.com/MazeChaZer/WoT-Tank-Quiz.git
Builds:
- versionName: '1.13'
versionCode: 15
commit: v1.13
subdir: WoT Tank Quiz
- versionName: '1.14'
versionCode: 16
commit: v1.14
subdir: WoT Tank Quiz
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.14'
CurrentVersionCode: 16
|
Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Jonas SchΓΌrmann
WebSite: https://mazechazer.github.io/WoT-Tank-Quiz
SourceCode: https://github.com/MazeChaZer/WoT-Tank-Quiz
IssueTracker: https://github.com/MazeChaZer/WoT-Tank-Quiz/issues
Changelog: https://github.com/MazeChaZer/WoT-Tank-Quiz/releases
AutoName: WoT Tank Quiz
Description: |-
The WoT Tank Quiz is about guessing the names of tanks from the PC game World of
Tanks from their images. For each picture there are always 4 differnt possible
answers.
Depeding on the level of difficulty, these options will be rather different or
very similar to each other.
RepoType: git
Repo: https://github.com/MazeChaZer/WoT-Tank-Quiz.git
Builds:
- versionName: '1.13'
versionCode: 15
commit: v1.13
subdir: WoT Tank Quiz
- versionName: '1.14'
versionCode: 16
commit: v1.14
subdir: WoT Tank Quiz
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.9'
CurrentVersionCode: 11
|
Update CurrentVersion of WoT Tank Quiz to 1.9 (11)
|
Update CurrentVersion of WoT Tank Quiz to 1.9 (11)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
b3e8c21a47e3df46b740a360b9aca10eb9b5763b
|
stack-older-snapshots.yaml
|
stack-older-snapshots.yaml
|
resolver: lts-7.13
packages:
- 'prettyprinter'
- 'prettyprinter-ansi-terminal'
- 'prettyprinter-compat-wl-pprint'
- 'prettyprinter-compat-ansi-wl-pprint'
- 'prettyprinter-convert-ansi-wl-pprint'
- 'prettyprinter-compat-annotated-wl-pprint'
- location:
git: https://github.com/quchen/ansi-wl-pprint.git
commit: d3fbc6b05593bd76c9bdb3caf36a8362d354fe7f
extra-dep: true
extra-deps:
- pgp-wordlist-0.1.0.2
flags: {}
extra-package-dbs: []
|
resolver: lts-7.13
packages:
- 'prettyprinter'
- 'prettyprinter-ansi-terminal'
- 'prettyprinter-compat-wl-pprint'
- 'prettyprinter-compat-ansi-wl-pprint'
- 'prettyprinter-convert-ansi-wl-pprint'
- 'prettyprinter-compat-annotated-wl-pprint'
extra-deps:
- pgp-wordlist-0.1.0.2
- ansi-wl-pprint-0.6.8
flags: {}
extra-package-dbs: []
|
Fix ansi-wl-pprint dependency for older snapshots too
|
Fix ansi-wl-pprint dependency for older snapshots too
|
YAML
|
bsd-2-clause
|
quchen/prettyprinter,quchen/prettyprinter
|
d30e4e96234c6e826aeac9ec2ccb5a657787ea85
|
docker-compose.test.yml
|
docker-compose.test.yml
|
version: '3'
services:
test:
command: npm install-test
image: node:8
volumes:
- .:/app
working_dir: /app
|
services:
test:
command: npm install-test
image: node:8
volumes:
- .:/app
working_dir: /app
version: '3'
|
Sort keys in Compose files
|
Sort keys in Compose files
|
YAML
|
mit
|
xavierdutreilh/wintersmith-cname
|
ca88c90f49c45e8d13b6675804599702140b5d5e
|
.github/workflows/ci.yaml
|
.github/workflows/ci.yaml
|
name: Build and publish to ECR
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-publish-image-to-ecr:
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_GOVUK_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_GOVUK_ECR_ACCESS_KEY_ID }}
AWS_GOVUK_ECR_SECRET_ACCESS_KEY: ${{ secrets.AWS_GOVUK_ECR_SECRET_ACCESS_KEY }}
|
name: CI
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-and-publish-image:
name: Build and publish image
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_GOVUK_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_GOVUK_ECR_ACCESS_KEY_ID }}
AWS_GOVUK_ECR_SECRET_ACCESS_KEY: ${{ secrets.AWS_GOVUK_ECR_SECRET_ACCESS_KEY }}
trigger-deploy-to-integration:
name: Trigger deploy to integration
needs: build-and-publish-image
uses: alphagov/govuk-infrastructure/.github/workflows/deploy.yaml@main
secrets:
GOVUK_CI_GITHUB_API_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
|
Update CI workflow to trigger deploy to integration
|
Update CI workflow to trigger deploy to integration
This adds an additional job to the CI workflow to run a reusable
workflow that writes the newly built image tag to helm charts file.
This triggers ArgoCD to deploy the integration.
|
YAML
|
mit
|
alphagov/finder-frontend,alphagov/finder-frontend,alphagov/finder-frontend,alphagov/finder-frontend
|
832c8de11138f27c339127b6623b9804b2113df9
|
_data/events.yml
|
_data/events.yml
|
- type: project-night
date: Thursday, 18 February 2016
time: 7pm β 11pm
datetime_aria: Thursday, eighteenth of February, two-thousand and sixteen
location: AlphaSights, 201 Borough High Street, Borough, London
location_for_google: 201 Borough High Street, Borough, London
url: http://www.meetup.com/London-Emberjs-User-Group/events/228104881/
- type: meetup
date: Thursday, 17 March 2016
time: 6.30pm β 9.30pm
datetime_aria: Thursday, seventeenth of March, two-thousand and sixteen, six thirty pm to nine thirty pm.
location: Eden House, 8 Spital Square, London E1 6DU
location_for_google: 201 Borough High Street, Borough, London
url: http://www.meetup.com/London-Emberjs-User-Group/events/227825632/
|
- type: meetup
date: Thursday, 17 March 2016
time: 6.30pm β 9.30pm
datetime_aria: Thursday, seventeenth of March, two-thousand and sixteen, six thirty pm to nine thirty pm.
location: Eden House, 8 Spital Square, London E1 6DU
location_for_google: 201 Borough High Street, Borough, London
url: http://www.meetup.com/London-Emberjs-User-Group/events/227825632/
# - type: project-night
# date: Thursday, 18 February 2016
# time: 7pm β 11pm
# datetime_aria: Thursday, eighteenth of February, two-thousand and sixteen
# location: AlphaSights, 201 Borough High Street, Borough, London
# location_for_google: 201 Borough High Street, Borough, London
# url: http://www.meetup.com/London-Emberjs-User-Group/events/228104881/
|
Hide Feb 2016 proj night
|
Hide Feb 2016 proj night
|
YAML
|
mit
|
emberlondon/emberlondon.github.io,emberlondon/emberlondon.github.io,emberlondon/emberlondon.github.io,emberlondon/emberlondon.github.io
|
49c7280795754c2d05909aba492ff0434af9e25e
|
.github/workflows/php.yml
|
.github/workflows/php.yml
|
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl
ini-values: post_max_size=256M, short_open_tag=On
coverage: xdebug
tools: php-cs-fixer, phpunit
env:
update: true
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: vendor/bin/phpunit -c phpunit.xml --coverage-text
|
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
php-versions: ['7.3', '7.4']
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl
ini-values: post_max_size=256M, short_open_tag=On
coverage: xdebug
tools: php-cs-fixer, phpunit
env:
update: true
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: vendor/bin/phpunit -c phpunit.xml --coverage-text
|
Build with supported minor versions of PHP 7
|
Build with supported minor versions of PHP 7
|
YAML
|
mit
|
gofabian/negotiation-middleware
|
7cba3805702e03c14a1de551301c6dc5523e985c
|
.github/workflows/tox.yml
|
.github/workflows/tox.yml
|
name: Run tox
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: "2.7"
env: docs
- python-version: "2.7"
env: flake8
steps:
- uses: actions/checkout@v2
- name: install libsystemd-dev
run: sudo apt-get install libsystemd-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox -e ${{ matrix.env }}
|
name: Run tox
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: "2.7"
env: docs
- python-version: "2.7"
env: flake8
steps:
- uses: actions/checkout@v2
- name: update package index
run: sudo apt-get update
- name: install libsystemd-dev
run: sudo apt-get install libsystemd-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox -e ${{ matrix.env }}
|
Update the package index before installing libsystemd-dev
|
Update the package index before installing libsystemd-dev
Otherwise, the build will try to install an old version of libsystemd-dev,
that's not on the mirrors anymore.
|
YAML
|
mit
|
mineo/sagbescheid,mineo/sagbescheid
|
36082dad8f9d64227d779d103ae010fe811d3c02
|
jenkins/jobs/examples.yaml
|
jenkins/jobs/examples.yaml
|
- job-template:
name: 'noop-check-communication-{node}'
node: '{node}'
builders:
- shell: |
#!/bin/bash -xe
echo "Hello world, this is the {vendor} Testing System"
- link-logs
publishers:
- devstack-logs
- console-log
- job-template:
name: 'gate-{name}-dsvm-tempest-full-{node}'
node: '{node}'
wrappers:
- timeout:
timeout: 185 # Timeout in *minutes*
fail: true # A job run that exceeds the timeout will cause a failure
- timestamps
builders:
- net-info
- devstack-checkout-http
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TIMEOUT=180
export DEVSTACK_GATE_TEMPEST=1
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
./safe-devstack-vm-gate-wrap.sh
- link-logs
publishers:
- devstack-logs
- console-log
|
- job-template:
name: 'noop-check-communication-{node}'
node: '{node}'
builders:
- shell: |
#!/bin/bash -xe
echo "Hello world, this is the {vendor} Testing System"
- link-logs
publishers:
- devstack-logs
- console-log
- job-template:
name: 'gate-{name}-dsvm-tempest-full-{node}'
node: '{node}'
wrappers:
- timeout:
timeout: 185 # Timeout in *minutes*
fail: true # A job run that exceeds the timeout will cause a failure
- timestamps
builders:
- net-info
- devstack-checkout-http
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
# 180 minutes in milliseconds
export BUILD_TIMEOUT=10800000
export DEVSTACK_GATE_TEMPEST=1
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
./safe-devstack-vm-gate-wrap.sh
- link-logs
publishers:
- devstack-logs
- console-log
|
Update dvsm tempest timeout too
|
Update dvsm tempest timeout too
|
YAML
|
apache-2.0
|
CiscoSystems/project-config-third-party,CiscoSystems/project-config-third-party
|
6c86cc40aedd7276c48b1bb3091ceffd160cd650
|
packages/ke/keera-hails-reactivevalues.yaml
|
packages/ke/keera-hails-reactivevalues.yaml
|
homepage: http://www.keera.es/blog/community/
changelog-type: ''
hash: 65006ff8605aaced16e20af4dcb73d08cb0f64a5c291678b3fe8a4b6bfff972a
test-bench-deps: {}
maintainer: [email protected]
synopsis: Haskell on Rails - Reactive Values
changelog: ''
basic-deps:
base: ! '>=4 && <5'
contravariant: -any
all-versions:
- '0.0.3.4'
- '0.0.4'
- '0.1.0'
author: Ivan Perez
latest: '0.1.0'
description-type: haddock
description: ''
license-name: BSD3
|
homepage: http://www.keera.es/blog/community/
changelog-type: ''
hash: 20d6e1b63fed2f744af876fa4bf6e98a1e1abbdb3d29f1804068511165f66847
test-bench-deps: {}
maintainer: [email protected]
synopsis: Haskell on Rails - Reactive Values
changelog: ''
basic-deps:
base: ! '>=4 && <5'
contravariant: -any
all-versions:
- '0.0.3.4'
- '0.0.4'
- '0.1.0'
- '0.1.2.1'
author: Ivan Perez
latest: '0.1.2.1'
description-type: haddock
description: ''
license-name: BSD3
|
Update from Hackage at 2015-09-09T03:38:23+0000
|
Update from Hackage at 2015-09-09T03:38:23+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
13651823192168b3246269bf27b33fcb1c75daf6
|
azure-pipelines.yml
|
azure-pipelines.yml
|
name: LinqToTypeScriptInDev
trigger:
- InDev
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
node_10_x:
node_version: 10.x
node_12_x:
node_version: 12.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
- script: |
npm install -g typescript [email protected] jest rollup
displayName: 'Install Globals'
- script: |
npm install
npm run build
displayName: 'Build Library'
- script: tslint -p ./
displayName: 'Run Lint'
- script: |
cd test
npm install
npm run test
displayName: 'Run Tests'
|
name: LinqToTypeScriptInDev
trigger:
- InDev
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
node_10_x:
node_version: 10.x
node_12_x:
node_version: 12.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
- script: |
npm install -g typescript [email protected] jest rollup
displayName: 'Install Globals'
- script: |
npm install
npm run build
displayName: 'Build Library'
- script: tslint -p ./
displayName: 'Run Lint'
- script: |
cd test
npm install
npm run test
displayName: 'Run Tests'
|
Set up CI with Azure Pipelines
|
Set up CI with Azure Pipelines
Some mistakes when reviewing YAML [skip ci]
|
YAML
|
mit
|
arogozine/LinqToTypeScript,arogozine/LinqToTypeScript
|
82745afa5b2045085567f91cb99760425bec367e
|
pipelines/templates/tasks/unitypackages.yml
|
pipelines/templates/tasks/unitypackages.yml
|
# [Template] Builds and publishes .unitypackages
parameters:
version: '$(MRTKVersion)-$(Build.BuildNumber)'
steps:
- task: PowerShell@2
displayName: 'Build .unitypackages'
inputs:
targetType: filePath
filePath: ./scripts/packaging/unitypackage.ps1
arguments: >
-UnityDirectory ${Env:Unity2018.3.7f1}
-OutputDirectory $(Build.ArtifactStagingDirectory)\build\unitypackages\output
-RepoDirectory $(Get-Location)
-LogDirectory $(Build.ArtifactStagingDirectory)\build\unitypackages\logs
-PackageVersion ${{ parameters.version }}
-Verbose
- task: PublishBuildArtifacts@1
displayName: 'Publish .unitypackages'
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)\build\unitypackages\output'
ArtifactName: 'mrtk-unitypackages'
|
# [Template] Builds and publishes .unitypackages
parameters:
version: '$(MRTKVersion)-$(Build.BuildNumber)'
steps:
- task: PowerShell@2
displayName: 'Build .unitypackages'
inputs:
targetType: filePath
filePath: ./scripts/packaging/unitypackage.ps1
arguments: >
-UnityDirectory ${Env:$(Unity2018Version)}
-OutputDirectory $(Build.ArtifactStagingDirectory)\build\unitypackages\output
-RepoDirectory $(Get-Location)
-LogDirectory $(Build.ArtifactStagingDirectory)\build\unitypackages\logs
-PackageVersion ${{ parameters.version }}
-Verbose
- task: PublishBuildArtifacts@1
displayName: 'Publish .unitypackages'
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)\build\unitypackages\output'
ArtifactName: 'mrtk-unitypackages'
|
Use variable instead of explicit Unity version
|
Use variable instead of explicit Unity version
|
YAML
|
mit
|
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
|
9f3bef6da79a7ea9228b814431b73351b272c1cf
|
ansible/site.yml
|
ansible/site.yml
|
- hosts:
- ansible-test
- localhost
- travis-ci
remote_user: ansible
become: true
become_user: root
become_method: sudo
gather_facts: true
roles:
- boxcryptor
# - core_pkg
# - core_pip
# - cron
# - docker
# - dotfiles
# - dropbox
# - entropy
# - firewall
# - gitsemver
# - gpg
# - mounts
# - ntp
# - slack
# - ssh
# - sshkeys
# - sysdig
# - timezone
# - users
# - vagrant
# - vim
|
- hosts:
- ansible-test
- localhost
- travis-ci
remote_user: ansible
become: true
become_user: root
become_method: sudo
gather_facts: true
roles:
- boxcryptor
- core_pkg
- core_pip
- cron
- docker
- dotfiles
- dropbox
- entropy
- firewall
- gitsemver
- gpg
- mounts
- ntp
- slack
- ssh
- sshkeys
- sysdig
- timezone
- users
- vagrant
- vim
|
Remove commented lines added when testing
|
Remove commented lines added when testing
|
YAML
|
mit
|
wicksy/laptop-build,wicksy/laptop-build,wicksy/laptop-build,wicksy/laptop-build
|
bd18a5bb588bb7c4d6be3a9eb967a09d45d0e30d
|
Configuration/Caches.yaml
|
Configuration/Caches.yaml
|
TYPO3_TypoScript_Content:
# Set up a special cache frontend to store metadata (tags, lifetime) in entries
frontend: MOC\Varnish\Cache\MetadataAwareStringFrontend
Moc_Varnish_Site_Token:
frontend: TYPO3\Flow\Cache\Frontend\StringFrontend
backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
backendOptions:
cacheDirectory: '%FLOW_PATH_DATA%Persistent/MocVarnishSiteToken'
persistent: true
|
TYPO3_TypoScript_Content:
# Set up a special cache frontend to store metadata (tags, lifetime) in entries
frontend: MOC\Varnish\Cache\MetadataAwareStringFrontend
Moc_Varnish_Site_Token:
frontend: TYPO3\Flow\Cache\Frontend\StringFrontend
backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend
backendOptions:
cacheDirectory: '%FLOW_PATH_DATA%Persistent/MocVarnishSiteToken'
defaultLifetime: 0
persistent: true
|
Set site token cache timeout to infinite
|
[BUGFIX] Set site token cache timeout to infinite
|
YAML
|
mit
|
mocdk/MOC.Varnish,mocdk/MOC.Varnish
|
3f6448f11f7c7217022630c0016ec3d01e8d2e56
|
playbooks/roles/jenkins_admin/meta/main.yml
|
playbooks/roles/jenkins_admin/meta/main.yml
|
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
##
# Role includes for role jenkins_admin
#
# Example:
#
# dependencies:
# - {
# role: my_role
# my_role_var0: "foo"
# my_role_var1: "bar"
# }
dependencies:
- common
- aws
- role: jenkins_master
jenkins_plugins: "{{ jenkins_admin_plugins }}"
- role: supervisor
supervisor_app_dir: "{{ jenkins_supervisor_app_dir }}"
supervisor_data_dir: "{{ jenkins_supervisor_data_dir }}"
supervisor_log_dir: "{{ jenkins_supervisor_log_dir }}"
supervisor_venv_dir: "{{ jenkins_supervisor_venv_dir }}"
supervisor_service_user: "{{ jenkins_supervisor_user }}"
supervisor_available_dir: "{{ jenkins_supervisor_available_dir }}"
supervisor_cfg_dir: "{{ jenkins_supervisor_cfg_dir }}"
supervisor_service: "supervisor.jenkins"
supervisor_http_bind_port: '9003'
|
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
##
# Role includes for role jenkins_admin
#
# Example:
#
# dependencies:
# - {
# role: my_role
# my_role_var0: "foo"
# my_role_var1: "bar"
# }
dependencies:
- common
- aws
- edxapp_common
- role: jenkins_master
jenkins_plugins: "{{ jenkins_admin_plugins }}"
- role: supervisor
supervisor_app_dir: "{{ jenkins_supervisor_app_dir }}"
supervisor_data_dir: "{{ jenkins_supervisor_data_dir }}"
supervisor_log_dir: "{{ jenkins_supervisor_log_dir }}"
supervisor_venv_dir: "{{ jenkins_supervisor_venv_dir }}"
supervisor_service_user: "{{ jenkins_supervisor_user }}"
supervisor_available_dir: "{{ jenkins_supervisor_available_dir }}"
supervisor_cfg_dir: "{{ jenkins_supervisor_cfg_dir }}"
supervisor_service: "supervisor.jenkins"
supervisor_http_bind_port: '9003'
|
Add edxapp_common as an admin_jenkins dependency
|
Add edxapp_common as an admin_jenkins dependency
Because admin_jenkins runs various management commands locally, it needs to be able to run the edxapp locally. This means that it needs to be able to install the system requirements needed by the edxapp so that pip install to local venvs work correctly.
|
YAML
|
agpl-3.0
|
Softmotions/configuration,bugcy013/edx_infra,nikolas/configuration,nunpa/configuration,arifsetiawan/configuration,antshin72/configuration,kencung/configuration,Pieros/configuration,eduStack/configuration,arifsetiawan/configuration,4eek/configuration,antshin72/configuration,xiangjf/configuration,edx/configuration,zhengjunwei/configuration,Softmotions/configuration,stvstnfrd/configuration,4eek/configuration,Softmotions/configuration,leansoft/configuration,EDUlib/configuration,gsehub/configuration,armaan/edx-configuration,joshhu/configuration,jorgeomarmh/configuration,hks-epod/configuration,armaan/edx-configuration,joshhu/configuration,kursitet/configuration,hastexo/edx-configuration,proversity-org/configuration,louyihua/configuration,zhengjunwei/configuration,arifsetiawan/configuration,AlfiyaZi/configuration,pobrejuanito/configuration,gsehub/configuration,nttks/configuration,beacloudgenius/configuration,Stanford-Online/configuration,open-craft/configuration,stvstnfrd/configuration,gsehub/configuration,CredoReference/configuration,knehez/configuration,rue89-tech/configuration,eduStack/configuration,Carlos2005/configuration,knehez/configuration,Livit/Livit.Learn.EdX.configuration,gashac03/ubuntu,vasyarv/configuration,vasyarv/configuration,Pieros/configuration,hastexo/edx-configuration-old,Softmotions/configuration,beacloudgenius/configuration,nunpa/configuration,kencung/configuration,nikolas/configuration,glengal/configuration,rue89-tech/configuration,alu042/configuration,openfun/configuration,Livit/Livit.Learn.EdX.configuration,michaelsteiner19/open-edx-configuration,leansoft/configuration,kursitet/configuration,marcore/configuration,Livit/Livit.Learn.EdX.configuration,vasyarv/configuration,CredoReference/configuration,openfun/configuration,jorgeomarmh/configuration,Stanford-Online/configuration,kursitet/configuration,antshin72/configuration,open-craft/configuration,knehez/configuration,joshhu/configuration,CredoReference/configuration,antoviaque/configuration,leansoft/configuration,stvstnfrd/configuration,edx/configuration,appsembler/configuration,hastexo/edx-configuration-old,arifsetiawan/configuration,Carlos2005/configuration,Carlos2005/configuration,usernamenumber/configuration,proversity-org/configuration,lgfa29/configuration,hks-epod/configuration,kencung/configuration,edx/configuration,nttks/configuration,pobrejuanito/configuration,jorgeomarmh/configuration,armaan/edx-configuration,EDUlib/configuration,EDUlib/configuration,eduStack/configuration,armaan/edx-configuration,bugcy013/edx_infra,knehez/configuration,fghaas/edx-configuration,IndonesiaX/configuration,hastexo/edx-configuration,lgfa29/configuration,marcore/configuration,stvstnfrd/configuration,kursitet/configuration,gsehub/configuration,glengal/configuration,EDUlib/configuration,hks-epod/configuration,glengal/configuration,mitodl/configuration,zhengjunwei/configuration,gashac03/ubuntu,arbrandes/edx-configuration,open-craft/configuration,4eek/configuration,Carlos2005/configuration,hastexo/edx-configuration-old,Livit/Livit.Learn.EdX.configuration,omarkhan/configuration,vasyarv/configuration,xiangjf/configuration,lgfa29/configuration,openfun/configuration,CredoReference/configuration,open-craft/configuration,edx/configuration,hks-epod/configuration,arbrandes/edx-configuration,louyihua/configuration,AlfiyaZi/configuration,xiangjf/configuration,fghaas/edx-configuration,xiangjf/configuration,stvstnfrd/configuration,jorgeomarmh/configuration,AlfiyaZi/configuration,usernamenumber/configuration,nikolas/configuration,fghaas/edx-configuration,alu042/configuration,Pieros/configuration,nunpa/configuration,proversity-org/configuration,proversity-org/configuration,usernamenumber/configuration,Stanford-Online/configuration,appsembler/configuration,mitodl/configuration,fghaas/edx-configuration,michaelsteiner19/open-edx-configuration,alu042/configuration,marcore/configuration,Pieros/configuration,pobrejuanito/configuration,IndonesiaX/configuration,louyihua/configuration,beacloudgenius/configuration,gsehub/configuration,nikolas/configuration,AlfiyaZi/configuration,appsembler/configuration,omarkhan/configuration,hks-epod/configuration,rue89-tech/configuration,leansoft/configuration,pobrejuanito/configuration,omarkhan/configuration,appsembler/configuration,hastexo/edx-configuration,arbrandes/edx-configuration,IndonesiaX/configuration,hastexo/edx-configuration,bugcy013/edx_infra,beacloudgenius/configuration,gashac03/ubuntu,michaelsteiner19/open-edx-configuration,Stanford-Online/configuration,hastexo/edx-configuration-old,antoviaque/configuration,marcore/configuration,antshin72/configuration,arbrandes/edx-configuration,kencung/configuration,rue89-tech/configuration,antoviaque/configuration,louyihua/configuration,alu042/configuration,IndonesiaX/configuration,nttks/configuration,mitodl/configuration,omarkhan/configuration,nttks/configuration,arbrandes/edx-configuration,michaelsteiner19/open-edx-configuration,bugcy013/edx_infra,rue89-tech/configuration,openfun/configuration,joshhu/configuration,proversity-org/configuration,EDUlib/configuration,antoviaque/configuration,hastexo/edx-configuration,lgfa29/configuration,mitodl/configuration,usernamenumber/configuration,nunpa/configuration,glengal/configuration,zhengjunwei/configuration,4eek/configuration,gashac03/ubuntu,Stanford-Online/configuration
|
85ac38339cd5e16493ec4ea5c2df4a1198e9a4ea
|
circle.yml
|
circle.yml
|
machine:
node:
version: 4.4.4
environment:
# We need to build React in a production environment.
NODE_ENV: production
dependencies:
# Gulp must be installed in the global environment.
pre:
- npm install -g gulp-cli
# Modules for compiling assets live in devDependencies, which are not
# installed in production environments by default. This overrides this.
override:
- npm install --production=false
post:
- npm install -g aws-cli
test:
post:
# For Precog. This should run even if tests fail.
- cp -R build data index.html $CIRCLE_ARTIFACTS
# For hosting on mapzen.com. Only deploy if tests pass.
deployment:
production:
branch: master
commands:
- aws s3 sync $CIRCLE_ARTIFACTS $AWS_DESTINATION --delete
- ./deploy/invalidate_cloudfront.sh
|
machine:
node:
version: 4.4.4
environment:
NODE_ENV: test
dependencies:
# Gulp must be installed in the global environment.
pre:
- npm install -g gulp-cli
post:
- npm install -g aws-cli
test:
post:
# For Precog.
- cp -R build data index.html $CIRCLE_ARTIFACTS
# For hosting on mapzen.com. Only deploy if tests pass. Compiled files are
# rebuilt for a production environment.
deployment:
production:
branch: master
commands:
- NODE_ENV=production gulp build
- aws s3 sync $CIRCLE_ARTIFACTS $AWS_DESTINATION --delete
- ./deploy/invalidate_cloudfront.sh
|
Create separate NODE_ENVs for testing and production building
|
Create separate NODE_ENVs for testing and production building
|
YAML
|
mit
|
tangrams/tangram-play,tangrams/tangram-play
|
867c4a545b9434d5f7e7ed1db2d3e9fd2e0a4a71
|
circle.yml
|
circle.yml
|
machine:
python:
version: 3.4.3
dependencies:
pre:
- sudo pip install -U awscli
post:
- pip install https://github.com/facelessuser/pymdown-extensions/archive/master.zip
test:
override:
- echo 'no tests :Β·('
deployment:
staging:
branch: master
commands:
- ./deploy dev
production:
branch: production
commands:
- ./deploy prod
|
machine:
python:
version: 3.4.3
dependencies:
pre:
- sudo pip install -U awscli
- rm -rf node_modules # Force npm install to fetch styleguide from remote server
post:
- pip install https://github.com/facelessuser/pymdown-extensions/archive/master.zip
test:
override:
- echo 'no tests :Β·('
deployment:
staging:
branch: master
commands:
- ./deploy dev
production:
branch: production
commands:
- ./deploy prod
|
Clear npm cache on deploy
|
Clear npm cache on deploy
|
YAML
|
mit
|
mapzen/mapzen-docs-generator,mapzen/documentation,mapzen/mapzen-docs-generator,mapzen/documentation,mapzen/documentation,mapzen/mapzen-docs-generator,mapzen/mapzen-docs-generator,mapzen/documentation
|
bb108f1e4a0b599e6b7505373058db4f3020e9c8
|
circle.yml
|
circle.yml
|
# circle.yml
machine:
services:
- docker
dependencies:
override:
- docker build -t hello-ci-workflow .
test:
override:
# Run testing
- ./node_modules/.bin/mocha
# Check web is live
- docker run -d -p 2999:3000 hello-ci-workflow; sleep 10
- curl --retry 2 --retry-delay 5 -v http://localhost:2999
|
# circle.yml
machine:
services:
- docker
dependencies:
override:
- docker build -t $CIRCLE_PROJECT_REPONAME:$CIRCLE_SHA1 .
test:
override:
# Run testing
- ./node_modules/.bin/mocha
# Check web is live
- docker run -d -p 2999:3000 $CIRCLE_PROJECT_REPONAME:$CIRCLE_SHA1; sleep 10
- curl --retry 2 --retry-delay 5 -v http://localhost:2999
|
Build docker image with tag
|
Build docker image with tag
|
YAML
|
mit
|
kaihanch/hello-ci-workflow
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.