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 |
|---|---|---|---|---|---|---|---|---|---|
ad9065f9b1a795891ffe8c806385e6094ba67554 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
before_install:
- gem update --system
- gem install bundler --conservative --no-document -v "~> 2.0"
matrix:
allow_failures:
- rvm: ruby-head
include:
# Run Danger only once, on 2.6.0
- rvm: 2.6.0
script: bundle exec danger
| sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
before_install:
- gem update --system
- gem install bundler --conservative --no-document -v "~> 2.0"
- gem install executable-hooks --conservative --no-document
matrix:
include:
# Run Danger only once, on 2.6.0
- rvm: 2.6.0
script: bundle exec danger
| Work around rvm ruby-head build failures | Work around rvm ruby-head build failures
Currently rvm fails to install ruby-head completely on Travis with
errors like:
there was an error installing gem gem-wrappers
This leaves the ruby environment in an inconsistent state where binstubs
fail to execute with errors like:
/usr/bin/env: ruby_executable_hooks: No such file or directory
Manually installing the executable-hooks gem fixes these errors.
| YAML | mit | mattbrictson/chandler,mattbrictson/chandler |
f53a54d79b56769c73324a0a4b2dbda45958b0f7 | .travis.yml | .travis.yml | addons:
apt:
packages:
- aspell
- aspell-en
- g++
- gcc
- git
- gfortran
- libblas3gf
- libblas-dev
- liblapack3gf
- liblapack-dev
- libatlas-base-dev
- libfontconfig1
- libmysqlclient-dev
- libxml2-dev
- libxslt1-dev
- nodejs
- python2.7
- python2.7-dev
- python-pip
- python-software-properties
language: python
sudo: false
python:
- "2.7"
install:
- "pip install coveralls"
- "make install"
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "make test"
- "python manage.py makemessages -l eo"
branches:
only:
- master
after_success:
coveralls
| addons:
apt:
packages:
- aspell
- aspell-en
- g++
- gcc
- git
- gfortran
- libblas3gf
- libblas-dev
- liblapack3gf
- liblapack-dev
- libatlas-base-dev
- libfontconfig1
- libmysqlclient-dev
- libxml2-dev
- libxslt1-dev
- nodejs
- python2.7
- python2.7-dev
- python-pip
- python-software-properties
language: python
sudo: false
python:
- "2.7"
install:
- "pip install coveralls"
- "make install"
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "make test"
- "python manage.py makemessages -l eo"
branches:
only:
- master
- ora-staff-grading
after_success:
coveralls
| Add ora-staff-grading to branches to build | Add ora-staff-grading to branches to build
| YAML | agpl-3.0 | miptliot/edx-ora2,miptliot/edx-ora2,Stanford-Online/edx-ora2,edx/edx-ora2,Lektorium-LLC/edx-ora2,Lektorium-LLC/edx-ora2,Edraak/edx-ora2,miptliot/edx-ora2,EDUlib/edx-ora2,Lektorium-LLC/edx-ora2,edx/edx-ora2,nttks/edx-ora2,Edraak/edx-ora2,edx/edx-ora2,EDUlib/edx-ora2,EDUlib/edx-ora2,Stanford-Online/edx-ora2,Edraak/edx-ora2,Stanford-Online/edx-ora2,nttks/edx-ora2,nttks/edx-ora2,Stanford-Online/edx-ora2,miptliot/edx-ora2,nttks/edx-ora2,Lektorium-LLC/edx-ora2,EDUlib/edx-ora2,edx/edx-ora2,Edraak/edx-ora2 |
6ce934431f48ca9b9dcdacfb9a22cba59ff83163 | .travis.yml | .travis.yml | language: python
python:
- 3.5
- 3.6
- 3.7
- 3.8
env:
- DJANGO="Django>=1.11,<2.0"
- DJANGO="Django>=2.0,<2.1"
- DJANGO="Django>=2.1,<2.2"
- DJANGO="Django>=2.2,<2.3"
- DJANGO="Django>=3.0,<3.1"
install:
- pip install coverage coveralls $DJANGO
script: coverage run -a --branch setup.py test
matrix:
exclude:
- python: 3.5
env: DJANGO="Django>=3.0,<3.1"
- python: 3.7
env: DJANGO="Django>=1.11,<2.0"
- python: 3.8
env: DJANGO="Django>=1.11,<2.0"
after_success: coveralls
| language: python
python:
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9
env:
- DJANGO="Django>=1.11,<2.0"
- DJANGO="Django>=2.0,<2.1"
- DJANGO="Django>=2.1,<2.2"
- DJANGO="Django>=2.2,<2.3"
- DJANGO="Django>=3.0,<3.1"
- DJANGO="Django>=3.1,<3.2"
- DJANGO="Django>=3.2,<3.3"
install:
- pip install coverage coveralls $DJANGO
script: coverage run -a --branch setup.py test
matrix:
exclude:
- python: 3.5
env: DJANGO="Django>=3.0,<3.1"
- python: 3.7
env: DJANGO="Django>=1.11,<2.0"
- python: 3.8
env: DJANGO="Django>=1.11,<2.0"
after_success: coveralls
| Add Python 3.9 and Django>=3.1 | Add Python 3.9 and Django>=3.1
| YAML | mit | treyhunner/django-email-log,treyhunner/django-email-log |
999d13ee3ca937070ef5132da9d911a41920c732 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
before_script:
- "npm install dalek-cli -g"
| language: node_js
node_js:
- "0.10"
before_script:
- "npm install dalek-cli -g"
| Check if sudo false makes it fail | Check if sudo false makes it fail
| YAML | mit | swisnl/jQuery-contextMenu,swisnl/jQuery-contextMenu |
0d8322f90a47a3c3fb801be07909d52e6eab445a | .travis.yml | .travis.yml | language: cpp
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env: COMPILER=g++-4.8
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
env: COMPILER=g++-4.9
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env: COMPILER=g++-5
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
env: COMPILER=g++-6
- os: linux
compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
env: COMPILER=clang++
- os: osx
osx_image: xcode7.3
compiler: clang
env: COMPILER=clang
- os: osx
osx_image: xcode8
compiler: clang
env: COMPILER=clang
sudo: required
dist: trusty
before_install:
- ci/travis-system-info.sh
- ci/travis-before-install.sh
script:
- ci/travis-script.sh
notifications:
email: false
| language: cpp
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
env: COMPILER=g++-4.9
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env: COMPILER=g++-5
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
env: COMPILER=g++-6
- os: linux
compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
env: COMPILER=clang++
- os: osx
osx_image: xcode7.3
compiler: clang
env: COMPILER=clang
- os: osx
osx_image: xcode8
compiler: clang
env: COMPILER=clang
sudo: required
dist: trusty
before_install:
- ci/travis-system-info.sh
- ci/travis-before-install.sh
script:
- ci/travis-script.sh
notifications:
email: false
| Remove gcc 4.8 from Tracis ci scripts | Remove gcc 4.8 from Tracis ci scripts
| YAML | mit | benvenutti/foo,benvenutti/foo,benvenutti/test |
15cd128838932644717d1b71c423a36631acc2f3 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- "pip install coveralls tox"
script:
- "tox"
after_success:
- "coveralls"
| language: python
python:
- "2.7"
before_install:
- "sudo apt-get update"
- "sudo apt-get install libgeoip1 -y"
install:
- "pip install coveralls tox"
script:
- "tox"
after_success:
- "coveralls"
| Add `libgeoip1` as Travis CI dependency | Add `libgeoip1` as Travis CI dependency
| YAML | mit | myhro/myhronet,myhro/myhronet |
5081da5442f3fddf6b99cd387325c7390c3a581f | .travis.yml | .travis.yml | language: node_js
node_js:
- 7
before_install:
- openssl aes-256-cbc -K $encrypted_294e4e77ddf7_key -iv $encrypted_294e4e77ddf7_iv
-in travis-service-account-auth.json.enc -out travis-service-account-auth.json -d
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- node ./internals/scripts/generate-templates-for-linting
- npm run test
after_success:
- npm run coveralls
- npm install -g codeclimate-test-reporter
- codeclimate-test-reporter < ./coverage/lcov.info
- npm run build
- wget "https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz"
- tar -xaf "google-cloud-sdk.tar.gz"
- ./google-cloud-sdk/install.sh --usage-reporting false --path-update true
- source './google-cloud-sdk/path.bash.inc'
- gcloud auth activate-service-account $TRAVIS_SERVICE_ACCOUNT --key-file=travis-service-account-auth.json
- gsutil -m rsync -R -D build $GCS_BUCKET
notifications:
email:
on_failure: change
cache:
yarn: true
directories:
- node_modules
| language: node_js
node_js:
- 7
before_install:
- openssl aes-256-cbc -K $encrypted_294e4e77ddf7_key -iv $encrypted_294e4e77ddf7_iv
-in travis-service-account-auth.json.enc -out travis-service-account-auth.json -d
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- node ./internals/scripts/generate-templates-for-linting
- npm run test
after_success:
- npm run coveralls
- npm install -g codeclimate-test-reporter
- codeclimate-test-reporter < ./coverage/lcov.info
- npm run build
- wget "https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz"
- tar -xaf "google-cloud-sdk.tar.gz"
- ./google-cloud-sdk/install.sh --usage-reporting false --path-update true
- source './google-cloud-sdk/path.bash.inc'
- gcloud auth activate-service-account $TRAVIS_SERVICE_ACCOUNT --key-file=travis-service-account-auth.json
- gsutil -m rsync -R -d build/ $GCS_BUCKET
notifications:
email:
on_failure: change
cache:
yarn: true
directories:
- node_modules
| Correct invalid argument for gsutil rsync | Correct invalid argument for gsutil rsync
| YAML | mit | hugogrochau/rocketleaguesam-web,hugogrochau/rocketleaguesam-web,hugogrochau/rocketleaguesam-web |
85e23c04c07df5a0fd4605e763791534a48c07ed | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.0
- 5.6
- 5.5
install:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit -c ./phpunit.xml --coverage-text --strict
| language: php
php:
- 7.3
- 7.2
- 7.1
- 7.0
- 5.6
install:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit -c ./phpunit.xml --coverage-text --strict
| Remove PHP 5.5 testing, add PHP 7.2/7.3 testing. | Remove PHP 5.5 testing, add PHP 7.2/7.3 testing.
| YAML | mit | commerceguys/tax |
e89f0f2222f189a007b3e48ee59d63db00506382 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-spiffy' ]; then cd .. && eval "mv $currentfolder generator-spiffy" && cd generator-spiffy; fi
| language: node_js
node_js:
- 'iojs'
- '0.12'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-spiffy' ]; then cd .. && eval "mv $currentfolder generator-spiffy" && cd generator-spiffy; fi
| Stop bothering with node v0.10 | Stop bothering with node v0.10
| YAML | mit | danawoodman/generator-spiffy |
f91751e45d0836d0495f81d77fa8df1f90fb1985 | .travis.yml | .travis.yml | language: php
php:
- 7.2
- 7.3
- 7.4
before_install:
# Disable PHP deprecation notices
- echo 'error_reporting = E_ALL & ~E_DEPRECATED' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
install:
- composer install
script:
- vendor/bin/simple-phpunit --coverage-clover coverage.xml
- composer cs:dry
- composer phpstan
after_script:
- wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar
- php coveralls.phar --verbose
notifications:
email:
- contact@leapt.io
| language: php
php:
- 7.2
- 7.3
- 7.4
before_install:
# Disable PHP deprecation notices
- echo 'error_reporting = E_ALL & ~E_DEPRECATED' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
install:
- composer install
script:
- vendor/bin/phpunit --coverage-clover coverage.xml
- composer cs:dry
- composer phpstan
after_script:
- wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar
- php coveralls.phar --verbose
notifications:
email:
- contact@leapt.io
| Fix phpunit run on Travis | Fix phpunit run on Travis
| YAML | mit | leapt/im-bundle |
14a26dd990f19672eeffa50654239b91023b5105 | .travis.yml | .travis.yml | language: node_js
# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
node_js:
- node
- iojs
- 0.10
- 0.1
# If the package has OS-dependent features, uncomment this.
#os:
# - linux
# - osx
# Note: semantic-release caches node_modules and `npm prune` in before_script
# https://github.com/semantic-release/semantic-release/blob/v6.2.0/.travis.yml#L3
# Since cache is stored in S3 and npm repository is a caching proxy, why bother?
sudo: false
script:
- npm run test-cov
# Note: Both codecov and coveralls detect branch/PR info from Travis CI
# https://github.com/codecov/codecov-node/blob/v1.0.1/lib/services/travis.js
# https://github.com/nickmerwin/node-coveralls/blob/2.11.5/lib/getOptions.js#L18
after_success:
- npm run upload-cov
| language: node_js
# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
node_js:
- node
- iojs
- 0.10
# Note: Travis appears to interpret 0.1 as 0.10, so test against 0.2 instead
- 0.2
# If the package has OS-dependent features, uncomment this.
#os:
# - linux
# - osx
# Note: semantic-release caches node_modules and `npm prune` in before_script
# https://github.com/semantic-release/semantic-release/blob/v6.2.0/.travis.yml#L3
# Since cache is stored in S3 and npm repository is a caching proxy, why bother?
sudo: false
script:
- npm run test-cov
# Note: Both codecov and coveralls detect branch/PR info from Travis CI
# https://github.com/codecov/codecov-node/blob/v1.0.1/lib/services/travis.js
# https://github.com/nickmerwin/node-coveralls/blob/2.11.5/lib/getOptions.js#L18
after_success:
- npm run upload-cov
| Use Node 0.2 instead of 0.1 as min test version | Use Node 0.2 instead of 0.1 as min test version
Since 0.1 appears to run with 0.10 instead of 0.1 on Travis CI.
Signed-off-by: Kevin Locke <ffb4761cba839470133bee36aeb139f58d7dbaa9@kevinlocke.name>
| YAML | mit | kevinoid/promised-read,kevinoid/promised-read,kevinoid/promised-read |
0be33931480b6c1ad9f89cc9f1475ba5841e00dc | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
before_install:
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.6" ]]; then composer require --dev --no-update phpunit/phpunit 5.7.5; fi
install:
- composer install
script: vendor/bin/phpunit --coverage-text
before_script:
- composer install
notifications:
email:
- github@crazedsanity.com
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
before_install:
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "5.6" ]]; then composer require --dev --no-update phpunit/phpunit 5.7.5; fi
install:
- composer install
script: vendor/bin/phpunit --coverage-text
before_script:
- composer install
notifications:
email:
- github@crazedsanity.com
| Support up to PHP 7.1 | Support up to PHP 7.1
... because PHP 7.2 isnn't production-ready, anyway. Looking at the
changelog, it seems there's been a lot of session-related changes.
| YAML | mit | crazedsanity/session |
47665717c5a98411661448141627287cf9d889cb | .travis.yml | .travis.yml | language: java
install: /bin/true # Don't run "gradle assemble" (which is the default)
script: mvn test javadoc:javadoc
after_success:
- mvn clean cobertura:cobertura -Dcobertura.report.format=xml coveralls:cobertura | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
install: /bin/true # Don't run "gradle assemble" (which is the default)
script: mvn test javadoc:javadoc
after_success:
- mvn clean cobertura:cobertura -Dcobertura.report.format=xml coveralls:cobertura | Configure Travis to check java8. | Configure Travis to check java8.
This will catch javadoc lint issues at pull request time.
| YAML | apache-2.0 | googlegenomics/utils-java,deflaux/utils-java,googlegenomics/utils-java,deflaux/utils-java |
ed73119529f9c96af47054eac8b747cce8136988 | .travis.yml | .travis.yml | ## Add to .hg/hgrc to enable bitbucket pushes to push to github as well.
# [hooks]
# outgoing = hg push git+ssh://git@github.com/jmchilton/lwr.git || true
language: python
python:
- 2.6
- 2.7
- 3.3
install:
- sudo apt-get install libxml2-dev libxslt1-dev libcurl3 python-pycurl python3-pycurl
- pip install -r tools/pip-requires --use-mirrors
script: nosetests
| ## Add to .hg/hgrc to enable bitbucket pushes to push to github as well.
# [hooks]
# outgoing = hg push git+ssh://git@github.com/jmchilton/lwr.git || true
language: python
python:
- 2.6
- 2.7
- 3.3
install:
- sudo apt-get install libxml2-dev libxslt1-dev libcurl3 python-pycurl
- pip install -r tools/pip-requires --use-mirrors
script: nosetests
| Remove python3-pycurl dependency for Travis-CI, not available in Ubuntu LTS VMs used by Travis. | Remove python3-pycurl dependency for Travis-CI, not available in Ubuntu LTS VMs used by Travis.
| YAML | apache-2.0 | galaxyproject/pulsar,ssorgatem/pulsar,jmchilton/lwr,natefoo/pulsar,jmchilton/pulsar,natefoo/pulsar,ssorgatem/pulsar,galaxyproject/pulsar,jmchilton/lwr,jmchilton/pulsar |
d86b3dc0f83412e85ca506b5d32ed9210ae421db | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
language: python
python: 3.5
env:
- TOXENV=py35
- TOXENV=py34
- TOXENV=py27
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -U tox
- curl -L https://github.com/coreos/etcd/releases/download/v3.0.10/etcd-v3.0.10-linux-amd64.tar.gz -o etcd-v3.0.10-linux-amd64.tar.gz
- tar xzvf etcd-v3.0.10-linux-amd64.tar.gz
- etcd-v3.0.10-linux-amd64/etcd &
# command to run tests, e.g. python setup.py test
script: tox -e ${TOXENV}
# After you create the Github repo and add it to Travis, run the
# travis_pypi_setup.py script to finish PyPI deployment setup
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: kragniz
password:
secure: PLEASE_REPLACE_ME
on:
tags: true
repo: kragniz/python-etcd3
condition: $TOXENV == py27
| # Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
language: python
python: 3.5
env:
- TOXENV=py35
- TOXENV=py34
- TOXENV=py27
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -U tox
- curl -L https://github.com/coreos/etcd/releases/download/v3.0.10/etcd-v3.0.10-linux-amd64.tar.gz -o etcd-v3.0.10-linux-amd64.tar.gz
- tar xzvf etcd-v3.0.10-linux-amd64.tar.gz
- export PATH=$PATH:etcd-v3.0.10-linux-amd64
- etcd &
# command to run tests, e.g. python setup.py test
script: tox -e ${TOXENV}
# After you create the Github repo and add it to Travis, run the
# travis_pypi_setup.py script to finish PyPI deployment setup
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: kragniz
password:
secure: PLEASE_REPLACE_ME
on:
tags: true
repo: kragniz/python-etcd3
condition: $TOXENV == py27
| Add etcd dir to path | Add etcd dir to path
| YAML | apache-2.0 | kragniz/python-etcd3 |
dfca4dc2d160f5192123e242628d995d10ffe991 | .travis.yml | .travis.yml | language: java
# Make NetworkTables happy
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++6
- junit4
script:
- ./gradlew $TEST_SUITE --debug
# For CodeCov
after_success:
- ./gradlew test jacocoTestReport
- bash <(curl -s https://codecov.io/bash)
jdk:
- oraclejdk8
notifications:
email: false
slack: 4828roboeagles:qjpsMMedvSTKBq3KCmDmdAjB
cards:
enabled:
- master
- development
title: Toast
env:
- TEST_SUITE=build
- TEST_SUITE=check | language: java
# Make NetworkTables happy
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++6
- junit4
before_script:
- chmod +x gradlew
script:
- ./gradlew $TEST_SUITE --debug
# For CodeCov
after_success:
- ./gradlew test jacocoTestReport
- bash <(curl -s https://codecov.io/bash)
jdk:
- oraclejdk8
notifications:
email: false
slack: 4828roboeagles:qjpsMMedvSTKBq3KCmDmdAjB
cards:
enabled:
- master
- development
title: Toast
env:
- TEST_SUITE=build
- TEST_SUITE=check | Add executable permissions for gradlew | Add executable permissions for gradlew
| YAML | mit | RoboEagles4828/ACE,RoboEagles4828/2017Robot |
3b2f3b12ea94128bffffc1da4cedb8e1ce47ee70 | .travis.yml | .travis.yml | language: rust
rust:
- 1.4.0
- 1.5.0
- 1.6.0
- 1.7.0
- 1.8.0
- 1.9.0
- 1.10.0
- 1.11.0
- 1.12.0
- 1.13.0
- 1.14.0
- 1.15.1
- 1.16.0
- beta
- nightly
| language: rust
rust:
- 1.4.0
- 1.5.0
- 1.6.0
- 1.7.0
- 1.8.0
- 1.9.0
- 1.10.0
- 1.11.0
- 1.12.0
- 1.13.0
- 1.14.0
- 1.15.1
- 1.16.0
- 1.17.0
- beta
- nightly
| Test on Rust 1.17 stable | Test on Rust 1.17 stable
| YAML | apache-2.0 | ruuda/filebuffer,ruud-v-a/filebuffer |
599fa3751c50552dd02771b9574e61c00ecb3fa0 | .travis.yml | .travis.yml | language: go
go:
- 1.4
- tip
node_js:
- "0.10"
install:
- go get -v -t ./...
- pushd regbackend && go build -v && popd
- npm install
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm start > /dev/null &
- cd regbackend && ./regbackend >/dev/null &
- npm run update-webdriver
- sleep 1 # give server time to start
script:
- go test -v ./...
- node_modules/.bin/karma start karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
- node_modules/.bin/protractor e2e-tests/protractor.conf.js --browser=firefox
| language: go
go:
- 1.3
- 1.4
- tip
node_js:
- "0.10"
install:
- go get -v -t ./...
- pushd regbackend && go build -v && popd
- npm install
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm start > /dev/null &
- cd regbackend && ./regbackend >/dev/null &
- npm run update-webdriver
- sleep 1 # give server time to start
script:
- go test -v ./...
- node_modules/.bin/karma start karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
- node_modules/.bin/protractor e2e-tests/protractor.conf.js --browser=firefox
| Add golang 1.3 to Travis. | Add golang 1.3 to Travis.
Debian Jessie seems to be locked into this, so I'll lock in too.
| YAML | agpl-3.0 | CCJ16/registration,CCJ16/registration,CCJ16/registration |
bea783da36cd6f762aebbeca4946673a57320f43 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.9
before_install:
- npm install -g grunt-cli
- npm install -g grunt-lib-phantomjs | language: node_js
node_js:
- 0.9
before_install:
- npm install -g grunt-cli
- wget http://phantomjs.googlecode.com/files/phantomjs-1.9.0-linux-i686.tar.bz2
- tar -xf phantomjs-1.9.0-linux-i686.tar.bz2
- sudo rm -rf /usr/local/phantomjs
- sudo mv phantomjs-1.9.0-linux-i686 /usr/local/phantomjs | Add manual PhantomJS installation routine for Travis | Add manual PhantomJS installation routine for Travis | YAML | mit | ain/jquery-feedbackradio |
0dc93c19860211ff750f0196f5fe13b15d09b2fa | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
- jruby-9.1.17.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
script: bundle exec rake test
cache: bundler
env:
- RACK_ENV=development
| language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
- jruby-9.2.0.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
script: bundle exec rake test
cache: bundler
env:
- RACK_ENV=development
| Use JRuby 9.2.0.0 on Travis CI | Use JRuby 9.2.0.0 on Travis CI
| YAML | mit | janko-m/shrine,janko-m/shrine |
4567fd5e66cf923cbbeaba2e6835ab0316a86c0d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
# Echo trickery prevents an error return from `[ -e $dir/package.json ]` from erroring the Travis CI build.
- for dir in $(find . -maxdepth 1 -type d -a ! -name .\*); do [ -e $dir/package.json ] && (cd $dir && npm install && echo $dir) || echo $dir; done
- npm install
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install -g npm
# Echo trickery prevents an error return from `[ -e $dir/package.json ]` from erroring the Travis CI build.
- for dir in $(find . -maxdepth 1 -type d -a ! -name .\*); do [ -e $dir/package.json ] && (cd $dir && npm install --no-save --no-package-lock && echo $dir) || echo $dir; done
- npm install --no-save --no-package-lock
- npm install -g istanbul coveralls
| Install with NPM 5 on Travis CI. | Install with NPM 5 on Travis CI.
| YAML | mit | bigeasy/nascent,bigeasy/nascent |
4477bab1aa049d014846cc9ae3e2a5b2690e6520 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
gemfile:
- gemfiles/Gemfile.rails-4.2-stable
- gemfiles/Gemfile.rails-4.1-stable
- gemfiles/Gemfile.rails-4.0-stable
- gemfiles/Gemfile.rails-3.2-stable
- Gemfile
matrix:
exclude:
- rvm: 2.2
gemfile: gemfiles/Gemfile.rails-3.2-stable
services:
- mongodb
sudo: false
cache: bundler
env:
matrix:
- DEVISE_ORM=mongoid
- DEVISE_ORM=active_record
before_install: "rm ${BUNDLE_GEMFILE}.lock"
before_script: "bundle update"
script: "bundle exec rake test"
notifications:
email: false
campfire:
on_success: change
on_failure: always
rooms:
- secure: "TRiqvuM4i/QmRDWjUSNitE5/P91BOzDkNl53+bZjjtxcISCswZtmECWBR7n9\n3xwqCOU1o2lfohxZ32OHOj/Nj7o+90zWJfWxcv+if0hIXRiil62M5pg0lZUd\nyJ4M5VQ0lSWo5he1OUrXhSabPJeaK3B8yT/tdh+qO5yzR+vb/jc="
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
gemfile:
- gemfiles/Gemfile.rails-4.2-stable
- gemfiles/Gemfile.rails-4.1-stable
- gemfiles/Gemfile.rails-4.0-stable
- gemfiles/Gemfile.rails-3.2-stable
- Gemfile
matrix:
exclude:
- rvm: 2.2
gemfile: gemfiles/Gemfile.rails-3.2-stable
services:
- mongodb
sudo: false
cache: bundler
env:
matrix:
- DEVISE_ORM=mongoid
- DEVISE_ORM=active_record
before_install: "rm ${BUNDLE_GEMFILE}.lock"
before_script: "bundle update"
script: "bundle exec rake test"
notifications:
email: false
slack:
on_success: change
on_failure: always
secure: Q3M+kmude3FjisibEeeGe0wSMXgvwLH+vL7Zrx9//q4QtkfnrQ/BBMvY9KXxPEsNF+eys4YopYjTkJ8uRmeboUATW/oQ4Jrv3+u3zkIHK2sFn/Q2cQWpK5w+CbgEnHPjKYnUu34b09njXTgDlr/mqtbPqrKeZ1dLlpKXCB/q4GY=
| Update Travis CI notification settings. | Update Travis CI notification settings.
| YAML | mit | plataformatec/devise,fjg/devise,ngpestelos/devise,Qwiklabs/devise,hauledev/devise,rubyrider/devise,leonardoprg/devise,leonardoprg/devise,sespindola/devise,twalpole/devise,hauledev/devise,bolshakov/devise,stanhu/devise,rubyrider/devise,twalpole/devise,sespindola/devise,hauledev/devise,sespindola/devise,stanhu/devise,ngpestelos/devise,Qwiklabs/devise,twalpole/devise,bolshakov/devise,plataformatec/devise,jnappy/devise,fjg/devise,rubyrider/devise,jnappy/devise |
d69189b66f2821ea539f1cdc7e4814e2360d8405 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
notifications:
email:
on_success: never
| language: node_js
node_js:
- 0.6
- 0.7
notifications:
email:
on_success: never
| Test with node v0.7.x as well. | Test with node v0.7.x as well.
Signed-off-by: Nick Campbell <e31591b49bf5c9127aafb098f2b9d466891b32f9@gmail.com>
| YAML | mit | DJMcK/node.bcrypt.js,nullivex/node.bcrypt.js,nullivex/node.bcrypt.js,DJMcK/node.bcrypt.js,greyhwndz/node.bcrypt.js,ksmyth/node.bcrypt.js,kelektiv/node.bcrypt.js,ncb000gt/node.bcrypt.js,kelektiv/node.bcrypt.js,kelektiv/node.bcrypt.js,DJMcK/node.bcrypt.js,listepo/node.bcrypt.js,greyhwndz/node.bcrypt.js,greyhwndz/node.bcrypt.js,ksmyth/node.bcrypt.js,nullivex/node.bcrypt.js,listepo/node.bcrypt.js,DJMcK/node.bcrypt.js,kelektiv/node.bcrypt.js,greyhwndz/node.bcrypt.js,linalu1/node.bcrypt.js,ncb000gt/node.bcrypt.js,linalu1/node.bcrypt.js,ksmyth/node.bcrypt.js,listepo/node.bcrypt.js,listepo/node.bcrypt.js,linalu1/node.bcrypt.js,linalu1/node.bcrypt.js,ncb000gt/node.bcrypt.js,kelektiv/node.bcrypt.js,ncb000gt/node.bcrypt.js,nullivex/node.bcrypt.js,ksmyth/node.bcrypt.js |
81cc2e16e13b8f8019a2109678f2d98b9abef2ed | packages/ps/PSQueue.yaml | packages/ps/PSQueue.yaml | homepage: ''
changelog-type: ''
hash: 188b45e7cca61d59df13a0a24eaa259b54eaedbafc639bef519e5f38d718fd3e
test-bench-deps: {}
maintainer: Scott E. Dillard <sedillard@gmail.com>
synopsis: Priority Search Queue
changelog: ''
basic-deps:
base: ! '>=4 && <4.11'
all-versions:
- '1.0'
- '1.1'
author: Ralf Hinze
latest: '1.1'
description-type: haddock
description: ! 'A /priority search queue/ efficiently supports the
opperations of both a search tree and a priority queue. A
''Binding'' is a product of a key and a priority. Bindings
can be inserted, deleted, modified and queried in
logarithmic time, and the binding with the least priority
can be retrieved in constant time. A queue can be built
from a list of bindings, sorted by keys, in linear time.'
license-name: BSD-3-Clause
| homepage: ''
changelog-type: markdown
hash: 0eb84220799c95fd7ec05b2f3ba1a673ac24a8200a79be1666233852a8d346c6
test-bench-deps: {}
maintainer: Hackage Trustees <trustees@hackage.haskell.org>
synopsis: Priority Search Queue
changelog: |
### 1.1.0.1
- Maintenance release
- Add support for `base-4.11.0.0`
- Fix link to ICFP paper
- Modernise packaging
basic-deps:
base: ! '>=4.3 && <4.13'
all-versions:
- '1.0'
- '1.1'
- 1.1.0.1
author: Ralf Hinze
latest: 1.1.0.1
description-type: haddock
description: |-
A /priority search queue/ efficiently supports the
opperations of both a search tree and a priority queue. A
'Binding' is a product of a key and a priority. Bindings
can be inserted, deleted, modified and queried in
logarithmic time, and the binding with the least priority
can be retrieved in constant time. A queue can be built
from a list of bindings, sorted by keys, in linear time.
license-name: BSD-3-Clause
| Update from Hackage at 2019-01-12T20:02:45Z | Update from Hackage at 2019-01-12T20:02:45Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1f9235be3ba82bb76b21801df586a269d89ac590 | packages/sh/shake-c.yaml | packages/sh/shake-c.yaml | homepage: ''
changelog-type: markdown
hash: 911638f77045983e879b6fc834418b392f1b20a42d67683527c67ae354c44dc4
test-bench-deps: {}
maintainer: vanessa.mchale@iohk.io
synopsis: Library for building C code with shake
changelog: |
# shake-c
## 0.4.3.0
* Add `preprocessA` and `preprocessR`
* Add `TCC` constructor for `CCompiler` data type
## 0.4.2.0
* Do not use oracles; they cause problems
## 0.4.1.0
* Add `idOracle`
* Exported rules now use oracles
basic-deps:
shake: ! '>=0.14'
composition-prelude: -any
base: ! '>=4.3 && <5'
cdeps: -any
all-versions:
- 0.1.0.0
- 0.3.0.0
- 0.4.0.0
- 0.4.2.0
- 0.4.3.0
author: Vanessa McHale
latest: 0.4.3.0
description-type: markdown
description: |
# shake-c
Library for building C libraries and binaries using
[shake](http://hackage.haskell.org/package/shake).
license-name: BSD-3-Clause
| homepage: ''
changelog-type: markdown
hash: 5379e277c4eca581d58f7d3f5fb7265e2f5eb2d460e051f08c73e99a90a88f8d
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: Library for building C code with shake
changelog: |
# shake-c
## 0.4.4.0
* Add `Pgi` constructor
## 0.4.3.0
* Add `preprocessA` and `preprocessR`
* Add `TCC` constructor for `CCompiler` data type
## 0.4.2.0
* Do not use oracles; they cause problems
## 0.4.1.0
* Add `idOracle`
* Exported rules now use oracles
basic-deps:
shake: '>=0.14'
composition-prelude: -any
base: '>=4.3 && <5'
cdeps: -any
all-versions:
- 0.1.0.0
- 0.3.0.0
- 0.4.0.0
- 0.4.2.0
- 0.4.3.0
- 0.4.4.0
author: Vanessa McHale
latest: 0.4.4.0
description-type: markdown
description: |
# shake-c
Library for building C libraries and binaries using
[shake](http://hackage.haskell.org/package/shake).
license-name: BSD-3-Clause
| Update from Hackage at 2020-07-26T19:20:04Z | Update from Hackage at 2020-07-26T19:20:04Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a25c7c2907b54e6f6d6aec09bf4fe9398aa4cbd4 | _config.yml | _config.yml | # Harmony Jekyll theme general configuration
markdown: redcarpet
pygments: true
# Base URL
baseurl: /harmony
# Site URL
url: http://webcreate.lk/harmony
exclude:
- CNAME
- Gemfile
- Rakefile
- README.md
- .gitignore
# Harmony theme configuration. Please change accordingly.
harmony:
name: Harmony #Name of your site
description: Harmony is free responsive jekyll theme. # Little description about your site
author: # Author details
name: Gayan Virajith
email: gayanvirajith@gmail.com
url: http://gayanvirajith.github.io
# Google Analytics key, leave blank to ignore
google_analytics_key: UA-xxxx-x
# Profile links, leave blank to ignore
social:
github: gayanvirajith
#twitter: gayanvirajith
#facebook: gayanvirajith
#gplus: 110552447039675960964
#dribble: gayanvirajith
pinterest: gayanvirajith
| # Harmony Jekyll theme general configuration
markdown: redcarpet
pygments: true
# Base URL
baseurl: /harmony
# Site URL
url: http://webcreate.lk/harmony
exclude:
- CNAME
- Gemfile
- Rakefile
- README.md
- .gitignore
# Harmony theme configuration. Please change accordingly.
harmony:
name: Harmony #Name of your site
description: Harmony is free responsive jekyll theme. # Little description about your site
author: # Author details
name: Gayan Virajith
email: gayanvirajith@gmail.com
url: http://gayanvirajith.github.io
# Google Analytics key, leave blank to ignore
google_analytics_key: UA-xxxx-x
# Profile links, leave blank to ignore
social:
github: gayanvirajith
#twitter: gayanvirajith
#facebook: gayanvirajith
#gplus: 110552447039675960964
dribble: gayanvirajith
pinterest: gayanvirajith
| Check build failures after uncomment dribble property | Check build failures after uncomment dribble property
| YAML | mit | charlyraffellini/harmony,sarnthil/harmony,Cawhee/harmony,jackMilano/jackmilano.github.io,zhanghaowx/Blog-Escape,eek/eek.github.io,DarkManiel/harmony,abhilashhb/harmony,kri5/blog.kri5.fr,mnzr/blog,be9/blog-eng,kamiljsokolowski/kamiljsokolowski.github.io,gayanvirajith/harmony,jakerobers/jakerobers.github.io,namul/namul.github.io,abhilashhb/harmony,mythfish/mythifsh.github.io,jnak/jnak.github.io,marytal/harmony,marytal/harmony,gayanvirajith/harmony,jakerobers/jakerobers.github.io,marytal/harmony,mnzr/blog,beeva-luisgonzalez/beeva-luisgonzalez.github.io,Cawhee/harmony,cursorzz/cursorzz.github.io,cursorzz/cursorzz.github.io,DarkManiel/harmony,jarofghosts/jarofghosts.github.io,sarnthil/harmony,zhanghaowx/Blog-Escape,sokolowskik/sokolowskik.github.io,brossetti1/brossetti1.github.io,cpury/cpury.github.io,duleorlovic/blog-eng,haixuanc/harmony,eek/eek.github.io,jarofghosts/jarofghosts.github.io,warmspringwinds/warmspringwinds.github.io,kri5/blog.kri5.fr,sarnthil/harmony,aayek/aayek.github.io,kamiljsokolowski/kamiljsokolowski.github.io,marytal/harmony,sokolowskik/sokolowskik.github.io,warmspringwinds/warmspringwinds.github.io,cursorzz/cursorzz.github.io,sokolowskik/sokolowskik.github.io,valo/valo.github.io,teals-sschs/teals-sschs.github.io,mythfish/mythifsh.github.io,be9/blog-eng,kri5/blog.kri5.fr,rpadovani/rpadovani.github.io,duleorlovic/blog-eng,brossetti1/brossetti1.github.io,swubb/swubb.github.io,aayek/aayek.github.io,warmspringwinds/warmspringwinds.github.io,jnak/jnak.github.io,valo/valo.github.io,charlyraffellini/harmony,mythfish/mythifsh.github.io,haixuanc/harmony,namul/namul.github.io,be9/blog-eng,zhanghaowx/Escape,dmouse/dmouse.github.io,cpury/cpury.github.io,dmouse/dmouse.github.io,DarkManiel/harmony,swubb/swubb.github.io,dmouse/dmouse.github.io,zhanghaowx/Escape,eek/eek.github.io,jakerobers/jakerobers.github.io,kamiljsokolowski/kamiljsokolowski.github.io,charlyraffellini/harmony,jackMilano/jackmilano.github.io,mnzr/blog,sokolowskik/sokolowskik.github.io,yuhuanq/yuhuanq.github.io,valo/valo.github.io,beeva-luisgonzalez/beeva-luisgonzalez.github.io,gayanvirajith/harmony,kamiljsokolowski/kamiljsokolowski.github.io,swubb/swubb.github.io,Cawhee/harmony,jackMilano/jackmilano.github.io,abhilashhb/harmony,jarofghosts/jarofghosts.github.io,namul/namul.github.io,zhanghaowx/Escape,rpadovani/rpadovani.github.io,zhanghaowx/Blog-Escape,cpury/cpury.github.io,duleorlovic/blog-eng,aayek/aayek.github.io,teals-sschs/teals-sschs.github.io,brossetti1/brossetti1.github.io,teals-sschs/teals-sschs.github.io |
9b13f5e4891904134a75b8bcfa7db1bfbaba530d | _config.yml | _config.yml | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: Jekyll Marlene
tagline: Starter template to Jekyll
url: https://github.com/filipelinhares/jekyll-marlene
paginate: 1
baseurl: ""
# Assets
#
# We specify the directory for Jekyll so we can use @imports.
sass:
sass_dir: _sass
style: :compressed
# About/contact
author:
name: Filipe Linhares
url: https://twitter.com/ofilipelinhares
email: filipelinhares@outlook.com
# Custom vars
version: 1.0.0
github:
repo: https://github.com/filipelinhares/jekyll-marlene
| # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
# Setup
title: Jekyll Marlene
tagline: Starter template to Jekyll
url: https://github.com/filipelinhares/jekyll-marlene
paginate: 1
baseurl: ""
# Assets
#
# We specify the directory for Jekyll so we can use @imports.
sass:
sass_dir: _sass
style: :compressed
# About/contact
author:
name: Filipe Linhares
url: https://twitter.com/ofilipelinhares
email: filipelinhares@outlook.com
# Custom vars
version: 1.0.0
github:
repo: https://github.com/filipelinhares/jekyll-marlene
# Gems
gems: [jekyll-paginate]
| Fix pagination deprecate and permalink upgrade | Fix pagination deprecate and permalink upgrade
| YAML | mit | filipelinhares/jekyll-marlene |
44ad1aba38a8e3be2165d0b610c5ac1f22f453a1 | _config.yml | _config.yml | # Site settings
title: Your awesome title
email: your-email@domain.com
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://yourdomain.com" # the base hostname & protocol for your site
twitter_username: jekyllrb
github_username: jekyll
# Build settings
markdown: kramdown
| # Site settings
title: Orlando Developers Wiki
email: jaxbot@gmail.com
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "/wiki/" # the subpath of your site, e.g. /blog/
url: "http://orlandodevelopers.github.io/wiki" # the base hostname & protocol for your site
twitter_username: jekyllrb
github_username: jekyll
# Build settings
markdown: kramdown
| Change base path and title | Change base path and title
| YAML | mit | OrlandoDevWiki/wiki |
3a45744c29945f9519b35ea37919667fef382242 | readthedocs.yml | readthedocs.yml | conda:
file: docs/environment.yml
# The default for requirements_file is null, but for some reason we get an error with this message if it's not set:
# "Problem parsing YAML configuration. Invalid "requirements_file": path docs/requirements.txt does not exist"
requirements_file: null
python:
version: 3.6
setup_py_install: true
| conda:
file: docs/environment.yml
# The default for requirements_file is null, but for some reason we get an error with this message if it's not set:
# "Problem parsing YAML configuration. Invalid "requirements_file": path docs/requirements.txt does not exist"
requirements_file: null
python:
version: 3.5
setup_py_install: true
| Revert to docs build for py 3.5 | Revert to docs build for py 3.5
| YAML | mit | choderalab/openmmtools,choderalab/openmmtools |
e7c7a5064c76537039c331ccc5a91c64ea1eb146 | templates/.travis.yml | templates/.travis.yml | language: node_js
sudo: false
notifications:
email: false
node_js:
- stable
branches:
only:
- master
script: npm test
compiler: clang-3.6
env:
- CCACHE_TEMPDIR=/tmp/.ccache-temp
- CCACHE_COMPRESS=1
- CC="clang"
- CXX="clang++"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-5-dev
| language: node_js
sudo: false
notifications:
email: false
node_js:
- stable
branches:
only:
- master
script: npm test
compiler: clang-3.6
env:
global:
- CCACHE_TEMPDIR=/tmp/.ccache-temp
- CCACHE_COMPRESS=1
- CC="clang"
- CXX="clang++"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-5-dev
| Fix env vars not being global | fix(templates): Fix env vars not being global
| YAML | mit | jhermsmeier/npm-create |
9d9ab8a459d95437fcb7b1d2b687e92872636178 | repository.yaml | repository.yaml | leakDetectionExemptions:
- ruleId: 'ip_addresses'
filePaths:
- '/src/test/scala/uk/gov/hmrc/bobby/domain/VersionSpec.scala'
repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
| repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
| Remove all leak detection exemptions | Remove all leak detection exemptions
| YAML | apache-2.0 | hmrc/sbt-bobby |
605d996322e55dff9b872f2a30ac5894c42f9406 | _bookdown.yml | _bookdown.yml | book_filename: "RProgrammingForResearch"
chapter_name: "Chapter "
rmd_files: ["index.Rmd", "00-course_info.Rmd", "01-prelim.Rmd", "vocabulary.Rmd", "homework.Rmd"]
repo: https://github.com/geanders/RProgrammingForResearch/
edit:
link: https://github.com/geanders/RProgrammingForResearch/edit/master/%s
text: "Edit"
output_dir: _book
clean: ["packages.bib", "RProgrammingForResearch.bbl"]
| book_filename: "RProgrammingForResearch"
chapter_name: "Chapter "
rmd_files: ["index.Rmd", "00-course_info.Rmd", "01-prelim.Rmd", "vocabulary.Rmd", "homework.Rmd"]
repo: https://github.com/geanders/RProgrammingForResearch/
edit:
link: https://github.com/geanders/RProgrammingForResearch/edit/master/%s
text: "Edit"
output_dir: "docs"
clean: ["packages.bib", "RProgrammingForResearch.bbl"]
| Change book output to "docs" | Change book output to "docs"
| YAML | cc0-1.0 | geanders/RProgrammingForResearch,geanders/RProgrammingForResearch,geanders/RProgrammingForResearch |
15700ff43b35d340f40c27043e9acb0f4a45689e | dts/bindings/base/base.yaml | dts/bindings/base/base.yaml | title: base device binding
description: >
Binding for device
properties:
compatible:
type: string-array
category: required
description: compatible strings
reg:
type: array
description: register space
category: optional
reg-names:
type: string-array
description: name of each register space
category: optional
interrupts:
type: array
category: optional
description: interrupts for device
interrupt-names:
type: string-array
category: optional
description: name of each interrupt
label:
type: string
category: optional
description: Human readable string describing the device (used by Zephyr for API name)
clocks:
type: array
category: optional
description: Clock gate information
| title: base device binding
description: >
Binding for device
properties:
compatible:
type: string-array
category: required
description: compatible strings
reg:
type: array
description: register space
category: optional
reg-names:
type: string-array
description: name of each register space
category: optional
interrupts:
type: array
category: optional
description: interrupts for device
interrupt-names:
type: string-array
category: optional
description: name of each interrupt
label:
type: string
category: optional
description: Human readable string describing the device (used by Zephyr for API name)
clocks:
type: compound
category: optional
description: Clock gate information
| Change clock type to compound | dts/bindings: Change clock type to compound
The clock property should be a compound type as that matches uses like
FOO-gpios, pwms, etc.
Signed-off-by: Kumar Gala <a5e5248af4cd4f0ed8c515f61d40a6e2db46a66e@linaro.org>
| YAML | apache-2.0 | Vudentz/zephyr,zephyrproject-rtos/zephyr,zephyrproject-rtos/zephyr,galak/zephyr,Vudentz/zephyr,galak/zephyr,finikorg/zephyr,nashif/zephyr,finikorg/zephyr,Vudentz/zephyr,nashif/zephyr,zephyrproject-rtos/zephyr,zephyrproject-rtos/zephyr,nashif/zephyr,Vudentz/zephyr,Vudentz/zephyr,galak/zephyr,finikorg/zephyr,finikorg/zephyr,galak/zephyr,zephyrproject-rtos/zephyr,nashif/zephyr,Vudentz/zephyr,nashif/zephyr,finikorg/zephyr,galak/zephyr |
ed4a6845df31150ad5d7e68d7df7a5ec96864a59 | perfdash/deployment.yaml | perfdash/deployment.yaml | apiVersion: apps/v1
kind: Deployment
metadata:
name: perfdash
labels:
app: perfdash
spec:
selector:
matchLabels:
app: perfdash
template:
metadata:
labels:
app: perfdash
spec:
containers:
- name: perfdash
image: gcr.io/k8s-testimages/perfdash:2.33
command:
- /perfdash
- --www=true
- --dir=/www
- --address=0.0.0.0:8080
- --builds=100
- --githubConfigDir=https://api.github.com/repos/kubernetes/test-infra/contents/config/jobs/kubernetes/sig-scalability
- --githubConfigDir=https://api.github.com/repos/kubernetes/test-infra/contents/config/jobs/kubernetes/sig-release/release-branch-jobs
imagePullPolicy: Always
ports:
- name: status
containerPort: 8080
livenessProbe:
httpGet:
path: /
port: 8080
initialDelaySeconds: 10
timeoutSeconds: 1
resources:
requests:
cpu: "5"
memory: 20Gi
limits:
cpu: "5"
memory: 20Gi
restartPolicy: Always
| apiVersion: apps/v1
kind: Deployment
metadata:
name: perfdash
labels:
app: perfdash
spec:
selector:
matchLabels:
app: perfdash
template:
metadata:
labels:
app: perfdash
spec:
containers:
- name: perfdash
# Version 2.33 consumes > 32GiB of memory.
# TODO: Introduce 2.34 version which conditionally disables functionality added in 2.32 and disable it in this perf-dash instance.
image: gcr.io/k8s-testimages/perfdash:2.32
command:
- /perfdash
- --www=true
- --dir=/www
- --address=0.0.0.0:8080
- --builds=100
- --githubConfigDir=https://api.github.com/repos/kubernetes/test-infra/contents/config/jobs/kubernetes/sig-scalability
- --githubConfigDir=https://api.github.com/repos/kubernetes/test-infra/contents/config/jobs/kubernetes/sig-release/release-branch-jobs
imagePullPolicy: Always
ports:
- name: status
containerPort: 8080
livenessProbe:
httpGet:
path: /
port: 8080
initialDelaySeconds: 10
timeoutSeconds: 1
resources:
requests:
cpu: "3"
memory: 10Gi
limits:
cpu: "3"
memory: 10Gi
restartPolicy: Always
| Revert "Upgrade perfdash to 2.33" | Revert "Upgrade perfdash to 2.33"
| YAML | apache-2.0 | kubernetes/perf-tests,kubernetes/perf-tests,kubernetes/perf-tests,kubernetes/perf-tests,kubernetes/perf-tests |
5351e0184b260f40b79b521b374b4a1fb31ce2cf | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push]
jobs:
all:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 11
- name: install
run: npm install
- name: lint
run: npm run lint
- name: test
run: npm test
- uses: primer/publish@v1.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
| name: CI
on: [push]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@master
- name: Set up Node.js 12.x
uses: actions/setup-node@master
with:
node-version: 12
- name: Install dependencies
run: npm install
- name: Test
run: npm test
- name: Create .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
env:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Release snapshot
run: |
yarn changeset version --snapshot
yarn changeset publish --tag canary
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| Set up CI to use changesets | Set up CI to use changesets
| YAML | mit | primer/stylelint-config-primer |
83791b9331058a1f0f3d5853df5dbe441f68cc6d | .github/workflows/ci.yml | .github/workflows/ci.yml | name: tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# We try to go with the currently active Python branches:
# https://devguide.python.org/#status-of-python-branches
python-version: [3.7, 3.8, 3.9, 3.10]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run unit tests
run: |
pip install -r dev-requirements.txt
pytest --cov=pyrpm.spec
- name: Check for type errors
run: |
pip install -r dev-requirements.txt
pytest --mypy
- name: Run linter
run: |
pip install -r dev-requirements.txt
pylint --rcfile=.pylintrc pyrpm
| name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# We try to go with the currently active Python branches:
# https://devguide.python.org/#status-of-python-branches
python-version: [3.7, 3.8, 3.9, 3.10]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run unit tests
run: |
pip install -r dev-requirements.txt
pytest --cov=pyrpm.spec
- name: Check for type errors
run: |
pip install -r dev-requirements.txt
pytest --mypy
- name: Run linter
run: |
pip install -r dev-requirements.txt
pylint --rcfile=.pylintrc pyrpm
| Fix branch names in GH Action | CI: Fix branch names in GH Action
| YAML | mit | bkircher/python-rpm-spec |
74d3a02dc82412c692f18df048c592d127dd3fbf | .github/workflows/ci.yml | .github/workflows/ci.yml | # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
push:
branches: [ github-actions ]
pull_request:
branches: [ github-actions ]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Check out the repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1.39.0
with:
ruby-version: '2.6'
- name: Install Gems
run: bundle install
- name: Increment Build Number
run: ./gradlew incrementBuildNumber
| # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
push:
branches: [ github-actions ]
pull_request:
branches: [ github-actions ]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Check out the repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1.39.0
with:
ruby-version: '2.6'
- name: Install Gems
run: bundle install
- name: Increment Build Number
run: ./gradlew incrementBuildNumber
- name: Assemble Debug
run: ./gradlew clean assembleDebug
- name: Run Unit Tests
run: ./gradlew testDebugUnitTest
- name: Extract Version Number
run: echo 'To Do Extract Version Number'
- name: Deploy Dev
run: echo 'To Do Deploy Dev'
- name: Commit Version Number
run: echo 'To Do Commit Version Number'
| Add some of the missing GA steps | Add some of the missing GA steps | YAML | apache-2.0 | jguerinet/MyMartlet,jguerinet/MyMartlet,jguerinet/MyMartlet,jguerinet/MyMartlet |
44307d9a4655e3e400c99ac2058ab64107c22158 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Continuous Integration
on: ['push', 'pull_request']
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.2, 7.3, 7.4]
dependency-version: [prefer-lowest, prefer-stable]
name: CI - PHP ${{ matrix.php }} (${{ matrix.dependency-version }})
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, zip
tools: prestissimo
coverage: pcov
- name: Install Composer dependencies
run: composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist --no-suggest
- name: PHPStan Analysis
run: vendor/bin/phpstan analyse
- name: PHPUnit Testing
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
| name: Continuous Integration
on: ['push', 'pull_request']
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.2, 7.3, 7.4]
dependency-version: [prefer-lowest, prefer-stable]
name: CI - PHP ${{ matrix.php }} (${{ matrix.dependency-version }})
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
restore-keys: |
dependencies-php-${{ matrix.php }}-composer-
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, zip
tools: prestissimo
coverage: pcov
- name: Install Composer dependencies
run: composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist --no-suggest
- name: PHPStan Analysis
run: vendor/bin/phpstan analyse
- name: PHPUnit Testing
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
| Update to v2 of actions/cache action | Update to v2 of actions/cache action | YAML | mit | laravel-zero/framework |
26cb667ad66ca69de2b752b13ba88547713c0664 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: ci
on: [push, pull_request]
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.5, 2.6, 2.7, '3.0', head, jruby, jruby-head]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake
| name: ci
on: [push, pull_request]
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.5, 2.6, 2.7, '3.0', '3.1', head, jruby, jruby-head]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake
| Test on Ruby 3.1 as well | Test on Ruby 3.1 as well
| YAML | mit | fbernier/tomlrb,fbernier/tomlrb |
fe14e7881c6d25efd64c24cc68d5ebab6ac37f4d | .github/workflows/go.yml | .github/workflows/go.yml | name: Go
on:
push:
branches:
- '**'
- '!main'
pull_request:
branches: [ main ]
jobs:
test:
name: Test Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.16
id: go
- name: Get dependencies
run: make get-dependencies
- name: Ensure that all files are properly formatted
run: |
FILES=$(gofmt -s -l .)
if [ -n "${FILES}" ]; then
printf "Following files are not formatted: \n%s" "$FILES"
exit 1
fi
- name: Go vet
run: make vet
- name: Test building
run: make build
- name: Run tests
run: make test
| name: Go
on:
pull_request:
branches: [ main ]
jobs:
test:
name: Test Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.16
id: go
- name: Get dependencies
run: make get-dependencies
- name: Ensure that all files are properly formatted
run: |
FILES=$(gofmt -s -l .)
if [ -n "${FILES}" ]; then
printf "Following files are not formatted: \n%s" "$FILES"
exit 1
fi
- name: Go vet
run: make vet
- name: Test building
run: make build
- name: Run tests
run: make test
| Disable CI on branches, only on PRs | Disable CI on branches, only on PRs
We do not use branches as such, only for feature development through PRs. | YAML | bsd-3-clause | open-source-firmware/go-tcg-storage |
7f46062e3587561b788388344c5d87cd23db1947 | .github/workflows/run-tests.yml | .github/workflows/run-tests.yml | name: Run Tests
on:
push:
branches: [ main ]
pull_request:
jobs:
tests:
strategy:
matrix:
os: [Ubuntu, macOS]
php: [7.2, 7.3, 7.4, 8.0]
include:
- os: Ubuntu
os-version: ubuntu-latest
- os: macOS
os-version: macos-latest
name: ${{ matrix.os }} - PHP ${{ matrix.php }}
runs-on: ${{ matrix.os-version }}
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: posix, dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Install dependencies
run: composer update --prefer-stable --prefer-dist --no-interaction --no-suggest --ignore-platform-reqs
- name: Run PHP tests
run: vendor/bin/phpunit | name: Run Tests
on:
push:
branches: [ main ]
pull_request:
jobs:
tests:
strategy:
matrix:
os: [Ubuntu, macOS]
php: [7.3, 7.4, 8.0]
include:
- os: Ubuntu
os-version: ubuntu-latest
- os: macOS
os-version: macos-latest
name: ${{ matrix.os }} - PHP ${{ matrix.php }}
runs-on: ${{ matrix.os-version }}
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: posix, dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Install dependencies
run: composer update --prefer-stable --prefer-dist --no-interaction --no-suggest --ignore-platform-reqs
- name: Run PHP tests
run: vendor/bin/phpunit
| Remove support for php 7.2 | build: Remove support for php 7.2
| YAML | mit | tightenco/lambo |
ea6863df48e99855b6bad2d777f08fa44b34b1d5 | .github/workflows/run_tests.yml | .github/workflows/run_tests.yml | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', pypy3]
exclude:
- os: macos-latest
python-version: pypy3
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -r requirements-test.txt
- name: Test with pytest
run: |
pytest
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, '3.10', 'pypy3.10']
exclude:
- os: macos-latest
python-version: pypy3
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -r requirements-test.txt
- name: Test with pytest
run: |
pytest
| Drop python3.6 from test matrix and use pypy3.10 | Drop python3.6 from test matrix and use pypy3.10
| YAML | apache-2.0 | harlowja/fasteners |
8ba054f56d1656ea2da9cb11b28970d615d3a064 | .install.conf.yaml | .install.conf.yaml | - clean:
- '~'
- '~/.config'
- '~/.config/i3'
- '~/.config/i3status'
- link:
~/.config/fish:
create: true
path: fish/
~/.config/git/config:
create: true
path: git/config
~/.config/git/ignore_global:
create: true
path: git/ignore_global
~/.config/i3/config:
create: true
path: i3/config
~/.config/i3status/config:
create: true
path: i3/i3status.conf
~/.config/nvim:
create: true
path: nvim/
~/.dotfiles: ''
~/.pam_environment: pam_environment
~/.spectrwm.conf: spectrwm.conf
~/.tmux.conf: tmux.conf
- shell:
- git submodule update --init --recursive # Update submodules
| - clean:
- '~'
- '~/.config'
- '~/.config/git'
- '~/.config/i3'
- '~/.config/i3status'
- link:
~/.config/fish:
create: true
path: fish/
~/.config/git/config:
create: true
path: git/config
~/.config/git/ignore_global:
create: true
path: git/ignore_global
~/.config/i3/config:
create: true
path: i3/config
~/.config/i3status/config:
create: true
path: i3/i3status.conf
~/.config/nvim:
create: true
path: nvim/
~/.dotfiles: ''
~/.pam_environment: pam_environment
~/.spectrwm.conf: spectrwm.conf
~/.tmux.conf: tmux.conf
- shell:
- git submodule update --init --recursive # Update submodules
| Add the new git folder to the clean list | Add the new git folder to the clean list
| YAML | unlicense | KibaFox/dotfiles,KibaFox/dotfiles,KibaFox/dotfiles,KibaFox/dotfiles,KibaFox/dotfiles |
ad8c50e78eb707fc833f70d8705f7cc887302f20 | .github/workflows/ant.yml | .github/workflows/ant.yml | name: Java CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- uses: ./.github/actions/local-s3
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Ant
run: ant -noinput -buildfile build.xml dist
- name: GWT build
run: ant -noinput -buildfile build.xml gwtc
- name: Run tests
timeout-minutes: 90
run: ant -noinput -buildfile build.xml test
- name: Reproducible build
run: ./reproducible-test.sh
| name: Java CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- uses: ./.github/actions/local-s3
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Ant
run: ant -noinput -buildfile build.xml dist
- name: GWT build
run: ant -noinput -buildfile build.xml gwtc
- name: Run tests
timeout-minutes: 90
run: ant -noinput -buildfile build.xml test
- name: Reproducible build
run: ./reproducible-test.sh
| Disable MacOS CI again (all are passing except S3USerTests) | Disable MacOS CI again (all are passing except S3USerTests)
| YAML | agpl-3.0 | Peergos/Peergos,Peergos/Peergos,Peergos/Peergos |
84772c40ebcfdf49bf1d6cba56d8407516d5479c | Configuration/Settings.Mvc.yaml | Configuration/Settings.Mvc.yaml | #
# MVC configuration for the Flow Framework
#
Neos:
Flow:
mvc:
# Defines routes that should be included after existing routes defined in the main Routes.yaml (if any)
# Note: This only allows to include existing Routes.yaml files from other packages, you can't adjust the routes via Settings.
#
# Syntax:
# 'Some.Package': true
# 'SomeOther.Package':
# position: 'after Some.Package'
#
routes: []
view:
defaultImplementation: Neos\Flow\Mvc\View\SimpleTemplateView
flashMessages:
# Defines FlashMessage "namespaces" with custom storage implementations
#
# The only required option is the "storage" class name, which has to implement the FlashMessageStorageInterface
# "storageOptions" can be passed, i.e. to change the "sessionKey" that is used to persist FlashMessages
#
# By default, the FlashMessages are stored in a session cookie, but this can be changed here:
containers:
'default':
position: 'end'
storage: 'Neos\Flow\Mvc\FlashMessage\Storage\FlashMessageCookieStorage'
# Custom FlashMessage containers can be added here:
# Example:
# 'customFlashMessages':
# storage: 'Neos\Flow\Mvc\FlashMessage\Storage\FlashMessageCookieStorage'
# storageOptions:
# cookieName: 'Neos_Flow_FlashMessages_My_Custom'
# requestPatterns:
# 'SomeControllers':
# pattern: 'ControllerObjectName'
# patternOptions:
# 'controllerObjectNamePattern': 'Some\Package\Controller\.*'
| #
# MVC configuration for the Flow Framework
#
Neos:
Flow:
mvc:
# Defines routes that should be included after existing routes defined in the main Routes.yaml (if any)
# Note: This only allows to include existing Routes.yaml files from other packages, you can't adjust the routes via Settings.
#
# Syntax:
# 'Some.Package': true
# 'SomeOther.Package':
# position: 'after Some.Package'
#
routes: []
view:
defaultImplementation: Neos\Flow\Mvc\View\SimpleTemplateView
flashMessages:
# Defines FlashMessage "namespaces" with custom storage implementations
#
# The only required option is the "storage" class name, which has to implement the FlashMessageStorageInterface
# "storageOptions" can be passed, i.e. to change the "sessionKey" that is used to persist FlashMessages
#
# By default, the FlashMessages are stored in a session cookie, but this can be changed here:
containers:
'default':
position: 'end'
storage: 'Neos\Flow\Mvc\FlashMessage\Storage\FlashMessageSessionStorage'
# Custom FlashMessage containers can be added here:
# Example:
# 'customFlashMessages':
# storage: 'Neos\Flow\Mvc\FlashMessage\Storage\FlashMessageCookieStorage'
# storageOptions:
# cookieName: 'Neos_Flow_FlashMessages_My_Custom'
# requestPatterns:
# 'SomeControllers':
# pattern: 'ControllerObjectName'
# patternOptions:
# 'controllerObjectNamePattern': 'Some\Package\Controller\.*'
| Change default flash message storage to session | BUGFIX: Change default flash message storage to session | YAML | mit | neos/flow,neos/flow,neos/flow,neos/flow |
e0d57bcab3a6214d3b36fc4fae860ae73009dee9 | recipes/pyflakes/meta.yaml | recipes/pyflakes/meta.yaml | {%set name = "pyflakes" %}
{%set version = "1.3.0" %}
{%set hash_type = "sha256" %}
{%set hash_val = "a4f93317c97a9d9ed71d6ecfe08b68e3de9fea3f4d94dcd1d9d83ccbf929bc31" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash_val }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- {{ name }}
about:
home: https://github.com/PyCQA/pyflakes
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'Pyflakes analyzes programs and detects various errors.'
dev_url: https://github.com/PyCQA/pyflakes
| {%set name = "pyflakes" %}
{%set version = "1.5.0" %}
{%set hash_type = "sha256" %}
{%set hash_val = "aa0d4dff45c0cc2214ba158d29280f8fa1129f3e87858ef825930845146337f4" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash_val }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- {{ name }}
about:
home: https://github.com/PyCQA/pyflakes
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'Pyflakes analyzes programs and detects various errors.'
dev_url: https://github.com/PyCQA/pyflakes
| Update pyflakes recipe to version 1.5.0 | Update pyflakes recipe to version 1.5.0
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
4582c51d8ee3d2123f84c18cfaaff7b1d752ce8a | recipes/pyserial/meta.yaml | recipes/pyserial/meta.yaml | {% set name = "pyserial" %}
{% set version = "3.3" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 2949cddffc2b05683065a3cd2345114b1a49b08df8cb843d69ba99dc3e19edc2
build:
number: 0
noarch: python
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- serial
about:
home: https://github.com/pyserial/pyserial
license: PSF
license_file: LICENSE.txt
summary: Python serial port access library
description: |
pySerial encapsulates the access for the serial port. It provides backends
for Python running on Windows, OSX, Linux, BSD (possibly any POSIX
compliant system) and IronPython. The module named "serial" automatically
selects the appropriate backend.
doc_url: https://pythonhosted.org/pyserial/
dev_url: https://github.com/pyserial/pyserial
| {% set name = "pyserial" %}
{% set version = "3.4" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 6e2d401fdee0eab996cf734e67773a0143b932772ca8b42451440cfed942c627
build:
number: 0
noarch: python
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- serial
about:
home: https://github.com/pyserial/pyserial
license: PSF
license_file: LICENSE.txt
summary: Python serial port access library
description: |
pySerial encapsulates the access for the serial port. It provides backends
for Python running on Windows, OSX, Linux, BSD (possibly any POSIX
compliant system) and IronPython. The module named "serial" automatically
selects the appropriate backend.
doc_url: https://pythonhosted.org/pyserial/
dev_url: https://github.com/pyserial/pyserial
| Update pyserial to version 3.4 | Update pyserial to version 3.4
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
b31ffa7b362e9fe1368b68fcfc5218a2faf7a565 | recipes/sos-bash/meta.yaml | recipes/sos-bash/meta.yaml | {% set name = "sos-bash" %}
{% set version = "0.18.1" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 9b38514b0a7b8385c924aaa994dee326681bc09f9497a153dcff091aa89b2d05
build:
skip: true [win]
number: 0
script:
- {{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv
requirements:
host:
- pip
- python >=3.6
run:
- sos-notebook >=0.19.4
- bash
- bash_kernel
test:
requires:
- nose
- pytest
- selenium
imports:
- sos_bash
about:
home: https://github.com/vatlab/sos-bash
license: BSD
license_family: BSD
license_file: LICENSE
summary: "SoS language module for bash"
doc_url: https://vatlab.github.io/sos-docs/
dev_url: https://github.com/vatlab/sos-bash
extra:
recipe-maintainers:
- BoPeng
| {% set name = "sos-bash" %}
{% set version = "0.18.1" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 9b38514b0a7b8385c924aaa994dee326681bc09f9497a153dcff091aa89b2d05
build:
noarch: python
number: 0
script:
- {{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv
requirements:
host:
- pip
- python >=3.6
run:
- sos-notebook >=0.19.4
- bash
- bash_kernel
- python >=3.6
test:
requires:
- nose
- pytest
- selenium
imports:
- sos_bash
about:
home: https://github.com/vatlab/sos-bash
license: BSD
license_family: BSD
license_file: LICENSE
summary: "SoS language module for bash"
doc_url: https://vatlab.github.io/sos-docs/
dev_url: https://github.com/vatlab/sos-bash
extra:
recipe-maintainers:
- BoPeng
| Add python as runtime dependency, and add noarch:python | Add python as runtime dependency, and add noarch:python
| YAML | bsd-3-clause | mariusvniekerk/staged-recipes,Juanlu001/staged-recipes,ocefpaf/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,hadim/staged-recipes,patricksnape/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,isuruf/staged-recipes,johanneskoester/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,stuertz/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,SylvainCorlay/staged-recipes,ReimarBauer/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,petrushy/staged-recipes,Juanlu001/staged-recipes,ocefpaf/staged-recipes,dschreij/staged-recipes,igortg/staged-recipes,synapticarbors/staged-recipes,patricksnape/staged-recipes,mariusvniekerk/staged-recipes,SylvainCorlay/staged-recipes,chrisburr/staged-recipes,birdsarah/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,mcs07/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,scopatz/staged-recipes,asmeurer/staged-recipes,ReimarBauer/staged-recipes,asmeurer/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,synapticarbors/staged-recipes,mcs07/staged-recipes,isuruf/staged-recipes |
4d60932d038fd59ece8e2fa695d0b58001a4db20 | python/defaults/main.yml | python/defaults/main.yml | ---
### basic settings, role internal configuration
### service or site name
# used as default for a number of things, eg. venv, install dir, hostname, ...
# override this in you playbook for the service/site
service_name: "service"
### system configuration, library, service, ... feature switches
# use python3 instead of python2, which is default
use_python3: False
# alternatively setup pyenv and install python according to python-version
use_pyenv: False
## library/dependency feature flags
# install gettext and makepasswd
support_django: True
# is required by requests via pyopenssl
support_cryptography: True
# install image processing libraries
support_pillow: False
# install lxml headers
support_lxml: False
# install mysql client headers (not a database server!)
support_mysql: False
# install support for CFFI
support_cffi: True
# install enchant for sphinx spellcheck
support_sphinx: False
# install libraries for weasyprint
support_weasyprint: False
### directory structure, filesystem layout
# used for logs and virtualenv owner
service_user: "root"
service_group: "root"
# path to code root, where the django site module lives
source_path: "/vagrant"
venvs_path: "/opt/pyenv"
virtualenv_path: "{{ venvs_path }}/versions/{{ service_name }}"
| ---
### basic settings, role internal configuration
### service or site name
# used as default for a number of things, eg. venv, install dir, hostname, ...
# override this in you playbook for the service/site
service_name: "service"
### system configuration, library, service, ... feature switches
# use python3 instead of python2, which is default
use_python3: False
# alternatively setup pyenv and install python according to python-version
use_pyenv: False
## library/dependency feature flags
# install gettext and makepasswd
support_django: True
# is required by requests via pyopenssl
support_cryptography: True
# install image processing libraries
support_pillow: False
# install lxml headers
support_lxml: False
# install mysql client headers (not a database server!)
support_mysql: False
# install support for CFFI
support_cffi: True
# install enchant for sphinx spellcheck
support_sphinx: False
# install libraries for weasyprint
support_weasyprint: False
### directory structure, filesystem layout
# used for logs and virtualenv owner
service_user: "root"
service_group: "root"
# path to code root, where the django site module lives
source_path: "/vagrant"
venvs_path: "/var/virtualenvs"
virtualenv_path: "{{ venvs_path }}/{{ service_name }}"
# when using pyenv set something like this in the playbook:
#venvs_path: "/opt/pyenv"
#virtualenv_path: "{{ venvs_path }}/versions/{{ service_name }}"
| Revert defaults and add note about config in playbook (django role sets those defaults too) | Revert defaults and add note about config in playbook (django role sets those defaults too)
| YAML | mit | fdemmer/ansible_roles |
f77055a585b5e05d7afa28f2f0da35cb26c5c8d5 | recipes/docrep/meta.yaml | recipes/docrep/meta.yaml | {% set name = "docrep" %}
{% set version = "0.1.1" %}
{% set sha256 = "ede2317a6caa63b04197b69b0b511237236d9c27c962d0dfcd6ff7290b165d45" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
- six
run:
- python
- six
test:
imports:
- docrep
about:
home: https://github.com/Chilipp/docrep
license: GNU General Public License v2 (GPLv2)
license_family: GPL2
license_file: LICENSE
summary: 'Python package for docstring repetition'
description: |
The documentation repetition module (docrep) targets developpers that
develop complex and nested Python APIs and helps them to create a
well-documented software.
doc_url: http://docrep.readthedocs.io/
dev_url: https://github.com/Chilipp/docrep
extra:
recipe-maintainers:
- Chilipp
| {% set name = "docrep" %}
{% set version = "0.1.1" %}
{% set sha256 = "ede2317a6caa63b04197b69b0b511237236d9c27c962d0dfcd6ff7290b165d45" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
- six
run:
- python
- six
test:
imports:
- docrep
about:
home: https://github.com/Chilipp/docrep
license: GPLv2
license_family: GPL2
license_file: LICENSE
summary: 'Python package for docstring repetition'
description: |
The documentation repetition module (docrep) targets developpers that
develop complex and nested Python APIs and helps them to create a
well-documented software.
doc_url: http://docrep.readthedocs.io/
dev_url: https://github.com/Chilipp/docrep
extra:
recipe-maintainers:
- Chilipp
| Use the abbreviation (GPLv2) for the license | Use the abbreviation (GPLv2) for the license
| YAML | bsd-3-clause | jakirkham/staged-recipes,hadim/staged-recipes,gqmelo/staged-recipes,guillochon/staged-recipes,petrushy/staged-recipes,sannykr/staged-recipes,JohnGreeley/staged-recipes,jjhelmus/staged-recipes,hadim/staged-recipes,pmlandwehr/staged-recipes,benvandyke/staged-recipes,chohner/staged-recipes,rmcgibbo/staged-recipes,igortg/staged-recipes,patricksnape/staged-recipes,jjhelmus/staged-recipes,ceholden/staged-recipes,planetarypy/staged-recipes,asmeurer/staged-recipes,cpaulik/staged-recipes,glemaitre/staged-recipes,johanneskoester/staged-recipes,chrisburr/staged-recipes,larray-project/staged-recipes,larray-project/staged-recipes,petrushy/staged-recipes,sannykr/staged-recipes,chohner/staged-recipes,hbredin/staged-recipes,conda-forge/staged-recipes,blowekamp/staged-recipes,shadowwalkersb/staged-recipes,conda-forge/staged-recipes,sodre/staged-recipes,sodre/staged-recipes,planetarypy/staged-recipes,jochym/staged-recipes,glemaitre/staged-recipes,scopatz/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,barkls/staged-recipes,goanpeca/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,goanpeca/staged-recipes,jochym/staged-recipes,mcs07/staged-recipes,blowekamp/staged-recipes,asmeurer/staged-recipes,dschreij/staged-recipes,rmcgibbo/staged-recipes,rvalieris/staged-recipes,gqmelo/staged-recipes,NOAA-ORR-ERD/staged-recipes,stuertz/staged-recipes,cpaulik/staged-recipes,sodre/staged-recipes,jakirkham/staged-recipes,grlee77/staged-recipes,isuruf/staged-recipes,pmlandwehr/staged-recipes,chrisburr/staged-recipes,rvalieris/staged-recipes,hbredin/staged-recipes,grlee77/staged-recipes,koverholt/staged-recipes,basnijholt/staged-recipes,mcernak/staged-recipes,ReimarBauer/staged-recipes,birdsarah/staged-recipes,Juanlu001/staged-recipes,synapticarbors/staged-recipes,isuruf/staged-recipes,birdsarah/staged-recipes,NOAA-ORR-ERD/staged-recipes,dschreij/staged-recipes,mcs07/staged-recipes,SylvainCorlay/staged-recipes,basnijholt/staged-recipes,barkls/staged-recipes,JohnGreeley/staged-recipes,guillochon/staged-recipes,scopatz/staged-recipes,Cashalow/staged-recipes,shadowwalkersb/staged-recipes,benvandyke/staged-recipes,mcernak/staged-recipes,johanneskoester/staged-recipes,koverholt/staged-recipes,synapticarbors/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes,SylvainCorlay/staged-recipes,igortg/staged-recipes,ocefpaf/staged-recipes,Juanlu001/staged-recipes,Cashalow/staged-recipes,ceholden/staged-recipes,mariusvniekerk/staged-recipes |
35a7caac9ab36c54095aa76c5b772a7c996b4f41 | site/config.yml | site/config.yml | baseurl: "https://studionock.com/"
languageCode: "en-US"
title: "Studio NOCK"
defaultContentLanguage: "en"
defaultContentLanguageInSubdir: false
enableRobotsTXT: true
enableEmoji: true
MetaDataFormat: "yaml"
params:
description: "Studio NOCK is an independent platform dedicated to architecture"
| baseurl: "https://studionock.com/"
languageCode: "en-US"
title: "Studio NOCK"
defaultContentLanguage: "en"
defaultContentLanguageInSubdir: false
enableRobotsTXT: true
enableEmoji: true
MetaDataFormat: "yaml"
params:
description: "Studio NOCK is an independent platform dedicated to architecture"
menu:
main:
- Name: "NOCK"
Weight: -10
Identifier: "home"
URL: "/"
| Add hom to main menu | Add hom to main menu
| YAML | mit | studionock/studionock.com,studionock/studionock.com |
374366e825fdada66b0187f9460b6ad23e456009 | recipes/yamale/meta.yaml | recipes/yamale/meta.yaml | {% set name = "yamale" %}
{% set version = "2.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ac7dbb7b01c9fc61a5954d61fc6deb66b177c1f84146925add92dc0fa2b7e4c3
build:
number: 0
script: "{{ PYTHON }} setup.py install --single-version-externally-managed --record=record.txt"
noarch: python
entry_points:
- yamale = yamale.command_line:main
requirements:
host:
- python
- pip
run:
- python
- pyyaml
test:
imports:
- yamale
commands:
- yamale -h
about:
home: https://github.com/23andMe/Yamale
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'A schema and validator for YAML.'
description: |
A schema and validator for YAML.
doc_url: https://github.com/23andMe/Yamale
dev_url: https://github.com/23andMe/Yamale
extra:
recipe-maintainers:
- adament
| {% set name = "yamale" %}
{% set version = "2.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ac7dbb7b01c9fc61a5954d61fc6deb66b177c1f84146925add92dc0fa2b7e4c3
build:
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
noarch: python
entry_points:
- yamale = yamale.command_line:main
requirements:
host:
- python
- pip
run:
- python
- pyyaml
test:
imports:
- yamale
commands:
- yamale -h
about:
home: https://github.com/23andMe/Yamale
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'A schema and validator for YAML.'
description: |
A schema and validator for YAML.
doc_url: https://github.com/23andMe/Yamale
dev_url: https://github.com/23andMe/Yamale
extra:
recipe-maintainers:
- adament
| Install via pip and remove empty line. | yamale: Install via pip and remove empty line.
| YAML | bsd-3-clause | ocefpaf/staged-recipes,kwilcox/staged-recipes,asmeurer/staged-recipes,asmeurer/staged-recipes,birdsarah/staged-recipes,hadim/staged-recipes,stuertz/staged-recipes,scopatz/staged-recipes,Juanlu001/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,patricksnape/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes,johanneskoester/staged-recipes,SylvainCorlay/staged-recipes,birdsarah/staged-recipes,chrisburr/staged-recipes,stuertz/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,igortg/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,dschreij/staged-recipes,Juanlu001/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,dschreij/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes,kwilcox/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,jakirkham/staged-recipes,petrushy/staged-recipes,patricksnape/staged-recipes,SylvainCorlay/staged-recipes |
41f1d54b6560c8d44e3219b4a784e70a50cf16e9 | recipes/eudist/meta.yaml | recipes/eudist/meta.yaml | {% set name = "eudist" %}
{% set version = "0.1.4" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/eudist-{{ version }}.tar.gz
sha256: 587caf9ab5e204b4c86a2f75551a973f37059fe146ca93a44270fc2279218a45
build:
script:
- python setup.py build_ext --inplace
- {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- python
- numpy
- cython
- setuptools-scm
- setuptools >=42
- setuptools-scm >=3.4
- setuptools_scm_git_archive
- pip
run:
- python
- {{ pin_compatible('numpy') }}
test:
imports:
- eudist
commands:
- pytest -m eudist
requires:
- pip
- pytest
about:
home: https://github.com/dschwoerer/eudist
summary: Calculate distances between simple shapes such as polygons.
license: GPL-3.0-or-later
license_file: COPYING
extra:
recipe-maintainers:
- dschwoerer
- johnomotani
| {% set name = "eudist" %}
{% set version = "0.1.4" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/eudist-{{ version }}.tar.gz
sha256: 587caf9ab5e204b4c86a2f75551a973f37059fe146ca93a44270fc2279218a45
build:
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- python
- numpy
- cython
- setuptools-scm
- setuptools >=42
- setuptools-scm >=3.4
- setuptools_scm_git_archive
- pip
run:
- python
- {{ pin_compatible('numpy') }}
test:
imports:
- eudist
commands:
- pytest -m eudist
requires:
- pip
- pytest
about:
home: https://github.com/dschwoerer/eudist
summary: Calculate distances between simple shapes such as polygons.
license: GPL-3.0-or-later
license_file: COPYING
extra:
recipe-maintainers:
- dschwoerer
- johnomotani
| Revert "Add compilation step in install" | Revert "Add compilation step in install"
This reverts commit 4658b3f40efdfef6699310ce813f86aa2527c67c.
Does not seem to have been necessary to get Cython file compiled.
| YAML | bsd-3-clause | ocefpaf/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes |
9153871bea88866c1b03cdb2c9ae739a656d4358 | recipes/stride/meta.yaml | recipes/stride/meta.yaml | {% set name = "stride" %}
{% set version = "1.0" %}
{% set md5 = "f5861823b1eccd6326f62eb21ffac9e7" %}
package:
name: {{ name }}
version: {{ version }}
build:
number: 1
skip: True # [osx]
source:
fn: {{ name }}_v{{ version }}.tar.gz
url: https://github.com/ythuang0522/StriDe/archive/v{{ version }}.tar.gz
md5: {{ md5 }}
requirements:
build:
- gcc # [not osx]
- llvm # [osx]
- google-sparsehash
- autoconf
- automake
- m4
- perl
- zlib
run:
- libgcc # [not osx]
test:
commands:
- stride 2>&1 | grep Usage
about:
home: https://github.com/ythuang0522/StriDe
license: GPL3
license_file: LICENSE
summary: The StriDe Assembler integrates string and de Bruijn graph by decomposing reads within error-prone regions, while extending paire-end read into long reads for assembly through repetitive regions.
| {% set name = "stride" %}
{% set version = "1.0" %}
{% set md5 = "f5861823b1eccd6326f62eb21ffac9e7" %}
package:
name: {{ name }}
version: {{ version }}
build:
number: 1
skip: True # [osx]
source:
fn: {{ name }}_v{{ version }}.tar.gz
url: https://github.com/ythuang0522/StriDe/archive/v{{ version }}.tar.gz
md5: {{ md5 }}
requirements:
build:
- gcc # [not osx]
- llvm # [osx]
- google-sparsehash
- autoconf
- automake
- m4
- perl
- zlib
run:
- libgcc # [not osx]
test:
commands:
- stride 2>&1 | grep Usage
about:
home: https://github.com/ythuang0522/StriDe
license: GPL3
license_file: LICENSE
summary: The StriDe Assembler integrates string and de Bruijn graph by decomposing reads within error-prone regions, while extending paire-end read into long reads for assembly through repetitive regions.
| Add zlib as build dependency | Add zlib as build dependency
| YAML | mit | ivirshup/bioconda-recipes,rvalieris/bioconda-recipes,abims-sbr/bioconda-recipes,abims-sbr/bioconda-recipes,CGATOxford/bioconda-recipes,gregvonkuster/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,rob-p/bioconda-recipes,ostrokach/bioconda-recipes,hardingnj/bioconda-recipes,ivirshup/bioconda-recipes,CGATOxford/bioconda-recipes,dmaticzka/bioconda-recipes,keuv-grvl/bioconda-recipes,gregvonkuster/bioconda-recipes,phac-nml/bioconda-recipes,cokelaer/bioconda-recipes,shenwei356/bioconda-recipes,rvalieris/bioconda-recipes,lpantano/recipes,acaprez/recipes,HassanAmr/bioconda-recipes,colinbrislawn/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,lpantano/recipes,omicsnut/bioconda-recipes,peterjc/bioconda-recipes,colinbrislawn/bioconda-recipes,Luobiny/bioconda-recipes,xguse/bioconda-recipes,saketkc/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,rvalieris/bioconda-recipes,bioconda/bioconda-recipes,martin-mann/bioconda-recipes,colinbrislawn/bioconda-recipes,dkoppstein/recipes,blankenberg/bioconda-recipes,Luobiny/bioconda-recipes,hardingnj/bioconda-recipes,zachcp/bioconda-recipes,bioconda/recipes,ostrokach/bioconda-recipes,xguse/bioconda-recipes,bioconda/recipes,BIMSBbioinfo/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,jasper1918/bioconda-recipes,rvalieris/bioconda-recipes,gvlproject/bioconda-recipes,dmaticzka/bioconda-recipes,daler/bioconda-recipes,gregvonkuster/bioconda-recipes,rvalieris/bioconda-recipes,HassanAmr/bioconda-recipes,matthdsm/bioconda-recipes,chapmanb/bioconda-recipes,mcornwell1957/bioconda-recipes,ostrokach/bioconda-recipes,keuv-grvl/bioconda-recipes,blankenberg/bioconda-recipes,xguse/bioconda-recipes,colinbrislawn/bioconda-recipes,joachimwolff/bioconda-recipes,cokelaer/bioconda-recipes,joachimwolff/bioconda-recipes,oena/bioconda-recipes,martin-mann/bioconda-recipes,rob-p/bioconda-recipes,oena/bioconda-recipes,CGATOxford/bioconda-recipes,jfallmann/bioconda-recipes,saketkc/bioconda-recipes,rob-p/bioconda-recipes,jfallmann/bioconda-recipes,JenCabral/bioconda-recipes,joachimwolff/bioconda-recipes,daler/bioconda-recipes,mcornwell1957/bioconda-recipes,chapmanb/bioconda-recipes,JenCabral/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,HassanAmr/bioconda-recipes,jasper1918/bioconda-recipes,hardingnj/bioconda-recipes,bebatut/bioconda-recipes,gvlproject/bioconda-recipes,Luobiny/bioconda-recipes,bow/bioconda-recipes,omicsnut/bioconda-recipes,guowei-he/bioconda-recipes,mdehollander/bioconda-recipes,ivirshup/bioconda-recipes,jasper1918/bioconda-recipes,zachcp/bioconda-recipes,jfallmann/bioconda-recipes,omicsnut/bioconda-recipes,hardingnj/bioconda-recipes,keuv-grvl/bioconda-recipes,abims-sbr/bioconda-recipes,oena/bioconda-recipes,chapmanb/bioconda-recipes,bioconda/bioconda-recipes,daler/bioconda-recipes,HassanAmr/bioconda-recipes,gvlproject/bioconda-recipes,keuv-grvl/bioconda-recipes,bioconda/bioconda-recipes,chapmanb/bioconda-recipes,phac-nml/bioconda-recipes,CGATOxford/bioconda-recipes,peterjc/bioconda-recipes,dmaticzka/bioconda-recipes,bebatut/bioconda-recipes,dkoppstein/recipes,dmaticzka/bioconda-recipes,saketkc/bioconda-recipes,bow/bioconda-recipes,npavlovikj/bioconda-recipes,JenCabral/bioconda-recipes,martin-mann/bioconda-recipes,JenCabral/bioconda-recipes,HassanAmr/bioconda-recipes,xguse/bioconda-recipes,shenwei356/bioconda-recipes,omicsnut/bioconda-recipes,guowei-he/bioconda-recipes,jasper1918/bioconda-recipes,roryk/recipes,peterjc/bioconda-recipes,peterjc/bioconda-recipes,lpantano/recipes,jfallmann/bioconda-recipes,cokelaer/bioconda-recipes,abims-sbr/bioconda-recipes,shenwei356/bioconda-recipes,chapmanb/bioconda-recipes,guowei-he/bioconda-recipes,matthdsm/bioconda-recipes,gregvonkuster/bioconda-recipes,mdehollander/bioconda-recipes,matthdsm/bioconda-recipes,dmaticzka/bioconda-recipes,ivirshup/bioconda-recipes,keuv-grvl/bioconda-recipes,bow/bioconda-recipes,oena/bioconda-recipes,roryk/recipes,bebatut/bioconda-recipes,daler/bioconda-recipes,mdehollander/bioconda-recipes,bebatut/bioconda-recipes,blankenberg/bioconda-recipes,gvlproject/bioconda-recipes,bioconda/recipes,guowei-he/bioconda-recipes,CGATOxford/bioconda-recipes,blankenberg/bioconda-recipes,acaprez/recipes,colinbrislawn/bioconda-recipes,JenCabral/bioconda-recipes,oena/bioconda-recipes,npavlovikj/bioconda-recipes,abims-sbr/bioconda-recipes,joachimwolff/bioconda-recipes,omicsnut/bioconda-recipes,hardingnj/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,ostrokach/bioconda-recipes,matthdsm/bioconda-recipes,ivirshup/bioconda-recipes,cokelaer/bioconda-recipes,npavlovikj/bioconda-recipes,xguse/bioconda-recipes,mdehollander/bioconda-recipes,joachimwolff/bioconda-recipes,phac-nml/bioconda-recipes,Luobiny/bioconda-recipes,jasper1918/bioconda-recipes,HassanAmr/bioconda-recipes,rvalieris/bioconda-recipes,ivirshup/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,colinbrislawn/bioconda-recipes,daler/bioconda-recipes,phac-nml/bioconda-recipes,zachcp/bioconda-recipes,martin-mann/bioconda-recipes,ostrokach/bioconda-recipes,roryk/recipes,JenCabral/bioconda-recipes,gvlproject/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,acaprez/recipes,mdehollander/bioconda-recipes,matthdsm/bioconda-recipes,peterjc/bioconda-recipes,bioconda/bioconda-recipes,lpantano/recipes,matthdsm/bioconda-recipes,daler/bioconda-recipes,CGATOxford/bioconda-recipes,bow/bioconda-recipes,peterjc/bioconda-recipes,saketkc/bioconda-recipes,mcornwell1957/bioconda-recipes,guowei-he/bioconda-recipes,npavlovikj/bioconda-recipes,bow/bioconda-recipes,dmaticzka/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,saketkc/bioconda-recipes,dkoppstein/recipes,zachcp/bioconda-recipes,phac-nml/bioconda-recipes,acaprez/recipes,rob-p/bioconda-recipes,bow/bioconda-recipes,joachimwolff/bioconda-recipes,mdehollander/bioconda-recipes,shenwei356/bioconda-recipes,saketkc/bioconda-recipes,mcornwell1957/bioconda-recipes,keuv-grvl/bioconda-recipes,gvlproject/bioconda-recipes,martin-mann/bioconda-recipes,mcornwell1957/bioconda-recipes,abims-sbr/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,ostrokach/bioconda-recipes |
c7c5907a2bf9a16b0adb2fcef8d93e8b876829d0 | metadata/com.reminimalism.materialslivewallpaper.yml | metadata/com.reminimalism.materialslivewallpaper.yml | Categories:
- Theming
License: GPL-3.0-only
WebSite: https://pragma-once.github.io/materialslivewallpaper/app-page.html
SourceCode: https://github.com/Reminimalism/MaterialsLiveWallpaper
IssueTracker: https://github.com/Reminimalism/MaterialsLiveWallpaper/issues
Donate: https://pragma-once.github.io/materialslivewallpaper/donation-page.html
AutoName: Materials Live Wallpaper
RepoType: git
Repo: https://github.com/Reminimalism/MaterialsLiveWallpaper
Builds:
- versionName: '0.4'
versionCode: 4
commit: v0.4
subdir: MaterialsLiveWallpaper/app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '0.4'
CurrentVersionCode: 4
| Categories:
- Theming
License: GPL-3.0-only
WebSite: https://pragma-once.github.io/materialslivewallpaper/app-page.html
SourceCode: https://github.com/Reminimalism/MaterialsLiveWallpaper
IssueTracker: https://github.com/Reminimalism/MaterialsLiveWallpaper/issues
Donate: https://pragma-once.github.io/materialslivewallpaper/donation-page.html
AutoName: Materials Live Wallpaper
RepoType: git
Repo: https://github.com/Reminimalism/MaterialsLiveWallpaper
Builds:
- versionName: '0.4'
versionCode: 4
commit: v0.4
subdir: MaterialsLiveWallpaper/app
gradle:
- yes
- versionName: '0.5'
versionCode: 5
commit: v0.5
subdir: MaterialsLiveWallpaper/app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '0.5'
CurrentVersionCode: 5
| Update Materials Live Wallpaper to 0.5 (5) | Update Materials Live Wallpaper to 0.5 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
6e957b279b82e6f91bafa932d18b08b8ab4654e4 | deploy/1.8+/metrics-server-deployment.yaml | deploy/1.8+/metrics-server-deployment.yaml | ---
apiVersion: v1
kind: ServiceAccount
metadata:
name: metrics-server
namespace: kube-system
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: metrics-server
namespace: kube-system
labels:
k8s-app: metrics-server
spec:
selector:
matchLabels:
k8s-app: metrics-server
template:
metadata:
name: metrics-server
labels:
k8s-app: metrics-server
spec:
serviceAccountName: metrics-server
volumes:
# mount in tmp so we can safely use from-scratch images and/or read-only containers
- name: tmp-dir
emptyDir: {}
containers:
- name: metrics-server
image: k8s.gcr.io/metrics-server-amd64:v0.3.0
imagePullPolicy: Always
volumeMounts:
- name: tmp-dir
mountPath: /tmp
| ---
apiVersion: v1
kind: ServiceAccount
metadata:
name: metrics-server
namespace: kube-system
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: metrics-server
namespace: kube-system
labels:
k8s-app: metrics-server
spec:
selector:
matchLabels:
k8s-app: metrics-server
template:
metadata:
name: metrics-server
labels:
k8s-app: metrics-server
spec:
serviceAccountName: metrics-server
volumes:
# mount in tmp so we can safely use from-scratch images and/or read-only containers
- name: tmp-dir
emptyDir: {}
containers:
- name: metrics-server
image: k8s.gcr.io/metrics-server-amd64:v0.3.1
imagePullPolicy: Always
volumeMounts:
- name: tmp-dir
mountPath: /tmp
| Update deployment files to v0.3.1 | Update deployment files to v0.3.1
When we release v0.3.1 during the Kubernetes 1.12 release, we forgot
to update the deployment files in the metrics-server repo as well.
This updates them.
| YAML | apache-2.0 | kubernetes-incubator/metrics-server,kubernetes-incubator/metrics-server |
4e770ff6d899348f0769f7bf11a67c28b513c120 | internal/scan-manager/core/src/test/resources/scan-manager-config.yaml | internal/scan-manager/core/src/test/resources/scan-manager-config.yaml | #
# Copyright 2019 WSO2, Inc. (http://wso2.com)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Scan Manager Configuration
scanManagerHost:
scanManagerPort:
scannerServiceHost:
scannerServicePort:
scanPageSize:
logPageSize:
| #
# Copyright 2019 WSO2, Inc. (http://wso2.com)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Scan Manager Configuration
scanManagerHost: localhost
scanManagerPort: 8081
scannerServiceHost: localhost
scannerServicePort: 8080
scanPageSize:
logPageSize:
| Add scan manager test configurations | Add scan manager test configurations
| YAML | apache-2.0 | wso2/security-tools,wso2/security-tools,wso2/security-tools,wso2/security-tools,wso2/security-tools |
1cb4bc41eaa84bc0002fe96474459e9846ef19ee | properties.yml | properties.yml | default:
android:
# Path to the android sdk
androidsdkpath : "../android_sdk/"
# Target id. To get a list of all targets do "./android list targets".
# We want whatever matches android 4.0 (IceCreamSandwich API level 14)
#
# Note: Android WebDriver will not work on Gingerbread (SDK 2.3) emulator because of
# an emulator bug. However it will work with Gingerbread (SDK 2.3) devices.
androidtarget : 29
# Android platform. You can find supported platforms under androidsdkpath/platforms/
androidplatform : "android-14"
| default:
android:
# Path to the android sdk
androidsdkpath : "../android_sdk/"
# Target id. To get a list of all targets do "./android list targets".
# We want whatever matches android 4.0 (IceCreamSandwich API level 14)
#
# Note: Android WebDriver will not work on Gingerbread (SDK 2.3) emulator because of
# an emulator bug. However it will work with Gingerbread (SDK 2.3) devices.
androidtarget : "android-14"
# Android platform. You can find supported platforms under androidsdkpath/platforms/
androidplatform : "android-14"
| Use name, rather than positional ID, for android target. If this causes problems for anyone, we can just set an environmental override | DanielWagnerHall: Use name, rather than positional ID, for android target. If this causes problems for anyone, we can just set an environmental override
git-svn-id: 4179480af2c2519a5eb5e1e9b541cbdf5cf27696@14458 07704840-8298-11de-bf8c-fd130f914ac9
| YAML | apache-2.0 | winhamwr/selenium,virajs/selenium-1,winhamwr/selenium,virajs/selenium-1,virajs/selenium-1,virajs/selenium-1,virajs/selenium-1,winhamwr/selenium,winhamwr/selenium,virajs/selenium-1,virajs/selenium-1,winhamwr/selenium,winhamwr/selenium,winhamwr/selenium,winhamwr/selenium,virajs/selenium-1,virajs/selenium-1 |
8af6228c0a2cfae4b51b11ae424bcaf6cca3b51a | malcolm/blocks/demo/I18PMACManager.yaml | malcolm/blocks/demo/I18PMACManager.yaml | - parameters.string:
name: mriPrefix
description: MRI for created block
- controllers.RunnableController:
mri: $(mriPrefix)
#- includes.pmac.compoundmotor_collection:
# mri: I18-T1-X
# prefix: BL18I-MO-TABLE-01:CSX
# scannable: t1x
- includes.pmac.compoundmotor_collection:
mri: I18-T1-Y
prefix: BL18I-MO-TABLE-01:HEIGHT
scannable: sc_MicroFocusSampleY
- includes.pmac.rawmotor_collection:
mri: I18-T1-X
prefix: BL18I-MO-STEP-06:GB:M1
motorPrefix: BL18I-MO-TABLE-01:X
scannable: sc_MicroFocusSampleX
#- includes.pmac.rawmotor_collection:
# mri: I18-T1-Y
# prefix: BL18I-MO-STEP-06:GB:M3
# motorPrefix: BL18I-MO-TABLE-01:Y1
# scannable: t1y
- includes.pmac.trajectory_collection:
mri: $(mriPrefix)-TRAJ
prefix: BL18I-MO-STEP-06:GB
| - parameters.string:
name: mriPrefix
description: MRI for created block
- controllers.RunnableController:
mri: $(mriPrefix)
#- includes.pmac.compoundmotor_collection:
# mri: I18-T1-X
# prefix: BL18I-MO-TABLE-01:CSX
# scannable: t1x
- includes.pmac.rawmotor_collection:
mri: I18-T1-Y
prefix: BL18I-MO-STEP-06:GB:M8
motorPrefix: BL18I-MO-TABLE-03:Y
scannable: sc_MicroFocusSampleY
- includes.pmac.rawmotor_collection:
mri: I18-T1-X
prefix: BL18I-MO-STEP-06:GB:M6
motorPrefix: BL18I-MO-TABLE-03:X
scannable: sc_MicroFocusSampleX
#- includes.pmac.rawmotor_collection:
# mri: I18-T1-Y
# prefix: BL18I-MO-STEP-06:GB:M3
# motorPrefix: BL18I-MO-TABLE-01:Y1
# scannable: t1y
- includes.pmac.trajectory_collection:
mri: $(mriPrefix)-TRAJ
prefix: BL18I-MO-STEP-06:GB
| Switch from table 1 to table 3 | Switch from table 1 to table 3
| YAML | apache-2.0 | dls-controls/pymalcolm,dls-controls/pymalcolm,dls-controls/pymalcolm |
5bda60298e1345c05f29d857db1ca759193ee08d | manifests/cf-manifest/operations.d/020-bosh-set-stemcells.yml | manifests/cf-manifest/operations.d/020-bosh-set-stemcells.yml | ---
- type: replace
path: /stemcells
value:
- alias: default
os: ubuntu-xenial
version: "621.108"
| ---
- type: replace
path: /stemcells
value:
- alias: default
os: ubuntu-xenial
version: "621.113"
| Upgrade to Xenial stemcell 621.113 | Upgrade to Xenial stemcell 621.113
To mitigate https://www.cloudfoundry.org/blog/usn-4759-1/ | YAML | mit | alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf |
39f917aa6c650498e6b999a94c65165bf5b2f9cb | metadata/de.beisteiners.spieleblock.yml | metadata/de.beisteiners.spieleblock.yml | Categories:
- Games
License: MIT
AuthorName: SIRSteiner
SourceCode: https://codeberg.org/SIR/ScoreSheets
IssueTracker: https://codeberg.org/SIR/ScoreSheets/issues
Changelog: https://codeberg.org/SIR/ScoreSheets/releases
AutoName: Score sheets
RepoType: git
Repo: https://codeberg.org/SIR/ScoreSheets
Builds:
- versionName: '2.5'
versionCode: 43
commit: '2.5'
subdir: ScoreSheets
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '2.5'
CurrentVersionCode: 43
| Categories:
- Games
License: MIT
AuthorName: SIRSteiner
SourceCode: https://codeberg.org/SIR/ScoreSheets
IssueTracker: https://codeberg.org/SIR/ScoreSheets/issues
Changelog: https://codeberg.org/SIR/ScoreSheets/releases
AutoName: Score sheets
RepoType: git
Repo: https://codeberg.org/SIR/ScoreSheets
Builds:
- versionName: '2.5'
versionCode: 43
commit: '2.5'
subdir: ScoreSheets
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
- versionName: '2.6'
versionCode: 44
commit: 01eef4cd4430a2ec74148fb6e276f7c0e48ea7a6
subdir: ScoreSheets
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '2.6'
CurrentVersionCode: 44
| Update Score sheets to 2.6 (44) | Update Score sheets to 2.6 (44)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
1228331c46a928c59d4a6da1e498ae3ceb00b477 | roles/git/tasks/main.yml | roles/git/tasks/main.yml | ---
# Git playbook
- name: Install git package
dnf:
name: git
state: latest
- name: Configure git package
template:
src: gitconfig
dest: "{{ home_dir }}/.gitconfig"
owner: "{{ user }}"
group: "{{ group }}"
mode: 0600
- name: Create repositories directory
file:
path: "{{ git.repo_dir }}"
state: directory
| ---
# Git playbook
- name: Install git package
dnf:
name: git
state: latest
- name: Configure git package
template:
src: gitconfig
dest: "{{ home_dir }}/.gitconfig"
owner: "{{ user }}"
group: "{{ group }}"
mode: 0600
- name: Create repositories directory
file:
path: "{{ git.repo_dir }}"
state: directory
owner: "{{ user }}"
group: "{{ group }}"
mode: 0750
| Correct repos folder owner and rights | Correct repos folder owner and rights
| YAML | mit | kaarolch/my-desktop-ansible |
0d04847221c45dc9c783d3d10e0c9b60ddc2b119 | tasks/main.yml | tasks/main.yml | ---
- name: Create workspace directory
file: >
path={{ turnip_workspace }}
state=directory
mode=0755
- name: Create spec directory
file: >
path={{ turnip_workspace }}/spec
state=directory
mode=0755
- name: Set default-files
copy: >
src={{ item }}
dest={{ turnip_workspace }}
with_items:
- Gemfile
- .rspec
- name: Set spec_helper.rb
copy: >
src=spec_helper.rb
dest={{ turnip_workspace }}/spec
- name: Install Bundler gem
gem: >
name=bundler
executable={{ turnip_rbenv }}/shims/gem
user_install=false
- name: Install turnip for Ruby using the Bundler gem
command: "{{ turnip_rbenv }}/bin/rbenv exec bundler install --path vendor/bundle"
environment:
RBENV_ROOT: "{{ turnip_rbenv }}"
args:
chdir: "{{ turnip_workspace }}"
creates: "{{ turnip_workspace }}/vendor"
- name: Set bundler path
command: bash -lc "rbenv rehash"
args:
chdir: "{{ turnip_workspace }}"
creates: /usr/local/rbenv/shims/bundle
| ---
- name: Create workspace directory
file: >
path={{ turnip_workspace }}
state=directory
mode=0755
- name: Create spec directory
file: >
path={{ turnip_workspace }}/spec
state=directory
mode=0755
- name: Set default-files
copy: >
src={{ item }}
dest={{ turnip_workspace }}
with_items:
- Gemfile
- .rspec
- name: Set spec_helper.rb
copy: >
src=spec_helper.rb
dest={{ turnip_workspace }}/spec
- name: Install Bundler gem
gem: >
name=bundler
executable={{ turnip_rbenv }}/shims/gem
user_install=false
- name: Install turnip for Ruby using the Bundler gem
command: "{{ turnip_rbenv }}/bin/rbenv exec bundle install --path vendor/bundle"
environment:
RBENV_ROOT: "{{ turnip_rbenv }}"
args:
chdir: "{{ turnip_workspace }}"
creates: "{{ turnip_workspace }}/vendor"
- name: Set bundler path
command: bash -lc "rbenv rehash"
args:
chdir: "{{ turnip_workspace }}"
creates: /usr/local/rbenv/shims/bundle
| Change command name bundler to bundle | Change command name bundler to bundle
| YAML | mit | rurudo/ansible-role-turnip |
a478e0b310dc2a4dac26d99dd123d5b710bded19 | config/prisons/LWI-lewes.yml | config/prisons/LWI-lewes.yml | ---
name: Lewes
nomis_id: LWI
address:
- 1 Brighton Road
- BN7 1EA
email: socialvisits.lewes@hmps.gsi.gov.uk
enabled: true
estate: Lewes
phone: 01273785277
slots:
mon:
- 1410-1535
tue:
- 1410-1535
wed:
- 1410-1535
thu:
- 1410-1535
fri:
- 0930-1100
sat:
- 1410-1535
sun:
- 1410-1535
unbookable:
- 2014-12-25
- 2014-12-26
- 2015-01-01
- 2015-01-27
- 2015-04-03
works_weekends: true
| ---
name: Lewes
nomis_id: LWI
address:
- 1 Brighton Road
- BN7 1EA
email: socialvisits.lewes@hmps.gsi.gov.uk
enabled: true
estate: Lewes
phone: 01273785277
slots:
mon:
- 1410-1535
tue:
- 1410-1535
wed:
- 1410-1535
thu:
- 1410-1535
fri:
- 0930-1100
sat:
- 1410-1535
sun:
- 1410-1535
unbookable:
- 2014-12-25
- 2014-12-26
- 2015-01-01
- 2015-01-27
- 2015-04-03
- 2015-12-25
- 2015-12-26
- 2016-01-01
works_weekends: true
| Update Lewes Christmas visit slots | Update Lewes Christmas visit slots
Unbookable:
- Christmas Day
- Boxing Day
- New Year's Day | YAML | mit | ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits |
2c3e7932900fbd25c2f1098d68a797b7247e8aca | .github/workflows/pr-build.yml | .github/workflows/pr-build.yml | name: Pull request check
on:
pull_request:
branches: [ master ]
jobs:
build:
name: Build, test and analyze
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of SonarQube analysis
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache SonarCloud packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew check sonarqube --info
- name: Publish unit test results
uses: EnricoMi/publish-unit-test-result-action@v1.30
if: always()
with:
files: '**/build/test-results/test/*.xml'
| name: Pull request check
on:
pull_request:
branches: [ master ]
jobs:
build:
name: Build, test and analyze
runs-on: ubuntu-latest
permissions:
checks: write
issues: write
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of SonarQube analysis
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache SonarCloud packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew check sonarqube --info
- name: Publish unit test results
uses: EnricoMi/publish-unit-test-result-action@v1.30
if: always()
with:
files: '**/build/test-results/test/*.xml'
| Add permission to write issues | Add permission to write issues
To allow the publish unit tests action to add a comment to the PR.
| YAML | mpl-2.0 | yonadev/yona-server,yonadev/yona-server,yonadev/yona-server,yonadev/yona-server |
b0b391eb1bc0e3661bbf849a3d199b2d695937a4 | ansible/roles/isic/meta/main.yml | ansible/roles/isic/meta/main.yml | ---
dependencies:
- role: girder.girder
vars:
girder_daemonize: "{{ isic_server }}"
girder_web: "{{ isic_web }}"
- role: large_image
vars:
large_image_virtualenv: "{{ girder_virtualenv }}"
large_image_tile_sources:
- tiff
large_image_include_vips: true
| ---
dependencies:
- role: girder.girder
vars:
girder_daemonize: "{{ isic_server }}"
girder_web: "{{ isic_web }}"
girder_version: "release"
- role: large_image
vars:
large_image_virtualenv: "{{ girder_virtualenv }}"
large_image_tile_sources:
- tiff
large_image_include_vips: true
| Install only release versions of Girder via Ansible | Install only release versions of Girder via Ansible
| YAML | apache-2.0 | ImageMarkup/isic-archive,ImageMarkup/isic-archive,ImageMarkup/isic-archive,ImageMarkup/isic-archive |
7b42f076ccaa3424efe4cca31e171eb3a206a5bf | metadata/foehnix.widget.yml | metadata/foehnix.widget.yml | Categories:
- Navigation
- Phone & SMS
License: GPL-3.0-only
SourceCode: https://github.com/dzmanto/foehnix
IssueTracker: https://github.com/dzmanto/foehnix/issues
Changelog: https://github.com/dzmanto/foehnix/releases
AutoName: Föhnix
Description: |-
* Assessment of Foehn conditions for pilots.
* Intended for paraglider and for hangglider pilots.
* Displays pressure differences + relevant wind gusts.
* Updates every 15 minutes or on request.
* Share functionality via text message, emails.
RepoType: git
Repo: https://github.com/dzmanto/foehnix.git
Builds:
- versionName: '2.2'
versionCode: 22
commit: '2.3'
subdir: app
gradle:
- yes
- versionName: '2.2'
versionCode: 23
disable: this version is actually older than 22
commit: '2.2'
subdir: app
gradle:
- yes
- versionName: '2.4'
versionCode: 24
commit: '2.4'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '2.4'
CurrentVersionCode: 24
| Categories:
- Navigation
- Phone & SMS
License: GPL-3.0-only
SourceCode: https://github.com/dzmanto/foehnix
IssueTracker: https://github.com/dzmanto/foehnix/issues
Changelog: https://github.com/dzmanto/foehnix/releases
AutoName: Föhnix
Description: |-
* Assessment of Foehn conditions for pilots.
* Intended for paraglider and for hangglider pilots.
* Displays pressure differences + relevant wind gusts.
* Updates every 15 minutes or on request.
* Share functionality via text message, emails.
RepoType: git
Repo: https://github.com/dzmanto/foehnix.git
Builds:
- versionName: '2.2'
versionCode: 22
commit: '2.3'
subdir: app
gradle:
- yes
- versionName: '2.2'
versionCode: 23
disable: this version is actually older than 22
commit: '2.2'
subdir: app
gradle:
- yes
- versionName: '2.4'
versionCode: 24
commit: '2.4'
subdir: app
gradle:
- yes
- versionName: '2.6'
versionCode: 26
commit: '2.6'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '2.6'
CurrentVersionCode: 26
| Update Föhnix to 2.6 (26) | Update Föhnix to 2.6 (26)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
88df72034f379e5dd0a949cf54a5807065ade402 | src/Kunstmaan/MediaBundle/Resources/config/pdf_preview.yml | src/Kunstmaan/MediaBundle/Resources/config/pdf_preview.yml | parameters:
kunstmaan_media.pdf_transformer.class: 'Kunstmaan\MediaBundle\Helper\Transformer\PdfTransformer'
kunstmaan_media.media_handler.pdf.class: 'Kunstmaan\MediaBundle\Helper\File\PdfHandler'
services:
kunstmaan_media.imagick:
class: 'Imagick'
kunstmaan_media.pdf_transformer:
class: '%kunstmaan_media.pdf_transformer.class%'
arguments: ['@kunstmaan_media.imagick']
kunstmaan_media.command.createpdfpreview:
class: Kunstmaan\MediaBundle\Command\CreatePdfPreviewCommand
calls:
- [setContainer, ['@service_container'] ]
kunstmaan_media.media_handlers.pdf:
class: '%kunstmaan_media.media_handler.pdf.class%'
arguments: [1, '@kunstmaan_media.mimetype_guesser.factory', '@kunstmaan_media.extension_guesser.factory']
calls:
- [ setMediaPath, [ '%kernel.root_dir%' ] ]
- [ setPdfTransformer, [ '@kunstmaan_media.pdf_transformer' ]]
tags:
- { name: 'kunstmaan_media.media_handler' }
| parameters:
kunstmaan_media.pdf_transformer.class: 'Kunstmaan\MediaBundle\Helper\Transformer\PdfTransformer'
kunstmaan_media.media_handler.pdf.class: 'Kunstmaan\MediaBundle\Helper\File\PdfHandler'
services:
kunstmaan_media.imagick:
class: 'Imagick'
kunstmaan_media.pdf_transformer:
class: '%kunstmaan_media.pdf_transformer.class%'
arguments: ['@kunstmaan_media.imagick']
kunstmaan_media.command.createpdfpreview:
class: Kunstmaan\MediaBundle\Command\CreatePdfPreviewCommand
calls:
- [setContainer, ['@service_container'] ]
kunstmaan_media.media_handlers.pdf:
class: '%kunstmaan_media.media_handler.pdf.class%'
parent: kunstmaan_media.media_handlers.file
arguments: [1, '@kunstmaan_media.mimetype_guesser.factory', '@kunstmaan_media.extension_guesser.factory']
calls:
- [ setMediaPath, [ '%kernel.root_dir%' ] ]
- [ setPdfTransformer, [ '@kunstmaan_media.pdf_transformer' ]]
tags:
- { name: 'kunstmaan_media.media_handler' }
| Define parent service of PDF handler | Define parent service of PDF handler
PDF Handler doesn't call setSlugifier(), causing prepareMedia() to fail if it's ever called. | YAML | mit | insiders/KunstmaanBundlesCMS,treeleaf/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,Numkil/KunstmaanBundlesCMS,bakie/KunstmaanBundlesCMS,treeleaf/KunstmaanBundlesCMS,roderik/KunstmaanBundlesCMS,fchris82/KunstmaanBundlesCMS,treeleaf/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,bakie/KunstmaanBundlesCMS,jockri/KunstmaanBundlesCMS,sandergo90/KunstmaanBundlesCMS,Devolicious/KunstmaanBundlesCMS,diskwriter/KunstmaanBundlesCMS,dbeerten/KunstmaanBundlesCMS,wesleylancel/KunstmaanBundlesCMS,bakie/KunstmaanBundlesCMS,Devolicious/KunstmaanBundlesCMS,dbeerten/KunstmaanBundlesCMS,diskwriter/KunstmaanBundlesCMS,zizooboats/KunstmaanBundlesCMS,jockri/KunstmaanBundlesCMS,Devolicious/KunstmaanBundlesCMS,insiders/KunstmaanBundlesCMS,dbeerten/KunstmaanBundlesCMS,jverdeyen/KunstmaanBundlesCMS,dbeerten/KunstmaanBundlesCMS,jverdeyen/KunstmaanBundlesCMS,Numkil/KunstmaanBundlesCMS,sandergo90/KunstmaanBundlesCMS,insiders/KunstmaanBundlesCMS,wesleylancel/KunstmaanBundlesCMS,Numkil/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,tarjei/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,roderik/KunstmaanBundlesCMS,jockri/KunstmaanBundlesCMS,jverdeyen/KunstmaanBundlesCMS,mwoynarski/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,fchris82/KunstmaanBundlesCMS,jockri/KunstmaanBundlesCMS,treeleaf/KunstmaanBundlesCMS,tarjei/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,tarjei/KunstmaanBundlesCMS,fchris82/KunstmaanBundlesCMS,Numkil/KunstmaanBundlesCMS,sandergo90/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,mwoynarski/KunstmaanBundlesCMS,FVKVN/KunstmaanBundlesCMS,sandergo90/KunstmaanBundlesCMS,insiders/KunstmaanBundlesCMS,jverdeyen/KunstmaanBundlesCMS,roderik/KunstmaanBundlesCMS,tarjei/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,FVKVN/KunstmaanBundlesCMS,Devolicious/KunstmaanBundlesCMS,fchris82/KunstmaanBundlesCMS,wesleylancel/KunstmaanBundlesCMS,wesleylancel/KunstmaanBundlesCMS,roderik/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,FVKVN/KunstmaanBundlesCMS,FVKVN/KunstmaanBundlesCMS,zizooboats/KunstmaanBundlesCMS,mwoynarski/KunstmaanBundlesCMS,diskwriter/KunstmaanBundlesCMS,mwoynarski/KunstmaanBundlesCMS,zizooboats/KunstmaanBundlesCMS,bakie/KunstmaanBundlesCMS,zizooboats/KunstmaanBundlesCMS,diskwriter/KunstmaanBundlesCMS |
2099adb8d45ac5ddc6282d58eb2f541c0f68778e | defaults/main.yml | defaults/main.yml | hadoop_distr_prefix: /opt/hadoop
hadoop_var_prefix: /var/hadoop
hadoop_user: hadoop
env_name: default
| hadoop_distr_prefix: /opt/hadoop
hadoop_var_prefix: /var/hadoop
hadoop_user: hadoop
hdfs_datanode_data_dir: [ "file://${hadoop.tmp.dir}/dfs/data" ]
env_name: default
| Set hdfs_datanode_data_dir to the default value | Set hdfs_datanode_data_dir to the default value
| YAML | mit | gitinsky/ansible-role-hdfs-namenode,gitinsky/ansible-role-hdfs-namenode |
f1a755a9c6bef6a79aefe235b453144a25db2d20 | metadata/com.apk.editor.yml | metadata/com.apk.editor.yml | Categories:
- System
License: GPL-3.0-or-later
AuthorName: sunilpaulmathew
AuthorEmail: apkeditor@protonmail.com
AuthorWebSite: https://apk-editor.github.io
WebSite: https://apk-editor.github.io
SourceCode: https://github.com/apk-editor/APK-Explorer-Editor
IssueTracker: https://github.com/apk-editor/APK-Explorer-Editor/issues
Translation: https://poeditor.com/join/project?hash=QztabxONOp
Changelog: https://github.com/apk-editor/APK-Explorer-Editor/releases
Donate: https://apk-editor.github.io/support
Liberapay: sunilpaulmathew
AutoName: APK Explorer & Editor (AEE)
RepoType: git
Repo: https://github.com/apk-editor/APK-Explorer-Editor
Builds:
- versionName: v0.8
versionCode: 8
commit: v0.8
subdir: app
gradle:
- full
scanignore:
- app/src/full/assets/APKEditor
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: v0.8
CurrentVersionCode: 8
| Categories:
- System
License: GPL-3.0-or-later
AuthorName: sunilpaulmathew
AuthorEmail: apkeditor@protonmail.com
AuthorWebSite: https://apk-editor.github.io
WebSite: https://apk-editor.github.io
SourceCode: https://github.com/apk-editor/APK-Explorer-Editor
IssueTracker: https://github.com/apk-editor/APK-Explorer-Editor/issues
Translation: https://poeditor.com/join/project?hash=QztabxONOp
Changelog: https://github.com/apk-editor/APK-Explorer-Editor/releases
Donate: https://apk-editor.github.io/support
Liberapay: sunilpaulmathew
AutoName: APK Explorer & Editor (AEE)
RepoType: git
Repo: https://github.com/apk-editor/APK-Explorer-Editor
Builds:
- versionName: v0.8
versionCode: 8
commit: v0.8
subdir: app
gradle:
- full
scanignore:
- app/src/full/assets/APKEditor
- versionName: v0.9
versionCode: 9
commit: v0.9
subdir: app
gradle:
- full
scanignore:
- app/src/full/assets/APKEditor
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: v0.9
CurrentVersionCode: 9
| Update APK Explorer & Editor (AEE) to v0.9 (9) | Update APK Explorer & Editor (AEE) to v0.9 (9)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
a74164f331596384bd856f274f98e85895f7e64d | templates/ansible/roles/cleanup/defaults/main.yml | templates/ansible/roles/cleanup/defaults/main.yml | ---
slack_token: "{{ lookup('env', 'SLACK_TOKEN') }}"
slack_msg: |
Success: {{ app_name }}
The Arkenstone has finished building your environment. Happy Hacking!
| ---
slack_token: "{{ lookup('env', 'SLACK_TOKEN') }}"
slack_msg: >
The Arkenstone has finished building your environment. Happy Hacking!
| Remove dependency on app_name var | Remove dependency on app_name var
| YAML | mit | ngscheurich/arkenstone,ngscheurich/arkenstone |
a3dbe5d4f0aff371676ea151abc562bba86a22fd | ansible/roles/vmtp/defaults/main.yml | ansible/roles/vmtp/defaults/main.yml | ---
project_name: "vmtp"
####################
# Docker
####################
vmtp_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-vmtp"
vmtp_tag: "{{ openstack_release }}"
vmtp_image_full: "{{ vmtp_image }}:{{ vmtp_tag }}"
#########################
# VMTP Specific resources
#########################
vmtp_vm_image_name: "Ubuntu Server 16.04"
vmtp_vm_ssh_username: "ubuntu"
vmtp_vm_flavor_type: "m1.small"
vmtp_vm_nameservers: ['8.8.8.8', '8.8.4.4']
vmtp_vm_image_url: "https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img"
vmtp_internal_network_name: ['vmtp-demo-net']
vmtp_internal_subnet_name: ['vmtp-demo-subnet']
vmtp_internal_subnet_name_ipv6: ['vmtp-demo-v6-subnet']
vmtp_internal_cidr: ['10.0.0.0/24']
vmtp_internal_cidr_v6: ['2001:45::/64']
vmtp_router_name: "pns-router"
vmtp_os_dp_network: "physnet1"
| ---
project_name: "vmtp"
####################
# Docker
####################
vmtp_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-vmtp"
vmtp_tag: "{{ openstack_release }}"
vmtp_image_full: "{{ vmtp_image }}:{{ vmtp_tag }}"
#########################
# VMTP Specific resources
#########################
vmtp_vm_availability_zone: "nova"
vmtp_vm_image_name: "Ubuntu Server 16.04"
vmtp_vm_ssh_username: "ubuntu"
vmtp_vm_flavor_type: "m1.small"
vmtp_vm_nameservers: ['8.8.8.8', '8.8.4.4']
vmtp_vm_image_url: "https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img"
vmtp_internal_network_name: ['vmtp-demo-net']
vmtp_internal_subnet_name: ['vmtp-demo-subnet']
vmtp_internal_subnet_name_ipv6: ['vmtp-demo-v6-subnet']
vmtp_internal_cidr: ['10.0.0.0/24']
vmtp_internal_cidr_v6: ['2001:45::/64']
vmtp_router_name: "pns-router"
vmtp_os_dp_network: "physnet1"
| Fix the undefined error for vmtp_vm_availability_zone | Fix the undefined error for vmtp_vm_availability_zone
Change-Id: I39a96f6474e0efd061d9eb121427e013d5266e51
Closes-Bug: #1659558
| YAML | apache-2.0 | dardelean/kolla-ansible,dardelean/kolla-ansible,dardelean/kolla-ansible |
6f28c173e2230738ad8279288910de6c9899d320 | plugins/ingest-attachment/src/test/resources/rest-api-spec/test/ingest_attachment/10_basic.yaml | plugins/ingest-attachment/src/test/resources/rest-api-spec/test/ingest_attachment/10_basic.yaml | "Ingest attachment plugin installed":
- do:
cluster.state: {}
- set: {master_node: master}
- do:
nodes.info: {}
- match: { nodes.$master.plugins.0.name: ingest-attachment }
- match: { nodes.$master.ingest.processors.11.type: attachment }
| "Ingest attachment plugin installed":
- do:
cluster.state: {}
- set: {master_node: master}
- do:
nodes.info: {}
- match: { nodes.$master.plugins.0.name: ingest-attachment }
- match: { nodes.$master.ingest.processors.0.type: append }
- match: { nodes.$master.ingest.processors.1.type: attachment }
- match: { nodes.$master.ingest.processors.2.type: convert }
- match: { nodes.$master.ingest.processors.3.type: date }
- match: { nodes.$master.ingest.processors.4.type: fail }
- match: { nodes.$master.ingest.processors.5.type: foreach }
- match: { nodes.$master.ingest.processors.6.type: gsub }
- match: { nodes.$master.ingest.processors.7.type: join }
- match: { nodes.$master.ingest.processors.8.type: lowercase }
- match: { nodes.$master.ingest.processors.9.type: remove }
- match: { nodes.$master.ingest.processors.10.type: rename }
- match: { nodes.$master.ingest.processors.11.type: set }
- match: { nodes.$master.ingest.processors.12.type: split }
- match: { nodes.$master.ingest.processors.13.type: trim }
- match: { nodes.$master.ingest.processors.14.type: uppercase }
| Test that all processors are available | [TEST] Test that all processors are available
| YAML | apache-2.0 | vroyer/elasticassandra,wuranbo/elasticsearch,jprante/elasticsearch,gfyoung/elasticsearch,fred84/elasticsearch,mapr/elasticsearch,shreejay/elasticsearch,strapdata/elassandra5-rc,gfyoung/elasticsearch,mohit/elasticsearch,ricardocerq/elasticsearch,strapdata/elassandra,pozhidaevak/elasticsearch,Stacey-Gammon/elasticsearch,wenpos/elasticsearch,masaruh/elasticsearch,elasticdog/elasticsearch,JervyShi/elasticsearch,fernandozhu/elasticsearch,pozhidaevak/elasticsearch,spiegela/elasticsearch,dongjoon-hyun/elasticsearch,gingerwizard/elasticsearch,ZTE-PaaS/elasticsearch,ZTE-PaaS/elasticsearch,nazarewk/elasticsearch,nknize/elasticsearch,camilojd/elasticsearch,glefloch/elasticsearch,henakamaMSFT/elasticsearch,obourgain/elasticsearch,mortonsykes/elasticsearch,jimczi/elasticsearch,ZTE-PaaS/elasticsearch,jprante/elasticsearch,masaruh/elasticsearch,wenpos/elasticsearch,rajanm/elasticsearch,yanjunh/elasticsearch,MisterAndersen/elasticsearch,uschindler/elasticsearch,shreejay/elasticsearch,bawse/elasticsearch,a2lin/elasticsearch,s1monw/elasticsearch,nomoa/elasticsearch,elasticdog/elasticsearch,scottsom/elasticsearch,awislowski/elasticsearch,palecur/elasticsearch,GlenRSmith/elasticsearch,nknize/elasticsearch,jprante/elasticsearch,sreeramjayan/elasticsearch,gingerwizard/elasticsearch,rlugojr/elasticsearch,JSCooke/elasticsearch,ZTE-PaaS/elasticsearch,LeoYao/elasticsearch,kalimatas/elasticsearch,gingerwizard/elasticsearch,avikurapati/elasticsearch,brandonkearby/elasticsearch,ThiagoGarciaAlves/elasticsearch,yanjunh/elasticsearch,spiegela/elasticsearch,yanjunh/elasticsearch,LeoYao/elasticsearch,i-am-Nathan/elasticsearch,girirajsharma/elasticsearch,yynil/elasticsearch,nazarewk/elasticsearch,strapdata/elassandra,mjason3/elasticsearch,a2lin/elasticsearch,IanvsPoplicola/elasticsearch,alexshadow007/elasticsearch,coding0011/elasticsearch,mmaracic/elasticsearch,bawse/elasticsearch,JackyMai/elasticsearch,GlenRSmith/elasticsearch,scottsom/elasticsearch,sneivandt/elasticsearch,dongjoon-hyun/elasticsearch,markwalkom/elasticsearch,mikemccand/elasticsearch,shreejay/elasticsearch,rlugojr/elasticsearch,avikurapati/elasticsearch,mortonsykes/elasticsearch,palecur/elasticsearch,mmaracic/elasticsearch,zkidkid/elasticsearch,mohit/elasticsearch,jimczi/elasticsearch,JackyMai/elasticsearch,umeshdangat/elasticsearch,uschindler/elasticsearch,alexshadow007/elasticsearch,trangvh/elasticsearch,kalimatas/elasticsearch,myelin/elasticsearch,MaineC/elasticsearch,njlawton/elasticsearch,maddin2016/elasticsearch,camilojd/elasticsearch,IanvsPoplicola/elasticsearch,brandonkearby/elasticsearch,mjason3/elasticsearch,s1monw/elasticsearch,mapr/elasticsearch,MisterAndersen/elasticsearch,qwerty4030/elasticsearch,wangtuo/elasticsearch,winstonewert/elasticsearch,liweinan0423/elasticsearch,JSCooke/elasticsearch,myelin/elasticsearch,wenpos/elasticsearch,gmarz/elasticsearch,HonzaKral/elasticsearch,lks21c/elasticsearch,LeoYao/elasticsearch,jimczi/elasticsearch,shreejay/elasticsearch,geidies/elasticsearch,yynil/elasticsearch,cwurm/elasticsearch,Shepard1212/elasticsearch,masaruh/elasticsearch,trangvh/elasticsearch,nezirus/elasticsearch,nomoa/elasticsearch,gfyoung/elasticsearch,LewayneNaidoo/elasticsearch,zkidkid/elasticsearch,StefanGor/elasticsearch,fforbeck/elasticsearch,liweinan0423/elasticsearch,xuzha/elasticsearch,HonzaKral/elasticsearch,MaineC/elasticsearch,LeoYao/elasticsearch,alexshadow007/elasticsearch,dpursehouse/elasticsearch,rlugojr/elasticsearch,brandonkearby/elasticsearch,geidies/elasticsearch,clintongormley/elasticsearch,wangtuo/elasticsearch,geidies/elasticsearch,mapr/elasticsearch,nazarewk/elasticsearch,C-Bish/elasticsearch,cwurm/elasticsearch,obourgain/elasticsearch,Stacey-Gammon/elasticsearch,s1monw/elasticsearch,obourgain/elasticsearch,nilabhsagar/elasticsearch,rajanm/elasticsearch,coding0011/elasticsearch,vroyer/elassandra,pozhidaevak/elasticsearch,qwerty4030/elasticsearch,jprante/elasticsearch,nilabhsagar/elasticsearch,elasticdog/elasticsearch,IanvsPoplicola/elasticsearch,wuranbo/elasticsearch,geidies/elasticsearch,gingerwizard/elasticsearch,henakamaMSFT/elasticsearch,wangtuo/elasticsearch,nilabhsagar/elasticsearch,JervyShi/elasticsearch,xuzha/elasticsearch,mmaracic/elasticsearch,jprante/elasticsearch,GlenRSmith/elasticsearch,strapdata/elassandra5-rc,nknize/elasticsearch,henakamaMSFT/elasticsearch,scottsom/elasticsearch,wuranbo/elasticsearch,maddin2016/elasticsearch,lks21c/elasticsearch,glefloch/elasticsearch,scorpionvicky/elasticsearch,StefanGor/elasticsearch,robin13/elasticsearch,lks21c/elasticsearch,HonzaKral/elasticsearch,mmaracic/elasticsearch,ThiagoGarciaAlves/elasticsearch,gmarz/elasticsearch,njlawton/elasticsearch,i-am-Nathan/elasticsearch,glefloch/elasticsearch,MisterAndersen/elasticsearch,palecur/elasticsearch,trangvh/elasticsearch,artnowo/elasticsearch,clintongormley/elasticsearch,JSCooke/elasticsearch,artnowo/elasticsearch,uschindler/elasticsearch,lks21c/elasticsearch,StefanGor/elasticsearch,winstonewert/elasticsearch,dpursehouse/elasticsearch,rlugojr/elasticsearch,ricardocerq/elasticsearch,dongjoon-hyun/elasticsearch,gfyoung/elasticsearch,markwalkom/elasticsearch,umeshdangat/elasticsearch,camilojd/elasticsearch,girirajsharma/elasticsearch,nomoa/elasticsearch,kalimatas/elasticsearch,mapr/elasticsearch,nilabhsagar/elasticsearch,rajanm/elasticsearch,MaineC/elasticsearch,JackyMai/elasticsearch,strapdata/elassandra5-rc,yynil/elasticsearch,myelin/elasticsearch,liweinan0423/elasticsearch,qwerty4030/elasticsearch,coding0011/elasticsearch,jimczi/elasticsearch,MaineC/elasticsearch,xuzha/elasticsearch,alexshadow007/elasticsearch,kalimatas/elasticsearch,shreejay/elasticsearch,yynil/elasticsearch,GlenRSmith/elasticsearch,nezirus/elasticsearch,yynil/elasticsearch,mikemccand/elasticsearch,spiegela/elasticsearch,liweinan0423/elasticsearch,pozhidaevak/elasticsearch,fforbeck/elasticsearch,markwalkom/elasticsearch,fforbeck/elasticsearch,nezirus/elasticsearch,zkidkid/elasticsearch,mikemccand/elasticsearch,awislowski/elasticsearch,mikemccand/elasticsearch,fforbeck/elasticsearch,glefloch/elasticsearch,uschindler/elasticsearch,Stacey-Gammon/elasticsearch,rajanm/elasticsearch,Helen-Zhao/elasticsearch,umeshdangat/elasticsearch,maddin2016/elasticsearch,artnowo/elasticsearch,pozhidaevak/elasticsearch,fforbeck/elasticsearch,camilojd/elasticsearch,clintongormley/elasticsearch,scorpionvicky/elasticsearch,i-am-Nathan/elasticsearch,wuranbo/elasticsearch,fred84/elasticsearch,MisterAndersen/elasticsearch,umeshdangat/elasticsearch,rajanm/elasticsearch,LeoYao/elasticsearch,nknize/elasticsearch,avikurapati/elasticsearch,liweinan0423/elasticsearch,awislowski/elasticsearch,brandonkearby/elasticsearch,markwalkom/elasticsearch,scottsom/elasticsearch,sreeramjayan/elasticsearch,brandonkearby/elasticsearch,GlenRSmith/elasticsearch,yanjunh/elasticsearch,cwurm/elasticsearch,mohit/elasticsearch,markwalkom/elasticsearch,ZTE-PaaS/elasticsearch,Helen-Zhao/elasticsearch,xuzha/elasticsearch,dpursehouse/elasticsearch,qwerty4030/elasticsearch,cwurm/elasticsearch,nazarewk/elasticsearch,fernandozhu/elasticsearch,mortonsykes/elasticsearch,fred84/elasticsearch,gingerwizard/elasticsearch,sreeramjayan/elasticsearch,winstonewert/elasticsearch,mjason3/elasticsearch,JervyShi/elasticsearch,JervyShi/elasticsearch,C-Bish/elasticsearch,vroyer/elassandra,clintongormley/elasticsearch,sneivandt/elasticsearch,clintongormley/elasticsearch,IanvsPoplicola/elasticsearch,ThiagoGarciaAlves/elasticsearch,trangvh/elasticsearch,girirajsharma/elasticsearch,dpursehouse/elasticsearch,a2lin/elasticsearch,mapr/elasticsearch,dongjoon-hyun/elasticsearch,fred84/elasticsearch,wenpos/elasticsearch,naveenhooda2000/elasticsearch,gfyoung/elasticsearch,elasticdog/elasticsearch,naveenhooda2000/elasticsearch,s1monw/elasticsearch,vroyer/elasticassandra,coding0011/elasticsearch,ThiagoGarciaAlves/elasticsearch,henakamaMSFT/elasticsearch,a2lin/elasticsearch,MisterAndersen/elasticsearch,njlawton/elasticsearch,artnowo/elasticsearch,markwalkom/elasticsearch,scorpionvicky/elasticsearch,robin13/elasticsearch,HonzaKral/elasticsearch,fernandozhu/elasticsearch,gingerwizard/elasticsearch,bawse/elasticsearch,cwurm/elasticsearch,camilojd/elasticsearch,ricardocerq/elasticsearch,zkidkid/elasticsearch,uschindler/elasticsearch,alexshadow007/elasticsearch,ricardocerq/elasticsearch,nomoa/elasticsearch,Shepard1212/elasticsearch,vroyer/elasticassandra,robin13/elasticsearch,wangtuo/elasticsearch,maddin2016/elasticsearch,mapr/elasticsearch,Stacey-Gammon/elasticsearch,ThiagoGarciaAlves/elasticsearch,mmaracic/elasticsearch,scorpionvicky/elasticsearch,JackyMai/elasticsearch,LewayneNaidoo/elasticsearch,umeshdangat/elasticsearch,winstonewert/elasticsearch,sneivandt/elasticsearch,robin13/elasticsearch,geidies/elasticsearch,mikemccand/elasticsearch,dpursehouse/elasticsearch,maddin2016/elasticsearch,kalimatas/elasticsearch,myelin/elasticsearch,girirajsharma/elasticsearch,naveenhooda2000/elasticsearch,ricardocerq/elasticsearch,LewayneNaidoo/elasticsearch,fernandozhu/elasticsearch,LeoYao/elasticsearch,yanjunh/elasticsearch,geidies/elasticsearch,sreeramjayan/elasticsearch,elasticdog/elasticsearch,s1monw/elasticsearch,nezirus/elasticsearch,xuzha/elasticsearch,Stacey-Gammon/elasticsearch,trangvh/elasticsearch,fernandozhu/elasticsearch,StefanGor/elasticsearch,scottsom/elasticsearch,avikurapati/elasticsearch,JSCooke/elasticsearch,nazarewk/elasticsearch,fred84/elasticsearch,nknize/elasticsearch,coding0011/elasticsearch,spiegela/elasticsearch,palecur/elasticsearch,wenpos/elasticsearch,mjason3/elasticsearch,rlugojr/elasticsearch,njlawton/elasticsearch,mohit/elasticsearch,winstonewert/elasticsearch,LeoYao/elasticsearch,sneivandt/elasticsearch,gmarz/elasticsearch,a2lin/elasticsearch,awislowski/elasticsearch,LewayneNaidoo/elasticsearch,strapdata/elassandra,wangtuo/elasticsearch,spiegela/elasticsearch,Helen-Zhao/elasticsearch,IanvsPoplicola/elasticsearch,xuzha/elasticsearch,myelin/elasticsearch,Helen-Zhao/elasticsearch,mjason3/elasticsearch,LewayneNaidoo/elasticsearch,bawse/elasticsearch,C-Bish/elasticsearch,vroyer/elassandra,masaruh/elasticsearch,mmaracic/elasticsearch,JackyMai/elasticsearch,i-am-Nathan/elasticsearch,StefanGor/elasticsearch,nezirus/elasticsearch,MaineC/elasticsearch,naveenhooda2000/elasticsearch,lks21c/elasticsearch,girirajsharma/elasticsearch,mohit/elasticsearch,qwerty4030/elasticsearch,strapdata/elassandra,nomoa/elasticsearch,wuranbo/elasticsearch,obourgain/elasticsearch,strapdata/elassandra5-rc,palecur/elasticsearch,i-am-Nathan/elasticsearch,njlawton/elasticsearch,henakamaMSFT/elasticsearch,artnowo/elasticsearch,mortonsykes/elasticsearch,avikurapati/elasticsearch,mortonsykes/elasticsearch,sneivandt/elasticsearch,Helen-Zhao/elasticsearch,robin13/elasticsearch,ThiagoGarciaAlves/elasticsearch,JervyShi/elasticsearch,strapdata/elassandra,glefloch/elasticsearch,naveenhooda2000/elasticsearch,rajanm/elasticsearch,jimczi/elasticsearch,sreeramjayan/elasticsearch,Shepard1212/elasticsearch,zkidkid/elasticsearch,Shepard1212/elasticsearch,C-Bish/elasticsearch,obourgain/elasticsearch,yynil/elasticsearch,girirajsharma/elasticsearch,clintongormley/elasticsearch,JSCooke/elasticsearch,bawse/elasticsearch,scorpionvicky/elasticsearch,Shepard1212/elasticsearch,camilojd/elasticsearch,gmarz/elasticsearch,sreeramjayan/elasticsearch,C-Bish/elasticsearch,strapdata/elassandra5-rc,JervyShi/elasticsearch,masaruh/elasticsearch,dongjoon-hyun/elasticsearch,awislowski/elasticsearch,gingerwizard/elasticsearch,gmarz/elasticsearch,nilabhsagar/elasticsearch |
1df9376ff0d312652ac59d82b6dd89a88d31d303 | packages/cs/css-syntax.yaml | packages/cs/css-syntax.yaml | homepage: ''
changelog-type: ''
hash: bffb73dbabd5dbb5d932fd45cf329226c328ecb9e4e39a1f8f8b1b8ba2460f5f
test-bench-deps:
bytestring: -any
base: ! '>=4 && <4.10'
hspec: -any
text: -any
attoparsec: ! '>=0.13'
scientific: -any
directory: -any
maintainer: tomas.carnecky@gmail.com
synopsis: This package implments a parser for the CSS syntax
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4 && <4.10'
text: -any
attoparsec: ! '>=0.13'
scientific: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
author: Tomas Carnecky
latest: '0.0.5'
description-type: haddock
description: See https://drafts.csswg.org/css-syntax/
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 5715e558087d190ddb44581b952c9c05dfd2ce484d8e786a7d01423583c04797
test-bench-deps:
bytestring: -any
base: ! '>=4 && <4.11'
hspec: -any
text: -any
attoparsec: ! '>=0.13'
scientific: -any
directory: -any
maintainer: tomas.carnecky@gmail.com
synopsis: This package implments a parser for the CSS syntax
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4 && <4.11'
text: -any
attoparsec: ! '>=0.13'
scientific: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
author: Tomas Carnecky
latest: '0.0.5'
description-type: haddock
description: See https://drafts.csswg.org/css-syntax/
license-name: MIT
| Update from Hackage at 2017-08-02T17:28:24Z | Update from Hackage at 2017-08-02T17:28:24Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
cc51310b984db9f1a9a224c7f91279918e189f9e | packages/ha/hackage-db.yaml | packages/ha/hackage-db.yaml | homepage: https://github.com/peti/hackage-db#readme
changelog-type: ''
hash: 1e22e4c3fa415c5f3f32be20730e1350af1d6804ffd400476373e2da912a7dc0
test-bench-deps: {}
maintainer: Peter Simons <simons@cryp.to>
synopsis: Access cabal-install's Hackage database via Data.Map
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
Cabal: ! '>3'
base: ! '>=4.9 && <5'
time: -any
filepath: -any
containers: -any
tar: ! '>=0.4'
utf8-string: -any
aeson: -any
directory: -any
all-versions:
- '1.22'
- '2.0'
- 2.0.1
- 2.1.0
author: Peter Simons, Alexander Altman, Ben James
latest: 2.1.0
description-type: haddock
description: |-
This library provides convenient access to the local copy of the Hackage
database that \"cabal update\" creates. Check out
https:\//github.com/peti/hackage-db/tree/master/example\/ for a collection
of simple example programs that demonstrate how to use this code.
license-name: BSD-3-Clause
| homepage: https://github.com/peti/hackage-db#readme
changelog-type: ''
hash: b8d51f9c0b2728da7bc397caff7f5beaa500b5b1d91e9f4663c5ebdc658ea6f1
test-bench-deps: {}
maintainer: Peter Simons <simons@cryp.to>
synopsis: Access cabal-install's Hackage database via Data.Map
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
Cabal: '>3'
base: '>=4.9 && <5'
time: -any
filepath: -any
containers: -any
tar: '>=0.4'
utf8-string: -any
aeson: -any
directory: -any
all-versions:
- '1.22'
- '2.0'
- 2.0.1
- 2.1.0
- 2.1.1
author: Peter Simons, Alexander Altman, Ben James, Kevin Quick
latest: 2.1.1
description-type: haddock
description: |-
This library provides convenient access to the local copy of the Hackage
database that \"cabal update\" creates. Check out
<https://github.com/peti/hackage-db/tree/master/example/> for a collection
of simple example programs that demonstrate how to use this code.
license-name: BSD-3-Clause
| Update from Hackage at 2021-05-11T07:43:26Z | Update from Hackage at 2021-05-11T07:43:26Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
665d8e65925f88bf03272f49e31e8d222507d70a | packages/re/regex-tdfa-quasiquoter.yaml | packages/re/regex-tdfa-quasiquoter.yaml | homepage: http://github.com/erisco/regex-tdfa-quasiquoter
changelog-type: ''
hash: 583d33362dd298923ae9017c5531edce9b69125030193173129003c7976050e3
test-bench-deps: {}
maintainer: eric.brisco@gmail.com
synopsis: ! 'Quasi-quoter for TDFA (extended POSIX) regular
expressions.'
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.8'
regex-tdfa: ! '>=1.2 && <1.3'
template-haskell: ! '>=2.9 && <2.10'
all-versions:
- '0.1.0.0'
author: Eric Brisco
latest: '0.1.0.0'
description-type: haddock
description: ! 'Quasi-quoter for TDFA (extended POSIX) regular
expressions.'
license-name: BSD3
| homepage: http://github.com/erisco/regex-tdfa-quasiquoter
changelog-type: ''
hash: f68eb2eb24efc0932a6c62ec199013d80c8a331e9d497cec796589705780ad9a
test-bench-deps: {}
maintainer: eric.brisco@gmail.com
synopsis: ! 'Quasi-quoter for TDFA (extended POSIX) regular
expressions.'
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.8'
regex-tdfa: ! '>=1.2 && <1.3'
template-haskell: ! '>=2.9 && <2.10'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Eric Brisco
latest: '0.2.0.0'
description-type: haddock
description: ! 'Quasi-quoter for TDFA (extended POSIX) regular
expressions.'
license-name: BSD3
| Update from Hackage at 2015-08-25T23:38:22+0000 | Update from Hackage at 2015-08-25T23:38:22+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
e34fa4efa592d4294260fa1a7cd22c1a50cbc771 | packages/pi/pipes-http.yaml | packages/pi/pipes-http.yaml | homepage: ''
changelog-type: ''
hash: 8d7d244efac7dcbfcc6afba840de15fdf70f52634023e1f7739c952702a7db1b
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: HTTP client with pipes interface
changelog: ''
basic-deps:
http-client: ! '>=0.2 && <0.6'
bytestring: ! '>=0.9.2.1 && <0.11'
base: ! '>=4 && <5'
pipes: ! '>=4.0 && <4.3'
http-client-tls: <0.4
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
- '1.0.3'
- '1.0.4'
author: Gabriel Gonzalez
latest: '1.0.4'
description-type: haddock
description: ! '@pipes-http@ is a @pipes@ wrapper around the @http-client@ library'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: cf863d984190162475447374eef4939a729dce51857ea9077de374eff3f9fdc8
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: HTTP client with pipes interface
changelog: ''
basic-deps:
http-client: ! '>=0.2 && <0.6'
bytestring: ! '>=0.9.2.1 && <0.11'
base: ! '>=4 && <5'
pipes: ! '>=4.0 && <4.4'
http-client-tls: <0.4
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
- '1.0.3'
- '1.0.4'
- '1.0.5'
author: Gabriel Gonzalez
latest: '1.0.5'
description-type: haddock
description: ! '@pipes-http@ is a @pipes@ wrapper around the @http-client@ library'
license-name: BSD3
| Update from Hackage at 2016-12-19T18:15:27Z | Update from Hackage at 2016-12-19T18:15:27Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a9bca6406f0ec025e8f1d3decf4e9324671ff5e7 | packages/po/polynomial.yaml | packages/po/polynomial.yaml | homepage: https://github.com/mokus0/polynomial
changelog-type: ''
hash: 0238b7df40af98a220110ba5ce365f51128abd683cfd6a33d2d61190445338b1
test-bench-deps: {}
maintainer: James Cook <mokus@deepbondi.net>
synopsis: Polynomials
changelog: ''
basic-deps:
base: ! '>=3 && <5'
vector-space: -any
deepseq: -any
vector-th-unbox: ! '>=0.2.1'
pretty: ! '>=1.1.2'
vector: -any
all-versions:
- '0.5'
- '0.6'
- '0.6.5'
- '0.7.1'
- '0.7.2'
author: James Cook <mokus@deepbondi.net>
latest: '0.7.2'
description-type: haddock
description: ! 'A type for representing polynomials, several functions
for manipulating and evaluating them, and several
interesting polynomial sequences.'
license-name: PublicDomain
| homepage: https://github.com/mokus0/polynomial
changelog-type: ''
hash: 9acba2e7f5f4e3ec6989c9670a92a6b9033ee9331b2c9bc114890b8929f45b35
test-bench-deps: {}
maintainer: James Cook <mokus@deepbondi.net>
synopsis: Polynomials
changelog: ''
basic-deps:
base: ! '>=3 && <4.9'
vector-space: <0.11
deepseq: ! '>=1.1 && <1.5'
vector-th-unbox: ! '>=0.2.1 && <0.3'
pretty: ! '>=1.1.2 && <1.2'
vector: <0.13
all-versions:
- '0.5'
- '0.6'
- '0.6.5'
- '0.7.1'
- '0.7.2'
author: James Cook <mokus@deepbondi.net>
latest: '0.7.2'
description-type: haddock
description: ! 'A type for representing polynomials, several functions
for manipulating and evaluating them, and several
interesting polynomial sequences.'
license-name: PublicDomain
| Update from Hackage at 2017-03-23T13:52:14Z | Update from Hackage at 2017-03-23T13:52:14Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e13bfdcb55cde9125f611ae1caca7b346492515a | packages/ti/tidal-midi.yaml | packages/ti/tidal-midi.yaml | homepage: http://tidal.lurk.org/
changelog-type: ''
hash: 8c2376edca950a14d31beada132720eb9daff8511dfac28ea08c965bd6aad8ac
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -any
tidal: ==0.9.1
PortMidi: ==0.1.6.0
transformers: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.1'
- '0.6'
- '0.8'
- '0.8.2'
- '0.9'
- '0.9.1'
author: Alex McLean
latest: '0.9.1'
description-type: haddock
description: MIDI support for Tidal. Supports Volca Keys, Bass and Beats and other
synths. Interface is likely to change significantly.
license-name: GPL-3
| homepage: http://tidal.lurk.org/
changelog-type: ''
hash: a033c240f0b55efcfe6d36a8b7dd8bf46ccd65a60d86a4a0fbf7bbf8d838506c
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -any
tidal: ==0.9.2
PortMidi: ==0.1.6.0
transformers: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.1'
- '0.6'
- '0.8'
- '0.8.2'
- '0.9'
- '0.9.1'
- '0.9.2'
author: Alex McLean
latest: '0.9.2'
description-type: haddock
description: MIDI support for Tidal. Supports Volca Keys, Bass and Beats and other
synths. Interface is likely to change significantly.
license-name: GPL-3
| Update from Hackage at 2017-04-16T18:18:36Z | Update from Hackage at 2017-04-16T18:18:36Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f5287f030c0daa55c39f9c30861d7c33fe22e9c2 | packages/cr/crawlchain.yaml | packages/cr/crawlchain.yaml | homepage: ''
changelog-type: ''
hash: c63b9672b4fb35622c8e907ffac286bba461f6df94762cd53844acb753c310c6
test-bench-deps: {}
maintainer: 7a3ggptwts@snkmail.com
synopsis: Simulation user crawl paths
changelog: ''
basic-deps:
bytestring: -any
split: -any
base: <4.9
time: -any
network-uri: -any
HTTP: -any
tagsoup: -any
directory: -any
all-versions:
- '0.1.0.9'
- '0.1.1.4'
author: Axel Mannhardt
latest: '0.1.1.4'
description-type: haddock
description: Library for simulating user crawl paths (trees) with selectors - takes
an initial action and a chain of processing actions to crawl a tree (lazy, depth
first) searching for a matching branch.
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 2e6d2f44768b779ecd2a45b38b43cd93f00c69f9acd604b2f0c294e98a7cc2aa
test-bench-deps: {}
maintainer: 7a3ggptwts@snkmail.com
synopsis: Simulation user crawl paths
changelog: ''
basic-deps:
bytestring: -any
split: -any
base: <4.9
time: -any
network-uri: -any
HTTP: -any
tagsoup: -any
directory: -any
all-versions:
- '0.1.0.9'
- '0.1.1.4'
- '0.1.1.5'
author: Axel Mannhardt
latest: '0.1.1.5'
description-type: haddock
description: Library for simulating user crawl paths (trees) with selectors - takes
an initial action and a chain of processing actions to crawl a tree (lazy, depth
first) searching for a matching branch.
license-name: BSD3
| Update from Hackage at 2017-01-02T21:52:45Z | Update from Hackage at 2017-01-02T21:52:45Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ce15c2352b184bbcd7014887780d52e2c27497f0 | packages/de/dependency.yaml | packages/de/dependency.yaml | homepage: ''
changelog-type: ''
hash: cc85dda0ec4d3274d15c507208142338e9b54567eb8f7881d3a5ce473de614c6
test-bench-deps:
base: -any
hspec: -any
criterion: -any
containers: -any
dependency: -any
maintainer: vamchale@gmail.com
synopsis: Dependency resolution for package management
changelog: ''
basic-deps:
ansi-wl-pprint: -any
base: ! '>=4.10 && <5'
containers: -any
binary: -any
deepseq: -any
recursion-schemes: -any
microlens: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Vanessa McHale
latest: '0.1.0.2'
description-type: markdown
description: ! '# dependency
A (not fully working) library for dependency resolution.
'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 1d8849ff2d271ec85dc512a970e5769553bc84bd3b5348d84a5bff6aa41110a8
test-bench-deps:
base: -any
hspec: -any
criterion: -any
containers: -any
dependency: -any
maintainer: vamchale@gmail.com
synopsis: Dependency resolution for package management
changelog: ''
basic-deps:
ansi-wl-pprint: -any
base: ! '>=4.10 && <5'
containers: -any
binary: -any
deepseq: -any
recursion-schemes: -any
microlens: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
author: Vanessa McHale
latest: '0.1.0.3'
description-type: markdown
description: ! '# dependency
A (not fully working) library for dependency resolution.
'
license-name: BSD3
| Update from Hackage at 2018-02-10T01:48:33Z | Update from Hackage at 2018-02-10T01:48:33Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f1387977062fd78b11d05ee8c247517ba9e0fa55 | s3_website.yml | s3_website.yml | s3_id: "<%= ENV['AWS_ACCESS_KEY_ID'] %>"
s3_secret: "<%= ENV['AWS_SECRET_ACCESS_KEY'] %>"
s3_bucket: "charlesbot.org"
s3_key_prefix: "docs"
site: "docs/_build/html"
max_age: 86400
cloudfront_distribution_id: "<%= ENV['CLOUDFRONT_DISTRIBUTION_ID'] %>"
cloudfront_invalidate_root: true
concurrency_level: 5
| s3_id: "<%= ENV['AWS_ACCESS_KEY_ID'] %>"
s3_secret: "<%= ENV['AWS_SECRET_ACCESS_KEY'] %>"
s3_bucket: "charlesbot.org"
site: "docs/_build/html"
max_age: 86400
cloudfront_distribution_id: "<%= ENV['CLOUDFRONT_DISTRIBUTION_ID'] %>"
cloudfront_invalidate_root: true
concurrency_level: 5
| Use the sphinx-generated documentation as the primary content for www.charlesbot.org | Use the sphinx-generated documentation as the primary content for www.charlesbot.org
I wasn't entirely a fan of the hugo + sphinx setup and it was a nice
expreriment while it lasted! :)
| YAML | mit | marvinpinto/charlesbot,marvinpinto/charlesbot |
cf9fa546bee2ed09a8404d5c0f4c5e3c4defada9 | data/hostname/grand-palais.softwareheritage.org.yaml | data/hostname/grand-palais.softwareheritage.org.yaml | swh::deploy::objstorage_log_checker::conf_directory: /home/qcampos/.config/swh
swh::deploy::objstorage_log_checker::conf_file: /home/qcampos/.config/swh/objstorage/log_checker.yml
swh::deploy::objstorage_log_checker::user: qcampos
swh::deploy::objstorage_log_checker::group: swhdev
swh::deploy::objstorage_log_checker::directory: /home/qcampos/storage/objects
| swh::deploy::objstorage_log_checker::conf_directory: /home/qcampos/.config/swh/objstorage
swh::deploy::objstorage_log_checker::conf_file: /home/qcampos/.config/swh/objstorage/log_checker.yml
swh::deploy::objstorage_log_checker::user: qcampos
swh::deploy::objstorage_log_checker::group: swhdev
swh::deploy::objstorage_log_checker::directory: /home/qcampos/storage/objects
| Fix test path on grandpalais | Fix test path on grandpalais
| YAML | apache-2.0 | SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site |
76df0887f824fd59c607bcafb7d80dbb255bc691 | watchmedo-tricks.yaml | watchmedo-tricks.yaml | tricks:
- watchdog.tricks.ShellCommandTrick:
patterns: ["*.py"]
shell_command: "python -m pytest --cov=pg_bawler --cov-report=term-missing tests"
drop_during_process: true
| tricks:
- watchdog.tricks.ShellCommandTrick:
patterns: ["*.py"]
shell_command: "python -m pytest --exitfirst --verbose --cov=pg_bawler --cov-report=term-missing tests"
drop_during_process: true
| Add exitfirst arg to watchmedo | Add exitfirst arg to watchmedo
Signed-off-by: Michal Kuffa <005ee1c97edba97d164343c993afee612ac25a0c@gmail.com>
| YAML | bsd-3-clause | beezz/pg_bawler,beezz/pg_bawler |
094ff25b30a06daaeb33096f6349c5900758a68d | vars/Debian.yml | vars/Debian.yml | ---
# Debian specific vars
base_packages_simples_list :
- sysstat # Used to monitor system stats
- vim # Because loving color ;)
- cron-apt # To keep an package database updated
- debian-goodies # Provide checkrestart
- nagios-plugins # Usefull monitoring scripts
- tree # A tree view of directory
- htop # top ehanced
- iotop # Top for i/o
- iftop # Top for netword traffic
- di # Better than df
- dstat # iotop/vmstat/iftop in a same tool
- mtr # To complete traceroute
- molly-guard # Not reboot by accident
- git # Versionning
- curl # Get files from internet or check url
- rssh # To used restricted shell
- sshfs # Used to mount fs by ssh
- acl # Useful for extended permissions on fs
| ---
# Debian specific vars
base_packages_simples_list :
- sysstat # Used to monitor system stats
- vim # Because loving color ;)
- cron-apt # To keep an package database updated
- debian-goodies # Provide checkrestart
- nagios-plugins # Usefull monitoring scripts
- nagios-plugins-contrib # Another usefull monitoring scripts
- tree # A tree view of directory
- htop # top ehanced
- iotop # Top for i/o
- iftop # Top for netword traffic
- di # Better than df
- dstat # iotop/vmstat/iftop in a same tool
- mtr # To complete traceroute
- molly-guard # Not reboot by accident
- git # Versionning
- curl # Get files from internet or check url
- rssh # To used restricted shell
- sshfs # Used to mount fs by ssh
- acl # Useful for extended permissions on fs
| Add nagios-plugin-contrib to default packages | Add nagios-plugin-contrib to default packages
| YAML | mit | infOpen/ansible-role-base-packages |
430304ff36a0d81ccb98432c0b632a154a72d103 | app.yaml | app.yaml | service: react-render
runtime: custom
env: flex
# TODO(jlfwong): Figure out what the right scaling policy is
automatic_scaling:
min_num_instances: 1
max_num_instances: 200
cool_down_period_sec: 60
cpu_utilization:
target_utilization: 0.2
resources:
cpu: 1
# TODO(benkraft): This feels like more memory than we should need!
memory_gb: 3
disk_size_gb: 10
| service: react-render
runtime: custom
env: flex
# TODO(jlfwong): Figure out what the right scaling policy is
automatic_scaling:
min_num_instances: 1
max_num_instances: 200
cool_down_period_sec: 60
cpu_utilization:
target_utilization: 0.4
resources:
cpu: 1
# TODO(benkraft): This feels like more memory than we should need!
memory_gb: 3
disk_size_gb: 10
| Revert "Update target CPU use to 20%." | Revert "Update target CPU use to 20%."
The autoscaling didn't seem to stop.
This reverts commit 3bbd844b58266d331310721b6c9084db799501fc.
Auditors: amos, benkraft
| YAML | mit | Khan/react-render-server,Khan/react-render-server,Khan/react-render-server |
7a33288fcc446614095c0b972966b62362f157c6 | pkg/lookup_map/pubspec.yaml | pkg/lookup_map/pubspec.yaml | name: lookup_map
description: a lookup-only map that can be tree-shaken by dart2js
# Note: the version needs to be kept in sync with the string in
# lib/lookup_map.dart, otherwise test/version_check_test would fail.
version: 0.0.1
dev_dependencies:
test: ^0.12.3+8
yaml: ^2.1.2
| name: lookup_map
description: a lookup-only map that can be tree-shaken by dart2js
# Note: the version needs to be kept in sync with the string in
# lib/lookup_map.dart, otherwise test/version_check_test would fail.
version: 0.0.1
author: "Dart Team <misc@dartlang.org>"
homepage: https://github.com/dart-lang/sdk/blob/master/pkg/lookup_map/README.md
dev_dependencies:
test: ^0.12.3+8
yaml: ^2.1.2
| Add author and homepage to lookup_map package | Add author and homepage to lookup_map package
| YAML | bsd-3-clause | dartino/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk |
3ad4f01b73265ab3bc0bede4c056f42333c13283 | snapcraft.yaml | snapcraft.yaml | name: hangups
version: 0.4.3
summary: Third-party instant messaging client for Google Hangouts
description: |
hangups is a third-party instant messaging client for Google Hangouts with a
text-based user interface.
confinement: strict
grade: stable
apps:
hangups:
command: bin/hangups
# hangups is not a server, but the requests library seems to require the
# bind syscall
plugs:
- network
- network-bind
parts:
hangups:
plugin: python
source: .
# reduce the size of the snap package by only including the files needed to
# run hangups
prime:
- bin/hangups # hangups binary
- usr/bin # python binaries
- usr/lib/python3.5 # standard library
- lib/python3.5/site-packages # python packages
| name: hangups
version: 0
version-script: git describe --dirty | cut -c 2-
summary: Third-party instant messaging client for Google Hangouts
description: |
hangups is a third-party instant messaging client for Google Hangouts with a
text-based user interface.
confinement: strict
grade: stable
apps:
hangups:
command: bin/hangups
# hangups is not a server, but the requests library seems to require the
# bind syscall
plugs:
- network
- network-bind
parts:
hangups:
plugin: python
source: .
# reduce the size of the snap package by only including the files needed to
# run hangups
prime:
- bin/hangups # hangups binary
- usr/bin # python binaries
- usr/lib/python3.5 # standard library
- lib/python3.5/site-packages # python packages
| Use script to populate snap version | Use script to populate snap version
| YAML | mit | das7pad/hangups,tdryer/hangups,ddboline/hangups |
357bdc205316460ae79b8659d5f519ba8587d86f | .codeclimate.yml | .codeclimate.yml | engines:
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- '**.js'
checks:
method-complexity:
config:
threshold: 7
similar-code:
enabled: false
identical-code:
enabled: false
| version: "2"
plugins:
eslint:
enabled: true
csslint:
enabled: true
fixme:
enabled: true
duplication:
enabled: true
checks:
file-lines:
config:
threshold: 300
method-lines:
config:
threshold: 30
method-complexity:
config:
threshold: 7
similar-code:
enabled: false
identical-code:
enabled: false
include_patterns:
- '**.js'
| Switch to v2 of Codeclimate config and harmonize with main project | Switch to v2 of Codeclimate config and harmonize with main project
| YAML | mit | bkimminich/juice-shop-ctf,bkimminich/juice-shop-ctf |
ffa21900e4306b6fdbb8a8b1fc99af256599b125 | .codeclimate.yml | .codeclimate.yml | ---
engines:
bundler-audit:
enabled: true
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
eslint:
enabled: true
channel: "eslint-4"
fixme:
enabled: true
radon:
enabled: true
rubocop:
enabled: true
channel: "rubocop-0-51"
ratings:
paths:
- Gemfile.lock
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
- "**.php"
- "**.py"
- "**.rb"
exclude_paths:
- node_modules/
- flow-typed/
| ---
engines:
bundler-audit:
enabled: true
csslint:
enabled: true
duplication:
enabled: true
exclude_patterns:
- "__tests__/"
config:
languages:
- ruby
- javascript
- python
eslint:
enabled: true
channel: "eslint-4"
fixme:
enabled: true
radon:
enabled: true
rubocop:
enabled: true
channel: "rubocop-0-51"
ratings:
paths:
- Gemfile.lock
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
- "**.php"
- "**.py"
- "**.rb"
exclude_patterns:
- node_modules/
- flow-typed/
| Exclude tests from duplication engine | Exclude tests from duplication engine
Specifically: ignore any directory (at any level) that is called "__tests__", but only in the duplication engine. (eslint rules should still apply to tests)
Also: switches from using `exclude_paths` to `exclude_patterns`. The former is upconverted in the engine now. | YAML | mit | carls-app/carls,carls-app/carls,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,carls-app/carls,carls-app/carls,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,carls-app/carls,StoDevX/AAO-React-Native,carls-app/carls,StoDevX/AAO-React-Native,carls-app/carls,StoDevX/AAO-React-Native |
8ec60e18f4cbd8cba6e88a85b250a5ef64505827 | .codeclimate.yml | .codeclimate.yml | ---
engines:
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- Gemfile.lock
- "**.rb"
exclude_paths:
- spec/**/*
| ---
engines:
duplication:
enabled: true
config:
languages:
- ruby
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- Gemfile.lock
- "**.rb"
exclude_paths:
- spec/**/*
| Remove bundler-audit from Code Climate config | Remove bundler-audit from Code Climate config
On Code Climate online, bundler-audit fails because Gemfile.lock is not
checked into this repository (though it works via the CLI). Removing
this from the config will allow everything to work online - the
bundler-audit analysis can still be run locally if necessary.
[ci skip]
| YAML | mit | ahamlinman/peribot |
46d973a3163a92117259122b7b636cff1b142a23 | .readthedocs.yml | .readthedocs.yml | build:
image: latest
python:
version: 3.7
requirements_file: docs/requirements.txt
| version: 2
build:
os: ubuntu-20.04
tools:
python: "3.10"
sphinx:
configuration: docs/conf.py
python:
install:
- requirements: docs/requirements.txt
| Upgrade RTD config to v2. | Upgrade RTD config to v2.
| YAML | bsd-3-clause | aaugustin/websockets,aaugustin/websockets,aaugustin/websockets,aaugustin/websockets |
ee92a7b5abce875d37e105fa12edb0d283535c1d | tasks/programming.yml | tasks/programming.yml | ---
- name: install python
apt:
name:
- python-dev
- python-pip
- python3-dev
- python3-pip
become: true
- name: install pipenv
command: pip3 install --user pipenv
args:
creates: "{{ home | quote }}/.local/bin/pipenv"
- name: install nodejs
apt:
name:
- nodejs
- npm
become: true
- name: install latest npm
command: npm install -g npm
args:
creates: /usr/local/bin/npm
become: true
- name: install plop
command: npm install -g plop
args:
creates: /usr/local/bin/plop
become: true
- name: install go
apt:
name:
- golang-go
- go-dep
become: true
| ---
- name: install python
apt:
name:
- python-dev
- python-pip
- python3-dev
- python3-pip
become: true
- name: install pipenv
command: pip3 install --user pipenv
args:
creates: "{{ home | quote }}/.local/bin/pipenv"
- name: install nodejs
apt:
name:
- nodejs
- npm
become: true
- name: install latest npm
command: npm install -g npm
args:
creates: /usr/local/bin/npm
become: true
- name: install plop
command: npm install -g plop
args:
creates: /usr/local/bin/plop
become: true
- name: add go backports repo
apt_repository:
repo: ppa:longsleep/golang-backports
filename: golang-backports
become: true
- name: install go
apt:
name:
- golang-go
- go-dep
become: true
| Install more recent go from a PPA | Install more recent go from a PPA
| YAML | mit | mskrajnowski/dev-setup |
05c3068dc18d4487f1f755bbff0e9f0971b44857 | hieradata_aws/class/staging/signon_db_admin.yaml | hieradata_aws/class/staging/signon_db_admin.yaml | govuk_env_sync::tasks:
# "pull_signon_production_daily":
# ensure: "present"
# hour: "0"
# minute: "0"
# action: "pull"
# dbms: "mysql"
# storagebackend: "s3"
# database: "signon_production"
# database_hostname: "signon-mysql"
# temppath: "/tmp/signon_production"
# url: "govuk-production-database-backups"
# path: "signon-mysql"
| govuk_env_sync::tasks:
"pull_signon_production_daily":
ensure: "present"
hour: "0"
minute: "0"
action: "pull"
dbms: "mysql"
storagebackend: "s3"
database: "signon_production"
database_hostname: "signon-mysql"
temppath: "/tmp/signon_production"
url: "govuk-production-database-backups"
path: "signon-mysql"
| Revert "Disable env sync for Signon in Staging environment" | Revert "Disable env sync for Signon in Staging environment"
This reverts commit 249a5dfd467db81206887e438f82cf36b7280fcd.
| YAML | mit | alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet |
56935becb5d22003db8ebd3c6d9fec88ebec263f | doc/dependency_decisions.yml | doc/dependency_decisions.yml | ---
- - :whitelist
- MIT
- :who:
:why:
:versions: []
:when: 2017-07-23 09:39:15.738461398 Z
- - :whitelist
- Simplified BSD
- :who:
:why:
:versions: []
:when: 2017-07-23 09:39:39.945079261 Z
- - :whitelist
- New BSD
- :who:
:why:
:versions: []
:when: 2017-07-23 09:39:47.761714300 Z
- - :whitelist
- LGPL-2.1
- :who:
:why:
:versions: []
:when: 2017-07-23 09:39:55.771479415 Z
- - :whitelist
- LGPL-2.1+
- :who:
:why:
:versions: []
:when: 2017-09-24 15:18:51.744569535 Z
- - :approve
- ttfunk
- :who:
:why:
:versions: []
:when: 2020-01-08 20:31:19.357265612 Z
| ---
- - :permit
- MIT
- :who:
:why:
:versions: []
:when: 2017-07-23 09:39:15.738461398 Z
- - :permit
- Simplified BSD
- :who:
:why:
:versions: []
:when: 2017-07-23 09:39:39.945079261 Z
- - :permit
- New BSD
- :who:
:why:
:versions: []
:when: 2017-07-23 09:39:47.761714300 Z
- - :permit
- LGPL-2.1
- :who:
:why:
:versions: []
:when: 2017-07-23 09:39:55.771479415 Z
- - :permit
- LGPL-2.1+
- :who:
:why:
:versions: []
:when: 2017-09-24 15:18:51.744569535 Z
- - :approve
- ttfunk
- :who:
:why:
:versions: []
:when: 2020-01-08 20:31:19.357265612 Z
| Update license_finder configuration to work with version 6 | Update license_finder configuration to work with version 6
| YAML | mit | mvz/ghtml2pdf |
4bc134a062028f30add075a1bd87c6f2b9387997 | src/fifth_robot_pkgs/fifth_robot_description/config/navigation/costmap/costmap_common_params.yaml | src/fifth_robot_pkgs/fifth_robot_description/config/navigation/costmap/costmap_common_params.yaml | obstacle_range: 12.0
raytrace_range: 15.0
# footprint for KIT-C5 new model
footprint: [[0.1, 0.4], [0.1, -0.4], [-0.4, -0.4], [-0.4, 0.4]]
# footprint: [[0.1, 0.1], [0.1, -0.1], [-0.1, -0.1], [-0.1, 0.1]]
inflation_radius: 0.55
cost_scaling_factor: 5.0
rigin_z: 0.0
z_resolution: 0.2
z_voxels: 0.2
publish_voxel_map: false
max_obstacle_height: 0.4
min_obstacle_height: 0.0
observation_sources: laser_scan_sensor
laser_scan_sensor: {sensor_frame: front_urg_link, data_type: LaserScan, topic: last, marking: true, clearing: true}
# laser_scan_sensor: {sensor_frame: hokuyo_link, data_type: LaserScan, topic: scan, marking: true, clearing: true}
| obstacle_range: 12.0
raytrace_range: 15.0
# footprint for KIT-C5 new model
footprint: [[0.1, 0.4], [0.1, -0.4], [-0.4, -0.4], [-0.4, 0.4]]
# footprint: [[0.1, 0.1], [0.1, -0.1], [-0.1, -0.1], [-0.1, 0.1]]
inflation_radius: 0.55
cost_scaling_factor: 5.0
rigin_z: 0.0
z_resolution: 0.2
z_voxels: 0.2
publish_voxel_map: false
max_obstacle_height: 0.4
min_obstacle_height: 0.0
observation_sources: velodyne_sensor
velodyne_sensor: {sensor_frame: velodyne_link, data_type: PointCloud2, topic: points2, marking: true, clearing: true}
| Fix observation sourse data configs | Fix observation sourse data configs
LaserScan => PointCloud2
| YAML | bsd-3-clause | CIR-KIT/fifth_robot_pkg,CIR-KIT/fifth_robot_pkg,CIR-KIT/fifth_robot_pkg |
1412c415f9d0154acfb78b8013cf0e064638c12f | config/prisons/EWI-eastwood-park.yml | config/prisons/EWI-eastwood-park.yml | ---
name: Eastwood Park
nomis_id: EWI
address:
- Falfield
- GL12 8DB
email: socialvisits.eastwoodpark@hmps.gsi.gov.uk
enabled: true
estate: Eastwood Park
phone: 01454 382159
slots:
tue:
- 1400-1500
- 1530-1630
wed:
- 1400-1500
- 1530-1630
fri:
- 1400-1500
- 1530-1630
sat:
- 1400-1500
- 1530-1630
sun:
- 1400-1600
unbookable:
- 2014-12-25
| ---
name: Eastwood Park
nomis_id: EWI
address:
- Falfield
- GL12 8DB
email: socialvisits.eastwoodpark@hmps.gsi.gov.uk
enabled: true
estate: Eastwood Park
phone: 01454 382159
slot_anomalies:
2015-12-21:
- 1400-1500
- 1530-1630
2015-12-25:
- 1400-1500
- 1530-1730
2015-12-26:
- 1400-1500
- 1530-1800
2015-12-27:
- 1400-1500
- 1530-1800
2015-12-31:
- 1400-1500
- 1530-1730
2016-01-01:
- 1400-1500
- 1530-1730
slots:
tue:
- 1400-1500
- 1530-1630
wed:
- 1400-1500
- 1530-1630
fri:
- 1400-1500
- 1530-1630
sat:
- 1400-1500
- 1530-1630
sun:
- 1400-1600
| Update Eastwood Park Christmas visit slots | Update Eastwood Park Christmas visit slots
Slot anomalies:
- 21st December 1400-1500 and 1530-1630
- 25th December 1400-1500 and 1530-1730
- 26th December 1400-1500 and 1530-1800
- 27th December 1400-1500 and 1530-1800
- 31st December 1400-1500 and 1530-1730
- 1st January 1400-1500 and 1530-1730 | YAML | mit | ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits |
915d9bfad00b389261ad74d98938c86cb87b518f | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: document
path: _data/nav.yml
label: 文档
- type: heading
label: 博客
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6-node12
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
--port 8080 --host 0.0.0.0 -d _site
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: document
path: _data/nav.yml
label: 文档
- type: heading
label: 博客
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6-node12
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bliss s --drafts --unpublished --future --port 8080 --host
0.0.0.0 -d _site
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | apache-2.0 | zuonx/zuonx.github.io,zuonx/zuonx.github.io,zuonx/zuonx.github.io |
a52599f0df6dacb89f30fec860f13fcc8fff469f | .github/dependabot.yml | .github/dependabot.yml | # To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
| # To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "daily"
| Disable updates to GitHub Action's actions | Disable updates to GitHub Action's actions | YAML | mit | thinreports/thinreports-generator |
994a091e939fb61b93273e81d4117b5cbe871b12 | .github/dependabot.yml | .github/dependabot.yml | version: 2
updates:
- package-ecosystem: composer
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
| version: 2
updates:
- package-ecosystem: composer
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
| Check dependencies once per week | Check dependencies once per week | YAML | mit | xparse/RecursivePagination |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.