Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add back 5.3 for now... Await discussion on support. | language: php
sudo: false
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: hhvm-nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
before_script:
- travis_retry composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
| language: php
sudo: false
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: hhvm-nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
before_script:
- travis_retry composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
|
Update Home Assistant to 0.55.1 for config checks in Travis CI | language: python
python:
- '3.4'
- '3.5'
- '3.6'
env:
- HASS=0.55.0
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
| language: python
python:
- '3.4'
- '3.5'
- '3.6'
env:
- HASS=0.55.1
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
|
Cut down on verbosity in Travis | language: bash
sudo: false
os:
- osx
- linux
env:
global:
- GIMME_TMP="/var/tmp/gimme"
- GIMME_ENVS_DIR="/var/tmp/gimme/envs"
- GIMME_VERSIONS_DIR="/var/tmp/gimme/versions"
- GIMME_DEBUG=1
script: ./test-install $(< known-binary-versions)
| language: bash
sudo: false
os:
- osx
- linux
env:
global:
- GIMME_TMP="/var/tmp/gimme"
- GIMME_ENVS_DIR="/var/tmp/gimme/envs"
- GIMME_VERSIONS_DIR="/var/tmp/gimme/versions"
script: ./test-install $(< known-binary-versions)
|
Increase line length in checks | sudo: false
language: python
python: 3.8
branches:
only:
- master
install:
- pip install -e .[test]
# Each step below must succeed for the build to pass
script:
- coverage run --source=. test.py
- coverage report -m
- pycodestyle --format=pylint --count .
| sudo: false
language: python
python: 3.8
branches:
only:
- master
install:
- pip install -e .[test]
# Each step below must succeed for the build to pass
script:
- coverage run --source=. test.py
- coverage report -m
- pycodestyle --format=pylint --max-line-length=120 --count .
|
Remove Gtk+ from Travis CI configuration | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
before_install:
- sudo apt-get update
- sudo apt-get install libgirepository1.0-dev gobject-introspection gir1.2-gtk-3.0
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake test"
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
before_install:
- sudo apt-get update
- sudo apt-get install libgirepository1.0-dev gobject-introspection
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake test"
|
Put back those platforms, lets see if Travis helps us fix them. | language: ruby
rvm:
- ruby-head
- 2.1.1
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
- rbx-2.2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
rvm:
- ruby-head
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
- rbx-2.1
- rbx-2.2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
|
Remove building for publish stage | language: node_js
node_js:
- 10
cache:
directories:
- ~/.npm
- ~/.cache
install:
- npm ci
jobs:
include:
- stage: Judging bundle size
script: npm run bundlesize
- stage: Linting code
script: npm run lint
- stage: Running tests
script: npm run test
- stage: Building for publish
if: branch = master
script: npm run build && npm run bump-cache
- stage: Publishing to NPM
if: branch = master
script: echo "Publishing to NPM..."
deploy:
provider: npm
email: $NPM_EMAIL_ADDRESS
api_key: $NPM_API_KEY
skip_cleanup: true
on:
tags: true
- stage: Publishing to GitHub releases
if: branch = master
script: echo "Publishing to Github releases..."
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
skip_cleanup: true
on:
tags: true | language: node_js
node_js:
- 10
cache:
directories:
- ~/.npm
- ~/.cache
install:
- npm ci
jobs:
include:
- stage: Judging bundle size
script: npm run bundlesize
- stage: Linting code
script: npm run lint
- stage: Running tests
script: npm run test
- stage: Publishing to NPM
if: branch = master
script: echo "Publishing to NPM..."
deploy:
provider: npm
email: $NPM_EMAIL_ADDRESS
api_key: $NPM_API_KEY
skip_cleanup: true
on:
tags: true
- stage: Publishing to GitHub releases
if: branch = master
script: echo "Publishing to Github releases..."
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
skip_cleanup: true
on:
tags: true |
Update CI to Xcode 10.0/iOS 12.0 | language: objective-c
osx_image: xcode9.3
xcode_sdk: iphonesimulator10.0
script:
- set -o pipefail
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON iOS" -destination "platform=iOS Simulator,name=iPhone 6" build-for-testing test | xcpretty
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON macOS" build-for-testing test | xcpretty
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON tvOS" -destination "platform=tvOS Simulator,name=Apple TV" build-for-testing test | xcpretty
| language: objective-c
osx_image: xcode10.0
xcode_sdk: iphonesimulator12.0
script:
- set -o pipefail
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON iOS" -destination "platform=iOS Simulator,name=iPhone 6" build-for-testing test | xcpretty
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON macOS" build-for-testing test | xcpretty
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON tvOS" -destination "platform=tvOS Simulator,name=Apple TV" build-for-testing test | xcpretty
|
Use the container-based infrastructure on Travis | language: php
php:
- 5.4
- 5.5
- 5.6
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- phpunit tests
- ./tests/lint.sh
git:
depth: 5
| language: php
php:
- 5.4
- 5.5
- 5.6
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- phpunit tests
- ./tests/lint.sh
git:
depth: 5
|
Enable Ruby 2.2 in Travis-CI. | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0
- 2.1
- jruby-19mode
- rbx-2
cache: bundler
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby
- rbx-2
cache: bundler
|
Add PyPy3 to Travis build matrix | sudo: false
language: python
notifications:
email: false
env:
global:
python:
- pypy
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
install:
- pip install -r requirements.txt
- pip install -r tests/requirements.txt
script:
make test
after_success:
codecov | sudo: false
language: python
notifications:
email: false
python:
- pypy
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- pypy3
install:
- pip install -r requirements.txt
- pip install -r tests/requirements.txt
script:
make test
after_success:
codecov
|
Remove node version from testing that doesn't exist yet | language: node_js
node_js:
- 14
- 12
- 10
cache: yarn
matrix:
fast_finish: true
notifications:
email: false
| language: node_js
node_js:
- 13
- 12
- 10
cache: yarn
matrix:
fast_finish: true
notifications:
email: false
|
Add build on nightly version | language: php
php:
- hhvm
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
matrix:
include:
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest"
cache:
directories:
- $COMPOSER_CACHE_DIR
before_install:
- composer selfupdate
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
matrix:
fast_finish: true
include:
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest"
allow_failures:
- php: nightly
cache:
directories:
- $COMPOSER_CACHE_DIR
before_install:
- composer selfupdate
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
|
Update the test matrix on Travis to Python 3.6+ | language: python
python:
- 3.5
- 3.6
- 3.7
- nightly
env:
global:
- MOZ_HEADLESS=1
matrix:
- GROUP=docs
- GROUP=nbextensions
- GROUP=python
matrix:
exclude:
- python: 3.5
env: GROUP=docs
- python: 3.6
env: GROUP=docs
- python: nightly
env: GROUP=docs
- python: 3.5
env: GROUP=nbextensions
- python: 3.6
env: GROUP=nbextensions
- python: nightly
env: GROUP=nbextensions
addons:
apt:
packages:
- pandoc
firefox: latest
before_install:
- pip install -U pip wheel setuptools
install:
- wget https://github.com/mozilla/geckodriver/releases/download/v0.23.0/geckodriver-v0.23.0-linux64.tar.gz
- mkdir geckodriver
- tar -xzf geckodriver-v0.23.0-linux64.tar.gz -C geckodriver
- export PATH=$PATH:$PWD/geckodriver
- python tasks.py install --group="$GROUP"
script:
- python tasks.py tests --group="$GROUP"
after_success:
- python tasks.py aftersuccess --group="$GROUP"
| language: python
python:
- 3.6
- 3.7
- 3.8
- nightly
env:
global:
- MOZ_HEADLESS=1
matrix:
- GROUP=docs
- GROUP=nbextensions
- GROUP=python
matrix:
exclude:
- python: 3.6
env: GROUP=docs
- python: 3.7
env: GROUP=docs
- python: 3.8
env: GROUP=docs
- python: nightly
env: GROUP=docs
- python: 3.6
env: GROUP=nbextensions
- python: 3.7
env: GROUP=nbextensions
- python: 3.8
env: GROUP=nbextensions
- python: nightly
env: GROUP=nbextensions
addons:
apt:
packages:
- pandoc
firefox: latest
before_install:
- pip install -U pip wheel setuptools
install:
- wget https://github.com/mozilla/geckodriver/releases/download/v0.23.0/geckodriver-v0.23.0-linux64.tar.gz
- mkdir geckodriver
- tar -xzf geckodriver-v0.23.0-linux64.tar.gz -C geckodriver
- export PATH=$PATH:$PWD/geckodriver
- python tasks.py install --group="$GROUP"
script:
- python tasks.py tests --group="$GROUP"
after_success:
- python tasks.py aftersuccess --group="$GROUP"
|
Raise minimum supported compiler version to 1.31 | language: rust
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- rust: 1.17.0
script: cargo check
- rust: 1.31.0
- rust: nightly
env: CLIPPY
script: |
if rustup component add clippy; then
cargo clippy
fi
script:
- cargo build
- cargo test
| language: rust
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- rust: 1.31.0
- rust: nightly
env: CLIPPY
script: |
if rustup component add clippy; then
cargo clippy
fi
script:
- cargo build
- cargo test
|
Remove PostGIS. Travis processes comments. | language: ruby
matrix:
include:
- os: linux
dist: trusty
sudo: required
addons:
postgresql: 9.5
- os: osx
osx_image: xcode8.3
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then rm -rf /usr/local/var/postgres && initdb /usr/local/var/postgres -E utf8; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then pg_ctl -D /usr/local/var/postgres start && sleep 3 || true; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo -u travis createuser -s -p 5432 postgres; fi
- psql -U postgres -c 'create database test;'
# - psql -U postgres -c 'create extension postgis;'
script:
- eval "$(curl -sL https://swift.vapor.sh/ci-3.1)"
- eval "$(curl -sL https://swift.vapor.sh/codecov)"
| language: ruby
matrix:
include:
- os: linux
dist: trusty
sudo: required
addons:
postgresql: 9.5
- os: osx
osx_image: xcode8.3
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then rm -rf /usr/local/var/postgres && initdb /usr/local/var/postgres -E utf8; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then pg_ctl -D /usr/local/var/postgres start && sleep 3 || true; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo -u travis createuser -s -p 5432 postgres; fi
- psql -U postgres -c 'create database test;'
script:
- eval "$(curl -sL https://swift.vapor.sh/ci-3.1)"
- eval "$(curl -sL https://swift.vapor.sh/codecov)"
|
Use latest Chef point releases for testing | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
env:
- CHEF_VERSION=0.9.18
- CHEF_VERSION=0.10.10
- CHEF_VERSION=10.14.4
- CHEF_VERSION=10.16.4
matrix:
allow_failures:
- rvm: 2.0.0
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
env:
- CHEF_VERSION="~> 0.9.18"
- CHEF_VERSION="~> 0.10.10"
- CHEF_VERSION="~> 10.14.4"
- CHEF_VERSION="~> 10.16.4"
matrix:
allow_failures:
- rvm: 2.0.0
|
Use the specific supported version of Node in Travis | language: node_js
node_js:
- "0.10"
- "node"
- "iojs"
script: npm test
sudo: false
| language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
script: npm test
sudo: false
|
Add python 3.6 test support to CI | language: python
python:
- "2.6"
- "2.7"
install: pip install -r requirements.txt --use-mirrors
script: python test.py
| language: python
python:
- "2.6"
- "2.7"
- "3.6"
install: pip install -r requirements.txt --use-mirrors
script: python test.py
|
Add slack notifications to tech-gov-uk/skyscape-opensource channel | language: python
python:
- "3.4"
# command to install dependencies
install:
- pip install pep8
- pip install .
# command to run tests
script:
- pep8 .
- python -m unittest discover maloja | language: python
python:
- '3.4'
install:
- pip install pep8
- pip install .
script:
- pep8 .
- python -m unittest discover maloja
notifications:
slack:
secure: xkasG52OVnQP3tdXlgUPN82l8FNjFcP2bp0eaPq4LkF4aCBCZukJhw0BOwMoN3yp7iIiQlgQ8to7I9zk0trd+BoKphNVMhi8u+ICeAybq/nPIhNM9CFuRwkCgWAfO9MZiqQk4BGijY60Y5DNtLMEUVCnf/8iwGJoFNdaRrxHJYtQWoMEDHefCayLChbZWSUWLbkA+W0cWCUEhKEnFJZdJrcxIrHBvgITczCNwb2mQ9xCr7W8nfgUoHxL3AfNZDeJGOVZKJIj+WFcnHD3iTkan47kVGVFOLFM5PJJ7Jxb4B5Kqw3XJXPuF+2I/5RDUBiTyNz0HldLTfIm5SSVF40bfom8+F6jOM4hZDgqaXBaZqJxlIudcEEnsnMUTmIih5UMAnxjabunEdYL3Ca8UIyPK730YM44voC5+h2QaBjN3wDUDh8uj97h/hidlNSKAjghSKgtCqWn84QKzWkQT62vmFeyxVVXHDNDCsBQEU2Y0OKP5kfyr2Q7l2ZxY0sJrbTXhK45MXyOJdLo8jYSZ1yaGTgWFO+hNkId8Lr26PYfg1ePQgFq7iit1PzMZocFWjET542dAckJwRlcuy3DHb4hPuTmqwM9Z6cg0o2037+bn9RhssRG6VDg8SlEHXyY115tclfY3uJhpG2RlqYEYgxK3Qtxc41dzuTn1KnEJAeLEf0=
|
Add JavaScript tests to Travis CI. | language: scala
scala:
- 2.10.3
script: sbt test
| language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
script:
- sbt test
- grunt test
|
Test on released sprockets 3 instead of beta | language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1
- 2.2
env:
matrix:
- SPROCKETS_VERSION="~> 2.1.0"
- SPROCKETS_VERSION="~> 2.12.0"
- SPROCKETS_VERSION="~> 3.0.0.beta.10"
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1
- 2.2
env:
matrix:
- SPROCKETS_VERSION="~> 2.1.0"
- SPROCKETS_VERSION="~> 2.12.0"
- SPROCKETS_VERSION="~> 3.0.0"
|
Allow go tip to fail | language: go
before_install:
- go get github.com/stretchr/testify
env:
GO111MODULE=on
go:
- '1.11.x'
- '1.12.x'
- '1.13.x'
- tip
script:
- go mod vendor
- go test -mod vendor -race -v ./...
| language: go
before_install:
- go get github.com/stretchr/testify
env:
GO111MODULE=on
go:
- '1.11.x'
- '1.12.x'
- '1.13.x'
- tip
matrix:
allow_failures:
- go: tip
script:
- go mod vendor
- go test -mod vendor -race -v ./...
|
Add debian 8 to tests. | ---
sudo: required
language: python
services:
- docker
env:
global:
- ANSIBLE_HOST_KEY_CHECKING=False
- VERBOSE_TESTS=1
matrix:
- TEST_OSVER="debian:7"
- TEST_OSVER="ubuntu:1404"
- TEST_OSVER="centos:6"
before_install:
# hack! https://github.com/travis-ci/travis-ci/issues/4778
- sudo service docker restart ; sleep 10
install:
# Download ansible-role-tester and setup the enviroment
- wget https://raw.githubusercontent.com/nsg/ansible-role-tester/master/test/test.sh
- chmod +x test.sh
script:
- ./test.sh $TEST_OSVER
| ---
sudo: required
language: python
services:
- docker
env:
global:
- ANSIBLE_HOST_KEY_CHECKING=False
- VERBOSE_TESTS=1
matrix:
- TEST_OSVER="debian:7"
- TEST_OSVER="debian:8"
- TEST_OSVER="ubuntu:1404"
- TEST_OSVER="centos:6"
before_install:
# hack! https://github.com/travis-ci/travis-ci/issues/4778
- sudo service docker restart ; sleep 10
install:
# Download ansible-role-tester and setup the enviroment
- wget https://raw.githubusercontent.com/nsg/ansible-role-tester/master/test/test.sh
- chmod +x test.sh
script:
- ./test.sh $TEST_OSVER
|
Install requirements using file and fastcluster using pip | language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
before_install:
# http://conda.pydata.org/docs/travis.html#the-travis-yml-file
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
install:
- conda create -n testenv python=$TRAVIS_PYTHON_VERSION numpy matplotlib
- source activate testenv
- pip install .
script:
- cd polo
- python test.py
| language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
before_install:
# http://conda.pydata.org/docs/travis.html#the-travis-yml-file
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
install:
- conda create -n testenv python=$TRAVIS_PYTHON_VERSION --file testing_requirements.txt
- source activate testenv
- pip install fastcluster
- pip install .
script:
- python polo/test.py
|
Add Node.js 12 to CI setting | language: node_js
node_js:
- "node"
- "6"
- "8"
- "10"
before_install:
- pip install --user codecov
after_success:
- codecov --file coverage/lcov.info --disable search
| language: node_js
node_js:
- "node"
- "6"
- "8"
- "10"
- "12"
before_install:
- pip install --user codecov
after_success:
- codecov --file coverage/lcov.info --disable search
|
Use `curl` retry flags for waiting for service | dist: bionic
language:
- generic
before_install:
- docker-compose build
- docker images
- docker-compose -f docker-compose.yml -f docker-compose.debug.yml up -d
- docker-compose ps
script:
- curl --connect-timeout 10 http://localhost:8002
- docker-compose logs --no-color
- docker logs chtsh
- CHEATSH_TEST_STANDALONE=NO bash tests/run-tests.sh
| dist: bionic
language:
- generic
before_install:
- docker-compose build
- docker images
- docker-compose -f docker-compose.yml -f docker-compose.debug.yml up -d
- docker-compose ps
script:
- curl --retry 3 --retry-all http://localhost:8002
- docker-compose logs --no-color
- docker logs chtsh
- CHEATSH_TEST_STANDALONE=NO bash tests/run-tests.sh
|
Remove test runs with REE from Travis CI config | language: ruby
rvm:
- 1.8.7
- 1.9.2
- ree
before_script:
- 'git clone git://github.com/puppetlabs/puppetlabs-apt.git spec/fixtures/modules/apt'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.17
- PUPPET_VERSION=2.7.19
matrix:
exclude:
- rvm: 1.9.2
env: PUPPET_VERSION=2.6.14
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
before_script:
- 'git clone git://github.com/puppetlabs/puppetlabs-apt.git spec/fixtures/modules/apt'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.17
- PUPPET_VERSION=2.7.19
|
Use mruby 1.4.1 instead of 1.4.0 | # MIT License
#
# Copyright (c) MATSUMOTO Ryosuke 2014
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
language: c
compiler:
- gcc
- clang
env:
- MRUBY_VERSION=1.3.0
- MRUBY_VERSION=1.4.0
- MRUBY_VERSION=head
matrix:
allow_failures:
- env: MRUBY_VERSION=head
before_script:
- export TOOLCHAIN=$CC
script:
- rake compile
- rake test
| # MIT License
#
# Copyright (c) MATSUMOTO Ryosuke 2014
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
language: c
compiler:
- gcc
- clang
env:
- MRUBY_VERSION=1.3.0
- MRUBY_VERSION=1.4.1
- MRUBY_VERSION=head
matrix:
allow_failures:
- env: MRUBY_VERSION=head
before_script:
- export TOOLCHAIN=$CC
script:
- rake compile
- rake test
|
Update site URL in config to HTTPS | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: John Grimes
email: john@grimes.id.au
description: "Getting it out to focus it within."
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://john.grimes.id.au" # the base hostname & protocol for your site, e.g. http://example.com
github_username: johngrimes
# Build settings
markdown: kramdown
theme: minima
gems:
- jekyll-feed
exclude:
- Gemfile
- Gemfile.lock
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: John Grimes
email: john@grimes.id.au
description: "Getting it out to focus it within."
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://john.grimes.id.au" # the base hostname & protocol for your site, e.g. http://example.com
github_username: johngrimes
# Build settings
markdown: kramdown
theme: minima
gems:
- jekyll-feed
exclude:
- Gemfile
- Gemfile.lock
|
Use GHC 8.0.1 on Gitlab CI | image: haskell:7.10.3
cache:
paths:
- .stack
before_script:
- export STACK_ROOT=$(pwd)/.stack
- apt-get update -qq && apt-get install -qq -y m4 libpq-dev
- cp secrets.m4.example secrets.m4
- make files
- stack install hspec-discover
- stack install --only-dependencies
- stack build
# Haven't figured out how to use PostgreSQL in Gitlab CI.
# - psql -c 'create database betty_test;' -h postgres -U postgres
test:
script:
# tests will fail in the absence of PostgreSQL.
# - stack test
| image: haskell:8.0.1
cache:
paths:
- .stack
before_script:
- export STACK_ROOT=$(pwd)/.stack
- apt-get update -qq && apt-get install -qq -y m4 libpq-dev
- cp secrets.m4.example secrets.m4
- make files
- stack install hspec-discover
- stack install --only-dependencies
- stack build
# Haven't figured out how to use PostgreSQL in Gitlab CI.
# - psql -c 'create database betty_test;' -h postgres -U postgres
test:
script:
# tests will fail in the absence of PostgreSQL.
# - stack test
|
Fix disabling PEP257 warning D211 | doc-warnings: yes
test-warnings: no
strictness: medium
max-line-length: 120
autodetect: yes
requirements:
- dev-requirements.txt
ignore-paths:
- apps
- sandbox
- docs
- pywinauto/unittests
pep8:
disable:
- D211
| doc-warnings: yes
test-warnings: no
strictness: medium
max-line-length: 120
autodetect: yes
requirements:
- dev-requirements.txt
ignore-paths:
- apps
- sandbox
- docs
- pywinauto/unittests
pep257:
disable:
- D211 # conflicts with D203
|
Update Linux Cmake to new version 3.0.0 | name: Linux Cmake
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
env:
EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }}
jobs:
Linux-cmake:
name: Linux Cmake
uses: steinwurf/linux-cmake-action/.github/workflows/action.yml@2.0.0
with:
extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
| name: Linux Cmake
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
env:
EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }}
jobs:
Linux-cmake:
name: Linux Cmake
uses: steinwurf/linux-cmake-action/.github/workflows/action.yml@3.0.0
with:
extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
|
Replace gitconfig global excludesfile setting | ---
# This is an example of the kinds of things that you can configure via hiera.
# If you've left the defaults in `/hiera.yml`, you might want to copy this file
# to `hiera/common.yaml`, or feel free to start with a blank slate!
# Have a gander at some of these examples to get an idea of some of the things
# that you can affect 'out of the box', and then customise to your
# heart's content.
# Use default ports
mongodb::port: 27017
mysql::config::port: 3306
postgresql::port: 5432
memcached::port: "11211"
dnsmasq::tld: boxen
ruby::rbenv::prefix: "/Users/%{boxen_user}/.rbenv"
| ---
# This is an example of the kinds of things that you can configure via hiera.
# If you've left the defaults in `/hiera.yml`, you might want to copy this file
# to `hiera/common.yaml`, or feel free to start with a blank slate!
# Have a gander at some of these examples to get an idea of some of the things
# that you can affect 'out of the box', and then customise to your
# heart's content.
# Use default ports
mongodb::port: 27017
mysql::config::port: 3306
postgresql::port: 5432
memcached::port: "11211"
dnsmasq::tld: boxen
ruby::rbenv::prefix: "/Users/%{boxen_user}/.rbenv"
git::global_excludesfile: "~/.gitignore"
|
Remove Node minor version requirement from AppVeyor | # Test against this version of Node.js
environment:
matrix:
# node.js
- nodejs_version: "8.0"
- nodejs_version: "6.0"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
# Don't actually build.
build: off
| # Test against this version of Node.js
environment:
matrix:
# node.js
- nodejs_version: "8"
- nodejs_version: "6"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
# Don't actually build.
build: off
|
Add mpi as running requirement | {% set name = "ray" %}
{% set version = "2.3.1" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: Ray-{{ version }}.tar.bz2
url: https://downloads.sourceforge.net/project/denovoassembler/Ray-{{ version }}.tar.bz2
md5: 82f693c4db60af4328263c9279701009
build:
number: 0
skip: No
requirements:
build:
- gcc # [not osx]
- openmpi
run:
- libgcc # [not osx]
test:
commands:
- Ray --help
about:
home: 'http://denovoassembler.sourceforge.net/index.html'
summary: "Parallel genome assemblies for parallel DNA sequencing" | {% set name = "ray" %}
{% set version = "2.3.1" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: Ray-{{ version }}.tar.bz2
url: https://downloads.sourceforge.net/project/denovoassembler/Ray-{{ version }}.tar.bz2
md5: 82f693c4db60af4328263c9279701009
build:
number: 0
skip: No
requirements:
build:
- gcc # [not osx]
- openmpi
run:
- libgcc # [not osx]
- openmpi
test:
commands:
- Ray --help
about:
home: 'http://denovoassembler.sourceforge.net/index.html'
summary: "Parallel genome assemblies for parallel DNA sequencing" |
Disable Flowable 5 tests GitHub Workflow for pull requests, because this build always fails. | name: Flowable 5 Build
on: [push, pull_request]
jobs:
test_jdk:
name: Flowable 5 Tests
runs-on: ubuntu-latest
env:
# '>-' is a special YAML syntax and means that new lines would be replaced with spaces
# and new lines from the end would be removed
MAVEN_CONFIG: >-
-V
-B
--no-transfer-progress
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build and Test
run: cd scripts && ./run-flowable5-tests.sh
| name: Flowable 5 Build
on: [push]
jobs:
test_jdk:
name: Flowable 5 Tests
runs-on: ubuntu-latest
env:
# '>-' is a special YAML syntax and means that new lines would be replaced with spaces
# and new lines from the end would be removed
MAVEN_CONFIG: >-
-V
-B
--no-transfer-progress
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build and Test
run: cd scripts && ./run-flowable5-tests.sh
|
Add Kim back to the PR review rotation | numberOfReviewers: 2
# This group should NEVER be changed based on availability; it's to help
# determine if a PR author is an external contributor.
team:
- brettcannon
- int19h
- karthiknadig
- karrtikr
- kimadeline
- luabud
- paulacamargo25
# Comment yourself out when you will be unavailable for reviews for more than a
# couple of days.
reviewers:
- karthiknadig
- karrtikr
# - kimadeline
- paulacamargo25
| numberOfReviewers: 2
# This group should NEVER be changed based on availability; it's to help
# determine if a PR author is an external contributor.
team:
- brettcannon
- int19h
- karthiknadig
- karrtikr
- kimadeline
- luabud
- paulacamargo25
# Comment yourself out when you will be unavailable for reviews for more than a
# couple of days.
reviewers:
- karthiknadig
- karrtikr
- kimadeline
- paulacamargo25
|
Fix syntax error in CI script | name: Deployment with Maven
on:
push:
branches:
- master
- develop
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Display github.ref
run: echo "github.ref: '"${{github.ref}}"'"
- name: Deployment
if: github.ref == 'ref/heads/master' || github.ref == 'ref/heads/develop'
run: mvn -B -f pom.xml -s .CI/maven-settings.xml deploy -Pci-deploy -DskipTests=true
env:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
| name: Deployment with Maven
on:
push:
branches:
- master
- develop
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Display github.ref
run: echo ${{github.ref}}
- name: Deployment
if: github.ref == 'ref/heads/master' || github.ref == 'ref/heads/develop'
run: mvn -B -f pom.xml -s .CI/maven-settings.xml deploy -Pci-deploy -DskipTests=true
env:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
|
Test in node 0.11 too | language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
|
Add more versions to Travis file | language: node_js
node_js:
- 0.10
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgeos-dev
| language: node_js
node_js:
- '0.10'
- '0.12'
- '4.4'
- '5.10'
- '6.0'
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgeos-dev
|
Update django to latest point releases | language: python
python:
- 3.3
- 2.7
script: make test
notifications:
email: false
env:
global:
- DATABASE_URL='postgres://postgres@localhost/incuna_auth'
matrix:
- DJANGO_VERSION=1.6.3
- DJANGO_VERSION=1.5.4
- DJANGO_VERSION=1.4
matrix:
exclude:
- env: DJANGO_VERSION=1.4
python: 3.3
install:
- psql -c 'CREATE DATABASE incuna_auth' -U postgres;
- pip install -q Django==$DJANGO_VERSION
- pip install -e .
- pip install -r requirements.txt
| language: python
python:
- 3.3
- 2.7
script: make test
notifications:
email: false
env:
global:
- DATABASE_URL='postgres://postgres@localhost/incuna_auth'
matrix:
- DJANGO_VERSION=1.6.3
- DJANGO_VERSION=1.5.6
- DJANGO_VERSION=1.4.11
matrix:
exclude:
- env: DJANGO_VERSION=1.4.11
python: 3.3
install:
- psql -c 'CREATE DATABASE incuna_auth' -U postgres;
- pip install -q Django==$DJANGO_VERSION
- pip install -e .
- pip install -r requirements.txt
|
Add a notification when the build is succeeded. | language: csharp
solution: ObjectDisposedFodyAddin.sln
mono: none
dotnet: 2.2.402
install:
- dotnet restore
script:
- dotnet build -c Release
- dotnet test -c Release ./src/Tests
| language: csharp
solution: ObjectDisposedFodyAddin.sln
mono: none
dotnet: 2.2.402
install:
- dotnet restore
script:
- dotnet build -c Release
- dotnet test -c Release ./src/Tests
notifications:
webhooks: https://outlook.office.com/webhook/2b7add9b-4261-4095-8521-3bcf267a002d@990414fa-d0a3-42f5-b740-21d864a44a28/TravisCI/de007a57b1d343699e8a09d075163eac/539ce6fa-e9aa-413f-a79b-fb7e8998fcac |
Update from Hackage at 2018-02-07T23:37:45Z | homepage: ''
changelog-type: ''
hash: c70717002b52555fe5f8a381a7d4149d4ead41c045376c9dcbda798e728c9d70
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: ATS scripts for Cabal builds
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
unix: -any
Cabal: ! '>=2.0'
filemanip: -any
base: ! '>=4.8 && <5'
process: -any
tar: -any
dependency: -any
http-client-tls: -any
zlib: -any
parallel-io: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.4'
- '0.1.0.5'
- '0.1.0.6'
- '0.2.0.0'
- '0.2.0.1'
- '0.3.0.0'
author: Vanessa McHale
latest: '0.3.0.0'
description-type: markdown
description: ! '# ats-setup
## Installation
## Configuration
'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 6bb895144c7a5560e5d468c2f5e34ac91409749c443d6f0d5f3a6f354f1587e9
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: ATS scripts for Cabal builds
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
unix: -any
Cabal: ! '>=2.0'
filemanip: -any
base: ! '>=4.8 && <5'
process: -any
tar: -any
dependency: -any
http-client-tls: -any
zlib: -any
parallel-io: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.4'
- '0.1.0.5'
- '0.1.0.6'
- '0.2.0.0'
- '0.2.0.1'
- '0.3.0.0'
- '0.3.0.1'
author: Vanessa McHale
latest: '0.3.0.1'
description-type: markdown
description: ! '# ats-setup
## Installation
## Configuration
'
license-name: BSD3
|
Update Dokuwiki to v0.17 (61) | Categories:
- Internet
License: GPL-3.0-or-later
SourceCode: https://github.com/fabienli/DokuwikiAndroid
IssueTracker: https://github.com/fabienli/DokuwikiAndroid/issues
AutoName: Dokuwiki
Description: Android application to access a dokuwiki and keep pages in local cache.
RepoType: git
Repo: https://github.com/fabienli/DokuwikiAndroid
Builds:
- versionName: v0.8
versionCode: 52
commit: v0.8
subdir: app
gradle:
- yes
- versionName: v0.10
versionCode: 54
commit: v0.10
subdir: app
gradle:
- yes
- versionName: v0.11
versionCode: 55
commit: v0.11
subdir: app
gradle:
- yes
- versionName: v0.14
versionCode: 58
commit: v0.14
subdir: app
gradle:
- yes
- versionName: v0.16
versionCode: 60
commit: v0.16
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags v\d+\.\d+
CurrentVersion: v0.16
CurrentVersionCode: 60
| Categories:
- Internet
License: GPL-3.0-or-later
SourceCode: https://github.com/fabienli/DokuwikiAndroid
IssueTracker: https://github.com/fabienli/DokuwikiAndroid/issues
AutoName: Dokuwiki
Description: Android application to access a dokuwiki and keep pages in local cache.
RepoType: git
Repo: https://github.com/fabienli/DokuwikiAndroid
Builds:
- versionName: v0.8
versionCode: 52
commit: v0.8
subdir: app
gradle:
- yes
- versionName: v0.10
versionCode: 54
commit: v0.10
subdir: app
gradle:
- yes
- versionName: v0.11
versionCode: 55
commit: v0.11
subdir: app
gradle:
- yes
- versionName: v0.14
versionCode: 58
commit: v0.14
subdir: app
gradle:
- yes
- versionName: v0.16
versionCode: 60
commit: v0.16
subdir: app
gradle:
- yes
- versionName: v0.17
versionCode: 61
commit: v0.17
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags v\d+\.\d+
CurrentVersion: v0.17
CurrentVersionCode: 61
|
Add default/securityGroups and default/vpc entries to YML config | server:
port: 8083
default:
bake:
account: default
front50:
baseUrl: http://localhost:8080
tide:
baseUrl: http://localhost:8090
oort:
baseUrl: http://localhost:7002
mort:
baseUrl: http://localhost:7002
kato:
baseUrl: http://localhost:7002
echo:
enabled: false
bakery:
baseUrl: http://localhost:8089
redis:
connection: ${REDIS_URL:redis://localhost:6379}
tasks:
useWaitForAllNetflixAWSInstancesDownTask: false
| server:
port: 8083
default:
bake:
account: default
securityGroups:
vpc:
securityGroups:
front50:
baseUrl: http://localhost:8080
tide:
baseUrl: http://localhost:8090
oort:
baseUrl: http://localhost:7002
mort:
baseUrl: http://localhost:7002
kato:
baseUrl: http://localhost:7002
echo:
enabled: false
bakery:
baseUrl: http://localhost:8089
redis:
connection: ${REDIS_URL:redis://localhost:6379}
tasks:
useWaitForAllNetflixAWSInstancesDownTask: false
|
Update from Hackage at 2018-05-08T21:57:18Z | homepage: https://github.com/tonyday567/numhask#readme
changelog-type: ''
hash: 35bf9071468a7eaae7d60f07a81d35ae1a7129fb32c4f1ec53a0df0acb08a888
test-bench-deps: {}
maintainer: tonyday567@gmail.com
synopsis: numeric classes
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.12'
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
- '0.0.7'
- '0.0.8'
- '0.0.9'
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4.0'
- '0.2.0.0'
author: Tony Day
latest: '0.2.0.0'
description-type: haddock
description: A numeric class heirarchy.
license-name: BSD3
| homepage: https://github.com/tonyday567/numhask#readme
changelog-type: ''
hash: 7c67d7c40d00c35241d475d77afc5e5434821ac28a4188005a2d79da928c2756
test-bench-deps: {}
maintainer: tonyday567@gmail.com
synopsis: numeric classes
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.12'
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
- '0.0.7'
- '0.0.8'
- '0.0.9'
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4.0'
- '0.2.0.0'
- '0.2.1.0'
author: Tony Day
latest: '0.2.1.0'
description-type: haddock
description: A numeric class heirarchy.
license-name: BSD3
|
Fix typo in name of test | ---
"Get an empty emote info":
- skip:
version: " - 5.3.99"
reason: this API doesn't exist in 5.3.x yet
- do:
remote.info: {}
- is_true: ''
| ---
"Get an empty remote info":
- skip:
version: " - 5.3.99"
reason: this API doesn't exist in 5.3.x yet
- do:
remote.info: {}
- is_true: ''
|
Add osx and win anaconda build targets | package: s3fs
user: s3fs
platform:
- linux-64
engine:
- python=2.7
- python=3.4
- python=3.5
install:
- conda config --add channels dask
before_script:
- conda info
- python -V
script:
- conda build conda.recipe
build_targets: conda
iotimeout: 600
| package: s3fs
user: s3fs
platform:
- linux-64
- osx-64
- win-64
engine:
- python=2.7
- python=3.4
- python=3.5
install:
- conda config --add channels dask
before_script:
- conda info
- python -V
script:
- conda build conda.recipe
build_targets: conda
iotimeout: 600
|
Update from Hackage at 2020-12-26T22:45:44Z | homepage: https://github.com/sol/markdown-unlit#readme
changelog-type: ''
hash: 42e8052f6c497b200f6819c54bcd113fa5e0ed9a539408eacfbeaf3685b99b07
test-bench-deps:
base: ==4.*
hspec: ==2.*
stringbuilder: -any
silently: -any
base-compat: -any
temporary: -any
QuickCheck: -any
directory: -any
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Literate Haskell support for Markdown
changelog: ''
basic-deps:
base: ==4.*
markdown-unlit: -any
base-compat: -any
all-versions:
- 0.1.0
- 0.2.0
- 0.2.0.1
- 0.3.1
- 0.4.0
- 0.4.1
- 0.5.0
author: Simon Hengel <sol@typeful.net>
latest: 0.5.0
description-type: haddock
description: ! 'Documentation is here: <https://github.com/sol/markdown-unlit#readme>'
license-name: MIT
| homepage: https://github.com/sol/markdown-unlit#readme
changelog-type: ''
hash: 9815c9e0f95b3a7fd85a9526e4293ac3d4d84559d7c3a6e7c30c30cfbaf864c6
test-bench-deps:
base: ==4.*
hspec: ==2.*
stringbuilder: -any
silently: -any
base-compat: -any
temporary: -any
QuickCheck: -any
directory: -any
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Literate Haskell support for Markdown
changelog: ''
basic-deps:
base: ==4.*
markdown-unlit: -any
base-compat: -any
all-versions:
- 0.1.0
- 0.2.0
- 0.2.0.1
- 0.3.1
- 0.4.0
- 0.4.1
- 0.5.0
- 0.5.1
author: Simon Hengel <sol@typeful.net>
latest: 0.5.1
description-type: haddock
description: 'Documentation is here: <https://github.com/sol/markdown-unlit#readme>'
license-name: MIT
|
Deploy via Github Actions (try 2) | name: Deployment
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: yarn install
- run: yarn test
publish-gh:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: yarn run build
- run: yarn run deploy
| name: Deployment
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: yarn install
- run: yarn test
publish-gh:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: yarn install
- run: yarn build
- run: yarn deploy
|
Fix an incorrect script path | version: 2
jobs:
Unit Test:
docker:
- image: circleci/python:3.7.1
steps:
- checkout
- run:
command: |
sudo pip install virtualenv
sudo pip install nox
nox -f noxfile.py -s unit
Lint:
docker:
- image: circleci/python:3.7.1
steps:
- checkout
- run:
command: |
sudo pip install virtualenv
sudo pip install nox
nox -f noxfile.py -s lint
Release:
docker:
- image: circleci/python:3.7.1
steps:
- checkout
- run:
command: |
sudo pip install --upgrade twine
sudo pip install --upgrade wheel
sudo pip install --upgrade setuptools
source scripts/twine_upload.sh
workflows:
version: 2
test:
jobs:
- Unit Test
- Lint
release:
jobs:
- Release:
filters:
# Runs for no branches and only for tags like "1.2.3"
branches:
ignore: /.*/
tags:
only:
- /^\d+\.\d+\.\d+$/
| version: 2
jobs:
Unit Test:
docker:
- image: circleci/python:3.7.1
steps:
- checkout
- run:
command: |
sudo pip install virtualenv
sudo pip install nox
nox -f noxfile.py -s unit
Lint:
docker:
- image: circleci/python:3.7.1
steps:
- checkout
- run:
command: |
sudo pip install virtualenv
sudo pip install nox
nox -f noxfile.py -s lint
Release:
docker:
- image: circleci/python:3.7.1
steps:
- checkout
- run:
command: |
sudo pip install --upgrade twine
sudo pip install --upgrade wheel
sudo pip install --upgrade setuptools
source twine_upload.sh
workflows:
version: 2
test:
jobs:
- Unit Test
- Lint
release:
jobs:
- Release:
filters:
# Runs for no branches and only for tags like "1.2.3"
branches:
ignore: /.*/
tags:
only:
- /^\d+\.\d+\.\d+$/
|
Update app memory to 160MB | ---
declared-services:
talent-manager-db:
label: cloudantNoSQLDB
plan: Shared
personality-insights-talent-manager:
label: personality_insights
plan: standard
applications:
- disk_quota: 1024M
host: recruitapp
name: recruitapp
path: ./webStarterApp.war
instances: 1
buildpack: https://github.com/cloudfoundry/java-buildpack.git
memory: 128M
services:
- talent-manager-db
- personality-insights-talent-manager
| ---
declared-services:
talent-manager-db:
label: cloudantNoSQLDB
plan: Shared
personality-insights-talent-manager:
label: personality_insights
plan: standard
applications:
- disk_quota: 1024M
host: recruitapp
name: recruitapp
path: ./webStarterApp.war
instances: 1
buildpack: https://github.com/cloudfoundry/java-buildpack.git
memory: 160M
services:
- talent-manager-db
- personality-insights-talent-manager
|
Revert "Ajout d'une route pour l'api" | tram_admin:
resource: "@TramAdminBundle/Resources/config/routing.yml"
prefix: /
tram_user:
resource: "@TramUserBundle/Resources/config/routing.yml"
prefix: /
tram:
resource: "@TramBundle/Resources/config/routing.yml"
prefix: /
api:
pattern: /api
host: api-dev.grenoble-tram.fr
root:
pattern: /
defaults:
_controller: FrameworkBundle:Redirect:urlRedirect
path: /Lignes
permanent: true
| tram_admin:
resource: "@TramAdminBundle/Resources/config/routing.yml"
prefix: /
tram_user:
resource: "@TramUserBundle/Resources/config/routing.yml"
prefix: /
tram:
resource: "@TramBundle/Resources/config/routing.yml"
prefix: /
root:
pattern: /
defaults:
_controller: FrameworkBundle:Redirect:urlRedirect
path: /Lignes
permanent: true
|
Add backup disk to transition-postgresql-slave | ---
lv:
data:
pv: '/dev/sdb1'
vg: 'postgresql'
mount:
/var/lib/postgresql:
disk: '/dev/mapper/postgresql-data'
govuk_lvm: 'data'
mountoptions: 'defaults'
govuk_postgresql::server::slave::master_host: 'transition-postgresql-master-1.backend'
| ---
lv:
postgresql:
pv: '/dev/sdb1'
vg: 'backups'
data:
pv: '/dev/sdc1'
vg: 'postgresql'
mount:
/var/lib/postgresql:
disk: '/dev/mapper/postgresql-data'
govuk_lvm: 'data'
mountoptions: 'defaults'
/var/lib/autopostgresqlbackup:
disk: '/dev/mapper/backups-postgresql'
govuk_lvm: 'postgresql'
mountoptions: 'defaults'
govuk_postgresql::server::slave::master_host: 'transition-postgresql-master-1.backend'
|
Remove unneeded properties related to frontend only | spring:
# Internalization
messages.basename: i18n/messages
# JPA
jpa:
open-in-view: false
# Resources
resources:
cache:
cachecontrol:
max-age: 31536000s
# Flyway
flyway:
enabled: false # to keep boot from migrating
# Primary datasource properties
primary:
datasource:
url: jdbc:h2:mem:primary
username: sa
password:
flyway:
location: classpath:db/migration/primary
jpa:
properties:
hibernate:
dialect: org.hibernate.dialect.H2Dialect
show_sql: true
format_sql: true
generate_statistics: true
id.new_generator_mappings: true
order_updates: true
default_batch_fetch_size: 4
max_fetch_depth: 2
hbm2ddl.auto:
# Secondary datasource properties
secondary:
datasource:
url: jdbc:h2:mem:secondary
username: sa
password:
flyway:
location: classpath:db/migration/secondary
jpa:
properties:
hibernate:
dialect: org.hibernate.dialect.H2Dialect
show_sql: false
format_sql: false
generate_statistics: false
id.new_generator_mappings: true
order_updates: true
default_batch_fetch_size: 4
max_fetch_depth: 2
hbm2ddl.auto:
| spring:
# Internalization
messages.basename: i18n/messages
# Flyway
flyway:
enabled: false # to keep boot from migrating
# Primary datasource properties
primary:
datasource:
url: jdbc:h2:mem:primary
username: sa
password:
flyway:
location: classpath:db/migration/primary
jpa:
properties:
hibernate:
dialect: org.hibernate.dialect.H2Dialect
show_sql: true
format_sql: true
generate_statistics: true
id.new_generator_mappings: true
order_updates: true
default_batch_fetch_size: 4
max_fetch_depth: 2
hbm2ddl.auto:
# Secondary datasource properties
secondary:
datasource:
url: jdbc:h2:mem:secondary
username: sa
password:
flyway:
location: classpath:db/migration/secondary
jpa:
properties:
hibernate:
dialect: org.hibernate.dialect.H2Dialect
show_sql: false
format_sql: false
generate_statistics: false
id.new_generator_mappings: true
order_updates: true
default_batch_fetch_size: 4
max_fetch_depth: 2
hbm2ddl.auto:
|
Remove comments from middle of the devices list | parameter_defaults:
#NtpServer: 10.5.26.10
DockerPuppetDebug: false
OvercloudControlFlavor: control
ControllerCount: 1
OvercloudComputeFlavor: compute
ComputeCount: 1
OvercloudCephStorageFlavor: ceph-storage
CephStorageCount: 3
CephPoolDefaultSize: 1
CephPoolDefaultPgNum: 32
CephAnsiblePlaybook: /usr/share/ceph-ansible/site-docker.yml.sample
CephAnsibleDisksConfig:
devices:
# r
- /dev/vdb
- /dev/vdc
- /dev/vdd
- /dev/vde
# s
- /dev/vdf
- /dev/vdg
- /dev/vdh
- /dev/vdi
# t
- /dev/vdj
- /dev/vdk
- /dev/vdl
- /dev/vdm
# u
- /dev/vdn
- /dev/vdo
- /dev/vdp
- /dev/vdq
dedicated_devices:
- /dev/vdr
- /dev/vds
- /dev/vdt
- /dev/vdu
journal_size: 256 # vdd is 1024M
CephAnsibleExtraConfig:
osd_scenario: non-collocated
osd_objectstore: filestore
| parameter_defaults:
#NtpServer: 10.5.26.10
DockerPuppetDebug: false
OvercloudControlFlavor: control
ControllerCount: 1
OvercloudComputeFlavor: compute
ComputeCount: 1
OvercloudCephStorageFlavor: ceph-storage
CephStorageCount: 3
CephPoolDefaultSize: 1
CephPoolDefaultPgNum: 32
CephAnsiblePlaybook: /usr/share/ceph-ansible/site-docker.yml.sample
CephAnsibleDisksConfig:
devices:
- /dev/vdb
- /dev/vdc
- /dev/vdd
- /dev/vde
- /dev/vdf
- /dev/vdg
- /dev/vdh
- /dev/vdi
- /dev/vdj
- /dev/vdk
- /dev/vdl
- /dev/vdm
- /dev/vdn
- /dev/vdo
- /dev/vdp
- /dev/vdq
dedicated_devices:
- /dev/vdr
- /dev/vds
- /dev/vdt
- /dev/vdu
journal_size: 256 # vdd is 1024M
CephAnsibleExtraConfig:
osd_scenario: non-collocated
osd_objectstore: filestore
|
Test on the latest Debian in TK | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: debian-7.11
- name: debian-8.6
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: default
run_list:
- recipe[ufw::default]
| driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: debian-7.11
- name: debian-8.7
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: default
run_list:
- recipe[ufw::default]
|
Remove hack for ubuntu cloud archive | - hosts: controller
roles:
- role: test-matrix
test_matrix_role: primary
- hosts: subnode
roles:
- role: test-matrix
test_matrix_role: subnode
- hosts: all
roles:
- configure-swap
- setup-stack-user
- setup-tempest-user
- setup-devstack-source-dirs
- setup-devstack-log-dir
- setup-devstack-cache
- start-fresh-logging
- write-devstack-local-conf
# TODO(jeblair): remove when configure-mirrors is fixed
tasks:
- name: Hack mirror_info
shell:
_raw_params: |
mkdir /etc/ci
cat << "EOF" > /etc/ci/mirror_info.sh
export NODEPOOL_UCA_MIRROR=http://mirror.dfw.rax.openstack.org/ubuntu-cloud-archive
EOF
args:
executable: /bin/bash
become: true
| - hosts: controller
roles:
- role: test-matrix
test_matrix_role: primary
- hosts: subnode
roles:
- role: test-matrix
test_matrix_role: subnode
- hosts: all
roles:
- configure-swap
- setup-stack-user
- setup-tempest-user
- setup-devstack-source-dirs
- setup-devstack-log-dir
- setup-devstack-cache
- start-fresh-logging
- write-devstack-local-conf
|
Add test Dockerfile to Dependabot configuration | version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
| version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/tests/multiple-ports/"
schedule:
interval: "daily"
|
Set code signing secrets in desktop build workflow | name: build-desktop
on:
push:
paths:
- "core/**"
- "desktop/**"
- ".github/workflows/build-desktop.yml"
jobs:
build-desktop:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
os-short: lnx
- os: macos-latest
os-short: mac
- os: windows-latest
os-short: win
runs-on: ${{ matrix.os }}
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm i
- run: npm run bootstrap
- run: npm run build
working-directory: core
- run: npm run build:all
working-directory: desktop
- run: npm run package:${{ matrix.os-short }}
working-directory: desktop
| name: build-desktop
on:
push:
paths:
- "core/**"
- "desktop/**"
- ".github/workflows/build-desktop.yml"
jobs:
build-desktop:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm i
- run: npm run bootstrap
- run: npm run build
working-directory: core
- run: npm run build:all
working-directory: desktop
- run: npm run package:mac
if: runner.os == 'macOS'
env:
CSC_LINK: ${{ secrets.MAC_CERT }}
CSC_KEY_PASSWORD: ${{ secrets.MAC_CERT_PW }}
working-directory: desktop
- run: npm run package:win
if: runner.os == 'Windows'
env:
CSC_LINK: ${{ secrets.WIN_CERT }}
CSC_KEY_PASSWORD: ${{ secrets.WIN_CERT_PW }}
working-directory: desktop
- run: npm run package:lnx
if: runner.os == 'Linux'
working-directory: desktop
|
Add tinytex and htmltools for knitting R markdown files | channels:
- conda-forge
- bioconda
dependencies:
- r-base
- r-tidyverse
- r-biocmanager
- nano
- bioconductor-breastcancermainz
- bioconductor-biobase
- bioconductor-limma
- bioconductor-pathview
- bioconductor-hgu133a.db | channels:
- conda-forge
- bioconda
dependencies:
- r-base
- r-tidyverse
- r-biocmanager
- r-htmltools
- r-tinytex
- nano
- bioconductor-breastcancermainz
- bioconductor-biobase
- bioconductor-limma
- bioconductor-pathview
- bioconductor-hgu133a.db
|
Add Python 3.6, 3.7, 3.8 to testing | name: Test Workflow
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [2]
os: [ubuntu-latest]
services:
SQLServer:
image: mcr.microsoft.com/mssql/server:2017-latest
env:
ACCEPT_EULA: Y
SA_PASSWORD: sqlServerPassw0rd
ports:
- 1433:1433
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install freetds-dev
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: build & install
run: |
python setup.py build install
# stop the build if there are Python syntax errors or undefined names
- name: Test with pytest
run: |
pytest
| name: Test Workflow
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [2, 3.6, 3.7, 3.8]
os: [ubuntu-latest]
services:
SQLServer:
image: mcr.microsoft.com/mssql/server:2017-latest
env:
ACCEPT_EULA: Y
SA_PASSWORD: sqlServerPassw0rd
ports:
- 1433:1433
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install freetds-dev
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: build & install
run: |
python setup.py build install
# stop the build if there are Python syntax errors or undefined names
- name: Test with pytest
run: |
pytest
|
Update ci thrift version to 0.13.0, comment google gradle repo | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Install thrift 0.13.0
run: |
sudo apt-get update -y
sudo apt-get install automake bison flex g++ git libboost-all-dev libevent-dev libtool make pkg-config libssl1.0-dev
wget https://archive.apache.org/dist/thrift/0.13.0/thrift-0.13.0.tar.gz
tar xfz thrift-0.13.0.tar.gz
cd thrift-0.13.0 && ./configure --with-java --without-csharp --without-erlang --without-cpp --without-c_glib --without-python --without-php --without-ruby --without-go && sudo make install
- name: Build with Maven
run: mvn -B package --file pom.xml
| # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Install thrift 0.13.0
run: |
sudo apt-get update -y
sudo apt-get install automake bison flex g++ git libboost-all-dev libevent-dev libtool make pkg-config libssl1.0-dev
wget https://archive.apache.org/dist/thrift/0.13.0/thrift-0.13.0.tar.gz
tar xfz thrift-0.13.0.tar.gz
cd thrift-0.13.0 && sed -i 's/google/\/\/google/g' lib/java/build.gradle && ./configure --with-java --without-csharp --without-erlang --without-cpp --without-c_glib --without-python --without-php --without-ruby --without-go && sudo make install
- name: Build with Maven
run: mvn -B package --file pom.xml
|
Use mariadb instead of mysql | version: '2'
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
ports:
- "31215:31215"
volumes:
- "./cloogle.log:/usr/src/cloogle/cloogle.log"
- "./cache:/usr/src/cloogle/cache"
restart: always
cap_add:
- IPC_LOCK
frontend:
build:
context: .
dockerfile: frontend/Dockerfile
depends_on:
- backend
ports:
- "80:80"
volumes:
- "./frontend/:/var/www/html/"
restart: always
stats:
build: stats
depends_on:
- frontend
- db
ports:
- "31216:31216"
volumes:
- "./cloogle.log:/var/log/cloogle.log"
restart: always
db:
image: mysql:latest
volumes:
- "./db/:/docker-entrypoint-initdb.d/"
- "./db/storage/:/var/lib/mysql/"
environment:
MYSQL_ROOT_PASSWORD: cloogle
MYSQL_DATABASE: cloogledb
MYSQL_USER: cloogle
MYSQL_PASSWORD: cloogle
restart: always
gc:
build: gc
volumes:
- "./cache:/var/cache"
restart: always
| version: '2'
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
ports:
- "31215:31215"
volumes:
- "./cloogle.log:/usr/src/cloogle/cloogle.log"
- "./cache:/usr/src/cloogle/cache"
restart: always
cap_add:
- IPC_LOCK
frontend:
build:
context: .
dockerfile: frontend/Dockerfile
depends_on:
- backend
ports:
- "80:80"
volumes:
- "./frontend/:/var/www/html/"
restart: always
stats:
build: stats
depends_on:
- frontend
- db
ports:
- "31216:31216"
volumes:
- "./cloogle.log:/var/log/cloogle.log"
restart: always
db:
image: mariadb:latest
volumes:
- "./db/:/docker-entrypoint-initdb.d/"
- "./db/storage/:/var/lib/mysql/"
environment:
MYSQL_ROOT_PASSWORD: cloogle
MYSQL_DATABASE: cloogledb
MYSQL_USER: cloogle
MYSQL_PASSWORD: cloogle
restart: always
gc:
build: gc
volumes:
- "./cache:/var/cache"
restart: always
|
Update Chubby Click to v1.6 (10) | Categories:
- Multimedia
License: GPL-3.0-or-later
WebSite: https://codeberg.org/agrigolo/chubby-click
SourceCode: https://codeberg.org/agrigolo/chubby-click
IssueTracker: https://codeberg.org/agrigolo/chubby-click/issues
AutoName: Chubby Click
RepoType: git
Repo: https://codeberg.org/agrigolo/chubby-click.git
Builds:
- versionName: v1.3
versionCode: 6
commit: v1.3
subdir: app
gradle:
- yes
- versionName: v1.5
versionCode: 9
commit: v1.5
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: v1.5
CurrentVersionCode: 9
| Categories:
- Multimedia
License: GPL-3.0-or-later
WebSite: https://codeberg.org/agrigolo/chubby-click
SourceCode: https://codeberg.org/agrigolo/chubby-click
IssueTracker: https://codeberg.org/agrigolo/chubby-click/issues
AutoName: Chubby Click
RepoType: git
Repo: https://codeberg.org/agrigolo/chubby-click.git
Builds:
- versionName: v1.3
versionCode: 6
commit: v1.3
subdir: app
gradle:
- yes
- versionName: v1.5
versionCode: 9
commit: v1.5
subdir: app
gradle:
- yes
- versionName: v1.6
versionCode: 10
commit: v1.6
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: v1.6
CurrentVersionCode: 10
|
Update DbCleaner for Whatsapp to 1.1 (4) | AntiFeatures:
- NonFreeDep
Categories:
- System
License: GPL-3.0-only
AuthorName: Thabang Serumula
AuthorEmail: tjserumula@gmail.com
AuthorWebSite: http://www.thabangserumula.co.za/
SourceCode: https://github.com/tserumula/DbCleanerforWhatsapp
IssueTracker: https://github.com/tserumula/DbCleanerforWhatsapp/issues
RepoType: git
Repo: https://github.com/tserumula/DbCleanerforWhatsapp.git
Builds:
- versionName: 1.0.0
versionCode: 2
commit: 69e1ed2d2b45fdc7a80e0211c24aad8f3d00ad67
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 1.0.0
CurrentVersionCode: 2
| AntiFeatures:
- NonFreeDep
Categories:
- System
License: GPL-3.0-only
AuthorName: Thabang Serumula
AuthorEmail: tjserumula@gmail.com
AuthorWebSite: http://www.thabangserumula.co.za/
SourceCode: https://github.com/tserumula/DbCleanerforWhatsapp
IssueTracker: https://github.com/tserumula/DbCleanerforWhatsapp/issues
AutoName: DbCleaner for Whatsapp
RepoType: git
Repo: https://github.com/tserumula/DbCleanerforWhatsapp.git
Builds:
- versionName: 1.0.0
versionCode: 2
commit: 69e1ed2d2b45fdc7a80e0211c24aad8f3d00ad67
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
- versionName: '1.1'
versionCode: 4
commit: a026f4405ac16ff06ee9cc5403002bd7c56e7f71
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: '1.1'
CurrentVersionCode: 4
|
Fix "edit this page" links in docs | streams:
schemes:
theme:
type: ReadOnlyStream
prefixes:
'':
- user/themes/site
- user/themes/learn2
google_analytics_code: UA-57144786-2
github:
position: top # top | bottom | off
tree: https://github.com/select2/docs/blob/develop/
commits: https://github.com/select2/docs/commits/develop/
| streams:
schemes:
theme:
type: ReadOnlyStream
prefixes:
'':
- user/themes/site
- user/themes/learn2
google_analytics_code: UA-57144786-2
github:
position: top # top | bottom | off
tree: https://github.com/select2/select2/blob/develop/docs/
commits: https://github.com/select2/select2/commits/develop/docs/
|
Enable debug on GitHub Maven build to see what RAT is finding unapproved. | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -V package --file pom.xml
| # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -debug -V package --file pom.xml
|
Test Python 3.11 on CI | # This workflow will install project dependencies and run all tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install graphviz
run: |
sudo apt-get install graphviz
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with nose2
run: |
coverage run -m nose2 tests
coverage lcov -o cover/coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
continue-on-error: true
with:
path-to-lcov: cover/coverage.lcov
github-token: ${{ secrets.GITHUB_TOKEN }}
| # This workflow will install project dependencies and run all tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install graphviz
run: |
sudo apt-get install graphviz
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with nose2
run: |
coverage run -m nose2 tests
coverage lcov -o cover/coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
continue-on-error: true
with:
path-to-lcov: cover/coverage.lcov
github-token: ${{ secrets.GITHUB_TOKEN }}
|
Update flake8-bugbear in pre-commit config | repos:
- repo: https://github.com/asottile/pyupgrade
rev: v1.16.3
hooks:
- id: pyupgrade
- repo: https://github.com/python/black
rev: 19.3b0
hooks:
- id: black
language_version: python3
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.7
hooks:
- id: flake8
additional_dependencies: ['flake8-bugbear==18.8.0; python_version >= "3.5"']
- repo: https://github.com/asottile/blacken-docs
rev: v0.5.0
hooks:
- id: blacken-docs
additional_dependencies: [black==19.3b0]
| repos:
- repo: https://github.com/asottile/pyupgrade
rev: v1.16.3
hooks:
- id: pyupgrade
- repo: https://github.com/python/black
rev: 19.3b0
hooks:
- id: black
language_version: python3
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.7
hooks:
- id: flake8
additional_dependencies: ['flake8-bugbear==19.3.0; python_version >= "3.5"']
- repo: https://github.com/asottile/blacken-docs
rev: v0.5.0
hooks:
- id: blacken-docs
additional_dependencies: [black==19.3b0]
|
Update setuptools_scm recipe to version 1.15.5 | {% set version = "1.15.0" %}
package:
name: setuptools_scm
version: {{ version }}
source:
fn: setuptools_scm-{{ version }}.tar.gz
url: https://pypi.io/packages/source/s/setuptools_scm/setuptools_scm-{{ version }}.tar.gz
sha256: daf12d05aa2155a46aa357453757ffdc47d87f839e62114f042bceac6a619e2f
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- pip
- setuptools
run:
- python
- setuptools
test:
imports:
- setuptools_scm
about:
home: https://github.com/pypa/setuptools_scm/
license: MIT
summary: 'The blessed package to manage your versions by scm tags.'
| {% set version = "1.15.5" %}
package:
name: setuptools_scm
version: {{ version }}
source:
fn: setuptools_scm-{{ version }}.tar.gz
url: https://pypi.io/packages/source/s/setuptools_scm/setuptools_scm-{{ version }}.tar.gz
sha256: 145b2a8a609e0fd66108a92a06fe62d0fb329c0eb944f2d5c7ae3ca24222f29e
build:
number: 0
noarch: python
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- pip
- setuptools
run:
- python
- setuptools
test:
imports:
- setuptools_scm
about:
home: https://github.com/pypa/setuptools_scm/
license: MIT
summary: 'The blessed package to manage your versions by scm tags.'
|
Update from Hackage at 2018-06-23T12:29:59Z | homepage: ''
changelog-type: ''
hash: 239458fa2ab9d519a2628e3d642629b1890c6bd9e1b87187e0bac2fa22604c8f
test-bench-deps:
base: -any
hspec: -any
cdeps: -any
maintainer: vamchale@gmail.com
synopsis: Extract dependencies from C code.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5'
text: -any
filepath: -any
array: -any
cdeps: -any
optparse-applicative: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.1.0'
- '0.1.1.1'
- '0.1.1.2'
- '0.1.1.3'
author: Vanessa McHale
latest: '0.1.1.3'
description-type: markdown
description: ! '# cdeps
This package provides the ability to extract C dependencies from source code. It
can be used with [shake](https://shakebuild.com) or for other purposes.
'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: b1a881bee2d8f9d6994f1b0f441ae3794a3a846c01730c76fae91ce608a10555
test-bench-deps:
base: -any
hspec: -any
cdeps: -any
maintainer: vamchale@gmail.com
synopsis: Extract dependencies from C code.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.9 && <5'
text: -any
filepath: -any
array: -any
cdeps: -any
optparse-applicative: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.1.0'
- '0.1.1.1'
- '0.1.1.2'
- '0.1.1.3'
author: Vanessa McHale
latest: '0.1.1.3'
description-type: markdown
description: ! '# cdeps
This package provides the ability to extract C dependencies from source code. It
can be used with [shake](https://shakebuild.com) or for other purposes.
'
license-name: BSD3
|
Update from Hackage at 2017-01-05T05:12:06Z | homepage: ''
changelog-type: ''
hash: de943df0d88f9690592f8491fbfd616d1eeaea958fd0fdc98fb452807b274ba2
test-bench-deps: {}
maintainer: Alex Lang <me@alang.ca>
synopsis: Bindings to the QuadProg++ quadratic programming library
changelog: ''
basic-deps:
base: ! '>=4.5 && <4.9'
hmatrix: ! '>=0.16'
vector: ! '>=0.9'
all-versions:
- '0.1.0.0'
- '0.2.0.1'
- '0.2.0.2'
- '0.3.0.0'
author: Alex Lang, Takano Akio
latest: '0.3.0.0'
description-type: haddock
description: ! 'Bindings to QuadProg++, a C++ library for quadratic programming.
<http://sourceforge.net/projects/quadprog/>'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 75479889212c155bfc845a72b9bdb8cfd34cb0b608904dd1888a9cdb3204627b
test-bench-deps: {}
maintainer: Alex Lang <me@alang.ca>
synopsis: Bindings to the QuadProg++ quadratic programming library
changelog: ''
basic-deps:
base: ! '>=4.5 && <5.1'
hmatrix: ! '>=0.16'
vector: ! '>=0.9'
all-versions:
- '0.1.0.0'
- '0.2.0.1'
- '0.2.0.2'
- '0.3.0.0'
- '0.3.0.1'
author: Alex Lang, Takano Akio
latest: '0.3.0.1'
description-type: haddock
description: ! 'Bindings to QuadProg++, a C++ library for quadratic programming.
<http://sourceforge.net/projects/quadprog/>'
license-name: BSD3
|
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templates:
- journal
- type: directory
path: data/authors
label: Authors
create: documents
match: "**/*.json"
new_doc_ext: json
templates:
- author
- type: document
path: data/theme.json
label: Theme configuration
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
publish_command: gridsome build
output_directory: dist
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templates:
- journal
- type: directory
path: data/authors
label: Authors
create: documents
match: "**/*.json"
new_doc_ext: json
templates:
- author
- type: document
path: data/theme.json
label: Theme config
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
publish_command: gridsome build
output_directory: dist
|
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
-d _site
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: assets/images
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
-d _site
|
Fix problem that redmine-db was not used | version: '2'
services:
redmine:
image: redmine:3.3-passenger
restart: always
environment:
REDMINE_DB_USERNAME: redmine
REDMINE_DB_PASSWORD: redmine
HTTP_PROXY:
HTTPS_PROXY:
http_proxy:
https_proxy:
NO_PROXY: gitbucket
ports:
- "3000:3000"
volumes_from:
- redmine-data
depends_on:
- redmine-data
- redmine-db
redmine-data:
image: busybox
volumes:
- /usr/src/redmine/files
redmine-db:
image: postgres:9.6-alpine
restart: always
environment:
POSTGRES_USER: redmine
POSTGRES_PASSWORD: redmine
volumes_from:
- redmine-db-data
depends_on:
- redmine-db-data
redmine-db-data:
image: busybox
volumes:
- /var/lib/postgresql/data
| version: '2'
services:
redmine:
image: redmine:3.3-passenger
restart: always
environment:
REDMINE_DB_POSTGRES: redmine-db
REDMINE_DB_USERNAME: redmine
REDMINE_DB_PASSWORD: redmine
HTTP_PROXY:
HTTPS_PROXY:
http_proxy:
https_proxy:
NO_PROXY: gitbucket
ports:
- "3000:3000"
volumes_from:
- redmine-data
depends_on:
- redmine-data
- redmine-db
redmine-data:
image: busybox
volumes:
- /usr/src/redmine/files
redmine-db:
image: postgres:9.6-alpine
restart: always
environment:
POSTGRES_USER: redmine
POSTGRES_PASSWORD: redmine
volumes_from:
- redmine-db-data
depends_on:
- redmine-db-data
redmine-db-data:
image: busybox
volumes:
- /var/lib/postgresql/data
|
Update openWorkout to 1.3 (13) | Categories:
- Sports & Health
License: GPL-3.0-or-later
AuthorName: olie.xdev
SourceCode: https://github.com/oliexdev/openWorkout
IssueTracker: https://github.com/oliexdev/openWorkout/issues
Changelog: https://github.com/oliexdev/openWorkout/releases
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H5KSTQA6TKTE4&source=url
AutoName: openWorkout
RepoType: git
Repo: https://github.com/oliexdev/openWorkout
Builds:
- versionName: '1.2'
versionCode: 12
commit: v1.2
subdir: app
gradle:
- fdroid
rm:
- pkg
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.2'
CurrentVersionCode: 12
| Categories:
- Sports & Health
License: GPL-3.0-or-later
AuthorName: olie.xdev
SourceCode: https://github.com/oliexdev/openWorkout
IssueTracker: https://github.com/oliexdev/openWorkout/issues
Changelog: https://github.com/oliexdev/openWorkout/releases
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H5KSTQA6TKTE4&source=url
AutoName: openWorkout
RepoType: git
Repo: https://github.com/oliexdev/openWorkout
Builds:
- versionName: '1.2'
versionCode: 12
commit: v1.2
subdir: app
gradle:
- fdroid
rm:
- pkg
- versionName: '1.3'
versionCode: 13
commit: v1.3
subdir: app
gradle:
- fdroid
rm:
- pkg
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.3'
CurrentVersionCode: 13
|
Update eslint config in test to reflect node version specified by travis build | env:
node: true
mocha: true
parserOptions:
ecmaVersion: 9
rules:
no-console: 0
| env:
node: true
mocha: true
parserOptions:
ecmaVersion: 10
rules:
no-console: 0
|
Remove renovate, build with kaniko | stages:
- build
- renovate
default:
tags:
- kubernetes
include:
- project: max/ci-templates
file: renovate.yml
- project: max/ci-templates
file: docker.yml
Renovate:
stage: renovate
extends: .renovate
variables:
RENOVATE_GIT_AUTHOR: "Renovate <ekeih@users.noreply.github.com>"
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && $TAG_WITH_DATE != "true"
latest:
extends: .docker-release-latest
release:
extends: .docker-release-with-date
| stages:
- build
default:
tags:
- kubernetes
include:
- project: max/ci-templates
file: kaniko.yml
latest:
extends: .kaniko-gitlab-release-latest
|
Update from Hackage at 2017-03-28T10:33:04Z | homepage: github.com/opencog/atomspace/tree/master/opencog/haskell
changelog-type: ''
hash: b25a3017bf4a285aa9d3ef3675e8f3b29012a0d951ad8d63414c50addd335a83
test-bench-deps: {}
maintainer: '-'
synopsis: Haskell Bindings for the AtomSpace.
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
transformers: ! '>=0.3'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
- '0.1.0.6'
- '0.1.0.7'
author: Marcos Pividori
latest: '0.1.0.7'
description-type: haddock
description: ! 'This library defines Haskell Bindings for the AtomSpace.
For more information on Haskell Bindings:
<http://wiki.opencog.org/w/Haskell>
GitHub repository:
<https://github.com/opencog/atomspace/tree/master/opencog/haskell>'
license-name: OtherLicense
| homepage: github.com/opencog/atomspace/tree/master/opencog/haskell
changelog-type: ''
hash: 64f96a576687f7c089f82d8e5fb4c48ff0f8cd324bcfc200e15ee6bde67f5ee9
test-bench-deps: {}
maintainer: '-'
synopsis: Haskell Bindings for the AtomSpace.
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
transformers: ! '>=0.3'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
- '0.1.0.6'
- '0.1.0.7'
- '0.1.0.8'
author: Marcos Pividori
latest: '0.1.0.8'
description-type: haddock
description: ! 'This library defines Haskell Bindings for the AtomSpace.
For more information on Haskell Bindings:
<http://wiki.opencog.org/w/Haskell>
GitHub repository:
<https://github.com/opencog/atomspace/tree/master/opencog/haskell>'
license-name: OtherLicense
|
Test on Node 5 instead of 4 | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "4"
# Install scripts. (runs after repo cloning)
install:
# Get the Node version with matching major & minor numbers
- ps: Install-Product node $env:nodejs_version
# Log HTTP requests.
- npm config set loglevel http
# Typical npm stuff.
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- npm test
# Don't actually build.
build: off
# Finish immediately if one of the jobs fails.
matrix:
fast_finish: true
# Set up cache, clear it on package.json changes.
cache:
# npm cache.
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json
# Local npm packages.
- node_modules -> package.json
# Set build version format here instead of in the admin panel.
version: "{build}"
| # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "5"
# Install scripts. (runs after repo cloning)
install:
# Get the Node version with matching major & minor numbers
- ps: Install-Product node $env:nodejs_version
# Log HTTP requests.
- npm config set loglevel http
# Typical npm stuff.
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- npm test
# Don't actually build.
build: off
# Finish immediately if one of the jobs fails.
matrix:
fast_finish: true
# Set up cache, clear it on package.json changes.
cache:
# npm cache.
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json
# Local npm packages.
- node_modules -> package.json
# Set build version format here instead of in the admin panel.
version: "{build}"
|
Update TinyBit launcher to 5.1 (18) | Categories:
- System
- Theming
License: GPL-3.0-only
AuthorName: TBog
SourceCode: https://github.com/TBog/TBLauncher
IssueTracker: https://github.com/TBog/TBLauncher/issues
AutoName: TinyBit launcher
RepoType: git
Repo: https://github.com/TBog/TBLauncher
Builds:
- versionName: '4.5'
versionCode: 14
commit: v4.5
subdir: app
gradle:
- yes
- versionName: '4.6'
versionCode: 15
commit: v4.6
subdir: app
gradle:
- yes
- versionName: '4.7'
versionCode: 16
commit: v4.7
subdir: app
gradle:
- yes
- versionName: '5.0'
versionCode: 17
commit: v5.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '5.0'
CurrentVersionCode: 17
| Categories:
- System
- Theming
License: GPL-3.0-only
AuthorName: TBog
SourceCode: https://github.com/TBog/TBLauncher
IssueTracker: https://github.com/TBog/TBLauncher/issues
AutoName: TinyBit launcher
RepoType: git
Repo: https://github.com/TBog/TBLauncher
Builds:
- versionName: '4.5'
versionCode: 14
commit: v4.5
subdir: app
gradle:
- yes
- versionName: '4.6'
versionCode: 15
commit: v4.6
subdir: app
gradle:
- yes
- versionName: '4.7'
versionCode: 16
commit: v4.7
subdir: app
gradle:
- yes
- versionName: '5.0'
versionCode: 17
commit: v5.0
subdir: app
gradle:
- yes
- versionName: '5.1'
versionCode: 18
commit: v5.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '5.1'
CurrentVersionCode: 18
|
Remove cython as a run dependency. | {% set version = "0.11.0" %}
package:
name: dipy
version: {{ version }}
source:
fn: dipy-{{ version }}.tar.gz
url: https://pypi.python.org/packages/source/d/dipy/dipy-{{ version }}.tar.gz
md5: 7723e8994d31e910d47b7a0cf064a3d8
build:
number: 0
script: python setup.py install
requirements:
build:
- python
- numpy x.x
- nibabel
- cython
run:
- python
- numpy x.x
- scipy
- nibabel
- cython
- scikit-learn
- matplotlib
- vtk
test:
imports:
- dipy
about:
home: https://nipy.org/dipy
license: 3-clause BSD license
license_file: LICENSE
summary: Diffusion MR Imaging in Python
extra:
recipe-maintainers:
- arokem
- garyfallidis
| {% set version = "0.11.0" %}
package:
name: dipy
version: {{ version }}
source:
fn: dipy-{{ version }}.tar.gz
url: https://pypi.python.org/packages/source/d/dipy/dipy-{{ version }}.tar.gz
md5: 7723e8994d31e910d47b7a0cf064a3d8
build:
number: 0
script: python setup.py install
requirements:
build:
- python
- numpy x.x
- nibabel
- cython
run:
- python
- numpy x.x
- scipy
- nibabel
- scikit-learn
- matplotlib
- vtk
test:
imports:
- dipy
about:
home: https://nipy.org/dipy
license: 3-clause BSD license
license_file: LICENSE
summary: Diffusion MR Imaging in Python
extra:
recipe-maintainers:
- arokem
- garyfallidis
|
Update Live Burger Wallpaper to 1.2.2 (122) | Categories:
- Theming
License: GPL-3.0-only
SourceCode: https://gitlab.com/samsumas/LivingBurger
IssueTracker: https://gitlab.com/samsumas/LivingBurger/issues
Changelog: https://gitlab.com/samsumas/LivingBurger/tags
AutoName: BurgerWP
Description: |-
Very nice Wallpaper featuring some pizza and burger. Burger and pizzas bounces
around. Fork me on GitLab!
RepoType: git
Repo: https://gitlab.com/samsumas/LivingBurger.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 121
commit: v1.2.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.2.1
CurrentVersionCode: 121
| Categories:
- Theming
License: GPL-3.0-only
SourceCode: https://gitlab.com/samsumas/LivingBurger
IssueTracker: https://gitlab.com/samsumas/LivingBurger/issues
Changelog: https://gitlab.com/samsumas/LivingBurger/tags
AutoName: Live Burger Wallpaper
Description: |-
Very nice Wallpaper featuring some pizza and burger. Burger and pizzas bounces
around. Fork me on GitLab!
RepoType: git
Repo: https://gitlab.com/samsumas/LivingBurger.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 121
commit: v1.2.1
subdir: app
gradle:
- yes
- versionName: 1.2.2
versionCode: 122
commit: v1.2.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.2.2
CurrentVersionCode: 122
|
Update set automatic deploy workflow | name: Set automatic_deploys
on:
workflow_dispatch:
inputs:
resetImageTag:
description: 'Reset image tag to main'
required: false
default: false
type: boolean
automaticDeploysEnabled:
description: 'Activate automatic deploys'
required: false
default: true
type: boolean
environment:
description: 'Environment to deploy to'
required: true
type: choice
options:
- integration
- staging
- production
default: 'integration'
jobs:
set_automatic_deploys_enabled:
name: Set automatic_deploys_enabled to ${{ github.event.inputs.environment }}
uses: alphagov/govuk-infrastructure/.github/workflows/set-automatic-deploys-enabled.yaml@main
with:
resetImageTag: ${{ github.event.inputs.resetImageTag == 'true' }}
automaticDeploysEnabled: ${{ github.event.inputs.automaticDeploysEnabled == 'true' }}
environment: ${{ github.event.inputs.environment }}
secrets:
WEBHOOK_TOKEN: ${{ secrets.GOVUK_INTEGRATION_ARGO_EVENTS_WEBHOOK_TOKEN }}
WEBHOOK_URL: ${{ secrets.GOVUK_INTEGRATION_ARGO_EVENTS_WEBHOOK_URL }}
GOVUK_CI_GITHUB_API_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
| name: Set automatic deploys
run-name: Set automatic deploys to ${{ inputs.setAutomaticDeploys }} in ${{ inputs.environment }}
on:
workflow_dispatch:
inputs:
setAutomaticDeploys:
description: 'Set automatic deploys'
required: false
type: choice
options:
- enabled
- disabled
default: 'enabled'
environment:
description: 'Environment'
required: true
type: choice
options:
- integration
- staging
- production
default: 'integration'
jobs:
set-automatic-deploys:
name: Set automatic deploys
uses: alphagov/govuk-infrastructure/.github/workflows/set-automatic-deploys.yaml@main
with:
automaticDeploysEnabled: ${{ github.event.inputs.automaticDeploys == 'enabled' }}
environment: ${{ github.event.inputs.environment }}
secrets:
WEBHOOK_TOKEN: ${{ secrets.GOVUK_ARGO_EVENTS_WEBHOOK_TOKEN }}
WEBHOOK_URL: ${{ secrets.GOVUK_ARGO_EVENTS_WEBHOOK_URL }}
GH_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
|
Include Bash completions in the VM. | ---
- name: install system devel packages
yum: name={{ item }} state=present
with_items:
- git
- gcc
- make
- vim
- unzip
| ---
- name: install system devel packages
yum: name={{ item }} state=present
with_items:
- git
- gcc
- make
- vim
- unzip
- bash-completion
|
Increase cloud build time limit. | steps:
- name: 'gcr.io/cloud-builders/go:debian'
args: ['build', './cmd/kritis/signer']
env: ['PROJECT_ROOT=github.com/grafeas/kritis']
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: /bin/bash
args:
- -c
- |
cp signer integration/signer/ &&
cd integration/signer &&
./signer_int.sh
env: ['PROJECT_ID=$PROJECT_ID', 'BUILD_ID=$BUILD_ID']
| steps:
- name: 'gcr.io/cloud-builders/go:debian'
args: ['build', './cmd/kritis/signer']
env: ['PROJECT_ROOT=github.com/grafeas/kritis']
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: /bin/bash
args:
- -c
- |
cp signer integration/signer/ &&
cd integration/signer &&
./signer_int.sh
env: ['PROJECT_ID=$PROJECT_ID', 'BUILD_ID=$BUILD_ID']
timeout: 900s
timeout: 1200s
|
Update buildkite plugin shellcheck to v1.1.2 | steps:
- label: ":shell: Tests"
plugins:
docker-compose#v1.2.1:
run: tests
- label: ":sparkles: Lint"
plugins:
plugin-linter#v1.0.0:
name: ecr
- label: ":shell: Shellcheck"
plugins:
shellcheck#v1.0.1:
files: hooks/**
skip: "Shellcheck doesn't pass right now"
| steps:
- label: ":shell: Tests"
plugins:
docker-compose#v1.2.1:
run: tests
- label: ":sparkles: Lint"
plugins:
plugin-linter#v1.0.0:
name: ecr
- label: ":shell: Shellcheck"
plugins:
shellcheck#v1.1.2:
files: hooks/**
skip: "Shellcheck doesn't pass right now"
|
Update from Hackage at 2016-11-20T11:23:55Z | homepage: https://github.com/m0rphism/haskell-dmenu
changelog-type: ''
hash: 9fc040e034d861c2e0f72b12c02bc818347d26e03d81f93d95e19d6d075e045b
test-bench-deps: {}
maintainer: Hannes Saffrich <m0rphism@zankapfel.org>
synopsis: Complete bindings to the dmenu and dmenu2 command line tools.
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
process: ! '>=1.4 && <1.5'
containers: ! '>=0.5.7 && <0.6'
lens: ! '>=4.10 && <4.16'
mtl: ! '>=2.2 && <2.3'
transformers: ! '>=0.5 && <0.6'
directory: ! '>=1.2.6 && <1.3'
all-versions:
- '0.1.0.1'
- '0.1.0.2'
author: Hannes Saffrich
latest: '0.1.0.2'
description-type: haddock
description: Provides fuzzy selection via a GUI menu.
license-name: BSD3
| homepage: https://github.com/m0rphism/haskell-dmenu
changelog-type: ''
hash: af2c9ffe7dc26bb2ecfcd0242c22ab2e6ee0dd750977c9d1ebb7b5ae965738f2
test-bench-deps: {}
maintainer: Hannes Saffrich <m0rphism@zankapfel.org>
synopsis: Complete bindings to the dmenu and dmenu2 command line tools.
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
process: ! '>=1.4 && <1.5'
containers: ! '>=0.5.7 && <0.6'
lens: ! '>=4.10 && <4.16'
mtl: ! '>=2.2 && <2.3'
transformers: ! '>=0.5 && <0.6'
directory: ! '>=1.2.6 && <1.3'
all-versions:
- '0.1.0.1'
- '0.1.0.2'
- '0.2.0.0'
author: Hannes Saffrich
latest: '0.2.0.0'
description-type: haddock
description: Provides fuzzy selection via a GUI menu.
license-name: BSD3
|
Build a docker image if build is successful | language: clojure
lein: lein2
script: lein midje
| language: clojure
before_install:
- sudo sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -"
- sudo sh -c "echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
- echo exit 101 | sudo tee /usr/sbin/policy-rc.d
- sudo chmod +x /usr/sbin/policy-rc.d
install:
- sudo apt-get -qqy update
- sudo apt-get -qqy install lxc lxc-docker
- sudo sudo usermod -aG docker "$USER"
lein: lein2
script: lein midje
after_success:
- docker build -t samsara/qanal:snapshot . |
Update Ruby requirement for CircleCI | machine:
services:
- elasticsearch
ruby:
version:
2.2.1
environment:
DB_TEST_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test
checkout:
post:
## Customize dependencies
dependencies:
pre:
## Customize database setup
database:
override:
- bundle exec rake db:create db:structure:load
## Customize test commands
test:
override:
post:
# - bundle exec rake
# environment:
# RAILS_ENV: test
# RACK_ENV: test
| machine:
services:
- elasticsearch
ruby:
version:
2.2.2
environment:
DB_TEST_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test
checkout:
post:
## Customize dependencies
dependencies:
pre:
## Customize database setup
database:
override:
- bundle exec rake db:create db:structure:load
## Customize test commands
test:
override:
post:
# - bundle exec rake
# environment:
# RAILS_ENV: test
# RACK_ENV: test
|
Add nginx 1.13.4, remove nginx 1.13.3 | ---
language: staticfile
default_versions:
- name: nginx
version: 1.13.3
dependencies:
- name: nginx
version: 1.13.3
uri: https://buildpacks.cloudfoundry.org/dependencies/nginx/nginx-1.13.3-linux-x64-53917f43.tgz
md5: 53917f43684d6ec825ca469ab586c0d2
cf_stacks:
- cflinuxfs2
pre_package: scripts/build.sh
include_files:
- CHANGELOG
- CONTRIBUTING.md
- ISSUE_TEMPLATE
- LICENSE
- NOTICE
- PULL_REQUEST_TEMPLATE
- README.md
- VERSION
- bin/compile
- bin/detect
- bin/finalize
- bin/release
- bin/supply
- manifest.yml
| ---
language: staticfile
default_versions:
- name: nginx
version: 1.13.4
dependencies:
- name: nginx
version: 1.13.4
uri: https://buildpacks.cloudfoundry.org/dependencies/nginx/nginx-1.13.4-linux-x64-3b4180ad.tgz
md5: 3b4180ad6025758250698d0c4e143244
cf_stacks:
- cflinuxfs2
pre_package: scripts/build.sh
include_files:
- CHANGELOG
- CONTRIBUTING.md
- ISSUE_TEMPLATE
- LICENSE
- NOTICE
- PULL_REQUEST_TEMPLATE
- README.md
- VERSION
- bin/compile
- bin/detect
- bin/finalize
- bin/release
- bin/supply
- manifest.yml
|
Use grafana image of OMD container | version: '3'
services:
sakuli:
container_name: sakulie2e
image: consol/sakuli-ubuntu-xfce:latest
volumes:
- ./sakuli_docker_test:/headless/sakuli_docker_test
- ./sahi_ff_profile_template:/headless/sakuli/sahi/config/ff_profile_template
- ./sahi_certs:/headless/sakuli/sahi/userdata/certs
ports:
- "5901:5901"
- "6901:6901"
command: "run /headless/sakuli_docker_test -loop 1"
links:
- omdlabs:omd
omdlabs:
container_name: omdlabs
image: consol/omd-labs-centos-sakuli:dev
volumes:
- ./ansible_dropin/:/root/ansible_dropin
ports:
- "8443:443"
| version: '3'
services:
sakuli:
container_name: sakulie2e
image: consol/sakuli-ubuntu-xfce:latest
volumes:
- ./sakuli_docker_test:/headless/sakuli_docker_test
- ./sahi_ff_profile_template:/headless/sakuli/sahi/config/ff_profile_template
- ./sahi_certs:/headless/sakuli/sahi/userdata/certs
ports:
- "5901:5901"
- "6901:6901"
command: "run /headless/sakuli_docker_test -loop 1"
links:
- omdlabs:omd
omdlabs:
container_name: omdlabs
image: consol/omd-labs-centos-sakuli:grafana
volumes:
- ./ansible_dropin/:/root/ansible_dropin
ports:
- "8443:443"
|
Add chunk mime type to default mapping | # HEADS UP: the 'variables' node will be removed after parsing!
variables:
integer_no_index: &integer_no_index
type: integer
index: "no"
string_no_index: &string_no_index
type: string
index: "no"
# Properties to index
properties:
# tags attached to chunks
tags:
type: string # array of strings actually, auto-supported by Elasticsearch
index: not_analyzed
# metadata: don't index it
chunkStart: *integer_no_index
chunkEnd: *integer_no_index
chunkParents:
type: object
properties:
prefix: *string_no_index
localName: *string_no_index
namespacePrefixes: *string_no_index
namespaceUris: *string_no_index
attributePrefixes: *string_no_index
attributeLocalNames: *string_no_index
attributeValues: *string_no_index
# Do not save the original indexed document to save space. only include metadata!
# See https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html
# for the drawbacks of this approach!
_source:
includes:
- chunkStart
- chunkEnd
- chunkMimeType
- chunkParents
| # HEADS UP: the 'variables' node will be removed after parsing!
variables:
integer_no_index: &integer_no_index
type: integer
index: "no"
string_no_index: &string_no_index
type: string
index: "no"
# Properties to index
properties:
# tags attached to chunks
tags:
type: string # array of strings actually, auto-supported by Elasticsearch
index: not_analyzed
# metadata: don't index it
chunkStart: *integer_no_index
chunkEnd: *integer_no_index
chunkMimeType: *string_no_index
chunkParents:
type: object
properties:
prefix: *string_no_index
localName: *string_no_index
namespacePrefixes: *string_no_index
namespaceUris: *string_no_index
attributePrefixes: *string_no_index
attributeLocalNames: *string_no_index
attributeValues: *string_no_index
# Do not save the original indexed document to save space. only include metadata!
# See https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html
# for the drawbacks of this approach!
_source:
includes:
- chunkStart
- chunkEnd
- chunkMimeType
- chunkParents
|
Fix namespace selector in csi-livenees-monitoring | ---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: csi-liveness
namespace: rook-ceph
labels:
team: rook
spec:
namespaceSelector:
matchNames:
- default
selector:
matchLabels:
app: csi-liveness
endpoints:
- port: csi-http-metrics
path: /metrics
interval: 5s
| ---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: csi-liveness
namespace: rook-ceph
labels:
team: rook
spec:
namespaceSelector:
matchNames:
- rook-ceph
selector:
matchLabels:
app: csi-liveness
endpoints:
- port: csi-http-metrics
path: /metrics
interval: 5s
|
Update actions/setup-node action to v3 | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 17.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test-ci
env:
CI: true
NODE_ENV: test
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 17.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test-ci
env:
CI: true
NODE_ENV: test
|
Add gianu as common default theme for oh my zsh | # global mysql configuration
mysql_root_password: 'gcd'
mysql_default_engine: 'InnoDB'
# gcd mysql database configuration
local_gcd_mysql_user: 'root'
local_gcd_mysql_password: 'gcd'
local_gcd_mysql_db: 'gcd'
user:
name: Your Github.com username
email: Your Github.com email | # global mysql configuration
mysql_root_password: 'gcd'
mysql_default_engine: 'InnoDB'
# gcd mysql database configuration
local_gcd_mysql_user: 'root'
local_gcd_mysql_password: 'gcd'
local_gcd_mysql_db: 'gcd'
user:
name: Your Github.com username
email: Your Github.com email
# default oh my zsh theme
ohmyzsh: gianu |
Remove personal Quay image group | # Example solver resource; override as you see fit.
apiVersion: org.optaplanner.solver/v1
kind: Solver
metadata:
name: school-timetabling
spec:
kafkaCluster: my-cluster
kafkaBootstrapServers: my-cluster-kafka-bootstrap.openshift-operators.svc.cluster.local:9092
solverImage: quay.io/rsynek/school-timetabling:latest
replicas: 1 | # Example solver resource; override as you see fit.
apiVersion: org.optaplanner.solver/v1
kind: Solver
metadata:
name: school-timetabling
spec:
kafkaCluster: my-cluster
kafkaBootstrapServers: my-cluster-kafka-bootstrap.openshift-operators.svc.cluster.local:9092
solverImage: quay.io/example/school-timetabling:latest
replicas: 1 |
Update from Hackage at 2016-03-10T05:20:47+0000 | homepage: ''
changelog-type: ''
hash: 6d9d9ea008fe6ded8df490d7e9520048f54539fd3e9cced75095992ce5fff85a
test-bench-deps: {}
maintainer: ''
synopsis: Hot-swappable FRP
changelog: ''
basic-deps:
stm: ! '>=2.2.0.1 && <2.5'
base: ! '>=4.8 && <4.9'
containers: ! '>0.4.0.0 && <0.6'
safe: ! '>=0.3 && <0.4'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Tom Murphy
latest: '0.1.0.1'
description-type: haddock
description: ! 'An FRP for livecoding, where you can hot-swap pieces or the whole
of an
FRP graph while the graph is running.
\"stability: experimental\" is no joke!
A small example is in "Midair.Examples.HotswapCount"'
license-name: GPL-3
| homepage: ''
changelog-type: ''
hash: e183bcd6a9b8ce4ae6f06323377b28d1e2231081f98d51d99275294c7f000178
test-bench-deps: {}
maintainer: Tom Murphy
synopsis: Hot-swappable FRP
changelog: ''
basic-deps:
stm: ! '>=2.2.0.1 && <2.5'
base: ! '>=4.8 && <4.9'
containers: ! '>0.4.0.0 && <0.6'
safe: ! '>=0.3 && <0.4'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Tom Murphy
latest: '0.1.0.2'
description-type: haddock
description: ! 'An FRP for livecoding, where you can hot-swap pieces or the whole
of an
FRP graph while the graph is running.
\"stability: experimental\" is no joke!
A small example is in "Midair.Examples.HotswapCount"'
license-name: GPL-3
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.