Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add caching to make CI runs faster | language: python
python: "2.7"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
coverage run --source='.' --omit='*_test.py' -m unittest discover --pattern='*_test.py'
after_success:
coveralls
| language: python
cache: pip
python: "2.7"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
coverage run --source='.' --omit='*_test.py' -m unittest discover --pattern='*_test.py'
after_success:
coveralls
|
Revert "Remove bundler before_install steps" | language: ruby
cache: bundler
sudo: false
dist: trusty
branches:
only: master
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
before_install:
- eval "$(curl --connect-timeout 30 --retry 3 -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64"
env: NVIM_RUBY_LOG_LEVEL=DEBUG NVIM_RUBY_LOG_FILE=ci.log
script: bundle exec rake --trace
| language: ruby
cache: bundler
sudo: false
dist: trusty
branches:
only: master
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
before_install:
- eval "$(curl --connect-timeout 30 --retry 3 -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64"
- gem update --system
- gem install --remote bundler
- bundle --version
env: NVIM_RUBY_LOG_LEVEL=DEBUG NVIM_RUBY_LOG_FILE=ci.log
script: bundle exec rake --trace
|
Add PHP 7 on Travis | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
include:
- php: 5.3
env: deps=low
env:
global:
- deps=no
before_install:
- composer self-update
install:
- if [ "$deps" = "no" ]; then composer install; fi;
- if [ "$deps" = "low" ]; then composer --prefer-lowest --prefer-stable update; fi;
script:
- ./vendor/bin/phpunit -v --coverage-clover ./build/logs/clover.xml
after_script:
- php ./vendor/bin/coveralls -v
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
include:
- php: 5.3
env: deps=low
env:
global:
- deps=no
before_install:
- composer self-update
install:
- if [ "$deps" = "no" ]; then composer install; fi;
- if [ "$deps" = "low" ]; then composer --prefer-lowest --prefer-stable update; fi;
script:
- ./vendor/bin/phpunit -v --coverage-clover ./build/logs/clover.xml
after_script:
- php ./vendor/bin/coveralls -v
|
Add autoreconf before we start check | language: python
python:
- "2.7"
before_install:
- sudo apt-get -y install scons
- pushd deps/check-0.9.8
- ./configure
- make
- sudo make install
- sudo ldconfig
- popd
- scons statsite test_runner
install: pip install pytest==2.3.4
script: ./bootstrap.sh && ./configure && make test && py.test integ/
#./test_runner && py.test integ/
| language: python
python:
- "2.7"
before_install:
- sudo apt-get -y install scons
- pushd deps/check-0.9.8
- autoreconf
- ./configure
- make
- sudo make install
- sudo ldconfig
- popd
- scons statsite test_runner
install: pip install pytest==2.3.4
script: ./bootstrap.sh && ./configure && make test && py.test integ/
#./test_runner && py.test integ/
|
Add codecolimate repo token for | language: node_js
node_js:
- "v5.4.1"
script: "npm run-script test-travis"
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
notifications:
email:
- nico@luxe.com | language: node_js
node_js:
- "v5.4.1"
script: "npm run-script test-travis"
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
addons:
code_climate:
repo_token: 9111f5477047e3564cd1a30bed8affe48eb781bcfcac857310d13c10cc95700c
notifications:
email:
- nico@luxe.com
|
Fix Travis Go versioning fail | language: go
sudo: required
os:
- linux
- osx
go:
- 1.10
script: sudo -E $(which go) test -v ./...
| language: go
sudo: required
os:
- linux
- osx
go:
- "1.10"
script: sudo -E $(which go) test -v ./...
|
Test on Java 8 & 9 | branches:
only:
- master
jdk:
- openjdk7
- openjdk8
language: clojure
sudo: false
| branches:
only:
- master
jdk:
- openjdk8
- openjdk9
language: clojure
sudo: false
|
Fix build to not try push docs on RUN_TESTS matrix | language: python
python:
- '2.7'
matrix:
include:
- os: linux
env: RUN_TESTS='true'
addons:
postgresql: "9.4"
- os: linux
env: BUILD_DOCS='true'
cache: pip
# Travis team suggested fix for truncated log build failures
filter_secrets: false
install:
- if [ "${RUN_TESTS}" == "true" ]; then pip install -q -r scale/pip/requirements.txt; fi
- if [ "${BUILD_DOCS}" == "true" ]; then pip install -q -r scale/pip/docs.txt -r scale/pip/production.txt; fi
script:
- ./travis-build.sh
- ./push-docs.sh
branches:
only:
- master
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/11ff4f6760c5e218ccb7
on_success: change
on_failure: always
on_start: never
| language: python
python:
- '2.7'
matrix:
include:
- os: linux
env: RUN_TESTS='true'
addons:
postgresql: "9.4"
- os: linux
env: BUILD_DOCS='true'
cache: pip
# Travis team suggested fix for truncated log build failures
filter_secrets: false
install:
- if [ "${RUN_TESTS}" == "true" ]; then pip install -q -r scale/pip/requirements.txt; fi
- if [ "${BUILD_DOCS}" == "true" ]; then pip install -q -r scale/pip/docs.txt -r scale/pip/production.txt; fi
script:
- ./travis-build.sh
- if [ "${BUILD_DOCS}" == "true" ]; then ./push-docs.sh; fi
branches:
only:
- master
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/11ff4f6760c5e218ccb7
on_success: change
on_failure: always
on_start: never
|
Remove alpha version of Django 1.11 in tests | branches:
only:
- master
language: python
python:
- '3.4'
- '3.5'
env:
- DJANGO_VERSION=">=1.8,<1.9"
- DJANGO_VERSION=">=1.9,<1.10"
- DJANGO_VERSION=">=1.10,<1.11"
- DJANGO_VERSION=">=1.11a,<1.12"
matrix:
include:
- python: 3.6
env: DJANGO_VERSION=">=1.11a,<1.12"
- python: '3.7-dev'
env: DJANGO_VERSION=">=1.11a,<1.12"
allow_failures:
- python: '3.7-dev'
env: DJANGO_VERSION=">=1.11a,<1.12"
install:
- "pip install django$DJANGO_VERSION"
- "pip install ."
script:
- "python runtests.py"
| branches:
only:
- master
language: python
python:
- '3.4'
- '3.5'
env:
- DJANGO_VERSION=">=1.8,<1.9"
- DJANGO_VERSION=">=1.9,<1.10"
- DJANGO_VERSION=">=1.10,<1.11"
- DJANGO_VERSION=">=1.11,<1.12"
matrix:
include:
- python: 3.6
env: DJANGO_VERSION=">=1.11,<1.12"
- python: '3.7-dev'
env: DJANGO_VERSION=">=1.11,<1.12"
allow_failures:
- python: '3.7-dev'
env: DJANGO_VERSION=">=1.11,<1.12"
install:
- "pip install django$DJANGO_VERSION"
- "pip install ."
script:
- "python runtests.py"
|
Test with JDK 14 on Travis CI | language: java
jdk:
- openjdk8
- openjdk11
env:
- GWT_VERSION=2.8.2
- GWT_VERSION=2.9.0
- GWT_VERSION=HEAD-SNAPSHOT
install: true
script: mvn -U verify -Dinvoker.streamLogs=true -Dinvoker.mavenOpts="-Djava.net.preferIPv4Stack=true" -DgwtVersion=$GWT_VERSION
after_success:
- ci/deploy-snapshot.sh
notifications:
email: false
sudo: false
before_cache:
- shopt -s globstar && rm -fr $HOME/.m2/**/*-SNAPSHOT/
- shopt -s globstar && rm -fr target/it-repo/**/*-SNAPSHOT/
cache:
directories:
- $HOME/.m2
- target/it-repo
| language: java
jdk:
- openjdk8
- openjdk11
- openjdk14
env:
- GWT_VERSION=2.8.2
- GWT_VERSION=2.9.0
- GWT_VERSION=HEAD-SNAPSHOT
install: true
script: mvn -U verify -Dinvoker.streamLogs=true -Dinvoker.mavenOpts="-Djava.net.preferIPv4Stack=true" -DgwtVersion=$GWT_VERSION
after_success:
- ci/deploy-snapshot.sh
notifications:
email: false
sudo: false
before_cache:
- shopt -s globstar && rm -fr $HOME/.m2/**/*-SNAPSHOT/
- shopt -s globstar && rm -fr target/it-repo/**/*-SNAPSHOT/
cache:
directories:
- $HOME/.m2
- target/it-repo
|
Use the latest macOS/Xcode available on Travis | os:
- osx
language: node_js
sudo: false
node_js: node
script:
- npm run dist
| os:
- osx
osx_image: xcode8
language: node_js
sudo: false
node_js: node
script:
- npm run dist
|
Fix script name in CI config | language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- 8
- 10
- 12
- node
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
script: npm run ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- 8
- 10
- 12
- node
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
Fix 'composer install' not called with Travis | language: php
php:
- 5.3.3
- 5.4
- 5.5
- 5.6
- 7.0
script: vendor/bin/phpunit --configuration .phpunit.xml
| language: php
php:
- 5.3.3
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install --no-interaction
script: vendor/bin/phpunit --configuration .phpunit.xml
|
Switch to clover coverage format. | language: php
php:
- '7.1'
notifications:
on_success: never
on_failure: always
services:
- mysql
before_script:
- mysql -u root -e "CREATE DATABASE stocktest;"
- mysql -u root -e "CREATE USER 'stocktest'@'localhost' IDENTIFIED BY 'stocktest';"
- mysql -u root -e "GRANT ALL ON stocktest.* TO 'stocktest'@'localhost';"
script:
- php composer.phar self-update
- php composer.phar install --no-interaction
- ./vendor/bin/phpunit
after_script:
- php vendor/bin/codacycoverage phpunit ./coverage.xml
| language: php
php:
- '7.1'
notifications:
on_success: never
on_failure: always
services:
- mysql
before_script:
- mysql -u root -e "CREATE DATABASE stocktest;"
- mysql -u root -e "CREATE USER 'stocktest'@'localhost' IDENTIFIED BY 'stocktest';"
- mysql -u root -e "GRANT ALL ON stocktest.* TO 'stocktest'@'localhost';"
script:
- php composer.phar self-update
- php composer.phar install --no-interaction
- ./vendor/bin/phpunit
after_script:
- php vendor/bin/codacycoverage clover ./coverage.xml
|
Add example Git user info | language: ruby
install:
- bundle
- bundle exec rake db:migrate RAILS_ENV=test
script:
- cucumber
branches:
only:
- master
| language: ruby
install:
- bundle
- bundle exec rake db:migrate RAILS_ENV=test
- git config --global user.name "Example User"
- git config --global user.email "user@example.com"
script:
- cucumber
branches:
only:
- master
|
Add Gemfile-pure back into build matrix. | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2
- 2.3
- 2.4
- jruby-9
- rbx-3
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby-9
- rvm: rbx-3
dist: trusty
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
gemfile:
- Gemfile
- Gemfile-pure
rvm:
- 2.2
- 2.3
- 2.4
- jruby-9
- rbx-3
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby-9
- rvm: rbx-3
dist: trusty
|
Update bundler before Travis CI builds | language: ruby
services:
- redis-server
rvm:
- 2.3
- 2.2
- 2.1
- 2.0.0
notifications:
email:
recipients:
- gabe@ga.be
gemfile:
- gemfiles/sidekiq_2.gemfile
- gemfiles/sidekiq_master.gemfile
| language: ruby
services:
- redis-server
rvm:
- 2.3
- 2.2
- 2.1
- 2.0.0
notifications:
email:
recipients:
- gabe@ga.be
gemfile:
- gemfiles/sidekiq_2.gemfile
- gemfiles/sidekiq_master.gemfile
before_install:
- gem update bundler
|
Update TravisCI with notifications for Slack | language: python
env:
global:
# This is needed so we don't load Travis-CI's boto config, see:
# https://github.com/boto/boto/issues/3741
- BOTO_CONFIG=/tmp/nowhere
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.7
env: TOXENV=py37
branches:
only:
- master
install:
- pip install tox
- pip install -r requirements.txt
- pip install -e .
script:
- pylint laniakea
- tox
deploy:
provider: pypi
user: mozillasecurity
password:
secure: wYc7AFbw8u0mN0DznvZxOiulZ0Tm1TPAReUni4evVMpaYyv6AcL6yglSoGfF+0qiUMgJxY9JJGTBnhXs5GUZSbH9dZylTHQmkA+IOcyph+iUsJ263l3eAuGYhdxCeLjNXzQGQK6mS20MqVwThZgn5eHUixhgKrHGZIHCjaCMwpI=
on:
tags: true
| language: python
env:
global:
- BOTO_CONFIG=/tmp/nowhere
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.7
env: TOXENV=py37
branches:
only:
- master
install:
- pip install -r requirements.txt
- pip install -e .
script:
- pylint laniakea
- tox
deploy:
provider: pypi
user: mozillasecurity
password:
secure: wYc7AFbw8u0mN0DznvZxOiulZ0Tm1TPAReUni4evVMpaYyv6AcL6yglSoGfF+0qiUMgJxY9JJGTBnhXs5GUZSbH9dZylTHQmkA+IOcyph+iUsJ263l3eAuGYhdxCeLjNXzQGQK6mS20MqVwThZgn5eHUixhgKrHGZIHCjaCMwpI=
on:
tags: true
notifications:
slack:
secure: duNeJwuDMG1ZVi26dipUzullK+Dd6nsBIq4d+72KWKD2R7qjyZP4bFBFRFzkSHVqohl/meD3EYPXZICy6RoDWaxPQcBK9oL6KZAlEnsyueRWhunsMDAyOuhyAaRD1FhL717eeyB0dygU0iaTDujpOghDfRY99C9KeWXkzmqD0ss=
|
Add ruby-head to Travis CI | language: ruby
rvm:
- 1.9.3
- 2.0.0
before_install:
- gem install dep
- dep install
script:
ruby -w test/*.rb
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
before_install:
- gem install dep
- dep install
script:
ruby -w test/*.rb
|
Test build on go 1.3 | language: go
# Test on 1.1 and 1.2, our supported versions
go:
- 1.1
- 1.2
# https://github.com/travis-ci/travis-ci/issues/2220
# Tests require ruby
install:
- rvm get stable
- rvm use 2.0 --install --binary --fuzzy
# Make will compile, download bundles and run tests
script:
- make test
| language: go
# Test on 1.1, 1.2 and 1.3, our supported versions
go:
- 1.1
- 1.2
- 1.3
# https://github.com/travis-ci/travis-ci/issues/2220
# Tests require ruby
install:
- rvm get stable
- rvm use 2.0 --install --binary --fuzzy
# Make will compile, download bundles and run tests
script:
- make test
|
Move to Travis's container-based infrastructure | language: ruby
rvm:
- 1.9.3
- 2.1
- 2.2
before_install:
- gem update bundler
script:
- bundle exec rake
branches:
except:
- release
notifications:
email: false
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.1
- 2.2
script:
- bundle exec rake
branches:
except:
- release
notifications:
email: false
|
Install from python/mypy instead of JukkaL/mypy. | sudo: false
language: python
python:
- "3.5"
# More versions later.
install:
- pip install -U git+git://github.com/JukkaL/mypy
script:
- ./runtests.py -x tornado sqlalchemy 3/enum requests
| sudo: false
language: python
python:
- "3.5"
# More versions later.
install:
- pip install -U git+git://github.com/python/mypy
script:
- ./runtests.py -x tornado sqlalchemy 3/enum requests
|
Use dynamic node versions on Travis CI | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
|
Automate launching a release with Travis | language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
after_success:
- ./gradlew cobertura coveralls
| language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
after_success:
- ./gradlew cobertura coveralls
deploy:
- provider: script
script: ./gradlew bintrayUpload -PbintrayUser="${BINTRAY_USER}" -PbintrayKey="${BINTRAY_KEY}" -PdryRun=false
skip_cleanup: true
on:
tags: true
|
Disable xdebug for Travis CI builds | language: php
dist: trusty
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
cache:
directories:
- ${HOME}/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
env: COMPOSER_FLAGS="--prefer-lowest"
before_script:
- composer update --no-interaction --no-progress --no-suggest ${COMPOSER_FLAGS}
script:
- vendor/bin/phpunit -v
| language: php
dist: trusty
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
cache:
directories:
- ${HOME}/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
env: COMPOSER_FLAGS="--prefer-lowest"
before_script:
- phpenv config-rm xdebug.ini
- composer update --no-interaction --no-progress --no-suggest ${COMPOSER_FLAGS}
script:
- vendor/bin/phpunit -v
|
Add user flag for pip install on Travis | language: node_js
# 4.3.2 is what AWS Lambda currently uses
node_js:
- "5"
- "4.3.2"
python:
- "2.7"
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- pip install pytest
- pip install -r requirements.txt
script:
- npm test
- pytest
# For code coverage:
after_success:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
| language: node_js
# 4.3.2 is what AWS Lambda currently uses
node_js:
- "5"
- "4.3.2"
python:
- "2.7"
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- pip install --user pytest
- pip install --user -r requirements.txt
script:
- npm test
- pytest
# For code coverage:
after_success:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
|
Build with node 10 and 11, drop 9 | language: node_js
sudo: false
node_js:
- "6"
- "8"
- "9"
script: "npm run-script travis"
| language: node_js
sudo: false
node_js:
- "6"
- "8"
- "10"
- "11"
script: "npm run-script travis"
|
Enable testing on Python 3.4 | language: python
python:
- "2.7"
- "pypy"
- "3.2"
- "3.3"
install:
- python setup.py --quiet install
script:
- nosetests
- ./test.bash
| language: python
python:
- "2.7"
- "pypy"
- "3.2"
- "3.3"
- "3.4"
install:
- python setup.py --quiet install
script:
- nosetests
- ./test.bash
|
Disable npm cache on Travis | language: node_js
node_js:
- 10
- 11
- 12
- 13
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphicsmagick
- inkscape
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/da6c90cc3857ade1086c
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| language: node_js
node_js:
- 10
- 11
- 12
- 13
cache:
npm: false
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphicsmagick
- inkscape
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/da6c90cc3857ade1086c
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Improve Travis CI build Performance | language: java
jdk:
- openjdk8
- openjdk11
services:
- redis-server
after_success:
- mvn clean test jacoco:report coveralls:report
| language: java
jdk:
- openjdk8
- openjdk11
services:
- redis-server
after_success:
- mvn clean test jacoco:report coveralls:report
cache:
directories:
- $HOME/.m2
|
Disable Rubinius for Travis CI, enable 1.9.2 | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
|
Add back debug flags to JRUBY_OPTS | language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- jruby-19mode
- jruby-head
- rbx-2
before_install:
# bundler installation needed for jruby-head
# https://github.com/travis-ci/travis-ci/issues/5861
- gem install bundler
| language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- jruby-19mode
- jruby-head
- rbx-2
before_install:
# bundler installation needed for jruby-head
# https://github.com/travis-ci/travis-ci/issues/5861
- gem install bundler
env:
- JRUBY_OPTS="-d --server -Dcext.enabled=false -Xcompile.invokedynamic=false"
|
Add Python 3.3 configuration to .travic.yml | language: python
python:
- "2.7"
script: nosetests
notifications:
email:
- curzona@gmail.com
| language: python
python:
- "2.7"
- "3.3"
script: nosetests
notifications:
email:
- curzona@gmail.com
|
Add support for Node.js v0.12.0 | sudo: false
language: node_js
node_js:
- "0.10"
script:
- npm test
- npm run lint
after_success:
- npm run coveralls
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
script:
- npm test
- npm run lint
after_success:
- npm run coveralls
|
Support for generating spress.phar again | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --no-interaction --no-dev
script:
- phpunit
matrix:
allow_failures:
- php: hhvm
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/0957171278778ab21da9
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --no-interaction --no-dev
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]] && [[ "$TRAVIS_PHP_VERSION" != "7.0" ]]; then curl -LSs https://box-project.github.io/box2/installer.php | php; fi
script:
- phpunit
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]] && [[ "$TRAVIS_PHP_VERSION" != "7.0" ]]; then php box.phar build; php spress.phar --version; fi
matrix:
allow_failures:
- php: hhvm
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/0957171278778ab21da9
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Test on the actually used PHP version | language: php
dist: xenial
branches:
except:
- dependabot/*
php: "7.2"
addons:
apt:
packages:
- etoolbox
- ghostscript
- graphviz
- latex-xcolor
- librsvg2-bin
- lmodern
- make
- nodejs
- npm
- pandoc
- pandoc-citeproc
- python3
- python3-pip
- python3-yaml
- texlive-fonts-recommended
- texlive-generic-recommended
- texlive-humanities
- texlive-lang-german
- texlive-latex-recommended
- texlive-luatex
- texlive-xetex
before_script:
- composer global require hirak/prestissimo
- composer install --no-interaction --no-scripts --no-suggest
- cp .env.testing .env
- composer run-script post-install-cmd
- ./artisan setup --no-demodata
script: vendor/bin/phpunit
after_script:
- cat storage/logs/laravel-$(date +"%Y-%m-%d").log
cache:
apt: true
directories:
- vendor
- .spec_build_venv
- /home/travis/.composer
| language: php
dist: xenial
branches:
except:
- dependabot/*
php: "7.3"
addons:
apt:
packages:
- etoolbox
- ghostscript
- graphviz
- latex-xcolor
- librsvg2-bin
- lmodern
- make
- nodejs
- npm
- pandoc
- pandoc-citeproc
- python3
- python3-pip
- python3-yaml
- texlive-fonts-recommended
- texlive-generic-recommended
- texlive-humanities
- texlive-lang-german
- texlive-latex-recommended
- texlive-luatex
- texlive-xetex
before_script:
- composer global require hirak/prestissimo
- composer install --no-interaction --no-scripts --no-suggest
- cp .env.testing .env
- composer run-script post-install-cmd
- ./artisan setup --no-demodata
script: vendor/bin/phpunit
after_script:
- cat storage/logs/laravel-$(date +"%Y-%m-%d").log
cache:
apt: true
directories:
- vendor
- .spec_build_venv
- /home/travis/.composer
|
Set puppet version for tests to 3.7. | rvm: 1.9.3
notifications:
email:
- patrick.schoenfeld@googlemail.com
env:
- PUPPET_VERSION=2.7.11
| rvm: 1.9.3
notifications:
email:
- patrick.schoenfeld@googlemail.com
env:
- PUPPET_VERSION=3.7.2
|
Test on modern versions of Node.js | language: node_js
node_js:
- 0.8
- 0.10
deploy:
provider: npm
email: anthony@chovy.com
api_key:
secure: XoXsuVcSb1a5bxbo3qYffbe4NitoBbAp3xZwdMZsYUUiMKxWzQLGijtnYOZThcnfGnDweU0Lu8mry5yULE8vqZYoqXtvmKmu+Az2bK2MFmpSrGN5+cU46ozYrqY0tJwqCxibcMDUq2CvImbVEuC1FgW2S1B3C0yX1DNdZs+wZG0=
on:
tags: true
repo: chovy/humanparser
| language: node_js
node_js:
- 6
- 8
- 10
deploy:
provider: npm
email: anthony@chovy.com
api_key:
secure: XoXsuVcSb1a5bxbo3qYffbe4NitoBbAp3xZwdMZsYUUiMKxWzQLGijtnYOZThcnfGnDweU0Lu8mry5yULE8vqZYoqXtvmKmu+Az2bK2MFmpSrGN5+cU46ozYrqY0tJwqCxibcMDUq2CvImbVEuC1FgW2S1B3C0yX1DNdZs+wZG0=
on:
tags: true
repo: chovy/humanparser
|
Remove trunk build in AppVeyor | ---
version: "{build}"
clone_depth: 100
init:
# To avoid duplicated executables in PATH, see https://github.com/ruby/spec/pull/468
- set PATH=C:\Ruby%ruby_version%\bin;C:\Program Files\7-Zip;C:\Program Files\AppVeyor\BuildAgent;C:\Program Files\Git\cmd;C:\Windows\system32;C:\Program Files;C:\Windows
# Loads trunk build and updates MSYS2 / MinGW to most recent gcc compiler
- ps: |
if ($env:ruby_version -eq '_trunk') {
$trunk_uri = 'https://ci.appveyor.com/api/projects/MSP-Greg/ruby-loco/artifacts/ruby_trunk.7z'
(New-Object Net.WebClient).DownloadFile($trunk_uri, 'C:\ruby_trunk.7z')
7z.exe x C:\ruby_trunk.7z -oC:\Ruby_trunk
}
environment:
matrix:
- ruby_version: 24-x64
- ruby_version: 25-x64
- ruby_version: _trunk # So the folder name is ruby_trunk
install:
- git clone https://github.com/ruby/mspec.git ../mspec
build: off
test_script:
- SET CHECK_LEAKS=true
- ../mspec/bin/mspec -rdevkit -ff
on_finish:
- ruby -v
matrix:
allow_failures:
- ruby_version: _trunk
branches:
only:
- master
- /^try/
| ---
version: "{build}"
clone_depth: 100
init:
# To avoid duplicated executables in PATH, see https://github.com/ruby/spec/pull/468
- set PATH=C:\Ruby%ruby_version%\bin;C:\Program Files\7-Zip;C:\Program Files\AppVeyor\BuildAgent;C:\Program Files\Git\cmd;C:\Windows\system32;C:\Program Files;C:\Windows
environment:
matrix:
- ruby_version: 24-x64
- ruby_version: 25-x64
install:
- git clone https://github.com/ruby/mspec.git ../mspec
build: off
test_script:
- SET CHECK_LEAKS=true
- ../mspec/bin/mspec -rdevkit -ff
on_finish:
- ruby -v
branches:
only:
- master
- /^try/
|
Revert "Set default charset and collate for Travis CI mysql DB" | #This Travis config template file was taken from https://github.com/FriendsOfCake/travis
language: php
php:
- 5.6
- 7.0
sudo: false
env:
matrix:
- DB=mysql db_dsn='mysql://travis@0.0.0.0/cakephp_test'
global:
- DEFAULT=1
matrix:
fast_finish: true
install:
- composer install --no-interaction --no-progress --no-suggest
- mkdir -p build/logs
before_script:
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;'; fi"
script:
- vendor/bin/phpunit
- vendor/bin/phpcs
after_success:
- curl -s https://codecov.io/bash > /tmp/codecov.sh
- chmod +x /tmp/codecov.sh
- /tmp/codecov.sh -s build/logs
notifications:
email:
- webdev@qobocloud.com
| #This Travis config template file was taken from https://github.com/FriendsOfCake/travis
language: php
php:
- 5.6
- 7.0
sudo: false
env:
matrix:
- DB=mysql db_dsn='mysql://travis@0.0.0.0/cakephp_test'
global:
- DEFAULT=1
matrix:
fast_finish: true
install:
- composer install --no-interaction --no-progress --no-suggest
- mkdir -p build/logs
before_script:
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi"
script:
- vendor/bin/phpunit
- vendor/bin/phpcs
after_success:
- curl -s https://codecov.io/bash > /tmp/codecov.sh
- chmod +x /tmp/codecov.sh
- /tmp/codecov.sh -s build/logs
notifications:
email:
- webdev@qobocloud.com
|
Install windows-build-tools before attempting build on Windows | environment:
matrix:
- node_version: '6'
- node_version: '8'
install:
- ps: 'Install-Product node $env:node_version'
- npm install
test_script:
- npm test
build: off
| environment:
matrix:
- node_version: '6'
- node_version: '8'
install:
- ps: 'Install-Product node $env:node_version'
- ps: 'npm install --global --production windows-build-tools'
- npm install
test_script:
- npm test
build: off
|
Add config to cache bundler | language: ruby
before_install:
- gem install bundler -v '>= 1.5.1'
install: bundle install
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
before_script:
- rake app:db:create
- rake app:db:test:load
script:
- "cd spec/dummy && bundle exec rspec spec"
services:
- elasticsearch | language: ruby
cache: bundler
before_install:
- gem install bundler -v '>= 1.5.1'
install: bundle install
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
before_script:
- rake app:db:create
- rake app:db:test:load
script:
- "cd spec/dummy && bundle exec rspec spec"
services:
- elasticsearch |
Add nuget restore Change path tests files | version: 1.0.0.{build}
branches:
only:
- master
test:
# assemblies to test - optional
assemblies:
- Wox.Skype.Test\bin\$(configuration)\Wox.Skype.Test.dll
| version: 1.0.0.{build}
branches:
only:
- master
before_build:
- nuget restore
test:
# assemblies to test - optional
assemblies:
- **\Wox.Skype.Test\bin\$(configuration)\Wox.Skype.Test.dll
|
Bring back Xvfb for Travis | sudo: false
language: python
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
# - os: osx
# language: generic
addons:
firefox: "54.0"
apt:
packages:
- oracle-java8-set-default
install:
- nvm install 4.2
- nvm use 4.2
- gem install rspec
- pip install colorlog jsonpath-rw pyyaml psutil lxml cssselect urwid six selenium progressbar33 locustio pyvirtualdisplay astunparse ipaddress
- pip install git+https://github.com/Blazemeter/apiritif.git@master
- pip install --upgrade codecov nose nose-exclude
script: coverage run --source=. `which nosetests` tests --exclude-dir=tests/resources
after_success:
- coverage report -m
- codecov
| sudo: false
language: python
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
# - os: osx
# language: generic
addons:
firefox: "54.0"
apt:
packages:
- oracle-java8-set-default
before_install: |
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
sh -e Xvfb :99 -ac -screen 0 1024x768x8
else
export DISPLAY=:99.0
sh -e /etc/init.d/xvfb start
fi
install:
- nvm install 4.2
- nvm use 4.2
- gem install rspec
- pip install colorlog jsonpath-rw pyyaml psutil lxml cssselect urwid six selenium progressbar33 locustio pyvirtualdisplay astunparse ipaddress
- pip install git+https://github.com/Blazemeter/apiritif.git@master
- pip install --upgrade codecov nose nose-exclude
script: coverage run --source=. `which nosetests` tests --exclude-dir=tests/resources
after_success:
- coverage report -m
- codecov
|
Add configure to Travis CI build. | language: c
compiler:
- gcc
- clang
script:
- make clean
- make
| language: c
compiler:
- gcc
- clang
before_script:
- ./configure
script:
- make clean
- make
|
Update Travis CI to work with new test layout. | language: python
python:
- 2.7
- 3.2
virtualenv:
system_site_packages: true
before_install:
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then sudo apt-get install python-numpy; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then sudo apt-get install python3-numpy; fi
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then python setup.py install; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then python setup.py install; fi
script:
- cd test && python test_bridge.py
- cd test && python test_parser.py
- cd test && python test_data.py --status --terse
- cd ../data && bash regression_download.sh
- cd ../test && python run_regressions.py --status --traceback
| language: python
python:
- 2.7
- 3.2
virtualenv:
system_site_packages: true
before_install:
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then sudo apt-get install python-numpy; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then sudo apt-get install python3-numpy; fi
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then python setup.py install; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then python setup.py install; fi
script:
- cd test
- python test_bridge.py
- python test_parser.py
- python test_data.py --status --terse
- cd ../data && bash regression_download.sh
- cd ../test && python run_regressions.py --status --traceback
|
Add Ruby 2.0.0 and Ruby 2.1.2 to Travis build matrix | language: ruby
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- jruby-19mode
- jruby-18mode
- rbx-19mode
| language: ruby
rvm:
- 2.1
- 2.0.0
- 1.9.3
- jruby-19mode
- rbx-2
|
Update Travis testing to 2.1 | language: ruby
rvm:
- 2.0.0-p247
before_install:
- "cd Isengard"
before_script:
- "RAILS_ENV=test bundle exec rake db:setup"
notifications:
email:
recipients:
- gandalf@zeus.ugent.be
on_success: change
on_failure: always
irc:
channels:
- "wina.ugent.be#hydra"
on_success: change
on_failure: always
| language: ruby
rvm:
- 2.1.0
before_install:
- "cd Isengard"
before_script:
- "RAILS_ENV=test bundle exec rake db:setup"
notifications:
email:
recipients:
- gandalf@zeus.ugent.be
on_success: change
on_failure: always
irc:
channels:
- "wina.ugent.be#hydra"
on_success: change
on_failure: always
|
Fix CI: have to to use trusty for openjdk8 | language: java
jdk:
- openjdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/ | language: java
dist: trusty
jdk:
- openjdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/ |
Test with stable JRuby 9k in Travis | # Use container-based infrastructure
sudo: false
language: ruby
# Travis bug, see https://github.com/bundler/bundler/pull/3559
before_install: gem update bundler
cache: bundler
rvm:
- ruby-head
- 2.3.3 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361
- 2.2
- 2.1
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby-head
- jruby-19mode
- jruby-18mode
- rbx-2
- rbx
- rbx-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-18mode # until we figure out failure in `bundle exec`, which is not our problem
- rvm: rbx-2 # until Travis fixes Rubinius again
- rvm: rbx
- rvm: rbx-head
fast_finish: true
| # Use container-based infrastructure
sudo: false
language: ruby
# Travis bug, see https://github.com/bundler/bundler/pull/3559
before_install: gem update bundler
cache: bundler
rvm:
- ruby-head
- 2.3.3 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361
- 2.2
- 2.1
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby # this alias tracks JRuby 9k stable version
- jruby-head
- jruby-19mode
- jruby-18mode
- rbx-2
- rbx
- rbx-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-18mode # until we figure out failure in `bundle exec`, which is not our problem
- rvm: rbx-2 # until Travis fixes Rubinius again
- rvm: rbx
- rvm: rbx-head
fast_finish: true
|
Fix tvOS Simulator destination parameter in the Travis CI configuration | # Configuration for Travis (https://travis-ci.com)
language: objective-c
osx_image: xcode10.1
xcode_project: Bases.xcodeproj
matrix:
include:
- xcode_scheme: "Base16 (iOS)"
xcode_destination: platform=iOS Simulator,OS=12.1,name=iPhone XS
- xcode_scheme: "Base16 (macOS)"
- xcode_scheme: "Base16 (tvOS)"
xcode_destination: platform=tvOS,OS=12.1,name=Apple TV 4K
- xcode_scheme: "Base16 (watchOS)"
script: set -o pipefail && xcodebuild -project "$TRAVIS_XCODE_PROJECT" -scheme "$TRAVIS_XCODE_SCHEME" build | xcpretty -c
- xcode_scheme: "Base32 (iOS)"
xcode_destination: platform=iOS Simulator,OS=12.1,name=iPhone XS
- xcode_scheme: "Base32 (macOS)"
- xcode_scheme: "Base32 (tvOS)"
xcode_destination: platform=tvOS,OS=12.1,name=Apple TV 4K
- xcode_scheme: "Base32 (watchOS)"
script: set -o pipefail && xcodebuild -project "$TRAVIS_XCODE_PROJECT" -scheme "$TRAVIS_XCODE_SCHEME" build | xcpretty -c
notifications:
email: false
| # Configuration for Travis (https://travis-ci.com)
language: objective-c
osx_image: xcode10.1
xcode_project: Bases.xcodeproj
matrix:
include:
- xcode_scheme: "Base16 (iOS)"
xcode_destination: platform=iOS Simulator,OS=12.1,name=iPhone XS
- xcode_scheme: "Base16 (macOS)"
- xcode_scheme: "Base16 (tvOS)"
xcode_destination: platform=tvOS Simulator,OS=12.1,name=Apple TV 4K
- xcode_scheme: "Base16 (watchOS)"
script: set -o pipefail && xcodebuild -project "$TRAVIS_XCODE_PROJECT" -scheme "$TRAVIS_XCODE_SCHEME" build | xcpretty -c
- xcode_scheme: "Base32 (iOS)"
xcode_destination: platform=iOS Simulator,OS=12.1,name=iPhone XS
- xcode_scheme: "Base32 (macOS)"
- xcode_scheme: "Base32 (tvOS)"
xcode_destination: platform=tvOS Simulator,OS=12.1,name=Apple TV 4K
- xcode_scheme: "Base32 (watchOS)"
script: set -o pipefail && xcodebuild -project "$TRAVIS_XCODE_PROJECT" -scheme "$TRAVIS_XCODE_SCHEME" build | xcpretty -c
notifications:
email: false
|
Update circleci/python:3.7.0 Docker digest to e24a1db | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0@sha256:6de1b4677b7f37f413b64a043cbb5df435eb4356d4b4f86c34aa8f0b6e31cd76
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
| # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0@sha256:e24a1db944cfe185fcc888ba043eadf385012f91325c92ab6065674eef815415
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
|
Use g++ 6 when compiling addon | version: 2
jobs:
build:
docker:
- image: circleci/node:8.4.0
steps:
- checkout
- run:
name: install
command: |
sudo bash -c 'echo "deb http://ftp.us.debian.org/debian unstable main contrib non-free" >> /etc/apt/sources.list.d/unstable.list'
sudo apt-get -y update
sudo apt-get -y install -t unstable g++-6
npm install
- run:
name: test
command: npm test
| version: 2
jobs:
build:
docker:
- image: circleci/node:8.4.0
steps:
- checkout
- run:
name: install
command: |
sudo bash -c 'echo "deb http://ftp.us.debian.org/debian unstable main contrib non-free" >> /etc/apt/sources.list.d/unstable.list'
sudo apt-get -y update
sudo apt-get -y install -t unstable g++-6
npm install
- run:
name: test
command: npm test
environment:
CXX: g++-6
|
Add a new job to run with py3 | version: 2
jobs:
build:
docker:
- image: circleci/python:2.7
steps:
- checkout
- run: pip install poetry --user
- run: poetry install
- run: poetry run python setup.py install
- run: poetry run nosetests -v
| version: 2
jobs:
build-py2:
docker:
- image: circleci/python:2.7
steps:
- checkout
- run: pip install poetry --user
- run: poetry install
- run: poetry run python setup.py install
- run: poetry run nosetests -v
build-py3:
docker:
- image: circleci/python
steps:
- checkout
- run: pip install poetry --user
- run: poetry install
- run: poetry run python setup.py install
- run: poetry run nosetests -v |
Add to the gh-pages commits | version: 2
jobs:
build:
working_directory: ~/build
docker:
- image: circleci/node:latest
branches:
only:
- master
steps:
- checkout
- restore_cache:
keys:
- 'v1-{{ checksum "book.json" }}'
- 'v1-'
- run:
name: "Install GitBook"
command: npm install gitbook-cli && ./node_modules/.bin/gitbook install
- run:
name: "Clone gh-pages"
command: git clone --branch gh-pages git@github.com:metosin/reitit.git ~/gh-pages
- run:
name: Build the documentation
command: |
./node_modules/.bin/gitbook build
cp -r _book/* ~/gh-pages/
- add_ssh_keys:
fingerprints:
- "2d:eb:be:af:53:33:36:01:40:61:81:9d:76:84:8e:83"
- deploy:
name: Upload the documentation
command: |
cd ~/gh-pages
git config user.name "Automatic build"
git config user.email "noreply@metosin.fi"
git add -A
git commit -m "Build book from commit $CIRCLE_SHA1"
git push
- save_cache:
key: 'v1-{{ checksum "book.json" }}'
paths:
- node_modules
| version: 2
jobs:
build:
working_directory: ~/build
docker:
- image: circleci/node:latest
branches:
only:
- master
steps:
- checkout
- restore_cache:
keys:
- 'v1-{{ checksum "book.json" }}'
- 'v1-'
- run:
name: "Install GitBook"
command: npm install gitbook-cli && ./node_modules/.bin/gitbook install
- run:
name: "Clone gh-pages"
command: git clone --branch gh-pages git@github.com:metosin/reitit.git ~/gh-pages
- run:
name: Build the documentation
command: |
./node_modules/.bin/gitbook build
cp -r _book/* ~/gh-pages/
- add_ssh_keys:
fingerprints:
- "2d:eb:be:af:53:33:36:01:40:61:81:9d:76:84:8e:83"
- deploy:
name: Upload the documentation
command: |
cd ~/gh-pages
git config user.name "Automatic build"
git config user.email "noreply@metosin.fi"
git add -A
git commit -m "Build book from commit $CIRCLE_SHA1 [skip ci]"
git push
- save_cache:
key: 'v1-{{ checksum "book.json" }}'
paths:
- node_modules
|
Update file config to add collection | # Setup
title: Rock Night
tagline: 'Tudo da night Rock n Roll'
description: 'Blog sobre a Night Rock'
url: http://rocknight.github.io
author: 'Marquinhus Gonçalves'
email: eu@marquinhusgoncalves.com
# google_analytics:
account: UA-104483135-1
# Build settings
markdown: kramdown
highlighter: rouge
permalink: /:title
# html minify
compress_html:
clippings: all
comments: all
endings: []
profile: false
# exclude my node related stuff
exclude: ['package.json', 'src', 'node_modules']
| # Setup
title: Rock Night
tagline: 'Tudo da night Rock n Roll'
description: 'Blog sobre a Night Rock'
baseurl: ''
url: http://rocknight.github.io
author: 'Marquinhus Gonçalves'
email: eu@marquinhusgoncalves.com
# google_analytics:
account: UA-104483135-1
# Build settings
markdown: kramdown
highlighter: rouge
permalink: /:title
collections:
interviews:
output: true
permalink: /:collection/:title
schedules:
output: true
permalink: /:collection/:title
# html minify
compress_html:
clippings: all
comments: all
endings: []
profile: false
# exclude my node related stuff
exclude: ['package.json', 'src', 'node_modules']
|
Comment out markdown & highlighter config | markdown: redcarpet
highlighter: pygments # or rouge or null
exclude:
- node_modules
- gulpfile.js
- gulpconfig.json
- package.json
- config.rb
- npm-debug.log
- README.md
title: DojoCon Japan 2016
description: DojoCon Japan 2016
url: http://dojocon.coderdojo.jp
baseurl: / | # markdown: redcarpet
# highlighter: pygments # or rouge or null
exclude:
- node_modules
- gulpfile.js
- gulpconfig.json
- package.json
- config.rb
- npm-debug.log
- README.md
title: DojoCon Japan 2016
description: DojoCon Japan 2016
url: http://dojocon.coderdojo.jp
baseurl: / |
Change tmp folder location and nvm dir | ---
tmp_dir: "{{ ansible_env.HOME }}/ansible-tmp"
fonts:
archive_url: https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.tar.gz
archive_dir: source-code-pro-2.030R-ro-1.050R-it/OTF
install_dir: "{{ ansible_env.HOME }}/.local/share/fonts/source-code-pro"
nvm:
script_url: https://raw.githubusercontent.com/creationix/nvm/v0.32.0/install.sh
script_name: install.sh
nvm_dir: "{{ ansible_env.HOME }}/.nvm"
node_version: 6.6.0
sdkman:
install_dir: "{{ ansible_env.HOME }}/.local/share/sdkman"
| ---
tmp_dir: "{{ ansible_env.HOME }}/.ansible/ansible-tmp"
fonts:
archive_url: https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.tar.gz
archive_dir: source-code-pro-2.030R-ro-1.050R-it/OTF
install_dir: "{{ ansible_env.HOME }}/.local/share/fonts/source-code-pro"
nvm:
script_url: https://raw.githubusercontent.com/creationix/nvm/v0.32.0/install.sh
script_name: install.sh
nvm_dir: "{{ ansible_env.HOME }}/.local/share/nvm"
node_version: 6.6.0
sdkman:
sdkman_dir: "{{ ansible_env.HOME }}/.local/share/sdkman"
|
Exclude enc files from copying to _site | name: "Mac Operations"
url: "https://macops.ca"
baseurl: ""
permalink: "/:title"
timezone: "America/Montreal"
date_format: "%B %-d, %Y"
# Conversion
# markdown: kramdown
# kramdown:
# input: GFM
# syntax_highlighter: rouge
markdown: redcarpet
redcarpet:
extensions: [with_toc_data]
# Navigation
nav:
- name: "About"
href: "about"
- name: "Talks"
href: "talks"
- name: "Links"
href: "links"
# Sass
sass:
style: :compressed
# Scopes
defaults:
-
scope:
path: ""
type: "pages"
values:
layout: "page"
-
scope:
path: ""
type: "posts"
values:
layout: "post"
# Site generation
exclude:
- bin
- '*.sh'
- Gemfile*
- README*
- vendor
# Rake tasks
post:
template: _rake_templates/post.txt
extension: md
page:
template: _rake_templates/page.txt
extension: md
editor: Sublime Text 3.app
git:
branch: master
# transfer:
# command: rsync
# settings: -av
# source: _site/
# destination: ~/Git/username.github.com/
| name: "Mac Operations"
url: "https://macops.ca"
baseurl: ""
permalink: "/:title"
timezone: "America/Montreal"
date_format: "%B %-d, %Y"
# Conversion
# markdown: kramdown
# kramdown:
# input: GFM
# syntax_highlighter: rouge
markdown: redcarpet
redcarpet:
extensions: [with_toc_data]
# Navigation
nav:
- name: "About"
href: "about"
- name: "Talks"
href: "talks"
- name: "Links"
href: "links"
# Sass
sass:
style: :compressed
# Scopes
defaults:
-
scope:
path: ""
type: "pages"
values:
layout: "page"
-
scope:
path: ""
type: "posts"
values:
layout: "post"
# Site generation
exclude:
- bin
- '*.sh'
- Gemfile*
- README*
- vendor
- '*.enc'
# Rake tasks
post:
template: _rake_templates/post.txt
extension: md
page:
template: _rake_templates/page.txt
extension: md
editor: Sublime Text 3.app
git:
branch: master
# transfer:
# command: rsync
# settings: -av
# source: _site/
# destination: ~/Git/username.github.com/
|
Use projects as root dir. | auto: true
server: true
permalink: none
baseurl: ""
exclude:
- .gitignore
- README.md
prose:
rooturl: "_posts"
metadata:
"_posts/projects":
- name: "subjects"
field:
element: "multiselect"
label: "Subjects"
placeholder: "Select an Item"
options:
- name: "Animation"
value: "Animation"
- name: "Visual Effects"
value: "Visual Effets"
- name: "3D Modelling"
value: "3D Modelling"
selected: "Animation"
- name: "name"
field:
element: "text"
label: "Project Title"
value: "My Project Title"
- name: "author"
field:
element: "text"
label: "Project Creator"
value: "John Doe"
- name: "abstract"
field:
element: "text"
label: "Project Summary"
value: "Enter a short description of your project"
- name: "image"
field:
element: "text"
label: "Image URL"
value: "http://f.cl.ly/items/1o363t351s47371R3X2f/polished-off.png"
- name: "website"
field:
element: "text"
label: "Website URL"
value: "http://www.rave.co.uk/"
| auto: true
server: true
permalink: none
baseurl: ""
exclude:
- .gitignore
- README.md
prose:
rooturl: "_posts/projects"
metadata:
"_posts/projects":
- name: "subjects"
field:
element: "multiselect"
label: "Subjects"
placeholder: "Select an Item"
options:
- name: "Animation"
value: "Animation"
- name: "Visual Effects"
value: "Visual Effets"
- name: "3D Modelling"
value: "3D Modelling"
selected: "Animation"
- name: "name"
field:
element: "text"
label: "Project Title"
value: "My Project Title"
- name: "author"
field:
element: "text"
label: "Project Creator"
value: "John Doe"
- name: "abstract"
field:
element: "text"
label: "Project Summary"
value: "Enter a short description of your project"
- name: "image"
field:
element: "text"
label: "Image URL"
value: "http://f.cl.ly/items/1o363t351s47371R3X2f/polished-off.png"
- name: "website"
field:
element: "text"
label: "Website URL"
value: "http://www.rave.co.uk/"
|
Make sure RabbitMQ is running. | ---
- name: Add the RabbitMQ public GPG key to the apt repo
apt_key: url=http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
state=present
- name: Add RabbitMQ to the sources list
apt_repository: repo='deb http://www.rabbitmq.com/debian/ testing main'
update_cache={{ update_apt_cache }}
state=present
- name: Install RabbitMQ server
apt: name={{ item }} update_cache={{ update_apt_cache }} force=yes state=installed
with_items:
- rabbitmq-server
- name: Enable the RabbitMQ Management Console
rabbitmq_plugin: names=rabbitmq_management state=enabled
notify: restart rabbitmq-server
- include: setup_vhosts.yml
- include: setup_users.yml
- name: Ensure that the RabbitMQ service is running
service: name=rabbitmq-server state=started enabled=yes | ---
- name: Add the RabbitMQ public GPG key to the apt repo
apt_key: url=http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
state=present
- name: Add RabbitMQ to the sources list
apt_repository: repo='deb http://www.rabbitmq.com/debian/ testing main'
update_cache={{ update_apt_cache }}
state=present
- name: Install RabbitMQ server
apt: name={{ item }} update_cache={{ update_apt_cache }} force=yes state=installed
with_items:
- rabbitmq-server
- name: Enable the RabbitMQ Management Console
rabbitmq_plugin: names=rabbitmq_management state=enabled
notify: restart rabbitmq-server
- name: Make sure rabbitmq-server is enabled and running
service:
name: rabbitmq-server
state: started
enabled: true
- include: setup_vhosts.yml
- include: setup_users.yml
- name: Ensure that the RabbitMQ service is running
service: name=rabbitmq-server state=started enabled=yes |
Update SMS Messenger to 5.1.2 (5) | Categories:
- System
License: Apache-2.0
AuthorName: Tibor Kaputa
AuthorEmail: hello@simplemobiletools.com
WebSite: https://simplemobiletools.com
SourceCode: https://github.com/SimpleMobileTools/Simple-SMS-Messenger
IssueTracker: https://github.com/SimpleMobileTools/Simple-SMS-Messenger/issues
Changelog: https://github.com/SimpleMobileTools/Simple-SMS-Messenger/blob/HEAD/CHANGELOG.md
Donate: https://simplemobiletools.com/donate
Bitcoin: 19Hc8A7sWGud8sP19VXDC5a5j28UyJfpyJ
Litecoin: LYACbHTKaM9ZubKQGxJ4NRyVy1gHUuztRP
AutoName: SMS Messenger
RepoType: git
Repo: https://github.com/SimpleMobileTools/Simple-SMS-Messenger
Builds:
- versionName: 5.0.0
versionCode: 1
commit: 5.0.0
subdir: app
gradle:
- yes
prebuild: sed -i -e '/keystore.*{/,/}/d; /keystore/d' build.gradle
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 5.0.0
CurrentVersionCode: 1
| Categories:
- System
License: Apache-2.0
AuthorName: Tibor Kaputa
AuthorEmail: hello@simplemobiletools.com
WebSite: https://simplemobiletools.com
SourceCode: https://github.com/SimpleMobileTools/Simple-SMS-Messenger
IssueTracker: https://github.com/SimpleMobileTools/Simple-SMS-Messenger/issues
Changelog: https://github.com/SimpleMobileTools/Simple-SMS-Messenger/blob/HEAD/CHANGELOG.md
Donate: https://simplemobiletools.com/donate
Bitcoin: 19Hc8A7sWGud8sP19VXDC5a5j28UyJfpyJ
Litecoin: LYACbHTKaM9ZubKQGxJ4NRyVy1gHUuztRP
AutoName: SMS Messenger
RepoType: git
Repo: https://github.com/SimpleMobileTools/Simple-SMS-Messenger
Builds:
- versionName: 5.0.0
versionCode: 1
commit: 5.0.0
subdir: app
gradle:
- yes
prebuild: sed -i -e '/keystore.*{/,/}/d; /keystore/d' build.gradle
- versionName: 5.1.2
versionCode: 5
commit: 5.1.2
subdir: app
gradle:
- yes
prebuild: sed -i -e '/keystore.*{/,/}/d; /keystore/d' build.gradle
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 5.1.2
CurrentVersionCode: 5
|
Revert "[agent] update producer test config" | input:
plugins:
- type: json
protocol:
type: tcp
- type: json
protocol:
type: udp
- type: protobuf
protocol:
type: udp
- type: protobuf
protocol:
type: tcp
- type: riemann
protocol:
type: tcp
- type: riemann
protocol:
type: udp
- type: http
protocol:
type: tcp
output:
plugins:
- type: debug
batching:
flushInterval: 20000
filter: ["key","foobar"]
- type: http
batching:
flushInterval: 20000
filter: ["key","foobar"]
- type: kafka
batching:
flushInterval: 20000
filter: ["key","foobar"]
producer:
bootstrap.servers: "server1:9092,server2:9092"
- type: riemann
batching:
flushInterval: 20000
filter: ["key","foobar"]
- type: signalfx
batching:
flushInterval: 20000
filter: ["key","foobar"]
authToken: "foobar"
soTimeout: 1000
| input:
plugins:
- type: json
protocol:
type: tcp
- type: json
protocol:
type: udp
- type: protobuf
protocol:
type: udp
- type: protobuf
protocol:
type: tcp
- type: riemann
protocol:
type: tcp
- type: riemann
protocol:
type: udp
- type: http
protocol:
type: tcp
output:
plugins:
- type: debug
batching:
flushInterval: 20000
filter: ["key","foobar"]
- type: http
batching:
flushInterval: 20000
filter: ["key","foobar"]
- type: kafka
batching:
flushInterval: 20000
filter: ["key","foobar"]
producer:
metadata.broker.list: "server1:9092,server2:9092"
- type: riemann
batching:
flushInterval: 20000
filter: ["key","foobar"]
- type: signalfx
batching:
flushInterval: 20000
filter: ["key","foobar"]
authToken: "foobar"
soTimeout: 1000 |
Update from Hackage at 2019-08-30T16:16:40Z | homepage: https://github.com/phadej/functor-classes-compat#readme
changelog-type: ''
hash: b3a6b28327752d0a32a3909adf9d22cd1a5ae0e9b5d8468af0f9b1e758656194
test-bench-deps: {}
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
synopsis: Data.Functor.Classes instances for core packages
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.13'
unordered-containers: ! '>=0.2.8.0 && <0.3'
containers: ! '>=0.5.9.1 && <0.7'
hashable: ! '>=1.0.1.1 && <1.4'
vector: ! '>=0.12 && <0.13'
all-versions:
- '1'
author: Oleg Grenrus <oleg.grenrus@iki.fi>
latest: '1'
description-type: markdown
description: |
`Data.Functor.Classes` instances for core packages:
- `containers`
- `vector`
- `unordered-containers`
license-name: BSD-3-Clause
| homepage: https://github.com/phadej/functor-classes-compat#readme
changelog-type: ''
hash: 87cbe71cc1beb44b759c9485deae086dd35cf52bfcb9525dddbcfdadc01e0259
test-bench-deps: {}
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
synopsis: Data.Functor.Classes instances for core packages
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.14'
unordered-containers: ! '>=0.2.8.0 && <0.3'
containers: ! '>=0.5.9.1 && <0.7'
hashable: ! '>=1.0.1.1 && <1.4'
vector: ! '>=0.12 && <0.13'
all-versions:
- '1'
author: Oleg Grenrus <oleg.grenrus@iki.fi>
latest: '1'
description-type: markdown
description: |
`Data.Functor.Classes` instances for core packages:
- `containers`
- `vector`
- `unordered-containers`
license-name: BSD-3-Clause
|
Add nodejs10 jobs on bionic. | - job:
name: vitrage-dashboard-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/vitrage
- name: openstack/python-vitrageclient
- name: openstack/vitrage-dashboard
roles:
- zuul: openstack-infra/devstack
- zuul: openstack/horizon
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^releasenotes/.*$
vars:
devstack_plugins:
vitrage: https://git.openstack.org/openstack/vitrage
vitrage-dashboard: https://git.openstack.org/openstack/vitrage-dashboard
devstack_services:
horizon: true
tox_envlist: integration
- project:
templates:
- horizon-nodejs4-jobs-nonvoting
- openstack-python-jobs-horizon
- openstack-python35-jobs-horizon
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
check:
jobs:
- vitrage-dashboard-integration-tests:
voting: false
| - job:
name: vitrage-dashboard-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/vitrage
- name: openstack/python-vitrageclient
- name: openstack/vitrage-dashboard
roles:
- zuul: openstack-infra/devstack
- zuul: openstack/horizon
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^releasenotes/.*$
vars:
devstack_plugins:
vitrage: https://git.openstack.org/openstack/vitrage
vitrage-dashboard: https://git.openstack.org/openstack/vitrage-dashboard
devstack_services:
horizon: true
tox_envlist: integration
- project:
templates:
- horizon-nodejs4-jobs-nonvoting
- horizon-nodejs10-jobs-nonvoting
- openstack-python-jobs-horizon
- openstack-python35-jobs-horizon
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
check:
jobs:
- vitrage-dashboard-integration-tests:
voting: false
|
Update from Hackage at 2020-12-15T07:39:45Z | homepage: https://github.com/haskell/haskell-language-server/hls-plugin-api
changelog-type: ''
hash: f1919f0dcad29e4c3b2c07ccf38979706e0cd182d3282760a37cc0129ec618a6
test-bench-deps: {}
maintainer: alan.zimm@gmail.com (for now)
synopsis: Haskell Language Server API for plugin communication
changelog: ''
basic-deps:
shake: '>=0.17.5'
ghc: -any
base: '>=4.12 && <5'
Diff: -any
unordered-containers: -any
text: -any
process: -any
data-default: -any
containers: -any
ghcide: '>=0.5'
lens: -any
hslogger: -any
regex-tdfa: '>=1.3.1.0'
hashable: -any
ghc-boot-th: -any
aeson: -any
haskell-lsp: ^>=0.22
all-versions:
- 0.4.0.0
- 0.4.1.0
- 0.5.0.0
author: Many,TBD when we release
latest: 0.5.0.0
description-type: haddock
description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
license-name: Apache-2.0
| homepage: https://github.com/haskell/haskell-language-server/hls-plugin-api
changelog-type: ''
hash: 3db1c1c617685ff450a13ada9ae2ac3b684ce492ccd16ece2d4fd4fcff2acadb
test-bench-deps: {}
maintainer: alan.zimm@gmail.com (for now)
synopsis: Haskell Language Server API for plugin communication
changelog: ''
basic-deps:
shake: '>=0.17.5'
ghc: -any
base: '>=4.12 && <5'
Diff: -any
unordered-containers: -any
text: -any
process: -any
data-default: -any
containers: -any
ghcide: '>=0.5'
lens: -any
hslogger: -any
regex-tdfa: '>=1.3.1.0'
hashable: -any
ghc-boot-th: -any
aeson: -any
haskell-lsp: ^>=0.22
all-versions:
- 0.4.0.0
- 0.4.1.0
- 0.5.0.0
- 0.5.0.1
author: Many,TBD when we release
latest: 0.5.0.1
description-type: haddock
description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
license-name: Apache-2.0
|
Update from Hackage at 2020-11-10T19:10:44Z | homepage: ''
changelog-type: markdown
hash: 0803ca281830e5dfa27704c6b1eb53c13cfc1139db0004e0840d90ccb1a2095a
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Extra transformations functions for polysemy.
changelog: |
# Changelog for polysemy-extra
## v0.1.0.0
* Add several `Input`, `Output` and `KVStore` functions that I use..
basic-deps:
base: '>=4.7 && <5'
containers: -any
polysemy-zoo: -any
polysemy: -any
all-versions:
- 0.1.0.0
author: Daniel Firth
latest: 0.1.0.0
description-type: markdown
description: |
# polysemy-extra
This package provides some extra polysemy functions that I use for
transforming `Input`, `Output` and `KVStore`. Maybe this will make
its way into the main library.
license-name: MIT
| homepage: ''
changelog-type: markdown
hash: 3af10a3cf0afd79e1cff2faac013837321b442c85c5ddb8fb23adc75d7cc7b54
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Extra Input and Output functions for polysemy..
changelog: |
# Changelog for polysemy-extra
## v0.1.1.0
* Add `reinterpretUnder`, `reinterpretUnder2` and `reinterpret2Under`.
## v0.1.0.0
* Add several `Input`, `Output` and `KVStore` functions that I use..
basic-deps:
base: '>=4.7 && <5'
containers: -any
polysemy-zoo: -any
polysemy: '>=1.4.0.0'
all-versions:
- 0.1.0.0
- 0.1.1.0
author: Daniel Firth
latest: 0.1.1.0
description-type: markdown
description: |
# polysemy-extra
This package provides some extra polysemy functions that I use for
transforming `Input`, `Output` and `KVStore`. Maybe this will make
its way into the main library.
license-name: MIT
|
Update from Hackage at 2018-04-21T22:37:30Z | homepage: https://github.com/anton-k/temporal-media
changelog-type: ''
hash: 315c091cdd6921e92efbdb7dd64e2cb4282f8537b0dd3cfc354e0c93b56a2fa6
test-bench-deps: {}
maintainer: <anton.kholomiov@gmail.com>
synopsis: data types for temporal media
changelog: ''
basic-deps:
base: ==4.*
Boolean: ! '>=0.2.3'
all-versions:
- '0.0'
- '0.1.0'
- '0.1.1'
- '0.2.0'
- '0.2.1'
- '0.3.0'
- '0.3.1'
- '0.3.3'
- '0.4.0'
- '0.5.0'
- '0.6.0'
- '0.6.1'
- '0.6.2'
author: Anton Kholomiov
latest: '0.6.2'
description-type: haddock
description: ! 'An embedded domain-specific language (EDSL) for
creating lists of constant time events related in time.'
license-name: BSD3
| homepage: https://github.com/anton-k/temporal-media
changelog-type: ''
hash: 7a27d711a786c3dc9163433627e51efcc4b3fce3a947b71c29f3e388f37cae59
test-bench-deps: {}
maintainer: <anton.kholomiov@gmail.com>
synopsis: data types for temporal media
changelog: ''
basic-deps:
base: ==4.*
Boolean: ! '>=0.2.3'
all-versions:
- '0.0'
- '0.1.0'
- '0.1.1'
- '0.2.0'
- '0.2.1'
- '0.3.0'
- '0.3.1'
- '0.3.3'
- '0.4.0'
- '0.5.0'
- '0.6.0'
- '0.6.1'
- '0.6.2'
- '0.6.3'
author: Anton Kholomiov
latest: '0.6.3'
description-type: haddock
description: ! 'An embedded domain-specific language (EDSL) for
creating lists of constant time events related in time.'
license-name: BSD3
|
Fix image naming conventions of packer | aws:
name: "{{target `name`}}"
type: "amazon-ebs"
access_key: "{{cloud `key`}}"
secret_key: "{{cloud `secret`}}"
region: "{{cloud `entry_point`}}"
instance_type: "c3.large"
ssh_username: "{{target `ssh_username`}}"
source_ami: "{{target `source_image`}}"
ami_name: "{{operating_system `name`}}-{{user `image_name`}}-{{uuid}}"
tags: {
Name: "{{operating_system `name`}}-{{user `image_name`}}"
}
launch_block_device_mappings:
- device_name: "/dev/sda1"
delete_on_termination: true
openstack:
name: "{{target `name`}}"
type: "openstack"
username: "{{cloud `key`}}"
password: "{{cloud `secret`}}"
project: "{{cloud `tenant_name`}}"
provider: "{{cloud `entry_point`}}v2.0/tokens"
region: "RegionOne"
flavor: "2"
source_image: "{{target `source_image`}}"
image_name: "{{operating_system `name`}}-{{user `image_name`}}-{{uuid}}"
ssh_username: "{{target `ssh_username`}}"
use_floating_ip: "true"
floating_ip_pool: "public"
| aws:
name: "{{target `name`}}"
type: "amazon-ebs"
access_key: "{{cloud `key`}}"
secret_key: "{{cloud `secret`}}"
region: "{{cloud `entry_point`}}"
instance_type: "c3.large"
ssh_username: "{{target `ssh_username`}}"
source_ami: "{{target `source_image`}}"
ami_name: "{{user `pattern_name`}}-{{user `image_name`}}-{{operating_system `name`}}-{{uuid}}"
tags: {
Name: "{{user `pattern_name`}}-{{user `image_name`}}-{{operating_system `name`}}"
}
launch_block_device_mappings:
- device_name: "/dev/sda1"
delete_on_termination: true
openstack:
name: "{{target `name`}}"
type: "openstack"
username: "{{cloud `key`}}"
password: "{{cloud `secret`}}"
project: "{{cloud `tenant_name`}}"
provider: "{{cloud `entry_point`}}v2.0/tokens"
region: "RegionOne"
flavor: "2"
source_image: "{{target `source_image`}}"
image_name: "{{user `pattern_name`}}-{{user `image_name`}}-{{operating_system `name`}}-{{uuid}}"
ssh_username: "{{target `ssh_username`}}"
use_floating_ip: "true"
floating_ip_pool: "public"
|
Update from Hackage at 2016-07-26T14:21:59+0000 | homepage: https://github.com/jcristovao/altcomposition
changelog-type: ''
hash: 16dbfddeb21b633550965757d263396275c7e47eab12bd5d98a309380a34e2cc
test-bench-deps: {}
maintainer: jmacristovao@gmail.com
synopsis: Alternative combinators for unorthodox function composition
changelog: ''
basic-deps:
base: ! '>=4.0 && <4.9'
composition: ! '>=1.0 && <1.1'
all-versions:
- '0.2.1.0'
- '0.2.2.0'
author: João Cristóvão
latest: '0.2.2.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: https://github.com/jcristovao/altcomposition
changelog-type: ''
hash: 67cb9f4a7f199ee96a7e00a09be752828d43e9a8e0c1255745fcdd4c0a3377fc
test-bench-deps: {}
maintainer: jmacristovao@gmail.com
synopsis: Alternative combinators for unorthodox function composition
changelog: ''
basic-deps:
base: ! '>=4.0 && <4.11'
composition: ! '>=1.0 && <1.1'
all-versions:
- '0.2.1.0'
- '0.2.2.0'
- '0.2.3.0'
author: João Cristóvão
latest: '0.2.3.0'
description-type: haddock
description: ''
license-name: BSD3
|
Fix submodule checkout in CI | name: CI
on:
schedule:
- cron: '0 14 * * *'
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Environment Variables
run: |
echo "LABEL=$(date +%Y%m%d)-${GITHUB_SHA::8}" >> $GITHUB_ENV
- name: Build
env:
USER: leighmcculloch
run: |
make buildnc
- name: Push
run: |
docker login -u leighmcculloch -p "${{secrets.DOCKER_TOKEN}}"
make push
make pushlatest
| name: CI
on:
schedule:
- cron: '0 14 * * *'
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Environment Variables
run: |
echo "LABEL=$(date +%Y%m%d)-${GITHUB_SHA::8}" >> $GITHUB_ENV
- name: Build
env:
USER: leighmcculloch
run: |
make buildnc
- name: Push
run: |
docker login -u leighmcculloch -p "${{secrets.DOCKER_TOKEN}}"
make push
make pushlatest
|
Fix error in import statement | {% set name = "focal-stats" %}
{% set version = "0.0.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/focal_stats-{{ version }}.tar.gz
sha256: ed0024a8346fa7dd40e6cd702981d485714d8a74491abf3bd2b04c9bc3db2523
build:
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
build:
- {{ compiler('c') }}
host:
- cython
- numpy
- pip
- python
- setuptools
run:
- python
- {{ pin_compatible('numpy') }}
test:
imports:
- focal_stats
- focal_stats.focal_correlation
commands:
- pip check
requires:
- pip
about:
home: https://pypi.org/project/focal-stats/
license: MIT
license_file: LICENSE
summary: 'Focal statistics for Python'
doc_url: https://focal-stats.readthedocs.io/en/latest/?badge=latest
dev_url: https://github.com/jasperroebroek/focal-stats
extra:
recipe-maintainers:
- jasperroebroek
| {% set name = "focal-stats" %}
{% set version = "0.0.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/focal_stats-{{ version }}.tar.gz
sha256: ed0024a8346fa7dd40e6cd702981d485714d8a74491abf3bd2b04c9bc3db2523
build:
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
build:
- {{ compiler('c') }}
host:
- cython
- numpy
- pip
- python
- setuptools
run:
- python
- {{ pin_compatible('numpy') }}
test:
imports:
- focal_stats
- focal_stats.core.focal_correlation
commands:
- pip check
requires:
- pip
about:
home: https://pypi.org/project/focal-stats/
license: MIT
license_file: LICENSE
summary: 'Focal statistics for Python'
doc_url: https://focal-stats.readthedocs.io/en/latest/?badge=latest
dev_url: https://github.com/jasperroebroek/focal-stats
extra:
recipe-maintainers:
- jasperroebroek
|
Revert "add versions and constraints for packages and samples" | name: mime
version: 0.9.0
author: Dart Team <misc@dartlang.org>
description: Helper-package for working with MIME.
homepage: http://www.dartlang.org
dev_dependencies:
unittest: ">=0.9.0 <0.10.0"
environment:
sdk: ">=1.0.0 <2.0.0"
| name: mime
author: Dart Team <misc@dartlang.org>
description: Helper-package for working with MIME.
homepage: http://www.dartlang.org
dev_dependencies:
unittest: any
|
Revert "Moving installation of requirements to a sooner step in the documentation build process" | # .readthedocs.yml
version: 2
python:
version: 3.7
before_install:
- requirements: docs/requirements.txt
- method: pip
path: . | # .readthedocs.yml
version: 2
python:
version: 3.7
install:
- requirements: docs/requirements.txt
- method: pip
path: . |
Update the com.google.code.findbugs dependency coordinates. | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0
javax_annotation: com.google.code.findbugs:jsr305:jar:3.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
javax_validation: javax.validation:validation-api:jar:1.0.0.GA
javax_validation_sources: javax.validation:validation-api:jar:sources:1.0.0.GA
# Mocking library used in tests
mockito: org.mockito:mockito-all:jar:1.8.5
| repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0
javax_annotation: org.realityforge.javax.annotation:javax.annotation:jar:1.0.0
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
javax_validation: javax.validation:validation-api:jar:1.0.0.GA
javax_validation_sources: javax.validation:validation-api:jar:sources:1.0.0.GA
# Mocking library used in tests
mockito: org.mockito:mockito-all:jar:1.8.5
|
Increase mem per staging requirements | name: converter
framework:
type: python
mem: 64M
requirements:
pypm:
- bottle
- redis
min_version:
client: 1.4.3
services:
${name}-db: redis
| name: converter
framework:
type: python
mem: 128M
requirements:
pypm:
- bottle
- redis
min_version:
client: 1.4.3
services:
${name}-db: redis
|
Remove --rm flag from docker-compose commands | machine:
services:
- docker
dependencies:
override:
- sudo pip install --upgrade docker-compose==1.5.0rc2
test:
pre:
- docker-compose -f docker/base.yml -f docker/dev.yml run --rm agent
override:
- docker-compose -f docker/base.yml -f docker/dev.yml run --rm app
| machine:
services:
- docker
dependencies:
override:
- sudo pip install --upgrade docker-compose==1.5.0rc2
test:
pre:
- docker-compose -f docker/base.yml -f docker/dev.yml run agent
override:
- docker-compose -f docker/base.yml -f docker/dev.yml run app
|
Install python 2 for bare ubuntu | ---
- hosts: all
remote_user: root
roles:
- common
- users
- swap
- hosts: docker
remote_user: root
roles:
- docker
| ---
- hosts: all
remote_user: root
gather_facts: False
pre_tasks:
- raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
- setup: # aka gather_facts
roles:
- common
- users
- swap
- hosts: docker
remote_user: root
roles:
- docker
|
Test Python 3.7 on Appveyor | build: false
services:
- postgresql96
environment:
global:
PGUSER: postgres
PGHOST: localhost
PGPORT: 5432
PGPASSWORD: Password12!
matrix:
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda info -a
- "conda create -n testenv --yes python=%PYTHON_VERSION% \
fiona \
flask \
gdal \
isodate \
libgdal \
networkx \
numpy \
pandas \
pint \
psycopg2 \
pyarrow \
pytest \
python-dateutil \
ruamel.yaml \
rtree \
shapely \
xarray"
- activate testenv
- python setup.py develop
before_test:
- PATH=C:\Program Files\PostgreSQL\9.6\bin\;%PATH%
- createdb -e test_smif
test_script:
- python setup.py test
| build: false
services:
- postgresql96
environment:
global:
PGUSER: postgres
PGHOST: localhost
PGPORT: 5432
PGPASSWORD: Password12!
matrix:
- PYTHON_VERSION: 3.7
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda info -a
- "conda create -n testenv python=%PYTHON_VERSION% \
fiona \
flask \
gdal \
isodate \
libgdal \
networkx \
numpy \
pandas \
pint \
psycopg2 \
pyarrow \
pytest \
python-dateutil \
ruamel.yaml \
rtree \
shapely \
xarray"
- activate testenv
- python setup.py develop
before_test:
- PATH=C:\Program Files\PostgreSQL\9.6\bin\;%PATH%
- createdb -e test_smif
test_script:
- python setup.py test
|
Update from Hackage at 2017-04-08T19:52:03Z | homepage: https://github.com/nikita-volkov/bug
changelog-type: ''
hash: 5990916e1d791a528bbcc9b043715d7fb3dd4bbc6efdb494a513b07d2d0af3f4
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Better alternatives to the "error" function
changelog: ''
basic-deps:
base: ! '>=4 && <5'
template-haskell: ! '>=2.8 && <3'
all-versions:
- '1'
author: Nikita Volkov <nikita.y.volkov@mail.ru>
latest: '1'
description-type: haddock
description: ''
license-name: MIT
| homepage: https://github.com/nikita-volkov/bug
changelog-type: ''
hash: a516df91c7330d350480a7d338af645f173d1e767450c5f94295020f11c8432c
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Better alternatives to the "error" function
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
template-haskell: ! '>=2.8 && <3'
all-versions:
- '1'
- '1.0.1'
author: Nikita Volkov <nikita.y.volkov@mail.ru>
latest: '1.0.1'
description-type: haddock
description: ''
license-name: MIT
|
Update from Hackage at 2018-12-12T14:57:28Z | homepage: https://github.com/minad/ihs
changelog-type: ''
hash: bad6cbaa6bd4ac620e46042f3581acbc6b39d247ac8876aefe26bd7adbcd8672
test-bench-deps: {}
maintainer: Daniel Mendler <mail@daniel-mendler.de>
synopsis: Interpolated Haskell
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
process: ! '>=1 && <1.7'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Daniel Mendler <mail@daniel-mendler.de>
latest: '0.1.0.2'
description-type: haddock
description: This abomination allows you to quickly generate text files in a style
similar to ERB from Ruby or PHP. But you stay typesafe!
license-name: PublicDomain
| homepage: https://github.com/minad/ihs
changelog-type: ''
hash: 74456ff62f974855694af53827a87c143f3078f7804f345831e4fce09ebc1ecb
test-bench-deps: {}
maintainer: Daniel Mendler <mail@daniel-mendler.de>
synopsis: Interpolated Haskell
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
process: ! '>=1 && <1.7'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
author: Daniel Mendler <mail@daniel-mendler.de>
latest: '0.1.0.3'
description-type: haddock
description: This abomination allows you to quickly generate text files in a style
similar to ERB from Ruby or PHP. But you stay typesafe!
license-name: LicenseRefPublicDomain
|
Update Kotatsu to 2.0 (372) | AntiFeatures:
- NonFreeNet
Categories:
- Reading
- Multimedia
License: GPL-3.0-or-later
AuthorName: Koitharu
SourceCode: https://github.com/nv95/Kotatsu
IssueTracker: https://github.com/nv95/Kotatsu/issues
Name: Kotatsu
AutoName: Kotatsu
RepoType: git
Repo: https://github.com/nv95/Kotatsu.git
Builds:
- versionName: 1.0.1
versionCode: 364
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: 1.1.1
versionCode: 366
commit: bbd43b51e37b84474e122c5049e2538b2de8e396
subdir: app
gradle:
- yes
- versionName: 1.1.2
versionCode: 367
commit: fae958f6efc993744b385d11854a67f0496c3fe8
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags ^v[0-9.]+$
CurrentVersion: 1.1.2
CurrentVersionCode: 367
| AntiFeatures:
- NonFreeNet
Categories:
- Reading
- Multimedia
License: GPL-3.0-or-later
AuthorName: Koitharu
SourceCode: https://github.com/nv95/Kotatsu
IssueTracker: https://github.com/nv95/Kotatsu/issues
Name: Kotatsu
AutoName: Kotatsu
RepoType: git
Repo: https://github.com/nv95/Kotatsu.git
Builds:
- versionName: 1.0.1
versionCode: 364
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: 1.1.1
versionCode: 366
commit: bbd43b51e37b84474e122c5049e2538b2de8e396
subdir: app
gradle:
- yes
- versionName: 1.1.2
versionCode: 367
commit: fae958f6efc993744b385d11854a67f0496c3fe8
subdir: app
gradle:
- yes
- versionName: '2.0'
versionCode: 372
commit: 2ce5cb524f9df04467ddf0f36f097476109b433c
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags ^v[0-9.]+$
CurrentVersion: '2.0'
CurrentVersionCode: 372
|
Test against Faraday 2.x minor versions in CI | name: 'Test against supported Faraday minor versions'
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
faraday_version: ['1.0.1', '1.1.0', '1.2.0', '1.3.1', '1.4.1', '1.5.1', '1.6.0', '1.7.2', '1.8.0', '1.9.3', '1.10.0']
env:
FARADAY_VERSION: ~> ${{ matrix.faraday_version }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby ${{ matrix.ruby_version }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: 3.1
- name: Install dependencies
run: bundle install
- name: Run RSpec tests
run: bundle exec rspec | name: 'Test against supported Faraday minor versions'
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
# Normally, we only test the most recent patch version for any given minor version.
# For v2.0.x, we test v2.0.0 and v2.0.1 because v2.0.0 has a special behaviour where
# the Net::HTTP adapter is not included. See
# https://github.com/lostisland/faraday/blob/main/UPGRADING.md#faraday-20.
faraday_version: ['1.0.1', '1.1.0', '1.2.0', '1.3.1', '1.4.1', '1.5.1', '1.6.0', '1.7.2', '1.8.0', '1.9.3', '1.10.0', '2.0.0', '2.0.1', '2.1.0', '2.2.0', '2.3.0', '2.4.0']
env:
FARADAY_VERSION: ~> ${{ matrix.faraday_version }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby ${{ matrix.ruby_version }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: 3.1
- name: Install dependencies
run: bundle install
- name: Run RSpec tests
run: bundle exec rspec |
Cut jcstress tough run back to every other week | name: JCStress Testing - stress testing
on:
schedule:
- cron: "0 0 * * WED"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Set up java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew jcstress -Pmode=tough
- name: Archive artifacts
uses: actions/upload-artifact@v2
with:
name: jcstress-report-stress
path: build/reports/jcstress
| name: JCStress Testing - stress testing
on:
schedule:
- cron: "0 0 1,15 * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Set up java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew jcstress -Pmode=tough
- name: Archive artifacts
uses: actions/upload-artifact@v2
with:
name: jcstress-report-stress
path: build/reports/jcstress
|
Document new 'PACKED' file format | # deploy.option.yaml
# Example of a deployment options file using YAML format.
# See http://axonivy.github.io/project-build-plugin/release/deploy-to-engine-mojo.html for
# more information about deployment options parameters.
# All parameters are set to their default values and listed in [brackets].
# Flag indicating if project test users should be deployed to the engine.
deployTestUsers: false # [false], true
# Defines how project deployment should affect engine configuration.
configuration:
overwrite: false # [false], true
cleanup: DISABLED # [DISABLED], REMOVE_UNUSED, REMOVE_ALL
# Deployment target settings.
target:
version: AUTO # [AUTO], RELEASED, (version values, e.g. 2.5 or (2.0,3.0])
state: ACTIVE_AND_RELEASED # [ACTIVE_AND_RELEASED], ACTIVE, INACTIVE
fileFormat: AUTO # [AUTO], EXPANDED
| # deploy.option.yaml
# Example of a deployment options file using YAML format.
# See http://axonivy.github.io/project-build-plugin/release/deploy-to-engine-mojo.html for
# more information about deployment options parameters.
# All parameters are set to their default values and listed in [brackets].
# Flag indicating if project test users should be deployed to the engine.
deployTestUsers: false # [false], true
# Defines how project deployment should affect engine configuration.
configuration:
overwrite: false # [false], true
cleanup: DISABLED # [DISABLED], REMOVE_UNUSED, REMOVE_ALL
# Deployment target settings.
target:
version: AUTO # [AUTO], RELEASED, (version values, e.g. 2.5 or (2.0,3.0])
state: ACTIVE_AND_RELEASED # [ACTIVE_AND_RELEASED], ACTIVE, INACTIVE
fileFormat: AUTO # [AUTO], PACKED, EXPANDED
|
Apply MariaDB configuration before user creation | ---
# Now install MariaDB Server and setup a testing database
- name: install the latest version of MariaDB
dnf: name=mariadb-server state=latest
tags:
- mariadb
- name: install the Python extensions for MariaDB
dnf: name=MySQL-python state=latest
tags:
- mariadb
- name: Ensure MariaDB is started now, and again on startup
service: name=mariadb enabled=yes state=started
tags:
- mariadb
- name: Create Hibernate testing users for MariaDB
mysql_user: name=hibernate_user password=hibernate_password priv=*.*:ALL state=present
tags:
- mariadb
- name: Create Hibernate ORM testing users for MariaDB
mysql_user: name=hibernate_orm_test password=hibernate_orm_test priv=*.*:ALL state=present
tags:
- mariadb
- name: Ensure the MariaDB testing database exists
mysql_db: name=testingdb state=present login_user=hibernate_user login_password=hibernate_password
tags:
- mariadb
- name: Ensure the MariaDB second testing database exists
mysql_db: name=hibernate_orm_test state=present login_user=hibernate_orm_test login_password=hibernate_orm_test
tags:
- mariadb
- name: Apply MariaDB tuning suited for unit tests
copy: src=my.cnf dest=/etc/my.cnf owner=root group=root mode=0644
tags:
- mariadb
notify:
- Restart MariaDB
| ---
# Now install MariaDB Server and setup a testing database
- name: install the latest version of MariaDB
dnf: name=mariadb-server state=latest
tags:
- mariadb
- name: install the Python extensions for MariaDB
dnf: name=MySQL-python state=latest
tags:
- mariadb
- name: Ensure MariaDB is started now, and again on startup
service: name=mariadb enabled=yes state=started
tags:
- mariadb
- name: Apply MariaDB tuning suited for unit tests
copy: src=my.cnf dest=/etc/my.cnf owner=root group=root mode=0644 force=yes
tags:
- mariadb
- name: Ensure MariaDB is started now, and again on startup
service: name=mariadb enabled=yes state=restarted
tags:
- mariadb
- name: Create Hibernate testing users for MariaDB
mysql_user: name=hibernate_user password=hibernate_password priv=*.*:ALL state=present
tags:
- mariadb
- name: Create Hibernate ORM testing users for MariaDB
mysql_user: name=hibernate_orm_test password=hibernate_orm_test priv=*.*:ALL state=present
tags:
- mariadb
- name: Ensure the MariaDB testing database exists
mysql_db: name=testingdb state=present login_user=hibernate_user login_password=hibernate_password
tags:
- mariadb
- name: Ensure the MariaDB second testing database exists
mysql_db: name=hibernate_orm_test state=present login_user=hibernate_orm_test login_password=hibernate_orm_test
tags:
- mariadb
|
Update rust version -> 1.54 in github | name: CI
on:
push:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.48.0
- name: Validate Code
run: make check
| name: CI
on:
push:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.54.0
- name: Validate Code
run: make check
|
Add default parameter for chef operation | environments:
HOME: /root
PATH: $PATH:/opt/chefdk/embedded/bin:/opt/chef/embedded/bin:/usr/bin
ROLE: '{{config.role}}'
CONSUL_SECRET_KEY: '{{config.token}}'
default:
timeout: 1800
events:
setup:
description: Execute setup
task: setup
configure:
description: Execute configure chef
task: configure
spec:
description: Execute spec
task: spec
deploy:
description: Execute deploy
task: deploy
tasks:
setup:
description: Execute setup chef
operations:
- execute:
file: prepare.sh
- chef:
run_list:
- role[{{role}}_setup]
configure:
description: Execute configure chef
operations:
- chef:
run_list:
- role[{{role}}_configure]
spec:
description: Execute serverspec
operations:
- execute:
script: python lib/event_handler.py {{role}} spec
deploy:
description: Execute deploy chef
operations:
- chef:
run_list:
- role[{{role}}_deploy]
| environments:
HOME: /root
PATH: $PATH:/opt/chefdk/embedded/bin:/opt/chef/embedded/bin:/usr/bin
ROLE: '{{config.role}}'
CONSUL_SECRET_KEY: '{{config.token}}'
default:
timeout: 1800
chef:
attribute_keys:
- cloudconductor
events:
setup:
description: Execute setup
task: setup
configure:
description: Execute configure chef
task: configure
spec:
description: Execute spec
task: spec
deploy:
description: Execute deploy
task: deploy
tasks:
setup:
description: Execute setup chef
operations:
- execute:
file: prepare.sh
- chef:
run_list:
- role[{{role}}_setup]
configure:
description: Execute configure chef
operations:
- chef:
run_list:
- role[{{role}}_configure]
spec:
description: Execute serverspec
operations:
- execute:
script: python lib/event_handler.py {{role}} spec
deploy:
description: Execute deploy chef
operations:
- chef:
run_list:
- role[{{role}}_deploy]
|
Add more information to the ovs flows dump | - name: Print statistics for network devices associated with "{{ item }}"
command: ovs-ofctl --protocols OpenFlow13 dump-ports "{{ item|quote }}"
become: true
- name: Print detailed information about network devices associated with "{{ item }}"
command: ovs-ofctl --protocols OpenFlow13 dump-ports-desc "{{ item|quote }}"
become: true
- name: Print all flow entries in "{{ item }}"\'s tables that match flows
command: ovs-ofctl --protocols OpenFlow13 dump-flows "{{ item|quote }}"
become: true
- name: Print group entries in "{{ item }}"\'s tables
command: ovs-ofctl --protocols OpenFlow13 dump-groups "{{ item|quote }}"
become: true
- name: Print statistics for the specified groups in the "{{ item }}"\'s tables
command: ovs-ofctl --protocols OpenFlow13 dump-group-stats "{{ item|quote }}"
become: true
| - name: Print information on "{{ item }}"
command: ovs-ofctl --protocols OpenFlow13 show "{{ item|quote }}"
become: true
- name: Print statistics for network devices associated with "{{ item }}"
command: ovs-ofctl --protocols OpenFlow13 dump-ports "{{ item|quote }}"
become: true
- name: Print detailed information about network devices associated with "{{ item }}"
command: ovs-ofctl --protocols OpenFlow13 dump-ports-desc "{{ item|quote }}"
become: true
- name: Print all flow entries in "{{ item }}"\'s tables that match flows
command: ovs-ofctl --protocols OpenFlow13 dump-flows "{{ item|quote }}"
become: true
- name: Print group entries in "{{ item }}"\'s tables
command: ovs-ofctl --protocols OpenFlow13 dump-groups "{{ item|quote }}"
become: true
- name: Print statistics for the specified groups in the "{{ item }}"\'s tables
command: ovs-ofctl --protocols OpenFlow13 dump-group-stats "{{ item|quote }}"
become: true
|
Add missing DNS records to example warehouse | net:
dns:
mx:
-
priority: 10
server: mail.example.com
-
priority: 20
server: mail2.example.com
ns:
- 192.168.0.1
- 192.168.0.2
| net:
dns:
mx:
-
priority: 10
server: mail.example.com
-
priority: 20
server: mail2.example.com
ns:
- 192.168.0.1
- 192.168.0.2
soa-ns: ns1.example.com
soa-contact: hostmaster@example.com
|
Update Spring Boot CLI to version 1.+ | # Cloud Foundry Java Buildpack
# Copyright (c) 2013 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Configuration for the Spring Auto Reconfiguration framework.
# Note that the repository is shared with the Play Auto Reconfiguration framework and should be kept in step to
# avoid conflicts.
---
version: 1.1.+
repository_root: "{default.repository.root}/spring-boot-cli"
| # Cloud Foundry Java Buildpack
# Copyright (c) 2013 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Configuration for the Spring Auto Reconfiguration framework.
# Note that the repository is shared with the Play Auto Reconfiguration framework and should be kept in step to
# avoid conflicts.
---
version: 1.+
repository_root: "{default.repository.root}/spring-boot-cli"
|
Update CTemplar to 1.2.8 (6) | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: Apache-2.0
WebSite: https://ctemplar.com
SourceCode: https://github.com/CTemplar/android/tree/fdroid
IssueTracker: https://github.com/CTemplar/android/issues
AutoName: CTemplar
RepoType: git
Repo: https://github.com/CTemplar/android.git
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0-fdroid
subdir: app
gradle:
- yes
- versionName: 1.0.2
versionCode: 3
commit: v1.0.2-fdroid
subdir: app
gradle:
- yes
- versionName: 1.2.6
versionCode: 4
commit: v1.2.6-fdroid
subdir: app
gradle:
- yes
- versionName: 1.2.7
versionCode: 5
commit: v1.2.7-fdroid
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v-fdroid
UpdateCheckMode: Tags
CurrentVersion: 1.2.7
CurrentVersionCode: 5
| AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: Apache-2.0
WebSite: https://ctemplar.com
SourceCode: https://github.com/CTemplar/android/tree/fdroid
IssueTracker: https://github.com/CTemplar/android/issues
AutoName: CTemplar
RepoType: git
Repo: https://github.com/CTemplar/android.git
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0-fdroid
subdir: app
gradle:
- yes
- versionName: 1.0.2
versionCode: 3
commit: v1.0.2-fdroid
subdir: app
gradle:
- yes
- versionName: 1.2.6
versionCode: 4
commit: v1.2.6-fdroid
subdir: app
gradle:
- yes
- versionName: 1.2.7
versionCode: 5
commit: v1.2.7-fdroid
subdir: app
gradle:
- yes
- versionName: 1.2.8
versionCode: 6
commit: v1.2.8-fdroid
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v-fdroid
UpdateCheckMode: Tags
CurrentVersion: 1.2.8
CurrentVersionCode: 6
|
Reduce the pod count to pass the load test | POD_COUNT: 80
CONTAINER_IMAGE: gcr.io/gke-release/pause-win:1.0.0
POD_STARTUP_LATENCY_THRESHOLD: 20m
| POD_COUNT: 10
CONTAINER_IMAGE: gcr.io/gke-release/pause-win:1.0.0
POD_STARTUP_LATENCY_THRESHOLD: 20m
|
Use verbose form in example yaml | ssh_groups: - foobar
- credativ
ssh_users:
- { name: "psc", gecos: "Patrick Schoenfeld", group: "credativ", shell: "/bin/zsh", pwhash: "$5$g2ShvVtSoNiISzpI$w9gHo1vtH1uIS1diJTnCDNr4oFPjtHvPqjsFN6T8jWC" ssh_key: {type: "ssh-rsa", key: "AAAAB3NzaC1yc2EAAAABIwAAAQEAqnrrjV9ge602ChzGnhNCJDWKp1rI0Zwb64yr8evY5ozINNzyHaWGwp20JRQbPmwhd3TQDPI3hQ48n8fTagCGKRUnim25A9Fmx25viXDA7VjmfmJvC11zZgP+7cGploLcU3aOKABOpNu38tOqcI2oUgyJ9b/H7/re/QT6HutOeLuoKUtctEflWWpYmpYfXlSFrvCmrI11cVLAA6ORuV7HaWitUe6e85bv+Wxu7RICUf4HNjZRJaZdDZkaR55Y+C147qc9VcCJuJFQbOjdhocxr9AJX0ECSeW5aooB3MOvefuCxXSlCgtQTczJhJiXUo97W+/SqzupB57Ju+jnK2XwbQ==", comment: "psc@lisa"}}
| ssh_groups: - foobar
- credativ
ssh_users:
- name: "psc"
gecos: "Patrick Schoenfeld"
group: "credativ"
shell: "/bin/zsh"
pwhash: "$5$g2ShvVtSoNiISzpI$w9gHo1vtH1uIS1diJTnCDNr4oFPjtHvPqjsFN6T8jWC"
ssh_key:
type: "ssh-rsa"
key: "AAAAB3NzaC1yc2EAAAABIwAAAQEAqnrrjV9ge602ChzGnhNCJDWKp1rI0Zwb64yr8evY5ozINNzyHaWGwp20JRQbPmwhd3TQDPI3hQ48n8fTagCGKRUnim25A9Fmx25viXDA7VjmfmJvC11zZgP+7cGploLcU3aOKABOpNu38tOqcI2oUgyJ9b/H7/re/QT6HutOeLuoKUtctEflWWpYmpYfXlSFrvCmrI11cVLAA6ORuV7HaWitUe6e85bv+Wxu7RICUf4HNjZRJaZdDZkaR55Y+C147qc9VcCJuJFQbOjdhocxr9AJX0ECSeW5aooB3MOvefuCxXSlCgtQTczJhJiXUo97W+/SqzupB57Ju+jnK2XwbQ=="
comment: "psc@lisa"
|
Install g++ 4.8 so that native compilation works in Node >= 4 | language: node_js
sudo: false
node_js:
- '0.12'
- '4'
- '5'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| language: node_js
sudo: false
node_js:
- '0.12'
- '4'
- '5'
env:
global:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
|
Send coverage profiles to coveralls.io | language: go
go:
- 1.2.2
- 1.3
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- go install -a -race std
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
| language: go
go:
- 1.3.1
- tip
matrix:
fast_finish: true
env:
global:
- PATH=$HOME/gopath/bin:$PATH
- secure: "SmBBCn0QhOvlbP/sESKmTeVyFQR4hdsXKBXAP7/6AnsLZ/PhoWIkHkRFkH97nHtwLJwklZ8JyyhXUeXuDuE36DHLV0NDvw3Z9j543XC8mgI40BnMnqobf39aA9pl8s+6fWTyO7Sbjzv8AueEZv+K1r2JeFK+ReGZuwoVc7fxnhI="
install:
- go get code.google.com/p/go.tools/cmd/vet code.google.com/p/go.tools/cmd/cover github.com/mattn/goveralls github.com/modocache/gover
- go get -t -v ./...
- go install -a -race std
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
- go list -f '{{if len .TestGoFiles}}go test -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}{{end}}' ./... | xargs -i sh -c {}
- gover
- goveralls -coverprofile=gover.coverprofile -service=travis-ci -repotoken $COVERALLS_TOKEN
|
Drop support for Node 0.x series | language: node_js
node_js:
- '4.3'
- '0.12'
- '0.11'
- '0.10'
script: npm test
after_script: npm run test-coverage && cat ./coverage/lcov.info | coveralls
| language: node_js
node_js:
- '4.3'
script: npm test
after_script: npm run test-coverage && cat ./coverage/lcov.info | coveralls
|
Update Node.js version to 4.1 | language: node_js
node_js:
- 0.12
notifications:
slack: armvisualizer:${slack_notification_key}
before_script:
- npm install -g gulp bower tsd typescript
- bower install
- tsd install
- patch typings/backbone/backbone.d.ts backbonefix.patch
script: gulp
branches:
only:
- master
deploy:
skip_cleanup: true
provider: script
script: scripts/deploy.sh
on:
branch: master | language: node_js
node_js:
- 4.1
notifications:
slack: armvisualizer:${slack_notification_key}
before_script:
- npm install -g gulp bower tsd typescript
- bower install
- tsd install
- patch typings/backbone/backbone.d.ts backbonefix.patch
script: gulp
branches:
only:
- master
deploy:
skip_cleanup: true
provider: script
script: scripts/deploy.sh
on:
branch: master |
Exclude Rails 5.0 tests from old ruby versions | ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.3.0
gemfile:
- gemfiles/Gemfile.rails-3.2
- gemfiles/Gemfile.rails-4.0
- gemfiles/Gemfile.rails-4.1
- gemfiles/Gemfile.rails-5.0
| ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.3.0
gemfile:
- gemfiles/Gemfile.rails-3.2
- gemfiles/Gemfile.rails-4.0
- gemfiles/Gemfile.rails-4.1
- gemfiles/Gemfile.rails-5.0
matrix:
exclude:
- rvm: 1.9.3
gemfile: gemfiles/Gemfile.rails-5.0
- rvm: 2.0.0
gemfile: gemfiles/Gemfile.rails-5.0
- rvm: 2.1.2
gemfile: gemfiles/Gemfile.rails-5.0
|
Update Go version in Travis CI. | sudo: false
language: go
go:
- 1.5.4
- 1.6.3
- 1.7
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
script:
- make test
after_success:
- make coverage
| sudo: false
language: go
go:
- 1.5.4
- 1.6.3
- 1.7.3
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
script:
- make test
after_success:
- make coverage
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.