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 |
|---|---|---|---|---|---|---|---|---|---|
344f2f638ba4ea07e6557b7f24d33a3b6b7e26ec | .travis.yml | .travis.yml | language: node_js
node_js:
- 4
- 5
- 0.12
- 0.10
sudo: false
| language: node_js
node_js:
- 4
- 5
- 6
- 7
sudo: false
| Replace v0.1 and v0.12 with v6 and v7 (stable and dev) | Replace v0.1 and v0.12 with v6 and v7 (stable and dev)
| YAML | mit | alallier/reload,jprichardson/reload,jprichardson/reload |
057392aed0a2af45d1da5eb0de98d40ad226e50c | .travis.yml | .travis.yml | language: php
php:
- '5.5'
- '5.6'
- '7.0'
- 'hhvm'
matrix:
allow_failures:
- php: hhvm
install:
- composer install
script:
- ./vendor/bin/phpunit
sudo: false
| language: php
php:
- '5.5'
- '5.6'
- '7.0'
- '7.1'
- 'hhvm'
matrix:
allow_failures:
- php: hhvm
install:
- composer install
script:
- ./vendor/bin/phpunit
sudo: false
| Update Travis CI: Test on PHP 7.1 | Update Travis CI: Test on PHP 7.1
| YAML | mit | darsyn/ip |
c9bc4818564ee49c48eac4b06f90eb55ded69cdc | .travis.yml | .travis.yml | sudo: required
addons:
apt:
sources:
- debian-sid # Grab shellcheck from the Debian repo (o_O)
packages:
- shellcheck
services:
- docker
env:
- DOCKER_RELEASE="1.10.3" WEAVE_RELEASE="v1.5.1" KUBERNETES_RELEASE="v1.2.4" FORCE_USERSPACE_PROXY="yes"
install:
- sudo service docker stop
- sudo curl --silent --location https://get.docker.com/builds/Linux/x86_64/docker-${DOCKER_RELEASE} --output /usr/bin/docker
- sudo chmod +x /usr/bin/docker
- sudo service docker start
- sudo curl --silent --location https://github.com/weaveworks/weave/releases/download/${WEAVE_RELEASE}/weave --output /usr/bin/weave
- sudo chmod +x /usr/bin/weave
- weave launch-router
- weave launch-proxy --rewrite-inspect
- weave launch-plugin
- weave expose -h "$(hostname).weave.local"
- weave status
- docker ps
- docker images
script:
- ./test-shellcheck
- ./build "${KUBERNETES_RELEASE}"
- ./test-docker-compose
- docker ps
- docker images
- weave status dns
| sudo: required
addons:
apt:
sources:
- debian-sid # Grab shellcheck from the Debian repo (o_O)
packages:
- cabal-install
services:
- docker
env:
- DOCKER_RELEASE="1.10.3" WEAVE_RELEASE="v1.5.1" KUBERNETES_RELEASE="v1.2.4" FORCE_USERSPACE_PROXY="yes"
install:
- export PATH="${HOME}/.cabal/bin:${PATH}"
- cabal update
- cabal install shellcheck
- sudo service docker stop
- sudo curl --silent --location https://get.docker.com/builds/Linux/x86_64/docker-${DOCKER_RELEASE} --output /usr/bin/docker
- sudo chmod +x /usr/bin/docker
- sudo service docker start
- sudo curl --silent --location https://github.com/weaveworks/weave/releases/download/${WEAVE_RELEASE}/weave --output /usr/bin/weave
- sudo chmod +x /usr/bin/weave
- weave launch-router
- weave launch-proxy --rewrite-inspect
- weave launch-plugin
- weave expose -h "$(hostname).weave.local"
- weave status
- docker ps
- docker images
script:
- ./test-shellcheck
- ./build "${KUBERNETES_RELEASE}"
- ./test-docker-compose
- docker ps
- docker images
- weave status dns
| Install latest version of shellcheck | Install latest version of shellcheck
| YAML | apache-2.0 | weaveworks/kubernetes-anywhere,errordeveloper/kubernetes-anywhere,weaveworks/weave-kubernetes-anywhere,mikedanese/kubernetes-anywhere,rohitjogvmw/kubernetes-anywhere |
b1f39df1ec378ca89970abb66d30b2a41048ef52 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
xcode_workspace: Rocket.Chat.xcworkspace
xcode_scheme: Rocket.Chat
xcode_sdk: iphonesimulator9.3
| language: objective-c
osx_image: xcode7.3
env:
matrix:
- TEST_TYPE=iOS
before_install:
- |
gem install xcpretty -N --no-ri --no-rdoc
script:
- |
set -o pipefail
xcodebuild clean test -workspace Rocket.Chat.xcworkspace -scheme Rocket.Chat -destination "platform=iOS Simulator,name=iPhone 6 Plus" -enableCodeCoverage YES | xcpretty
after_success:
- |
bash <(curl -s https://codecov.io/bash) | Make a few tests with xcpretty & bash scripts | Make a few tests with xcpretty & bash scripts
| YAML | mit | RocketChat/Rocket.Chat.iOS,haitran2011/Rocket.Chat.iOS,legendecas/Rocket.Chat.iOS,legendecas/Rocket.Chat.iOS,haitran2011/Rocket.Chat.iOS,RocketChat/Rocket.Chat.iOS,legendecas/Rocket.Chat.iOS,haitran2011/Rocket.Chat.iOS,RocketChat/Rocket.Chat.iOS |
494ddddf9d0aa185cc2aa7dedde83374d6a97047 | .travis.yml | .travis.yml | language: node_js # also works in browsers, but simpler to test in node
node_js:
- "4"
before_script:
- ./build.py
script:
- node ./output/test-tz-node.js
| language: node_js # also works in browsers, but simpler to test in node
node_js:
- "4"
before_script:
- ./build.py
script:
- node ./output/test-tz-node.js
# Use newer distribution that default (precise) to get a newer system
# date command. See comments in build-tests.py about America/Godthab.
#
# See https://docs.travis-ci.com/user/trusty-ci-environment
dist: trusty
sudo: false
| Use trusty to get a newer system date command. | Use trusty to get a newer system date command.
| YAML | mit | dbaron/tz.js,dbaron/tz.js,dbaron/tz.js |
44bdef6db2f05a0c8c508c6650294699b96f3592 | .travis.yml | .travis.yml | env:
_JAVA_OPTIONS="-Xms1G -Xmx4G"
language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
script:
- mvn clean package
install:
- wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip -O /tmp/protoc-3.1.0-linux-x86_64.zip
- unzip -o -d /tmp/protobuf /tmp/protoc-3.1.0-linux-x86_64.zip
- export PATH=$PATH:/tmp/protobuf/bin/
| env:
_JAVA_OPTIONS="-Xms1G -Xmx4G"
language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
script:
- mvn clean package
install:
- wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip -O /tmp/protoc-3.1.0-linux-x86_64.zip
- unzip -o -d /tmp/protobuf /tmp/protoc-3.1.0-linux-x86_64.zip
- export PATH=$PATH:/tmp/protobuf/bin/
notifications:
irc: "chat.freenode.net#io7m"
| Add Travis CI IRC notification | Add Travis CI IRC notification
| YAML | isc | io7m/jcalcium,io7m/jcalcium,io7m/jcalcium |
3df9a47f308cb143b30b2f1c1fef11d2b1edc660 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.6
- 2.4.2
sudo: false
cache:
bundler: true
env:
global:
- RUBY_GC_HEAP_GROWTH_MAX_SLOTS=300000
- RUBY_GC_HEAP_INIT_SLOTS=600000
- RUBY_GC_HEAP_GROWTH_FACTOR=1.25
- PARALLEL_TEST_PROCESSORS=2
matrix:
- TEST_SUITE=vmdb PARALLEL=true
- TEST_SUITE=brakeman
matrix:
allow_failures:
- rvm: 2.4.2
exclude:
- rvm: 2.4.2
env: TEST_SUITE=brakeman
fast_finish: true
addons:
postgresql: '9.5'
before_install:
- source ${TRAVIS_BUILD_DIR}/tools/ci/before_install.sh
before_script:
- bundle exec rake test:$TEST_SUITE:setup
script:
- bundle exec rake test:$TEST_SUITE
after_failure:
- source ${TRAVIS_BUILD_DIR}/tools/ci/after_failure.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7af45001fe6b7a4039f2
on_success: change
on_failure: always
on_start: never
| language: ruby
rvm:
- 2.4.4
- 2.3.6
sudo: false
cache:
bundler: true
env:
global:
- RUBY_GC_HEAP_GROWTH_MAX_SLOTS=300000
- RUBY_GC_HEAP_INIT_SLOTS=600000
- RUBY_GC_HEAP_GROWTH_FACTOR=1.25
- PARALLEL_TEST_PROCESSORS=2
matrix:
- TEST_SUITE=vmdb PARALLEL=true
- TEST_SUITE=brakeman
matrix:
allow_failures:
- rvm: 2.4.2
exclude:
- rvm: 2.4.2
env: TEST_SUITE=brakeman
fast_finish: true
addons:
postgresql: '9.5'
before_install:
- source ${TRAVIS_BUILD_DIR}/tools/ci/before_install.sh
before_script:
- bundle exec rake test:$TEST_SUITE:setup
script:
- bundle exec rake test:$TEST_SUITE
after_failure:
- source ${TRAVIS_BUILD_DIR}/tools/ci/after_failure.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7af45001fe6b7a4039f2
on_success: change
on_failure: always
on_start: never
| Bump to ruby 2.4.4 for great justice | Bump to ruby 2.4.4 for great justice
| YAML | apache-2.0 | branic/manageiq,kbrock/manageiq,hstastna/manageiq,jvlcek/manageiq,juliancheal/manageiq,gmcculloug/manageiq,djberg96/manageiq,pkomanek/manageiq,agrare/manageiq,lpichler/manageiq,mkanoor/manageiq,juliancheal/manageiq,kbrock/manageiq,borod108/manageiq,yaacov/manageiq,hstastna/manageiq,juliancheal/manageiq,borod108/manageiq,hstastna/manageiq,branic/manageiq,NickLaMuro/manageiq,pkomanek/manageiq,chessbyte/manageiq,aufi/manageiq,ManageIQ/manageiq,yaacov/manageiq,romanblanco/manageiq,jvlcek/manageiq,aufi/manageiq,romanblanco/manageiq,yaacov/manageiq,chessbyte/manageiq,d-m-u/manageiq,jameswnl/manageiq,kbrock/manageiq,mzazrivec/manageiq,d-m-u/manageiq,jameswnl/manageiq,mkanoor/manageiq,agrare/manageiq,billfitzgerald0120/manageiq,andyvesel/manageiq,djberg96/manageiq,ManageIQ/manageiq,jvlcek/manageiq,branic/manageiq,romanblanco/manageiq,lpichler/manageiq,aufi/manageiq,NickLaMuro/manageiq,tinaafitz/manageiq,ManageIQ/manageiq,andyvesel/manageiq,aufi/manageiq,syncrou/manageiq,jrafanie/manageiq,mzazrivec/manageiq,kbrock/manageiq,tinaafitz/manageiq,mkanoor/manageiq,d-m-u/manageiq,syncrou/manageiq,gmcculloug/manageiq,jvlcek/manageiq,djberg96/manageiq,borod108/manageiq,yaacov/manageiq,skateman/manageiq,hstastna/manageiq,NickLaMuro/manageiq,pkomanek/manageiq,chessbyte/manageiq,lpichler/manageiq,skateman/manageiq,jrafanie/manageiq,mkanoor/manageiq,gmcculloug/manageiq,syncrou/manageiq,juliancheal/manageiq,agrare/manageiq,billfitzgerald0120/manageiq,gmcculloug/manageiq,lpichler/manageiq,pkomanek/manageiq,mzazrivec/manageiq,andyvesel/manageiq,skateman/manageiq,tinaafitz/manageiq,agrare/manageiq,djberg96/manageiq,jrafanie/manageiq,chessbyte/manageiq,NickLaMuro/manageiq,jrafanie/manageiq,ManageIQ/manageiq,tinaafitz/manageiq,jameswnl/manageiq,billfitzgerald0120/manageiq,romanblanco/manageiq,jameswnl/manageiq,syncrou/manageiq,skateman/manageiq,branic/manageiq,mzazrivec/manageiq,borod108/manageiq,d-m-u/manageiq,andyvesel/manageiq,billfitzgerald0120/manageiq |
17b32188b24b5d5eb287a7d63f02d12951d30233 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install: "pip install -e .[test]"
script: py.test
| language: python
python:
- "2.7"
install: "pip install -e .[test]"
script:
- awk --version
- py.test
| Add awk version reporting to CI | Add awk version reporting to CI
| YAML | mit | shahin/sqltxt |
f43f730ef9e7a0a33f635a71bf5a293bec55d093 | .travis.yml | .travis.yml | language: d
services:
- docker
addons:
apt:
packages:
- libevent-dev
- libssl-dev
- pkg-config
- zlib1g-dev
script: ./travis-ci.sh
| language: d
d: dmd-2.078.1
addons:
apt:
packages:
- libevent-dev
- libssl-dev
script: ./travis-ci.sh
| Fix DMD to a specific versions und removed unneeded packages | Fix DMD to a specific versions und removed unneeded packages
| YAML | mit | rejectedsoftware/ddox,rejectedsoftware/ddox,rejectedsoftware/ddox |
310be9ef8e1176b0e43aaa59880bbe5b504e97b5 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- jruby-9.0.0.0.pre1
env:
- RSPEC_VERSION=2.14
- RSPEC_VERSION=2.99
- RSPEC_VERSION=3.0
- RSPEC_VERSION=3.1
- RSPEC_VERSION=3.2
- RSPEC_VERSION=3.3
- RSPEC_VERSION=head
before_install: gem update --remote bundler
script: bundle exec rake ci
sudo: false
cache: bundler
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- jruby-9.0.0.0.rc1
env:
- RSPEC_VERSION=2.14
- RSPEC_VERSION=2.99
- RSPEC_VERSION=3.0
- RSPEC_VERSION=3.1
- RSPEC_VERSION=3.2
- RSPEC_VERSION=3.3
- RSPEC_VERSION=head
before_install: gem update --remote bundler
script: bundle exec rake ci
sudo: false
cache: bundler
| Update JRuby to 9.0.0.0.rc1 on Travis CI | Update JRuby to 9.0.0.0.rc1 on Travis CI
| YAML | mit | irfanah/transpec,yujinakayama/transpec,irfanah/transpec,yujinakayama/transpec |
13c5bb9cfb5cc74c26046bb32203cad4cdafcc9d | .travis.yml | .travis.yml | language: scala
sudo: false
jdk:
- openjdk8
- openjdk11
scala:
- 2.11.12
- 2.12.8
| language: scala
sudo: false
jdk:
- openjdk8
- openjdk11
scala:
- 2.11.12
- 2.12.8
- 2.13.0-M5
| Update Travis to cross-build with 2.13.0-M5. | Update Travis to cross-build with 2.13.0-M5.
| YAML | apache-2.0 | lomigmegard/akka-http-cors |
e43d2b9f4b64f5e92ce550e415c8a4ae664fe1db | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-18mode
- jruby-19mode
- rbx
- ruby-head
- 1.8.7
- ree
| language: ruby
rvm:
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-18mode
- jruby-19mode
- rbx-2
- ruby-head
- 1.8.7
- ree
| Fix Ruby 2.1.2 and RBX | Fix Ruby 2.1.2 and RBX | YAML | mit | JonRowe/warden-redirect |
f5b919ccd106ffff6e70c5b7ad420876ef8f93fb | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
#install: "pip install -r requirements.txt"
# command to run tests
script: nosetests
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
#install: "pip install -r requirements.txt"
# command to run tests
script: nosetests
| Remove Travis test for python2.6 | Remove Travis test for python2.6
Code does not work in python 2.6. Don't care to figure out why nor to
make it compatible.
| YAML | mit | berghaus/ShortWriteupManager |
55671ce7a38362ebcea9e137fda931bd90b0a68e | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
- 1.3
- release
- tip
install:
- go get -v
script:
- go test -v ./...
| language: go
go:
- 1.1
- 1.2
- 1.3
- release
install:
- go get -v
script:
- go test -v ./...
| Remove Go master branch testing | Remove Go master branch testing
| YAML | mit | pascalj/disgo,pascalj/disgo,pascalj/disgo,pascalj/disgo,pascalj/disgo |
23628cf746e97f8eeb1e71fc10ad4786dbe32cf7 | tasks/docker/pre_requisite.yml | tasks/docker/pre_requisite.yml | ---
- name: create bootstrap directories
file:
path: /var/lib/ceph/bootstrap-{{ item }}
state: directory
with_items:
- osd
- mds
- rgw
# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
- name: install docker-py
pip:
name: docker-py
version: 1.1.0
| ---
- name: create bootstrap directories
file:
path: "{{ item }}"
state: directory
with_items:
- /etc/ceph/
- /var/lib/ceph/bootstrap-osd
- /var/lib/ceph/bootstrap-mds
- /var/lib/ceph/bootstrap-rgw
# NOTE (leseb): for version 1.1.0 because https://github.com/ansible/ansible-modules-core/issues/1227
- name: install docker-py
pip:
name: docker-py
version: 1.1.0
| Create missing directories when deploying with docker | Create missing directories when deploying with docker
Signed-off-by: Sébastien Han <5f623ba394d775ea686a43b248b1a848b2e9d60a@cisco.com>
| YAML | apache-2.0 | staticfork/ansible-ceph-mon,ceph/ansible-ceph-mon |
2523717ff2282147d630416050ae9a4878ad2902 | .expeditor/verify.pipeline.yml | .expeditor/verify.pipeline.yml | steps:
- label: run-lint-and-specs-ruby-2.4
command:
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
image: ruby:2.4-buster
- label: run-lint-and-specs-ruby-2.5
command:
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
image: ruby:2.5-buster
- label: run-lint-and-specs-ruby-2.6
command:
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
image: ruby:2.6-buster
- label: run-lint-and-specs-ruby-2.7
command:
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
image: ruby:2.7-buster
- label: run-lint-and-specs-windows
command:
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
host_os: windows
| steps:
- label: run-lint-and-specs-ruby-2.4
command:
- bundle config set --local without docs debug
- bundle install --jobs=7 --retry=3
- bundle exec rake
expeditor:
executor:
docker:
image: ruby:2.4-buster
- label: run-lint-and-specs-ruby-2.5
command:
- bundle config set --local without docs debug
- bundle install --jobs=7 --retry=3
- bundle exec rake
expeditor:
executor:
docker:
image: ruby:2.5-buster
- label: run-lint-and-specs-ruby-2.6
command:
- bundle config set --local without docs debug
- bundle install --jobs=7 --retry=3
- bundle exec rake
expeditor:
executor:
docker:
image: ruby:2.6-buster
- label: run-lint-and-specs-ruby-2.7
command:
- bundle config set --local without docs debug
- bundle install --jobs=7 --retry=3
- bundle exec rake
expeditor:
executor:
docker:
image: ruby:2.7-buster
- label: run-lint-and-specs-windows
command:
- bundle config set --local without docs debug
- bundle install --jobs=7 --retry=3
- bundle exec rake
expeditor:
executor:
docker:
host_os: windows | Replace deprecated --without flag with bundle config | Replace deprecated --without flag with bundle config
Signed-off-by: Swati Keshari <c680b5d9955c46c8dad4ecc06b5bea9588d924c3@msystechnologies.com>
fix failure
Signed-off-by: Swati Keshari <c680b5d9955c46c8dad4ecc06b5bea9588d924c3@msystechnologies.com>
adding --local
Signed-off-by: Swati Keshari <c680b5d9955c46c8dad4ecc06b5bea9588d924c3@msystechnologies.com>
| YAML | apache-2.0 | chef/artifactory-client,chef/artifactory-client |
2286ec2969f59e3ad0135f844dd2b9f393ffec6c | .github/workflows/renovate.yml | .github/workflows/renovate.yml | name: Renovate
on:
schedule:
- cron: '*/15 * * * *'
jobs:
renovate:
name: Run Renovate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.0
- name: Renovate
uses: renovatebot/github-action@v32.19.0
with:
configurationFile: .github/renovate-config.js
token: ${{ secrets.RENOVATE_TOKEN }}
| name: Renovate
on:
schedule:
- cron: '*/15 * * * *'
jobs:
renovate:
name: Run Renovate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.1
- name: Renovate
uses: renovatebot/github-action@v32.19.0
with:
configurationFile: .github/renovate-config.js
token: ${{ secrets.RENOVATE_TOKEN }}
| Update actions/checkout action to v3.0.1 | Update actions/checkout action to v3.0.1
| YAML | mit | joelnb/dockerfiles,joelnb/dockerfiles,joelnb/dockerfiles |
352b6b215132ea210e2d430e15b39f84cdc61abd | packages/am/amby.yaml | packages/am/amby.yaml | homepage: https://github.com/githubuser/amby#readme
changelog-type: ''
hash: 673e0fbf0e9d736ae3e2bd7cba7b90c1cfddf319193dffb3a988ff73cf6f7c48
test-bench-deps:
base: -any
amby: -any
maintainer: Justin Sermeno
synopsis: Statistical data visualization.
changelog: ''
basic-deps:
exceptions: -any
Chart: -any
either: -any
Chart-cairo: -any
Chart-diagrams: -any
base: ! '>=4.7 && <5'
data-default-class: -any
process: -any
data-default: -any
amby: -any
mtl: -any
statistics: -any
colour: -any
scientific: -any
microlens: -any
pretty-display: -any
safe: -any
vector: -any
all-versions:
- '0.2.0'
author: Justin Sermeno
latest: '0.2.0'
description-type: haddock
description: ! 'Statistical data visualization. Provides a high-level
interface built on top of
<https://github.com/timbod7/haskell-chart/wiki Chart>
to quickly display attractive visualizations within GHCi.'
license-name: BSD3
| homepage: https://github.com/githubuser/amby#readme
changelog-type: ''
hash: 5cef23feaf7115e0fd3dfc42d4840cf21fa529629fbe6afed9a6db1affcd9809
test-bench-deps:
base: -any
amby: -any
maintainer: Justin Sermeno
synopsis: Statistical data visualization
changelog: ''
basic-deps:
exceptions: -any
Chart: -any
either: -any
Chart-cairo: -any
Chart-diagrams: -any
base: ! '>=4.7 && <5'
data-default-class: -any
process: -any
data-default: -any
amby: -any
mtl: -any
statistics: -any
colour: -any
scientific: -any
microlens: -any
pretty-display: -any
safe: -any
vector: -any
all-versions:
- '0.2.0'
author: Justin Sermeno
latest: '0.2.0'
description-type: haddock
description: ! 'Statistical data visualization. Provides a high-level
interface built on top of
<https://github.com/timbod7/haskell-chart/wiki Chart>
to quickly display attractive visualizations within GHCi.'
license-name: BSD3
| Update from Hackage at 2016-11-17T20:38:21Z | Update from Hackage at 2016-11-17T20:38:21Z | YAML | mit | commercialhaskell/all-cabal-metadata |
e1e491ecb1a42d5e385489ef8a585736c6b6c9fa | packages/cl/clit.yaml | packages/cl/clit.yaml | homepage: https://github.com/vmchale/command-line-tweeter#readme
changelog-type: ''
hash: 7c3225555542309b25cd0e2c95079e17c0f4c5c0df75c2c7ece64e9bb251f551
test-bench-deps: {}
maintainer: tmchale@wisc.edu
synopsis: Post tweets from stdin
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
split: -any
base: ! '>=4.7 && <5'
data-default: -any
lens: -any
authenticate-oauth: -any
clit: -any
http-client-tls: -any
optparse-applicative: <0.13.0.0
http-types: -any
aeson: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.1.1'
- '0.1.1.2'
- '0.2.0.0'
author: Vanessa McHale
latest: '0.2.0.0'
description-type: haddock
description: a Command Line Interface Tweeter
license-name: BSD3
| homepage: https://github.com/vmchale/command-line-tweeter#readme
changelog-type: ''
hash: 839d5305c1fabbceacff6cfe6cc42e279939f66b4ee1d8f72ea80ab946c2bced
test-bench-deps: {}
maintainer: tmchale@wisc.edu
synopsis: Post tweets from stdin
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
split: -any
base: ! '>=4.7 && <5'
data-default: -any
lens: -any
authenticate-oauth: -any
clit: -any
http-client-tls: -any
optparse-applicative: <0.13.0.0
http-types: -any
aeson: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.1.1'
- '0.1.1.2'
- '0.2.0.0'
- '0.2.0.1'
author: Vanessa McHale
latest: '0.2.0.1'
description-type: haddock
description: a Command Line Interface Tweeter
license-name: BSD3
| Update from Hackage at 2016-12-28T23:47:46Z | Update from Hackage at 2016-12-28T23:47:46Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e7f6d125c44cea71a99a4ebf81e5089209ac6f75 | metadata/us.spotco.maps.yml | metadata/us.spotco.maps.yml | AntiFeatures:
- NonFreeNet
Categories:
- Navigation
License: GPL-3.0-or-later
AuthorName: Divested Computing Group
AuthorWebSite: https://divestos.org
SourceCode: https://gitlab.com/divested-mobile/maps
IssueTracker: https://gitlab.com/divested-mobile/maps/issues
Donate: https://divestos.org/index.php?page=about#donate
Bitcoin: bc1qkjtp2k7cc4kuv8k9wjdlxkeuqczenrpv5mwasl
AutoName: GMaps WV
RepoType: git
Repo: https://gitlab.com/divested-mobile/maps
Builds:
- versionName: '1.3'
versionCode: 15
commit: v1.3-15
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v-%c
UpdateCheckMode: Tags
CurrentVersion: '1.3'
CurrentVersionCode: 15
| AntiFeatures:
- NonFreeNet
Categories:
- Navigation
License: GPL-3.0-or-later
AuthorName: Divested Computing Group
AuthorWebSite: https://divestos.org
SourceCode: https://gitlab.com/divested-mobile/maps
IssueTracker: https://gitlab.com/divested-mobile/maps/issues
Donate: https://divestos.org/index.php?page=about#donate
Bitcoin: bc1qkjtp2k7cc4kuv8k9wjdlxkeuqczenrpv5mwasl
AutoName: GMaps WV
RepoType: git
Repo: https://gitlab.com/divested-mobile/maps
Builds:
- versionName: '1.3'
versionCode: 15
commit: v1.3-15
subdir: app
gradle:
- yes
- versionName: '1.4'
versionCode: 16
commit: d8e52c557e831289da6b15239795210f548d3c5d
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v-%c
UpdateCheckMode: Tags
CurrentVersion: '1.4'
CurrentVersionCode: 16
| Update GMaps WV to 1.4 (16) | Update GMaps WV to 1.4 (16)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
147439c40ea3b52df3ab6da13cbd06db10a2051a | metadata/io.kuenzler.whatsappwebtogo.yml | metadata/io.kuenzler.whatsappwebtogo.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: MIT
SourceCode: https://github.com/92lleo/WhatsappWebToGo
IssueTracker: https://github.com/92lleo/WhatsappWebToGo/issues
Changelog: https://github.com/92lleo/WhatsappWebToGo/releases
AutoName: WhatsApp Web To Go
RepoType: git
Repo: https://github.com/92lleo/WhatsappWebToGo
Builds:
- versionName: 1.5.3
versionCode: 28
commit: v1.5.3
subdir: app
gradle:
- yes
- versionName: 1.6.0
versionCode: 29
commit: v1.6.0
subdir: app
gradle:
- yes
- versionName: 1.6.1
versionCode: 30
commit: v1.6.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.6.1
CurrentVersionCode: 30
| AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: MIT
SourceCode: https://github.com/92lleo/WhatsappWebToGo
IssueTracker: https://github.com/92lleo/WhatsappWebToGo/issues
Changelog: https://github.com/92lleo/WhatsappWebToGo/releases
AutoName: WhatsApp Web To Go
RepoType: git
Repo: https://github.com/92lleo/WhatsappWebToGo
Builds:
- versionName: 1.5.3
versionCode: 28
commit: v1.5.3
subdir: app
gradle:
- yes
- versionName: 1.6.0
versionCode: 29
commit: v1.6.0
subdir: app
gradle:
- yes
- versionName: 1.6.1
versionCode: 30
commit: v1.6.1
subdir: app
gradle:
- yes
- versionName: 1.6.2
versionCode: 31
commit: v1.6.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.6.2
CurrentVersionCode: 31
| Update WhatsApp Web To Go to 1.6.2 (31) | Update WhatsApp Web To Go to 1.6.2 (31)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
a2169a08d5149c21298794363501f68dd68e1aeb | packages/na/namespace.yaml | packages/na/namespace.yaml | homepage: https://github.com/xu-hao/namespace
changelog-type: ''
hash: 627be6d84b836a7c0682b477e56944bb85d4a7fcccd2226e0990bbf08e6c23a5
test-bench-deps:
base: -any
namespace: -any
maintainer: xuh@email.unc.edu
synopsis: A Generic Haskell library for managing namespaces
changelog: ''
basic-deps:
monoid-extras: ! '>=0.1 && <0.5'
base: ! '>=4.7 && <5'
containers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.2.1'
- '0.1.2.2'
author: Hao Xu
latest: '0.1.2.2'
description-type: haddock
description: Please see README.md
license-name: BSD3
| homepage: https://github.com/xu-hao/namespace
changelog-type: ''
hash: 48cf98c780cb5e7da8ad9ce5eeacbcf5ffedfbbc74eb876532ade9669d257ae3
test-bench-deps:
base: -any
namespace: -any
maintainer: xuh@email.unc.edu
synopsis: A Generic Haskell library for managing namespaces
changelog: ''
basic-deps:
monoid-extras: ! '>=0.1 && <0.5'
base: ! '>=4.7 && <5'
containers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.2.1'
- '0.1.2.2'
- '0.1.2.3'
author: Hao Xu
latest: '0.1.2.3'
description-type: haddock
description: Please see README.md
license-name: BSD3
| Update from Hackage at 2016-11-29T22:26:48Z | Update from Hackage at 2016-11-29T22:26:48Z | YAML | mit | commercialhaskell/all-cabal-metadata |
92287385e972894b4c32737b333848a49fe7f29e | packages/po/posix-pty.yaml | packages/po/posix-pty.yaml | homepage: https://bitbucket.org/merijnv/posix-pty
changelog-type: ''
hash: c814bcbe882faca6e0ff7651c88001021c62fff960300dc35ac612835626a51c
test-bench-deps:
bytestring: -any
base: -any
process: -any
posix-pty: -any
maintainer: Merijn Verstraaten <merijn@inconsistent.nl>
synopsis: Pseudo terminal interaction with subprocesses.
changelog: ''
basic-deps:
bytestring: ! '>=0.10'
unix: ! '>=2.6'
base: ! '>=4 && <5'
process: ! '>=1.2'
all-versions:
- '0.2.1'
- '0.2.1.1'
author: Merijn Verstraaten
latest: '0.2.1.1'
description-type: haddock
description: ! 'This package simplifies the creation of subprocesses that interact
with
their parent via a pseudo terminal (see @man pty@).'
license-name: BSD3
| homepage: https://bitbucket.org/merijnv/posix-pty
changelog-type: ''
hash: f1e54f10c49d9f27dba33539391659d2daa4874badc1554ffc6c25b329ef1db6
test-bench-deps:
bytestring: -any
base: -any
process: -any
posix-pty: -any
maintainer: Merijn Verstraaten <merijn@inconsistent.nl>
synopsis: Pseudo terminal interaction with subprocesses.
changelog: ''
basic-deps:
bytestring: ! '>=0.10'
unix: ! '>=2.6'
base: ! '>=4.7 && <5'
process: ! '>=1.2'
all-versions:
- '0.2.1'
- '0.2.1.1'
author: Merijn Verstraaten
latest: '0.2.1.1'
description-type: haddock
description: ! 'This package simplifies the creation of subprocesses that interact
with
their parent via a pseudo terminal (see @man pty@).'
license-name: BSD3
| Update from Hackage at 2017-04-21T11:22:18Z | Update from Hackage at 2017-04-21T11:22:18Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
bf59b0a7553ddf35398fbe4ab3bf39a3ecba025a | deploy/vagrant/provision/roles/tachyon/tasks/clone_local_repo.yml | deploy/vagrant/provision/roles/tachyon/tasks/clone_local_repo.yml | # Rsync local Tachyon repo(suppose it's under the relative path: playbook.yml/../../../)
---
- name: mkdir /tachyon
script: mkdir.sh
- name: clone local tachyon repo
synchronize:
src: ../../../../../../
dest: /tachyon
rsync_opts: >
--exclude=.git,
--exclude=.gitignore,
--exclude=core/target,
--exclude=assembly/target,
--exclude=client/target,
--exclude=deploy,
--exclude=docs,
--exclude=journal,
--exclude=logs,
--exclude=underFSStorage
# vim :set filetype=ansible.yaml:
| # Rsync local Tachyon repo(suppose it's under the relative path: playbook.yml/../../../)
---
- name: mkdir /tachyon
script: mkdir.sh
- name: clone local tachyon repo
synchronize:
src: ../../../../../../
dest: /tachyon
rsync_opts: >
--exclude=.git,
--exclude=.gitignore,
--exclude=clients/target,
--exclude=servers/target,
--exclude=integration-tests/target,
--exclude=integration/target,
--exclude=assembly/target,
--exclude=client/target,
--exclude=deploy,
--exclude=docs,
--exclude=logs,
--exclude=underFSStorage
# vim :set filetype=ansible.yaml:
| Fix rsync exclude list which excludes journal folder in source | [SMALLFIX] Fix rsync exclude list which excludes journal folder in source
| YAML | apache-2.0 | maobaolong/alluxio,Reidddddd/alluxio,yuluo-ding/alluxio,aaudiber/alluxio,maboelhassan/alluxio,PasaLab/tachyon,bf8086/alluxio,yuluo-ding/alluxio,WilliamZapata/alluxio,jsimsa/alluxio,madanadit/alluxio,WilliamZapata/alluxio,maobaolong/alluxio,madanadit/alluxio,ChangerYoung/alluxio,uronce-cc/alluxio,jsimsa/alluxio,bf8086/alluxio,PasaLab/tachyon,EvilMcJerkface/alluxio,riversand963/alluxio,bf8086/alluxio,WilliamZapata/alluxio,EvilMcJerkface/alluxio,aaudiber/alluxio,ShailShah/alluxio,maboelhassan/alluxio,yuluo-ding/alluxio,Alluxio/alluxio,aaudiber/alluxio,Reidddddd/alluxio,riversand963/alluxio,apc999/alluxio,wwjiang007/alluxio,uronce-cc/alluxio,maboelhassan/alluxio,WilliamZapata/alluxio,PasaLab/tachyon,maobaolong/alluxio,jsimsa/alluxio,Reidddddd/mo-alluxio,apc999/alluxio,Alluxio/alluxio,aaudiber/alluxio,uronce-cc/alluxio,apc999/alluxio,maboelhassan/alluxio,yuluo-ding/alluxio,Reidddddd/alluxio,ShailShah/alluxio,WilliamZapata/alluxio,ChangerYoung/alluxio,PasaLab/tachyon,Alluxio/alluxio,ShailShah/alluxio,EvilMcJerkface/alluxio,EvilMcJerkface/alluxio,Alluxio/alluxio,jswudi/alluxio,maobaolong/alluxio,uronce-cc/alluxio,wwjiang007/alluxio,jsimsa/alluxio,bf8086/alluxio,ChangerYoung/alluxio,riversand963/alluxio,ChangerYoung/alluxio,madanadit/alluxio,bf8086/alluxio,madanadit/alluxio,Reidddddd/mo-alluxio,EvilMcJerkface/alluxio,riversand963/alluxio,madanadit/alluxio,ShailShah/alluxio,calvinjia/tachyon,Reidddddd/alluxio,bf8086/alluxio,EvilMcJerkface/alluxio,calvinjia/tachyon,maboelhassan/alluxio,Reidddddd/mo-alluxio,madanadit/alluxio,ShailShah/alluxio,Reidddddd/mo-alluxio,WilliamZapata/alluxio,PasaLab/tachyon,wwjiang007/alluxio,jsimsa/alluxio,maobaolong/alluxio,yuluo-ding/alluxio,apc999/alluxio,jswudi/alluxio,wwjiang007/alluxio,calvinjia/tachyon,apc999/alluxio,wwjiang007/alluxio,ChangerYoung/alluxio,calvinjia/tachyon,maobaolong/alluxio,Reidddddd/alluxio,bf8086/alluxio,maobaolong/alluxio,jsimsa/alluxio,ShailShah/alluxio,Alluxio/alluxio,wwjiang007/alluxio,jswudi/alluxio,wwjiang007/alluxio,wwjiang007/alluxio,jswudi/alluxio,ChangerYoung/alluxio,Alluxio/alluxio,calvinjia/tachyon,maobaolong/alluxio,aaudiber/alluxio,wwjiang007/alluxio,Alluxio/alluxio,Alluxio/alluxio,madanadit/alluxio,Reidddddd/alluxio,EvilMcJerkface/alluxio,calvinjia/tachyon,maboelhassan/alluxio,maboelhassan/alluxio,yuluo-ding/alluxio,maobaolong/alluxio,calvinjia/tachyon,Alluxio/alluxio,bf8086/alluxio,Reidddddd/alluxio,Reidddddd/mo-alluxio,madanadit/alluxio,aaudiber/alluxio,uronce-cc/alluxio,maobaolong/alluxio,riversand963/alluxio,riversand963/alluxio,jswudi/alluxio,aaudiber/alluxio,wwjiang007/alluxio,PasaLab/tachyon,Alluxio/alluxio,EvilMcJerkface/alluxio,apc999/alluxio,apc999/alluxio,calvinjia/tachyon,jswudi/alluxio,Reidddddd/mo-alluxio,uronce-cc/alluxio,PasaLab/tachyon |
0f6911a5cd8a442201164c5da3d8918668f0649f | packages/fp/FPretty.yaml | packages/fp/FPretty.yaml | homepage: http://www.cs.kent.ac.uk/~oc/pretty.html
changelog-type: ''
hash: caf7ff2698598946b6d76b91782e7b94316713a17238c200bf5cbe3d40fbdd6b
test-bench-deps: {}
maintainer: O.Chitil@kent.ac.uk
synopsis: Efficient simple pretty printing combinators
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
containers: ! '>=0.4'
all-versions:
- '1.0'
author: Olaf Chitil
latest: '1.0'
description-type: haddock
description: ! 'A pretty printer turns a tree structure into indented text,
such that the indentation reflects the tree structure. To keep
text short, substructures are put into a single line as far as
possible. The library provides combinators for building
pretty printers. It emphasizes simplicity and efficiency.'
license-name: BSD3
| homepage: http://www.cs.kent.ac.uk/~oc/pretty.html
changelog-type: ''
hash: 6e35d96e78b2e6cf79f88217a7084899000530a399cd5d2857471cadabd20d13
test-bench-deps: {}
maintainer: O.Chitil@kent.ac.uk
synopsis: Efficient simple pretty printing combinators
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
containers: ! '>=0.4'
all-versions:
- '1.0'
- '1.1'
author: Olaf Chitil
latest: '1.1'
description-type: haddock
description: ! 'A pretty printer turns a tree structure into indented text,
such that the indentation reflects the tree structure. To keep
text short, substructures are put into a single line as far as
possible. The library provides combinators for building
pretty printers. It emphasizes simplicity and efficiency.'
license-name: BSD3
| Update from Hackage at 2015-11-16T14:16:40+0000 | Update from Hackage at 2015-11-16T14:16:40+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
7fb8f770a26354082cd2fd73359b64bedba9bcfe | deploy/staging/migration_job.yaml | deploy/staging/migration_job.yaml | apiVersion: batch/v1
kind: Job
metadata:
name: pvb-staff-migration
labels:
app: pvb-staff-migration
spec:
completions: 1
parallelism: 1
template:
spec:
ttlSecondsAfterFinished: 30
containers:
- name: prison-visits-staff-migration
image: 754256621582.dkr.ecr.eu-west-2.amazonaws.com/prison-visits-booking/prison-visits-staff:latest
imagePullPolicy: Always
command: ['sh', '-c', 'bundle exec rails db:migrate && bundle exec rails db:seed']
envFrom:
- configMapRef:
name: shared-environment
- secretRef:
name: secrets
env:
- name: "DISABLE_PROMETHEUS_METRICS"
value: "true"
resources:
limits:
memory: "1Gi"
cpu: "50m"
requests:
memory: "1Gi"
cpu: "30m"
restartPolicy: Never
backoffLimit: 4 | apiVersion: batch/v1
kind: Job
metadata:
name: pvb-staff-migration
labels:
app: pvb-staff-migration
spec:
completions: 1
parallelism: 1
template:
spec:
containers:
- name: prison-visits-staff-migration
image: 754256621582.dkr.ecr.eu-west-2.amazonaws.com/prison-visits-booking/prison-visits-staff:latest
imagePullPolicy: Always
command: ['sh', '-c', 'bundle exec rails db:migrate && bundle exec rails db:seed']
envFrom:
- configMapRef:
name: shared-environment
- secretRef:
name: secrets
env:
- name: "DISABLE_PROMETHEUS_METRICS"
value: "true"
resources:
limits:
memory: "1Gi"
cpu: "50m"
requests:
memory: "1Gi"
cpu: "30m"
restartPolicy: Never
backoffLimit: 4 | Revert "Delete the migration job on completion" | Revert "Delete the migration job on completion"
| YAML | mit | ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2 |
651cdbf486001391360f821041e090a406b5476f | packages/mo/modular.yaml | packages/mo/modular.yaml | homepage: https://github.com/pgujjula/modular#readme
changelog-type: markdown
hash: 7376b33677fec9e927237bebbc22693decee02be7b7ee58f7c61dbd4f26a6632
test-bench-deps: {}
maintainer: preetham.gujjula@gmail.com
synopsis: Type-safe modular arithmetic
changelog: ! '# Changelog for modular
'
basic-deps:
base: ! '>=4.7 && <5'
ghc-typelits-knownnat: ! '>=0.5 && <1'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Preetham Gujjula
latest: '0.1.0.2'
description-type: markdown
description: ! 'To build the project, first install stack (https://docs.haskellstack.org/en/stable/install_and_upgrade/).
Then from the project directory, run `stack build`.
To build and view documentation, run `stack haddock --open`.
'
license-name: BSD3
| homepage: https://github.com/pgujjula/modular#readme
changelog-type: markdown
hash: 4aaee7aef1dd865dedfe735370e138fa90076a129ad368a84d0d7540c0c6128f
test-bench-deps: {}
maintainer: preetham.gujjula@gmail.com
synopsis: Type-safe modular arithmetic
changelog: ! '# Changelog for modular
'
basic-deps:
base: ! '>=4.7 && <5'
ghc-typelits-knownnat: ! '>=0.5 && <1'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
author: Preetham Gujjula
latest: '0.1.0.3'
description-type: markdown
description: ! 'To build the project, first install stack (https://docs.haskellstack.org/en/stable/install_and_upgrade/).
Then from the project directory, run `stack build`.
To build and view documentation, run `stack haddock --open`.
'
license-name: BSD3
| Update from Hackage at 2018-11-05T09:56:33Z | Update from Hackage at 2018-11-05T09:56:33Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9cce4d160933d9b331ca5a6ab90c0892c883d4e4 | tests/deployments-rolling.yml | tests/deployments-rolling.yml | ---
- hosts: all
tasks:
- add_host:
name: localhost
groups: nodejs-api
changed_when: false
- import_playbook: ../deployments-rolling/playbooks/provision.yml
- import_playbook: ../deployments-rolling/playbooks/deploy.yml | ---
- hosts: all
tasks:
- add_host:
name: localhost
groups: nodejs-api
changed_when: false
- name: Update the apt cache.
apt: update_cache=yes cache_valid_time=600
- name: Ensure ping is present.
apt: name=iputils-ping state=present
- import_playbook: ../deployments-rolling/playbooks/provision.yml
- import_playbook: ../deployments-rolling/playbooks/deploy.yml | Fix broken test build for rolling deployments; ensure Ping is installed. | Fix broken test build for rolling deployments; ensure Ping is installed.
| YAML | mit | geerlingguy/ansible-for-devops,geerlingguy/ansible-for-devops,geerlingguy/ansible-for-devops,geerlingguy/ansible-for-devops,geerlingguy/ansible-for-devops |
ec61709444d84900c8159c8a21de6f258e878b27 | tasks/apache2.yml | tasks/apache2.yml | ---
## FIXME! or ssl ?
- name: Configure apache
template:
src: apache2-misp.conf.j2
dest: "{{ apache_sitedir }}/misp.conf"
mode: '0644'
backup: yes
notify:
- restart webserver
- name: Debian | Disable default apache config
file: dest=/etc/apache2/sites-enabled/000-default.conf state=absent
notify:
- restart webserver
when: ansible_os_family == 'Debian'
- name: debian | ensure required modules are present
apache2_module:
state: present
name: "{{ item }}"
with_items:
- headers
- rewrite
notify:
- restart webserver
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
- name: Debian | Enable misp apache config
file:
src: "{{ apache_sitedir }}/misp.conf"
dest: /etc/apache2/sites-enabled/misp.conf
state: link
validate: 'apachectl -t -f %s'
notify:
- restart webserver
when: ansible_os_family == 'Debian'
| ---
## FIXME! or ssl ?
- name: Configure apache
template:
src: apache2-misp.conf.j2
dest: "{{ apache_sitedir }}/misp.conf"
mode: '0644'
backup: yes
- name: Debian | Disable default apache config
file: dest=/etc/apache2/sites-enabled/000-default.conf state=absent
notify:
- restart webserver
when: ansible_os_family == 'Debian'
- name: debian | ensure required modules are present
apache2_module:
state: present
name: "{{ item }}"
with_items:
- headers
- rewrite
notify:
- restart webserver
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
- name: Debian | Enable misp apache config
file:
src: "{{ apache_sitedir }}/misp.conf"
dest: /etc/apache2/sites-enabled/misp.conf
state: link
validate: 'apachectl -t -f %s'
notify:
- restart webserver
when: ansible_os_family == 'Debian'
| Revert "centos too deserves to restart webserver" | Revert "centos too deserves to restart webserver"
This reverts commit 60414734384f3fdadf0efcd0952ea5ad8d46f2e3.
| YAML | bsd-2-clause | juju4/ansible-MISP,juju4/ansible-MISP,juju4/ansible-MISP |
b5dd4870a15a9d1ca3ec5454b98b1dc08e6b38dc | tasks/install.yml | tasks/install.yml | ---
# Include variables and define needed variables.
- name: Include OS-specific variables.
include_vars: "{{ ansible_os_family }}.yml"
- name: OS packages
package: "name={{ item }} state=present"
with_items: "{{ consul_os_packages }}"
tags: installation
- name: Download Consul
get_url: >
url={{ consul_url }}
dest={{ consul_download_dir }}/consul.zip
sha256sum={{ consul_sha256sum }}
tags: consul
- name: Unzip Consul to installation directory
unarchive: >
src={{ consul_download_dir }}/consul.zip
dest={{ consul_install_dir }}
copy=no
tags:
- consul
- consul-unzip
| ---
# Include variables and define needed variables.
- name: Include OS-specific variables.
include_vars: "{{ ansible_os_family }}.yml"
tags: always
- name: OS packages
package: "name={{ item }} state=present"
with_items: "{{ consul_os_packages }}"
tags: installation
- name: Download Consul
get_url: >
url={{ consul_url }}
dest={{ consul_download_dir }}/consul.zip
sha256sum={{ consul_sha256sum }}
tags: consul
- name: Unzip Consul to installation directory
unarchive: >
src={{ consul_download_dir }}/consul.zip
dest={{ consul_install_dir }}
copy=no
tags:
- consul
- consul-unzip
| Add always tag to include OS specific vars | Add always tag to include OS specific vars
| YAML | bsd-2-clause | kostyrevaa/ansible-role-consul |
1a4ab4a92522066b714329efe3c068de2fd5b4b7 | central-config/application.yml | central-config/application.yml | # ===================================================================
# JHipster Sample Spring Cloud Config.
# ===================================================================
# Property used on app startup to check the config server status
configserver:
name: JHipster Sample Spring Cloud Config
status: ${spring.cloud.config.uri}/${spring.cloud.config.label}/${spring.cloud.config.name}-${spring.cloud.config.profile}.yml/
# Default JWT secret token (to be changed in production!)
jhipster:
security:
rememberMe:
key: my-secret-token-to-be-changed
| # ===================================================================
# JHipster Sample Spring Cloud Config.
# ===================================================================
# Property used on app startup to check the config server status
configserver:
name: JHipster Sample Spring Cloud Config
status: ${spring.cloud.config.uri}/${spring.cloud.config.label}/${spring.cloud.config.name}-${spring.cloud.config.profile}.yml/
# Default JWT secret token (to be changed in production!)
jhipster:
security:
rememberMe:
key: 7ddaa96176349832ee392f4ccc464d6344e0e126
| Add a default JWT token (for testing only!) | Add a default JWT token (for testing only!)
| YAML | apache-2.0 | huiqiangyang/registry,huiqiangyang/registry,huiqiangyang/registry,huiqiangyang/registry,huiqiangyang/registry |
5f198f5b286fcaed92a39af46036da492fdfabde | rpi/roles/main/tasks/main.yml | rpi/roles/main/tasks/main.yml | ---
- name: ensure setup dependencies
ansible.builtin.apt:
name:
- ansible
- git
- name: install apt-transport-https
ansible.builtin.apt: name=apt-transport-https
- name: install https sources list
ansible.builtin.template:
src: sources.list.j2
owner: root
group: root
mode: 0644
dest: /etc/apt/sources.list
- name: install https raspi sources list
ansible.builtin.template:
src: raspi.list.j2
owner: root
group: root
mode: 0644
dest: /etc/apt/sources.list.d/raspi.list
- name: install firefox
ansible.builtin.apt: name=firefox-esr
- name: ensure openssh is installed
ansible.builtin.apt: name=openssh-server
- name: ensure sshd is running and enabled
ansible.builtin.systemd: name=ssh.service enabled=yes state=started
- name: copy sshd config
ansible.builtin.copy:
src: sshd_config
owner: root
group: root
mode: 0644
dest: /etc/ssh/sshd_config
validate: /usr/sbin/sshd -tf %s
notify:
- restart sshd
- name: install other applications
ansible.builtin.apt:
name:
- htop
- libarchive-tools
- lm-sensors
- ripgrep
- screen
- vim
- include: boot.yml
| ---
- name: ensure setup dependencies
ansible.builtin.apt:
name:
- ansible
- git
- name: install apt-transport-https
ansible.builtin.apt: name=apt-transport-https
- name: install https sources list
ansible.builtin.template:
src: sources.list.j2
owner: root
group: root
mode: 0644
dest: /etc/apt/sources.list
- name: install https raspi sources list
ansible.builtin.template:
src: raspi.list.j2
owner: root
group: root
mode: 0644
dest: /etc/apt/sources.list.d/raspi.list
- name: install firefox
ansible.builtin.apt: name=firefox-esr
- name: ensure openssh is installed
ansible.builtin.apt: name=openssh-server
- name: ensure sshd is running and enabled
ansible.builtin.systemd: name=ssh.service enabled=yes state=started
- name: copy sshd config
ansible.builtin.copy:
src: sshd_config
owner: root
group: root
mode: 0644
dest: /etc/ssh/sshd_config
validate: /usr/sbin/sshd -tf %s
notify:
- restart sshd
- name: install other applications
ansible.builtin.apt:
name:
- htop
- libarchive-tools
- lm-sensors
- ripgrep
- screen
- vim
- name: install backup applications
ansible.builtin.apt:
name:
- borg
- rclone
- include: boot.yml
| Install borg and rclone on raspberry pi | Install borg and rclone on raspberry pi
| YAML | mpl-2.0 | mfinelli/arch-install |
d61325fc8a4d3dc92cb43213988640bef1e9730c | s3_website.yml | s3_website.yml | s3_id: <%= ENV['AWS_S3_ID'] %>
s3_secret: <%= ENV['AWS_S3_SECRET'] %>
s3_bucket: suchow.io
# Below are examples of all the available configurations.
# See README for more detailed info on each of them.
# max_age:
# "assets/*": 6000
# "*": 300
# gzip:
# - .html
# - .css
# - .md
# gzip_zopfli: true
# See http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region for valid endpoints
# s3_endpoint: ap-northeast-1
# ignore_on_server: that_folder_of_stuff_i_dont_keep_locally
# exclude_from_upload:
# - those_folders_of_stuff
# - i_wouldnt_want_to_upload
# s3_reduced_redundancy: true
# cloudfront_distribution_id: your-dist-id
# cloudfront_distribution_config:
# default_cache_behavior:
# min_TTL: <%= 60 * 60 * 24 %>
# aliases:
# quantity: 1
# items:
# CNAME: your.website.com
# cloudfront_invalidate_root: true
# concurrency_level: 5
# redirects:
# index.php: /
# about.php: about.html
# music-files/promo.mp4: http://www.youtube.com/watch?v=dQw4w9WgXcQ
# routing_rules:
# - condition:
# key_prefix_equals: blog/some_path
# redirect:
# host_name: blog.example.com
# replace_key_prefix_with: some_new_path/
# http_redirect_code: 301
# extensionless_mime_type: text/html
| s3_id: <%= ENV['AWS_S3_ID'] %>
s3_secret: <%= ENV['AWS_S3_SECRET'] %>
s3_bucket: suchow.io
gzip: true
| Enable gzip, removed unused options | Enable gzip, removed unused options
| YAML | mit | suchow/suchow.io,suchow/suchow.io,suchow/suchow.io |
988842acf1ed4576b155e7968f34427acab3b526 | coalescent/configs/tiny_ci.yml | coalescent/configs/tiny_ci.yml | seed: 3301
num_replicates: 1
population_size: 6
recomb_per_gen: 1
num_chroms: 1 # Chromosomes
runs_per_sample: 2 # Replicate runs per sample
coverage_cv: 0.3
genome_size: 10000
sketch_size: "5e4"
# Pairs of coverage, tree scale (i.e. $\pi$, mean pairwise dist.)
coverage_variablity:
- {cov: 1, var: 0.001}
- {cov: 4, var: 0.001}
- {cov: 4, var: 0.01}
- {cov: 4, var: 0.001}
| seed: 3301
num_replicates: 1
population_size: 6
recomb_per_gen: 1
num_chroms: 1 # Chromosomes
runs_per_sample: 2 # Replicate runs per sample
coverage_cv: 0.3
genome_size: 10000
sketch_size: "5e5"
# Pairs of coverage, tree scale (i.e. $\pi$, mean pairwise dist.)
coverage_variablity:
- {cov: 1, var: 0.001}
- {cov: 4, var: 0.001}
- {cov: 4, var: 0.01}
- {cov: 4, var: 0.001}
| Fix sketch size in CI config | Fix sketch size in CI config
| YAML | mit | kdmurray91/kwip-experiments,kdmurray91/kwip-experiments,kdmurray91/kwip-experiments |
c2703f962a036eb8592afa418a18bda22ba81ccc | build/appveyor.yml | build/appveyor.yml | branches:
only:
- master
version: 2016.0.{build}
configuration: Release
before_build:
- ps: nuget restore Source\MailMessaging.sln
build:
verbosity: minimal
after_build:
- cmd: nuget pack build/MailMessaging.Plain.Contracts.nuspec -Properties Configuration=%configuration% -Version %appveyor_build_version% -NoDefaultExcludes
- cmd: nuget pack build/MailMessaging.Plain.Net.nuspec -Properties Configuration=%configuration% -Version %appveyor_build_version% -NoDefaultExcludes
assembly_info:
patch: true
file: AssemblyInfo.cs
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
test:
assemblies: MailMessaging.Plain.Net.UnitTest
artifacts:
- path: '**\MailMessaging.Plain.Contracts*.nupkg'
name: MailMessaging.Plain.Contracts.nupkg
- path: '**\MailMessaging.Plain.Net*.nupkg'
name: MailMessaging.Plain.Net.nupkg
deploy:
provider: NuGet
api_key:
secure: EEzMZXyGYmDBGcZfcOsS1QB+8iHT760Kg/ML6l0jHL+wxqMaZYqWSztF0VlpyBCL
skip_symbols: true
artifact: MailMessaging.Plain.*.nupkg | branches:
only:
- master
version: 2016.0.{build}
configuration: Release
before_build:
- ps: nuget restore Source\MailMessaging.sln
build:
verbosity: minimal
after_build:
- cmd: nuget pack build/MailMessaging.Plain.Contracts.nuspec -Properties Configuration=%configuration% -Version %appveyor_build_version% -NoDefaultExcludes
- cmd: nuget pack build/MailMessaging.Plain.Net.nuspec -Properties Configuration=%configuration% -Version %appveyor_build_version% -NoDefaultExcludes
assembly_info:
patch: true
file: AssemblyInfo.cs
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
test:
assemblies: MailMessaging.Plain.Net.UnitTest
artifacts:
- path: '**\MailMessaging.Plain.Contracts*.nupkg'
name: MailMessaging.Plain.Contracts.nupkg
- path: '**\MailMessaging.Plain.Net*.nupkg'
name: MailMessaging.Plain.Net.nupkg
deploy:
provider: NuGet
api_key:
secure: EEzMZXyGYmDBGcZfcOsS1QB+8iHT760Kg/ML6l0jHL+wxqMaZYqWSztF0VlpyBCL
skip_symbols: true
artifact: /MailMessaging\.Plain\..*\.nupkg/ | Correct filter for nuget deployment. | Correct filter for nuget deployment.
| YAML | apache-2.0 | jan-schubert/MailMessaging |
a1dcd5ff8a13e5f532b7b666136d6d9db09aef69 | config/worker.nodejs.yml | config/worker.nodejs.yml | queue: builds.nodejs
shell:
buffer: 1.0
timeouts:
before_install: 240
install: 240
before_script: 240
script: 720
| queue: builds.node
shell:
buffer: 1.0
timeouts:
before_install: 240
install: 240
before_script: 240
script: 720
| Correct default Node.js worker queue name to match what travis server uses | Correct default Node.js worker queue name to match what travis server uses
| YAML | mit | ireznice/travis-worker,ireznice/travis-worker,travis-ci/travis-worker,gavioto/travis-worker,final-ci/travis-worker,final-ci/travis-worker,travis-ci/travis-worker,gavioto/travis-worker |
4412580b8fa9753773e0bf618e29c4191baea836 | releasenotes/notes/prevent-unauthorized-errors-ebb9cf2236595cd0.yaml | releasenotes/notes/prevent-unauthorized-errors-ebb9cf2236595cd0.yaml | ---
prelude: >
Prevent Unauthorized errors during uploading or
donwloading data to Swift store.
features:
- Allow glance_store to refresh token when upload or download data to Swift
store. glance_store identifies if token is going to expire soon when
executing request to Swift and refresh the token. For multi-tenant swift
store glance_store uses trusts, for single-tenant swift store glance_store
uses credentials from swift store configurations. Please also note that
this feature is enabled if and only if Keystone V3 API is available
and enabled. | ---
prelude: >
Prevent Unauthorized errors during uploading or
donwloading data to Swift store.
features:
- Allow glance_store to refresh token when upload or download data to Swift
store. glance_store identifies if token is going to expire soon when
executing request to Swift and refresh the token. For multi-tenant swift
store glance_store uses trusts, for single-tenant swift store glance_store
uses credentials from swift store configurations. Please also note that
this feature is enabled if and only if Keystone V3 API is available
and enabled. | Fix releasenotes to pass reno gates | Fix releasenotes to pass reno gates
Release note for swift driver update cannot be generated
because of intendation, so we need to fix that error.
After that we can safely turn on reno gates for glance_store.
Change-Id: I0293c247bc87d81218c4350393a8bfb4d769bc91
Closes-Bug: #1568767
| YAML | apache-2.0 | openstack/glance_store,openstack/glance_store |
6b9c1fe317c350be819bb7baa9f79f86a30eef82 | delivery.yaml | delivery.yaml | build_steps:
- desc: 'Install required build software'
cmd: |
apt-get install -y make git apt-transport-https ca-certificates curl
- desc: 'Install go'
cmd: |
cd /tmp
wget -q https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz -O go.tar.gz
tar -xf go.tar.gz
mv go /usr/local
ln -s /usr/local/go/bin/go /usr/bin/go
go version
- desc: 'Install Docker'
cmd: |
curl -sSL https://get.docker.com/ | sh
- desc: 'Symlink sources into the GOPATH'
cmd: |
export GOPATH=$HOME/go
export OPERATOR_TOP_DIR=$GOPATH/src/github.com/zalando-incubator
mkdir -p $OPERATOR_TOP_DIR
ln -s $(pwd) $OPERATOR_TOP_DIR/postgres-operator
- desc: 'Build & push docker image'
cmd: |
export PATH=$PATH:$HOME/go/bin
IS_PR_BUILD=${CDP_PULL_REQUEST_NUMBER+"true"}
if [[ ${CDP_TARGET_BRANCH} == "master" && ${IS_PR_BUILD} != "true" ]]
then
IMAGE=registry-write.opensource.zalan.do/acid/postgres-operator
else
IMAGE=registry-write.opensource.zalan.do/acid/postgres-operator-test
fi
export IMAGE
make tools deps docker push
| build_steps:
- desc: 'Install required build software'
cmd: |
apt-get install -y make git apt-transport-https ca-certificates curl
- desc: 'Install go'
cmd: |
cd /tmp
wget -q https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz -O go.tar.gz
tar -xf go.tar.gz
mv go /usr/local
ln -s /usr/local/go/bin/go /usr/bin/go
go version
- desc: 'Install Docker'
cmd: |
curl -sSL https://get.docker.com/ | sh
- desc: 'Symlink sources into the GOPATH'
cmd: |
export GOPATH=$HOME/go
export OPERATOR_TOP_DIR=$GOPATH/src/github.com/zalando-incubator
mkdir -p $OPERATOR_TOP_DIR
ln -s $(pwd) $OPERATOR_TOP_DIR/postgres-operator
- desc: 'Run unit tests'
cmd: |
export PATH=$PATH:$HOME/go/bin
export GOPATH=$HOME/go
go test ./...
- desc: 'Build & push docker image'
cmd: |
export PATH=$PATH:$HOME/go/bin
IS_PR_BUILD=${CDP_PULL_REQUEST_NUMBER+"true"}
if [[ ${CDP_TARGET_BRANCH} == "master" && ${IS_PR_BUILD} != "true" ]]
then
IMAGE=registry-write.opensource.zalan.do/acid/postgres-operator
else
IMAGE=registry-write.opensource.zalan.do/acid/postgres-operator-test
fi
export IMAGE
make tools deps docker push
| Add a new step to run unit tests | Add a new step to run unit tests
| YAML | mit | zalando-incubator/postgres-operator,zalando-incubator/postgres-operator |
fc69db0ad4ab03731b1719cd1882ba028cde04f3 | .github/workflows/pythonpackage.yml | .github/workflows/pythonpackage.yml | name: Python package
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [2.7, 3.5, 3.6, 3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Build docs
run: |
pip install .[docs]
sphinx-build -W docs /dev/shm/sphinx
- name: Test with pytest
run: |
pip install .[tests] # coveralls
# nosetests tests -v --with-coverage --cover-package=python_anticaptcha --processes=8
nosetests tests -v --processes=8
# coveralls
| name: Python package
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version: [2.7, 3.5, 3.6, 3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Build docs
run: |
pip install .[docs]
sphinx-build -W docs /dev/shm/sphinx
- name: Test with pytest
run: |
pip install .[tests] # coveralls
# nosetests tests -v --with-coverage --cover-package=python_anticaptcha --processes=8
nosetests tests -v --processes=8
# coveralls
| Fix build on GitHub Actions | Fix build on GitHub Actions
| YAML | mit | ad-m/python-anticaptcha |
32df5a39c71d107c3eb8e2780244c17d29e17147 | snapcraft.yaml | snapcraft.yaml | name: ipfs
version: 'v0.4.4'
summary: global, versioned, peer-to-peer filesystem
description: |
IPFS combines good ideas from Git, BitTorrent, Kademlia, SFS, and the Web.
It is like a single bittorrent swarm, exchanging git objects. IPFS provides
an interface as simple as the HTTP web, but with permanence built in. You
can also mount the world at /ipfs.
confinement: strict
apps:
ipfs:
command: ipfs
plugs: [network, network-bind]
parts:
ipfs:
source: https://github.com/ipfs/go-ipfs.git
source-tag: 'v0.4.4'
plugin: ipfs
go-importpath: github.com/ipfs/go-ipfs
| name: ipfs-elopio
version: master
summary: global, versioned, peer-to-peer filesystem
description: |
IPFS combines good ideas from Git, BitTorrent, Kademlia, SFS, and the Web.
It is like a single bittorrent swarm, exchanging git objects. IPFS provides
an interface as simple as the HTTP web, but with permanence built in. You
can also mount the world at /ipfs.
confinement: strict
apps:
ipfs:
command: ipfs
plugs: [network, network-bind]
parts:
ipfs:
source: https://github.com/ipfs/go-ipfs.git
plugin: ipfs
go-importpath: github.com/ipfs/go-ipfs
| Prepare to release my own snap | Prepare to release my own snap
| YAML | mit | elopio/ipfs-snap |
cc2fa6e4c4f1e8a13ef0802f2e5d00ab324ec562 | tasks/manage_cli.yml | tasks/manage_cli.yml | ---
# Tasks used to manange Jenkins CLI
- name : Ensure jenkins running
become : True
service :
name : "{{ jenkins_service_name }}"
state : started
- name : Ensure Jenkins is available
wait_for :
port : "{{ jenkins_config_http_port }}"
delay : "{{ jenkins_cli_waiting_available }}"
- name : Add debug for Travis
register : jenkins_travis_debug
get_url :
url : "{{ jenkins_cli_download_address }}"
dest : "/tmp/foo"
- name: Get file content
shell: cat /tmp/foo
register: jenkins_travis_cli_debug
- name : Display debug variable
debug :
var : jenkins_travis_debug
- name : Display tmp file content
debug :
var : jenkins_travis_cli_debug
- name : Install Jenkins CLI
become : True
become_user : "{{ jenkins_config_user }}"
get_url :
url : "{{ jenkins_cli_download_address }}"
dest : "{{ jenkins_cli_destination }}"
force : True
| ---
# Tasks used to manange Jenkins CLI
- name : Ensure jenkins running
become : True
service :
name : "{{ jenkins_service_name }}"
state : started
- name : Ensure Jenkins is available
wait_for :
port : "{{ jenkins_config_http_port }}"
delay : "{{ jenkins_cli_waiting_available }}"
- name : Add debug for Travis
register : jenkins_travis_debug
shell : "curl http://localhost:8080/cli/ | grep jenkins-cli.jar"
- name : Display debug variable
debug :
var : jenkins_travis_debug
- name : Install Jenkins CLI
become : True
become_user : "{{ jenkins_config_user }}"
get_url :
url : "{{ jenkins_cli_download_address }}"
dest : "{{ jenkins_cli_destination }}"
force : True
| Add debug for Travis failure - 4 | Add debug for Travis failure - 4
| YAML | mit | infOpen/ansible-role-jenkins |
1e2bc611ed09aa21e0932362d09e563ebdc6efa8 | packages/ha/haskellish.yaml | packages/ha/haskellish.yaml | homepage: http://github.com/dktr0/Haskellish
changelog-type: ''
hash: 08cdbf85b176991ca6df3cbc56d296f1d01a38369ad237b420b6606955bb6490
test-bench-deps: {}
maintainer: David Ogborn <ogbornd@mcmaster.ca>
synopsis: For parsing Haskell-ish languages
changelog: ''
basic-deps:
base: '>=4.8 && <5'
containers: <0.7
haskell-src-exts: '>=1.17.1 && <1.23'
mtl: '>=2.2.2 && <2.3'
template-haskell: '>=2.10.0.0 && <2.16'
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
- 0.2.0
- 0.2.2
- 0.2.3
- 0.2.3.1
author: David Ogborn
latest: 0.2.3.1
description-type: haddock
description: A library for parsing miniature and esoteric languages that are similar
to Haskell
license-name: BSD-3-Clause
| homepage: http://github.com/dktr0/Haskellish
changelog-type: ''
hash: 9703fc1aa2ee147e40f456e6bbdb67f88fbd12fcf81632d1122d2bf497adab99
test-bench-deps: {}
maintainer: David Ogborn <ogbornd@mcmaster.ca>
synopsis: For parsing Haskell-ish languages
changelog: ''
basic-deps:
base: '>=4.8 && <5'
text: <1.3
containers: <0.7
haskell-src-exts: '>=1.17.1 && <1.23'
mtl: '>=2.2.2 && <2.3'
template-haskell: '>=2.10.0.0 && <2.16'
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
- 0.2.0
- 0.2.2
- 0.2.3
- 0.2.3.1
- 0.2.4
author: David Ogborn
latest: 0.2.4
description-type: haddock
description: A library for parsing miniature and esoteric languages that are similar
to Haskell
license-name: BSD-3-Clause
| Update from Hackage at 2021-02-12T22:22:48Z | Update from Hackage at 2021-02-12T22:22:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6dcedd847a7ea413f48fba1dd9980c9b2728ebe6 | circle.yml | circle.yml | version: 2
jobs:
build:
parallelism: 1
docker:
# The primary container is an instance of the first list image listed. Your build commands run in this container.
- image: docker/compose:1.14.0
working_directory: ~/st2
environment:
- DISTROS: "trusty xenial el6 el7"
- ST2_PACKAGES_REPO: https://github.com/StackStorm/st2-packages
- DEPLOY_PACKAGES: 0
steps:
- checkout
- setup_remote_docker
- run:
name: Install dependencies - this should be done as a pre-packed Docker image later
command: |
apt-get install -y sudo git
- run:
name: Download st2-packages repository
command: |
set -x
git clone --depth 1 ${ST2_PACKAGES_REPO} ~/st2-packages
cd ~/st2-packages
git checkout ${CIRCLE_BRANCH} || true
| version: 2
jobs:
build:
parallelism: 1
docker:
# The primary container is an instance of the first list image listed. Your build commands run in this container.
- image: ubuntu:trusty
working_directory: ~/st2
environment:
- DISTROS: "trusty xenial el6 el7"
- ST2_PACKAGES_REPO: https://github.com/StackStorm/st2-packages
- DEPLOY_PACKAGES: 0
steps:
- checkout
- setup_remote_docker
- run:
name: Install dependencies - should be done as a pre-packed Docker image later
command: |
set -x
curl -L https://github.com/docker/compose/releases/download/1.14.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
- run:
name: Download st2-packages repository
command: |
set -x
git clone --depth 1 ${ST2_PACKAGES_REPO} ~/st2-packages
cd ~/st2-packages
git checkout ${CIRCLE_BRANCH} || true
| Install everything in trusty base image | Install everything in trusty base image
| YAML | apache-2.0 | StackStorm/st2,nzlosh/st2,nzlosh/st2,Plexxi/st2,StackStorm/st2,Plexxi/st2,Plexxi/st2,StackStorm/st2,nzlosh/st2,nzlosh/st2,Plexxi/st2,StackStorm/st2 |
6cf7ac10693034972da592cdd2905d9c746b5b82 | circle.yml | circle.yml | dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tool"
- (while true; do echo y; sleep 3; done) | android update sdk --no-ui --all --filter "android-23,android-21,build-tools-23.0.3,extra-android-support,extra-android-m2repository"
- echo "sdk.dir=${ANDROID_HOME}" > /home/ubuntu/Kotpref/local.properties
- echo "org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=1024m -Xms512m" > gradle.properties
test:
override:
- ./gradlew kotpref:test
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/test-results/*/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
deployment:
bintray:
branch: publish
commands:
- ./gradlew kotpref:install kotpref:bintrayUpload
| dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tool"
- (while true; do echo y; sleep 3; done) | android update sdk --no-ui --all --filter "android-23,android-21,build-tools-23.0.3,extra-android-support,extra-android-m2repository"
- echo "sdk.dir=${ANDROID_HOME}" > /home/ubuntu/Kotpref/local.properties
- echo "org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=1024m -Xms512m" > gradle.properties
test:
override:
- ./gradlew kotpref:testDebugUnitTest
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/test-results/*/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
deployment:
bintray:
branch: publish
commands:
- ./gradlew kotpref:install kotpref:bintrayUpload
| Fix unit test build type | Fix unit test build type
| YAML | apache-2.0 | chibatching/Kotpref |
7d3b4684262f0c3540dd2ce29302caa9cdc3de31 | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
- .bundle
- node_modules
- public/assets
override:
- if [[ -e ~/docker/image.tar ]]; then docker load -i ~/docker/image.tar; fi
- sudo pip install --upgrade docker-compose==1.5.2
- docker pull ultrayoshi/ruby-node-phantomjs:2.1.1
- docker pull postgres
- docker pull redis
- cp .env.example .env
- docker-compose build
- docker-compose run app bundle install
- docker-compose run app npm install
- docker-compose run app webpack
- mkdir -p ~/docker; docker save ultrayoshi/ruby-node-phantomjs:2.1.1 postgres redis > ~/docker/image.tar
- docker-compose run app rake db:setup
- docker-compose run -e RAILS_ENV=test app bundle exec rake assets:precompile
database:
override:
- echo 'done'
test:
override:
- docker-compose run -e CI=true -e CI_PULL_REQUEST=$CI_PULL_REQUEST -e CI_PULL_REQUESTS=$CI_PULL_REQUESTS -e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN -e COVERALLS_PARALLEL=true app bundle exec rspec:
parallel: true
files:
- spec/**/*_spec.rb
| machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
- .bundle
- node_modules
- public/assets
override:
- if [[ -e ~/docker/image.tar ]]; then docker load -i ~/docker/image.tar; fi
- sudo pip install --upgrade docker-compose==1.5.2
- docker pull ultrayoshi/ruby-node-phantomjs:2.1.1
- docker pull postgres
- docker pull redis
- cp .env.example .env
- docker-compose build
- docker-compose run app bundle install
- docker-compose run app npm install
- docker-compose run app webpack
- mkdir -p ~/docker; docker save ultrayoshi/ruby-node-phantomjs:2.1.1 postgres redis > ~/docker/image.tar
- docker-compose run app rake db:setup
- docker-compose run -e RAILS_ENV=test app bundle exec rake assets:precompile
database:
override:
- echo 'done'
test:
override:
- docker-compose run -e CI=true -e CI_PULL_REQUEST=$CI_PULL_REQUEST -e CI_PULL_REQUESTS=$CI_PULL_REQUESTS -e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN -e COVERALLS_PARALLEL=true app bundle exec rspec:
parallel: true
files:
- spec/**/*_spec.rb
- docker-compose run app npm test:
parallel: true
files:
- app/frontend/**/*.test.js
| Add CircleCI configuration for npm test | Add CircleCI configuration for npm test
| YAML | agpl-3.0 | AjuntamentdeBarcelona/barcelona-participa,AjuntamentdeBarcelona/barcelona-participa,AjuntamentdeBarcelona/barcelona-participa,AjuntamentdeBarcelona/decidim.barcelona,AjuntamentdeBarcelona/decidim.barcelona-legacy,AjuntamentdeBarcelona/decidim.barcelona-legacy,AjuntamentdeBarcelona/decidimbcn,AjuntamentdeBarcelona/decidim.barcelona-legacy,AjuntamentdeBarcelona/decidimbcn,AjuntamentdeBarcelona/decidim.barcelona,AjuntamentdeBarcelona/decidim.barcelona,AjuntamentdeBarcelona/decidim.barcelona,AjuntamentdeBarcelona/decidimbcn,AjuntamentdeBarcelona/decidim.barcelona-legacy |
d7be8dfb27bbb95059c8bb478f7e341ad31b26f8 | circle.yml | circle.yml |
machine:
services:
- docker
dependencies:
override:
- docker info
- docker build -t accounts-cbd-int .
test:
override:
- docker run -d -p 4444:8000 -e SAUCE_USERNAME=$SAUCE_USERNAME -e SAUCE_ACCESS_KEY=$SAUCE_ACCESS_KEY ustwo/docker-sauce-connect:4.3
- docker run -d -p 8000:8000 accounts-cbd-int
- curl --retry 10 --retry-delay 2 -v http://localhost:4444
- curl --retry 10 --retry-delay 2 -v http://localhost:8000
- docker run --net host accounts-cbd-int protractor spec/conf.js
|
machine:
services:
- docker
dependencies:
override:
- docker info
- docker build -t accounts-cbd-int .
test:
override:
- docker run -d -p 4444:8000 -e SAUCE_USERNAME=$SAUCE_USERNAME -e SAUCE_ACCESS_KEY=$SAUCE_ACCESS_KEY ustwo/docker-sauce-connect:4.3
- docker run -d -p 8000:8000 accounts-cbd-int
- wget --retry-connrefused 10 http://localhost:4444
- wget --retry-connrefused 10 http://localhost:8000
- docker run --net host accounts-cbd-int protractor spec/conf.js
| Use wget instead of curl | Use wget instead of curl
| YAML | mit | scbd/accounts.cbd.int,scbd/accounts.cbd.int,scbd/accounts.cbd.int |
c08d24c4815d05a81cc468289f62eb5928aa5bbf | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
override:
- docker info
# our circle setup uses compose - install it
- sudo pip install --upgrade docker-compose==1.2.0
# install AWS CLI
- sudo pip install awscli
# build the image
- docker build -t soutech/champaign-ak-processor:$CIRCLE_SHA1 .
test:
override:
# tests the built image
- cat circle/docker-compose-template.yml | envsubst > circle/docker-compose.yml
- cat Dockerrun.aws.json.template | envsubst > $CIRCLE_SHA1-Dockerrun.aws.json
- annotate-output docker-compose -f circle/docker-compose.yml run processor
database:
override:
- echo "Look in circle/run-tests for database setup for testing environment."
deployment:
production:
# push to Docker Hub and deploy new version on AWS
branch: aws-deploy
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker push soutech/champaign-ak-processor
- ./deploy.sh $CIRCLE_SHA1
| machine:
services:
- docker
dependencies:
override:
- docker info
# our circle setup uses compose - install it
- sudo pip install --upgrade docker-compose==1.2.0
# install AWS CLI
- sudo pip install awscli
# build the image
- docker build -t soutech/champaign-ak-processor:$CIRCLE_SHA1 .
test:
override:
# tests the built image
- cat circle/docker-compose-template.yml | envsubst > circle/docker-compose.yml
- cat Dockerrun.aws.json.template | envsubst > $CIRCLE_SHA1-Dockerrun.aws.json
- annotate-output docker-compose -f circle/docker-compose.yml run processor
database:
override:
- echo "Look in circle/run-tests for database setup for testing environment."
deployment:
production:
# push to Docker Hub and deploy new version on AWS
branch: master
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker push soutech/champaign-ak-processor
- ./deploy.sh $CIRCLE_SHA1
| Change production branch back to master | Change production branch back to master
| YAML | mit | SumOfUs/champaign-ak-processor,SumOfUs/champaign-ak-processor,SumOfUs/champaign-ak-processor |
ee1ded2b33f15637a75f1348436f17e3543de562 | circle.yml | circle.yml | machine:
node:
version: 6.3.1
post:
- npm install -g npm@3.10.10
checkout:
post:
- npm install
- npm run build
- npm run build-examples
| machine:
node:
version: 6.3.1
post:
- npm install -g npm@3.10.10
checkout:
post:
- npm install
- npm run build
- npm run build-examples
test:
post:
- cp -r coverage $CIRCLE_ARTIFACTS
| Add code coverage report to CircleCI artifacts | Add code coverage report to CircleCI artifacts
| YAML | bsd-2-clause | clbond/angular-ssr,clbond/angular-ssr,clbond/angular-ssr,clbond/angular-ssr |
c23e9d7588987ab72b1825508eda8019f9798fe5 | circle.yml | circle.yml | test:
pre:
- bundle exec rubocop
override:
- bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
| dependencies:
override:
- 'rvm-exec 2.1.7 bundle install'
- 'rvm-exec 2.2.3 bundle install'
- 'rvm-exec 2.3.0 bundle install'
test:
override:
- 'rvm-exec 2.1.7 bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml'
- 'rvm-exec 2.1.7 bundle exec rubocop'
- 'rvm-exec 2.2.3 bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml'
- 'rvm-exec 2.2.3 bundle exec rubocop'
- 'rvm-exec 2.3.0 bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml'
- 'rvm-exec 2.3.0 bundle exec rubocop'
| Add testing for Ruby 2.3, 2.2, and 2.1 | Add testing for Ruby 2.3, 2.2, and 2.1
| YAML | mit | teespring/nightwing |
1b4af77230a1a1fcf31c2e0c72e7a3ee5d2fdbef | circle.yml | circle.yml | machine:
node:
version: 5.7
services:
- docker
environment:
IMAGE_NAME: hello-node
dependencies:
override:
- docker info
- docker build -t $IMAGE_NAME:$(git describe --tags --always) .
pre:
- npm install
- npm run build:scss
- npm run build:js
test:
override:
# - docker run -d -p 3000:3000 $IMAGE_NAME:$(git describe --tags --always); sleep 10
# - mocha test/integration
# - istanbul cover _mocha --dir $CIRCLE_ARTIFACTS/coverage
deployment:
elasticbeanstalk:
branch: master
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker tag -f $IMAGE_NAME:$(git describe --tags --always) $DOCKER_PRIVATE_REPO/$IMAGE_NAME:latest
- docker tag -f $IMAGE_NAME:$(git describe --tags --always) $DOCKER_PRIVATE_REPO/$IMAGE_NAME:$(git describe --tags --always)
- docker push $DOCKER_PRIVATE_REPO/$IMAGE_NAME:$(git describe --tags --always)
- docker push $DOCKER_PRIVATE_REPO/$IMAGE_NAME:latest
- ./deploy.sh $(git describe --tags --always) $DOCKER_PRIVATE_REPO $IMAGE_NAME $EB_BUCKET $AWS_REGION $AWS_APP_NAME $AWS_APP_ENV
| machine:
node:
version: 5.7
services:
- docker
environment:
IMAGE_NAME: hello-node
dependencies:
override:
- docker info
- docker build -t $IMAGE_NAME:$(git describe --tags --always) .
pre:
- npm install
- mkdir public
- npm run build:scss
- npm run build:js
test:
override:
# - docker run -d -p 3000:3000 $IMAGE_NAME:$(git describe --tags --always); sleep 10
# - mocha test/integration
# - istanbul cover _mocha --dir $CIRCLE_ARTIFACTS/coverage
deployment:
elasticbeanstalk:
branch: master
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker tag -f $IMAGE_NAME:$(git describe --tags --always) $DOCKER_PRIVATE_REPO/$IMAGE_NAME:latest
- docker tag -f $IMAGE_NAME:$(git describe --tags --always) $DOCKER_PRIVATE_REPO/$IMAGE_NAME:$(git describe --tags --always)
- docker push $DOCKER_PRIVATE_REPO/$IMAGE_NAME:$(git describe --tags --always)
- docker push $DOCKER_PRIVATE_REPO/$IMAGE_NAME:latest
- ./deploy.sh $(git describe --tags --always) $DOCKER_PRIVATE_REPO $IMAGE_NAME $EB_BUCKET $AWS_REGION $AWS_APP_NAME $AWS_APP_ENV
| Build sass and js files | Build sass and js files
| YAML | mit | jonalu/hello-ci,jonalu/hello-ci |
6c2d1aa3df923bf843b71a75561c102d4e52fadd | circle.yml | circle.yml | # Custom CircleCI Config
# https://circleci.com/docs/1.0/configuration/
machine:
python:
version: "3.6.1"
dependencies:
override:
- "pip install -r requirements.txt"
- "pip install -r requirements-test.txt"
test:
pre:
- "flake8 src/"
override:
- "nosetests --with-xunit --with-coverage --cover-html --cover-package=ultros --cover-inclusive --cover-xml --cover-xml-file=nose-coverage.xml -v tests/"
post:
- "mkdir $CIRCLE_TEST_REPORTS/nose"
- "mv nosetests.xml $CIRCLE_TEST_REPORTS/nose/nosetests.xml"
| # Custom CircleCI Config
# https://circleci.com/docs/1.0/configuration/
machine:
python:
version: "3.6.1"
dependencies:
override:
- "pip install -U -r requirements.txt"
- "pip install -U -r requirements-test.txt"
general:
artifacts:
- "cover/"
test:
pre:
- "flake8 src/"
override:
- "nosetests --with-xunit --with-coverage --cover-html --cover-package=ultros --cover-inclusive --cover-xml --cover-xml-file=nose-coverage.xml -v tests/"
post:
- "mkdir $CIRCLE_TEST_REPORTS/nose"
- "mv nosetests.xml $CIRCLE_TEST_REPORTS/nose/nosetests.xml"
| Add coverage to Circle artifacts | Add coverage to Circle artifacts
| YAML | artistic-2.0 | UltrosBot/Ultros3K,UltrosBot/Ultros3K |
8cb17cbb1c509c97562cff31f616670c738ec845 | circle.yml | circle.yml |
machine:
node:
version: 6
dependencies:
pre:
- bundle config without development:production
- npm rebuild node-sass
cache_directories:
- "/node_modules/"
test:
pre:
- npm run build
override:
- npm run test
deployment:
npm:
tag: /release-.*/
owner: 18F
commands:
- echo -e "$NPM_USERNAME\n$NPM_PASSWORD\n$NPM_EMAIL" | npm login
- npm run check-publish
|
machine:
node:
version: 6
dependencies:
pre:
- bundle config without development:production
- npm rebuild node-sass
cache_directories:
- "/node_modules/"
test:
pre:
- npm run build
override:
- npm run test
deployment:
npm:
tag: /[0-9]+(\.[0-9]+)*/
owner: 18F
commands:
- echo -e "$NPM_USERNAME\n$NPM_PASSWORD\n$NPM_EMAIL" | npm login
- npm run check-publish
| Fix mistake in release check | Fix mistake in release check | YAML | cc0-1.0 | 18F/cg-style,18F/cg-style,18F/cg-style |
c30f17ef61823804900de093604d23c084180296 | circle.yml | circle.yml | machine:
environment:
PATH: "$HOME/cmake-3.1.3-Linux-x86_64/bin:$PATH"
dependencies:
cache_directories:
- ~/cmake-3.1.3-Linux-x86_64
override:
- >
if [ ! -d ~/cmake-3.1.3-Linux-x86_64 ]; then
echo "No cache - building CMake"
cd ~ && wget --quiet https://cmake.org/files/v3.1/cmake-3.1.3-Linux-x86_64.tar.gz && tar -xvf cmake-3.1.3-Linux-x86_64.tar.gz
else
echo "Cached CMake found"
fi
test:
override:
- make
| machine:
environment:
PATH: "$HOME/cmake-3.1.3-Linux-x86_64/bin:$PATH"
dependencies:
cache_directories:
- ~/cmake-3.1.3-Linux-x86_64
override:
- sudo apt-get install lua5.1 lua5.1-dev
- >
if [ ! -d ~/cmake-3.1.3-Linux-x86_64 ]; then
echo "No cache - building CMake"
cd ~ && wget --quiet https://cmake.org/files/v3.1/cmake-3.1.3-Linux-x86_64.tar.gz && tar -xvf cmake-3.1.3-Linux-x86_64.tar.gz
else
echo "Cached CMake found"
fi
test:
override:
- make
| Install Lua 5.1 and headers | ci: Install Lua 5.1 and headers
Signed-off-by: Petr Štetiar <f0d4d86d9c7002e67e6ae7bb5596bc0afa7b4c3a@true.cz>
| YAML | mit | ynezz/luaevdev |
0d31ce75ada08c2908daf9b832e8fca7156430a1 | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
override:
- docker info
- docker build -t moul/assh .
test:
override:
- exit 0
database:
override:
- exit 0
| version: 2.0
jobs:
build:
docker:
- image: golang:1.8
working_directory: /go/src/github.com/moul/advanced-ssh-config
steps:
- checkout
- run: make
- run: make test
| Update config to CircleCI 2.0 | Update config to CircleCI 2.0
| YAML | mit | moul/advanced-ssh-config,moul/advanced-ssh-config,moul/advanced-ssh-config |
40a980c6ea7fdc7a4324f583ef5cffd62b3699fd | circle.yml | circle.yml | deployment:
dockerhub:
branch: master
commands:
- $DOCKER_HUB_TRIGGER
machine:
node:
version: 4.4.5
test:
override:
- npm install -g tap-xunit
- mkdir $CIRCLE_TEST_REPORTS/xunit
- npm test | tap-xunit > $CIRCLE_TEST_REPORTS/xunit/results.xml | deployment:
dockerhub:
branch: master
commands:
- $DOCKER_HUB_TRIGGER
machine:
node:
version: 8.9.4
test:
override:
- npm install -g tap-xunit
- mkdir $CIRCLE_TEST_REPORTS/xunit
- npm test | tap-xunit > $CIRCLE_TEST_REPORTS/xunit/results.xml | Update node version for tests | Update node version for tests
| YAML | apache-2.0 | Streampunk/ledger |
8f64ff01311776436ff0c242c06039c2d3a81e1d | circle.yml | circle.yml | machine:
environment:
DB_CONNECTION_STRING: jdbc:postgresql://localhost/circle_test?user=ubuntu
TEST_DB_USERNAME: ubuntu | machine:
environment:
DB_CONNECTION_STRING: jdbc:postgresql://localhost/circle_test?user=ubuntu
TEST_DB_USERNAME: ubuntu
GOOGLE_CLIENT_ID: 128416141127-mp9b2fsq6e8bt1r3lva6cot1kdqnlof9.apps.googleusercontent.com | Add client ID for CI | Add client ID for CI
| YAML | epl-1.0 | nilenso/time-tracker,nilenso/time-tracker,nilenso/time-tracker |
c6a42b14694c7689a9da9b332ea3f226021b699b | circle.yml | circle.yml | test:
override:
- ./scripts/circle-runner.sh aeron:
timeout: 480
parallel: true
machine:
java:
version: oraclejdk8
dependencies:
pre:
- sudo pip install awscli
- echo '{:user {:plugins [[lein-voom "0.1.0-20150822_000839-g763d315"]]}}' > ~/.lein/profiles.clj
- lein voom build-deps
- curl https://gist.githubusercontent.com/lbradstreet/64ffcd4c4f40d65d33fd/raw/8af1cc3881f7a020f81dc8b7ef3a5432348be912/gistfile1.txt >> ~/.ssh/config
notify:
webhooks:
- url: https://webhooks.gitter.im/e/7f6cadb429def50c94a2
deployment:
update-projects:
branch: master
commands:
- git config --global user.email "michael.drogalis@onyxplatform.org"
- git config --global user.name "OnyxBot"
- lein deploy
- lein unison update-projects
- lein unison release-projects 0.8.x
| test:
override:
- ./scripts/circle-runner.sh aeron:
timeout: 480
parallel: true
machine:
java:
version: oraclejdk8
dependencies:
pre:
- sudo pip install awscli
- echo '{:user {:plugins [[lein-voom "0.1.0-20150822_000839-g763d315"]]}}' > ~/.lein/profiles.clj
- lein voom build-deps
- curl https://gist.githubusercontent.com/lbradstreet/64ffcd4c4f40d65d33fd/raw/cebaad02979951c17505c7d9e6e4ed31f62d0761/gistfile1.txt >> ~/.ssh/config
notify:
webhooks:
- url: https://webhooks.gitter.im/e/7f6cadb429def50c94a2
deployment:
update-projects:
branch: master
commands:
- git config --global user.email "michael.drogalis@onyxplatform.org"
- git config --global user.name "OnyxBot"
- lein deploy
- lein unison update-projects
- lein unison release-projects 0.8.x
| Add metrics and bookkeeper to release gist | Add metrics and bookkeeper to release gist
| YAML | epl-1.0 | onyx-platform/onyx,vijaykiran/onyx |
1d49c2737487c9953fcf9651cfd0e14aad3c7f12 | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
override:
- docker info
- docker build --no-cache -t=mattrayner/lamp .
test:
override:
- docker run -d -p 3000:80 mattrayner/lamp; sleep 10
- 'curl --retry 10 --retry-delay 5 -v --silent http://localhost:3000 --stderr - | grep "OS: Linux<br/>"'
- 'curl --retry 10 --retry-delay 5 -v --silent http://localhost:3000 --stderr - | grep "Apache: Apache/2.4.7 (Ubuntu)<br/>"'
- 'curl --retry 10 --retry-delay 5 -v --silent http://localhost:3000 --stderr - | grep "MySQL Version: 5.5.49-0ubuntu0.14.04.1<br/>"'
- 'curl --retry 10 --retry-delay 5 -v --silent http://localhost:3000 --stderr - | grep "PHP Version: 5.5.9-1ubuntu4.19<span> </span>"'
deployment:
hub:
branch: master
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker push mattrayner/lamp | machine:
services:
- docker
dependencies:
override:
- docker info
- docker build --no-cache -t=mattrayner/lamp .
test:
override:
- docker run -d -p 3000:80 mattrayner/lamp; sleep 10
- 'curl --retry 10 --retry-delay 5 -v --silent http://localhost:3000 --stderr - | grep "OS: Linux<br/>"'
- 'curl --retry 10 --retry-delay 5 -v --silent http://localhost:3000 --stderr - | grep "Apache: Apache/2.4.7 (Ubuntu)<br/>"'
- 'curl --retry 10 --retry-delay 5 -v --silent http://localhost:3000 --stderr - | grep "MySQL Version: 5.5.49-0ubuntu0.14.04.1<br/>"'
- 'curl --retry 10 --retry-delay 5 -v --silent http://localhost:3000 --stderr - | grep "PHP Version: 5.5.9-1ubuntu4.19<span> </span>"' | Remove CircleCI deployments - moved to Docker Hub | Remove CircleCI deployments - moved to Docker Hub
| YAML | apache-2.0 | mattrayner/docker-lamp,mattrayner/docker-lamp,mattrayner/docker-lamp |
f9af3e22c2834bea12ba80504bb4fed42e246e49 | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
override:
- docker build -t quay.io/levlaz/braindump .
test:
override:
- echo "No Tests"
# - docker run quay.io/levlaz/braindump python manage.py test
deployment:
docker:
tag: /v[0-9]+(\.[0-9]+)*/
owner: levlaz
commands:
- docker login -e="." -u $DOCKER_USER -p $DOCKER_PASS quay.io
- docker push quay.io/levlaz/braindump:$CIRCLE_TAG
# - ./deploy.sh $CIRCLE_TAG | machine:
services:
- docker
dependencies:
override:
- docker build -t quay.io/levlaz/braindump:$CIRCLE_TAG .
test:
override:
- echo "No Tests"
# - docker run quay.io/levlaz/braindump python manage.py test
deployment:
docker:
tag: /v[0-9]+(\.[0-9]+)*/
owner: levlaz
commands:
- docker login -e="." -u $DOCKER_USER -p $DOCKER_PASS quay.io
- docker push quay.io/levlaz/braindump:$CIRCLE_TAG
# - ./deploy.sh $CIRCLE_TAG | Use Tags when Building Docker | Use Tags when Building Docker
| YAML | mit | levlaz/braindump,levlaz/braindump,levlaz/braindump,levlaz/braindump |
41b6fe9acee7f1052b270088fb312a714f0bbf0d | circle.yml | circle.yml | machine:
python:
version: 2.7.12
dependencies:
override:
- pip install --upgrade pip wheel # pip >= 8.0 needed to be compatible with "manylinux" wheels, used by numpy >= 1.11
- pip install twine
- pip install .[test] --upgrade
test:
pre:
- git fetch
override:
- make test
- ./check-version-bump.sh
deployment:
master:
branch: master
commands:
- git tag `python setup.py --version`
- git push --tags
- python setup.py bdist_wheel
- twine upload dist/* --username openfisca-bot --password $PYPI_PASSWORD
- ssh deploy-new-api@api-test.openfisca.fr
| machine:
python:
version: 2.7.12
env:
PYPI_USERNAME: openfisca-bot # set here the name of your Pypi account to automatically publish your template to Pypi
# PYPI_PASSWORD: this value is set in CircleCI's web interface; do not set it here, it is a secret!
dependencies:
override:
- pip install --upgrade pip wheel # pip >= 8.0 needed to be compatible with "manylinux" wheels, used by numpy >= 1.11
- pip install twine
- pip install .[test] --upgrade
test:
pre:
- git fetch
override:
- make test
- ./check-version-bump.sh
deployment:
master:
branch: master
commands:
- git tag `python setup.py --version`
- git push --tags # update the repository version
- python setup.py bdist_wheel # build this package in the dist directory
- twine upload dist/* --username $PYPI_USERNAME --password $PYPI_PASSWORD # publish
| Improve CI config file readability | Improve CI config file readability
| YAML | agpl-3.0 | openfisca/country-template,openfisca/country-template |
ce648300d3457310106184d415b826f34ff0589a | circle.yml | circle.yml | machine:
python:
version: 2.7.9
node:
version: 6
dependencies:
pre:
- pip install robotframework==3.0
- pip install robotframework-requests==0.4.4
- pip install robotframework-selenium2library==1.7.4
# Clean out node-modules to prevent issues with circle-ci's caching.
- rm -rf node_modules
test:
post:
- npm run build
- npm start:
background: true
# start the chromedriver on port 9515
- chromedriver --port=9515 &> ./e2e/robot/results/chromedriver.txt:
background: true
#uncomment when running on browser stack using http://localhost
#DON'T FORGET TO REPLACE THE BROWSERSTACK KEY
# download and unzip browserstack local client
#- curl -O https://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-x64.zip
#- unzip ./BrowserStackLocal-linux-x64.zip -d browserstack
#- rm ./BrowserStackLocal-linux-x64.zip
#- touch ./e2e/robot/results/browserstack.txt
#- ./browserstack/BrowserStackLocal -force -forcelocal REPLACE_THIS_WITH_BROWSERSTACK_KEY &> ./e2e/robot/results/browserstack.txt:
# background: true
#- sleep 5
#- ./e2d/robot/exec/run_all_on_browserstack_desktop_ie.bash
- ./e2e/robot/exec/run_smoke_on_local_chrome.bash
#- ./e2e/robot/exec/run_all_on_local_chrome.bash
general:
artifacts:
- "./e2e/robot/results"
- "./coverage"
| machine:
python:
version: 2.7.9
node:
version: 6
dependencies:
pre:
- pip install robotframework==3.0
- pip install robotframework-requests==0.4.4
- pip install robotframework-selenium2library==1.7.4
# Clean out node-modules to prevent issues with circle-ci's caching.
- rm -rf node_modules
general:
artifacts:
- "./e2e/robot/results"
- "./coverage"
| Modify the robot testing in CI | Modify the robot testing in CI
| YAML | mit | rangle/bridge-events-map-app,AbdellaToronto/react-starter,AbdellaToronto/react-starter,Kiran-Rao/react-redux-starter,rangle/bridge-events-map-app,rangle/bridge-events-map-app,rangle/bridge-events-map-app,AbdellaToronto/react-starter,Kiran-Rao/react-redux-starter,AbdellaToronto/react-starter |
d1d9c896f8a5e43aa86c9539df18badc92701dc4 | circle.yml | circle.yml | machine:
environment:
LAMBDA_ARN: "arn:aws:lambda:us-east-1:320028119408:function:salvador-dev"
deployment:
production:
branch: master
commands:
# - lein deploy private
staging:
branch: lambda-deploy
commands:
- lein lambda update dev
# - aws lambda add-permission --function-name excelsior-dev --statement-id lars-1 --action "lambda:*" --principal "apigateway.amazonaws.com"
| machine:
environment:
LAMBDA_ARN: "arn:aws:lambda:us-east-1:320028119408:function:salvador-dev"
deployment:
production:
branch: master
commands:
# - lein deploy private
- lein lambda update dev
staging:
branch: lambda-deploy
commands:
- lein lambda update dev
# - aws lambda add-permission --function-name excelsior-dev --statement-id lars-1 --action "lambda:*" --principal "apigateway.amazonaws.com"
| Update lambda with every build | Update lambda with every build
| YAML | apache-2.0 | trieloff/salvador |
9105806532d440fabb8775ca605ba9c36ea022a2 | circle.yml | circle.yml | machine:
node:
version: 8.6.0
dependencies:
override:
- npm i
test:
override:
- exit 0
deployment:
release:
branch: kevin-prevent-superlarge-image
owner: computer-lab
commands:
- ./contrib/resize-images.sh
| machine:
node:
version: 8.6.0
dependencies:
override:
- npm i
test:
override:
- exit 0
deployment:
release:
branch: master
owner: computer-lab
commands:
- ./contrib/resize-images.sh
| Revert "tmp: make sure transformer dtrt" | Revert "tmp: make sure transformer dtrt"
This reverts commit 4bcc35ca4f9f1ba015eca97e2f7758a64eff72d6.
| YAML | mit | computer-lab/salon94design.com,computer-lab/salon94design.com,computer-lab/salon94design.com |
fafb4f0ae9a9fb37f22eaf6f8258a97c86de2fa2 | circle.yml | circle.yml | machine:
timezone:
America/Montreal
node:
version:
6.3.0
general:
branches:
only:
- master
- electron-boilerplate-vue
test:
post:
- bash <(curl -s https://codecov.io/bash)
| machine:
timezone:
America/Montreal
node:
version:
6.3.0
general:
branches:
only:
- master
test:
post:
- bash <(curl -s https://codecov.io/bash)
| Remove the useless branch in the CircleCI config file | Remove the useless branch in the CircleCI config file
| YAML | mit | Elgolfin/4yb,Elgolfin/4yb |
e51c262308496e1ab1b1c5c5adfeef6e2dc39063 | circle.yml | circle.yml | general:
branches:
ignore:
- ggmaster
- hots
- jonomon
- master
- old_master
test:
override:
- python -m unittest discover test_replays
- python -m unittest discover test_s2gs
| general:
branches:
ignore:
- ggmaster
- hots
- jonomon
- master
- old_master
test:
override:
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- python -m unittest discover test_replays
- python -m unittest discover test_s2gs
| Add flake8 to the testing | Add flake8 to the testing | YAML | mit | ggtracker/sc2reader,ggtracker/sc2reader,StoicLoofah/sc2reader,StoicLoofah/sc2reader |
c6339eedf7b3c700b85714a7a856a6d158b7a5ee | devtools/conda-recipe/meta.yaml | devtools/conda-recipe/meta.yaml | package:
name: yank-dev
version: !!str 0.0.0
source:
path: ../..
build:
preserve_egg_dir: True
number: 0
skip: True # [py2k]
requirements:
build:
- python
- cython
- setuptools
run:
- python
- pandas
- numpy >=1.11
- scipy
- cython
- netcdf4 ==1.3.1 # TODO: Fix this right after bugfix: "always return masked array by default, even if there are no masked values"
- openmm >=7.1
- mdtraj >=1.7.2
- openmmtools >=0.15.0
- pymbar
- ambermini >=16.16.0
- docopt
- openmoltools >=0.7.5
- mpi4py
- pyyaml
- clusterutils
- sphinxcontrib-bibtex
- cerberus ==1.1.*
- matplotlib
- jupyter
- pdbfixer
- libnetcdf >=4.6.0
test:
requires:
- nose
- nose-timer
imports:
- yank
commands:
- yank --help
about:
home: https://github.com/choderalab/yank
license: MIT License
| package:
name: yank-dev
version: !!str 0.0.0
source:
path: ../..
build:
preserve_egg_dir: True
number: 0
skip: True # [py2k]
requirements:
build:
- python
- cython
- setuptools
run:
- python
- pandas
- numpy >=1.11
- scipy
- cython
- netcdf4 >=1.4.2
- openmm >=7.1
- mdtraj >=1.7.2
- openmmtools >=0.15.0
- pymbar
- ambermini >=16.16.0
- docopt
- openmoltools >=0.7.5
- mpi4py
- pyyaml
- clusterutils
- sphinxcontrib-bibtex
- cerberus ==1.1.*
- matplotlib
- jupyter
- pdbfixer
test:
requires:
- nose
- nose-timer
imports:
- yank
commands:
- yank --help
about:
home: https://github.com/choderalab/yank
license: MIT License
| Update netcdf4 to use latest netcdf | Update netcdf4 to use latest netcdf
| YAML | mit | choderalab/yank,choderalab/yank |
08a20ad662d7e376980964adc7bd248f118bbe6b | .github/workflows/deploy.yml | .github/workflows/deploy.yml | name: Deploy
on:
push:
tags:
- 'v*.*.*'
jobs:
ghpublish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup system dependencies
run: |
sudo apt-get install autoconf-archive
- name: Configure
run: |
echo "VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
echo "${GITHUB_REF#refs/*/v}" > .tarball-version
./bootstrap.sh
./configure --without-{bash,fish,zsh}-completion-dir --disable-dependency-checks
- name: Build source package
run: |
make dist
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: casile-${{ env.VERSION }}
path: casile*-${{ env.VERSION }}.zip
- name: Publish Release
uses: softprops/action-gh-release@v1
with:
body_path: casile-${{ env.VERSION }}.md
files: |
casile-${{ env.VERSION }}.zip
casile-${{ env.VERSION }}.tar.xz
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Publish Docker Image to GH Pakcages
run: |
make docker-build-push
env:
DOCKER_REGISTRY: docker.pkg.github.com
DOCKER_REPO: ${{ github.repository }}/casile
DOCKER_TAG: ${{ env.VERSION }}
DOCKER_USERNAME: ${{ github.actor }}
DOCKER_PASSWORD: ${{ github.token }}
| name: Deploy
on:
push:
tags:
- 'v*.*.*'
jobs:
ghpublish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup system dependencies
run: |
sudo apt-get install autoconf-archive
- name: Configure
run: |
echo "VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
echo "${GITHUB_REF#refs/*/v}" > .tarball-version
./bootstrap.sh
./configure --without-{bash,fish,zsh}-completion-dir --disable-dependency-checks
- name: Build source package
run: |
make dist
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: casile-${{ env.VERSION }}
path: casile*-${{ env.VERSION }}.zip
- name: Publish Release
uses: softprops/action-gh-release@v1
with:
body_path: casile-${{ env.VERSION }}.md
files: |
casile-${{ env.VERSION }}.zip
casile-${{ env.VERSION }}.tar.xz
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Publish Docker Image to GH Pakcages
run: |
make docker-build-push
env:
DOCKER_REGISTRY: docker.pkg.github.com
DOCKER_REPO: ${{ github.repository }}/casile
DOCKER_TAG: v${{ env.VERSION }}
DOCKER_USERNAME: ${{ github.actor }}
DOCKER_PASSWORD: ${{ github.token }}
| Add missing ‘v’ to GHPR image tags | fix(docker): Add missing ‘v’ to GHPR image tags
| YAML | agpl-3.0 | alerque/casile,alerque/casile,alerque/casile,alerque/casile,alerque/casile |
826c82b1a3cb3eb7deeecd1d7586104b01543eed | .github/workflows/gradle.yml | .github/workflows/gradle.yml | name: Java CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['8', '11', '14']
env:
WORKSPACE: ${{ github.workspace }}
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8
RUN_TESTS_ONLY: false
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Optional setup step
run: |
[ -f ./setup.sh ] && ./setup.sh || true
- name: Run Tests
run: ./gradlew check assemble --refresh-dependencies -Dgrails.env=test -Dgeb.env=chromeHeadless
- name: Publish Test Report
uses: scacap/action-surefire-report@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
report_paths: '**/build/test-results/test/TEST-*.xml'
| name: Java CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
inputs:
message:
description: 'Snapshot information (e.g. New Core Snapshot Tue Dec 15 00:07:18 UTC 2020 f212f54)'
required: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['8', '11', '14']
env:
WORKSPACE: ${{ github.workspace }}
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8
RUN_TESTS_ONLY: false
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Print Dispatch Information
if: github.event_name == 'workflow_dispatch'
env:
DISPATCH_INFORMATION: ${{ github.event.inputs.message }}
run: echo $DISPATCH_INFORMATION
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Optional setup step
run: |
[ -f ./setup.sh ] && ./setup.sh || true
- name: Run Tests
run: ./gradlew check assemble --refresh-dependencies -Dgrails.env=test -Dgeb.env=chromeHeadless
- name: Publish Test Report
uses: scacap/action-surefire-report@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
report_paths: '**/build/test-results/test/TEST-*.xml'
| Enable Java CI workflow dispatch | Enable Java CI workflow dispatch
| YAML | apache-2.0 | grails/grails3-functional-tests,grails/grails3-functional-tests |
197732e1f4b514a323bccb3f561d1502faeafd0a | .github/workflows/master.yml | .github/workflows/master.yml | name: master
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '1.8', '11' ]
name: Build Spark with JDK ${{ matrix.java }}
steps:
- uses: actions/checkout@master
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
version: ${{ matrix.java }}
- name: Build with Maven
run: |
export MAVEN_OPTS="-Xmx2g -XX:ReservedCodeCacheSize=512m -Dorg.slf4j.simpleLogger.defaultLogLevel=WARN"
export MAVEN_CLI_OPTS="--no-transfer-progress"
./build/mvn $MAVEN_CLI_OPTS -DskipTests -Pyarn -Pmesos -Pkubernetes -Phive -Phive-thriftserver -Phadoop-3.2 -Phadoop-cloud -Djava.version=${{ matrix.java }} package
| name: master
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '1.8', '11' ]
hadoop: [ 'hadoop-2.7', 'hadoop-3.2' ]
exclude:
- java: '11'
hadoop: 'hadoop-2.7'
name: Build Spark with JDK ${{ matrix.java }} and ${{ matrix.hadoop }}
steps:
- uses: actions/checkout@master
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
version: ${{ matrix.java }}
- name: Build with Maven
run: |
export MAVEN_OPTS="-Xmx2g -XX:ReservedCodeCacheSize=512m -Dorg.slf4j.simpleLogger.defaultLogLevel=WARN"
export MAVEN_CLI_OPTS="--no-transfer-progress"
./build/mvn $MAVEN_CLI_OPTS -DskipTests -Pyarn -Pmesos -Pkubernetes -Phive -Phive-thriftserver -P${{ matrix.hadoop }} -Phadoop-cloud -Djava.version=${{ matrix.java }} package
| Add Hadoop 2.7 combination to GitHub Action | [SPARK-29125][INFRA] Add Hadoop 2.7 combination to GitHub Action
### What changes were proposed in this pull request?
Until now, we are testing JDK8/11 with Hadoop-3.2. This PR aims to extend the test coverage for JDK8/Hadoop-2.7.
### Why are the changes needed?
This will prevent Hadoop 2.7 compile/package issues at PR stage.
### Does this PR introduce any user-facing change?
No.
### How was this patch tested?
GitHub Action on this PR shows all three combinations now. And, this is irrelevant to Jenkins test.
Closes #25824 from dongjoon-hyun/SPARK-29125.
Authored-by: Dongjoon Hyun <9b02cb7e37158797a8e22c559f7c5f5ecd28ea57@apple.com>
Signed-off-by: Dongjoon Hyun <9b02cb7e37158797a8e22c559f7c5f5ecd28ea57@apple.com>
| YAML | apache-2.0 | wzhfy/spark,jkbradley/spark,jiangxb1987/spark,wangmiao1981/spark,dbtsai/spark,vinodkc/spark,taroplus/spark,xuanyuanking/spark,shuangshuangwang/spark,zzcclp/spark,srowen/spark,vinodkc/spark,xuanyuanking/spark,dbtsai/spark,ptkool/spark,bdrillard/spark,apache/spark,shuangshuangwang/spark,kevinyu98/spark,goldmedal/spark,vinodkc/spark,zero323/spark,HyukjinKwon/spark,rednaxelafx/apache-spark,caneGuy/spark,maropu/spark,hvanhovell/spark,caneGuy/spark,shaneknapp/spark,JoshRosen/spark,caneGuy/spark,xuanyuanking/spark,HyukjinKwon/spark,xuanyuanking/spark,holdenk/spark,dongjoon-hyun/spark,darionyaphet/spark,bdrillard/spark,rednaxelafx/apache-spark,HyukjinKwon/spark,rednaxelafx/apache-spark,JoshRosen/spark,WeichenXu123/spark,zzcclp/spark,shuangshuangwang/spark,jkbradley/spark,milliman/spark,vinodkc/spark,jiangxb1987/spark,holdenk/spark,spark-test/spark,BryanCutler/spark,maropu/spark,HyukjinKwon/spark,rezasafi/spark,kevinyu98/spark,ConeyLiu/spark,wzhfy/spark,taroplus/spark,ptkool/spark,apache/spark,chuckchen/spark,ueshin/apache-spark,caneGuy/spark,spark-test/spark,wangmiao1981/spark,bdrillard/spark,ConeyLiu/spark,apache/spark,gengliangwang/spark,srowen/spark,xuanyuanking/spark,mahak/spark,BryanCutler/spark,ConeyLiu/spark,gengliangwang/spark,ptkool/spark,apache/spark,goldmedal/spark,apache/spark,maropu/spark,shaneknapp/spark,taroplus/spark,rezasafi/spark,shaneknapp/spark,skonto/spark,jiangxb1987/spark,darionyaphet/spark,hvanhovell/spark,nchammas/spark,jkbradley/spark,nchammas/spark,JoshRosen/spark,wzhfy/spark,wangyum/spark,HyukjinKwon/spark,witgo/spark,bdrillard/spark,wangyum/spark,hvanhovell/spark,WeichenXu123/spark,rezasafi/spark,dbtsai/spark,xuanyuanking/spark,gengliangwang/spark,gengliangwang/spark,zuotingbing/spark,caneGuy/spark,skonto/spark,srowen/spark,darionyaphet/spark,JoshRosen/spark,holdenk/spark,BryanCutler/spark,taroplus/spark,rednaxelafx/apache-spark,milliman/spark,ptkool/spark,shaneknapp/spark,HyukjinKwon/spark,darionyaphet/spark,spark-test/spark,spark-test/spark,kevinyu98/spark,vinodkc/spark,JoshRosen/spark,zzcclp/spark,spark-test/spark,dbtsai/spark,witgo/spark,jiangxb1987/spark,apache/spark,caneGuy/spark,dbtsai/spark,dbtsai/spark,dongjoon-hyun/spark,chuckchen/spark,kevinyu98/spark,ueshin/apache-spark,chuckchen/spark,maropu/spark,cloud-fan/spark,dongjoon-hyun/spark,BryanCutler/spark,skonto/spark,goldmedal/spark,witgo/spark,mahak/spark,jiangxb1987/spark,goldmedal/spark,zuotingbing/spark,mahak/spark,mahak/spark,chuckchen/spark,cloud-fan/spark,vinodkc/spark,shaneknapp/spark,nchammas/spark,WeichenXu123/spark,milliman/spark,ueshin/apache-spark,mahak/spark,taroplus/spark,srowen/spark,skonto/spark,jiangxb1987/spark,skonto/spark,zero323/spark,shuangshuangwang/spark,ueshin/apache-spark,wzhfy/spark,BryanCutler/spark,cloud-fan/spark,zero323/spark,wangyum/spark,srowen/spark,zuotingbing/spark,jkbradley/spark,hvanhovell/spark,maropu/spark,rezasafi/spark,wangmiao1981/spark,zero323/spark,rezasafi/spark,kevinyu98/spark,caneGuy/spark,maropu/spark,witgo/spark,shuangshuangwang/spark,cloud-fan/spark,BryanCutler/spark,mahak/spark,wangmiao1981/spark,bdrillard/spark,maropu/spark,mahak/spark,ptkool/spark,ConeyLiu/spark,holdenk/spark,kevinyu98/spark,witgo/spark,shaneknapp/spark,ptkool/spark,WeichenXu123/spark,wangmiao1981/spark,WeichenXu123/spark,spark-test/spark,wangyum/spark,shuangshuangwang/spark,bdrillard/spark,hvanhovell/spark,zero323/spark,chuckchen/spark,wzhfy/spark,ueshin/apache-spark,jiangxb1987/spark,apache/spark,zzcclp/spark,ueshin/apache-spark,cloud-fan/spark,spark-test/spark,dongjoon-hyun/spark,nchammas/spark,goldmedal/spark,wangmiao1981/spark,shaneknapp/spark,wangyum/spark,dbtsai/spark,hvanhovell/spark,wangyum/spark,zuotingbing/spark,zero323/spark,wzhfy/spark,rednaxelafx/apache-spark,zzcclp/spark,holdenk/spark,dongjoon-hyun/spark,skonto/spark,matthewfranglen/spark,srowen/spark,taroplus/spark,bdrillard/spark,zzcclp/spark,dongjoon-hyun/spark,darionyaphet/spark,shuangshuangwang/spark,chuckchen/spark,rezasafi/spark,BryanCutler/spark,nchammas/spark,rezasafi/spark,wangyum/spark,gengliangwang/spark,zuotingbing/spark,nchammas/spark,witgo/spark,holdenk/spark,zero323/spark,goldmedal/spark,zuotingbing/spark,WeichenXu123/spark,cloud-fan/spark,jkbradley/spark,darionyaphet/spark,milliman/spark,jkbradley/spark,taroplus/spark,rednaxelafx/apache-spark,jkbradley/spark,zuotingbing/spark,milliman/spark,darionyaphet/spark,dongjoon-hyun/spark,ptkool/spark,JoshRosen/spark,holdenk/spark,xuanyuanking/spark,gengliangwang/spark,wzhfy/spark,hvanhovell/spark,milliman/spark,WeichenXu123/spark,nchammas/spark,HyukjinKwon/spark,chuckchen/spark,milliman/spark,ConeyLiu/spark,rednaxelafx/apache-spark,witgo/spark,ConeyLiu/spark,kevinyu98/spark,ConeyLiu/spark,ueshin/apache-spark,wangmiao1981/spark,gengliangwang/spark,zzcclp/spark,cloud-fan/spark,skonto/spark,srowen/spark,vinodkc/spark,goldmedal/spark,JoshRosen/spark |
3f2379754336edbdeabb953586bbec13bb002e47 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
mongodb-version: [3.2, 4.2]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Create server-config.js
run: mv server-config.test.js server-config.js
- name: Start MongoDB
uses: superchargejs/mongodb-github-action@1.1.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Populate database
run: node scripts/node/populate.js test/data/*.json && node scripts/node/resolve-lexeme-ids.js
- name: Creating indexes
run: node scripts/node/create-indexes.js
- name: Build glosses collection
run: cd scripts/node && ./run.js make-glosses-collection.js
- name: Run tests
run: npm test
| name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
mongodb-version: [3.2, 4.2]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Create server-config.js
run: mv server-config.test.js server-config.js
- name: Start MongoDB
uses: superchargejs/mongodb-github-action@1.1.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Populate database
run: node scripts/node/populate.js test/data/*.json && node scripts/node/resolve-lexeme-ids.js
- name: Creating indexes
run: node scripts/node/create-indexes.js
- name: Build glosses collection
run: cd scripts/node && ./run.js update-glosses-collection.js
- name: Run tests
run: npm test
| Fix make -> update in GitHub action | Fix make -> update in GitHub action
| YAML | mit | johnjcamilleri/gabra-api,johnjcamilleri/gabra-api,MLRS/gabra-api,MLRS/gabra-api,MLRS/gabra-api,johnjcamilleri/gabra-api |
3d478baa50184d33187065e7b516e9acca995176 | app/config/config_test.yml | app/config/config_test.yml | imports:
- { resource: config_dev.yml }
- { resource: "@SimplyTestableWebClientBundle/Resources/config/parameters_test.yml" }
- { resource: "@SimplyTestableWebClientBundle/Resources/config/services_test.yml" }
framework:
test: ~
session:
storage_id: session.storage.mock_file
web_profiler:
toolbar: false
intercept_redirects: false
swiftmailer:
disable_delivery: true
doctrine:
dbal:
connections:
default:
driver: pdo_sqlite
path: /media/ramdisk/sqlite/test.db | imports:
- { resource: config_dev.yml }
- { resource: "@SimplyTestableWebClientBundle/Resources/config/parameters_test.yml" }
- { resource: "@SimplyTestableWebClientBundle/Resources/config/services_test.yml" }
framework:
test: ~
session:
storage_id: session.storage.mock_file
web_profiler:
toolbar: false
intercept_redirects: false
swiftmailer:
disable_delivery: true
doctrine:
dbal:
connections:
default:
driver: pdo_sqlite
path: /run/shm/web.client.simplytestable.com.db | Set test env to use /run/shm sqlite db for speed | Set test env to use /run/shm sqlite db for speed
| YAML | mit | webignition/web.client.simplytestable.com,webignition/web.client.simplytestable.com,webignition/web.client.simplytestable.com |
75e17eca4d0932427c991b2c907a4d0ff224b5de | config.yml | config.yml | COMMON: &common
DEBUG: False
TESTING: False
SECRET_KEY: 't0p s3cr3t'
SSL_DISABLE: False
SQLALCHEMY_COMMIT_ON_TEARDOWN: True
SQLALCHEMY_RECORD_QUERIES: True
SQLALCHEMY_TRACK_MODIFICATIONS: True
MAIL_SERVER: 'smtp.googlemail.com'
MAIL_PORT: 587
MAIL_USE_TLS: True
MAIL_USERNAME: 'MAIL_USERNAME'
MAIL_PASSWORD: 'MAIL_PASSWORD'
MAIL_SUBJECT_PREFIX: 'MAIL_SUBJECT_PREFIX'
MAIL_SENDER: '<info@example.com>'
SLOW_DB_QUERY_TIME: 0.5
OAUTH_CLIENT_ID: 'CLIENT_ID'
OAUTH_CLIENT_SECRET: 'CLIENT_SECRET'
DEFAULT_USER_LANGUAGE: '2' # 1 = fr, 2 = de, 3 = it
DEVELOPMENT: &development
<<: *common
DEBUG: True
SQLALCHEMY_DATABASE_URI: 'sqlite:////tmp/data-dev.sqlite'
PRODUCTION: &production
<<: *common
SQLALCHEMY_DATABASE_URI: 'sqlite:////tmp/data-dev.sqlite'
TESTING: &testing
TESTING: True
SQLALCHEMY_DATABASE_URI: 'sqlite:////tmp/data-dev.sqlite'
WTF_CSRF_ENABLED: False
DEFAULT: &default
<<: *development
| COMMON: &common
DEBUG: False
TESTING: False
SECRET_KEY: 't0p s3cr3t'
SSL_DISABLE: False
SQLALCHEMY_COMMIT_ON_TEARDOWN: True
SQLALCHEMY_RECORD_QUERIES: True
SQLALCHEMY_TRACK_MODIFICATIONS: True
MAIL_SERVER: 'smtp.googlemail.com'
MAIL_PORT: 587
MAIL_USE_TLS: True
MAIL_USERNAME: 'MAIL_USERNAME'
MAIL_PASSWORD: 'MAIL_PASSWORD'
MAIL_SUBJECT_PREFIX: 'MAIL_SUBJECT_PREFIX'
MAIL_SENDER: '<info@example.com>'
SLOW_DB_QUERY_TIME: 0.5
OAUTH_CLIENT_ID: 'CLIENT_ID'
OAUTH_CLIENT_SECRET: 'CLIENT_SECRET'
DEFAULT_USER_LANGUAGE: 2 # 1 = fr, 2 = de, 3 = it
DEVELOPMENT: &development
<<: *common
DEBUG: True
SQLALCHEMY_DATABASE_URI: 'sqlite:////tmp/data-dev.sqlite'
PRODUCTION: &production
<<: *common
SQLALCHEMY_DATABASE_URI: 'sqlite:////tmp/data-dev.sqlite'
TESTING: &testing
TESTING: True
SQLALCHEMY_DATABASE_URI: 'sqlite:////tmp/data-dev.sqlite'
WTF_CSRF_ENABLED: False
DEFAULT: &default
<<: *development
| Change type DEFAULT_USER_LANGUAGE from string into int | Change type DEFAULT_USER_LANGUAGE from string into int
| YAML | agpl-3.0 | uzh/msregistry |
c4b9e3155b116249fb349af5964af9d189dab631 | .azure-pipelines/test-code.yml | .azure-pipelines/test-code.yml | trigger:
- main
pr:
branches:
include:
- '*'
strategy:
matrix:
linux:
imageName: 'ubuntu-20.04'
mac:
imageName: 'macos-10.14'
windows:
imageName: 'vs2017-win2016'
pool:
vmImage: $(imageName)
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
displayName: 'Install Node.js'
- bash: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
echo ">>> Started xvfb"
displayName: Start xvfb
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
- bash: |
echo ">>> Run integration test"
yarn && yarn compile && yarn test
displayName: Run Tests
env:
DISPLAY: ':99.0'
| trigger:
- main
pr:
branches:
include:
- '*'
strategy:
matrix:
linux:
imageName: 'ubuntu-20.04'
mac:
imageName: 'macos-10.15'
windows:
imageName: 'vs2017-win2016'
pool:
vmImage: $(imageName)
steps:
- task: NodeTool@0
inputs:
versionSpec: '14.x'
displayName: 'Install Node.js'
- bash: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
echo ">>> Started xvfb"
displayName: Start xvfb
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
- bash: |
echo ">>> Run integration test"
yarn && yarn compile && yarn test
displayName: Run Tests
env:
DISPLAY: ':99.0'
| Update mac image of azure pipelines | Update mac image of azure pipelines
| YAML | mit | yasuyuky/transient-emacs,yasuyuky/transient-emacs |
257143a20a95fdcd4cf83e2809616b53a3f28c54 | handlers/main.yml | handlers/main.yml | ---
- name: restart nginx
service: name=nginx state=restarted
# Restart the supervisor service itself, for loading new configuration
- name: restart supervisor
service: name=supervisor state=restarted
# Restart the forever instance (i.e. if a new version of the app is installed)
- name: restart ghost
supervisorctl: name=ghost state=restarted
| ---
- name: restart nginx
service: name=nginx state=restarted
# Restart the supervisor service itself, for loading new configuration
- name: restart supervisor
service: name=supervisor state=restarted
# Restart the node instance (i.e. if reconfigured or new version installed)
- name: restart ghost
supervisorctl: name=ghost state=restarted
| Fix comment - not using forever atm | Fix comment - not using forever atm
| YAML | mit | rmasters/ghost-ansible |
c3b6e45d1b7260e895b70ac91c1977102762db0e | handlers/main.yml | handlers/main.yml | ---
- name: restart dnsdist
service: name=dnsdist state=restarted
| ---
- name: check config and restart dnsdist
command: dnsdist --check-config -C /etc/dnsdist/dnsdist.conf
notify: restart dnsdist
- name: restart dnsdist
service: name=dnsdist state=restarted
| Add a check and restart handler | Add a check and restart handler
| YAML | mit | PowerDNS/dnsdist-ansible |
99b51e8e659061a62c6f452a1d2d84256fc567ec | templates/ci/html.yml | templates/ci/html.yml | # HTML
# Archive your static HTML application and save it with the build record.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: '$(build.sourcesDirectory)'
includeRootFolder: false
- task: PublishBuildArtifacts@1
| # HTML
# Archive your static HTML project and save it with the build record.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: '$(build.sourcesDirectory)'
includeRootFolder: false
- task: PublishBuildArtifacts@1
| Update YAML template for HTML | Update YAML template for HTML | YAML | mit | dylan-smith/vso-agent-tasks,dylan-smith/vso-agent-tasks,Microsoft/vsts-tasks,dylan-smith/vso-agent-tasks,Microsoft/vsts-tasks,Microsoft/vsts-tasks,grawcho/vso-agent-tasks,grawcho/vso-agent-tasks,Microsoft/vso-agent-tasks,dylan-smith/vso-agent-tasks,grawcho/vso-agent-tasks,dylan-smith/vso-agent-tasks,grawcho/vso-agent-tasks,Microsoft/vso-agent-tasks,Microsoft/vso-agent-tasks,Microsoft/vsts-tasks,grawcho/vso-agent-tasks,grawcho/vso-agent-tasks,Microsoft/vsts-tasks |
8a856ed79cc7ca97d4a12b9d5448014a0a3afd30 | clusterrunner.yaml | clusterrunner.yaml | Unit:
commands:
- nosetests --with-xunit --xunit-file $ARTIFACT_DIR/result.xml $TESTPATH
atomizers:
- TESTPATH: find "test/unit" -name "test_*.py"
| Unit:
commands:
- nosetests --with-xunit --xunit-file $ARTIFACT_DIR/result.xml $TESTPATH
atomizers:
- TESTPATH: find "test/unit" -name "test_*.py"
| Revert "TJ Testing pull request builder plugin" | Revert "TJ Testing pull request builder plugin"
This reverts commit 3f9b71498c650f904703205a14f97d5084273071.
| YAML | apache-2.0 | Medium/ClusterRunner,nickzuber/ClusterRunner,josephharrington/ClusterRunner,nickzuber/ClusterRunner,josephharrington/ClusterRunner,box/ClusterRunner,Medium/ClusterRunner,box/ClusterRunner |
5ad005db964a03299755523bf046471af2691b38 | .github/workflows/cs-fixer.yml | .github/workflows/cs-fixer.yml | name: CS Fixer
on: [push, pull_request]
jobs:
php-cs-fixer:
name: PHP-CS-Fixer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: PHP-CS-Fixer
uses: sebastianks/php-cs-fixer-ga@v0.0.2
with:
args: -vvv --using-cache false .
| name: CS Fixer
on: [push, pull_request]
jobs:
php-cs-fixer:
name: PHP-CS-Fixer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: PHP-CS-Fixer
uses: sebastianks/php-cs-fixer-ga@v0.0.3
with:
args: -vvv --using-cache false .
| Update to version with php8 | Update to version with php8
| YAML | mit | sebastianks/volcano |
4ee27137a206e24852497e160b648380695d6c14 | .github/workflows/deploy.yml | .github/workflows/deploy.yml | name: Deploy
on:
push:
branches:
- master
tags:
- latest
- v*
jobs:
ghcr:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Fetch tags
run: |
git fetch --prune --tags ||:
- name: Setup system dependencies
run: |
sudo apt-get install autoconf-archive
- name: Configure
run: |
echo "REF=${GITHUB_REF##refs/*/}" >> $GITHUB_ENV
./bootstrap.sh
./configure --without-{bash,fish,zsh}-completion-dir --disable-dependency-checks
- name: Publish Docker Image to GH Pakcages
run: |
make docker-build-push
env:
DOCKER_REGISTRY: ghcr.io
DOCKER_REPO: ${{ github.repository }}
DOCKER_TAG: ${{ env.REF }}
DOCKER_USERNAME: ${{ github.actor }}
DOCKER_PAT: ${{ secrets.CR_SILE_TYPESETTER }}
| name: Deploy
on:
push:
branches:
- master
tags:
- latest
- v*
jobs:
ghcr:
strategy:
fail-fast: false
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Fetch tags
run: |
git fetch --prune --tags ||:
- name: Setup system dependencies
run: |
sudo apt-get install autoconf-archive
- name: Configure
run: |
echo "REF=${GITHUB_REF##refs/*/}" >> $GITHUB_ENV
./bootstrap.sh
./configure --without-{bash,fish,zsh}-completion-dir --disable-dependency-checks
- name: Publish Docker Image to GH Container Registry
run: |
make docker-build-push
env:
DOCKER_REGISTRY: ghcr.io
DOCKER_REPO: ${{ github.repository }}
DOCKER_TAG: ${{ env.REF }}
DOCKER_USERNAME: ${{ github.actor }}
DOCKER_PAT: ${{ secrets.CR_SILE_TYPESETTER }}
| Update workflow to push to GHCR | ci(actions): Update workflow to push to GHCR
| YAML | agpl-3.0 | alerque/casile,alerque/casile,alerque/casile,alerque/casile,alerque/casile |
ab1d0b80350893eb5c8914bb6fa48a09b84360d8 | .github/workflows/deploy.yml | .github/workflows/deploy.yml | name: Nightly Deploy
on:
schedule:
- cron: "0 8 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Trigger a build on Netlify
shell: bash
env:
NETLIFY_BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }}
run: curl -X POST -d {} "$NETLIFY_BUILD_HOOK"
| name: Weekly Deploy
on:
schedule:
- cron: "0 8 * * 1"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Trigger a build on Netlify
shell: bash
env:
NETLIFY_BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }}
run: curl -X POST -d {} "$NETLIFY_BUILD_HOOK"
| Deploy weekly during the offseason. | Deploy weekly during the offseason.
| YAML | mit | tristandunn/hockey,tristandunn/hockey,tristandunn/hockey |
b3f190c8a744c4e36cab63831e091fb713439c9c | configs/logging_config.yaml | configs/logging_config.yaml | version: 1
formatters:
simple:
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
colored:
(): colorlog.ColoredFormatter
format: '%(bg_black)s%(log_color)s%(levelname)-8s%(reset)s %(bg_blue)s[%(pathname)s : lineno %(lineno)s]%(reset)s %(bg_cyan)s %(asctime)s %(reset)s %(bg_black)s%(log_color)s%(message)s%(reset)s'
datefmt: '%m-%d %H:%M:%S'
log_colors:
DEBUG: green
INFO: white
WARNING: yellow
ERROR: red
CRITICAL: purple
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: colored
stream: ext://sys.stdout
info:
backupCount: 20
class: logging.handlers.RotatingFileHandler
encoding: utf-8
filename: info.log
formatter: colored
level: INFO
maxBytes: 10485760
error:
backupCount: 20
class: logging.handlers.RotatingFileHandler
encoding: utf-8
filename: errors.log
formatter: colored
level: ERROR
maxBytes: 10485760
loggers:
CF:
level: INFO
handlers: [console, info, error]
paramiko.transport:
level: INFO
handlers: [console, info, error]
root:
level: INFO
handlers: []
| version: 1
formatters:
simple:
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
colored:
(): colorlog.ColoredFormatter
format: '%(bg_black)s%(log_color)s%(levelname)-8s%(reset)s %(bg_blue)s[%(pathname)s : lineno %(lineno)s]%(reset)s %(bg_cyan)s %(asctime)s %(reset)s %(bg_black)s%(log_color)s%(message)s%(reset)s'
datefmt: '%m-%d %H:%M:%S'
log_colors:
DEBUG: green
INFO: white
WARNING: yellow
ERROR: red
CRITICAL: purple
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: colored
stream: ext://sys.stdout
info:
backupCount: 20
class: logging.handlers.RotatingFileHandler
encoding: utf-8
filename: info.log
formatter: colored
level: INFO
maxBytes: 10485760
error:
backupCount: 20
class: logging.handlers.RotatingFileHandler
encoding: utf-8
filename: errors.log
formatter: colored
level: ERROR
maxBytes: 10485760
loggers:
CF:
level: INFO
handlers: [console, info, error]
paramiko.transport:
level: INFO
handlers: [console, info, error]
glanceclient.common.http:
level: INFO
handlers: [console, info, error]
root:
level: INFO
handlers: []
| Add handlers for logger 'glanceclient.common.http' | [SAIC-818] Add handlers for logger 'glanceclient.common.http'
| YAML | apache-2.0 | SVilgelm/CloudFerry,mgrygoriev/CloudFerry,SVilgelm/CloudFerry,MirantisWorkloadMobility/CloudFerry,MirantisWorkloadMobility/CloudFerry,mgrygoriev/CloudFerry,SVilgelm/CloudFerry,mgrygoriev/CloudFerry,MirantisWorkloadMobility/CloudFerry,mgrygoriev/CloudFerry,SVilgelm/CloudFerry,MirantisWorkloadMobility/CloudFerry |
ce398adda398188b56e85546c5f26819e0210099 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ devel ]
pull_request:
branches: [ devel ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [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 ci
- run: npm test
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ devel ]
pull_request:
branches: [ devel ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.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 ci
- run: npm test
| Test using Node.js 14 too | Test using Node.js 14 too | YAML | bsd-2-clause | macbre/nodemw |
28c1f8a2f030e1a9081ed4097d2f5e2053064f5d | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,15.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install --no-package-lock
- name: npm ls
run: npm ls
- name: npm install nyc, prove, codecov
run: npm install -g nyc prove codecov
- name: npm test
run: nyc npm test
env:
CI: true
- name: generate codecov report
run: nyc report --reporter=text-lcov > coverage.lcov
- name: ship coverage to codecov
run: codecov --branch=${GITHUB_REF##*/}
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
| name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install --no-package-lock
- name: npm ls
run: npm ls
- name: npm install nyc, prove, codecov
run: npm install -g nyc prove codecov
- name: npm test
run: nyc npm test
env:
CI: true
- name: generate codecov report
run: nyc report --reporter=text-lcov > coverage.lcov
- name: ship coverage to codecov
run: codecov --branch=${GITHUB_REF##*/}
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
| Build with Node.js 16 on GitHub Actions. | Build with Node.js 16 on GitHub Actions.
| YAML | mit | bigeasy/isochronous |
5190344c7fe41a84ad11cbcaa576eeabe6ac3861 | packages/he/hein.yaml | packages/he/hein.yaml | homepage: https://github.com/khanage/heineken
changelog-type: ''
hash: c8051d22122e9490a62f5d0daeece1a9f853161523d8a03f499544039c6252e4
test-bench-deps: {}
maintainer: khanage@gmail.com
synopsis: An extensible build helper for haskell, in the vein of leiningen.
changelog: ''
basic-deps:
ghc: ! '>=7.8.3'
bytestring: ! '>=0.10.4.0'
base: ! '>=4.7 && <4.8'
filepath: ! '>=1.3.0.2'
process: -any
plugins: ! '>=1.5.4.0'
transformers: -any
http-conduit: -any
directory: ! '>=1.2.1.0'
all-versions:
- '0.1.0.0'
author: Khan Thompson
latest: '0.1.0.0'
description-type: haddock
description: A general build tool for haskell projects inspired by leiningen. It is
intended to be useful for the automation of all project creation tedium, as well
as eventually integrate with cloud deployments. It is intended that this will support
arbitrary plugins in the future.
license-name: Apache-2.0
| homepage: https://github.com/khanage/heineken
changelog-type: ''
hash: b00a3fa17cf2aca335c51844189072410351eb698cc073ae330bca0d0e1e5fb1
test-bench-deps: {}
maintainer: khanage@gmail.com
synopsis: An extensible build helper for haskell, in the vein of leiningen.
changelog: ''
basic-deps:
bytestring: ! '>=0.10.4.0'
base: ! '>=4.7 && <4.8'
filepath: ! '>=1.3.0.2'
process: -any
transformers: -any
http-conduit: -any
directory: ! '>=1.2.1.0'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Khan Thompson
latest: '0.1.0.2'
description-type: haddock
description: A general build tool for haskell projects inspired by leiningen. It is
intended to be useful for the automation of all project creation tedium, as well
as eventually integrate with cloud deployments. It is intended that this will support
arbitrary plugins in the future.
license-name: Apache-2.0
| Update from Hackage at 2015-05-30T07:20:17+0000 | Update from Hackage at 2015-05-30T07:20:17+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
dc194a4073f5719351350b8866b31bd0272e6e78 | packages/hs/HSvm.yaml | packages/hs/HSvm.yaml | homepage: ''
changelog-type: ''
hash: 76bacb0f9e00742201757281c994c9b2649433bfcb39f49c3d678c0c4e9f7cc5
test-bench-deps: {}
maintainer: Paolo Losi <paolo.losi@gmail.com>
synopsis: Haskell Bindings for libsvm
changelog: ''
basic-deps:
base: ! '>=4 && <5'
containers: -any
all-versions:
- '0.1.0.2.89'
- '0.1.0.2.90'
author: Paolo Losi <paolo.losi@gmail.com>
latest: '0.1.0.2.90'
description-type: haddock
description: ''
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 9938623ff8647cb64e120f75d8b7e94fa73f036a9a1cbdddcd44ea6b697c7f70
test-bench-deps: {}
maintainer: Pavel Ryzhov <paul@paulrz.cz>
synopsis: Haskell Bindings for libsvm
changelog: ''
basic-deps:
base: ! '>=4 && <5'
containers: -any
all-versions:
- '0.1.0.2.89'
- '0.1.0.2.90'
- '0.1.0.3.22'
author: Paolo Losi <paolo.losi@gmail.com>
latest: '0.1.0.3.22'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2017-08-16T22:15:56Z | Update from Hackage at 2017-08-16T22:15:56Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
70936d1da2392b14ff5aa45e6af70e3e28e541db | packages/lo/loup.yaml | packages/lo/loup.yaml | homepage: https://github.com/swift-nav/loup
changelog-type: ''
hash: 741833124c5028599f250cf6fd6c102614036323e6ee0d7e7c0ebca09f4c3b05
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Amazon Simple Workflow Service Wrapper for Work Pools.
changelog: ''
basic-deps:
amazonka: -any
bytestring: -any
optparse-generic: -any
base: ==4.8.*
time: -any
shakers: -any
unordered-containers: -any
uuid: -any
preamble: -any
monad-control: -any
lifted-base: -any
conduit: -any
turtle: -any
loup: -any
lifted-async: -any
amazonka-swf: -any
aeson: -any
yaml: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
author: Swift Navigation Inc.
latest: '0.0.4'
description-type: haddock
description: Loup is a wrapper around Amazon Simple Workflow Service for Work Pools.
license-name: MIT
| homepage: https://github.com/swift-nav/loup
changelog-type: ''
hash: 614bdb5f5b6e85790958ac32aa24ea10fe78c540717fb2134eaae3dd32411fd4
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Amazon Simple Workflow Service Wrapper for Work Pools.
changelog: ''
basic-deps:
amazonka: -any
bytestring: -any
optparse-generic: -any
base: ==4.8.*
time: -any
shakers: -any
unordered-containers: -any
uuid: -any
preamble: -any
monad-control: -any
lifted-base: -any
conduit: -any
turtle: -any
loup: -any
lifted-async: -any
amazonka-swf: -any
aeson: -any
yaml: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
author: Swift Navigation Inc.
latest: '0.0.5'
description-type: haddock
description: Loup is a wrapper around Amazon Simple Workflow Service for Work Pools.
license-name: MIT
| Update from Hackage at 2017-06-15T22:57:44Z | Update from Hackage at 2017-06-15T22:57:44Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
b733cef85e239ff77b10852df310df0e9728051f | .github/workflows/php-qa.yml | .github/workflows/php-qa.yml | name: PHP Quality Assurance
on: [push]
jobs:
qa:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip')"
strategy:
fail-fast: true
matrix:
php-versions: ['7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '8.0']
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Check syntax error in sources
run: find ./src/ ./tests/ -type f -name '*.php' -print0 | xargs -0 -L 1 -P 4 -- php -l
- name: Install dependencies
run: composer install -q -n -a --no-progress --prefer-dist
- name: Check cross-version PHP compatibility
if: ${{ matrix.php-versions == '7.4' }} # results is same across versions, do it once
run: composer phpcompat
- name: Run unit tests
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml
- name: Update codecov.io
uses: codecov/codecov-action@v1
if: ${{ matrix.php-versions == '7.4' }} # upload coverage once is enough
with:
file: ./coverage.xml
| name: PHP Quality Assurance
on: [push]
jobs:
qa:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip')"
strategy:
fail-fast: true
matrix:
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Check syntax error in sources
run: find ./src/ ./tests/ -type f -name '*.php' -print0 | xargs -0 -L 1 -P 4 -- php -l
- name: Install dependencies
run: composer install -q -n -a --no-progress --prefer-dist
- name: Check cross-version PHP compatibility
if: ${{ matrix.php-versions == '7.4' }} # results is same across versions, do it once
run: composer phpcompat
- name: Run unit tests
run: ./vendor/bin/phpunit --migrate-configuration --coverage-clover=coverage.xml
- name: Update codecov.io
uses: codecov/codecov-action@v1
if: ${{ matrix.php-versions == '7.4' }} # upload coverage once is enough
with:
file: ./coverage.xml
| Use --migrate-configuration for PHPUnit in Actions | Use --migrate-configuration for PHPUnit in Actions
| YAML | mit | Brain-WP/BrainMonkey |
a016e896f05d2bd79b3e74667388764afbd68af1 | packages/ta/taco.yaml | packages/ta/taco.yaml | homepage: https://github.com/ocramz/taco-hs#readme
changelog-type: ''
hash: 990e839e311c782b4114b9834986433cae937ffe6ea7ca7703dbe9f466338a21
test-bench-deps:
base: -any
taco: -any
maintainer: zocca.marco gmail
synopsis: Tensor Algebra COmpiler
changelog: ''
basic-deps:
exceptions: -any
base: ! '>=4.7 && <5'
containers: -any
mtl: -any
vector-algorithms: -any
vector: -any
all-versions:
- '0.3.0.0'
author: Marco Zocca
latest: '0.3.0.0'
description-type: markdown
description: ! '# taco
Tensor Algebra COmpiler (`taco`).
This library is loosely inspired by [1] but follows an independent design.
**NB: Experimental and not yet ready for general use**
## References
[1] F. Kjolstad et al., Proc. ACM Program. Lang., Vol.1, OOPSLA, Article 77, October
2017'
license-name: BSD3
| homepage: https://github.com/ocramz/taco-hs#readme
changelog-type: ''
hash: 990e839e311c782b4114b9834986433cae937ffe6ea7ca7703dbe9f466338a21
test-bench-deps:
base: -any
taco: -any
maintainer: zocca.marco gmail
synopsis: Tensor Algebra COmpiler
changelog: ''
basic-deps:
exceptions: -any
base: ! '>=4.7 && <5'
containers: -any
mtl: -any
vector-algorithms: -any
vector: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.3.0.0'
author: Marco Zocca
latest: '0.3.0.0'
description-type: markdown
description: ! '# taco
Tensor Algebra COmpiler (`taco`).
This library is loosely inspired by [1] but follows an independent design.
**NB: Experimental and not yet ready for general use**
## References
[1] F. Kjolstad et al., Proc. ACM Program. Lang., Vol.1, OOPSLA, Article 77, October
2017'
license-name: BSD3
| Update from Hackage at 2018-03-04T13:57:31Z | Update from Hackage at 2018-03-04T13:57:31Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0be613d7276f1083a5eba336e32b7f648edc406b | roles/nodejs/vars/main.yml | roles/nodejs/vars/main.yml | ---
nodejs_nvm_ver: "0.29.0"
nodejs_nvm_install_url: "https://raw.githubusercontent.com/creationix/nvm/v{{nodejs_nvm_ver}}/install.sh"
nodejs_nvm_install_script: "{{home_dir}}/tmp/install.sh"
nodejs_default_ver: "5.10"
nodejs_versions:
- "0.10"
- "0.12"
- "5.10"
nodejs_versions_to_remove:
- "0.10.40"
- "0.10.41"
- "0.10.42"
- "5.9.1"
nodejs_npm_packages:
- bower
- coffee
- coffeelint
- cult
- grunt
- grunt-cli
- gulp
- jshint
- keybase
- keybase-installer
- yo
| ---
nodejs_nvm_ver: "0.29.0"
nodejs_nvm_install_url: "https://raw.githubusercontent.com/creationix/nvm/v{{nodejs_nvm_ver}}/install.sh"
nodejs_nvm_install_script: "{{home_dir}}/tmp/install.sh"
nodejs_default_ver: "5.10"
nodejs_versions:
- "0.10"
- "0.12"
- "5.10"
nodejs_versions_to_remove:
- "0.10.43"
- "5.9.1"
nodejs_npm_packages:
- bower
- coffee
- coffeelint
- cult
- grunt
- grunt-cli
- gulp
- jshint
- keybase
- keybase-installer
- yo
| Remove old node 0.10.x versions | Remove old node 0.10.x versions
| YAML | mit | mtchavez/mac-ansible |
b4fdd05d0bf1cf87c4f8c76bd67611fd2009844b | src/Oro/Bundle/ConfigBundle/Resources/translations/messages.en.yml | src/Oro/Bundle/ConfigBundle/Resources/translations/messages.en.yml | oro:
config:
module_label: "System configuration"
actions:
collapse_all: "Collapse all"
expand_all: "Expand all"
save_settings: "Save settings"
restore_saved_values: "Reset"
menu:
system_configuration.label: "Configuration"
system_configuration.description: "System configuration"
controller:
config.saved.message: "Configuration saved"
page.reload.message: "Please wait until page will be reloaded..."
system_configuration:
groups:
platform.title: "System Configuration"
general_setup.title: "General Setup"
use_default: "Use default"
desktop_only: "System configuration is not available in mobile version. Please open the page on the desktop."
acl:
action:
general.label: Access system configuration
dashboard:
widgets:
quick_launchpad.title: "Settings"
| oro:
config:
module_label: "System configuration"
actions:
collapse_all: "Collapse All"
expand_all: "Expand All"
save_settings: "Save settings"
restore_saved_values: "Reset"
menu:
system_configuration.label: "Configuration"
system_configuration.description: "System configuration"
controller:
config.saved.message: "Configuration saved"
page.reload.message: "Please wait until page will be reloaded..."
system_configuration:
groups:
platform.title: "System Configuration"
general_setup.title: "General Setup"
use_default: "Use default"
desktop_only: "System configuration is not available in mobile version. Please open the page on the desktop."
acl:
action:
general.label: Access system configuration
dashboard:
widgets:
quick_launchpad.title: "Settings"
| Add toggle trigger for changing state of Configuration Items - revert translations | BAP-16565: Add toggle trigger for changing state of Configuration Items
- revert translations
| YAML | mit | orocrm/platform,orocrm/platform,orocrm/platform |
c9df0b962e4fa06c42485dfa0b12e81ba20ffbd9 | packages/or/orthotope-hmatrix.yaml | packages/or/orthotope-hmatrix.yaml | homepage: ''
changelog-type: markdown
hash: 93471b96446d464f043c08a99f4857c11c410d25da53612cee9f3e7df927d682
test-bench-deps: {}
maintainer: lennart@augustsson.net
synopsis: Some algorithms from hmatrix
changelog: |+
## Changes
#### 0.1.0.0
- Initial version
basic-deps:
base: '>=4.12 && <4.18'
orthotope: -any
hmatrix: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
author: ''
latest: 0.1.0.1
description-type: markdown
description: |
# orthotope-hmatrix
orthotope interface to some hmatrix algorithms
license-name: LicenseRef-Apache
| homepage: ''
changelog-type: markdown
hash: 8ad94c788f6913a6b6461b07343774850f74cb53207f220d94ce58f30b802b7e
test-bench-deps: {}
maintainer: lennart@augustsson.net
synopsis: Some algorithms from hmatrix
changelog: |+
## Changes
#### 0.1.0.0
- Initial version
basic-deps:
base: '>=4.12 && <4.18'
orthotope: -any
hmatrix: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.1.0
author: ''
latest: 0.1.1.0
description-type: markdown
description: |
# orthotope-hmatrix
orthotope interface to some hmatrix algorithms
license-name: LicenseRef-Apache
| Update from Hackage at 2022-01-18T14:43:14Z | Update from Hackage at 2022-01-18T14:43:14Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0bd62c911843f02b76bf6b0fe1af228aff7690c1 | .github/workflows/pythonapp.yml | .github/workflows/pythonapp.yml | name: Python application
on: [push, pull_request]
jobs:
build:
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --show-source --statistics
| name: Python application
on: [push, pull_request]
jobs:
build:
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --show-source --statistics
- name: Run unit tests
run: |
pip install unittest
python -m unittest discover -v tests/unit
| Add unit tests to CI | Add unit tests to CI
| YAML | mit | plamere/spotipy |
893f65f30135e1404db85e0e92f6aa67e6ee6ea6 | recipes/datamuxer/meta.yaml | recipes/datamuxer/meta.yaml | package:
name: datamuxer
version: v0.3.0
source:
git_url: https://github.com/NSLS-II/datamuxer
git_rev: v0.3.0
build:
number: 0
requirements:
build:
- python
run:
- python
- pandas
- six
- scipy
- tzlocal
test:
requires:
- nslsii_dev_configuration
- databroker
imports:
- datamuxer
about:
home: https://github.com/NSLS-II/datamuxer
license: BSD
| package:
name: datamuxer
version: v0.3.0
source:
git_url: https://github.com/NSLS-II/datamuxer
git_rev: v0.3.0
build:
number: 0
requirements:
build:
- python
run:
- python
- pandas
- six
- scipy
- tzlocal
test:
requires:
- nslsii_dev_configuration
imports:
- datamuxer
about:
home: https://github.com/NSLS-II/datamuxer
license: BSD
| Remove databroker from test requirements for datamuxer | Remove databroker from test requirements for datamuxer
| YAML | bsd-3-clause | NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes |
cbd8b3c1566f77b8e1a43c3d40d915aed72b6fbe | recipes/freebayes/meta.yaml | recipes/freebayes/meta.yaml | package:
name: freebayes
version: '1.1.0'
source:
git_url: https://github.com/ekg/freebayes.git
git_rev: 39e5e4b
build:
number: 0
skip: False
requirements:
build:
- cmake
- zlib
- python
run:
- zlib
- python
test:
commands:
- freebayes --version
about:
home: https://github.com/ekg/freebayes
license: MIT
summary: Bayesian haplotype-based polymorphism discovery and genotyping
| package:
name: freebayes
version: '1.1.0'
source:
git_url: https://github.com/ekg/freebayes.git
git_rev: 39e5e4b
build:
number: 0
skip: False
requirements:
build:
- cmake
- zlib
- python
run:
- zlib
- python
test:
commands:
- freebayes --version
about:
home: https://github.com/ekg/freebayes
license: MIT
summary: Bayesian haplotype-based polymorphism discovery and genotyping
| Switch to git source checkout | Switch to git source checkout
| YAML | mit | zwanli/bioconda-recipes,gvlproject/bioconda-recipes,npavlovikj/bioconda-recipes,rob-p/bioconda-recipes,HassanAmr/bioconda-recipes,bebatut/bioconda-recipes,keuv-grvl/bioconda-recipes,ivirshup/bioconda-recipes,keuv-grvl/bioconda-recipes,matthdsm/bioconda-recipes,roryk/recipes,keuv-grvl/bioconda-recipes,ivirshup/bioconda-recipes,daler/bioconda-recipes,dkoppstein/recipes,rob-p/bioconda-recipes,martin-mann/bioconda-recipes,matthdsm/bioconda-recipes,colinbrislawn/bioconda-recipes,blankenberg/bioconda-recipes,HassanAmr/bioconda-recipes,mdehollander/bioconda-recipes,shenwei356/bioconda-recipes,ostrokach/bioconda-recipes,jfallmann/bioconda-recipes,dmaticzka/bioconda-recipes,rvalieris/bioconda-recipes,zwanli/bioconda-recipes,CGATOxford/bioconda-recipes,saketkc/bioconda-recipes,ThomasWollmann/bioconda-recipes,bebatut/bioconda-recipes,colinbrislawn/bioconda-recipes,jasper1918/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,mdehollander/bioconda-recipes,JenCabral/bioconda-recipes,cokelaer/bioconda-recipes,Luobiny/bioconda-recipes,jfallmann/bioconda-recipes,hardingnj/bioconda-recipes,JenCabral/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,phac-nml/bioconda-recipes,CGATOxford/bioconda-recipes,dmaticzka/bioconda-recipes,chapmanb/bioconda-recipes,guowei-he/bioconda-recipes,zwanli/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,rob-p/bioconda-recipes,joachimwolff/bioconda-recipes,oena/bioconda-recipes,oena/bioconda-recipes,zachcp/bioconda-recipes,colinbrislawn/bioconda-recipes,acaprez/recipes,BIMSBbioinfo/bioconda-recipes,ostrokach/bioconda-recipes,bebatut/bioconda-recipes,rvalieris/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,daler/bioconda-recipes,gregvonkuster/bioconda-recipes,xguse/bioconda-recipes,ThomasWollmann/bioconda-recipes,HassanAmr/bioconda-recipes,blankenberg/bioconda-recipes,ThomasWollmann/bioconda-recipes,daler/bioconda-recipes,ThomasWollmann/bioconda-recipes,keuv-grvl/bioconda-recipes,ostrokach/bioconda-recipes,acaprez/recipes,cokelaer/bioconda-recipes,mcornwell1957/bioconda-recipes,martin-mann/bioconda-recipes,colinbrislawn/bioconda-recipes,gregvonkuster/bioconda-recipes,zachcp/bioconda-recipes,zwanli/bioconda-recipes,pinguinkiste/bioconda-recipes,abims-sbr/bioconda-recipes,bioconda/recipes,peterjc/bioconda-recipes,gvlproject/bioconda-recipes,abims-sbr/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,pinguinkiste/bioconda-recipes,CGATOxford/bioconda-recipes,rvalieris/bioconda-recipes,dmaticzka/bioconda-recipes,abims-sbr/bioconda-recipes,oena/bioconda-recipes,mcornwell1957/bioconda-recipes,oena/bioconda-recipes,ivirshup/bioconda-recipes,dmaticzka/bioconda-recipes,mdehollander/bioconda-recipes,phac-nml/bioconda-recipes,colinbrislawn/bioconda-recipes,ivirshup/bioconda-recipes,peterjc/bioconda-recipes,bioconda/recipes,gregvonkuster/bioconda-recipes,Luobiny/bioconda-recipes,chapmanb/bioconda-recipes,omicsnut/bioconda-recipes,CGATOxford/bioconda-recipes,JenCabral/bioconda-recipes,pinguinkiste/bioconda-recipes,abims-sbr/bioconda-recipes,mdehollander/bioconda-recipes,hardingnj/bioconda-recipes,saketkc/bioconda-recipes,oena/bioconda-recipes,npavlovikj/bioconda-recipes,mcornwell1957/bioconda-recipes,cokelaer/bioconda-recipes,acaprez/recipes,jasper1918/bioconda-recipes,guowei-he/bioconda-recipes,joachimwolff/bioconda-recipes,npavlovikj/bioconda-recipes,guowei-he/bioconda-recipes,joachimwolff/bioconda-recipes,pinguinkiste/bioconda-recipes,saketkc/bioconda-recipes,shenwei356/bioconda-recipes,jasper1918/bioconda-recipes,JenCabral/bioconda-recipes,gvlproject/bioconda-recipes,bow/bioconda-recipes,bioconda/bioconda-recipes,rvalieris/bioconda-recipes,ostrokach/bioconda-recipes,bow/bioconda-recipes,bioconda/recipes,matthdsm/bioconda-recipes,CGATOxford/bioconda-recipes,gregvonkuster/bioconda-recipes,joachimwolff/bioconda-recipes,martin-mann/bioconda-recipes,peterjc/bioconda-recipes,JenCabral/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,Luobiny/bioconda-recipes,keuv-grvl/bioconda-recipes,peterjc/bioconda-recipes,Luobiny/bioconda-recipes,zachcp/bioconda-recipes,jasper1918/bioconda-recipes,HassanAmr/bioconda-recipes,xguse/bioconda-recipes,roryk/recipes,joachimwolff/bioconda-recipes,rvalieris/bioconda-recipes,bioconda/bioconda-recipes,ostrokach/bioconda-recipes,saketkc/bioconda-recipes,chapmanb/bioconda-recipes,phac-nml/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,cokelaer/bioconda-recipes,mcornwell1957/bioconda-recipes,ThomasWollmann/bioconda-recipes,lpantano/recipes,ivirshup/bioconda-recipes,phac-nml/bioconda-recipes,martin-mann/bioconda-recipes,roryk/recipes,blankenberg/bioconda-recipes,bebatut/bioconda-recipes,dmaticzka/bioconda-recipes,zwanli/bioconda-recipes,bioconda/bioconda-recipes,bow/bioconda-recipes,dkoppstein/recipes,peterjc/bioconda-recipes,mdehollander/bioconda-recipes,bow/bioconda-recipes,matthdsm/bioconda-recipes,omicsnut/bioconda-recipes,lpantano/recipes,acaprez/recipes,npavlovikj/bioconda-recipes,peterjc/bioconda-recipes,blankenberg/bioconda-recipes,omicsnut/bioconda-recipes,joachimwolff/bioconda-recipes,martin-mann/bioconda-recipes,chapmanb/bioconda-recipes,lpantano/recipes,CGATOxford/bioconda-recipes,ivirshup/bioconda-recipes,zwanli/bioconda-recipes,colinbrislawn/bioconda-recipes,keuv-grvl/bioconda-recipes,omicsnut/bioconda-recipes,phac-nml/bioconda-recipes,omicsnut/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,HassanAmr/bioconda-recipes,xguse/bioconda-recipes,rvalieris/bioconda-recipes,jfallmann/bioconda-recipes,guowei-he/bioconda-recipes,abims-sbr/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,ThomasWollmann/bioconda-recipes,bow/bioconda-recipes,shenwei356/bioconda-recipes,mcornwell1957/bioconda-recipes,guowei-he/bioconda-recipes,daler/bioconda-recipes,saketkc/bioconda-recipes,HassanAmr/bioconda-recipes,chapmanb/bioconda-recipes,hardingnj/bioconda-recipes,hardingnj/bioconda-recipes,abims-sbr/bioconda-recipes,JenCabral/bioconda-recipes,saketkc/bioconda-recipes,ostrokach/bioconda-recipes,matthdsm/bioconda-recipes,matthdsm/bioconda-recipes,gvlproject/bioconda-recipes,dmaticzka/bioconda-recipes,rob-p/bioconda-recipes,jfallmann/bioconda-recipes,shenwei356/bioconda-recipes,daler/bioconda-recipes,pinguinkiste/bioconda-recipes,dkoppstein/recipes,bioconda/bioconda-recipes,hardingnj/bioconda-recipes,bow/bioconda-recipes,xguse/bioconda-recipes,gvlproject/bioconda-recipes,pinguinkiste/bioconda-recipes,lpantano/recipes,jasper1918/bioconda-recipes,gvlproject/bioconda-recipes,zachcp/bioconda-recipes,mdehollander/bioconda-recipes,xguse/bioconda-recipes,daler/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes |
31884aa6070a43934f93d761c46082531fed45ed | stable/contour/templates/clusterrolebinding.yaml | stable/contour/templates/clusterrolebinding.yaml | {{- if .Values.rbac.enabled }}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: {{ template "contour.fullname" . }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: {{ template "contour.name" . }}
subjects:
- kind: ServiceAccount
name: {{ template "contour.fullname" . }}
namespace: {{ .Release.Namespace }}
{{ end }}
| {{- if .Values.rbac.enabled }}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: {{ template "contour.fullname" . }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: {{ template "contour.fullname" . }}
subjects:
- kind: ServiceAccount
name: {{ template "contour.fullname" . }}
namespace: {{ .Release.Namespace }}
{{ end }}
| Use correct ClusterRole name in ClusterRoleBinding | Use correct ClusterRole name in ClusterRoleBinding
| YAML | mit | rimusz/charts |
7e77fc7c8fc311934ef6d19968e5cafa4d67dfa4 | packages/me/mergeless.yaml | packages/me/mergeless.yaml | homepage: https://github.com/NorfairKing/mergeless#readme
changelog-type: markdown
hash: 76707af87bf1df3ca2d5cb164d68f980ec83be9faac7a23eb8f0baf5f5cbf4a3
test-bench-deps: {}
maintainer: syd.kerckhove@gmail.com
synopsis: ''
changelog: |
# Changelog for mergeless
## Unreleased changes
## [0.2.0.0] - 2020-02-12
* Got rid of the UTCTimes. The client should take care of that.
basic-deps:
base: ! '>=4.7 && <5'
validity-containers: -any
containers: -any
validity: -any
mtl: -any
deepseq: -any
aeson: -any
all-versions:
- 0.0.0.0
- 0.1.0.0
- 0.2.0.0
author: Tom Sydney Kerckhove
latest: 0.2.0.0
description-type: markdown
description: |
# mergeless
license-name: MIT
| homepage: https://github.com/NorfairKing/mergeless#readme
changelog-type: markdown
hash: c7be570b7d52976a1f98af96958e58b027f45d906fc9320282a3d2de8e1534e5
test-bench-deps: {}
maintainer: syd.kerckhove@gmail.com
synopsis: ''
changelog: |
# Changelog for mergeless
## Unreleased changes
## [0.2.0.1] - 2020-02-13
* Fixed the benchmarks
## [0.2.0.0] - 2020-02-12
* Got rid of the UTCTimes. The client should take care of that.
basic-deps:
base: ! '>=4.7 && <5'
validity-containers: -any
containers: -any
validity: -any
mtl: -any
deepseq: -any
aeson: -any
all-versions:
- 0.0.0.0
- 0.1.0.0
- 0.2.0.0
- 0.2.0.1
author: Tom Sydney Kerckhove
latest: 0.2.0.1
description-type: markdown
description: |
# mergeless
license-name: MIT
| Update from Hackage at 2020-02-13T12:03:40Z | Update from Hackage at 2020-02-13T12:03:40Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1bc364febafc6d968f11b9bdb2eb2db98092ab7a | ansible/roles/kibana/tasks/main.yml | ansible/roles/kibana/tasks/main.yml | ---
# tasks file for kibana
# include the distro-specific stuff
- include: debian.yml
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
- include: rhel.yml
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'
- name: Copy the Kibana config
template:
src: kibana.yml
dest: /etc/kibana/kibana.yml
owner: root
group: root
mode: 0644
notify: restart kibana
- name: Start the kibana service
service: name=kibana state=started
- name: Register the consul service
consul:
service_name: kibana
service_port: 5601
when: consul_enabled == True
- name: Install and enable the kibana plugins
command: "/usr/share/kibana/bin/kibana-plugin install {{ item }}"
ignore_errors: true
with_items:
- xpack
- name: Open the firewall for Kibana
firewalld:
port: 5601/tcp
immediate: true
permanent: true
state: enabled
| ---
# tasks file for kibana
# include the distro-specific stuff
- include: debian.yml
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
- include: rhel.yml
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'
- name: Copy the Kibana config
template:
src: kibana.yml
dest: /etc/kibana/kibana.yml
owner: root
group: root
mode: 0644
notify: restart kibana
- name: Start the kibana service
service: name=kibana state=started
- name: Register the consul service
consul:
service_name: kibana
service_port: 5601
when: consul_enabled == True
- name: Install and enable the kibana plugins
become: kibana
command: "./bin/kibana-plugin install {{ item }}"
args:
chdir: /usr/share/kibana
ignore_errors: true
with_items:
- xpack
notify: restart kibana
- name: Open the firewall for Kibana
firewalld:
port: 5601/tcp
immediate: true
permanent: true
state: enabled
| Install the x-pack plugin as the kibana user | Install the x-pack plugin as the kibana user
| YAML | mit | proffalken/aws-blog-framework,proffalken/aws-blog-framework,proffalken/aws-blog-framework |
3a22ef65b8f5afe050f970da9f66a40227544f4c | bootstrap/playbooks/solar.yaml | bootstrap/playbooks/solar.yaml | ---
- hosts: all
sudo: yes
tasks:
# Setup development env for solar
- shell: python setup.py develop chdir=/vagrant/solar
| ---
- hosts: all
sudo: yes
tasks:
# Setup development env for solar
- shell: pip install -e . chdir=/vagrant/solar
| Use pip install instead of setup.py develop | Use pip install instead of setup.py develop
| YAML | apache-2.0 | zen/solar,loles/solar,pigmej/solar,Mirantis/solar,pigmej/solar,loles/solar,Mirantis/solar,openstack/solar,loles/solar,openstack/solar,loles/solar,Mirantis/solar,openstack/solar,zen/solar,pigmej/solar,zen/solar,Mirantis/solar,zen/solar |
57d5dbfaa97da40f7a034fa0f69d34301020467b | jjb/_scm.yaml | jjb/_scm.yaml | - scm:
name: github
scm:
- git:
url: "git@github.com:{github-owner}/{github-project}.git"
branches:
- '{branch}'
browser: githubweb
browser-url: "https://github.com/{github-owner}/{github-project}/"
| - scm:
name: github
scm:
- git:
url: "https://github.com/{github-owner}/{github-project}"
branches:
- '{branch}'
browser: githubweb
browser-url: "https://github.com/{github-owner}/{github-project}/"
| Use a working git URL | Use a working git URL
| YAML | apache-2.0 | drwahl/jenkins-jjb |
d38281f5c9b55226f9725940e77545bee112fe21 | metadata/com.punksta.apps.volumecontrol.yml | metadata/com.punksta.apps.volumecontrol.yml | Categories:
- System
License: MIT
SourceCode: https://github.com/punksta/volume_control_android
IssueTracker: https://github.com/punksta/volume_control_android/issues
Changelog: https://github.com/punksta/volume_control_android/releases
AutoName: Volume Control
RepoType: git
Repo: https://github.com/punksta/volume_control_android
Builds:
- versionName: 2.2.2
versionCode: 14
commit: 2.2.2
subdir: app
gradle:
- yes
- versionName: 2.2.3
versionCode: 15
commit: 2.2.3
subdir: app
gradle:
- yes
- versionName: 2.2.4
versionCode: 16
commit: 2.2.4
subdir: app
gradle:
- yes
- versionName: 2.3.0
versionCode: 17
commit: 2.3.0
subdir: app
gradle:
- yes
- versionName: 2.3.1
versionCode: 18
commit: 2.3.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 2.3.1
CurrentVersionCode: 18
| Categories:
- System
License: MIT
SourceCode: https://github.com/punksta/volume_control_android
IssueTracker: https://github.com/punksta/volume_control_android/issues
Changelog: https://github.com/punksta/volume_control_android/releases
AutoName: Volume Control
RepoType: git
Repo: https://github.com/punksta/volume_control_android
Builds:
- versionName: 2.2.2
versionCode: 14
commit: 2.2.2
subdir: app
gradle:
- yes
- versionName: 2.2.3
versionCode: 15
commit: 2.2.3
subdir: app
gradle:
- yes
- versionName: 2.2.4
versionCode: 16
commit: 2.2.4
subdir: app
gradle:
- yes
- versionName: 2.3.0
versionCode: 17
commit: 2.3.0
subdir: app
gradle:
- yes
- versionName: 2.3.1
versionCode: 18
commit: 2.3.1
subdir: app
gradle:
- yes
- versionName: 2.3.4
versionCode: 24
commit: 2.3.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 2.3.4
CurrentVersionCode: 24
| Update Volume Control to 2.3.4 (24) | Update Volume Control to 2.3.4 (24)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.