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 |
|---|---|---|---|---|---|---|---|---|---|
021bc19c46d87d35b6d0c0a4a4cdfa697ad4fdce | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.0
- 5.6
env:
global:
- COMPOSER_OPTIONS=""
matrix:
include:
- php: 5.6
env: COMPOSER_OPTIONS="--prefer-lowest"
- php: nightly
allow_failures:
- php: nightly
fast_finish: true
cache:
directories:
- vendor
before_install:
- phpenv config-rm xdebug.ini || true
- composer self-update
install:
- composer update --prefer-dist $COMPOSER_OPTIONS
script:
- composer validate --strict
- vendor/bin/behat --strict
| language: php
php:
- 7.1
- 7.0
- 5.6
env:
global:
- COMPOSER_OPTIONS=""
matrix:
include:
- php: 5.6
env: COMPOSER_OPTIONS="--prefer-lowest"
- php: nightly
allow_failures:
- php: nightly
fast_finish: true
cache:
directories:
- vendor
before_install:
- phpenv config-rm xdebug.ini || true
install:
- composer update --prefer-dist $COMPOSER_OPTIONS
script:
- composer validate --strict
- vendor/bin/behat --strict
| Remove "composer self-update" from Travis CI (it's done automatically) | Remove "composer self-update" from Travis CI (it's done automatically)
| YAML | mit | FriendsOfBehat/VariadicExtension |
8a291c80f0152a8e9c2b51626bf20a471adc54ad | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- nightly
script:
- cargo build --verbose
- cargo test --verbose
| sudo: false
language: rust
rust:
- stable
- beta
- nightly
script:
- cargo build --verbose
- cargo test --verbose
| Test on stable and beta channels | Test on stable and beta channels
| YAML | apache-2.0 | dtolnay/erased-serde |
709db4d76420e64c8ed5986d5a47c54a0975f45c | .travis.yml | .travis.yml | ---
dist: xenial
language: python
python: 3.6
cache: pip
env:
global:
- DJANGO_IN_MEMORY_FILES=True
- DJANGO_SECRET_KEY=test
# Don't run tests in parallel. This fixes an issue with code coverage.
- PYTEST_ADDOPTS="-n0"
install:
- pip install --upgrade pip
- pip install --upgrade pipenv
- pipenv sync --dev
script:
- pipenv run black --check .
- pipenv run flake8
- COVERAGE_FILE=.coverage.unit pipenv run coverage run -m pytest -m "not integration" km_api/
- COVERAGE_FILE=.coverage.int pipenv run coverage run -m pytest -m "integration" km_api/
- COVERAGE_FILE=.coverage.e2e pipenv run coverage run -m pytest km_api/functional_tests/
after_success:
- pipenv run coverage combine
- pipenv run codecov
notifications:
email:
on_failure: always
on_success: never
| ---
dist: xenial
matrix:
include:
# Test suite for the application itself
- language: python
python: 3.6
cache: pip
env:
- DJANGO_IN_MEMORY_FILES=True DJANGO_SECRET_KEY=test PYTEST_ADDOPTS="-n0"
install:
- pip install --upgrade pip
- pip install --upgrade pipenv
- pipenv sync --dev
script:
- pipenv run black --check .
- pipenv run flake8
- COVERAGE_FILE=.coverage.unit pipenv run coverage run -m pytest -m "not integration" km_api/
- COVERAGE_FILE=.coverage.int pipenv run coverage run -m pytest -m "integration" km_api/
- COVERAGE_FILE=.coverage.e2e pipenv run coverage run -m pytest km_api/functional_tests/
after_success:
- pipenv run coverage combine
- pipenv run codecov
# Test building the docker image
- language: minimal
services:
- docker
script:
- docker build -t know-me-api .
notifications:
email:
on_failure: always
on_success: never
| Add tests for building Docker image. | Add tests for building Docker image.
| YAML | apache-2.0 | knowmetools/km-api,knowmetools/km-api,knowmetools/km-api,knowmetools/km-api |
8061fb1f97f2c562e1056b72374c6ab91bec09af | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.7
script: bundle exec rake
branches:
only:
- gh-pages
- /pages-(.*)/
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
| language: ruby
rvm:
- 2.1.7
script: bundle exec rake
branches:
only:
- master
- /pages-(.*)/
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
| Use Travis on 'master' since this is a user GH Pages site | Use Travis on 'master' since this is a user GH Pages site
Signed-off-by: Elliot J. Voris <dee6300e151043f915cc24dbc1409935bc4ae592@voris.me>
| YAML | apache-2.0 | ElliotFriend/elliotfriend.github.io,ElliotFriend/elliotfriend.github.io,ElliotFriend/elliotfriend.github.io,ElliotFriend/elliotfriend.github.io |
d8b80f2f5ba4467d0e9696c64a718b34a0563df9 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy"
- "pypy3"
install:
- pip install -r requirements.txt
script:
- python runtests.py
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
install:
- pip install -r requirements.txt
script:
- python runtests.py
| Remove Python 3.7 from TravisCI due to lack of support | Remove Python 3.7 from TravisCI due to lack of support
| YAML | mit | contentful/contentful.py |
4ecf6b99433616c24dfd83309c0eca97cd7a54e5 | .travis.yml | .travis.yml | language: python
sudo: true
python:
- "3.5"
addons:
apt:
packages:
- g++
- gfortran
- libblas-dev
- liblapack-dev
- libopenblas-dev
- python3-dev
- enchant
- redis-server
before_install:
- npm install -g eslint
# Install packages
install:
- pip install pip --upgrade
- pip install wheel
- travis_wait pip install -r requirements.txt || date
- travis_wait pip install -r test-requirements.txt || date
- python -m nltk.downloader stopwords
- pip install codecov
- sudo service redis-server start
script:
- flake8 .
- eslint .
- ./utility applications.wsgi --config ./config/celery-test/ &
- ./utility applications.celery --config ./config/celery-test/ &
- sleep 5
- ./utility test_api http://localhost:8080 --debug
- coverage run --source ores -m py.test
after_success:
- coverage report
- codecov
group: stable
dist: trusty
os: linux
notifications:
irc:
channels:
- "chat.freenode.net#wikimedia-ai"
on_success: change
on_failure: change
template:
- "%{repository_slug}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} %{build_url}"
| language: python
sudo: true
python:
- "3.5"
addons:
apt:
packages:
- g++
- gfortran
- libblas-dev
- liblapack-dev
- libopenblas-dev
- python3-dev
- enchant
- redis-server
before_install:
- npm install -g eslint
# Install packages
install:
- pip install pip --upgrade
- pip install wheel
- travis_wait pip install -r requirements.txt || date
- travis_wait pip install -r test-requirements.txt || date
- python -m nltk.downloader stopwords
- pip install codecov pytest-cov
- sudo service redis-server start
script:
- flake8 .
- eslint .
- ./utility applications.wsgi --config ./config/celery-test/ &
- ./utility applications.celery --config ./config/celery-test/ &
- sleep 5
- ./utility test_api http://localhost:8080 --debug
- py.test --cov=ores
after_success:
- codecov
group: stable
dist: trusty
os: linux
notifications:
irc:
channels:
- "chat.freenode.net#wikimedia-ai"
on_success: change
on_failure: change
template:
- "%{repository_slug}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} %{build_url}"
| Use pytest-cov for proper coverage report | Use pytest-cov for proper coverage report
Bug: T179507
| YAML | mit | he7d3r/ores,he7d3r/ores,wiki-ai/ores,wiki-ai/ores,wiki-ai/ores,he7d3r/ores |
710694039755cfff9568730009f138b5aea9ed48 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
script: "PYTHONPATH=. py.test ."
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
script: "PYTHONPATH=. py.test ."
| Drop support for Python 2.6 | Drop support for Python 2.6
| YAML | mit | Tenchi2xh/cursebox |
a4d665609bbff281739f685bddd5f3888d05e087 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
before_install:
- pip install --upgrade coveralls
- pip install --upgrade coverage
- pip install --upgrade twitter
- pip install --upgrade pytest
- pip install --upgrade pytest-cov
script: py.test --cov pyweet
after_success:
- coveralls
notifications:
irc:
channels: irc.freenode.org#atal-dev
on_success: change
on_failure: change
env:
global:
secure: "P+kiTxSRh5cNkSzgaK8/oOu+Afp4EMmotq2BbH0tovHjKQWBkm4ETcAPYxpMCRBhv9YPO+n9+OTsV6g+zWwd7NA9h5FNBWS2Uvci+2CM6vbslSloIEmcdZdcv0ZD8ExVFHQ6VzXmsthiNlkJvXkDHgdHqgE8DT5u7Ez3CtjcGYM="
| language: python
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
before_install:
- pip install --upgrade coveralls
- pip install --upgrade coverage
- pip install --upgrade twitter
- pip install --upgrade pytest
script: py.test --cov pyweet
after_success:
- coveralls
notifications:
irc:
channels: irc.freenode.org#atal-dev
on_success: change
on_failure: change
env:
global:
secure: "P+kiTxSRh5cNkSzgaK8/oOu+Afp4EMmotq2BbH0tovHjKQWBkm4ETcAPYxpMCRBhv9YPO+n9+OTsV6g+zWwd7NA9h5FNBWS2Uvci+2CM6vbslSloIEmcdZdcv0ZD8ExVFHQ6VzXmsthiNlkJvXkDHgdHqgE8DT5u7Ez3CtjcGYM="
| Revert "Revert "Revert "forgot to add the coverage plugin for pytest""" | Revert "Revert "Revert "forgot to add the coverage plugin for pytest"""
This reverts commit 11d61ed3ff0cc101675e86dbce7e102878fe1630.
| YAML | bsd-3-clause | a-tal/pyweet |
e0219f056b400f8d0ec6f20c32448fab75b9807f | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
- pip install flake8
before_script:
flake8 . --count --ignore=E402 --max-line-length=127 --statistics --exit-zero
# command to run tests, e.g. python setup.py test
script: python setup.py test
notifications:
on_success: change
on_failure: always
| # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "2.7"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
- pip install flake8
before_script:
flake8 . --count --ignore=E402 --max-line-length=127 --statistics --exit-zero
# command to run tests, e.g. python setup.py test
script: python setup.py test
notifications:
on_success: change
on_failure: always
| Remove Python 2.6, 3.3 which are EOL | Remove Python 2.6, 3.3 which are EOL
https://docs.python.org/devguide/index.html#branchstatus | YAML | mit | xesscorp/skidl,xesscorp/skidl |
abd1f021d149393ab167b59c459c959491006a53 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.8.3
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
script:
- make test
after_success:
- make coverage
| sudo: false
language: go
go:
- 1.9
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
script:
- make test
after_success:
- make coverage
| Update Go version to 1.9 in Travis CI. | Update Go version to 1.9 in Travis CI.
Signed-off-by: Krzysztof Wilczynski <5f1c0be89013f8fde969a8dcb2fa1d522e94ee00@linux.com>
| YAML | apache-2.0 | kwilczynski/packer-provisioner-itamae-local |
20ceaac885d8b12f8d5972c2f5021416d8239a80 | .travis.yml | .travis.yml | sudo: false
cache:
directories:
- $HOME/.cache/pip
- tests/bot-ci
addons:
apt:
packages:
- libssl1.0.0
- zsh
- tcsh
- mksh
- busybox
# - rc
- socat
- bc
language: python
install: tests/install.sh
script: tests/test.sh
matrix:
include:
- python: "2.6"
- python: "2.7"
- python: "3.2"
- python: "3.3"
- python: "3.4"
- python: "pypy"
- python: "pypy3"
- python: "2.6"
env: >-
USE_UCS2_PYTHON=1
UCS2_PYTHON_VARIANT="2.6"
- python: "2.7"
env: >-
USE_UCS2_PYTHON=1
UCS2_PYTHON_VARIANT="2.7"
# vim: et
| sudo: false
cache:
directories:
- $HOME/.cache/pip
- tests/bot-ci
addons:
apt:
packages:
- libssl1.0.0
- zsh
- tcsh
- mksh
- busybox
# - rc
- socat
- bc
language: python
install: tests/install.sh
script: tests/test.sh
matrix:
include:
- python: "2.6"
- python: "2.7"
- python: "3.2"
- python: "3.3"
- python: "3.4"
- python: "pypy"
- python: "pypy3"
- python: "2.6"
env: >-
USE_UCS2_PYTHON=1
UCS2_PYTHON_VARIANT="2.6"
- python: "2.7"
env: >-
USE_UCS2_PYTHON=1
UCS2_PYTHON_VARIANT="2.7"
allow_failures:
- python: "2.6"
env: >-
USE_UCS2_PYTHON=1
UCS2_PYTHON_VARIANT="2.6"
# vim: et
| Allow the whole CPython-2.6 UCS2 section to fail | Allow the whole CPython-2.6 UCS2 section to fail
| YAML | mit | kenrachynski/powerline,S0lll0s/powerline,EricSB/powerline,kenrachynski/powerline,QuLogic/powerline,blindFS/powerline,EricSB/powerline,QuLogic/powerline,blindFS/powerline,prvnkumar/powerline,bezhermoso/powerline,bezhermoso/powerline,kenrachynski/powerline,areteix/powerline,S0lll0s/powerline,EricSB/powerline,prvnkumar/powerline,areteix/powerline,blindFS/powerline,bezhermoso/powerline,S0lll0s/powerline,areteix/powerline,prvnkumar/powerline,QuLogic/powerline |
c318dacba3a5fce9e5a89ef2bfd36a25db322271 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.12'
| sudo: false
language: node_js
node_js:
- 4
- 5
- stable
| Remove node 0.12 and add 4, 5, stable | chore(ci): Remove node 0.12 and add 4, 5, stable
| YAML | mit | moqada/aws-uncle |
8db3c9626620d8da9e9642073f7501aeff96dc16 | .travis.yml | .travis.yml | language:
- php
php:
- 5.3
- 5.4
- 5.5
before_script:
- export PHPCS_GITHUB_SRC=squizlabs/PHP_CodeSniffer
- export PHPCS_DIR=/tmp/phpcs
- export PHPCS_BRANCH=master
- mkdir -p $PHPCS_DIR && git clone --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git -b $PHPCS_BRANCH $PHPCS_DIR
- $PHPCS_DIR/scripts/phpcs --config-set installed_paths $(pwd)
script:
- find . \( -name '*.php' \) -exec php -lf {} \;
- phpunit --filter WordPress /tmp/phpcs/tests/AllTests.php
| language:
- php
php:
- 5.3
- 5.4
- 5.5
before_script:
- export PHPCS_GITHUB_SRC=squizlabs/PHP_CodeSniffer
- export PHPCS_DIR=/tmp/phpcs
- export PHPCS_BRANCH=phpcs-fixer
- mkdir -p $PHPCS_DIR && git clone --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git -b $PHPCS_BRANCH $PHPCS_DIR
- $PHPCS_DIR/scripts/phpcs --config-set installed_paths $(pwd)
script:
- find . \( -name '*.php' \) -exec php -lf {} \;
- phpunit --filter WordPress /tmp/phpcs/tests/AllTests.php
| Use php-fixer branch instead of master for PHPCS for now | Use php-fixer branch instead of master for PHPCS for now
| YAML | mit | borkweb/WordPress-Coding-Standards,WordPress-Coding-Standards/WordPress-Coding-Standards,xwp/WordPress-Coding-Standards,paulschreiber/WordPress-Coding-Standards,WordPress-Coding-Standards/WordPress-Coding-Standards,xwp/WordPress-Coding-Standards,borkweb/WordPress-Coding-Standards,mediarain/WordPress-Coding-Standards,paulschreiber/WordPress-Coding-Standards,xwp/WordPress-Coding-Standards,jrfnl/WordPress-Coding-Standards,borkweb/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards,paulschreiber/WordPress-Coding-Standards,lkraav/WordPress-Coding-Standards,xwp/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards,jrfnl/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards,borkweb/WordPress-Coding-Standards,lkraav/WordPress-Coding-Standards,WordPress-Coding-Standards/WordPress-Coding-Standards,jrfnl/WordPress-Coding-Standards,WordPress-Coding-Standards/WordPress-Coding-Standards,mediarain/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards,paulschreiber/WordPress-Coding-Standards,jrfnl/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards |
274fc2b7a4e73daa4f9094cd9ac9b6afb6eb7e19 | .travis.yml | .travis.yml | language: python
python:
- 2.7
env:
matrix:
- TEST_SPHINX="yes"
global:
secure: "Gvj1wlkQCofC20POkTos1hif3iteKFKlOqPfAX8+/K2s5Jm6v+TTHyQv59iOIm9hEaZ0UnRSel5zrgsXdj3vdT11vGbJodT+QLf4Czv8FfE9VBYxm/vYdk7m+SpPc7dikEIWMVYTotB3y88+xhCz1LfZIurAJw4CLQYPP01dXkY="
before_install:
- sudo apt-get update
- if [[ "${TEST_SPHINX}" == "yes" ]]; then
sudo apt-get install --no-install-recommends texlive-fonts-recommended texlive-latex-extra texlive-fonts-extra texlive-latex-recommended dvipng;
pip install "sphinx==1.2b3";
fi
script:
- bin/test_travis.sh
after_success:
- bin/deploy.sh
notifications:
email: false
| language: python
python:
- 2.7
env:
matrix:
- TEST_SPHINX="yes"
global:
secure: "Gvj1wlkQCofC20POkTos1hif3iteKFKlOqPfAX8+/K2s5Jm6v+TTHyQv59iOIm9hEaZ0UnRSel5zrgsXdj3vdT11vGbJodT+QLf4Czv8FfE9VBYxm/vYdk7m+SpPc7dikEIWMVYTotB3y88+xhCz1LfZIurAJw4CLQYPP01dXkY="
before_install:
- sudo apt-get update
- if [[ "${TEST_SPHINX}" == "yes" ]]; then
sudo apt-get install --no-install-recommends texlive-fonts-recommended texlive-latex-extra texlive-fonts-extra texlive-latex-recommended dvipng;
pip install "sphinx==1.4.6";
fi
script:
- bin/test_travis.sh
after_success:
- bin/deploy.sh
notifications:
email: false
| Update to the latest Sphinx | Update to the latest Sphinx
| YAML | mit | certik/theoretical-physics,certik/theoretical-physics,certik/theoretical-physics |
678672df47c63781771c128a433045607d23d90c | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "iojs"
before_install:
# Setup sources and keys for LLVM
- sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main' >> /etc/apt/sources.list"
- sudo sh -c "echo 'deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu precise main' >> /etc/apt/sources.list"
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
# Setup packages and install LLVM
- sudo apt-get update
- sudo apt-get install -y --force-yes libstdc++6
- sudo apt-get install -y llvm-3.5 llvm-3.5-dev llvm-3.5-runtime libllvm3.5 libllvm3.5-dbg
before_script:
- "node_modules/.bin/jake default ts:compile"
- "npm run grammar"
- "npm run gen-spec"
script:
- "npm run test"
- "npm run test-spec"
- "npm run test-llvm"
after_script:
- "npm run report-coverage"
| language: node_js
node_js:
- "0.12"
- "iojs"
before_install:
# Setup sources and keys for LLVM
- sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main' >> /etc/apt/sources.list"
- sudo sh -c "echo 'deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu precise main' >> /etc/apt/sources.list"
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
# Setup packages and install LLVM
- sudo apt-get update
- sudo apt-get install -y --force-yes libstdc++6
- sudo apt-get install -y llvm-3.5 llvm-3.5-dev llvm-3.5-runtime libllvm3.5 libllvm3.5-dbg
# BDW GC built dependency
- sudo apt-get install libgc-dev
before_script:
- "node_modules/.bin/jake default ts:compile"
- "npm run grammar"
- "npm run gen-spec"
script:
- "npm run test"
- "npm run test-spec"
- "npm run test-llvm"
after_script:
- "npm run report-coverage"
| Add BDW GC to Travis setup | Add BDW GC to Travis setup
| YAML | bsd-3-clause | dirk/hummingbird,dirk/hummingbird,dirk/hummingbird |
a686d5f82a2be1e9cd6bee124c9aa2abbe0dd101 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
branches:
except:
- gh-pages
services:
install:
- wget http://selenium-release.storage.googleapis.com/2.42/selenium-server-standalone-2.42.2.jar
- composer global require "fxp/composer-asset-plugin:1.0.0-beta2"
- composer install
# Queue (Beanstalkd)
- sudo apt-get update -qq
- sudo apt-get install -qq beanstalkd
before_script:
- beanstalkd -d -l 127.0.0.1 -p 11300
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- sleep 5
- java -jar selenium-server-standalone-2.42.2.jar -port 4444 &
- "mysql -e 'create database codeception_test;'"
- psql -c 'create database codeception_test;' -U postgres
- php -S localhost:8000 -t tests/data/app &
- php -S localhost:8010 -t tests/data &
- "mysql -e 'CREATE DATABASE forum;'"
- cat frameworks-phalcon/schemas/forum.sql | mysql forum
- php codecept build -c frameworks-phalcon
script:
- php codecept run # self tests | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
script:
- vendor/bin/codecept run # self tests | Remove everythin but the command cap'n | Remove everythin but the command cap'n
| YAML | mit | delboy1978uk/bone |
1cb2a2f4ac04a244e64c0924fba2ecdc7076a28e | .travis.yml | .travis.yml | language: java
matrix:
include:
- os: linux
sudo: false
jdk: oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
- oracle-java8-set-default
script: ./gradlew check --info --stacktrace --console=plain -Dkotlin.colors.enabled=false -Porg.gradle.jvmargs="-Xmx2G -Xms512M -XX:+UseG1GC" --max-workers=1
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| language: java
matrix:
include:
- os: linux
sudo: false
jdk: oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
- oracle-java8-set-default
script: ./gradlew check --info --stacktrace --console=plain --max-workers=1 --no-daemon
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Disable daemon on Travis build | Disable daemon on Travis build
| YAML | apache-2.0 | gradle/gradle,blindpirate/gradle,gradle/gradle,blindpirate/gradle,gradle/gradle,blindpirate/gradle,blindpirate/gradle,robinverduijn/gradle,blindpirate/gradle,gradle/gradle,blindpirate/gradle,gradle/gradle,blindpirate/gradle,gradle/gradle,robinverduijn/gradle,robinverduijn/gradle,gradle/gradle,blindpirate/gradle,gradle/gradle,robinverduijn/gradle,robinverduijn/gradle,blindpirate/gradle,gradle/gradle,gradle/gradle,robinverduijn/gradle,blindpirate/gradle,robinverduijn/gradle,robinverduijn/gradle,gradle/gradle-script-kotlin,gradle/gradle-script-kotlin,robinverduijn/gradle,robinverduijn/gradle,robinverduijn/gradle |
78e78a781e96c5fe3e11dbc586e900baab8c7604 | .travis.yml | .travis.yml | language: php
php: [5.3.3, 5.3, 5.4, 5.5, hhvm]
services: [rabbitmq]
before_script:
- sh -c "git clone git://github.com/alanxz/rabbitmq-c.git"
- sh -c "cd rabbitmq-c && git checkout master"
- sh -c "cd rabbitmq-c && git submodule init && git submodule update"
- sh -c "cd rabbitmq-c && autoreconf -i && ./configure && make && sudo make install"
- echo "extension=amqp.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- composer selfupdate
- composer install --prefer-source
| language: php
php: [5.3.3, 5.3, 5.4, 5.5, hhvm]
env:
- LIBRABBITMQ_VERSION=v0.5.0
services: [rabbitmq]
before_script:
- sh -c "git clone git://github.com/alanxz/rabbitmq-c.git"
- sh -c "cd rabbitmq-c && git checkout ${LIBRABBITMQ_VERSION}"
- sh -c "cd rabbitmq-c && git submodule init && git submodule update"
- sh -c "cd rabbitmq-c && autoreconf -i && ./configure && make && sudo make install"
- echo "extension=amqp.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- composer selfupdate
- composer install --prefer-source
| Use stbale version of rabbitmq-c | Use stbale version of rabbitmq-c
| YAML | mit | metfan/swarrot,lafourchette/swarrot,stof/swarrot,MattKetmo/swarrot,swarrot/swarrot,adrienbrault/swarrot,olaurendeau/swarrot,odolbeau/swarrot,metfan/swarrot,MattKetmo/swarrot,lafourchette/swarrot,adrienbrault/swarrot,odolbeau/swarrot,swarrot/swarrot,stof/swarrot,olaurendeau/swarrot |
9fb0fa1bfe3016692da626a95bb4882acb98adc3 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
- 3.5
env:
- TOXENV=py27-django18
- TOXENV=py27-django19
- TOXENV=py27-django10
- TOXENV=py27-django11
- TOXENV=py27-django_trunk
- TOXENV=py34-django18
- TOXENV=py34-django19
- TOXENV=py34-django10
- TOXENV=py34-django11
- TOXENV=py34-django_trunk
- TOXENV=py35-django18
- TOXENV=py35-django19
- TOXENV=py35-django10
- TOXENV=py35-django11
- TOXENV=py35-django_trunk
install:
- pip install --upgrade pip
- pip install --upgrade setuptools tox virtualenv codecov
script:
- tox
matrix:
allow_failures:
- env: TOXENV=py27-django_trunk
- env: TOXENV=py34-django_trunk
- env: TOXENV=py35-django18
- env: TOXENV=py35-django19
- env: TOXENV=py35-django10
- env: TOXENV=py35-django_trunk
after_success:
- codecov
| language: python
python:
- 2.7
- 3.4
- 3.5
env:
- TOXENV=py27-django18
- TOXENV=py27-django19
- TOXENV=py27-django10
- TOXENV=py27-django11
- TOXENV=py27-django_trunk
- TOXENV=py34-django18
- TOXENV=py34-django19
- TOXENV=py34-django10
- TOXENV=py34-django11
- TOXENV=py34-django_trunk
- TOXENV=py35-django18
- TOXENV=py35-django19
- TOXENV=py35-django10
- TOXENV=py35-django11
- TOXENV=py35-django_trunk
install:
- pip install --upgrade pip
- pip install --upgrade setuptools tox virtualenv codecov
script:
- tox
matrix:
allow_failures:
- env: TOXENV=py27-django_trunk
- env: TOXENV=py34-django_trunk
- env: TOXENV=py35-django18
- env: TOXENV=py35-django19
- env: TOXENV=py35-django10
- env: TOXENV=py35-django11
- env: TOXENV=py35-django_trunk
after_success:
- codecov
| Fix to mirror previous allow failures setup | Fix to mirror previous allow failures setup
| YAML | bsd-3-clause | chrisdev/django-foundation-formtags,chrisdev/django-foundation-formtags |
5bffc44b35577f5e7a4eda2952852fa0db2e30f4 | .travis.yml | .travis.yml | language: perl
perl:
- "5.14"
install:
- sudo apt-get install libdb-dev libgd2-noxpm-dev
- cpanm --notest GD::Image
- cpanm --notest git://github.com/bioperl/bioperl-live.git@v1.6.x
- sh setup.sh
- npm install -g http-server
script:
- http-server -p 9000 &
- prove -Isrc/perl5 -lr tests
- phantomjs tests/js_tests/run-jasmine.js http://localhost:9000/
after_failure: cat setup.log
| language: perl
perl:
- "5.14"
install:
- sudo apt-get install libdb-dev libgd2-noxpm-dev
- cpanm --notest GD::Image
- cpanm --notest git://github.com/bioperl/bioperl-live.git@v1.6.x
- bash setup.sh
- npm install -g http-server
script:
- http-server -p 9000 &
- prove -Isrc/perl5 -lr tests
- phantomjs tests/js_tests/run-jasmine.js http://localhost:9000/
after_failure: cat setup.log
| Clarify the setup.sh step and add http-server | Clarify the setup.sh step and add http-server
| YAML | lgpl-2.1 | nathandunn/jbrowse,erasche/jbrowse,limeng12/jbrowse,erasche/jbrowse,nathandunn/jbrowse,erasche/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse,nathandunn/jbrowse,GMOD/jbrowse,limeng12/jbrowse,limeng12/jbrowse,Arabidopsis-Information-Portal/jbrowse,limeng12/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse,GMOD/jbrowse,erasche/jbrowse,limeng12/jbrowse,erasche/jbrowse,GMOD/jbrowse,GMOD/jbrowse,limeng12/jbrowse,nathandunn/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,GMOD/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse,limeng12/jbrowse,nathandunn/jbrowse,limeng12/jbrowse,Arabidopsis-Information-Portal/jbrowse |
dfd87f7dc4c3ace15ac58f20ac1cebde966c8317 | .travis.yml | .travis.yml | language: python
python:
# Only 2.7 to prevent having to install NumPy and SciPy from source.
- "2.7"
virtualenv:
system_site_packages: true
install:
- sudo apt-get update
- sudo apt-get install cython python-numpy python-scipy
- pip install scikit-learn
- pip install .
script:
- cd /tmp
- nosetests --exe seqlearn
| language: python
python:
# Only 2.7 to prevent having to install NumPy and SciPy from source.
- "2.7"
virtualenv:
system_site_packages: true
install:
- sudo apt-get update
- sudo apt-get install cython python-numpy
- pip install scipy
- pip install scikit-learn
- pip install .
script:
- cd /tmp
- nosetests --exe seqlearn
| FIX pip install scipy on Travis | FIX pip install scipy on Travis
| YAML | mit | OncoImmunity/seqlearn,larsmans/seqlearn,pombredanne/seqlearn |
344ae3d47b6fdaf614731dc7e4a61139b8015638 | scripts/ansible/roles/avalanche_build/defaults/main.yml | scripts/ansible/roles/avalanche_build/defaults/main.yml | avalanche_binary: ~/go/src/github.com/ava-labs/avalanchego/build/avalanchego
repo_folder: ~/go/src/github.com/ava-labs/avalanchego
repo_name: ava-labs/avalanchego
repo_url: https://github.com/{{ repo_name }}
repo_branch: dev
| avalanche_binary: "{{ repo_folder }}/build/avalanchego"
repo_folder: "~{{ ansible_user }}/go/src/github.com/ava-labs/avalanchego"
repo_name: ava-labs/avalanchego
repo_url: https://github.com/{{ repo_name }}
repo_branch: dev
| Fix installation when build user != installation user | ansible: Fix installation when build user != installation user
When the ssh user (e.g. pi) did not equal the superuser (e.g. root),
then the ava-install role could not find the binary that had been built.
Using `~{{ ansible_user }}` ensures the path expands to the same
location, regardless of whether privileges have been elevated with
`become: true`.
When these roles were first developed and tested on a DO Droplet the
build user and install user were both root. This meant build and install
happened as the same user.
| YAML | bsd-3-clause | ava-labs/avalanchego,ava-labs/avalanchego |
2f2f2e9cf8c3477cc734305c0270d266e0982a2e | .github/workflows/buildAndTest.yml | .github/workflows/buildAndTest.yml | name: Build and Test
on:
push:
branches:
- master
jobs:
runner:
name: Package Pipeline
runs-on: ubuntu-latest
steps:
- name: Skip based on commit message
uses: veggiemonk/skip-commit@1.0.0
env:
COMMIT_FILTER: skip-ci
- uses: actions/checkout@master
- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Build Solution
run: dotnet build -c Release
- name: Test Solution
run: dotnet test
- name: GH Deploy
run: |
export REPO_NAME=$(echo ${GITHUB_REPOSITORY} | sed 's/stoiveyp\///')
dotnet nuget push ./${REPO_NAME}/bin/Release/Alexa.NET*.nupkg --source "https://nuget.pkg.github.com/stoiveyp/index.json" --api-key stoiveyp:${{ secrets.GH_PACKAGE }}
continue-on-error: true
- name: Deploy to NuGet
run: |
export REPO_NAME=$(echo ${GITHUB_REPOSITORY} | sed 's/stoiveyp\///')
dotnet nuget push ./${REPO_NAME}/bin/Release/Alexa.NET*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
| name: Build and Test
on:
push:
branches:
- master
jobs:
runner:
name: Package Pipeline
runs-on: ubuntu-latest
steps:
- name: Skip based on commit message
uses: veggiemonk/skip-commit@1.0.0
env:
COMMIT_FILTER: skip-ci
- uses: actions/checkout@master
- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Build Solution
run: dotnet build -c Release
- name: Test Solution
run: dotnet test
- name: GH Deploy Workaround
run: |
for f in ./${REPO_NAME}/bin/Release/Alexa.NET*.nupkg
do
curl -vX PUT -u "stoiveyp:${{ secrets.GH_PACKAGE }}" -F package=@$f https://nuget.pkg.github.com/stoiveyp/
done
shell: bash
- name: GH Deploy
run: |
export REPO_NAME=$(echo ${GITHUB_REPOSITORY} | sed 's/stoiveyp\///')
dotnet nuget push ./${REPO_NAME}/bin/Release/Alexa.NET*.nupkg --source "https://nuget.pkg.github.com/stoiveyp/index.json" --api-key stoiveyp:${{ secrets.GH_PACKAGE }}
continue-on-error: true
- name: Deploy to NuGet
run: |
export REPO_NAME=$(echo ${GITHUB_REPOSITORY} | sed 's/stoiveyp\///')
dotnet nuget push ./${REPO_NAME}/bin/Release/Alexa.NET*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
| Add workaround for GH Deploy | Add workaround for GH Deploy | YAML | mit | stoiveyp/Alexa.NET.Management |
188d93624a26cd7dfda3e9cd8f3bb2700d1e7ff0 | .github/workflows/gradle-build.yml | .github/workflows/gradle-build.yml | name: "Build Gradle project"
on: [ push, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 11, 16 ]
gradle-version: [ 7.1.1, 7.2 ]
name: Test JVM/Gradle (${{ matrix.java-version }}, ${{ matrix.gradle-version }})
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Gradle
uses: gradle/gradle-build-action@v1
with:
arguments: build -PtestJavaRuntimeVersion=${{ matrix.java-version }} -PtestGradleVersion=${{ matrix.gradle-version }} -Pgradle-plugindev-plugin.acceptGradleTOS=true
distributions-cache-enabled: true
dependencies-cache-enabled: true
configuration-cache-enabled: false
| name: "Build Gradle project"
on: [ push, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 11, 16 ]
gradle-version: [ 7.1.1, 7.2 ]
name: Test JVM/Gradle (${{ matrix.java-version }}, ${{ matrix.gradle-version }})
steps:
- name: Check out project
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build -PtestJavaRuntimeVersion=${{ matrix.java-version }} -PtestGradleVersion=${{ matrix.gradle-version }} -Pgradle-plugindev-plugin.acceptGradleTOS=true
| Upgrade to Gradle GH action v2 | Upgrade to Gradle GH action v2
| YAML | apache-2.0 | etiennestuder/gradle-plugindev-plugin |
b64c452e2cd212954667b439e97f3ef619bd72c5 | .github/workflows/publish-docs.yml | .github/workflows/publish-docs.yml | name: Build and publish documentation
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
fail-fast: false
steps:
- uses: r-lib/actions/setup-pandoc@v1
- name: Checkout Source
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
python setup.py build
python setup.py install
- name: Checkout gh-pages
uses: actions/checkout@v2
with:
ref: gh-pages
path: docs/_build/html
- name: Build docs
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')
run: sphinx-build docs docs/_build
- name: Publish Docs to gh-pages
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
keep_files: true
| name: Build and publish documentation
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
fail-fast: false
steps:
- uses: r-lib/actions/setup-pandoc@v1
- name: Checkout Source
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
python setup.py build
python setup.py install
- name: Checkout gh-pages
uses: actions/checkout@v2
with:
ref: gh-pages
path: docs/_build
- name: Build docs
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')
run: sphinx-build docs docs/_build
- name: Publish Docs to gh-pages
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build
keep_files: true
| Fix docs GA atttempt 2 | Fix docs GA atttempt 2
| YAML | mit | bambinos/formulae |
05173d69555148969ae338ade8cfd3d8f55bd09c | zuul.d/projects.yaml | zuul.d/projects.yaml | - project:
name: openstack/networking-sfc
templates:
- system-required
- openstack-python-jobs-neutron
- publish-openstack-sphinx-docs-neutron
- check-requirements
- openstack-python35-jobs-neutron
- periodic-jobs-with-neutron-lib-master
- release-notes-jobs-neutron
- publish-to-pypi-neutron
check:
jobs:
- networking-sfc-functional-dsvm
- networking-sfc-tempest-dsvm:
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
- networking-sfc-tempest-dsvm-multinode:
voting: false
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
gate:
jobs:
- networking-sfc-functional-dsvm
- networking-sfc-tempest-dsvm:
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
periodic:
jobs:
- networking-sfc-periodic-tempest-dsvm:
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
| - project:
name: openstack/networking-sfc
check:
jobs:
- networking-sfc-functional-dsvm
- networking-sfc-tempest-dsvm:
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
- networking-sfc-tempest-dsvm-multinode:
voting: false
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
gate:
jobs:
- networking-sfc-functional-dsvm
- networking-sfc-tempest-dsvm:
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
periodic:
jobs:
- networking-sfc-periodic-tempest-dsvm:
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
| Remove Zuul v3 standard setups | Remove Zuul v3 standard setups
The standard jobs and templates should stay in project-config,
remove them here.
See for details:
https://docs.openstack.org/infra/manual/zuulv3.html#what-not-to-convert
Change-Id: I2f29211de18f24d6f84206cf5410ebeebfef6e0e
| YAML | apache-2.0 | openstack/networking-sfc,openstack/networking-sfc |
fce9196a5c1ac954c3a23f17467f1de5da6bf394 | openmm/meta.yaml | openmm/meta.yaml | package:
name: openmm
version: 7.0.1
source:
git_url: https://github.com/pandegroup/openmm.git
git_rev: 5e86c4f
build:
number: 0
skip: True # [win]
# by default upload binaries to 'rc' channel on anaconda.org
extras:
upload: rc
requirements:
build:
# on windows, need to install cmake manually
- cmake [not win]
- jom [win]
- python
# Pin fftw3f to 3.3.3 to work around OSX py34 issues
- fftw3f ==3.3.3 [not win]
- fftw3f ==3.3.4 [win]
# swig is pinned to use omnia swig 3.0.7
- swig ==3.0.7
# on osx, need to install doxygen manually
- doxygen [not osx]
# for building docs
- sphinx
- sphinxcontrib-bibtex
- sphinxcontrib-lunrsearch
- sphinxcontrib-autodoc_doxygen
- lxml
run:
- python
- fftw3f
test:
requires:
- python
imports:
- simtk
- simtk.openmm
commands:
- python -m simtk.testInstallation
about:
home: http://openmm.org
license: LGPL and MIT
summary: A high performance toolkit for molecular simulation.
| package:
name: openmm
version: 7.0.1
source:
git_url: https://github.com/pandegroup/openmm.git
git_rev: 5e86c4f
build:
number: 0
skip: True # [win]
# by default upload binaries to 'rc' channel on anaconda.org
extra:
upload: rc
requirements:
build:
# on windows, need to install cmake manually
- cmake [not win]
- jom [win]
- python
# Pin fftw3f to 3.3.3 to work around OSX py34 issues
- fftw3f ==3.3.3 [not win]
- fftw3f ==3.3.4 [win]
# swig is pinned to use omnia swig 3.0.7
- swig ==3.0.7
# on osx, need to install doxygen manually
- doxygen [not osx]
# for building docs
- sphinx
- sphinxcontrib-bibtex
- sphinxcontrib-lunrsearch
- sphinxcontrib-autodoc_doxygen
- lxml
run:
- python
- fftw3f
test:
requires:
- python
imports:
- simtk
- simtk.openmm
commands:
- python -m simtk.testInstallation
about:
home: http://openmm.org
license: LGPL and MIT
summary: A high performance toolkit for molecular simulation.
| Fix syntax error in openmm 'extra:' section | Fix syntax error in openmm 'extra:' section
| YAML | mit | cwehmeyer/conda-recipes,swails/conda-recipes,peastman/conda-recipes,omnia-md/conda-recipes,swails/conda-recipes,cwehmeyer/conda-recipes,rmcgibbo/conda-recipes,marscher/omnia-conda-recipes,marscher/omnia-conda-recipes,swails/conda-recipes,marscher/omnia-conda-recipes,rmcgibbo/conda-recipes,jchodera/conda-recipes,marscher/omnia-conda-recipes,omnia-md/conda-recipes,swails/conda-recipes,jchodera/conda-recipes,omnia-md/conda-recipes,rmcgibbo/conda-recipes,peastman/conda-recipes,jchodera/conda-recipes,cwehmeyer/conda-recipes,jchodera/conda-recipes,rmcgibbo/conda-recipes,cwehmeyer/conda-recipes,peastman/conda-recipes |
8921f8f20d7d04a9caff9f6f96475ba98dec5c48 | .kitchen.do.local.yml | .kitchen.do.local.yml | # this file is used for configuration of DigitalOcean
# for integration tests in the CI
---
driver:
name: digitalocean
size: 512mb
region: nyc3
transport:
ssh_key: '~/.ssh/ci_id_rsa'
max_wait_until_ready: 30
platforms:
- name: ubuntu-14-04
driver_config:
image: ubuntu-14-04-x64
- name: ubuntu-16-04
driver_config:
image: ubuntu-16-04-x64
- name: centos-6
driver_config:
image: centos-6-x64
- name: centos-7
driver_config:
image: centos-7-x64
- name: debian-7
driver_config:
image: debian-7-x64
- name: debian-8
driver_config:
image: debian-8-x64
- name: fedora-26
driver_config:
image: fedora-26-x64
- name: fedora-27
driver_config:
image: fedora-27-x64
| # this file is used for configuration of DigitalOcean
# for integration tests in the CI
---
driver:
name: digitalocean
size: s-1vcpu-1gb
region: nyc3
transport:
ssh_key: '~/.ssh/ci_id_rsa'
max_wait_until_ready: 30
platforms:
- name: ubuntu-14-04
driver_config:
image: ubuntu-14-04-x64
- name: ubuntu-16-04
driver_config:
image: ubuntu-16-04-x64
- name: centos-6
driver_config:
image: centos-6-x64
- name: centos-7
driver_config:
image: centos-7-x64
- name: debian-7
driver_config:
image: debian-7-x64
- name: debian-8
driver_config:
image: debian-8-x64
- name: fedora-26
driver_config:
image: fedora-26-x64
- name: fedora-27
driver_config:
image: fedora-27-x64
| Use the new droplets with more memory | Use the new droplets with more memory
Fedora 27 fails during the converge phase with OOMs with 512mb
| YAML | apache-2.0 | hardening-io/chef-os-hardening,hardening-io/chef-os-hardening |
a62cd6d497d4bc7659c7796163ec4c547bed4e98 | data/common.yaml | data/common.yaml | ---
vision_default::hp_repo_keyid: "57446EFDE098E5C934B69C7DC208ADDE26C2B797"
vision_default::hp_repo_keysource: "http://downloads.linux.hpe.com/SDR/hpePublicKey2048_key1.pub"
vision_default::hp_repo_location: "http://downloads.linux.hpe.com/SDR/repo/mcp"
vision_default::type: 'server'
vision_default::blacklist_kernel_modules:
floppy:
ensure: present
vision_default::backup_paths:
- '/etc'
- '/root'
- '/opt'
- '/vision'
vision_default::hosts:
localhost:
ip: 127.0.0.1
ip6-localhost:
ip: '::1'
host_aliases: ip6-loopback
ip6-localnet:
ip: 'fe00::0'
ip6-mcastprefix:
ip: 'ff00::0'
ip6-allnodes:
ip: 'ff02::1'
ip6-allrouters:
ip: 'ff02::2'
ip6-allhosts:
ip: 'ff02::3'
lookup_options:
vision_default::default_packages:
merge:
strategy: deep
merge_hash_arrays: true
vision_default::hosts:
merge:
strategy: deep
merge_hash_arrays: true
| ---
vision_default::hp_repo_keyid: "57446EFDE098E5C934B69C7DC208ADDE26C2B797"
vision_default::hp_repo_keysource: "http://downloads.linux.hpe.com/SDR/hpePublicKey2048_key1.pub"
vision_default::hp_repo_location: "http://downloads.linux.hpe.com/SDR/repo/mcp"
vision_default::type: 'server'
vision_default::blacklist_kernel_modules:
floppy:
ensure: present
acpi_power_meter::
ensure: present
vision_default::backup_paths:
- '/etc'
- '/root'
- '/opt'
- '/vision'
vision_default::hosts:
localhost:
ip: 127.0.0.1
ip6-localhost:
ip: '::1'
host_aliases: ip6-loopback
ip6-localnet:
ip: 'fe00::0'
ip6-mcastprefix:
ip: 'ff00::0'
ip6-allnodes:
ip: 'ff02::1'
ip6-allrouters:
ip: 'ff02::2'
ip6-allhosts:
ip: 'ff02::3'
lookup_options:
vision_default::default_packages:
merge:
strategy: deep
merge_hash_arrays: true
vision_default::hosts:
merge:
strategy: deep
merge_hash_arrays: true
| Disable ACPI power kernel mod | Disable ACPI power kernel mod
- Error when reading sensor
- https://github.com/prometheus/node_exporter/issues/903
| YAML | apache-2.0 | vision-it/vision-default,vision-it/vision-default,vision-it/vision-default |
d717d322e531803a92e1040d9df3c4c264dbc0e3 | plugins/tempest/tasks/configure/method/rpm.yml | plugins/tempest/tasks/configure/method/rpm.yml | - name: Create the tempest directory
file:
dest: "~/{{ test.dir }}"
state: directory
- name: Get the script which configures the tempest directory
shell: ls -d /usr/share/openstack-tempest-*/tools/configure-tempest-directory
register: configure_tempest_dir
ignore_errors: true
- name: Initialize tempest workspace directory using configure-tempest-directory
command: "{{ configure_tempest_dir.stdout_lines[0] }}"
args:
chdir: "~/{{ test.dir }}"
creates: "~/{{ test.dir }}/LICENSE"
when: configure_tempest_dir.rc == 0
- name: Install tempestconf if config script is not part of tempest
package:
name: python-tempestconf
state: present
when: configure_tempest_dir.rc != 0
- name: Initialize tempest workspace directory using tempest init
command: "tempest init"
args:
chdir: "~/{{ test.dir }}"
creates: "~/{{ test.dir }}/etc"
when: configure_tempest_dir.rc != 0
- name: Check if we have tempestconf tool installed
stat:
path: /usr/bin/discover-tempest-config
register: tempest_conf_tool
- name: Set facts for configuration run
set_fact:
config_command: /usr/bin/discover-tempest-config
when: tempest_conf_tool.stat.exists
| - name: Create the tempest directory
file:
dest: "~/{{ test.dir }}"
state: directory
- name: Get the script which configures the tempest directory
shell: ls -d /usr/share/openstack-tempest-*/tools/configure-tempest-directory
register: configure_tempest_dir
ignore_errors: true
- name: Initialize tempest workspace directory using configure-tempest-directory
command: "{{ configure_tempest_dir.stdout_lines[0] }}"
args:
chdir: "~/{{ test.dir }}"
creates: "~/{{ test.dir }}/LICENSE"
when: configure_tempest_dir.rc == 0
- name: Install tempestconf if config script is not part of tempest
become: yes
package:
name: python-tempestconf
state: present
when: configure_tempest_dir.rc != 0
- name: Initialize tempest workspace directory using tempest init
command: "tempest init"
args:
chdir: "~/{{ test.dir }}"
creates: "~/{{ test.dir }}/etc"
when: configure_tempest_dir.rc != 0
- name: Check if we have tempestconf tool installed
stat:
path: /usr/bin/discover-tempest-config
register: tempest_conf_tool
- name: Set facts for configuration run
set_fact:
config_command: /usr/bin/discover-tempest-config
when: tempest_conf_tool.stat.exists
| Fix missing sudo for tempestconf installation | Fix missing sudo for tempestconf installation
Change-Id: I6ae8ca47a8241612fcddf77c398aa4fc54adad76
| YAML | apache-2.0 | okolisny/InfraRed,okolisny/InfraRed,redhat-openstack/infrared,redhat-openstack/infrared,okolisny/InfraRed,redhat-openstack/infrared |
8bb8c05cb75405a820759e8614ab03144b5497e4 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.3', '2.7', '3.0']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake spec
| name: Specs
jobs:
specs:
strategy:
fail-fast: false
matrix:
task: [SPECS]
ruby: [2.6, 2.7]
os: [ubuntu-16.04]
include:
- task: SPECS
os: macos-10.15
ruby: system
- task: EXAMPLES
os: macos-10.15
ruby: system
name: ${{ matrix.task }} / ${{ matrix.os }} / Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
steps:
- name: Set build image var
run: echo "ImageVersion=$ImageVersion" >> $GITHUB_ENV
- name: Checkout git
uses: actions/checkout@v1
- name: Set up Ruby
uses: ruby/setup-ruby@v1
if: ${{ matrix.ruby != 'system' }}
with:
ruby-version: ${{ matrix.ruby }}
- name: Update git submodules
run: git submodule update --init
- uses: actions/cache@v2
with:
path: vendor/bundle
key: gems@v1-${{ matrix.os }}-${{ env.ImageVersion }}-Ruby${{ matrix.ruby }}-${{ hashFiles('Gemfile.lock') }}
restore-keys: |
gems@v1-${{ matrix.os }}-${{ env.ImageVersion }}-Ruby${{ matrix.ruby }}-
- name: Run bundle install
run: |
gem install bundler -v "~> 1.17"
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3 --without debugging documentation
- name: Set up git identity
run: |
git config --global user.email "tests@cocoapods.org"
git config --global user.name "CocoaPods Tests"
- name: Run Tests
run: bundle exec rake spec
env:
COCOAPODS_CI_TASKS: ${{ matrix.task }}
on:
push:
branches:
- "master"
- "*-stable"
pull_request:
branches:
- master
- "*-stable"
| Copy the CI from CP | Copy the CI from CP
| YAML | mit | CocoaPods/cocoapods-trunk |
5d106f8d8379719e7f1387b719dde6c9366ea562 | config/query_param_mapping.yml | config/query_param_mapping.yml | # Mapping of cryptocompare gem parameters to CryptoCompare API query parameters
agg: aggregate
all_data: allData
e: e
from_sym: fsym
from_syms: fsyms
limit: limit
markets: markets
tc: tryConversion
to_sym: tsym
to_syms: tsyms
to_ts: toTs
ts: ts
utc_offset: UTCHourDiff
| # Mapping of cryptocompare gem parameters to CryptoCompare API query parameters
agg: aggregate
all_data: allData
e: e
from_sym: fsym
from_syms: fsyms
limit: limit
markets: markets
tc: tryConversion
to_sym: tsym
to_syms: tsyms
to_ts: toTs
ts: ts
utc_offset: UTCHourDiff
api_key: api_key
| Whitelist api_key as possible/optional query parameter | Whitelist api_key as possible/optional query parameter
| YAML | mit | alexanderdavidpan/cryptocompare,alexanderdavidpan/cryptocompare |
63f03771db6dcb547777a46ba7222407f1f1fefe | .github/workflows/aix.yaml | .github/workflows/aix.yaml | # CI on Unix OS
# Separated from main CI matrix to reduce churn on failures due to infra
name: AIX CI
concurrency: aix_gcc119
on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- '**.md'
- '**.yml'
- '**.yaml'
jobs:
# SSH into AIX server and run test on AIX 7.1
# Configured to pull latest from oshi master branch
# To test on a PR, log into the aix server and create a new branch
testaix:
if: github.repository_owner == 'oshi'
runs-on: ubuntu-latest
name: Test JDK 8, aix
steps:
- name: Test in AIX
uses: appleboy/ssh-action@master
with:
host: gcc119.fsffrance.org
username: oshi
key: ${{ secrets.AIX_OSHI_KEY }}
port: 22
script_stop: true
command_timeout: 15m
script: |
cd ~/git/oshi
export JAVA_HOME=/usr/java8_64
git checkout master
git reset --hard HEAD~2
git pull upstream master
./mvnw clean test -B -Djacoco.skip=true -Dlicense.skip=true
| # CI on Unix OS
# Separated from main CI matrix to reduce churn on failures due to infra
name: AIX CI
concurrency: aix_gcc119
on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- '**.md'
- '**.yml'
- '**.yaml'
jobs:
# SSH into AIX server and run test on AIX 7.2
# Configured to pull latest from oshi master branch
# To test on a PR, log into the aix server and create a new branch
testaix:
if: github.repository_owner == 'oshi'
runs-on: ubuntu-latest
name: Test JDK 17, aix
steps:
- name: Test in AIX
uses: appleboy/ssh-action@master
with:
host: gcc119.fsffrance.org
username: oshi
key: ${{ secrets.AIX_OSHI_KEY }}
port: 22
script_stop: true
command_timeout: 15m
script: |
cd ~/git/oshi
export JAVA_HOME=/opt/ibm-semeru-open-17-jdk
git checkout master
git reset --hard HEAD~2
git pull upstream master
./mvnw clean test -B -Djacoco.skip=true -Dlicense.skip=true
| Update AIX test to JDK 17 | Update AIX test to JDK 17 | YAML | mit | dbwiddis/oshi |
836f92b61541e058a45a04ece788dfc986721d15 | .github/workflows/main.yml | .github/workflows/main.yml | name: Test & Publish
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew test
publish:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/develop'
needs: test
steps:
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew clean uploadArchives
env:
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
| name: Test & Publish
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew test
publish:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/develop'
needs: test
steps:
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew clean publish
env:
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
| Update the publish task name. | Update the publish task name.
| YAML | apache-2.0 | bluelinelabs/Conductor,bluelinelabs/Conductor |
b8ce731be810cf5c80c3d77f85a64a3eec98ee35 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
fail-fast: false
matrix:
# need to figure out how to use redis on macos github actions
# os: [ubuntu, macos]
os: [ubuntu]
# remove until I sort out CI issues for truffle
# truffleruby,
# truffleruby-head,
ruby: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0, jruby, jruby-head]
redis-version: [4, 5, 6]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v2
- uses: supercharge/redis-github-action@1.2.0
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake
| name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
fail-fast: false
matrix:
# need to figure out how to use redis on macos github actions
# os: [ubuntu, macos]
os: [ubuntu]
# remove until I sort out CI issues for truffle
# truffleruby,
# truffleruby-head,
ruby: [2.3, 2.4, 2.5, 2.6, 2.7, "3.0", jruby, jruby-head]
redis-version: [4, 5, 6]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v2
- uses: supercharge/redis-github-action@1.2.0
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake
| Fix CI setting for Ruby 3.0 | Fix CI setting for Ruby 3.0
| YAML | mit | danmayer/coverband,danmayer/coverband,danmayer/coverband,danmayer/coverband |
e448afec42d447bebf45abd1d4df4dda92e19414 | .github/workflows/main.yml | .github/workflows/main.yml | name: Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Installing dependencies
run: |
sudo apt update && sudo apt install make -y
git clone https://github.com/estesp/manifest-tool && cd manifest-tool && git checkout v0.9.0 && sudo make && sudo make install && cd .. && rm -Rf manifest-tool
docker run --rm --privileged multiarch/qemu-user-static:register
sudo apt install -y qemu qemu-user-static qemu-user binfmt-support
echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_LOGIN }}" --password-stdin
- name: Build image
run: make build-docker
- name: Publish image
run: make publish-docker latest
| name: Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v1
- name: Installing dependencies
run: |
sudo apt update && sudo apt install make -y
git clone https://github.com/estesp/manifest-tool && cd manifest-tool && git checkout v0.9.0 && sudo make && sudo make install && cd .. && rm -Rf manifest-tool
docker run --rm --privileged multiarch/qemu-user-static:register
sudo apt install -y qemu qemu-user-static qemu-user binfmt-support
echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_LOGIN }}" --password-stdin
- name: Build image
run: make build-docker
- name: Publish image
run: make publish-docker latest
| Rollback ubuntu for qemu to not segfault | Rollback ubuntu for qemu to not segfault
| YAML | mit | femtopixel/docker-google-closure-compiler-api,femtopixel/docker-google-closure-compiler-api |
426f96617a5d95b4d6304275df1164da3ee2fa00 | .github/workflows/test.yml | .github/workflows/test.yml | on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.15, 1.16]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2.3.4
- uses: actions/cache@v2.1.7
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
- name: Vet
run: go vet ./...
- name: Test
run: go test -v -race ./...
| on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.16, 1.17]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2.3.4
- uses: actions/cache@v2.1.7
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
- name: Vet
run: go vet ./...
- name: Test
run: go test -v -race ./...
| Remove Go 1.15, add 1.17 | Remove Go 1.15, add 1.17 | YAML | bsd-3-clause | cloudflare/cloudflare-go,cloudflare/cloudflare-go |
23ee8d94714a0658c384b6b2fa81c6cf4516d4f0 | .github/workflows/test.yml | .github/workflows/test.yml | name: test
on:
push:
schedule:
- cron: "0 8 * * 6" # UTC 08:00 (Sat)
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install egison
run: |
curl --retry 3 -OL https://git.io/egison.x86_64.deb
dpkg -i ./egison.x86_64.deb
- name: Run tests
run: ./test.sh
| name: test
on:
push:
schedule:
- cron: "0 8 * * 6" # UTC 08:00 (Sat)
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install egison
run: |
curl --retry 3 -OL https://git.io/egison.x86_64.deb
sudo dpkg -i ./egison.x86_64.deb
- name: Run tests
run: ./test.sh
| Use sudo with dpkg install | Use sudo with dpkg install
| YAML | mit | greymd/egzact |
b456df51ac46a2b56cdb0a33b51bf921f144ecd3 | install.conf.yaml | install.conf.yaml | - defaults:
link:
relink: true
relative: true
- clean: ['~']
- link:
~/.dotfiles: ''
~/.bash_profile: bash/bash_profile
~/.bashrc: bash/bashrc
~/.gitconfig: gitconfig
~/.inputrc: inputrc
~/.liquidpromptrc: bash/liquidpromptrc
~/.tmux.conf: tmux.conf
~/.vim: vim
~/.vimrc: vimrc
- shell:
- [git submodule update --init --recursive, Installing submodules]
| - defaults:
link:
relink: true
relative: true
- clean: ['~']
- link:
~/.dotfiles: ''
~/.bash_profile: bash/bash_profile
~/.bashrc: bash/bashrc
~/.gitconfig: gitconfig
~/.inputrc: inputrc
~/.liquidpromptrc: bash/liquidpromptrc
~/.tmux.conf: tmux.conf
~/.vim: vim
~/.vimrc: vimrc
- shell:
- [git submodule update --init --recursive, Installing submodules]
- mkdir -p -m 0700 ~/tmp/vim
| Create ~/tmp in dotbot setup | Create ~/tmp in dotbot setup
| YAML | unlicense | akselsjogren/dotfiles,akselsjogren/dotfiles,akselsjogren/dotfiles |
620a18735d6608f2bdd1f4a2bb1234fa88b53225 | defaults/main.yml | defaults/main.yml | ---
solita_jenkins_plugins: []
solita_jenkins_users: []
solita_jenkins_absent_users: []
solita_jenkins_jobs_dir: "{{ playbook_dir }}/jobs/"
| ---
solita_jenkins_plugins: []
solita_jenkins_users: []
solita_jenkins_absent_users: []
solita_jenkins_jobs_dir: "{{ playbook_dir }}/jobs"
| Remove trailing slash from solita_jenkins_jobs_dir | Remove trailing slash from solita_jenkins_jobs_dir
| YAML | mit | solita/ansible-role-solita.jenkins,solita/ansible-role-solita.jenkins,solita/ansible-role-solita.jenkins |
e1204da909f5f28521cc0370122d8fa5019adfc4 | packages/de/desert.yaml | packages/de/desert.yaml | homepage: https://github.com/zjhmale/desert
changelog-type: ''
hash: a66e1eedefcf1470bb62224731ebb940fb2c266bde796ed0249723141217383a
test-bench-deps:
base: -any
hspec: -any
desert: -any
maintainer: zjhmale@gmail.com
synopsis: a simple build tool for OCaml projects
changelog: ''
basic-deps:
shake: -any
bytestring: ! '>=0.10.4.0'
base: ! '>=4.7 && <5'
filepath: ! '>=1.3.0.2'
process: -any
transformers: -any
http-conduit: -any
desert: -any
directory: ! '>=1.2.1.0'
all-versions:
- '0.1.0.0'
author: zjhmale
latest: '0.1.0.0'
description-type: haddock
description: Please see README.md
license-name: BSD3
| homepage: https://github.com/zjhmale/desert
changelog-type: ''
hash: 8f7bd6392dfd5653a7839cc6212fd9d4f732f160f00f01d9ba00020d257befd6
test-bench-deps:
base: -any
hspec: -any
desert: -any
maintainer: zjhmale@gmail.com
synopsis: a simple build tool for OCaml projects
changelog: ''
basic-deps:
MissingH: -any
bytestring: ! '>=0.10.4.0'
base: ! '>=4.7 && <5'
filepath: ! '>=1.3.0.2'
process: -any
transformers: -any
http-conduit: -any
desert: -any
directory: ! '>=1.2.1.0'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: zjhmale
latest: '0.1.0.1'
description-type: haddock
description: Please see README.md
license-name: BSD3
| Update from Hackage at 2016-08-07T09:40:39+0000 | Update from Hackage at 2016-08-07T09:40:39+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
d5010db1ddf59158991fc001333d1f857fb9ff58 | packages/hw/hw-int.yaml | packages/hw/hw-int.yaml | homepage: http://github.com/haskell-works/hw-int#readme
changelog-type: ''
hash: 8adf260df9d8a4ce8c929d9016b3b598c41b0490b5105a23f1003dc841e6c482
test-bench-deps: {}
maintainer: newhoggy@gmail.com
synopsis: Integers
changelog: ''
basic-deps:
base: ! '>=4 && <5'
all-versions:
- '0.0.0.1'
author: John Ky
latest: '0.0.0.1'
description-type: markdown
description: ! '# hw-int
[](https://circleci.com/gh/haskell-works/hw-int/tree/0-branch)
'
license-name: BSD3
| homepage: http://github.com/haskell-works/hw-int#readme
changelog-type: ''
hash: 620e5aac29cc4233955352b0ef77bd8d24a1afe351aa27a6492c4d5bb9d18911
test-bench-deps: {}
maintainer: newhoggy@gmail.com
synopsis: Integers
changelog: ''
basic-deps:
base: ! '>=4 && <5'
all-versions:
- '0.0.0.1'
- '0.0.0.3'
author: John Ky
latest: '0.0.0.3'
description-type: markdown
description: ! '# hw-int
[](https://circleci.com/gh/haskell-works/hw-int/tree/0-branch)
'
license-name: BSD3
| Update from Hackage at 2017-08-26T13:53:40Z | Update from Hackage at 2017-08-26T13:53:40Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1f02f4e98b8497241bee454cfc8c20cd40256315 | packages/lo/looper.yaml | packages/lo/looper.yaml | homepage: https://github.com/NorfairKing/looper#readme
changelog-type: markdown
hash: 121b759df8b7fbee186fa4419cee066b5bb9f068d410880234fba87743ec441a
test-bench-deps:
unliftio: -any
base: ! '>=4.7 && <5'
time: -any
hspec: -any
text: -any
looper: -any
optparse-applicative: -any
aeson: -any
maintainer: syd@cs-syd.eu
synopsis: ''
changelog: "# Changelog\n \n## [Unreleased]\n\n## [0.0.0.2] - 2019-05-15\n\n### Changed\n\n*
Exposed 'readLooperEnvironment'\n* Doc fix\n\n## [0.0.0.1] - 2019-05-15\n\n### Changed\n\n*
Better docs\n\n## [0.0.0.0] - 2019-05-15\n\nInitial version\n"
basic-deps:
unliftio: -any
base: ! '>=4.7 && <5'
time: -any
text: -any
optparse-applicative: -any
aeson: -any
all-versions:
- 0.0.0.0
- 0.0.0.1
- 0.0.0.2
author: Tom Sydney Kerckhove
latest: 0.0.0.2
description-type: markdown
description: |
# looper
license-name: BSD-3-Clause
| homepage: https://github.com/NorfairKing/looper#readme
changelog-type: ''
hash: badfcea5ee08935390e17fb67176024d120e6f941bf910f77ff273e41924f308
test-bench-deps:
unliftio: -any
base: '>=4.7 && <5'
looper: -any
sydtest: -any
optparse-applicative: -any
autodocodec-yaml: -any
maintainer: syd@cs-syd.eu
synopsis: ''
changelog: ''
basic-deps:
unliftio: -any
base: '>=4.7 && <5'
time: -any
text: -any
envparse: -any
autodocodec: -any
optparse-applicative: -any
aeson: -any
all-versions:
- 0.0.0.0
- 0.0.0.1
- 0.0.0.2
- 0.2.0.1
author: Tom Sydney Kerckhove
latest: 0.2.0.1
description-type: haddock
description: Configure and run recurring jobs indefinitely
license-name: MIT
| Update from Hackage at 2022-05-07T11:05:47Z | Update from Hackage at 2022-05-07T11:05:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
5a56d0fe4c3442662b76bac95dbf8c6dd283830c | baseboxes/precise64-ruby/ansible/devbox.yml | baseboxes/precise64-ruby/ansible/devbox.yml | ---
- hosts: all
sudo: yes
vars:
bundler_version: "1.6.2"
ruby_version: "2.1"
tasks:
- name: Install Ansible apt dependencies
apt: pkg={{item}} state=installed
with_items:
- python-pycurl
- python-psycopg2
- libpq-dev
- name: Configure Brightbox Ruby apt repo
apt_repository: repo="ppa:brightbox/ruby-ng"
- name: Configure Chris Lea apt repo for node.js
apt_repository: repo="ppa:chris-lea/node.js"
- name: Update packages after adding repos
apt: update_cache=yes
- name: Install stack packages
apt: pkg={{item}} state=installed
with_items:
- "ruby{{ruby_version}}"
- "ruby{{ruby_version}}-dev"
- nodejs
- postgresql
- build-essential
- libsqlite3-dev
- sqlite
- name: Upgrade Linux packages
apt: upgrade=dist
- name: Install bash aliases
template:
src=templates/bash_aliases.j2
dest=/home/vagrant/.bash_aliases
mode=644
owner=vagrant
group=vagrant
- name: Install bundler
gem: name=bundler state=present version="{{bundler_version}}" user_install=no
- name: Drop and recreate postgres templates with correct locale.
script: pg_rebuild_cluster.sh
- hosts: all
sudo: no
tasks:
- name: Preinstall gems for greater speed.
shell: bundle install --gemfile=/vagrant/Gemfile
| ---
- hosts: all
sudo: yes
vars:
ruby_version: "2.1"
tasks:
- name: Install Ansible apt dependencies
apt: pkg={{item}} state=installed
with_items:
- python-pycurl
- python-psycopg2
- libpq-dev
- name: Configure Brightbox Ruby apt repo
apt_repository: repo="ppa:brightbox/ruby-ng"
- name: Configure Chris Lea apt repo for node.js
apt_repository: repo="ppa:chris-lea/node.js"
- name: Update packages after adding repos
apt: update_cache=yes
- name: Install stack packages
apt: pkg={{item}} state=installed
with_items:
- "ruby{{ruby_version}}"
- "ruby{{ruby_version}}-dev"
- nodejs
- postgresql
- build-essential
- libsqlite3-dev
- sqlite
- name: Upgrade Linux packages
apt: upgrade=dist
- name: Install bash aliases
template:
src=templates/bash_aliases.j2
dest=/home/vagrant/.bash_aliases
mode=644
owner=vagrant
group=vagrant
- name: Install bundler
gem: name=bundler state=present user_install=no
- name: Drop and recreate postgres templates with correct locale.
script: pg_rebuild_cluster.sh
- hosts: all
sudo: no
tasks:
- name: Preinstall gems for greater speed.
shell: bundle install --gemfile=/vagrant/Gemfile
| Install latest Bundler version each time we rebuild. | Install latest Bundler version each time we rebuild.
| YAML | mit | mechfish/cannery,mechfish/cannery |
9d255cb4fcd7dd23bbf54706cf2340962a0c5a5e | .eslintrc.yaml | .eslintrc.yaml | env:
node: true
rules:
no-console: off
max-len: [error, 120]
prefer-template: off
no-constant-condition: [error, {checkLoops: false}]
no-unused-vars: [error, {argsIgnorePattern: '^(err$|_)'}]
no-param-reassign: [error, {props: false}]
extends: airbnb
installedESLint: true
| env:
node: true
rules:
no-console: off
max-len: [error, 120]
prefer-template: off
no-constant-condition: [error, {checkLoops: false}]
no-unused-vars: [error, {argsIgnorePattern: '^(err$|_)'}]
no-param-reassign: [error, {props: false}]
import/no-unresolved: [error, {ignore: ['tokens.json']}]
extends: airbnb
installedESLint: true
| Make eslint ignore `tokens.json` resolve issues | Make eslint ignore `tokens.json` resolve issues
This will make eslint NOT report the missing `tokens.json`, so CI can be happy.
| YAML | mit | Samoxive/AwesomeBot,rgoliveira/AwesomeBot |
819a2a266becffa5f65b4e408f06c63b75065315 | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- docker info
- cat /etc/hosts
after_script:
# We need to clean up any files that Toil may have made via Docker that
# aren't deletable by the Gitlab user. If we don't do this, Gitlab will try
# and clean them up before running the next job on the runner, fail, and fail
# that next job.
- pwd
- sudo rm -rf tmp
stages:
- py2
- py3
py2-job:
stage: py2
script:
- pwd
- virtualenv -p python2.7 venv && . venv/bin/activate && make prepare && make develop extras=[all] && pip install htcondor && make test
py3-job:
stage: py3
script:
- pwd
- virtualenv -p python3.6 venv && . venv/bin/activate && make prepare && make develop extras=[all] && pip install htcondor && make test
| before_script:
- docker info
- cat /etc/hosts
after_script:
# We need to clean up any files that Toil may have made via Docker that
# aren't deletable by the Gitlab user. If we don't do this, Gitlab will try
# and clean them up before running the next job on the runner, fail, and fail
# that next job.
- pwd
- sudo rm -rf tmp
stages:
- test
py2-job:
stage: test
script:
- pwd
- virtualenv -p python2.7 venv && . venv/bin/activate && make prepare && make develop extras=[all] && pip install htcondor && PYTHONIOENCODING=utf-8 make test
py3-job:
stage: test
script:
- pwd
- virtualenv -p python3.6 venv && . venv/bin/activate && make prepare && make develop extras=[all] && pip install htcondor && PYTHONIOENCODING=utf-8 make test
| Test in parallel with UTF-8 encoding on standard IO | Test in parallel with UTF-8 encoding on standard IO
| YAML | apache-2.0 | BD2KGenomics/slugflow,BD2KGenomics/slugflow |
9401ff6f37d98d7c3ba75f05bc93ca9f473cc7be | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
# Report the versions of varioius software, to make diagnosing problems
# easier:
- ghc --version
- cabal --version
- capnp --version
# Update the hackage databse:
- cabal update
test:alltests:
image: zenhack/haskell-capnp-ci
script:
# Run the tests:
- cabal new-build
- cabal new-test
# Linting:
- ./hlint.sh
# Run stylish-haskell, and fail if it changes anything:
- ./format.sh
- git diff --exit-code
| before_script:
# Report the versions of varioius software, to make diagnosing problems
# easier:
- ghc --version
- cabal --version
- capnp --version
- stylish-haskell --version
- hlint --version
# Update the hackage databse:
- cabal update
test:alltests:
image: zenhack/haskell-capnp-ci
script:
# Run the tests:
- cabal new-build
- cabal new-test
# Linting:
- ./hlint.sh
# Run stylish-haskell, and fail if it changes anything:
- ./format.sh
- git diff --exit-code
| Print out versions of a few more tools | Print out versions of a few more tools
| YAML | mit | zenhack/haskell-capnp |
f353637e21aeb811be7f9af5d3b800ebd1251336 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build
build_project:
stage: build
script:
- git submodule sync # In case .gitmodules changed and we're in 'fetch' mode
- git submodule update --init --recursive
- make -k
tags:
- make
- c
- sh
- freebsd
## How-to install on FreeBSD (sshd highly recommended):
# pkg install wget security/ca_root_nss gcc git
# wget -O /usr/local/bin/gitlab-ci-multi-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-amd64
## wget -O /usr/local/bin/gitlab-ci-multi-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-386
# chmod +x /usr/local/bin/gitlab-ci-multi-runner
# /usr/local/bin/gitlab-ci-multi-runner register # Needs the token from the website
# /usr/local/bin/gitlab-ci-multi-runner --debug --log-level debug run > & runner.log &
| stages:
- build
build_project:
stage: build
script:
- git submodule sync # In case .gitmodules changed and we're in 'fetch' mode
- git submodule update --init --recursive
# WORKAROUND 1:
# The problem:
# https://lists.freebsd.org/pipermail/freebsd-hackers/2004-October/008809.html
# The solution:
# https://lists.freebsd.org/pipermail/freebsd-hackers/2004-October/008816.html
# WORKAROUND 2:
# 'make -k' not only keeps going, it also silently ignores any errors of
# subtargets. If you want more verbose error messages on FreeBSD, go fix their
# broken 'make' first.
- env MAKEOBJDIR="83dfd219-a074-4361-9442-b38485644ad1" make
tags:
- make
- c
- sh
- freebsd
## How-to install on FreeBSD (sshd highly recommended):
# pkg install wget security/ca_root_nss gcc git
# wget -O /usr/local/bin/gitlab-ci-multi-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-amd64
## wget -O /usr/local/bin/gitlab-ci-multi-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-386
# chmod +x /usr/local/bin/gitlab-ci-multi-runner
# /usr/local/bin/gitlab-ci-multi-runner register # Needs the token from the website
# /usr/local/bin/gitlab-ci-multi-runner --debug --log-level debug run > & runner.log &
| Work around BSD make bugs | Work around BSD make bugs
| YAML | mit | BenWiederhake/endian-ci,BenWiederhake/endian-ci |
1db88a72160bf1e3ff742efc24dbb2575c222c61 | .gitlab-ci.yml | .gitlab-ci.yml | image: fedora:latest
before_script:
- dnf install 'dnf-command(copr)' git libtool make -y
- dnf copr enable @spice/nightly -y
- dnf builddep spice -y
makecheck:
script:
- ./autogen.sh
- make
- make -C server check
statistics:
script:
- CFLAGS="$CFLAGS -DRED_STATISTICS " ./autogen.sh
- make
- make -C server check
| image: fedora:latest
before_script:
- dnf install 'dnf-command(copr)' git libtool make -y
- dnf copr enable @spice/nightly -y
- dnf builddep spice -y
makecheck:
script:
- ./autogen.sh
- make
- make -C server check
statistics:
script:
- CFLAGS="$CFLAGS -DRED_STATISTICS " ./autogen.sh
- make
- make -C server check
| Remove space at end of line | syntax-check: Remove space at end of line
Signed-off-by: Frediano Ziglio <55d48b080b2e443e395cde84d2c83b135a4ff48e@redhat.com>
Acked-by: Christophe Fergeau <05b95054a663c388a4e33d95828cb30f0370f8ef@redhat.com>
| YAML | lgpl-2.1 | fgouget/spice,fgouget/spice,fgouget/spice,fgouget/spice |
5526c3160f5d85d839af0d4860819a2e417750e0 | .gitlab-ci.yml | .gitlab-ci.yml | # some example of GitLab's CI file for python projects
# - https://dezoito.github.io/2016/05/11/django-gitlab-continuous-integration-phantomjs.html
# - https://docs.gitlab.com/ce/ci/examples/test-and-deploy-python-application-to-heroku.html
image: python:3.5
services:
- postgres:9.3
variables:
# Configure postgres service (https://hub.docker.com/_/postgres/)
# based on https://gitlab.com/gitlab-examples/postgres/blob/master/.gitlab-ci.yml
# and http://docs.gitlab.com/ce/ci/services/postgres.html
POSTGRES_DB: web_scraper_test
POSTGRES_USER: web_scraper_user
POSTGRES_PASSWORD: web_scraper_pwd
test:
script:
# installs libpq-dev which is required by psycopg2
# avoiding error message like:
# Error: b'You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.\n'
# see more at https://pypi.python.org/pypi/psycopg2
- apt-get -qq update
- apt-get -y -qq install libpq-dev
# install project's dependencies
- pip install -r requirements.txt
# actually execute tests
- python3 manage.py test
| # some example of GitLab's CI file for python projects
# - https://dezoito.github.io/2016/05/11/django-gitlab-continuous-integration-phantomjs.html
# - https://docs.gitlab.com/ce/ci/examples/test-and-deploy-python-application-to-heroku.html
image: python:3.5
services:
- postgres:9.3
variables:
# Configure postgres service (https://hub.docker.com/_/postgres/)
# based on https://gitlab.com/gitlab-examples/postgres/blob/master/.gitlab-ci.yml
# and http://docs.gitlab.com/ce/ci/services/postgres.html
POSTGRES_DB: web_scraper_test
POSTGRES_USER: web_scraper_user
POSTGRES_PASSWORD: web_scraper_pwd
test:
script:
# installs libpq-dev which is required by psycopg2
# avoiding error message like:
# Error: b'You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.\n'
# see more at https://pypi.python.org/pypi/psycopg2
- apt-get -qq update
- apt-get -y -qq install libpq-dev
# install project's dependencies
- pip install -r requirements.txt
# actually execute tests
- python3 manage.py test --noinput
| Set `--noinput` argument to test command | Set `--noinput` argument to test command
Avoid error with message *'database "web_scraper_test" already exists'* in CI environment by setting `--noinput` argument to test command.
Setting `--noinput` to a non-interactive environment seems a reasonable action anyway
| YAML | mit | fcv/simple-web-scraper,fcv/simple-web-scraper |
c929d7dc04f597981fd5c76d694b7ff8f2a88003 | web/app.yaml | web/app.yaml | application: dartpad-dev
version: prod
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: .*
script: main.app
login: required
libraries:
- name: webapp2
version: "2.5.2"
| application: dart-codepad
version: prod
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: .*
script: main.app
login: required
libraries:
- name: webapp2
version: "2.5.2"
| Move to serving location on Appengine | Move to serving location on Appengine
| YAML | bsd-3-clause | dart-lang/dart-pad,kasperpeulen/dart-pad,dart-lang/dart-pad,kasperpeulen/dart-pad,kasperpeulen/dart-pad,kasperpeulen/dart-pad,dart-lang/dart-pad,dart-lang/dart-pad |
29caaebfb5edbd23a3658eb5d238bd3a70e6dd07 | playbooks/roles/overcloud/defaults/main.yml | playbooks/roles/overcloud/defaults/main.yml | install_script: undercloud-install
install_log: "{{ working_dir }}/undercloud_install.log"
deploy_script: overcloud-deploy
deploy_log: "{{ working_dir }}/overcloud_deploy.log"
validate_script: overcloud-validate
validate_log: "{{ working_dir }}/overcloud_validate.log"
local_working_dir: ~/.quickstart
working_dir: /home/stack
floating_ip_cidr: "192.0.2.0/24"
floating_ip_start: 192.0.2.100
floating_ip_end: 192.0.2.120
external_network_gateway: 192.0.2.1
introspect: true
tempest: true
pingtest: false
release: liberty
bash_deploy_ramdisk: true
create_flavors: false
custom_flavors:
- control
- compute
- ceph
deploy_timeout: 60
control_args: "--control-flavor control"
compute_args: "--compute-flavor compute"
ceph_args: ""
extra_environments: ""
libvirt_args: "--libvirt-type qemu"
deploy_args: "{{ libvirt_args }} --timeout {{ deploy_timeout }} {{ control_args }} {{ compute_args }} {{ ceph_args }} {{ extra_environments }}" | install_script: undercloud-install
install_log: "{{ working_dir }}/undercloud_install.log"
deploy_script: overcloud-deploy
deploy_log: "{{ working_dir }}/overcloud_deploy.log"
validate_script: overcloud-validate
validate_log: "{{ working_dir }}/overcloud_validate.log"
local_working_dir: ~/.quickstart
working_dir: /home/stack
floating_ip_cidr: "192.0.2.0/24"
floating_ip_start: 192.0.2.100
floating_ip_end: 192.0.2.120
external_network_gateway: 192.0.2.1
introspect: true
tempest: true
pingtest: false
release: liberty
bash_deploy_ramdisk: true
create_flavors: false
custom_flavors:
- control
- compute
- ceph
deploy_timeout: 60
control_args: "--control-flavor control"
compute_args: "--compute-flavor compute"
ceph_args: ""
extra_args: ""
libvirt_args: "--libvirt-type qemu"
deploy_args: "{{ libvirt_args }} --timeout {{ deploy_timeout }} {{ control_args }} {{ compute_args }} {{ ceph_args }} {{ extra_args }}" | Fix HA jobs not passing HA args to deploy | Fix HA jobs not passing HA args to deploy
Change-Id: I1f54d04fedbe12191d13012a21dfab88d13415e4
| YAML | apache-2.0 | redhat-openstack/tripleo-quickstart,redhat-openstack/tripleo-quickstart |
b0ef6cf5d725731db27f03117154af013406b1e3 | docker-paas.yml | docker-paas.yml | www:
build: nginx
volumes_from:
- client
links:
- server
ports:
- "8080"
redis:
image: redis
server:
build: server
user: app
links:
- redis
ports:
- "8080"
environment:
- APP_PORT=8080
- APP_URL=http://hytte.app.dnt.no
- NODE_ENV=production
- NTB_API_ENV=api
- NTB_API_KEY
- NTB_USER_EMAIL
- NTB_USER_NAME
- NTB_USER_PASSWORD
- TMPDIR=/tmp
command: npm start
client:
build: client
user: app
volumes:
- /usr/src/app/dist
environment:
- NODE_ENV=development
command: /bin/true
| www:
build: nginx
volumes_from:
- client
links:
- server
ports:
- "8080"
redis:
image: redis
server:
build: server
user: app
links:
- redis
ports:
- "8080"
environment:
- APP_PORT=8080
- APP_URL=http://hytte.app.dnt.no
- NODE_ENV=production
- NTB_API_ENV=api
- NTB_API_KEY
command: npm start
client:
build: client
user: app
volumes:
- /usr/src/app/dist
environment:
- NODE_ENV=development
command: /bin/true
| Remove unreferenced envionment variables from prod | Remove unreferenced envionment variables from prod
| YAML | mit | Turistforeningen/Hytteadmin,Turistforeningen/Hytteadmin |
d392481b4d20995ce0312514e58cbe64ab0d1ec5 | docs/antora.yml | docs/antora.yml | name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: '1.29'
nav:
- modules/ROOT/nav.adoc
| name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: ~
nav:
- modules/ROOT/nav.adoc
| Switch back the docs version | Switch back the docs version
| YAML | mit | rrosenblum/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,rrosenblum/rubocop |
62e5a0342d5c30a2887b851d48da9d6df419e29d | docs/antora.yml | docs/antora.yml | name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: '1.35'
nav:
- modules/ROOT/nav.adoc
| name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: ~
nav:
- modules/ROOT/nav.adoc
| Switch back the docs version | Switch back the docs version
| YAML | mit | rrosenblum/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,tejasbubane/rubocop |
2d8ea1502f369b6de62c48bcbb9bd2e88001011f | docs/antora.yml | docs/antora.yml | name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: '1.26'
nav:
- modules/ROOT/nav.adoc
| name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: ~
nav:
- modules/ROOT/nav.adoc
| Switch back the docs version | Switch back the docs version
| YAML | mit | rrosenblum/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,tejasbubane/rubocop |
e1591b29c20d143f916c15c096fdcc05fec82dde | docs/mkdocs.yml | docs/mkdocs.yml | site_name: Transit Data Tools Docs
site_url: http://conveyal-data-tools.readthedocs.io
repo_url: https://github.com/conveyal/datatools-manager
docs_dir: ../docs
site_dir: ../target/mkdocs
theme: bootstrap
extra_css: [style.css]
pages:
- Home: 'index.md'
- User Guide:
- 'Indroduction': 'user/introduction.md'
- 'Managing Projects & Feeds': 'user/managing-projects-feeds.md'
- 'Managing Users': 'user/managing-users.md'
- 'Appendix: GTFS Validation Warnings': 'user/appendix-gtfs-warnings.md'
- Development Guide:
- 'Deployment': 'dev/deployment.md'
- 'Development': 'dev/development.md'
| site_name: Transit Data Tools Docs
site_url: http://conveyal-data-tools.readthedocs.io
repo_url: https://github.com/conveyal/datatools-manager
docs_dir: ../docs
site_dir: ../target/mkdocs
theme: readthedocs
extra_css: [style.css]
pages:
- Home: 'index.md'
- User Guide:
- 'Indroduction': 'user/introduction.md'
- 'Managing Projects & Feeds': 'user/managing-projects-feeds.md'
- 'Managing Users': 'user/managing-users.md'
- 'Appendix: GTFS Validation Warnings': 'user/appendix-gtfs-warnings.md'
- Development Guide:
- 'Deployment': 'dev/deployment.md'
- 'Development': 'dev/development.md'
| Switch docs back to readthedocs theme | Switch docs back to readthedocs theme
| YAML | mit | conveyal/datatools-manager,conveyal/datatools-manager,conveyal/datatools-manager,conveyal/datatools-manager |
acf1158586ca517ece3f184bd249c5d13874c15d | hieradata_aws/class/production/content_data_api_db_admin.yaml | hieradata_aws/class/production/content_data_api_db_admin.yaml | govuk_env_sync::tasks:
# Temporary task to pull data from Carrenza production
"pull_content_performance_manager_production_daily":
ensure: "absent"
hour: "2"
minute: "0"
action: "pull"
dbms: "postgresql"
storagebackend: "s3"
# Use the old database name for consistency while still working on
# the migration for the Content Performance Manager
database: "content_performance_manager_production"
temppath: "/tmp/content_performance_manager_production"
url: "govuk-production-database-backups"
path: "warehouse-postgresql"
# Use the new Content Data API name here, to avoid issues with
# changing the name later
"push_content_data_api_production_daily":
ensure: "present"
hour: "3"
minute: "0"
action: "push"
dbms: "postgresql"
storagebackend: "s3"
# Use the old database name for consistency while still working on
# the migration for the Content Performance Manager
database: "content_performance_manager_production"
temppath: "/tmp/content_data_api_production"
url: "govuk-production-database-backups"
path: "content-data-api-postgresql"
| govuk_env_sync::tasks:
# Use the new Content Data API name here, to avoid issues with
# changing the name later
"push_content_data_api_production_daily":
ensure: "present"
hour: "3"
minute: "0"
action: "push"
dbms: "postgresql"
storagebackend: "s3"
# Use the old database name for consistency while still working on
# the migration for the Content Performance Manager
database: "content_performance_manager_production"
temppath: "/tmp/content_data_api_production"
url: "govuk-production-database-backups"
path: "content-data-api-postgresql"
| Remove the temporary sync task for the Content Data API | Remove the temporary sync task for the Content Data API
This was used to move the database over from Carrenza, but now the
database in AWS is the one in use, so this task is no longer useful.
| YAML | mit | alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet |
e8ec8d0e07dd425b7c33f66a124368fe37677e2d | metadata/de.nproth.pin.yml | metadata/de.nproth.pin.yml | Categories:
- Writing
License: GPL-3.0-or-later
SourceCode: https://github.com/nproth/pin
IssueTracker: https://github.com/nproth/pin/issues
AutoName: p!n
RepoType: git
Repo: https://github.com/nproth/pin
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: 1.0.1
versionCode: 2
commit: v1.0.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.1
CurrentVersionCode: 2
| Categories:
- Writing
License: GPL-3.0-or-later
SourceCode: https://github.com/nproth/pin
IssueTracker: https://github.com/nproth/pin/issues
AutoName: p!n
RepoType: git
Repo: https://github.com/nproth/pin
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: 1.0.1
versionCode: 2
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: '1.1'
versionCode: 3
commit: v1.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.1'
CurrentVersionCode: 3
| Update p!n to 1.1 (3) | Update p!n to 1.1 (3)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata |
386d832bf1501165cb9840d8801447815f9718e0 | ansible/global_vars/devbox.yml | ansible/global_vars/devbox.yml | user_home_base: /home
user: wwwdev
group: wwwdev
domain: dev.local
nginx_configfile: vhost.conf
nginx_home_subfolder: /web
nginx_directoryindex: index.php
mysql_root_password: vagrant
database_name: dev_typo3
nginx_domain_aliases:
git_username: Benjamin Rau
git_email: rau@codearts.at
ssh_public_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0TCnsy9rkVJ7TOZaaiJ3qrkmUFOA1e0jmG7x+889coXe2PGmZ2KXtot4mqiu/Ka0ubvfJjVHS73wSn4S7VnLbLlv6/3Zn7RBQFa9WWZVZ5KBzMxL9Na8uKa4NXgWQrPcZh2gPL8jt5VDerIJgGP54tbOw235/b5qz/Tdit0adWyzMAADhH4YdOB/0nCaG3fUeg/tNqHBmGTXiuv4w6Py0DCIcnA5HtPkRPH2VL/Xp8jTdKR+bMcQ6hYv0D8JbHfMtNGhseq9ZkT+uxYPlbtKEsmmjNWCk+3HGxP1/NbzMh4wZzKOi2/6E9gPemhuJv88uV+pE+d8YdAoCD3KIoMJR
| user_home_base: /home
user: wwwdev
group: wwwdev
domain: dev.local
nginx_configfile: vhost.conf
nginx_home_subfolder: /web
nginx_directoryindex: index.php
mysql_root_password: vagrant
nginx_domain_aliases:
git_username: Benjamin Rau
git_email: rau@codearts.at
ssh_public_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0TCnsy9rkVJ7TOZaaiJ3qrkmUFOA1e0jmG7x+889coXe2PGmZ2KXtot4mqiu/Ka0ubvfJjVHS73wSn4S7VnLbLlv6/3Zn7RBQFa9WWZVZ5KBzMxL9Na8uKa4NXgWQrPcZh2gPL8jt5VDerIJgGP54tbOw235/b5qz/Tdit0adWyzMAADhH4YdOB/0nCaG3fUeg/tNqHBmGTXiuv4w6Py0DCIcnA5HtPkRPH2VL/Xp8jTdKR+bMcQ6hYv0D8JbHfMtNGhseq9ZkT+uxYPlbtKEsmmjNWCk+3HGxP1/NbzMh4wZzKOi2/6E9gPemhuJv88uV+pE+d8YdAoCD3KIoMJR
| Remove unused database name defintion | [TASK] Remove unused database name defintion
Will be declared in submodule typo3-bootstrap which contains the ansible role now
| YAML | mit | benjaminrau/devbox |
5cbc9c497e35cd4a20764f28d39d3fcc9dcfa638 | packages/sa/safe-decimal.yaml | packages/sa/safe-decimal.yaml | homepage: https://github.com/fpco/safe-decimal#readme
changelog-type: markdown
hash: 10545c701dd7f025a5675530a9fe44c61eff184de7eeaa33a5f4d7e5cb339560
test-bench-deps:
base: ! '>=4.7 && <5'
hspec: -any
safe-decimal: -any
deepseq: -any
scientific: -any
QuickCheck: -any
maintainer: alexey@fpcomplete.com
synopsis: Safe and very efficient arithmetic operations on fixed decimal point numbers
changelog: |
# Changelog for decimal64
## Unreleased changes
basic-deps:
exceptions: -any
base: ! '>=4.7 && <5'
deepseq: -any
scientific: -any
all-versions:
- 0.1.0.0
author: Alexey Kuleshevich
latest: 0.1.0.0
description-type: markdown
description: |
# safe-decimal
An implementation of a decimal point data type, that is backed by any custom integral type. It is
safe, because all runtime exceptions and integer overflows are prevented on arithmetic operations,
namely things like integer overflows, underflows, division by zero etc. are checked for during the
runtime.
license-name: BSD-3-Clause
| homepage: https://github.com/fpco/safe-decimal#readme
changelog-type: markdown
hash: 4367ad0954689f5bd1034f470374f50059b2345a73e5a5f34900aa5c846b8910
test-bench-deps:
base: ! '>=4.7 && <5'
hspec: -any
safe-decimal: -any
deepseq: -any
scientific: -any
QuickCheck: -any
maintainer: alexey@fpcomplete.com
synopsis: Safe and very efficient arithmetic operations on fixed decimal point numbers
changelog: |
# Changelog for decimal64
## Unreleased changes
basic-deps:
exceptions: -any
base: ! '>=4.8 && <5'
deepseq: -any
scientific: -any
all-versions:
- 0.1.0.0
author: Alexey Kuleshevich
latest: 0.1.0.0
description-type: markdown
description: |
# safe-decimal
An implementation of a decimal point data type, that is backed by any custom integral type. It is
safe, because all runtime exceptions and integer overflows are prevented on arithmetic operations,
namely things like integer overflows, underflows, division by zero etc. are checked for during the
runtime.
license-name: BSD-3-Clause
| Update from Hackage at 2019-04-26T07:57:59Z | Update from Hackage at 2019-04-26T07:57:59Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7cdb16c9d097f6cc63c5d0c2233164227a6d492b | packages/si/simpleconfig.yaml | packages/si/simpleconfig.yaml | homepage: https://github.com/koterpillar/simpleconfig#readme
changelog-type: ''
hash: f07610b3227e977b9e5260fb344fccac009235ab0aad687d3cb6e6b75813fe3c
test-bench-deps:
base: -any
text: -any
generic-deriving: -any
containers: -any
simpleconfig: -any
lens: -any
maintainer: a@koterpillar.com
synopsis: Short description of your package
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
containers: -any
lens: -any
all-versions:
- '0.0.1'
- '0.0.5'
- '0.0.7'
- '0.0.8'
- '0.0.9'
author: Alexey Kotlyarov
latest: '0.0.9'
description-type: markdown
description: ! '# simpleconfig
### Releasing
* Install [bumpversion](https://github.com/peritus/bumpversion): `pip install bumpversion`.
* Run `bumpversion major|minor|patch`.
* Run `git push --tags && git push`.
'
license-name: BSD3
| homepage: https://github.com/koterpillar/simpleconfig#readme
changelog-type: ''
hash: 48debab035555c1a26f7aa7a9df8b62f5e09b6e6b641607b00932ba8f7f080bb
test-bench-deps:
either: -any
base: -any
hspec: -any
text: -any
generic-deriving: -any
containers: -any
simpleconfig: -any
lens: -any
maintainer: a@koterpillar.com
synopsis: Short description of your package
changelog: ''
basic-deps:
either: -any
base: ! '>=4.7 && <5'
containers: -any
lens: -any
all-versions:
- '0.0.1'
- '0.0.5'
- '0.0.7'
- '0.0.8'
- '0.0.9'
- '0.0.10'
author: Alexey Kotlyarov
latest: '0.0.10'
description-type: markdown
description: ! '# simpleconfig
### Releasing
* Install [bumpversion](https://github.com/peritus/bumpversion): `pip install bumpversion`.
* Run `bumpversion major|minor|patch`.
* Run `git push --tags && git push`.
'
license-name: BSD3
| Update from Hackage at 2018-05-20T10:19:24Z | Update from Hackage at 2018-05-20T10:19:24Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6f4ebe452cba3a33c7b2df1e4bd1ff5e956386f0 | environment.yml | environment.yml | name: IOOS
channels:
- conda-forge
- ioos
dependencies:
- python=2.7
- anaconda-navigator
- beautifulsoup4
- cartopy
- cc-plugin-glider # Python 2.7
- cmocean
- compliance-checker
- ctd
- cython
- descartes
- fiona
- folium
- gdal
- geojson
- geojsonio
- geopandas
- geos
- gridgeo
- gsw
- iris
- jupyter
- matplotlib
- mpld3
- mplleaflet
- netcdf4
- numpy
- oceans
- oct2py
- owslib
- paegan
- pandas
- proj.4
- pygc
- pyhum # Python 2.7
- pykdtree
- pyoos # Python 2.7
- pyproj
- pyresample
- pysgrid
- pyugrid
- pyyaml
- qrcode
- rasterio
- rasterstats
- requests
- rios
- rtree
- scikit-learn
- scipy
- seaborn
- seawater
- shapely
- siphon
- spyder
- statsmodels
- sympy
- thredds_crawler
- utilities
- xarray
- xlrd
| name: IOOS
channels:
- conda-forge
- ioos
dependencies:
- python=2.7
- anaconda-navigator
- beautifulsoup4
- bokeh
- cartopy
- cc-plugin-glider # Python 2.7
- cmocean
- compliance-checker
- ctd
- cython
- descartes
- fiona
- folium
- gdal
- geojson
- geojsonio
- geopandas
- geos
- gridgeo
- gsw
- iris
- jupyter
- matplotlib
- mpld3
- mplleaflet
- netcdf4
- numpy
- oceans
- oct2py
- owslib
- paegan
- pandas
- proj.4
- pygc
- pyhum # Python 2.7
- pykdtree
- pyoos # Python 2.7
- pyproj
- pyresample
- pysgrid
- pyugrid
- pyyaml
- qrcode
- rasterio
- rasterstats
- requests
- rios
- rtree
- scikit-learn
- scipy
- seaborn
- seawater
- shapely
- siphon
- spyder
- statsmodels
- sympy
- thredds_crawler
- utilities
- xarray
- xlrd
| Add bokeh to env file | Add bokeh to env file
| YAML | mit | ocefpaf/notebooks_demos,ioos/notebooks_demos,ocefpaf/notebooks_demos |
d0abdad15832e635c86dfbce39fff6bbf0ce9375 | packages/he/hedgehog-optics.yaml | packages/he/hedgehog-optics.yaml | homepage: https://github.com/typeclasses/hedgehog-optics
changelog-type: ''
hash: 6b175081dcde845f19bc92224ad8ca126660459a69d9fe952975bfa78671090f
test-bench-deps: {}
maintainer: Chris Martin, Julie Moronuki
synopsis: Hedgehog properties for optics laws
changelog: ''
basic-deps:
optics-core: ^>=0.4
base: ^>=4.14 || ^>=4.15
hedgehog: ^>=1.0.4
all-versions:
- 1.0.0
author: Chris Martin
latest: 1.0.0
description-type: haddock
description: Are your prisms well-formed? Test and be confident.
license-name: MIT
| homepage: https://github.com/typeclasses/hedgehog-optics
changelog-type: text
hash: 7457ca3ad1a2ad6ec36ead7ada3cb329332d064346cba3e8e0e04e0a44f1d752
test-bench-deps: {}
maintainer: Chris Martin, Julie Moronuki
synopsis: Hedgehog properties for optics laws
changelog: |
1.0.0 - Initial release
1.0.0.1 - Employ Hedgehog's 'annotate' function for better error output
basic-deps:
optics-core: ^>=0.4
base: ^>=4.14 || ^>=4.15
hedgehog: ^>=1.0.4
all-versions:
- 1.0.0
- 1.0.0.1
author: Chris Martin
latest: 1.0.0.1
description-type: haddock
description: Are your prisms well-formed? Test and be confident.
license-name: MIT
| Update from Hackage at 2021-07-12T08:58:20Z | Update from Hackage at 2021-07-12T08:58:20Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
00aa559c723738f56e3c8d25ad4a9cde9578d185 | packages/ho/hoppy-generator.yaml | packages/ho/hoppy-generator.yaml | homepage: http://khumba.net/projects/hoppy
changelog-type: ''
hash: a5e1dbd4343e2deaf0b84572c08e22ad1426a0db1da53a5b17b4bf35b6be64f6
test-bench-deps: {}
maintainer: Bryan Gardiner <bog@khumba.net>
synopsis: C++ FFI generator - Code generator
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
filepath: ! '>=1.3 && <1.5'
containers: ! '>=0.5 && <0.6'
mtl: ! '>=2.1 && <2.3'
haskell-src: ! '>=1.0 && <1.1'
directory: ! '>=1.2 && <1.4'
all-versions:
- '0.1.0'
- '0.2.0'
- '0.2.1'
- '0.3.0'
- '0.3.1'
- '0.3.2'
- '0.3.3'
- '0.3.4'
- '0.4.0'
- '0.5.0'
author: Bryan Gardiner <bog@khumba.net>
latest: '0.5.0'
description-type: haddock
description: ! 'Hoppy generates Haskell bindings to C++ libraries.
This package is the code generator.'
license-name: AGPL-3
| homepage: http://khumba.net/projects/hoppy
changelog-type: ''
hash: 776ca86e9850e9bf76d2d2fb1fc8d4ddd86c4699fe27ddad41d39c6d63cec809
test-bench-deps: {}
maintainer: Bryan Gardiner <bog@khumba.net>
synopsis: C++ FFI generator - Code generator
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
filepath: ! '>=1.3 && <1.5'
containers: ! '>=0.5 && <0.6'
mtl: ! '>=2.1 && <2.3'
haskell-src: ! '>=1.0 && <1.1'
directory: ! '>=1.2 && <1.4'
all-versions:
- '0.1.0'
- '0.2.0'
- '0.2.1'
- '0.3.0'
- '0.3.1'
- '0.3.2'
- '0.3.3'
- '0.3.4'
- '0.4.0'
- '0.5.0'
- '0.5.1'
author: Bryan Gardiner <bog@khumba.net>
latest: '0.5.1'
description-type: haddock
description: ! 'Hoppy generates Haskell bindings to C++ libraries.
This package is the code generator.'
license-name: AGPL-3
| Update from Hackage at 2018-08-06T23:43:46Z | Update from Hackage at 2018-08-06T23:43:46Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
68c281e8c46c2117f0182f3d5c2fb64e41810be8 | packages/ve/vector-circular.yaml | packages/ve/vector-circular.yaml | homepage: ''
changelog-type: markdown
hash: b068956cfee7e9e976c8f6ffed7718310256dd6cbddb5a592e872b9164b22c09
test-bench-deps:
base: -any
hedgehog: -any
vector-circular: -any
hedgehog-classes: -any
maintainer: chessai <chessai1996@gmail.com>
synopsis: circular vectors
changelog: |
# Revision history for fun
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
semigroupoids: '>=5.3 && <5.4'
base: '>=4.11 && <4.15'
nonempty-vector: '>=0.2 && <0.3'
template-haskell: '>=2.12 && <2.17'
primitive: '>=0.6.4 && <0.8'
vector: '>=0.12 && <0.13'
all-versions:
- '0.1'
author: chessai
latest: '0.1'
description-type: markdown
description: |
# vector-circular
license-name: MIT
| homepage: ''
changelog-type: markdown
hash: f4a0c033d8b02f4f7b68de96cda66565eff013cff9d380b2e4df47ca0539269b
test-bench-deps:
base: -any
hedgehog: -any
vector-circular: -any
hedgehog-classes: -any
maintainer: chessai <chessai1996@gmail.com>
synopsis: circular vectors
changelog: |
# Revision history for fun
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
semigroupoids: '>=5.3 && <5.4'
base: '>=4.11 && <4.17'
deepseq: '>=1.4 && <1.5'
nonempty-vector: '>=0.2 && <0.3'
template-haskell: '>=2.12 && <2.17'
primitive: '>=0.6.4 && <0.8'
vector: '>=0.12 && <0.13'
all-versions:
- '0.1'
- 0.1.1
author: chessai
latest: 0.1.1
description-type: markdown
description: |
# vector-circular
license-name: MIT
| Update from Hackage at 2020-12-13T01:18:09Z | Update from Hackage at 2020-12-13T01:18:09Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
26086b26b86abf32c263641f73f5857945c2e783 | packages/ye/yesod-job-queue.yaml | packages/ye/yesod-job-queue.yaml | homepage: https://github.com/nakaji-dayo/yesod-job-queue#readme
changelog-type: ''
hash: aba2c457cb8174c56fcf8a46b05dcda173899df4f640f8731f4a3feac01ac243
test-bench-deps:
yesod-job-queue: -any
base: -any
maintainer: nakaji.dayo@gmail.com
synopsis: Background jobs library for Yesod. contains management API and web interface.
Queue backend is Redis.
changelog: ''
basic-deps:
bytestring: -any
yesod-job-queue: -any
stm: -any
yesod-core: -any
base: ! '>=4.7 && <5'
time: -any
text: -any
uuid: -any
cron: -any
yesod: -any
classy-prelude-yesod: -any
lens: -any
monad-logger: -any
file-embed: -any
api-field-json-th: -any
hedis: -any
resourcet: -any
persistent-sqlite: -any
aeson: -any
all-versions:
- '0.1.0.0'
author: Daishi Nakajima
latest: '0.1.0.0'
description-type: haddock
description: Please see README.md
license-name: BSD3
| homepage: https://github.com/nakaji-dayo/yesod-job-queue#readme
changelog-type: ''
hash: e4bca487a4bd98ad6c3567362cccc7cd75d9ef733e1343c7d15feb224a467f6c
test-bench-deps:
yesod-job-queue: -any
base: -any
maintainer: nakaji.dayo@gmail.com
synopsis: Background jobs library for Yesod. contains management API and web interface.
Queue backend is Redis.
changelog: ''
basic-deps:
bytestring: -any
yesod-job-queue: -any
stm: -any
yesod-core: -any
base: ! '>=4.7 && <5'
time: -any
text: -any
uuid: -any
cron: -any
yesod: -any
classy-prelude-yesod: -any
lens: -any
monad-logger: -any
file-embed: -any
api-field-json-th: -any
hedis: -any
resourcet: -any
persistent-sqlite: -any
aeson: -any
all-versions:
- '0.1.0.0'
author: Daishi Nakajima
latest: '0.1.0.0'
description-type: haddock
description: Please see README.md
license-name: BSD3
| Update from Hackage at 2016-04-19T03:39:53+0000 | Update from Hackage at 2016-04-19T03:39:53+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
41a0120abfab403c3f98515afb35560f19965c0b | .github/workflows/build.yml | .github/workflows/build.yml | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.1', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', 'head', 'truffleruby', 'truffleruby-head']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
| # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.1', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', 'head']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
| Remove Truffle ruby for now | Remove Truffle ruby for now
| YAML | mit | brandonhilkert/sucker_punch |
77e857bf6ad0644a0bfb925af8aef2744d4a405b | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [8, 11, 17]
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java-version }}
- run: ./gradlew build
- run: ./gradlew jacocoTestReport
- uses: codecov/codecov-action@v2
with:
directory: thymeleaf-layout-dialect/build/reports/jacoco/
| name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [8, 11, 17]
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- run: ./gradlew build
- run: ./gradlew jacocoTestReport
- uses: codecov/codecov-action@v2
with:
directory: thymeleaf-layout-dialect/build/reports/jacoco/
| Use new name for Eclipse Adoptium distributions | Use new name for Eclipse Adoptium distributions
| YAML | apache-2.0 | ultraq/thymeleaf-layout-dialect,ultraq/thymeleaf-layout-dialect |
26ddb86001036e1a56e332dbabd5564bd48a1f9c | .github/workflows/build.yml | .github/workflows/build.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
timeout-minutes: 20
steps:
- uses: actions/checkout@master
- name: Use Node.js 11.x
uses: actions/setup-node@v1
with:
version: 11.x
- name: npm install, build, and test
run: |
npm install
npm test
npm run build
shell: bash
env:
GITHASH: ${GITHUB_SHA}
| name: Node CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
timeout-minutes: 30
steps:
- uses: actions/checkout@master
- name: Use Node.js 11.x
uses: actions/setup-node@v1
with:
version: 11.x
- name: npm install, build, and test
run: |
npm install
npm test
npm run build
shell: bash
env:
GITHASH: ${GITHUB_SHA}
| Raise timeout limit for windows | Raise timeout limit for windows
| YAML | agpl-3.0 | nukeop/nuclear,nukeop/nuclear,nukeop/nuclear,nukeop/nuclear |
2ad336d36da34f19db225d354a2e19d6980408ad | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '2.4'
- '2.5'
- '2.6'
- 'rc'
container:
image: ruby:${{ matrix.ruby }}
steps:
- uses: actions/checkout@v1
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
| name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
# https://hub.docker.com/_/ruby
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- 'latest'
container:
image: ruby:${{ matrix.ruby }}
steps:
- uses: actions/checkout@v1
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
| Add Ruby 2.7 to matrix | [CI] Add Ruby 2.7 to matrix
| YAML | mit | esaio/esa-ruby |
0dc1b9ce22b5129ff0df06e97016ca3785b7714e | .github/workflows/maven.yml | .github/workflows/maven.yml | name: Maven CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn clean package
| name: Maven CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn clean package
| Bump actions/checkout from 2.3.4 to 2.4.0 | Bump actions/checkout from 2.3.4 to 2.4.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2.3.4...v2.4.0)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@github.com> | YAML | apache-2.0 | stevespringett/nist-data-mirror,stevespringett/nist-data-mirror |
5a24a24d33d625f0235facfa6f1063ff2c73412e | .appveyor.yml | .appveyor.yml | version: '{branch}-{build}'
init:
- cmd: git config --global core.autocrlf true
before_build:
- cmd: nuget restore Agiil.sln
build:
verbosity: minimal
test:
assemblies:
except:
- '**\Agiil.Tests.Common.dll'
- '**\Agiil.BDD.dll'
- '**\Ploeh.AutoFixture.NUnit3.dll' | version: '{branch}-{build}'
init:
- cmd: git config --global core.autocrlf true
before_build:
- cmd: nuget restore Agiil.sln
build:
verbosity: normal
test:
assemblies:
except:
- '**\Agiil.Tests.Common.dll'
- '**\Agiil.BDD.dll'
- '**\Ploeh.AutoFixture.NUnit3.dll' | Upgrade AppVeyor build verbosity level to help diagnose problems | Upgrade AppVeyor build verbosity level to help diagnose problems
| YAML | mit | csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil |
2ff441de4b30b2ce99433f1cb229c8b4548264b9 | .github/workflows/tests.yml | .github/workflows/tests.yml | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Run tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16]
include:
- node: 14
reportCoverage: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Run tests
run: |
npm run test
npm run coverage
- name: Publish to coveralls.io
if: ${{ matrix.reportCoverage }}
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ github.token }}
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Run tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16]
include:
- node: 14
reportCoverage: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Run tests
run: |
npm run test
npm run coverage
- name: Publish to coveralls.io
if: ${{ matrix.reportCoverage }}
env:
BLAH: ${{ matrix.reportCoverage }}
run: echo Reporting coverage $BLAH
- name: Publish to coveralls.io
if: ${{ matrix.reportCoverage }}
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ github.token }}
| Add debug to reportCoverage action | Add debug to reportCoverage action
| YAML | apache-2.0 | node-red/node-red-admin |
cb228b210e6f94701e85463fcab5c42861f34a54 | inventory/group_vars/all/vars.yml | inventory/group_vars/all/vars.yml | # REM: if you are looking for passwords or other variables
# that vary from dev to stage to prod, check the other subfolders
# setup vars
project: "catalyst-ansible"
version: "0.2.0"
login_user: "deploy"
# ssh vars
ssh_port: 22
# uncomment after first run (if not 22):
# ansible_ssh_port: "{{ ssh_port }}"
mode: "dev" # dev || deploy
app_repo: "git@github.com:jhu-sheridan-libraries/blacklight-rails.git" #"https://github.com/jhu-sheridan-libraries/blacklight-rails"
app_branch: "master"
app_name: "catalyst"
app_user: "{{ login_user }}" #"{{ app_name }}"
app_group: "{{ app_user }}"
base_deploy_dir: "/opt"
deploy_dir: "{{ base_deploy_dir }}/{{ app_name }}"
# deploy keys vars
deploy_private_key: "{{ vault_deploy_private_key }}"
deploy_public_key: "{{ vault_deploy_public_key }}"
deploy_user: "{{ login_user }}"
deploy_key_name: "catalyst_deploy_key"
deploy_key_full_path: "/home/{{ deploy_user }}/.ssh/{{ deploy_key_name }}"
# rails vars
rails_env: "development"
| # REM: if you are looking for passwords or other variables
# that vary from dev to stage to prod, check the other subfolders
# setup vars
project: "catalyst-ansible"
version: "0.3.0"
login_user: "deploy"
# ssh vars
ssh_port: 22
# uncomment after first run (if not 22):
# ansible_ssh_port: "{{ ssh_port }}"
mode: "dev" # dev || deploy
app_repo: "git@github.com:jhu-sheridan-libraries/blacklight-rails.git" #"https://github.com/jhu-sheridan-libraries/blacklight-rails"
app_branch: "ansibilize"
app_name: "catalyst"
app_user: "{{ login_user }}" #"{{ app_name }}"
app_group: "{{ app_user }}"
base_deploy_dir: "/opt"
deploy_dir: "{{ base_deploy_dir }}/{{ app_name }}"
# deploy keys vars
deploy_private_key: "{{ vault_deploy_private_key }}"
deploy_public_key: "{{ vault_deploy_public_key }}"
deploy_user: "{{ login_user }}"
deploy_key_name: "catalyst_deploy_key"
deploy_key_full_path: "/home/{{ deploy_user }}/.ssh/{{ deploy_key_name }}"
# rails vars
rails_env: "development"
| Use ansibilize branch of catalyst repo | Use ansibilize branch of catalyst repo
| YAML | cc0-1.0 | jiaola/catalyst-ansible,dheles/catalyst-ansible |
6676273a998c30a1337f3bda29c410c5129928d8 | .eslintrc.yml | .eslintrc.yml | extends:
- cooperka/react
parser: babel-eslint
env:
browser: true
jest: true
globals:
$: true
I18n: true
ELMO: true
rules:
import/no-unresolved: ['error', { ignore: ['^javascripts/'] }]
react/prefer-stateless-function: off
jsx-a11y/label-has-for: ['error', { required: { some: ['nesting', 'id']}}]
overrides:
-
files:
- '*.test.js'
- 'setupTests.js'
rules:
global-require: off
import/no-extraneous-dependencies: off
| extends:
- cooperka/react
parser: babel-eslint
env:
browser: true
jest: true
globals:
$: true
I18n: true
ELMO: true
Backbone: true
Dropzone: true
google: true
rules:
import/no-unresolved: ['error', { ignore: ['^javascripts/'] }]
react/prefer-stateless-function: off
jsx-a11y/label-has-for: ['error', { required: { some: ['nesting', 'id']}}]
overrides:
-
files:
- '*.test.js'
- 'setupTests.js'
rules:
global-require: off
import/no-extraneous-dependencies: off
| Add a couple globals to the list | 10356: Add a couple globals to the list
| YAML | apache-2.0 | thecartercenter/elmo,thecartercenter/elmo,thecartercenter/elmo |
e74733fa26e157a42d087f0cc848f868e98ba608 | .fixtures.yml | .fixtures.yml | fixtures:
repositories:
stdlib: git://github.com/puppetlabs/puppetlabs-stdlib.git
python: git://github.com/voxpupuli/puppet-python.git
symlinks:
graphite: "#{source_dir}"
| fixtures:
repositories:
stdlib: git://github.com/puppetlabs/puppetlabs-stdlib.git
python:
repo: git://github.com/voxpupuli/puppet-python.git
ref: 1.19.0
symlinks:
graphite: "#{source_dir}"
| Use a version of the python module that works | Use a version of the python module that works
When running the tests. Previously, I believe the master branch of the
python module repository was being used, and that isn't compatible
with Puppet 3, leading to errors like:
Syntax error at 'Enum'; expected ')'
| YAML | apache-2.0 | gds-operations/puppet-graphite,gds-operations/puppet-graphite |
e47f7bd6cd26c3508babebe32c3c05fdc9b9867e | build.yaml | build.yaml | repositories:
remote:
- http://repo.fire.dse.vic.gov.au/content/groups/fisg
- https://repo1.maven.org/maven2
artifacts:
getopt4j: org.realityforge.getopt4j:getopt4j:jar:1.2
postgresql: postgresql:postgresql:jar:9.1-901.jdbc4
jtds: net.sourceforge.jtds:jtds:jar:1.2.7
diffutils: com.googlecode.java-diff-utils:diffutils:jar:1.2.1
| repositories:
remote:
- http://repo.fire.dse.vic.gov.au/content/groups/fisg
- https://repo.maven.apache.org/maven2
artifacts:
getopt4j: org.realityforge.getopt4j:getopt4j:jar:1.2
postgresql: postgresql:postgresql:jar:9.1-901.jdbc4
jtds: net.sourceforge.jtds:jtds:jar:1.2.7
diffutils: com.googlecode.java-diff-utils:diffutils:jar:1.2.1
| Use the canonical url to access maven central repository. | Use the canonical url to access maven central repository.
| YAML | apache-2.0 | realityforge/dbdiff,realityforge/dbdiff |
6dbdcbd797377417f608afc5db0ef1e6b1d76523 | circle.yml | circle.yml | machine:
pre:
- ip addr add 127.0.0.2/32 dev lo
environment:
PATH: ${HOME}/extras/bin:${HOME}/extras/otp/18.1/bin:${PATH}
dependencies:
cache_directories:
- ~/extras
pre:
- curl -O -L https://raw.githubusercontent.com/yrashk/kerl/master/kerl && chmod 755 kerl
- if [ ! -d ~/extras/otp/18.1 ]; then ./kerl build 18.1 18.1; ./kerl install 18.1 ~/extras/otp/18.1; fi
override:
- ./rebar get-deps
test:
override:
- ./rebar compile
- ./rebar eunit skip_deps=true
post:
- mv .eunit/*.xml $CIRCLE_TEST_REPORTS
| machine:
environment:
PATH: ${HOME}/extras/bin:${HOME}/extras/otp/18.1/bin:${PATH}
dependencies:
cache_directories:
- ~/extras
pre:
- curl -O -L https://raw.githubusercontent.com/yrashk/kerl/master/kerl && chmod 755 kerl
- if [ ! -d ~/extras/otp/18.1 ]; then ./kerl build 18.1 18.1; ./kerl install 18.1 ~/extras/otp/18.1; fi
override:
- ./rebar get-deps
test:
override:
- ./rebar compile
- ./rebar eunit skip_deps=true
post:
- mv .eunit/*.xml $CIRCLE_TEST_REPORTS
| Remove attempt to setup networking on Circle-CI | Remove attempt to setup networking on Circle-CI
| YAML | apache-2.0 | GoelDeepak/minuteman,GoelDeepak/minuteman |
a78942cb5928a4f61ab2acb32528eab132a65cc1 | circle.yml | circle.yml | general:
artifacts:
- "coverage"
- "emulator.out"
machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6.10.2
post:
- sudo /opt/google-cloud-sdk/bin/gcloud -q components install beta
- sudo /opt/google-cloud-sdk/bin/gcloud config set project $GCLOUD_PROJECT
dependencies:
override:
- yarn
cache_directories:
- ~/.cache/yarn
test:
pre:
- sudo /opt/google-cloud-sdk/bin/gcloud -q beta emulators datastore start --no-legacy >> emulator.out 2>&1:
background: true
- curl --retry 10 --retry-delay 2 -v http://localhost:8081 # make sure the Datastore emulator is ready
override:
- yarn validate | general:
artifacts:
- "coverage"
- "emulator.txt"
machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6.10.2
post:
- sudo /opt/google-cloud-sdk/bin/gcloud -q components install beta
- sudo /opt/google-cloud-sdk/bin/gcloud config set project $GCLOUD_PROJECT
dependencies:
override:
- yarn
cache_directories:
- ~/.cache/yarn
test:
pre:
- sudo /opt/google-cloud-sdk/bin/gcloud -q beta emulators datastore start --no-legacy >> emulator.txt 2>&1:
background: true
- sleep 10 # make sure the Datastore emulator is ready
override:
- yarn validate | Use sleep instead of curl to make sure emulator is working Curl version on CircleCI is not the latest, so it doesn't support --retry-connrefused | [CI] Use sleep instead of curl to make sure emulator is working
Curl version on CircleCI is not the latest, so it doesn't support --retry-connrefused
| YAML | mit | gcriva/gcriva-backend |
d1fa44dfa3c45ec8960ba315470f466606fcb92d | circle.yml | circle.yml | test:
override:
- phpunit -c tests/unit/phpunit.xml | machine:
services:
- docker
php:
version: 5.6.14
test:
override:
- phpunit -c tests/unit/phpunit.xml | Fix PhpUnit tests for Circle CI | Fix PhpUnit tests for Circle CI
| YAML | apache-2.0 | hipay/hipay-fullservice-sdk-php |
1c4079fed78e7e7611f500b0c00cfbe5d0f23668 | circle.yml | circle.yml | dependencies:
pre:
- npm install -g cypress-cli
- npm install -g forever
- cypress install
test:
override:
- npm test
- forever start server.js
- cypress run # requires CYPRESS_CI_KEY (https://docs.cypress.io/docs/continuous-integration#section-acquire-a-cypress-secret-key) | machine:
node:
version: 5.10.0
dependencies:
post:
- npm install -g cypress-cli
- npm install -g forever
- cypress install
test:
pre:
- npm start:
background: true
override:
- npm test
- cypress ci # requires CYPRESS_CI_KEY (https://docs.cypress.io/docs/continuous-integration#section-acquire-a-cypress-secret-key) | Fix node version to 5.10.0 to fix cypress command getting stuck | Fix node version to 5.10.0 to fix cypress command getting stuck
| YAML | mit | ilmoraunio/mamk-demo-automation-testing,ilmoraunio/mamk-demo-automation-testing |
a39cc9ea64c50c0332ec7db5bd09d981bedea208 | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
override:
- docker info
- if [ -e ~/docker/image.tar ]; then docker load --input ~/docker/image.tar; fi
- docker build -t cgswong/kibana:v4.0.1 .
- mkdir -p ~/docker; docker save cgswong/kibana:v4.0.1 > ~/docker/image.tar
test:
override:
- docker run -d --publish 5601:5601 --env ES_URL=localhost:9200 cgswong/kibana; sleep 10
# - curl --retry 10 --retry-delay 5 -Lv http://localhost:5601
deployment:
hub:
branch: release
commands:
- $DEPLOY
| machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
override:
- docker info
- if [ -e ~/docker/image.tar ]; then docker load --input ~/docker/image.tar; fi
- docker build -t cgswong/kibana:v4.0.1 .
- mkdir -p ~/docker; docker save cgswong/kibana:v4.0.1 > ~/docker/image.tar
test:
override:
- docker run -d --publish 5601:5601 --env ES_URL=localhost:9200 cgswong/kibana; sleep 10
# - curl --retry 10 --retry-delay 5 -Lv http://localhost:5601
deployment:
hub:
branch: v4.0.1
commands:
- $DEPLOY
| Use v4.0.1 branch in CI. | Use v4.0.1 branch in CI.
| YAML | bsd-3-clause | MonsantoCo/docker-kibana |
ad41e50cb91c55fe9a4201fb45ad087bf0ed63d3 | circle.yml | circle.yml | machine:
java:
version: oraclejdk8
| machine:
environment:
- ANDROID_SDK: $HOME/.android
- ANDROID_HOME: $HOME/.android
pre:
- mkdir -p "$ANDROID_SDK/licenses"
- echo -e "\nd56f5187479451eabf01fb78af6dfcb131a6481e" > "$ANDROID_SDK/licenses/android-sdk-license"
java:
version: oraclejdk8
| Fix Android SDK license in Circle CI | Fix Android SDK license in Circle CI
| YAML | apache-2.0 | tony19/loggly-client |
25fe05f3d8597833f5c9408c26efa4f17b656e7e | circle.yml | circle.yml | machine:
python:
version: 2.7.11
environment:
DJANGO_SETTINGS_MODULE: "settings.local"
DATABASE_URL: "postgres://ubuntu@localhost/circle_test"
dependencies:
override:
- pip install pip-accel
- pip-accel install -r requirements/development.txt
cache_directories:
- "~/.cache/pip"
- "~/.pip-accel"
test:
override:
- flake8
- coverage run --source='fossevents' --omit='*tests*,*requirements*,*commands*,*migrations*,*admin*,*wsgi*' -m py.test -v --tb=native
| machine:
python:
version: 2.7.11
environment:
DJANGO_SETTINGS_MODULE: "settings.local"
DATABASE_URL: "postgres://ubuntu@localhost/circle_test"
dependencies:
override:
- pip install pip-accel
- pip-accel install -r requirements/development.txt
cache_directories:
- "~/.cache/pip"
- "~/.pip-accel"
test:
override:
- flake8
- coverage run --source='fossevents' --omit='*tests*,*requirements*,*commands*,*migrations*,*admin*,*wsgi*' -m py.test -v --tb=native
- coverage html -d $CIRCLE_ARTIFACTS
| Add coverage html to CIRCLE_ARTIFACTS | Add coverage html to CIRCLE_ARTIFACTS
| YAML | mit | aniketmaithani/fossevents.in,fossevents/fossevents.in,fossevents/fossevents.in,fossevents/fossevents.in,aniketmaithani/fossevents.in,fossevents/fossevents.in,aniketmaithani/fossevents.in,aniketmaithani/fossevents.in |
a6e1a602f182d388c7aa477361baa0117da8064e | spec/acceptance/nodesets/ubuntu-1204-64.yml | spec/acceptance/nodesets/ubuntu-1204-64.yml | HOSTS:
ubuntu-1204-x64:
roles:
- master
platform: ubuntu-1204-x86_64
hypervisor: docker
image: ubuntu:12.04
docker_preserve_image: true
# The default 'service ssh start' is not working on Ubuntu 12.04 because upstart has been disabled
# see https://github.com/tianon/docker-brew-ubuntu-core/issues/4#event-142513085
docker_cmd: '["sh", "-c", "/usr/sbin/sshd -D"]'
docker_image_commands:
# Install a more recent version of PHP
- 'echo "deb http://ppa.launchpad.net/ondrej/php5/ubuntu precise main" >> /etc/apt/sources.list'
- 'apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E5267A6C'
- 'apt-get update'
- 'apt-get -qqy install cron'
CONFIG:
type: foss
log_level: info
trace_limit: 100
| HOSTS:
ubuntu-1204-x64:
roles:
- master
platform: ubuntu-1204-x86_64
hypervisor: docker
image: ubuntu:12.04
docker_preserve_image: true
# The default 'service ssh start' is not working on Ubuntu 12.04 because upstart has been disabled
# see https://github.com/tianon/docker-brew-ubuntu-core/issues/4#event-142513085
docker_cmd: '["sh", "-c", "/usr/sbin/sshd -D"]'
docker_image_commands:
# Install a more recent version of PHP
- 'echo "deb http://ppa.launchpad.net/ondrej/php5-oldstable/ubuntu precise main" >> /etc/apt/sources.list'
- 'apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E5267A6C'
- 'apt-get update'
- 'apt-get -qqy install cron'
CONFIG:
type: foss
log_level: info
trace_limit: 100
| Downgrade to PHP 5.4 to avoid pulling in Apache 2.4 | Downgrade to PHP 5.4 to avoid pulling in Apache 2.4
| YAML | apache-2.0 | tohuwabohu/puppet-roundcube,tohuwabohu/puppet-roundcube |
a138bfe9380df424dc3a9a2046d530c8eb13e731 | class2/exercises/exercise4.yml | class2/exercises/exercise4.yml | ---
- name: Arista process show arp
hosts: pynet-sw3
vars:
eapi:
host: "{{ ansible_host }}"
username: "{{ username }}"
password: "{{ password }}"
transport: eapi
validate_certs: no
tasks:
- name: Run show arp
eos_command:
provider: "{{ eapi }}"
commands: show arp
register: show_arp
- name: Create mac_table variable
set_fact:
mac_table: "{{ show_arp.stdout_lines[0].ipV4Neighbors }}"
- set_fact:
gateway_mac: "{{ item.hwAddress }}"
with_items: "{{ mac_table }}"
when: item.address == '10.220.88.1'
- debug:
var: gateway_mac
| ---
- name: Arista process show arp
hosts: pynet-sw7
vars:
eapi:
host: "{{ ansible_host }}"
username: "{{ username }}"
password: "{{ password }}"
transport: eapi
use_ssl: True
validate_certs: no
tasks:
- name: Run show arp
eos_command:
provider: "{{ eapi }}"
commands: show arp
register: show_arp
- name: Create mac_table variable
set_fact:
mac_table: "{{ show_arp.stdout_lines[0].ipV4Neighbors }}"
- set_fact:
gateway_mac: "{{ item.hwAddress }}"
with_items: "{{ mac_table }}"
when: item.address == '10.220.88.1'
- debug:
var: gateway_mac
| Fix use_ssl issue and switch to pynet-sw7 | Fix use_ssl issue and switch to pynet-sw7
| YAML | apache-2.0 | ktbyers/ansible_course |
d36e1511b23fbf511b5b05641cd78353e56f3857 | config/prisons/SKI-stocken.yml | config/prisons/SKI-stocken.yml | ---
name: Stocken
nomis_id: SKI
address:
- Stocken Hall Road
- LE15 7RD
email: socialvisits.stocken@hmps.gsi.gov.uk
enabled: true
estate: Stocken
phone: 01780 795156
slots:
fri:
- 1345-1545
sat:
- 0915-1115
- 1345-1545
sun:
- 0915-1115
- 1345-1545
wed:
- 1345-1545
unbookable:
- 2014-12-25
- 2014-12-26
- 2015-01-01
| ---
name: Stocken
nomis_id: SKI
address:
- Stocken Hall Road
- LE15 7RD
email: socialvisits.stocken@hmps.gsi.gov.uk
enabled: true
estate: Stocken
phone: 01780 795156
slots:
fri:
- 1345-1545
sat:
- 0915-1115
- 1345-1545
sun:
- 0915-1115
- 1345-1545
wed:
- 1345-1545
unbookable:
- 2014-12-25
- 2014-12-26
- 2015-01-01
- 2015-12-24
- 2015-12-25
- 2015-12-26
- 2015-12-31
- 2016-01-01
| Update Stocken Christmas visit slots | Update Stocken Christmas visit slots
Unbookable:
- Christmas Eve
- Christmas Day
- Boxing Day
- New Year's Eve
- New Year's Day | YAML | mit | ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits |
67e9e34bd2c656ebdb40ac701550473786d388eb | .github/workflows/laravel.yml | .github/workflows/laravel.yml | name: Laravel
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
laravel-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: zhulik/redis-action@1.1.0
with:
redis version: '5'
number of databases: 100
- uses: harmon758/postgresql-action@v1
with:
postgresql version: '11'
postgresql db: 'testing'
postgresql user: 'homestead'
postgresql password: 'secret'
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: |
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}"
composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: vendor/bin/phpunit --configuration phpunit.xml.dist
| name: Laravel
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
laravel-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4]
name: PHP ${{ matrix.php }}
steps:
- 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 ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
coverage: none
- uses: zhulik/redis-action@1.1.0
with:
redis version: '5'
number of databases: 100
- uses: harmon758/postgresql-action@v1
with:
postgresql version: '11'
postgresql db: 'testing'
postgresql user: 'homestead'
postgresql password: 'secret'
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: |
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}"
composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: vendor/bin/phpunit --configuration phpunit.xml.dist
| Add PHP Matrix and caching | Add PHP Matrix and caching
Its common to do a matrix for supported PHP versions and to cache composer dependencies for faster runs. | YAML | mit | GeneaLabs/laravel-model-caching |
f53362ed27b853fee28607724b29573d26431181 | recipes/quake/meta.yaml | recipes/quake/meta.yaml | {% set name = "quake" %}
{% set version = "0.3.5" %}
package:
name: {{ name }}
version: {{ version }}
about:
home: 'http://www.cbcb.umd.edu/software/quake/'
summary: "Quake is a package to correct substitution sequencing errors in experiments with deep coverage (e.g. >15X), specifically intended for Illumina sequencing reads"
source:
fn: {{ name }}-{{ version }}.tar.gz
url: http://www.cbcb.umd.edu/software/quake/downloads/{{ name }}-{{ version }}.tar.gz
md5: f8e26c0c29d22fc0d49fcfb5dc8945d3
build:
number: 0
skip: True # [py3k]
requirements:
build:
- gcc
- boost {{CONDA_BOOST}}*
run:
- libgcc # [not osx]
- boost {{CONDA_BOOST}}*
- jellyfish
- r
- r-vgam
- python
test:
commands:
- quake.py --help
| {% set name = "quake" %}
{% set version = "0.3.5" %}
package:
name: {{ name }}
version: {{ version }}
about:
home: 'http://www.cbcb.umd.edu/software/quake/'
summary: "Quake is a package to correct substitution sequencing errors in experiments with deep coverage (e.g. >15X), specifically intended for Illumina sequencing reads"
source:
fn: {{ name }}-{{ version }}.tar.gz
url: http://www.cbcb.umd.edu/software/quake/downloads/{{ name }}-{{ version }}.tar.gz
md5: f8e26c0c29d22fc0d49fcfb5dc8945d3
build:
number: 0
skip: True # [py3k]
string: boost{{CONDA_BOOST}}_{{PKG_BUILDNUM}}
requirements:
build:
- gcc
- boost {{CONDA_BOOST}}*
run:
- libgcc # [not osx]
- boost {{CONDA_BOOST}}*
- jellyfish
- r
- r-vgam
- python
test:
commands:
- quake.py --help
| Change the build string as boost pinned | Change the build string as boost pinned
| YAML | mit | dmaticzka/bioconda-recipes,keuv-grvl/bioconda-recipes,lpantano/recipes,hardingnj/bioconda-recipes,saketkc/bioconda-recipes,gvlproject/bioconda-recipes,JenCabral/bioconda-recipes,matthdsm/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,saketkc/bioconda-recipes,saketkc/bioconda-recipes,joachimwolff/bioconda-recipes,mcornwell1957/bioconda-recipes,pinguinkiste/bioconda-recipes,npavlovikj/bioconda-recipes,npavlovikj/bioconda-recipes,colinbrislawn/bioconda-recipes,keuv-grvl/bioconda-recipes,cokelaer/bioconda-recipes,omicsnut/bioconda-recipes,gvlproject/bioconda-recipes,mdehollander/bioconda-recipes,hardingnj/bioconda-recipes,rob-p/bioconda-recipes,bow/bioconda-recipes,martin-mann/bioconda-recipes,lpantano/recipes,ivirshup/bioconda-recipes,bebatut/bioconda-recipes,ostrokach/bioconda-recipes,rvalieris/bioconda-recipes,mdehollander/bioconda-recipes,saketkc/bioconda-recipes,colinbrislawn/bioconda-recipes,JenCabral/bioconda-recipes,ThomasWollmann/bioconda-recipes,rob-p/bioconda-recipes,Luobiny/bioconda-recipes,daler/bioconda-recipes,acaprez/recipes,bioconda/bioconda-recipes,guowei-he/bioconda-recipes,bioconda/bioconda-recipes,jasper1918/bioconda-recipes,xguse/bioconda-recipes,lpantano/recipes,phac-nml/bioconda-recipes,peterjc/bioconda-recipes,JenCabral/bioconda-recipes,jfallmann/bioconda-recipes,rvalieris/bioconda-recipes,joachimwolff/bioconda-recipes,jasper1918/bioconda-recipes,cokelaer/bioconda-recipes,ivirshup/bioconda-recipes,CGATOxford/bioconda-recipes,dkoppstein/recipes,zachcp/bioconda-recipes,roryk/recipes,HassanAmr/bioconda-recipes,oena/bioconda-recipes,roryk/recipes,xguse/bioconda-recipes,blankenberg/bioconda-recipes,peterjc/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,pinguinkiste/bioconda-recipes,oena/bioconda-recipes,bioconda/bioconda-recipes,dmaticzka/bioconda-recipes,chapmanb/bioconda-recipes,omicsnut/bioconda-recipes,xguse/bioconda-recipes,bioconda/recipes,bioconda/bioconda-recipes,keuv-grvl/bioconda-recipes,blankenberg/bioconda-recipes,jasper1918/bioconda-recipes,npavlovikj/bioconda-recipes,acaprez/recipes,mcornwell1957/bioconda-recipes,bow/bioconda-recipes,ostrokach/bioconda-recipes,acaprez/recipes,chapmanb/bioconda-recipes,colinbrislawn/bioconda-recipes,matthdsm/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,jasper1918/bioconda-recipes,jfallmann/bioconda-recipes,matthdsm/bioconda-recipes,chapmanb/bioconda-recipes,mdehollander/bioconda-recipes,colinbrislawn/bioconda-recipes,JenCabral/bioconda-recipes,hardingnj/bioconda-recipes,cokelaer/bioconda-recipes,ThomasWollmann/bioconda-recipes,shenwei356/bioconda-recipes,CGATOxford/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,CGATOxford/bioconda-recipes,ostrokach/bioconda-recipes,shenwei356/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,gvlproject/bioconda-recipes,abims-sbr/bioconda-recipes,guowei-he/bioconda-recipes,bow/bioconda-recipes,mdehollander/bioconda-recipes,phac-nml/bioconda-recipes,HassanAmr/bioconda-recipes,abims-sbr/bioconda-recipes,ivirshup/bioconda-recipes,phac-nml/bioconda-recipes,ostrokach/bioconda-recipes,lpantano/recipes,martin-mann/bioconda-recipes,mcornwell1957/bioconda-recipes,gregvonkuster/bioconda-recipes,joachimwolff/bioconda-recipes,pinguinkiste/bioconda-recipes,bow/bioconda-recipes,ThomasWollmann/bioconda-recipes,ThomasWollmann/bioconda-recipes,mdehollander/bioconda-recipes,joachimwolff/bioconda-recipes,bebatut/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,keuv-grvl/bioconda-recipes,ostrokach/bioconda-recipes,chapmanb/bioconda-recipes,blankenberg/bioconda-recipes,martin-mann/bioconda-recipes,phac-nml/bioconda-recipes,daler/bioconda-recipes,abims-sbr/bioconda-recipes,pinguinkiste/bioconda-recipes,dmaticzka/bioconda-recipes,phac-nml/bioconda-recipes,JenCabral/bioconda-recipes,zachcp/bioconda-recipes,CGATOxford/bioconda-recipes,oena/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,gregvonkuster/bioconda-recipes,daler/bioconda-recipes,pinguinkiste/bioconda-recipes,ivirshup/bioconda-recipes,bioconda/recipes,bioconda/recipes,cokelaer/bioconda-recipes,matthdsm/bioconda-recipes,bow/bioconda-recipes,oena/bioconda-recipes,omicsnut/bioconda-recipes,ThomasWollmann/bioconda-recipes,joachimwolff/bioconda-recipes,dkoppstein/recipes,instituteofpathologyheidelberg/bioconda-recipes,JenCabral/bioconda-recipes,HassanAmr/bioconda-recipes,Luobiny/bioconda-recipes,colinbrislawn/bioconda-recipes,mcornwell1957/bioconda-recipes,xguse/bioconda-recipes,rob-p/bioconda-recipes,abims-sbr/bioconda-recipes,CGATOxford/bioconda-recipes,matthdsm/bioconda-recipes,ivirshup/bioconda-recipes,bebatut/bioconda-recipes,HassanAmr/bioconda-recipes,roryk/recipes,daler/bioconda-recipes,peterjc/bioconda-recipes,dmaticzka/bioconda-recipes,omicsnut/bioconda-recipes,gvlproject/bioconda-recipes,joachimwolff/bioconda-recipes,bow/bioconda-recipes,dmaticzka/bioconda-recipes,abims-sbr/bioconda-recipes,daler/bioconda-recipes,blankenberg/bioconda-recipes,jasper1918/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,abims-sbr/bioconda-recipes,jfallmann/bioconda-recipes,matthdsm/bioconda-recipes,HassanAmr/bioconda-recipes,oena/bioconda-recipes,ivirshup/bioconda-recipes,mcornwell1957/bioconda-recipes,saketkc/bioconda-recipes,dkoppstein/recipes,Luobiny/bioconda-recipes,gregvonkuster/bioconda-recipes,shenwei356/bioconda-recipes,hardingnj/bioconda-recipes,gvlproject/bioconda-recipes,hardingnj/bioconda-recipes,dmaticzka/bioconda-recipes,jfallmann/bioconda-recipes,guowei-he/bioconda-recipes,xguse/bioconda-recipes,martin-mann/bioconda-recipes,HassanAmr/bioconda-recipes,keuv-grvl/bioconda-recipes,guowei-he/bioconda-recipes,bebatut/bioconda-recipes,pinguinkiste/bioconda-recipes,saketkc/bioconda-recipes,zachcp/bioconda-recipes,acaprez/recipes,zachcp/bioconda-recipes,peterjc/bioconda-recipes,npavlovikj/bioconda-recipes,gvlproject/bioconda-recipes,gregvonkuster/bioconda-recipes,omicsnut/bioconda-recipes,peterjc/bioconda-recipes,Luobiny/bioconda-recipes,daler/bioconda-recipes,CGATOxford/bioconda-recipes,ostrokach/bioconda-recipes,peterjc/bioconda-recipes,ThomasWollmann/bioconda-recipes,keuv-grvl/bioconda-recipes,rvalieris/bioconda-recipes,rob-p/bioconda-recipes,rvalieris/bioconda-recipes,martin-mann/bioconda-recipes,guowei-he/bioconda-recipes,chapmanb/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,rvalieris/bioconda-recipes,shenwei356/bioconda-recipes,mdehollander/bioconda-recipes,colinbrislawn/bioconda-recipes,rvalieris/bioconda-recipes |
f93046f3ba4b55d6102d41812a68842c4c2b6b6e | recipes/yaggo/meta.yaml | recipes/yaggo/meta.yaml | package:
name: yaggo
version: "1.5.8"
source:
fn: yaggo
url: https://github.com/gmarcais/yaggo/releases/download/v1.5.8/yaggo
requirements:
build:
run:
about:
home: https://github.com/gmarcais/yaggo
license: GPLv3
summary: Yaggo is a tool to generate command line parsers for C++. Yaggo stands for "Yet Another GenGetOpt" and is inspired by GNU Gengetopt.
| package:
name: yaggo
version: "1.5.8"
build:
number: 1
source:
fn: yaggo
url: https://github.com/gmarcais/yaggo/releases/download/v1.5.8/yaggo
requirements:
build:
run:
- ruby
test:
commands:
- yaggo -h 2>&1 | grep Usage > /dev/null
about:
home: https://github.com/gmarcais/yaggo
license: GPLv3
summary: Yaggo is a tool to generate command line parsers for C++. Yaggo stands for "Yet Another GenGetOpt" and is inspired by GNU Gengetopt.
| Add ruby run dependency and test | Add ruby run dependency and test
| YAML | mit | jfallmann/bioconda-recipes,pinguinkiste/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,hardingnj/bioconda-recipes,oena/bioconda-recipes,hardingnj/bioconda-recipes,omicsnut/bioconda-recipes,yesimon/bioconda-recipes,JingchaoZhang/bioconda-recipes,pinguinkiste/bioconda-recipes,martin-mann/bioconda-recipes,martin-mann/bioconda-recipes,ivirshup/bioconda-recipes,rvalieris/bioconda-recipes,ostrokach/bioconda-recipes,ivirshup/bioconda-recipes,HassanAmr/bioconda-recipes,mcornwell1957/bioconda-recipes,ostrokach/bioconda-recipes,phac-nml/bioconda-recipes,dmaticzka/bioconda-recipes,bebatut/bioconda-recipes,matthdsm/bioconda-recipes,CGATOxford/bioconda-recipes,martin-mann/bioconda-recipes,chapmanb/bioconda-recipes,guowei-he/bioconda-recipes,jasper1918/bioconda-recipes,gregvonkuster/bioconda-recipes,bioconda/recipes,keuv-grvl/bioconda-recipes,CGATOxford/bioconda-recipes,shenwei356/bioconda-recipes,abims-sbr/bioconda-recipes,Luobiny/bioconda-recipes,gvlproject/bioconda-recipes,npavlovikj/bioconda-recipes,ThomasWollmann/bioconda-recipes,joachimwolff/bioconda-recipes,JenCabral/bioconda-recipes,matthdsm/bioconda-recipes,chapmanb/bioconda-recipes,phac-nml/bioconda-recipes,phac-nml/bioconda-recipes,ivirshup/bioconda-recipes,CGATOxford/bioconda-recipes,mcornwell1957/bioconda-recipes,matthdsm/bioconda-recipes,ivirshup/bioconda-recipes,jasper1918/bioconda-recipes,gvlproject/bioconda-recipes,rvalieris/bioconda-recipes,npavlovikj/bioconda-recipes,oena/bioconda-recipes,abims-sbr/bioconda-recipes,mcornwell1957/bioconda-recipes,daler/bioconda-recipes,oena/bioconda-recipes,gvlproject/bioconda-recipes,colinbrislawn/bioconda-recipes,mdehollander/bioconda-recipes,rvalieris/bioconda-recipes,dkoppstein/recipes,ThomasWollmann/bioconda-recipes,blankenberg/bioconda-recipes,yesimon/bioconda-recipes,chapmanb/bioconda-recipes,gvlproject/bioconda-recipes,shenwei356/bioconda-recipes,peterjc/bioconda-recipes,xguse/bioconda-recipes,HassanAmr/bioconda-recipes,bow/bioconda-recipes,chapmanb/bioconda-recipes,CGATOxford/bioconda-recipes,omicsnut/bioconda-recipes,peterjc/bioconda-recipes,jfallmann/bioconda-recipes,lpantano/recipes,omicsnut/bioconda-recipes,abims-sbr/bioconda-recipes,xguse/bioconda-recipes,gregvonkuster/bioconda-recipes,zwanli/bioconda-recipes,bebatut/bioconda-recipes,peterjc/bioconda-recipes,HassanAmr/bioconda-recipes,roryk/recipes,gvlproject/bioconda-recipes,bebatut/bioconda-recipes,Luobiny/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,colinbrislawn/bioconda-recipes,mdehollander/bioconda-recipes,saketkc/bioconda-recipes,colinbrislawn/bioconda-recipes,JenCabral/bioconda-recipes,dmaticzka/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,dkoppstein/recipes,JingchaoZhang/bioconda-recipes,colinbrislawn/bioconda-recipes,yesimon/bioconda-recipes,joachimwolff/bioconda-recipes,keuv-grvl/bioconda-recipes,JenCabral/bioconda-recipes,rvalieris/bioconda-recipes,ThomasWollmann/bioconda-recipes,blankenberg/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,keuv-grvl/bioconda-recipes,gregvonkuster/bioconda-recipes,chapmanb/bioconda-recipes,zachcp/bioconda-recipes,pinguinkiste/bioconda-recipes,zwanli/bioconda-recipes,ThomasWollmann/bioconda-recipes,blankenberg/bioconda-recipes,pinguinkiste/bioconda-recipes,joachimwolff/bioconda-recipes,lpantano/recipes,peterjc/bioconda-recipes,jasper1918/bioconda-recipes,joachimwolff/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,abims-sbr/bioconda-recipes,bow/bioconda-recipes,HassanAmr/bioconda-recipes,oena/bioconda-recipes,matthdsm/bioconda-recipes,hardingnj/bioconda-recipes,CGATOxford/bioconda-recipes,daler/bioconda-recipes,ostrokach/bioconda-recipes,rob-p/bioconda-recipes,JingchaoZhang/bioconda-recipes,saketkc/bioconda-recipes,ostrokach/bioconda-recipes,jfallmann/bioconda-recipes,bow/bioconda-recipes,ivirshup/bioconda-recipes,rvalieris/bioconda-recipes,cokelaer/bioconda-recipes,cokelaer/bioconda-recipes,guowei-he/bioconda-recipes,lpantano/recipes,rob-p/bioconda-recipes,npavlovikj/bioconda-recipes,mdehollander/bioconda-recipes,cokelaer/bioconda-recipes,abims-sbr/bioconda-recipes,abims-sbr/bioconda-recipes,zachcp/bioconda-recipes,mdehollander/bioconda-recipes,mcornwell1957/bioconda-recipes,pinguinkiste/bioconda-recipes,rob-p/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,peterjc/bioconda-recipes,acaprez/recipes,ivirshup/bioconda-recipes,jfallmann/bioconda-recipes,dkoppstein/recipes,npavlovikj/bioconda-recipes,ThomasWollmann/bioconda-recipes,saketkc/bioconda-recipes,zwanli/bioconda-recipes,daler/bioconda-recipes,zachcp/bioconda-recipes,gvlproject/bioconda-recipes,guowei-he/bioconda-recipes,peterjc/bioconda-recipes,jasper1918/bioconda-recipes,colinbrislawn/bioconda-recipes,JenCabral/bioconda-recipes,colinbrislawn/bioconda-recipes,keuv-grvl/bioconda-recipes,keuv-grvl/bioconda-recipes,mcornwell1957/bioconda-recipes,acaprez/recipes,zachcp/bioconda-recipes,matthdsm/bioconda-recipes,matthdsm/bioconda-recipes,omicsnut/bioconda-recipes,guowei-he/bioconda-recipes,Luobiny/bioconda-recipes,gregvonkuster/bioconda-recipes,bow/bioconda-recipes,yesimon/bioconda-recipes,zwanli/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,daler/bioconda-recipes,dmaticzka/bioconda-recipes,zwanli/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,JenCabral/bioconda-recipes,phac-nml/bioconda-recipes,joachimwolff/bioconda-recipes,hardingnj/bioconda-recipes,CGATOxford/bioconda-recipes,shenwei356/bioconda-recipes,bow/bioconda-recipes,roryk/recipes,bebatut/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,martin-mann/bioconda-recipes,bioconda/bioconda-recipes,bow/bioconda-recipes,bioconda/recipes,martin-mann/bioconda-recipes,HassanAmr/bioconda-recipes,Luobiny/bioconda-recipes,saketkc/bioconda-recipes,blankenberg/bioconda-recipes,phac-nml/bioconda-recipes,lpantano/recipes,ostrokach/bioconda-recipes,acaprez/recipes,hardingnj/bioconda-recipes,joachimwolff/bioconda-recipes,daler/bioconda-recipes,xguse/bioconda-recipes,oena/bioconda-recipes,roryk/recipes,bioconda/recipes,bioconda/bioconda-recipes,ThomasWollmann/bioconda-recipes,keuv-grvl/bioconda-recipes,bioconda/bioconda-recipes,shenwei356/bioconda-recipes,saketkc/bioconda-recipes,dmaticzka/bioconda-recipes,omicsnut/bioconda-recipes,mdehollander/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,JingchaoZhang/bioconda-recipes,acaprez/recipes,rvalieris/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,dmaticzka/bioconda-recipes,xguse/bioconda-recipes,JenCabral/bioconda-recipes,saketkc/bioconda-recipes,ostrokach/bioconda-recipes,zwanli/bioconda-recipes,daler/bioconda-recipes,HassanAmr/bioconda-recipes,xguse/bioconda-recipes,pinguinkiste/bioconda-recipes,guowei-he/bioconda-recipes,bioconda/bioconda-recipes,jasper1918/bioconda-recipes,cokelaer/bioconda-recipes,rob-p/bioconda-recipes,dmaticzka/bioconda-recipes,mdehollander/bioconda-recipes |
b71240d5f5fa1139e62838c0424f03f236e8e414 | tasks/Debian.yml | tasks/Debian.yml | ---
- name: Install packages with apt
apt: name={{ item }} state=present
with_items:
- python-pip
- python-dev
- libcairo2-dev
- python-twisted
- python-cairo
- fontconfig
- uwsgi
- uwsgi-plugin-python
- sudo
- name: Use the pip package, version 13
pip: name="Twisted==13.0" state=present
- name: Install init.d script for carbon-cache
template: src=debian_carbon_service.j2 dest=/etc/init.d/carbon-cache
notify: restart carbon-cache
- name: Check the install scripts perms
file: path=/etc/init.d/{{ item }} mode=0755 owner=root group=root
with_items:
- carbon-cache
- name: Install uwsgi graphite config
template: src=uwsgi_graphite.ini.j2 dest=/etc/uwsgi/apps-available/graphite.ini
notify: restart uwsgi
- name: Enable uwsgi graphite config
file: src=/etc/uwsgi/apps-available/graphite.ini dest=/etc/uwsgi/apps-enabled/graphite.ini state=link
notify: restart uwsgi
- name: Make sure we have /run/uwsgi/graphite
file: path=/run/uwsgi/graphite state=directory owner={{ graphite_user }} group={{ graphite_user }}
| ---
- name: Install packages with apt
apt: name={{ item }} state=present update_cache=true
with_items:
- python-pip
- python-dev
- libcairo2-dev
- python-twisted
- python-cairo
- fontconfig
- uwsgi
- uwsgi-plugin-python
- sudo
- name: Use the pip package, version 13
pip: name="Twisted==13.0" state=present
- name: Install init.d script for carbon-cache
template: src=debian_carbon_service.j2 dest=/etc/init.d/carbon-cache
notify: restart carbon-cache
- name: Check the install scripts perms
file: path=/etc/init.d/{{ item }} mode=0755 owner=root group=root
with_items:
- carbon-cache
- name: Install uwsgi graphite config
template: src=uwsgi_graphite.ini.j2 dest=/etc/uwsgi/apps-available/graphite.ini
notify: restart uwsgi
- name: Enable uwsgi graphite config
file: src=/etc/uwsgi/apps-available/graphite.ini dest=/etc/uwsgi/apps-enabled/graphite.ini state=link
notify: restart uwsgi
- name: Make sure we have /run/uwsgi/graphite
file: path=/run/uwsgi/graphite state=directory owner={{ graphite_user }} group={{ graphite_user }}
| Refresh apt cache before install | Refresh apt cache before install
This avoids lots of errors on install with 404 packages | YAML | mit | teadur/ansible-graphite,sourcestream/ansible-graphite,nsg/ansible-graphite |
871eac710535161dae223fd3d39a45091660ce9d | tasks/source.yml | tasks/source.yml | # file: nodejs/tasks/source.yml
- name: node.js | source | Make sure that the directory to hold the node.js binaries exists
file:
path: "{{nodejs_directory}}"
state: directory
recurse: yes
mode: 0755
- name: node.js | source | Download the node.js source
get_url:
url: "{{nodejs_source_url}}"
dest: "/tmp/node-v{{nodejs_version}}.tar.gz"
- name: node.js | source | Unpack the node.js source
shell: tar -xvzf /tmp/node-v{{nodejs_version}}.tar.gz chdir=/tmp creates=/tmp/node-v{{nodejs_version}}
- name: node.js | source |Get the number of processors
command: nproc
register: cpu_count
- name: node.js | source | Build node.js from source
shell: >
cd /tmp/node-v{{nodejs_version}} &&
./configure --prefix={{nodejs_source_prefix}} &&
make -j {{cpu_count.stdout}} &&
sudo make install
- name: node.js | source | Update the symbolic link to the node.js install
file:
path: "{{nodejs_directory}}/default"
src: "{{nodejs_source_prefix}}"
state: link
force: yes
- include: update_path.yml
| # file: nodejs/tasks/source.yml
- name: node.js | source | Make sure that the directory to hold the node.js binaries exists
file:
path: "{{nodejs_directory}}"
state: directory
recurse: yes
mode: 0755
- name: node.js | source | Download the node.js source
get_url:
url: "{{nodejs_source_url}}"
dest: "/tmp/node-v{{nodejs_version}}.tar.gz"
- name: node.js | source | Unpack the node.js source
unarchive:
src: "/tmp/node-v{{nodejs_version}}.tar.gz"
dest: "/tmp/node-v{{nodejs_version}}"
- name: node.js | source |Get the number of processors
command: nproc
register: cpu_count
- name: node.js | source | Build node.js from source
shell: >
cd /tmp/node-v{{nodejs_version}} &&
./configure --prefix={{nodejs_source_prefix}} &&
make -j {{cpu_count.stdout}} &&
sudo make install
- name: node.js | source | Update the symbolic link to the node.js install
file:
path: "{{nodejs_directory}}/default"
src: "{{nodejs_source_prefix}}"
state: link
force: yes
- include: update_path.yml
| Use unarchive module instead of tar when extracting node archive | Use unarchive module instead of tar when extracting node archive
| YAML | mit | ANXS/nodejs |
ed89514462e23523c7fbf091fae7f2fdcdec47ce | packages/pa/parser241.yaml | packages/pa/parser241.yaml | homepage: https://github.com/YLiLarry/parser241-product-rule
changelog-type: ''
hash: d51a2868373e5b97c41ea2e444750f8ce176ad620ce2a069001f1f352cdbe91d
test-bench-deps:
base: -any
hspec: -any
parser241: -any
containers: -any
mtl: -any
maintainer: ylilarry@gmail.com
synopsis: An interface to create production rules using augmented grammars
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
containers: -any
mtl: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Yu Li
latest: '0.1.0.1'
description-type: haddock
description: This package allows you to define production rules using clean augmented
grammars.
license-name: BSD3
| homepage: https://github.com/YLiLarry/parser241-product-rule
changelog-type: ''
hash: 7790d3748468ae22ab8e5964aa2bdd72f7fc8716f207b4fb64462fef93caaf2f
test-bench-deps:
base: -any
hspec: -any
parser241: -any
containers: -any
mtl: -any
maintainer: ylilarry@gmail.com
synopsis: An interface to create production rules using augmented grammars
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
containers: -any
mtl: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Yu Li
latest: '0.1.0.2'
description-type: haddock
description: This package allows you to define production rules using clean augmented
grammars.
license-name: BSD3
| Update from Hackage at 2015-10-23T06:37:08+0000 | Update from Hackage at 2015-10-23T06:37:08+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
43062c376ec399cd367bb514602f46edf6435e1a | recipes/qiimetomaaslin/meta.yaml | recipes/qiimetomaaslin/meta.yaml | {% set name = "qiimetomaaslin" %}
{% set version = "1.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
build:
number: 0
skip: True # [not py27]
source:
fn: {{ name|lower }}_{{ version }}.tar.gz
url: https://bitbucket.org/biobakery/{{ name|lower }}/get/{{ version }}.tar.gz
md5: fbd3168034d0cd76756935374b1c6cf6
requirements:
build:
- python
- setuptools
run:
- python
- blist
test:
commands:
- qiimetomaaslin.py -h
about:
home: https://huttenhower.sph.harvard.edu/maaslin
license: Unknown
summary: 'Data munging script to change text Qiime OTU tables to pcl-formatted, maaslin-compatible text files'
| {% set name = "qiimetomaaslin" %}
{% set version = "1.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
build:
number: 0
skip: True # [not py27]
source:
fn: {{ name|lower }}_{{ version }}.tar.gz
url: https://bitbucket.org/biobakery/{{ name|lower }}/get/{{ version }}.tar.gz
md5: fbd3168034d0cd76756935374b1c6cf6
requirements:
build:
- python
- setuptools
run:
- python
- blist
test:
commands:
- qiimeToMaaslin.py -h
about:
home: https://huttenhower.sph.harvard.edu/maaslin
license: Unknown
summary: 'Data munging script to change text Qiime OTU tables to pcl-formatted, maaslin-compatible text files'
| Fix typo in test command | Fix typo in test command
| YAML | mit | shenwei356/bioconda-recipes,joachimwolff/bioconda-recipes,pinguinkiste/bioconda-recipes,omicsnut/bioconda-recipes,abims-sbr/bioconda-recipes,matthdsm/bioconda-recipes,ivirshup/bioconda-recipes,zachcp/bioconda-recipes,keuv-grvl/bioconda-recipes,Luobiny/bioconda-recipes,saketkc/bioconda-recipes,keuv-grvl/bioconda-recipes,pinguinkiste/bioconda-recipes,martin-mann/bioconda-recipes,bioconda/recipes,phac-nml/bioconda-recipes,daler/bioconda-recipes,zachcp/bioconda-recipes,npavlovikj/bioconda-recipes,ThomasWollmann/bioconda-recipes,keuv-grvl/bioconda-recipes,jfallmann/bioconda-recipes,blankenberg/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,phac-nml/bioconda-recipes,dkoppstein/recipes,abims-sbr/bioconda-recipes,abims-sbr/bioconda-recipes,xguse/bioconda-recipes,bow/bioconda-recipes,gregvonkuster/bioconda-recipes,ThomasWollmann/bioconda-recipes,mdehollander/bioconda-recipes,gvlproject/bioconda-recipes,CGATOxford/bioconda-recipes,mdehollander/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,acaprez/recipes,blankenberg/bioconda-recipes,cokelaer/bioconda-recipes,rob-p/bioconda-recipes,ThomasWollmann/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,joachimwolff/bioconda-recipes,zachcp/bioconda-recipes,cokelaer/bioconda-recipes,colinbrislawn/bioconda-recipes,oena/bioconda-recipes,phac-nml/bioconda-recipes,oena/bioconda-recipes,mdehollander/bioconda-recipes,matthdsm/bioconda-recipes,jfallmann/bioconda-recipes,shenwei356/bioconda-recipes,gregvonkuster/bioconda-recipes,dmaticzka/bioconda-recipes,daler/bioconda-recipes,saketkc/bioconda-recipes,blankenberg/bioconda-recipes,mcornwell1957/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,phac-nml/bioconda-recipes,joachimwolff/bioconda-recipes,zwanli/bioconda-recipes,jasper1918/bioconda-recipes,chapmanb/bioconda-recipes,omicsnut/bioconda-recipes,jasper1918/bioconda-recipes,gregvonkuster/bioconda-recipes,cokelaer/bioconda-recipes,CGATOxford/bioconda-recipes,dmaticzka/bioconda-recipes,npavlovikj/bioconda-recipes,dmaticzka/bioconda-recipes,joachimwolff/bioconda-recipes,abims-sbr/bioconda-recipes,ostrokach/bioconda-recipes,oena/bioconda-recipes,hardingnj/bioconda-recipes,abims-sbr/bioconda-recipes,hardingnj/bioconda-recipes,ThomasWollmann/bioconda-recipes,saketkc/bioconda-recipes,dmaticzka/bioconda-recipes,ivirshup/bioconda-recipes,chapmanb/bioconda-recipes,lpantano/recipes,martin-mann/bioconda-recipes,jfallmann/bioconda-recipes,zwanli/bioconda-recipes,ostrokach/bioconda-recipes,phac-nml/bioconda-recipes,guowei-he/bioconda-recipes,guowei-he/bioconda-recipes,rvalieris/bioconda-recipes,cokelaer/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,ostrokach/bioconda-recipes,bow/bioconda-recipes,Luobiny/bioconda-recipes,dmaticzka/bioconda-recipes,JenCabral/bioconda-recipes,pinguinkiste/bioconda-recipes,mcornwell1957/bioconda-recipes,xguse/bioconda-recipes,peterjc/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,blankenberg/bioconda-recipes,guowei-he/bioconda-recipes,CGATOxford/bioconda-recipes,HassanAmr/bioconda-recipes,rob-p/bioconda-recipes,shenwei356/bioconda-recipes,matthdsm/bioconda-recipes,HassanAmr/bioconda-recipes,colinbrislawn/bioconda-recipes,chapmanb/bioconda-recipes,jfallmann/bioconda-recipes,colinbrislawn/bioconda-recipes,ThomasWollmann/bioconda-recipes,rvalieris/bioconda-recipes,gvlproject/bioconda-recipes,CGATOxford/bioconda-recipes,gvlproject/bioconda-recipes,bioconda/recipes,roryk/recipes,colinbrislawn/bioconda-recipes,shenwei356/bioconda-recipes,HassanAmr/bioconda-recipes,keuv-grvl/bioconda-recipes,pinguinkiste/bioconda-recipes,bioconda/bioconda-recipes,chapmanb/bioconda-recipes,pinguinkiste/bioconda-recipes,bebatut/bioconda-recipes,martin-mann/bioconda-recipes,mdehollander/bioconda-recipes,omicsnut/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,rvalieris/bioconda-recipes,acaprez/recipes,rvalieris/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,zwanli/bioconda-recipes,joachimwolff/bioconda-recipes,JenCabral/bioconda-recipes,bioconda/bioconda-recipes,saketkc/bioconda-recipes,bow/bioconda-recipes,rob-p/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,mcornwell1957/bioconda-recipes,martin-mann/bioconda-recipes,peterjc/bioconda-recipes,abims-sbr/bioconda-recipes,gvlproject/bioconda-recipes,bow/bioconda-recipes,bioconda/bioconda-recipes,omicsnut/bioconda-recipes,oena/bioconda-recipes,peterjc/bioconda-recipes,mcornwell1957/bioconda-recipes,keuv-grvl/bioconda-recipes,acaprez/recipes,gvlproject/bioconda-recipes,rvalieris/bioconda-recipes,omicsnut/bioconda-recipes,ostrokach/bioconda-recipes,lpantano/recipes,daler/bioconda-recipes,lpantano/recipes,npavlovikj/bioconda-recipes,HassanAmr/bioconda-recipes,peterjc/bioconda-recipes,colinbrislawn/bioconda-recipes,CGATOxford/bioconda-recipes,HassanAmr/bioconda-recipes,bow/bioconda-recipes,CGATOxford/bioconda-recipes,JenCabral/bioconda-recipes,peterjc/bioconda-recipes,martin-mann/bioconda-recipes,bow/bioconda-recipes,xguse/bioconda-recipes,peterjc/bioconda-recipes,dkoppstein/recipes,ostrokach/bioconda-recipes,matthdsm/bioconda-recipes,saketkc/bioconda-recipes,JenCabral/bioconda-recipes,hardingnj/bioconda-recipes,Luobiny/bioconda-recipes,jasper1918/bioconda-recipes,guowei-he/bioconda-recipes,dkoppstein/recipes,ivirshup/bioconda-recipes,chapmanb/bioconda-recipes,daler/bioconda-recipes,mdehollander/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,ivirshup/bioconda-recipes,hardingnj/bioconda-recipes,Luobiny/bioconda-recipes,hardingnj/bioconda-recipes,matthdsm/bioconda-recipes,npavlovikj/bioconda-recipes,keuv-grvl/bioconda-recipes,JenCabral/bioconda-recipes,daler/bioconda-recipes,xguse/bioconda-recipes,colinbrislawn/bioconda-recipes,dmaticzka/bioconda-recipes,xguse/bioconda-recipes,gvlproject/bioconda-recipes,zwanli/bioconda-recipes,roryk/recipes,gregvonkuster/bioconda-recipes,jasper1918/bioconda-recipes,joachimwolff/bioconda-recipes,mdehollander/bioconda-recipes,daler/bioconda-recipes,bebatut/bioconda-recipes,ivirshup/bioconda-recipes,lpantano/recipes,oena/bioconda-recipes,jasper1918/bioconda-recipes,HassanAmr/bioconda-recipes,zwanli/bioconda-recipes,bioconda/bioconda-recipes,rvalieris/bioconda-recipes,zwanli/bioconda-recipes,ivirshup/bioconda-recipes,mcornwell1957/bioconda-recipes,pinguinkiste/bioconda-recipes,bebatut/bioconda-recipes,bioconda/recipes,rob-p/bioconda-recipes,guowei-he/bioconda-recipes,acaprez/recipes,ThomasWollmann/bioconda-recipes,JenCabral/bioconda-recipes,ostrokach/bioconda-recipes,zachcp/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,matthdsm/bioconda-recipes,saketkc/bioconda-recipes,roryk/recipes,bebatut/bioconda-recipes |
c44b5763c2c4c0f8023151363f7f3010cdc18a47 | metadata/com.serwylo.beatgame.yml | metadata/com.serwylo.beatgame.yml | Categories:
- Games
License: GPL-3.0-only
SourceCode: https://github.com/beat-game/beat-game
IssueTracker: https://github.com/beat-game/beat-game/issues
Liberapay: BeatGame
AutoName: beat-game
RepoType: git
Repo: https://github.com/beat-game/beat-game.git
Builds:
- versionName: 0.1.0
versionCode: 1
commit: v0.1.0
subdir: android
gradle:
- yes
- versionName: 0.2.0
versionCode: 2
commit: v0.2.0
subdir: android
gradle:
- yes
- versionName: 0.3.0
versionCode: 3
commit: v0.3.0
subdir: android
gradle:
- yes
- versionName: 0.4.0
versionCode: 4
commit: v0.4.0
subdir: android
gradle:
- yes
- versionName: 0.5.0
versionCode: 5
commit: v0.5.0
subdir: android
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.5.0
CurrentVersionCode: 5
| Categories:
- Games
License: GPL-3.0-only
SourceCode: https://github.com/beat-game/beat-game
IssueTracker: https://github.com/beat-game/beat-game/issues
Liberapay: BeatGame
AutoName: beat-game
RepoType: git
Repo: https://github.com/beat-game/beat-game.git
Builds:
- versionName: 0.1.0
versionCode: 1
commit: v0.1.0
subdir: android
gradle:
- yes
- versionName: 0.2.0
versionCode: 2
commit: v0.2.0
subdir: android
gradle:
- yes
- versionName: 0.3.0
versionCode: 3
commit: v0.3.0
subdir: android
gradle:
- yes
- versionName: 0.4.0
versionCode: 4
commit: v0.4.0
subdir: android
gradle:
- yes
- versionName: 0.5.0
versionCode: 5
commit: v0.5.0
subdir: android
gradle:
- yes
- versionName: 0.6.0
versionCode: 6
commit: v0.6.0
subdir: android
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.6.0
CurrentVersionCode: 6
| Update beat-game to 0.6.0 (6) | Update beat-game to 0.6.0 (6)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
9e14d8442e1a153c9b7a317249f31c800e0a6aef | packages/hl/hls-graph.yaml | packages/hl/hls-graph.yaml | homepage: https://github.com/haskell/haskell-language-server#readme
changelog-type: ''
hash: f647e60df5319b94d0eb154c62d4afd754adffc9c09efd0ff241f1125a0d8f02
test-bench-deps: {}
maintainer: alan.zimm@gmail.com
synopsis: Haskell Language Server internal graph API
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
extra: -any
base: '>=4.12 && <5'
time: -any
unordered-containers: -any
filepath: -any
async: -any
js-dgtable: -any
containers: -any
js-jquery: -any
js-flot: -any
hashable: -any
transformers: -any
deepseq: -any
aeson: -any
primitive: -any
directory: -any
all-versions:
- 1.3.0.0
- 1.4.0.0
- 1.5.1.0
author: The Haskell IDE Team
latest: 1.5.1.0
description-type: haddock
description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
license-name: Apache-2.0
| homepage: https://github.com/haskell/haskell-language-server#readme
changelog-type: ''
hash: 1704e44c1674a7f9c972d456b311bbea12ac158130b4f7883a806c8292dc6660
test-bench-deps: {}
maintainer: alan.zimm@gmail.com
synopsis: Haskell Language Server internal graph API
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
extra: -any
base: '>=4.12 && <5'
time: -any
unordered-containers: -any
filepath: -any
async: -any
js-dgtable: -any
containers: -any
js-jquery: -any
js-flot: -any
hashable: -any
transformers: -any
deepseq: -any
aeson: -any
primitive: -any
directory: -any
all-versions:
- 1.3.0.0
- 1.4.0.0
- 1.5.1.0
- 1.5.1.1
author: The Haskell IDE Team
latest: 1.5.1.1
description-type: haddock
description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
license-name: Apache-2.0
| Update from Hackage at 2021-11-24T17:08:15Z | Update from Hackage at 2021-11-24T17:08:15Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
dbae17b1c17342451493abbcd4a9d6a8e801c9b2 | projects/llvm/project.yaml | projects/llvm/project.yaml | homepage: "http://llvm.org/"
primary_contact: "kcc@google.com"
auto_ccs:
- "mascasa@google.com"
- "jdevlieghere@apple.com"
- "vsk@apple.com"
- "akilsrin@apple.com"
- "llvm-bugs@lists.llvm.org"
- "igmyrj@gmail.com"
- "mitchphillips@outlook.com"
# TODO(kcc): enable msan.
sanitizers:
- address
# The LLVM build currently supports only libFuzzer
fuzzing_engines:
- libfuzzer
# Bug reports are public by default:
view_restrictions: none
| homepage: "http://llvm.org/"
primary_contact: "kcc@google.com"
auto_ccs:
- "mascasa@google.com"
- "jdevlieghere@apple.com"
- "vsk@apple.com"
- "akilsrin@apple.com"
- "llvm-bugs@lists.llvm.org"
- "igmyrj@gmail.com"
- "mitchphillips@outlook.com"
- "xpl0re@gmail.com"
# TODO(kcc): enable msan.
sanitizers:
- address
# The LLVM build currently supports only libFuzzer
fuzzing_engines:
- libfuzzer
# Bug reports are public by default:
view_restrictions: none
| Add Myke to the llvm auto_ccs list | Add Myke to the llvm auto_ccs list | YAML | apache-2.0 | robertswiecki/oss-fuzz,skia-dev/oss-fuzz,google/oss-fuzz,googlefonts/oss-fuzz,robertswiecki/oss-fuzz,skia-dev/oss-fuzz,FeliciaLim/oss-fuzz,robertswiecki/oss-fuzz,skia-dev/oss-fuzz,FeliciaLim/oss-fuzz,google/oss-fuzz,skia-dev/oss-fuzz,googlefonts/oss-fuzz,FeliciaLim/oss-fuzz,robertswiecki/oss-fuzz,robertswiecki/oss-fuzz,skia-dev/oss-fuzz,google/oss-fuzz,google/oss-fuzz,robertswiecki/oss-fuzz,google/oss-fuzz,google/oss-fuzz,FeliciaLim/oss-fuzz,google/oss-fuzz,google/oss-fuzz,googlefonts/oss-fuzz,google/oss-fuzz,googlefonts/oss-fuzz,skia-dev/oss-fuzz,googlefonts/oss-fuzz,googlefonts/oss-fuzz,FeliciaLim/oss-fuzz,google/oss-fuzz,google/oss-fuzz,robertswiecki/oss-fuzz,skia-dev/oss-fuzz,googlefonts/oss-fuzz,robertswiecki/oss-fuzz,skia-dev/oss-fuzz,robertswiecki/oss-fuzz,robertswiecki/oss-fuzz,skia-dev/oss-fuzz,googlefonts/oss-fuzz,skia-dev/oss-fuzz,googlefonts/oss-fuzz,robertswiecki/oss-fuzz,googlefonts/oss-fuzz,skia-dev/oss-fuzz |
3c4ace834ac579495d1788464ec9dbde26788779 | recipes/daligner/meta.yaml | recipes/daligner/meta.yaml | package:
name: daligner
version: "1.0p1"
build:
number: 0
source:
fn: daligner_V1.0p1.tar.gz
md5: 01d1e407197a0c1a71620f296c96d4c8
url: https://github.com/thegenemyers/DALIGNER/archive/8f179db7fb0bf59f34c4a073b85137a592336d89.tar.gz
requirements:
build:
- gcc # [not osx]
- llvm # [osx]
run:
- libgcc # [not osx]
test:
commands:
- daligner 2>&1 | grep Usage > /dev/null
about:
home: 'https://github.com/thegenemyers/DALIGNER'
license: Custom
license_file: README
summary: "DALIGNER: Find all significant local alignments between reads"
| package:
name: daligner
version: "1.0p1"
build:
number: 1
source:
fn: daligner_V1.0p1.tar.gz
md5: e49ca399c153333b1ec4e69d8d6daea8
url: https://github.com/thegenemyers/DALIGNER/archive/a9458dcb34eca61513c994f4217fb7f75915e25c.tar.gz
requirements:
build:
- gcc # [not osx]
- llvm # [osx]
run:
- libgcc # [not osx]
test:
commands:
- daligner 2>&1 | grep Usage > /dev/null
about:
home: 'https://github.com/thegenemyers/DALIGNER'
license: Custom
license_file: README.md
summary: "DALIGNER: Find all significant local alignments between reads"
| Update DALIGNER to more recent commit | Update DALIGNER to more recent commit
| YAML | mit | BIMSBbioinfo/bioconda-recipes,daler/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,HassanAmr/bioconda-recipes,chapmanb/bioconda-recipes,chapmanb/bioconda-recipes,HassanAmr/bioconda-recipes,acaprez/recipes,bioconda/recipes,omicsnut/bioconda-recipes,abims-sbr/bioconda-recipes,xguse/bioconda-recipes,jasper1918/bioconda-recipes,CGATOxford/bioconda-recipes,roryk/recipes,peterjc/bioconda-recipes,daler/bioconda-recipes,JenCabral/bioconda-recipes,dkoppstein/recipes,oena/bioconda-recipes,CGATOxford/bioconda-recipes,cokelaer/bioconda-recipes,abims-sbr/bioconda-recipes,guowei-he/bioconda-recipes,guowei-he/bioconda-recipes,hardingnj/bioconda-recipes,gvlproject/bioconda-recipes,npavlovikj/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,xguse/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,lpantano/recipes,peterjc/bioconda-recipes,mcornwell1957/bioconda-recipes,saketkc/bioconda-recipes,hardingnj/bioconda-recipes,colinbrislawn/bioconda-recipes,gregvonkuster/bioconda-recipes,oena/bioconda-recipes,gvlproject/bioconda-recipes,pinguinkiste/bioconda-recipes,shenwei356/bioconda-recipes,matthdsm/bioconda-recipes,peterjc/bioconda-recipes,guowei-he/bioconda-recipes,abims-sbr/bioconda-recipes,martin-mann/bioconda-recipes,bow/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,martin-mann/bioconda-recipes,mcornwell1957/bioconda-recipes,pinguinkiste/bioconda-recipes,matthdsm/bioconda-recipes,mdehollander/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,mdehollander/bioconda-recipes,dmaticzka/bioconda-recipes,dmaticzka/bioconda-recipes,mcornwell1957/bioconda-recipes,lpantano/recipes,jasper1918/bioconda-recipes,guowei-he/bioconda-recipes,ostrokach/bioconda-recipes,omicsnut/bioconda-recipes,zachcp/bioconda-recipes,xguse/bioconda-recipes,zachcp/bioconda-recipes,bebatut/bioconda-recipes,mdehollander/bioconda-recipes,Luobiny/bioconda-recipes,lpantano/recipes,zachcp/bioconda-recipes,rvalieris/bioconda-recipes,rob-p/bioconda-recipes,keuv-grvl/bioconda-recipes,joachimwolff/bioconda-recipes,dmaticzka/bioconda-recipes,jasper1918/bioconda-recipes,acaprez/recipes,JenCabral/bioconda-recipes,Luobiny/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,saketkc/bioconda-recipes,roryk/recipes,mdehollander/bioconda-recipes,jfallmann/bioconda-recipes,phac-nml/bioconda-recipes,dkoppstein/recipes,shenwei356/bioconda-recipes,matthdsm/bioconda-recipes,acaprez/recipes,blankenberg/bioconda-recipes,mcornwell1957/bioconda-recipes,jfallmann/bioconda-recipes,bow/bioconda-recipes,chapmanb/bioconda-recipes,oena/bioconda-recipes,jasper1918/bioconda-recipes,rvalieris/bioconda-recipes,hardingnj/bioconda-recipes,gvlproject/bioconda-recipes,ivirshup/bioconda-recipes,keuv-grvl/bioconda-recipes,gregvonkuster/bioconda-recipes,cokelaer/bioconda-recipes,bioconda/bioconda-recipes,bebatut/bioconda-recipes,pinguinkiste/bioconda-recipes,mcornwell1957/bioconda-recipes,blankenberg/bioconda-recipes,dmaticzka/bioconda-recipes,saketkc/bioconda-recipes,joachimwolff/bioconda-recipes,gvlproject/bioconda-recipes,gvlproject/bioconda-recipes,gregvonkuster/bioconda-recipes,acaprez/recipes,phac-nml/bioconda-recipes,xguse/bioconda-recipes,pinguinkiste/bioconda-recipes,phac-nml/bioconda-recipes,daler/bioconda-recipes,hardingnj/bioconda-recipes,joachimwolff/bioconda-recipes,peterjc/bioconda-recipes,abims-sbr/bioconda-recipes,peterjc/bioconda-recipes,ivirshup/bioconda-recipes,bioconda/recipes,omicsnut/bioconda-recipes,martin-mann/bioconda-recipes,dkoppstein/recipes,blankenberg/bioconda-recipes,matthdsm/bioconda-recipes,martin-mann/bioconda-recipes,joachimwolff/bioconda-recipes,gvlproject/bioconda-recipes,oena/bioconda-recipes,keuv-grvl/bioconda-recipes,JenCabral/bioconda-recipes,ivirshup/bioconda-recipes,daler/bioconda-recipes,daler/bioconda-recipes,keuv-grvl/bioconda-recipes,colinbrislawn/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,saketkc/bioconda-recipes,ivirshup/bioconda-recipes,Luobiny/bioconda-recipes,pinguinkiste/bioconda-recipes,rob-p/bioconda-recipes,oena/bioconda-recipes,HassanAmr/bioconda-recipes,gregvonkuster/bioconda-recipes,keuv-grvl/bioconda-recipes,jfallmann/bioconda-recipes,JenCabral/bioconda-recipes,omicsnut/bioconda-recipes,jfallmann/bioconda-recipes,rvalieris/bioconda-recipes,jasper1918/bioconda-recipes,CGATOxford/bioconda-recipes,pinguinkiste/bioconda-recipes,npavlovikj/bioconda-recipes,bioconda/bioconda-recipes,omicsnut/bioconda-recipes,bebatut/bioconda-recipes,Luobiny/bioconda-recipes,bow/bioconda-recipes,npavlovikj/bioconda-recipes,daler/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,HassanAmr/bioconda-recipes,cokelaer/bioconda-recipes,ostrokach/bioconda-recipes,ivirshup/bioconda-recipes,zachcp/bioconda-recipes,dmaticzka/bioconda-recipes,ivirshup/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,ostrokach/bioconda-recipes,cokelaer/bioconda-recipes,CGATOxford/bioconda-recipes,saketkc/bioconda-recipes,shenwei356/bioconda-recipes,roryk/recipes,mdehollander/bioconda-recipes,bioconda/recipes,abims-sbr/bioconda-recipes,rob-p/bioconda-recipes,keuv-grvl/bioconda-recipes,guowei-he/bioconda-recipes,mdehollander/bioconda-recipes,colinbrislawn/bioconda-recipes,joachimwolff/bioconda-recipes,joachimwolff/bioconda-recipes,bow/bioconda-recipes,HassanAmr/bioconda-recipes,martin-mann/bioconda-recipes,abims-sbr/bioconda-recipes,bow/bioconda-recipes,ostrokach/bioconda-recipes,saketkc/bioconda-recipes,rvalieris/bioconda-recipes,ostrokach/bioconda-recipes,dmaticzka/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,hardingnj/bioconda-recipes,colinbrislawn/bioconda-recipes,chapmanb/bioconda-recipes,colinbrislawn/bioconda-recipes,bebatut/bioconda-recipes,xguse/bioconda-recipes,CGATOxford/bioconda-recipes,ostrokach/bioconda-recipes,JenCabral/bioconda-recipes,phac-nml/bioconda-recipes,lpantano/recipes,matthdsm/bioconda-recipes,rvalieris/bioconda-recipes,phac-nml/bioconda-recipes,HassanAmr/bioconda-recipes,bow/bioconda-recipes,rvalieris/bioconda-recipes,bioconda/bioconda-recipes,rob-p/bioconda-recipes,colinbrislawn/bioconda-recipes,blankenberg/bioconda-recipes,npavlovikj/bioconda-recipes,bioconda/bioconda-recipes,chapmanb/bioconda-recipes,shenwei356/bioconda-recipes,JenCabral/bioconda-recipes,CGATOxford/bioconda-recipes,peterjc/bioconda-recipes,matthdsm/bioconda-recipes |
6c93ed83d4c7a148161c96850bf60c1786a17214 | recipes/wcstools/meta.yaml | recipes/wcstools/meta.yaml | {% set name = "wcstools" %}
{% set version = "3.9.7" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: http://tdc-www.harvard.edu/software/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 525f6970eb818f822db75c1526b3122b1af078affa572dce303de37df5c7b088
build:
number: 0
skip: true # [win]
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('fortran') }}
- make
test:
requires:
- compilers
about:
home: http://tdc-www.harvard.edu/software/wcstools
summary: World coordinate systems libraries and tools
description: |
For setting and using the world coordinate systems (WCS) in the
headers of the most common astronomical image formats
license: LGPL-2.0-only
license_family: LGPL
license_file: libwcs/COPYING
doc_url: http://tdc-www.harvard.edu/software/wcstools/subroutines/libwcs.wcs.html
extra:
recipe-maintainers:
- jhunkeler
| {% set name = "wcstools" %}
{% set version = "3.9.7" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: http://tdc-www.harvard.edu/software/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 525f6970eb818f822db75c1526b3122b1af078affa572dce303de37df5c7b088
build:
number: 0
skip: true # [win]
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('fortran') }}
- make
test:
requires:
- compilers
- pkg-config
about:
home: http://tdc-www.harvard.edu/software/wcstools
summary: World coordinate systems libraries and tools
description: |
For setting and using the world coordinate systems (WCS) in the
headers of the most common astronomical image formats
license: LGPL-2.0-only
license_family: LGPL
license_file: libwcs/COPYING
doc_url: http://tdc-www.harvard.edu/software/wcstools/subroutines/libwcs.wcs.html
extra:
recipe-maintainers:
- jhunkeler
| Add pkg-config to test requirements | Add pkg-config to test requirements
| YAML | bsd-3-clause | conda-forge/staged-recipes,ocefpaf/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.