doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
18f5057b-ef5b-4373-a605-ccce9e33121f | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.7
- 1.6
install:
- go get -u github.com/golang/lint/golint
script:
- make check
- make build
- make release
- make clean
- make test
- make coverage
```
Update test command for Travis CI | ```yaml
language: go
go:
- 1.7
- 1.6
install:
- go get -u github.com/golang/lint/golint
script:
- make check
- make build
- make release
- make clean
- make unit-test
- make unit-coverage
``` |
0824c3d0-e0e8-4df0-9959-2d147bcc737c | {
"language": "YAML"
} | ```yaml
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
cache:
directories:
- $HOME/.composer/cache
install:
- phpenv config-rm xdebug.ini
- composer install
script:
- find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l
- $(php -r 'if (PHP_MAJOR_VERSION >= 7) echo "phpdbg -qrr"; else echo "php";') vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
after_script:
- curl -OL https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.0/coveralls.phar
- chmod +x coveralls.phar
- ./coveralls.phar -v
```
Fix Travis on PHP nightly | ```yaml
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
cache:
directories:
- $HOME/.composer/cache
install:
- phpenv config-rm xdebug.ini || echo "No xdebug config found."
- composer install
script:
- find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l
- $(php -r 'if (PHP_MAJOR_VERSION >= 7) echo "phpdbg -qrr"; else echo "php";') vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
after_script:
- curl -OL https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.0/coveralls.phar
- chmod +x coveralls.phar
- ./coveralls.phar -v
``` |
25656259-2ace-4741-8ee8-93ab050be3f3 | {
"language": "YAML"
} | ```yaml
language: ruby
only:
- master
rvm:
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
env:
matrix:
- "RAILS_VERSION=\"~> 3.0.0\""
- "RAILS_VERSION=\"~> 3.1.0\""
- "RAILS_VERSION=\"~> 3.2.0\""
- "RAILS_VERSION=\"~> 4.0.0\""
matrix:
exclude:
- rvm: jruby-18mode
env: "RAILS_VERSION=\"~> 4.0.0\""
- rvm: rbx-18mode
env: "RAILS_VERSION=\"~> 4.0.0\""
- rvm: 1.8.7
env: "RAILS_VERSION=\"~> 4.0.0\""
- rvm: 1.9.2
env: "RAILS_VERSION=\"~> 4.0.0\""
allow_failures:
- rvm: jruby-18mode
- rvm: jruby-19mode
- rvm: rbx-18mode
- rvm: rbx-19mode```
Stop testing against ruby 1.8 | ```yaml
language: ruby
only:
- master
rvm:
- jruby-19mode
- rbx-19mode
- 1.9.2
- 1.9.3
- 2.0.0
env:
matrix:
- "RAILS_VERSION=\"~> 3.0.0\""
- "RAILS_VERSION=\"~> 3.1.0\""
- "RAILS_VERSION=\"~> 3.2.0\""
- "RAILS_VERSION=\"~> 4.0.0\""
matrix:
exclude:
- rvm: 1.9.2
env: "RAILS_VERSION=\"~> 4.0.0\""
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-19mode``` |
cdd45768-79af-4a88-b6cf-ac44eb430198 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
cache:
directories:
- vendor
- $HOME/.composer/cache
sudo: false
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
notifications:
email: false
branches:
only:
- master
```
Remove PHP versions below 5.6 for Travis CI | ```yaml
language: php
php:
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
cache:
directories:
- vendor
- $HOME/.composer/cache
sudo: false
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
notifications:
email: false
branches:
only:
- master
``` |
d22378e7-6b09-4dea-8267-89d945961237 | {
"language": "YAML"
} | ```yaml
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
```
Use the pre-release builds of chefdk | ```yaml
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
``` |
353a4379-6446-4e55-b751-91a56dcfe222 | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
python:
- 3.4
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda3/bin:$PATH
- conda install --yes pip python==$TRAVIS_PYTHON_VERSION numpy matplotlib
- pip install flit
install:
- flit wheel
- pip install dist/plotchecker*
script:
- py.test --cov plotchecker
after_success:
- codecov
```
Revert "Just use flit to build the wheel" | ```yaml
language: python
sudo: false
python:
- 3.4
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda3/bin:$PATH
- conda install --yes pip python==$TRAVIS_PYTHON_VERSION numpy matplotlib
- pip install flit
install:
- flit install
script:
- py.test --cov plotchecker
after_success:
- codecov
``` |
57614d23-79aa-4e04-b1d8-cc612c0e40fb | {
"language": "YAML"
} | ```yaml
dist: trusty
sudo: required
language: ruby
cache:
bundler: true
rvm:
- 2.4.1-clang
addons:
postgresql: '9.6'
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c "CREATE DATABASE open_lis_test ENCODING 'UTF-8';" -U postgres
```
Use yarn in Travis CI | ```yaml
dist: trusty
sudo: required
language: ruby
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.24.6
- export PATH=$HOME/.yarn/bin:$PATH
cache:
bundler: true
yarn: true
rvm:
- 2.4.1-clang
addons:
postgresql: '9.6'
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c "CREATE DATABASE open_lis_test ENCODING 'UTF-8';" -U postgres
``` |
c3dc5714-674d-4c51-a5a7-330f8eb3d1a6 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4"
- "6"
- "stable"
script:
- yarn run test:coverage
before_deploy:
- npm install -g auto-dist-tag
- auto-dist-tag --write
deploy:
provider: npm
email: stefan.penner+ember-cli@gmail.com
api_key:
secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3IoLe36z3P2KuqVSbhJnqsCIHaPveKnz89iCl/jXllM2lSF21M3eplMZo6vj9cc3LTI1vhexBs8Kc5Nbis3R7enkQFfGkWwm7TG1giGupG0JcMUK993bbzc=
on:
tags: true
repo: ember-cli/broccoli-uglify-sourcemap
```
Drop Node 4 from test matrix | ```yaml
language: node_js
node_js:
- "6"
- "stable"
script:
- yarn run test:coverage
before_deploy:
- npm install -g auto-dist-tag
- auto-dist-tag --write
deploy:
provider: npm
email: stefan.penner+ember-cli@gmail.com
api_key:
secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3IoLe36z3P2KuqVSbhJnqsCIHaPveKnz89iCl/jXllM2lSF21M3eplMZo6vj9cc3LTI1vhexBs8Kc5Nbis3R7enkQFfGkWwm7TG1giGupG0JcMUK993bbzc=
on:
tags: true
repo: ember-cli/broccoli-uglify-sourcemap
``` |
4d5d1b97-2a89-4ac0-8231-294962b56342 | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- openjdk8
- openjdk11
env: NODE_VERSION=10.2.1 CXX=g++-4.8
before_install: nvm install $NODE_VERSION
jobs:
include:
- stage: "Shared Module"
name: "Build"
script: ./gradlew :shared:build
- name: "Tests"
script: ./gradlew :shared:test -i
- stage: "Language Server"
name: "Tests"
script: ./gradlew :server:test -i
- name: "Executable"
script: ./gradlew :server:installDist
- stage: "Editor extensions"
name: "VSCode"
script: ./gradlew :editors:vscode:build
- name: "Atom"
script: ./gradlew :editors:atom:build
addons:
apt:
packages:
- libsecret-1-dev
- g++-4.8
before_deploy:
- npm install -g vsce atom-package-manager
- ./gradlew :editors:vscode:packageExtension
deploy:
- provider: script
script: cd editors/vscode && vsce publish -p $VSC_TOKEN
skip_cleanup: true
on:
repo: fwcd/kotlin-language-server
tags: true
condition: $TRAVIS_OS_NAME = linux
- provider: script
script: cd editors/atom && apm publish --tag $(git describe --tags --abbrev=0)
on:
repo: fwcd/kotlin-language-server
tags: true
condition: $TRAVIS_OS_NAME = linux
```
Move deployment into a separate build stage | ```yaml
language: java
jdk:
- openjdk8
- openjdk11
env: NODE_VERSION=10.2.1 CXX=g++-4.8
before_install: nvm install $NODE_VERSION
addons:
apt:
packages:
- libsecret-1-dev
- g++-4.8
jobs:
include:
- stage: "Shared Module"
name: "Build"
script: ./gradlew :shared:build
- name: "Tests"
script: ./gradlew :shared:test -i
- stage: "Language Server"
name: "Tests"
script: ./gradlew :server:test -i
- name: "Executable"
script: ./gradlew :server:installDist
- stage: "Editor extensions"
name: "VSCode"
script: ./gradlew :editors:vscode:build
- name: "Atom"
script: ./gradlew :editors:atom:build
- stage: "Deploy"
before_deploy:
- npm install -g vsce atom-package-manager
- ./gradlew :editors:vscode:packageExtension
- ./gradlew :editors:atom:install
deploy:
- provider: script
script: cd editors/vscode && vsce publish -p $VSC_TOKEN
skip_cleanup: true
on:
repo: fwcd/kotlin-language-server
tags: true
condition: $TRAVIS_OS_NAME = linux
- provider: script
script: cd editors/atom && apm publish --tag $(git describe --tags --abbrev=0)
on:
repo: fwcd/kotlin-language-server
tags: true
condition: $TRAVIS_OS_NAME = linux
``` |
2cbe3bf9-6aea-402c-81bc-0dd17339ade3 | {
"language": "YAML"
} | ```yaml
dist: trusty
sudo: false
language: c
branches:
only:
- master
cache:
directories:
- $HOME/env
before_install:
- pip install --user hererocks
- hererocks $HOME/env --luajit 2.0.3 --luarocks latest
- source $HOME/env/bin/activate
install:
- luarocks show lanes > /dev/null || luarocks install lanes
- luarocks show luacheck > /dev/null || luarocks install luacheck
- luarocks list --outdated --porcelain | awk '{ print $1, $3 }' | xargs --no-run-if-empty -n 2 luarocks install
script:
- git diff --check $TRAVIS_COMMIT_RANGE
- git diff --name-only $TRAVIS_COMMIT_RANGE | grep '\.lua$' | xargs --no-run-if-empty luacheck --std min+garrysmod+wiremod
```
Stop running Luacheck on E2 extension files | ```yaml
dist: trusty
sudo: false
language: c
branches:
only:
- master
cache:
directories:
- $HOME/env
before_install:
- pip install --user hererocks
- hererocks $HOME/env --luajit 2.0.3 --luarocks latest
- source $HOME/env/bin/activate
install:
- luarocks show lanes > /dev/null || luarocks install lanes
- luarocks show luacheck > /dev/null || luarocks install luacheck
- luarocks list --outdated --porcelain | awk '{ print $1, $3 }' | xargs --no-run-if-empty -n 2 luarocks install
script:
- git diff --check $TRAVIS_COMMIT_RANGE
- git diff --name-only $TRAVIS_COMMIT_RANGE | grep '\.lua$' | grep -v '^lua/entities/gmod_wire_expression2/core/' | xargs --no-run-if-empty luacheck --std min+garrysmod+wiremod
``` |
cbd88c54-29ee-4af4-ad8a-442a3be5624c | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '6'
- '8'
- '9'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
```
Drop node 9, add 10 and 12 | ```yaml
language: node_js
node_js:
- '6'
- '8'
- '10'
- '12'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
``` |
207e7643-ec56-44c5-aa85-fad48425b555 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
```
Use Ruby 2.1.5 when building on Travis CI. | ```yaml
language: ruby
rvm:
- 2.1.5
before_install: gem install bundler -v 1.10.6
``` |
ebc9f467-df89-4df1-a8fc-2413d6a6b2e9 | {
"language": "YAML"
} | ```yaml
language: php
php:
- '7.0'
- hhvm
- nightly
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
script: phpunit
```
Remove HHVM from Travis CI | ```yaml
language: php
php:
- '7.0'
- nightly
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
script: phpunit
``` |
bde0a726-4645-433f-bce6-04b209b584cd | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.7
virtualenv:
# apt packages ends up amongst system packages
system_site_packages: true
addons:
apt:
packages:
- qt4-qmake
- libqt4-dev
- python-qt4
# - python-pyside # not whitelisted for some reason
install:
# Based on http://stackoverflow.com/a/24545890/478949
- pip install PySide --no-index --find-links https://parkin.github.io/python-wheelhouse/;
script:
- nosetests .
```
Enable verbosity on nosetests to find out what's going wrong. | ```yaml
language: python
python:
- 2.7
virtualenv:
# apt packages ends up amongst system packages
system_site_packages: true
addons:
apt:
packages:
- qt4-qmake
- libqt4-dev
- python-qt4
# - python-pyside # not whitelisted for some reason
install:
# Based on http://stackoverflow.com/a/24545890/478949
- pip install PySide --no-index --find-links https://parkin.github.io/python-wheelhouse/;
script:
- nosetests --verbose
``` |
b4ee311a-c3b8-41d7-9645-aa9bc7add39b | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
```
Add Ruby 2.1 to Travis | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
``` |
f9a3f214-3406-4d1d-8e81-15f27d153dfe | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 1.9.2
- jruby-19mode
- rbx-19mode
- ruby-head
```
Revert "Do not check jruby-head" | ```yaml
language: ruby
rvm:
- 1.9.3
- 1.9.2
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
``` |
1115af6e-1706-4ca8-b3c1-a254c6cc6926 | {
"language": "YAML"
} | ```yaml
language: java
jdk: oraclejdk7
before_install:
# Gradle
- wget http://services.gradle.org/distributions/gradle-1.6-bin.zip
- unzip gradle-1.6-bin.zip
- export GRADLE_HOME=$PWD/gradle-1.6
- export PATH=$GRADLE_HOME/bin:$PATH
script: gradle assemble```
Use JDK6 for Android compatibility. | ```yaml
language: java
jdk: oraclejdk6
before_install:
# Gradle
- wget http://services.gradle.org/distributions/gradle-1.6-bin.zip
- unzip gradle-1.6-bin.zip
- export GRADLE_HOME=$PWD/gradle-1.6
- export PATH=$GRADLE_HOME/bin:$PATH
script: gradle assemble``` |
6adb11fd-14a1-42e6-b9e5-d9399376b90d | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
before_install:
- "npm install --global bower grunt-cli"
```
Add NPM deploy step with encrypted API key | ```yaml
language: node_js
node_js:
- '0.10'
before_install:
- npm install --global bower grunt-cli
deploy:
provider: npm
email: ukfrontend@wonga.com
api_key:
secure: d0TXTI1s5jyogMsFk53Z0U2vtDaI/haN1CGWifRoOS8M5WWAOA8t+1s7KgZQm5//TcRgkJXCZXeMugPJw/7syjVAKLggi5+0KMrNH09/bMWwC1CqNGForHa1Gvv/WhG9E9EWK1Sf03nKsNxlCWYp5pA7HZ0g9UW33/EM2xK2jUY=
on:
tags: true
``` |
ebcfb80e-8d32-42c9-ae20-db35e8e140a4 | {
"language": "YAML"
} | ```yaml
# Use docker-based build environment (instead of openvz)
sudo: false
language: java
jdk:
- oraclejdk8
cache:
directories:
- '$HOME/.m2/repository'
after_success:
- mvn clean test jacoco:report coveralls:report```
Add deployment of SNAPSHOT artifacts after CI build to Sonatype OSS repository | ```yaml
# Use docker-based build environment (instead of openvz)
sudo: false
language: java
jdk:
- oraclejdk8
cache:
directories:
- '$HOME/.m2/repository'
after_success:
- mvn clean test jacoco:report coveralls:report
- echo "<settings><servers><server><id>ossrh</id><username>\${env.OSSRH_USER}</username><password>\${env.OSSRH_PASS}</password></server></servers></settings>" > ~/settings.xml
- mvn deploy --settings ~/settings.xml``` |
aa0f6dcb-be6b-4da0-ac47-4d26d96d53f8 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
addons:
apt:
packages:
- libevent-dev # Used by 'event' and 'libevent' PHP extensions
cache:
directories:
- $HOME/.composer/cache
install:
- ./travis-init.sh
- composer install
script:
- ./vendor/bin/phpunit --coverage-text
```
Adjust composer cache directory to only cache package files | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
addons:
apt:
packages:
- libevent-dev # Used by 'event' and 'libevent' PHP extensions
cache:
directories:
- $HOME/.composer/cache/files
install:
- ./travis-init.sh
- composer install
script:
- ./vendor/bin/phpunit --coverage-text
``` |
7a89d1a1-cc4a-4b85-a9ba-1aca3d0ca731 | {
"language": "YAML"
} | ```yaml
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install -g phantomjs-prebuilt@2
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
```
Add an ember try scenario for ember-2.3, the oldest supported version. | ```yaml
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-2.3
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install -g phantomjs-prebuilt@2
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
``` |
f6d4572e-51e2-4366-9458-323544da6f2d | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode # JRuby 1.7.0
- rbx-19mode
# - ruby-head # seems unstable on travis at this time
```
Add Ruby 2.0.0 for Travis CI | ```yaml
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode # JRuby 1.7.0
- rbx-19mode
# - ruby-head # seems unstable on travis at this time
``` |
89eea50d-ae86-4f0e-b92d-b6a4bc67e0ab | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
- pypy
env:
- TWISTED_VERSION=12.2.0
- TWISTED_VERSION=12.1.0
install:
- pip install Twisted==$TWISTED_VERSION
- pip install -r requirements-dev.txt --use-mirrors
script:
- pep8 treq
- pyflakes treq
- trial treq
```
Comment out everything but pypy with latest twisted and try running trial under strace. | ```yaml
language: python
python:
#- 2.6
#- 2.7
- pypy
env:
- TWISTED_VERSION=12.2.0
#- TWISTED_VERSION=12.1.0
install:
- pip install Twisted==$TWISTED_VERSION
- pip install -r requirements-dev.txt --use-mirrors
script:
- pep8 treq
- pyflakes treq
- strace trial treq
``` |
9a8c17dc-47e5-4a78-820b-7af605ef7e72 | {
"language": "YAML"
} | ```yaml
sudo: false
language: clojure
lein: 2.8.1
jdk:
- oraclejdk8
- oraclejdk10
script: lein do check, midje
```
Upgrade to JVM 11 (LTS) | ```yaml
sudo: false
language: clojure
lein: 2.8.1
jdk:
- oraclejdk8
- openjdk11 # Don't fall for Oracle's trick: https://blog.joda.org/2018/09/do-not-fall-into-oracles-java-11-trap.html
script: lein do check, midje
``` |
9768d0d1-226b-40fa-b0c3-a0a9342e8cc5 | {
"language": "YAML"
} | ```yaml
language: php
php:
- '7.0'
- '5.6'
- '5.5.9'
- '5.5'
- '5.4'
- hhvm
env:
matrix:
- PREFER_LOWEST=""
- PREFER_LOWEST="--prefer-lowest"
matrix:
allow_failures:
- php: '5.4'
- php: hhvm
install:
- if [[ "$(phpenv version-name)" != "hhvm" ]]; then echo 'error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
- travis_retry composer update --no-interaction --prefer-source $PREFER_LOWEST
script:
- vendor/bin/phpunit -v --color -c .travis-phpunit$([[ "$(phpenv version-name)" == "hhvm" ]] && echo -n "-hhvm").xml
after_success:
- bash <(curl -s https://codecov.io/bash)
```
Use global PHPUnit in Travis builds | ```yaml
language: php
php:
- '7.0'
- '5.6'
- '5.5.9'
- '5.5'
- '5.4'
- hhvm
env:
matrix:
- PREFER_LOWEST=""
- PREFER_LOWEST="--prefer-lowest"
matrix:
allow_failures:
- php: '5.4'
- php: hhvm
install:
- if [[ "$(phpenv version-name)" != "hhvm" ]]; then echo 'error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
- travis_retry composer update --no-interaction --prefer-source $PREFER_LOWEST
script:
- phpunit -v --color -c .travis-phpunit$([[ "$(phpenv version-name)" == "hhvm" ]] && echo -n "-hhvm").xml
after_success:
- bash <(curl -s https://codecov.io/bash)
``` |
17682c57-7df3-410f-9837-2f08d90f930a | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install: python setup.py install
script: python setup.py test
```
Remove 3.2 support as WTForms doesn't support it | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
install: python setup.py install
script: python setup.py test
``` |
39e28a22-d2a0-461b-8f7f-cdb00b90058a | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.0
- 7.1
- 7.2
cache:
directories:
- $HOME/.composer/cache
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [[ $COMPOSER_FLAGS == '' ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
matrix:
allow_failures:
- php: 7.2
```
Remove lower dependencies runs. Only run coverage for php 7.1 | ```yaml
language: php
php:
- 7.0
- 7.1
- 7.2
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer update --no-interaction --prefer-dist
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [ $(phpenv version-name) == "7.1" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
matrix:
allow_failures:
- php: 7.2
``` |
d7e9bbd2-e6b4-4ee0-9b4e-493fac49ec2b | {
"language": "YAML"
} | ```yaml
language: bash
services: docker
env:
- VERSION=17.09
- VERSION=17.07
- VERSION=17.06
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- cd "$VERSION"
- image="docker:$VERSION"
script:
- travis_retry docker build -t "$image" .
- ~/official-images/test/run.sh "$image"
- travis_retry docker build -t "$image-dind" dind
- ~/official-images/test/run.sh "$image-dind"
- travis_retry docker build -t "$image-git" git
- ~/official-images/test/run.sh "$image-git"
after_script:
- docker images
# vim:set et ts=2 sw=2:
```
Update Travis for 17.06 removal | ```yaml
language: bash
services: docker
env:
- VERSION=17.09
- VERSION=17.07
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- cd "$VERSION"
- image="docker:$VERSION"
script:
- travis_retry docker build -t "$image" .
- ~/official-images/test/run.sh "$image"
- travis_retry docker build -t "$image-dind" dind
- ~/official-images/test/run.sh "$image-dind"
- travis_retry docker build -t "$image-git" git
- ~/official-images/test/run.sh "$image-git"
after_script:
- docker images
# vim:set et ts=2 sw=2:
``` |
52780c57-a366-46e6-b21e-a8c4b2783830 | {
"language": "YAML"
} | ```yaml
version: '{branch}-{build}'
init:
- cmd: git config --global core.autocrlf true
before_build:
- cmd: >-
nuget restore Agiil.sln
git submodule update --init --recursive
# As of 2017-05-15 it appears AppVeyor use a 32-bit MSBuild.
# This means that we must compile for 32-bit, because otherwise
# the custom 'CompileScssFiles' target will fail on usage of the
# 64-bit flavour of libsass.dll
platform: x86
build:
verbosity: normal
test:
assemblies:
except:
- '**\Agiil.Tests.Common.dll'
- '**\Agiil.BDD.dll'
- '**\Ploeh.AutoFixture.NUnit3.dll'```
Add expicit solution name; only need to build Agiil | ```yaml
version: '{branch}-{build}'
init:
- cmd: git config --global core.autocrlf true
project: Agiil.sln
before_build:
- cmd: >-
nuget restore Agiil.sln
git submodule update --init --recursive
# As of 2017-05-15 it appears AppVeyor use a 32-bit MSBuild.
# This means that we must compile for 32-bit, because otherwise
# the custom 'CompileScssFiles' target will fail on usage of the
# 64-bit flavour of libsass.dll
platform: x86
build:
verbosity: normal
test:
assemblies:
except:
- '**\Agiil.Tests.Common.dll'
- '**\Agiil.BDD.dll'
- '**\Ploeh.AutoFixture.NUnit3.dll'``` |
04c5ecfb-7b13-4042-8934-921e5dc2f2e4 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.1
before_install:
- npm install -g grunt-cli
install:
- npm install
script:
# Reference the locally-installed version of Grunt
- ./node_modules/grunt-cli/bin/grunt test
after_success:
# Check to see if the version file has been updated
- ./create-release-tag.sh
deploy:
provider: heroku
api_key:
secure: h/9/Rcd41XVU4VYYeBoKKvG6uShEoDksCGGZ/2dgeY1f3tYnhGzzgL6TIkvhafwDbKk2Y4o6d/MI05K+s7lorf2uTKpr1To2o52hQqmb4YREPWruZtBqoRo5X4nCeN2oEdW+yJRH3jZDNUmwkPzjytqxkcUUUeDPHfz3+xCtSZk=
app: govuk-prototype-kit
on: master
notifications:
email: false
sudo: false
```
Update node_js to 4.0 to fix issue with node-sass | ```yaml
language: node_js
node_js:
- 4.0
before_install:
- npm install -g grunt-cli
install:
- npm install
script:
# Reference the locally-installed version of Grunt
- ./node_modules/grunt-cli/bin/grunt test
after_success:
# Check to see if the version file has been updated
- ./create-release-tag.sh
deploy:
provider: heroku
api_key:
secure: h/9/Rcd41XVU4VYYeBoKKvG6uShEoDksCGGZ/2dgeY1f3tYnhGzzgL6TIkvhafwDbKk2Y4o6d/MI05K+s7lorf2uTKpr1To2o52hQqmb4YREPWruZtBqoRo5X4nCeN2oEdW+yJRH3jZDNUmwkPzjytqxkcUUUeDPHfz3+xCtSZk=
app: govuk-prototype-kit
on: master
notifications:
email: false
sudo: false
``` |
1c0f92aa-fb33-471e-a0f9-9b88bdf4eb1d | {
"language": "YAML"
} | ```yaml
sudo: required
language: node_js
node_js:
- "6"
- "5"
- "4"
- "0.12"
services:
- docker
env:
DOCKER_VERSION: 1.11.0-0~trusty
DOCKER_COMPOSE_VERSION: 1.7.1
DEBUG: "navy:*"
NAVY_DEBUG: "navy:*"
before_install:
# list docker-engine versions
- apt-cache madison docker-engine
# upgrade docker-engine to specific version
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
# reinstall docker-compose at specific version
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
# print versions
- docker --version
- docker-compose --version
before_script:
# bootstrap packages
- npm run bootstrap
```
Remove Node 6 from build matrix as pty.js doesn't support it | ```yaml
sudo: required
language: node_js
node_js:
- "5"
- "4"
- "0.12"
services:
- docker
env:
DOCKER_VERSION: 1.11.0-0~trusty
DOCKER_COMPOSE_VERSION: 1.7.1
DEBUG: "navy:*"
NAVY_DEBUG: "navy:*"
before_install:
# list docker-engine versions
- apt-cache madison docker-engine
# upgrade docker-engine to specific version
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
# reinstall docker-compose at specific version
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
# print versions
- docker --version
- docker-compose --version
before_script:
# bootstrap packages
- npm run bootstrap
``` |
620ad9e6-ff22-414f-b81e-220e041e28a9 | {
"language": "YAML"
} | ```yaml
clone_depth: 5
configuration:
- Release
- Debug
image: Visual Studio 2015
platform:
- x64
build_script:
- 'git submodule update --init --recursive'
- "C:\\Python36\\python.exe setup.py"
- ps: Invoke-WebRequest "https://github.com/chigraph/chigraph/releases/download/dependencies/llvm-4.0.0-$env{CONFIGURATION}-msvc14-win64.tar.xz" third_party/llvm-%CONFIGURATION%.tar.xz
- mkdir third_party/llvm-%CONFIGURATION%
- cd third_party/llvm-%CONFIGURATION%
- tar xf ../llvm-%CONFIGURATION%.tar.xz
- cd ../..
- mkdir build
- cd build
- cmake -G'Visual Studio 14 2015 Win64' -DCMAKE_BUILD_TYPE="%CONFIGURATION%" ..
- msbuild chigraph.sln
```
Remove call to setup.py, which isn't a thing for chigrpah | ```yaml
clone_depth: 5
configuration:
- Release
- Debug
image: Visual Studio 2015
platform:
- x64
build_script:
- 'git submodule update --init --recursive'
- ps: Invoke-WebRequest "https://github.com/chigraph/chigraph/releases/download/dependencies/llvm-4.0.0-$env{CONFIGURATION}-msvc14-win64.tar.xz" third_party/llvm-%CONFIGURATION%.tar.xz
- mkdir third_party/llvm-%CONFIGURATION%
- cd third_party/llvm-%CONFIGURATION%
- tar xf ../llvm-%CONFIGURATION%.tar.xz
- cd ../..
- mkdir build
- cd build
- cmake -G'Visual Studio 14 2015 Win64' -DCMAKE_BUILD_TYPE="%CONFIGURATION%" ..
- msbuild chigraph.sln
``` |
36729ac3-fdce-4a36-a917-2983b0fd2fa5 | {
"language": "YAML"
} | ```yaml
language: php
php:
- "5.4"
- "5.5"
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake migrations migrate
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls -v
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
matrix:
allow_failures:
- php: "hhvm"
- php: "nightly"
```
Remove older PHP versions from Travis | ```yaml
language: php
php:
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake migrations migrate
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls -v
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
matrix:
allow_failures:
- php: "hhvm"
- php: "nightly"
``` |
8133963a-3316-4b14-af19-3ae11f2869df | {
"language": "YAML"
} | ```yaml
language: php
php:
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "7.0"
- "hhvm"
matrix:
allow_failures:
- php: 7.0
sudo: false
script:
- if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi
```
Make sure dev deps. are installed before testing | ```yaml
language: php
php:
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "7.0"
- "hhvm"
matrix:
allow_failures:
- php: 7.0
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script:
- if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi
``` |
355cad4b-ed81-4c5b-a752-bd0e575c8fd1 | {
"language": "YAML"
} | ```yaml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- rvm use 2.6.6
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
```
Update the version of ruby used to build project in TravisCI. | ```yaml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
``` |
39480fda-fd2e-4f6e-a222-e3ad07cbf1af | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode8
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE="Aho-Corasick-Swift.xcworkspace"
- IOS_FRAMEWORK_SCHEME="Aho-Corasick-Swift"
- IOS_SDK=iphonesimulator10.0
matrix:
- DESTINATION="OS=10.0,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" POD_LINT="NO"
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
- xcodebuild -list
- xcodebuild -workspace "$WORKSPACE" -list
# Build and test Framework in Debug
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty
# Build Framework in ReleaseTest
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO build | xcpretty
# Run `pod lib lint` if specified
- if [ $POD_LINT == "YES" ]; then
pod lib lint;
fi
- ruby Tests/CheckCocoaPodsQualityIndexes.rb AhoCorasick
```
Disable CocoaPods Quality Indexes for now | ```yaml
language: objective-c
osx_image: xcode8
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE="Aho-Corasick-Swift.xcworkspace"
- IOS_FRAMEWORK_SCHEME="Aho-Corasick-Swift"
- IOS_SDK=iphonesimulator10.0
matrix:
- DESTINATION="OS=10.0,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" POD_LINT="NO"
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
- xcodebuild -list
- xcodebuild -workspace "$WORKSPACE" -list
# Build and test Framework in Debug
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty
# Build Framework in ReleaseTest
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO build | xcpretty
# Run `pod lib lint` if specified
- if [ $POD_LINT == "YES" ]; then
pod lib lint;
fi
# - ruby Tests/CheckCocoaPodsQualityIndexes.rb AhoCorasick
``` |
5f1815e0-3584-4f63-9d21-466cdf94e5b6 | {
"language": "YAML"
} | ```yaml
language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.2
- android-26
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script: ./gradlew testRelease jacocoTestReport assembleRelease
after_success:
- bash <(curl -s https://codecov.io/bash)
```
Add connectedCheck to include UI tests in code coverage | ```yaml
language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.2
- android-26
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script: ./gradlew testRelease jacocoTestReport connectedCheck assembleRelease
after_success:
- bash <(curl -s https://codecov.io/bash)
``` |
35991b6c-5dae-4c84-9882-590e7485d45e | {
"language": "YAML"
} | ```yaml
sudo: false
language: go
go:
- 1.11.1
install:
- go get github.com/gwenn/yacr
- go get -tags all github.com/gwenn/gosqlite
before_script:
- go get github.com/bmizerany/assert
script:
# - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite
- GODEBUG=cgocheck=0 go test -v -tags all github.com/gwenn/gosqlite
```
Upgrade Go version in Travis CI script | ```yaml
sudo: false
language: go
go:
- 1.11.5
install:
- go get github.com/gwenn/yacr
- go get -tags all github.com/gwenn/gosqlite
before_script:
- go get github.com/bmizerany/assert
script:
# - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite
- GODEBUG=cgocheck=0 go test -v -tags all github.com/gwenn/gosqlite
``` |
bcb1f110-9692-44b5-b0f4-933f3985d11e | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.8"
- "0.10"
before_script:
- npm install -g grunt-cli
```
Drop Node.js 0.8 from Travis run | ```yaml
language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
``` |
6bf8c24f-f874-4418-b6eb-3ce5f98fbc20 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
env:
- TEST_DIR=packages/dispatchr
- TEST_DIR=packages/fluxible
- TEST_DIR=packages/fluxible-plugin-fetchr
- TEST_DIR=packages/fluxible-reducer-store
- TEST_DIR=packages/fluxible-addons-react
- TEST_DIR=packages/fluxible-router
- TEST_DIR=packages/generator-fluxible
- TEST_DIR=site
script: cd $TEST_DIR && npm test
after_success:
- "npm run cover"
- "cat artifacts/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
```
Add root as test directory to test full integration | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
env:
- TEST_DIR=/
- TEST_DIR=packages/dispatchr
- TEST_DIR=packages/fluxible
- TEST_DIR=packages/fluxible-plugin-fetchr
- TEST_DIR=packages/fluxible-reducer-store
- TEST_DIR=packages/fluxible-addons-react
- TEST_DIR=packages/fluxible-router
- TEST_DIR=packages/generator-fluxible
- TEST_DIR=site
script: cd $TEST_DIR && npm test
after_success:
- "npm run cover"
- "cat artifacts/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
``` |
e710d836-72ee-4734-bbde-6327525633ae | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.0
- 7.1
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
```
Add slack notification on Travis builds | ```yaml
language: php
php:
- 7.0
- 7.1
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
notifications:
slack:
rooms:
secure: WWZmxESfUhOm/Sh3/XyL9Qd7iZ55Is0I1zhPivnAaN0G8j/nnLC4ihHj5lB8JzjVne0umsbJuJq8j2rTgEs8eLy78tlGQ3Vcxb7aNlAFg+Af790uoV5i2HscMBxBbjUPREK13AzgxuintKNpVG8S++YSe6qM1mIO938CtD+U8Nfbk0JtSV7j7S3aVQVaF4pprkmNOF5Sl2JZ19DoN0EK/r8iXOhwu+udw+CGavBx3gdgRO73mxuHdcGn/EP1kAwkhIIQeas7wYzuu5H29inzQKBsM2eS6vveaUuWSKEa6pXj6YkHmWnWov1+y/Q8XLis0JJT7759b7nKNC1mUFF0PeRGwzWvzYNZ1+WmSap2rB9gSj6l5Q+DAuNY/ULE3np8uWattayjz8KOgwL9XzDtMXjajaTFwkfjLsJmFtSj7dpCOcae8+CZ2pcy2sGxEdP8iKTrLeL+pMcbHNGF3Ez/z4HqoEqIZ856Bj9qu1lvmTZRTAieiBw9aAw5wCzZzLzc+eu41bilQM8GWDHRYNyPZEBqtfNpXhg55FfRY8hIFbax9qTZOewF4cILsRJfdhPNNrnvj4B3sbJEhenSQnb+X0N6ii/iHVgfPFbPQH6EUublfM+cNy3AqEqAR8hccdaM+aFTPGlY8OiRM9Q53i2WIppxqhVA3741dUDXk+JDvFg=
``` |
491f613c-a367-422c-99cc-5b51868c8662 | {
"language": "YAML"
} | ```yaml
language: "node_js"
node_js:
- node
- 6
services:
- mongodb
```
Make Travis use MongoDB 3.2 | ```yaml
sudo: false
language: "node_js"
node_js:
- node
- 6
services:
- mongodb
addons:
apt:
sources:
- mongodb-upstart
- mongodb-3.2-precise
packages:
- mongodb-org-server
- mongodb-org-shell
``` |
1cff8363-39af-45e9-afb8-2801c570beeb | {
"language": "YAML"
} | ```yaml
language: php
env:
- SYMFONY_DEPS_VERSION=2.1
- SYMFONY_DEPS_VERSION=2.2
before_script:
# symfony/*
- sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.2' ]; then sed -i 's/>=2.1,<2.3-dev/2.2.*@dev/g' composer.json; composer update --dev --prefer-source; fi"
- composer install --dev --prefer-source
php:
- 5.3
- 5.4
- 5.5
```
Add symfony/property-access require for 2.2 | ```yaml
language: php
env:
- SYMFONY_DEPS_VERSION=2.1
- SYMFONY_DEPS_VERSION=2.2
before_script:
# symfony/*
- sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.2' ]; then sed -i 's/>=2.1,<2.3-dev/2.2.*@dev/g' composer.json; composer require --no-update 'symfony/property-access:2.2.*@dev'; composer update --dev --prefer-source; fi"
- composer install --dev --prefer-source
php:
- 5.3
- 5.4
- 5.5
``` |
879bbed3-92bf-48c6-a0cb-a5831f049c89 | {
"language": "YAML"
} | ```yaml
language: python
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev
install:
- pip install -r test/requirements.txt
before_script:
- wget https://github.com/GENI-NSF/geni-tools/archive/v2.10.tar.gz -O /tmp/geni-tools.tar.gz
- tar -xf /tmp/geni-tools.tar.gz -C /tmp
- export PYTHONPATH=$PYTHONPATH:/tmp/geni-tools-2.10/src
script:
- test/travis-build
- python -m unittest discover test
```
Add swig, pip M2Crypto requires it | ```yaml
language: python
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev
- sudo apt-get install -qq -y swig # For pip M2Crypto
install:
- pip install -r test/requirements.txt
before_script:
- wget https://github.com/GENI-NSF/geni-tools/archive/v2.10.tar.gz -O /tmp/geni-tools.tar.gz
- tar -xf /tmp/geni-tools.tar.gz -C /tmp
- export PYTHONPATH=$PYTHONPATH:/tmp/geni-tools-2.10/src
script:
- test/travis-build
- python -m unittest discover test
``` |
4cf146ac-2110-4394-88e5-6ba356276d49 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.4"
- "pypy3"
nstall:
- travis_retry pip install -r requirements.txt
- travis_retry pip install coveralls
script:
- coverage run --branch --source=mygpoauth ./manage.py test
after_script:
- coveralls
sudo: false
```
Set DATABASE_URL for Travis-CI tests | ```yaml
language: python
python:
- "3.4"
- "pypy3"
nstall:
- travis_retry pip install -r requirements.txt
- travis_retry pip install coveralls
script:
- coverage run --branch --source=mygpoauth ./manage.py test
after_script:
- coveralls
sudo: false
env:
- DATABASE_URL="postgres://postgres@localhost/mygpo_test"
``` |
917b6b75-a325-4740-b489-815ded0c96e8 | {
"language": "YAML"
} | ```yaml
language: python
python:
- '3.5'
- '3.6'
env:
- HASS=0.95.4
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
```
Update Home Assistant to 0.96.3 for config checks in Travis CI | ```yaml
language: python
python:
- '3.5'
- '3.6'
env:
- HASS=0.96.3
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
``` |
bbfb8e67-6466-4ba0-a49f-af6c15dcb5d2 | {
"language": "YAML"
} | ```yaml
language: python
dist: "xenial"
python:
- "3.5"
- "3.6"
- "3.7"
env:
- DJANGO=1.11
- DJANGO=2.0
- DJANGO=2.1
- DJANGO=2.2
- DJANGO=3.0
- DJANGO=3.1
before_install:
- pip install --upgrade pytest
install:
- pip install -q Django==$DJANGO
- pip install -e .
- pip install -e '.[test]'
- pip install codecov
- cp ci/testsettings.py testsettings.py
- python -c "import uuid; print('SECRET_KEY = \'%s\'' % uuid.uuid4())" >> testsettings.py
script:
- py.test --cov=pucas
after_success:
- codecov
```
Update testing matrix to drop py3.5 for django 3.x; add py3.8 | ```yaml
language: python
dist: "xenial"
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
env:
- DJANGO=1.11
- DJANGO=2.0
- DJANGO=2.1
- DJANGO=2.2
- DJANGO=3.0
- DJANGO=3.1
matrix:
exclude:
- python: "3.5"
env: DJANGO=3.0
- python: "3.5"
env: DJANGO=3.1
before_install:
- pip install --upgrade pytest
install:
- pip install -q Django==$DJANGO
- pip install -e .
- pip install -e '.[test]'
- pip install codecov
- cp ci/testsettings.py testsettings.py
- python -c "import uuid; print('SECRET_KEY = \'%s\'' % uuid.uuid4())" >> testsettings.py
script:
- py.test --cov=pucas
after_success:
- codecov
``` |
94b6c698-1ae0-4cfe-ab40-256e9640dae1 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.0
- 7.1
- 7.2
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
```
Add PHP 7.3 to Travis | ```yaml
language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
``` |
b8fe906e-09f9-41cb-8052-179830b162d9 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
# command to run tests
script: python setup.py develop && python setup.py ptr
```
Install TCL so we can run the test IRC server | ```yaml
language: python
python:
- 2.6
- 2.7
# command to run tests
script: sudo aptitude install -y tcl && python setup.py develop && python setup.py ptr
``` |
195c2da0-9975-4a32-afc6-15324cbef6ca | {
"language": "YAML"
} | ```yaml
language: csharp
mono: none
dotnet: 2.0.0
matrix:
include:
- os: linux
dist: trusty
- os: osx
before_install:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update & sudo apt-get install -y tor; else brew install tor; fi
- sudo killall tor
- tor RunAsDaemon 1 SOCKSPort 9050 ControlPort 9051 HashedControlPassword 16:0978DBAF70EEB5C46063F3F6FD8CBC7A86DF70D2206916C1E2AE29EAF6
- sleep 3
script:
- cd src/DotNetTor.Tests
- dotnet test
```
Fix apt-get running in background | ```yaml
language: csharp
mono: none
dotnet: 2.0.0
matrix:
include:
- os: linux
dist: trusty
- os: osx
before_install:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update && sudo apt-get install -y tor; else brew install tor; fi
- sudo killall tor
- tor RunAsDaemon 1 SOCKSPort 9050 ControlPort 9051 HashedControlPassword 16:0978DBAF70EEB5C46063F3F6FD8CBC7A86DF70D2206916C1E2AE29EAF6
- sleep 3
script:
- cd src/DotNetTor.Tests
- dotnet test
``` |
612ece0b-7a92-4340-bd4b-582e25831de4 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.0
before_script:
- composer install --prefer-dist
- composer require "satooshi/php-coveralls:^1.0"
script:
- mkdir -p build/logs
- bin/check-code-cov
- vendor/bin/phpunit -c phpunit.xml.dist --coverage-text --coverage-clover ./build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
branches:
only:
- develop
```
Add PHP 7.1 to supported versions | ```yaml
language: php
php:
- 7.0
- 7.1
before_script:
- composer install --prefer-dist
- composer require "satooshi/php-coveralls:^1.0"
script:
- mkdir -p build/logs
- bin/check-code-cov
- vendor/bin/phpunit -c phpunit.xml.dist --coverage-text --coverage-clover ./build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
branches:
only:
- develop
``` |
442da8ad-e59c-422d-a9e9-0dbb773203a0 | {
"language": "YAML"
} | ```yaml
name: LuckyBlockWars
main: Survingo\LuckyBlockWars\LuckyBlockWars
version: Alpha
author: Survingo
api: [1.13.1,2.0.0]
description: The MCPC mini-game Lucky Block Wars for your PocketMine server
commands:
lbw:
permission: lbw.command
aliases: ["luckyblockwars", "lucky-block-wars"]
description: "All commands for Lucky Block Wars"
usage: "/lbw [args]"
permissions:
lbw.game:
default: true
description: "In-game permissions"
children:
lbw.game.use:
default: true
description: "Allows using Lucky Blocks while the player is in-game"
lbw.game.create-signs:
default: op
description: "Allows creating signs to join a game"
lbw.command:
default: true
description: "Access key for commands"
children:
lbw.command.help:
default: true
description: "Allows using the help"
lbw.command.version:
default: true
description: "Allows using the version sub-command"
lbw.command.join:
default: true
description: "Allows joining a game"
```
Cut support for old API | ```yaml
name: LuckyBlockWars
main: Survingo\LuckyBlockWars\LuckyBlockWars
version: Alpha
author: Survingo
api: [2.0.0]
description: The MCPC mini-game Lucky Block Wars for your PocketMine server
commands:
lbw:
permission: lbw.command
aliases: ["luckyblockwars", "lucky-block-wars"]
description: "All commands for Lucky Block Wars"
usage: "/lbw [args]"
permissions:
lbw.game:
default: true
description: "In-game permissions"
children:
lbw.game.use:
default: true
description: "Allows using Lucky Blocks while the player is in-game"
lbw.game.create-signs:
default: op
description: "Allows creating signs to join a game"
lbw.command:
default: true
description: "Access key for commands"
children:
lbw.command.help:
default: true
description: "Allows using the help"
lbw.command.version:
default: true
description: "Allows using the version sub-command"
lbw.command.join:
default: true
description: "Allows joining a game"
``` |
b3ef86e6-ab71-41ae-8b33-5742bb1fbbea | {
"language": "YAML"
} | ```yaml
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2017-06-06 16:33:49 -0400 using RuboCop version 0.35.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 3
Metrics/AbcSize:
Max: 26
# Offense count: 37
# Configuration parameters: AllowURI, URISchemes.
Metrics/LineLength:
Max: 629
# Offense count: 5
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 25
# Offense count: 1
Style/AccessorMethodName:
Exclude:
- 'lib/mako/core.rb'
# Offense count: 22
# Configuration parameters: Exclude.
Style/Documentation:
Enabled: false
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AllowAsExpressionSeparator.
Style/Semicolon:
Exclude:
- 'lib/mako/article.rb'
```
Add additional exceptions to rubocop todo | ```yaml
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2017-07-11 13:25:18 -0400 using RuboCop version 0.49.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 4
Metrics/AbcSize:
Max: 28
# Offense count: 40
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 629
# Offense count: 8
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 25
# Offense count: 1
Style/AccessorMethodName:
Exclude:
- 'lib/mako/core.rb'
# Offense count: 25
Style/Documentation:
Enabled: false
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AllowAsExpressionSeparator.
Style/Semicolon:
Exclude:
- 'lib/mako/article.rb'
``` |
472a23a8-339f-4e33-8982-96b4c8e10745 | {
"language": "YAML"
} | ```yaml
---
label: artwork
hide_body: false
is_partial: false
fields:
- name: date
default: 2016-06-01 03:40:12 +0000
label: Date
type: datetime
hidden: false
- name: featuredimage
default: "/uploads/600-6.jpg"
label: Featuredimage
type: file
hidden: false
- name: title
default: hola victor
label: Title
type: text
hidden: false
- name: type
default: artwork
label: Type
type: text
hidden: false
pages:
- content/artwork/moneda.md
- content/artwork/subsuelo.md
- content/artwork/umbra.md
- content/artwork/canal.md
- content/artwork/sonambulo.md
- content/artwork/al-interior.md
- content/artwork/fuente.md
- content/artwork/strobe.md
- content/artwork/nemotecnia.md
- content/artwork/la-purga.md
- content/artwork/presencia.md
- content/artwork/tele.md
- content/artwork/stand-by.md
- content/artwork/opaco.md
- content/artwork/umbral.md
- content/artwork/prueba.md
- content/artwork/fe.md
```
Update from Forestry.io - Updated moneda.md | ```yaml
---
label: artwork
hide_body: false
is_partial: false
fields:
- name: date
default: 2016-06-01 03:40:12 +0000
label: Date
type: datetime
hidden: false
- name: featuredimage
default: "/uploads/600-6.jpg"
label: Featuredimage
type: file
hidden: false
- name: title
default: hola victor
label: Title
type: text
hidden: false
- name: type
default: artwork
label: Type
type: text
hidden: false
pages:
- content/artwork/subsuelo.md
- content/artwork/moneda.md
- content/artwork/umbra.md
- content/artwork/canal.md
- content/artwork/sonambulo.md
- content/artwork/al-interior.md
- content/artwork/fuente.md
- content/artwork/strobe.md
- content/artwork/nemotecnia.md
- content/artwork/la-purga.md
- content/artwork/presencia.md
- content/artwork/tele.md
- content/artwork/stand-by.md
- content/artwork/opaco.md
- content/artwork/umbral.md
- content/artwork/prueba.md
- content/artwork/fe.md
``` |
bcd39e09-64fa-43d0-b5f6-6f8b3ff93019 | {
"language": "YAML"
} | ```yaml
---
label: Gallery
hide_body: true
fields:
- type: field_group_list
name: Sp94 guide montage
label: Sp94 guide montage
fields:
- type: file
name: file
label: file
- type: text
name: description
label: description
```
Update from Forestry.io - Updated Forestry configuration | ```yaml
---
label: Gallery
hide_body: true
fields:
- type: field_group_list
name: Sp94 guide montage
label: Sp94 guide montage
fields:
- type: file
name: file
label: File
- type: text
name: description
label: Description
config:
required: true
``` |
209e01eb-e11a-4925-8c61-d3d2230cc378 | {
"language": "YAML"
} | ```yaml
Categories:
- Theming
License: GPL-3.0-only
AuthorName: Joscha
AuthorEmail: joscha.loos@rwth-aachen.de
SourceCode: https://github.com/jooooscha/Olauncher
IssueTracker: https://github.com/jooooscha/Olauncher/issues
AutoName: Olauncher Clutter Free
RepoType: git
Repo: https://github.com/jooooscha/Olauncher
Builds:
- versionName: fork1.4
versionCode: 4
commit: fork1.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: fork1.4
CurrentVersionCode: 4
```
Update Olauncher Clutter Free to fork1.5 (5) | ```yaml
Categories:
- Theming
License: GPL-3.0-only
AuthorName: Joscha
AuthorEmail: joscha.loos@rwth-aachen.de
SourceCode: https://github.com/jooooscha/Olauncher
IssueTracker: https://github.com/jooooscha/Olauncher/issues
AutoName: Olauncher Clutter Free
RepoType: git
Repo: https://github.com/jooooscha/Olauncher
Builds:
- versionName: fork1.4
versionCode: 4
commit: fork1.4
subdir: app
gradle:
- yes
- versionName: fork1.5
versionCode: 5
commit: d485e736e7f9d23f8ac599cd28c5da1c05c0f776
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: fork1.5
CurrentVersionCode: 5
``` |
ed13b321-e628-493c-abea-cc13854bd692 | {
"language": "YAML"
} | ```yaml
---
hide_body: false
is_partial: false
fields:
- name: title
label: Name
type: text
hidden: false
default: ''
- name: name_organization
label: Organization Name
type: text
hidden: false
default:
- name: link
label: Link
type: text
hidden: false
default:
- name: services
label: Services
type: list
hidden: false
default: []
config:
use_select: true
source:
type: datafiles
file: services-yaml
path: services
- type: textarea
name: description
label: Description
config:
wysiwyg: true
schema:
format: markdown
- name: location
label: Location
type: field_group
fields:
- name: city
label: City
type: text
hidden: false
default: ''
- name: country
label: Country
type: text
hidden: false
default: ''
hidden: false
default:
- name: tags
label: Tags
type: tag_list
hidden: false
default:
- type: list
name: related_tools
label: Related Tools
description: Tools that are a core competence or expertise
config:
use_select: true
source:
type: pages
section: tool
- type: list
name: related_showcase
label: Related Showcase Items
config:
use_select: true
source:
type: pages
section: showcase
```
Update from Forestry.io - Updated Forestry configuration | ```yaml
---
hide_body: true
is_partial: false
fields:
- name: title
label: Name
type: text
hidden: false
default: ''
- name: name_organization
label: Organization Name
type: text
hidden: false
default:
- name: link
label: Link
type: text
hidden: false
default:
- name: services
label: Services
type: list
hidden: false
default: []
config:
use_select: true
source:
type: datafiles
file: services-yaml
path: services
- type: textarea
name: description
label: Description
config:
wysiwyg: true
schema:
format: markdown
- name: location
label: Location
type: field_group
fields:
- name: city
label: City
type: text
hidden: false
default: ''
- name: country
label: Country
type: text
hidden: false
default: ''
hidden: false
default:
- name: tags
label: Tags
type: tag_list
hidden: false
default:
- type: list
name: related_tools
label: Related Tools
description: Tools that are a core competence or expertise
config:
use_select: true
source:
type: pages
section: tool
- type: list
name: related_showcase
label: Related Showcase Items
config:
use_select: true
source:
type: pages
section: showcase
``` |
ccc78b07-3c7b-4aeb-a265-dda31797ddcb | {
"language": "YAML"
} | ```yaml
# See https://github.com/laminas/laminas-continuous-integration-action
# Generates a job matrix based on current dependencies and supported version
# ranges, then runs all those jobs
name: "Continuous Integration"
on:
pull_request:
push:
jobs:
matrix:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@1.20.0
qa:
name: QA Checks
needs: [ matrix ]
runs-on: ${{ matrix.operatingSystem }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@1.30.0
env:
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }}
with:
job: ${{ matrix.job }}
```
Update laminas/laminas-ci-matrix-action action to v1.21.0 | ```yaml
# See https://github.com/laminas/laminas-continuous-integration-action
# Generates a job matrix based on current dependencies and supported version
# ranges, then runs all those jobs
name: "Continuous Integration"
on:
pull_request:
push:
jobs:
matrix:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@1.21.0
qa:
name: QA Checks
needs: [ matrix ]
runs-on: ${{ matrix.operatingSystem }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@1.30.0
env:
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }}
with:
job: ${{ matrix.job }}
``` |
3e488055-2cc5-4d9d-b063-0053f92ac9f0 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/adinapoli/ekg-prometheus-adapter#readme
changelog-type: ''
hash: 0520a0f69668a1fcec80c7658e4489004b2f325ad86cf06f770d1e8670ef4d78
test-bench-deps:
ekg-prometheus-adapter: -any
base: -any
maintainer: alfredo.dinapoli@gmail.com
synopsis: Easily expose your EKG metrics to Prometheus
changelog: ''
basic-deps:
microlens-th: <0.5.0.0
ekg-core: <0.2.0.0
base: ! '>=4.7 && <5'
unordered-containers: <0.3.0.0
text: <1.3.0.0
containers: <0.6.0.0
prometheus: <0.5.0
transformers: <0.6.0.0
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
author: Alfredo Di Napoli
latest: '0.1.0.3'
description-type: haddock
description: Please see README.md
license-name: MIT
```
Update from Hackage at 2018-11-29T11:41:12Z | ```yaml
homepage: https://github.com/adinapoli/ekg-prometheus-adapter#readme
changelog-type: ''
hash: cbf0120165198ee30c2d882b058e4ee2cc68f78ba0f85b1b8c546e0bb64096e9
test-bench-deps:
ekg-prometheus-adapter: -any
base: -any
maintainer: alfredo.dinapoli@gmail.com
synopsis: Easily expose your EKG metrics to Prometheus
changelog: ''
basic-deps:
microlens-th: <0.5.0.0
ekg-core: <0.2.0.0
base: ! '>=4.7 && <5'
unordered-containers: <0.3.0.0
text: <1.3.0.0
containers: <0.6.0.0
prometheus: ! '>=0.4.0 && <3.0.0'
transformers: <0.6.0.0
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
author: Alfredo Di Napoli
latest: '0.1.0.4'
description-type: haddock
description: Please see README.md
license-name: MIT
``` |
6fb0d791-3c20-4b7c-825f-d528797890ac | {
"language": "YAML"
} | ```yaml
- hosts: localhost
connection: local
gather_facts: yes
sudo: no
roles:
- hnakamur.osx-defaults
- hnakamur.homebrew-packages
- hnakamur.homebrew-cask-packages
- hnakamur.osx-login-shell
- hnakamur.oh-my-zsh
- hnakamur.homebrew-path
- hnakamur.osx-go
- hnakamur.osx-vim
- hnakamur.osx-tmux
- hnakamur.osx-direnv
- hnakamur.osx-ruby
- hnakamur.osx-node-js
```
Use homebrew rbenv instead of homebrew ruby | ```yaml
- hosts: localhost
connection: local
gather_facts: yes
sudo: no
roles:
- hnakamur.osx-defaults
- hnakamur.homebrew-packages
- hnakamur.homebrew-cask-packages
- hnakamur.osx-login-shell
- hnakamur.oh-my-zsh
- hnakamur.homebrew-path
- hnakamur.osx-go
- hnakamur.osx-vim
- hnakamur.osx-tmux
- hnakamur.osx-direnv
- hnakamur.osx-rbenv
- hnakamur.osx-node-js
``` |
ff8c3b55-8ac2-469a-a733-f1668c9072b8 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/tonyday567/online#readme
changelog-type: ''
hash: f7dfa9796de226965a6ee137af4c6ffbd0181b919368f9869075361570825abc
test-bench-deps:
base: ! '>=4.7 && <5'
doctest: -any
protolude: -any
tasty: -any
maintainer: tonyday567@gmail.com
synopsis: online statistics
changelog: ''
basic-deps:
tdigest: -any
base: ! '>=4.7 && <5'
numhask-prelude: -any
protolude: -any
foldl: -any
vector-algorithms: -any
vector: -any
all-versions:
- 0.2.0
- 0.2.1.0
- 0.2.2.0
- 0.2.3.0
- 0.3.0.0
author: Tony Day
latest: 0.3.0.0
description-type: haddock
description: transformation of statistics to online algorithms
license-name: BSD-3-Clause
```
Update from Hackage at 2019-11-12T11:47:32Z | ```yaml
homepage: https://github.com/tonyday567/online#readme
changelog-type: ''
hash: bffa0f36cffb3b4cc360ffb9c07efdd6d8ce89557c14c2a55687b922f9c9806b
test-bench-deps:
base: ! '>=4.7 && <5'
doctest: -any
tasty: -any
maintainer: tonyday567@gmail.com
synopsis: online statistics
changelog: ''
basic-deps:
tdigest: -any
base: ! '>=4.7 && <5'
foldl: -any
vector-algorithms: -any
vector: -any
all-versions:
- 0.2.0
- 0.2.1.0
- 0.2.2.0
- 0.2.3.0
- 0.3.0.0
- 0.4.0.0
author: Tony Day
latest: 0.4.0.0
description-type: haddock
description: transformation of statistics to online algorithms
license-name: BSD-3-Clause
``` |
e7e56f33-646d-4e99-9937-a0a2dc5bd691 | {
"language": "YAML"
} | ```yaml
apiVersion: v2
name: traefik
version: 7.1.0
appVersion: 2.2.0
description: A Traefik based Kubernetes ingress controller
keywords:
- traefik
- ingress
home: https://traefik.io/
sources:
- https://github.com/containous/traefik
maintainers:
- name: emilevauge
email: emile@vauge.com
- name: dtomcej
email: daniel.tomcej@gmail.com
- name: ldez
email: ludovic@containo.us
engine: gotpl
icon: http://traefik.io/traefik.logo.png
```
Add support for helm 2 | ```yaml
apiVersion: v1
name: traefik
version: 7.2.0
appVersion: 2.2.0
description: A Traefik based Kubernetes ingress controller
keywords:
- traefik
- ingress
home: https://traefik.io/
sources:
- https://github.com/containous/traefik
maintainers:
- name: emilevauge
email: emile@vauge.com
- name: dtomcej
email: daniel.tomcej@gmail.com
- name: ldez
email: ludovic@containo.us
engine: gotpl
icon: http://traefik.io/traefik.logo.png
``` |
fd791e7e-b7f6-46ad-a0f0-c7cc17ad3020 | {
"language": "YAML"
} | ```yaml
---
engines:
duplication:
enabled: true
config:
languages:
- php
fixme:
enabled: true
phpmd:
enabled: true
phan:
enabled: true
config:
file_extensions: "php"
ignore-undeclared: true
ratings:
paths:
- "**.php"
exclude_paths:
- tests/
- vendor/
```
Disable static access rule for phpmd | ```yaml
---
engines:
duplication:
enabled: true
config:
languages:
- php
fixme:
enabled: true
phpmd:
enabled: true
checks:
CleanCode/StaticAccess:
enabled: false
phan:
enabled: true
config:
file_extensions: "php"
ignore-undeclared: true
ratings:
paths:
- "**.php"
exclude_paths:
- tests/
- vendor/
``` |
bdf41956-9c83-4b4f-a77d-7eae432ae39a | {
"language": "YAML"
} | ```yaml
version: "2"
plugins:
rubocop:
enabled: true
checks:
method-lines:
enabled: true
config:
threshold: 40
exclude_patterns:
- "test/"
```
Raise method complexity check threshold | ```yaml
version: "2"
plugins:
rubocop:
enabled: true
checks:
method-lines:
enabled: true
config:
threshold: 40
method-complexity:
config:
threshold: 40
exclude_patterns:
- "test/"
``` |
cdf33678-7396-4095-83b2-8cc9b23899d8 | {
"language": "YAML"
} | ```yaml
engines:
radon:
enabled: true
config:
threshold: 'B'
pep8:
enabled: true
ratings:
paths:
- "**.py"
exclude_paths:
- "tests/*"
- "setup.py"
```
Add Comment of Code Climate dashboard URL | ```yaml
# https://www.codacy.com/app/gaujin/tornado-crontab/dashboard
engines:
radon:
enabled: true
config:
threshold: 'B'
pep8:
enabled: true
ratings:
paths:
- "**.py"
exclude_paths:
- "tests/*"
- "setup.py"
``` |
b5e83f9d-2112-4893-b455-22dd24d43f4a | {
"language": "YAML"
} | ```yaml
---
engines:
scss-lint:
enabled: true
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
eslint:
enabled: true
fixme:
enabled: true
nodesecurity:
enabled: true
ratings:
paths:
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
exclude_paths:
- config/
- test/
- **.png
- **.svg
- **.otf```
Remove unanalyzed file extensions from CC exclude_paths | ```yaml
---
engines:
scss-lint:
enabled: true
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
eslint:
enabled: true
fixme:
enabled: true
nodesecurity:
enabled: true
ratings:
paths:
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
exclude_paths:
- config/
- test/
``` |
7ce4d1cc-3f66-4ac1-8c60-3ddfc50020cf | {
"language": "YAML"
} | ```yaml
build:
environment:
python: 3.7.7
dependencies:
override:
- "pip install -r requirements.txt -r requirements-test.txt"
nodes:
analysis:
tests:
override:
- js-scrutinizer-run
- py-scrutinizer-run
checks:
python:
duplicate_code: false
```
Enable code coverage on Scrutinizer CI | ```yaml
build:
environment:
python: 3.7.7
dependencies:
override:
- "pip install -r requirements.txt -r requirements-test.txt"
nodes:
analysis:
tests:
override:
- js-scrutinizer-run
- py-scrutinizer-run
coverage:
tests:
override:
- command:
coverage: 'pytest --cov=byceps tests'
file: '.coverage'
format: 'py-cc'
checks:
python:
duplicate_code: false
``` |
c0868da9-75ce-47d9-b0e4-8af280f70e00 | {
"language": "YAML"
} | ```yaml
driver:
name: dokken
privileged: true # because Docker and SystemD/Upstart
chef_image: chef/chef
chef_version: current
transport:
name: dokken
provisioner:
name: dokken
verifier:
name: inspec
platforms:
- name: centos-5
driver:
image: centos:5
- name: centos-6
driver:
image: centos:6
- name: centos-7
driver:
image: centos:7
suites:
- name: default
run_list:
- recipe[yum-epel::default]
```
Test in Travis with a pre-built in yum chef | ```yaml
driver:
name: dokken
privileged: true # because Docker and SystemD/Upstart
chef_image: chef/chef
chef_version: 12.12.15
transport:
name: dokken
provisioner:
name: dokken
verifier:
name: inspec
platforms:
- name: centos-5
driver:
image: centos:5
- name: centos-6
driver:
image: centos:6
- name: centos-7
driver:
image: centos:7
suites:
- name: default
run_list:
- recipe[yum-epel::default]
``` |
6fcc0b9d-b7e5-4419-bb6b-a8b66730ea09 | {
"language": "YAML"
} | ```yaml
registration:
main_module: modules.gen_sample_data.gen_sample_data
tests:
functional:
- modules.gen_sample_data.gen_sample_data_tests.GenerateSampleQuizTestCase = 1
- modules.gen_sample_data.gen_sample_data_tests.GenerateSampleStudentsTestCase = 1
- modules.gen_sample_data.gen_sample_data_tests.GenerateSampleScoresTestCase = 1
files:
- modules/gen_sample_data/__init__.py
- modules/gen_sample_data/gen_sample_data.py
- modules/gen_sample_data/gen_sample_data_tests.py
- modules/gen_sample_data/manifest.yaml
- modules/gen_sample_data/templates/sample_data.html
```
Disable generate random data module | ```yaml
registration:
main_module: modules.gen_sample_data.gen_sample_data
enabled: False
enabled_for_tests: True
tests:
functional:
- modules.gen_sample_data.gen_sample_data_tests.GenerateSampleQuizTestCase = 1
- modules.gen_sample_data.gen_sample_data_tests.GenerateSampleStudentsTestCase = 1
- modules.gen_sample_data.gen_sample_data_tests.GenerateSampleScoresTestCase = 1
files:
- modules/gen_sample_data/__init__.py
- modules/gen_sample_data/gen_sample_data.py
- modules/gen_sample_data/gen_sample_data_tests.py
- modules/gen_sample_data/manifest.yaml
- modules/gen_sample_data/templates/sample_data.html
``` |
9e890831-5537-4f1a-9d1c-3a8b49b4470b | {
"language": "YAML"
} | ```yaml
homepage: http://github.com/kowey/hakyll-convert
changelog-type: ''
hash: 332c47ce04f5ddfef0789c5c6266a68bcb48c87c936fbdf3016b972d18a5749f
test-bench-deps: {}
maintainer: Eric Kow <eric.kow@gmail.com>
synopsis: Convert from other blog engines to Hakyll.
changelog: ''
basic-deps:
bytestring: -any
feed: -any
base: <5
time: -any
text: -any
filepath: -any
xml: -any
binary: -any
old-locale: -any
cmdargs: -any
hakyll: -any
hakyll-convert: -any
directory: -any
all-versions:
- '0.1.0.0'
author: Eric Kow <eric.kow@gmail.com>
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: BSD3
```
Update from Hackage at 2016-07-31T17:48:21+0000 | ```yaml
homepage: http://github.com/Minoru/hakyll-convert
changelog-type: ''
hash: a358d09fab9a239efe019adc0f14989cba7f0c13610fe5cd7d37d1d2d6edbee4
test-bench-deps: {}
maintainer: Alexander Batischev <eual.jp@gmail.com>
synopsis: Convert from other blog engines to Hakyll.
changelog: ''
basic-deps:
bytestring: -any
feed: -any
base: <5
time: -any
text: -any
filepath: -any
data-default: -any
xml: -any
containers: -any
binary: -any
cmdargs: -any
hakyll: -any
hakyll-convert: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Eric Kow <eric.kow@gmail.com>, Alexander Batischev <eual.jp@gmail.com>
latest: '0.2.0.0'
description-type: haddock
description: ! 'WordPress and Blogger only let one export posts in
a limited number of formats, none of which are supported
by Hakyll. @hakyll-convert@ is created to bridge this gap,
providing a way to turn other platform''s datadumps into
a set of files Hakyll understands.'
license-name: BSD3
``` |
11a9d674-5820-40ec-997e-29e9a11ad59c | {
"language": "YAML"
} | ```yaml
releases:
- {name: collectd, version: COLLECTD_VERSION}
addons:
- name: collectd
jobs:
- name: collectd
release: collectd
properties:
collectd:
config: |
LoadPlugin df
LoadPlugin disk
LoadPlugin cpu
LoadPlugin load
LoadPlugin memory
LoadPlugin write_metric_mtlumberjack
<Plugin write_metric_mtlumberjack>
<Logstash>
Host "metrics.opvis.bluemix.net"
Port "9095"
GraphitePrefix "SPACE_ID.GROUP_NAME."
SpaceId "SPACE_ID"
LoggingToken "LOGGING_TOKEN"
</Logstash>
</Plugin>
LoadPlugin statsd
<Plugin statsd>
Host "127.0.0.1"
DeleteCounters true
DeleteTimers true
DeleteGauges true
DeleteSets true
TimerPercentile 99.0
TimerPercentile 95.0
TimerPercentile 90.0
TimerCount true
</Plugin>
```
Move mtlj plugin config into collectd-boshrelease | ```yaml
releases:
- {name: collectd, version: COLLECTD_VERSION}
addons:
- name: collectd
jobs:
- name: collectd
release: collectd
properties:
collectd:
space_id: SPACE_ID
logging_token: LOGGING_TOKEN
``` |
16903276-8493-4fd5-a515-939ed3fa3769 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: b1e5f260f8d13abb9d4c79a89830090b46940358fd3c4cf90bb8af55db4fd7e4
test-bench-deps: {}
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Painfully simple URL deployment.
changelog: ''
basic-deps:
exceptions: -any
split: -any
base: ! '>=4.8 && <5'
text: -any
strict: -any
monad-control: -any
path-extra: ! '>=0.0.5'
mtl: -any
mmorph: -any
transformers-base: -any
monad-logger: -any
transformers: -any
attoparsec-uri: -any
resourcet: -any
vector: -any
all-versions:
- '5.0.0.1'
- '6.0.0'
- '6.0.1'
author: Athan Clark <athan.clark@gmail.com>
latest: '6.0.1'
description-type: haddock
description: ''
license-name: MIT
```
Update from Hackage at 2017-09-03T06:11:21Z | ```yaml
homepage: ''
changelog-type: ''
hash: ec5ff3c19c6f306f18d4344db1e3579f950dc2651c10e91a73ca4138d113385e
test-bench-deps: {}
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Painfully simple URL deployment.
changelog: ''
basic-deps:
exceptions: -any
split: -any
base: ! '>=4.8 && <5'
text: -any
strict: -any
monad-control: -any
path-extra: ! '>=0.0.5'
monad-control-aligned: -any
mtl: -any
mmorph: -any
transformers-base: -any
monad-logger: -any
transformers: -any
attoparsec-uri: -any
resourcet: -any
vector: -any
all-versions:
- '5.0.0.1'
- '6.0.0'
- '6.0.1'
- '6.0.2'
author: Athan Clark <athan.clark@gmail.com>
latest: '6.0.2'
description-type: haddock
description: ''
license-name: MIT
``` |
97d879b1-8e49-45ea-8dd5-2c84236ed164 | {
"language": "YAML"
} | ```yaml
metricbeat.modules:
- module: system
metricsets:
- cpu
- diskio
- memory
- network
- filesystem
- fsstat
#- process
- process_summary
- uptime
filesystem.ignore_types: [nfs, smbfs, autofs, devtmpfs, devpts, hugetlbfs, tmpfs, sysfs, securityfs, cgroup2, cgroup, pstore, debugfs, configfs, fusectl, proc, fuse.lxcfs, squashfs]
processes: ['.*']
# process.include_top_n:
# by_cpu: 2
# by_memory: 2
processors:
- drop_event:
when:
or:
- regexp:
system.network.name: '^(veth|lo|docker|br-)($|)'
- regexp:
system.filesystem.mount_point: '^/(sys|cgroup|proc|dev|etc|host)($|/)'
- regexp:
system.filesystem.mount_point: '^/hostfs/(sys|cgroup|proc|dev|etc|host)($|/)'
enabled: true
period: ${OPENVIDU_PRO_STATS_MONITORING_INTERVAL}0s
cpu.metrics: [normalized_percentages]
fields:
ip: "${MEDIA_NODE_IP}"
cluster_id: "${CLUSTER_ID}"
node_id: ${NODE_ID}
node_role: medianode
pipeline:
queue.mem.events: 0
setup.ilm.enabled: false
```
Remove 10 factor of media nodes metricbeat | ```yaml
metricbeat.modules:
- module: system
metricsets:
- cpu
- diskio
- memory
- network
- filesystem
- fsstat
#- process
- process_summary
- uptime
filesystem.ignore_types: [nfs, smbfs, autofs, devtmpfs, devpts, hugetlbfs, tmpfs, sysfs, securityfs, cgroup2, cgroup, pstore, debugfs, configfs, fusectl, proc, fuse.lxcfs, squashfs]
processes: ['.*']
# process.include_top_n:
# by_cpu: 2
# by_memory: 2
processors:
- drop_event:
when:
or:
- regexp:
system.network.name: '^(veth|lo|docker|br-)($|)'
- regexp:
system.filesystem.mount_point: '^/(sys|cgroup|proc|dev|etc|host)($|/)'
- regexp:
system.filesystem.mount_point: '^/hostfs/(sys|cgroup|proc|dev|etc|host)($|/)'
enabled: true
period: ${OPENVIDU_PRO_STATS_MONITORING_INTERVAL}s
cpu.metrics: [normalized_percentages]
fields:
ip: "${MEDIA_NODE_IP}"
cluster_id: "${CLUSTER_ID}"
node_id: ${NODE_ID}
node_role: medianode
pipeline:
queue.mem.events: 0
setup.ilm.enabled: false
``` |
a9a78faf-cbbb-4fef-a538-daac14a72e6f | {
"language": "YAML"
} | ```yaml
platform: linux
params:
# Params are set as environment variables when the run part is executed.
# Here we use (()) notation to indicate that we're using a credhub secret.
GOOGLE_JSON_ACCOUNT: ((terraform-ci-acc-tests-json))
GCLOUD_PROJECT: ((ci-test-project))
# Both resources are checked out as subdirectories with the same name.
inputs:
- name: terraform-provider-google
- name: ci
image_resource:
type: docker-image
source:
repository: golang
tag: '1.9'
run:
path: ci/acceptance-tests/run.sh```
Set org and billing account from credhub | ```yaml
platform: linux
params:
# Params are set as environment variables when the run part is executed.
# Here we use (()) notation to indicate that we're using a credhub secret.
GOOGLE_JSON_ACCOUNT: ((terraform-ci-acc-tests-json))
GCLOUD_PROJECT: ((ci-test-project))
GOOGLE_ORG: ((ci-test-org))
GOOGLE_BILLING_ACCOUNT: ((ci-test-billing-account))
# Both resources are checked out as subdirectories with the same name.
inputs:
- name: terraform-provider-google
- name: ci
image_resource:
type: docker-image
source:
repository: golang
tag: '1.9'
run:
path: ci/acceptance-tests/run.sh``` |
d73ce734-0ba0-41aa-803c-c018da2ecb51 | {
"language": "YAML"
} | ```yaml
- name: AUFS tools for Docker
apt: pkg=aufs-tools state=installed
- name: AppArmor tools for Docker
apt: pkg=apparmor state=installed
- name: Does the Docker apt file exist?
command: test -f {{ docker_apt_file }}
register: docker_apt_exists
ignore_errors: true
- name: Add Docker key
shell: apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
when: docker_apt_exists.rc == 1
- name: Add Docker repo
copy: content="deb https://get.docker.io/ubuntu docker main" dest={{ docker_apt_file }} owner=root group=root mode=644
when: docker_apt_exists.rc == 1
- name: Update apt cache
apt: update_cache=yes
when: docker_apt_exists.rc == 1
- name: Install Docker
apt: pkg=lxc-docker state=installed
- name: Install VirtualBox
apt: pkg=virtualbox state=installed
- name: Ensure /etc/hosts.docker is writable by anyone in the Docker group
file: path=/etc/hosts.docker owner=root group=docker mode=0775
- name: Configure NetworkManager's dnsmasq for Docker Hostname Ping
copy: src=docker-dnsmasq.conf dest=/etc/NetworkManager/dnsmasq.d/docker
```
Use the correct VirtualBox package. | ```yaml
- name: AUFS tools for Docker
apt: pkg=aufs-tools state=installed
- name: AppArmor tools for Docker
apt: pkg=apparmor state=installed
- name: Does the Docker apt file exist?
command: test -f {{ docker_apt_file }}
register: docker_apt_exists
ignore_errors: true
- name: Add Docker key
shell: apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
when: docker_apt_exists.rc == 1
- name: Add Docker repo
copy: content="deb https://get.docker.io/ubuntu docker main" dest={{ docker_apt_file }} owner=root group=root mode=644
when: docker_apt_exists.rc == 1
- name: Update apt cache
apt: update_cache=yes
when: docker_apt_exists.rc == 1
- name: Install Docker
apt: pkg=lxc-docker state=installed
- name: Install VirtualBox
apt: pkg=virtualbox-qt state=installed
- name: Ensure /etc/hosts.docker is writable by anyone in the Docker group
file: path=/etc/hosts.docker owner=root group=docker mode=0775
- name: Configure NetworkManager's dnsmasq for Docker Hostname Ping
copy: src=docker-dnsmasq.conf dest=/etc/NetworkManager/dnsmasq.d/docker
``` |
bbc9bd39-99bd-4044-b005-e083ece40846 | {
"language": "YAML"
} | ```yaml
BlogBundle\Entity\Category:
type: entity
table: null
repositoryClass: BlogBundle\Repository\CategoryRepository
id:
id:
type: integer
id: true
generator:
strategy: AUTO
fields:
title:
type: string
length: 255
unique: true
image:
type: string
length: 255
content:
type: text
lifecycleCallbacks: { }
```
Add field created_at to Category entity | ```yaml
BlogBundle\Entity\Category:
type: entity
table: null
repositoryClass: BlogBundle\Repository\CategoryRepository
id:
id:
type: integer
id: true
generator:
strategy: AUTO
fields:
title:
type: string
length: 255
unique: true
image:
type: string
length: 255
content:
type: text
createdAt:
type: datetime
column: created_at
lifecycleCallbacks: { }
``` |
5b6454ff-9797-4e7e-a7b9-68931db75e8e | {
"language": "YAML"
} | ```yaml
jobs:
- name: acceptance_tests
instances: 1
lifecycle: errand
networks:
- name: cf_private
resource_pool: small_z1
templates:
- name: acceptance-tests
release: cf
properties:
acceptance_tests:
admin_password: <%= ENV.fetch('CF_PASSWORD', 'admin') %>
admin_user: <%= ENV.fetch('CF_USER', 'admin') %>
api: api.<%= ENV.fetch('CF_DOMAIN', 'system.domain') %>
apps_domain: <%= ENV.fetch('CF_DOMAIN', 'system.domain') %>
nodes: 5
skip_ssl_validation: true
use_http: true
```
Exclude CAT suite 'detect' to make pipeline green | ```yaml
jobs:
- name: acceptance_tests
instances: 1
lifecycle: errand
networks:
- name: cf_private
resource_pool: small_z1
templates:
- name: acceptance-tests
release: cf
properties:
acceptance_tests:
admin_password: <%= ENV.fetch('CF_PASSWORD', 'admin') %>
admin_user: <%= ENV.fetch('CF_USER', 'admin') %>
api: api.<%= ENV.fetch('CF_DOMAIN', 'system.domain') %>
apps_domain: <%= ENV.fetch('CF_DOMAIN', 'system.domain') %>
nodes: 5
skip_ssl_validation: true
use_http: true
include_detect: false
``` |
e1810a9d-795a-4537-a352-50a644549235 | {
"language": "YAML"
} | ```yaml
# Site settings
title: Your awesome title
email: your-email@domain.com
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://yourdomain.com" # the base hostname & protocol for your site
twitter_username: jekyllrb
github_username: jekyll
# Build settings
markdown: kramdown
```
Update config with basic info | ```yaml
# Site settings
title: Greg Jordan-Detamore
email: greg@gregjd.com
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://www.gregjd.com" # the base hostname & protocol for your site
twitter_username: GJordanDetamore
github_username: gregjd
# Build settings
markdown: kramdown
``` |
60a80ba0-1345-41a7-bb15-28df49c0ac98 | {
"language": "YAML"
} | ```yaml
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "4.3.0"
baseurl: ""
url: "https://helmetjs.github.io" # the base hostname & protocol for your site
# Build settings
markdown: CommonMarkGhPages
```
Update Helmet version to 4.3.1 | ```yaml
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "4.3.1"
baseurl: ""
url: "https://helmetjs.github.io" # the base hostname & protocol for your site
# Build settings
markdown: CommonMarkGhPages
``` |
0a6e8944-92a7-4219-84bd-f9038f7d6552 | {
"language": "YAML"
} | ```yaml
# Site settings
title: Remembering Mandy Klyne
email: mandy.klyne.memorial@gmail.com
# baseurl: "" # Site hosted in top directory of specified host
baseurl: "/Mandy_Klyne_memorial" # the subpath of your site, e.g. /blog
#url: "http://yourdomain.com" # the base hostname & protocol for your site
# Sidebar settings
description: Amanda (Mandy) Klyne
description_2: 1955 - 2016
# Social icons
facebook: username
linkedin: username
github: username
deviantart: username
codepen: username
# footer: © Taken theme
footer: (footer)
# Build settings
markdown: kramdown
```
Set site top URL to empty path | ```yaml
# Site settings
title: Remembering Mandy Klyne
email: mandy.klyne.memorial@gmail.com
baseurl: "" # Site hosted in top directory of specified host
# baseurl: "/Mandy_Klyne_memorial" # the subpath of your site, e.g. /blog
#url: "http://yourdomain.com" # the base hostname & protocol for your site
# Sidebar settings
description: Amanda (Mandy) Klyne
description_2: 1955 - 2016
# Social icons
facebook: username
linkedin: username
github: username
deviantart: username
codepen: username
# footer: © Taken theme
footer: (footer)
# Build settings
markdown: kramdown
``` |
e66eba7f-c230-446f-ba40-2b260abac19b | {
"language": "YAML"
} | ```yaml
package:
name: byobu
version: "5.92"
source:
fn: byobu_5.92.orig.tar.gz
url: https://launchpad.net/byobu/trunk/5.92/+download/byobu_5.92.orig.tar.gz
md5: 8fe94f12c1d2960523dba3b061bce051
build:
number: 1
requirements:
build:
- ncurses
- libevent
- tmux
run:
- ncurses
- libevent
- tmux
test:
commands:
- byobu -c "echo 'hello world'"
about:
home: http://byobu.co/
license: GPLv3
summary: Byobu is a GPLv3 open source text-based window manager and terminal multiplexer.
```
Update byobu and add newt dependency | ```yaml
package:
name: byobu
version: "5.98"
source:
fn: byobu_5.98.orig.tar.gz
url: https://launchpad.net/byobu/trunk/5.98/+download/byobu_5.98.orig.tar.gz
md5: 2e09c9d2f9e3b6e2953bd581b027239c
build:
number: 1
requirements:
build:
- newt
- ncurses
- libevent
- tmux
run:
- newt
- ncurses
- libevent
- tmux
test:
commands:
- byobu -c "echo 'hello world'"
about:
home: http://byobu.co/
license: GPLv3
summary: Byobu is a GPLv3 open source text-based window manager and terminal multiplexer.
``` |
a57ae937-354e-46df-aa1f-5661c4a2b964 | {
"language": "YAML"
} | ```yaml
{% set name = "pyfab" %}
{% set version = "0.3.5" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyfab-{{ version }}.tar.gz
sha256: fff612517cc3f24c23c0314bc115d7ba092c26b9a4823984b01d081926070960
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >= 2.7
run:
- fslpy
- nibabel
- numpy
- python
- six
test:
imports:
- fabber
- fabber.test
commands:
- pip check
requires:
- pip
about:
home: https://fabber_core.readthedocs.io/
summary: Python interface to the Fabber toolkit for Bayesian model fitting
license: Apache-2.0
license_file: LICENSE
extra:
recipe-maintainers:
- mcraig-ibme
```
Add python version to run dependencies and format correctly | ```yaml
{% set name = "pyfab" %}
{% set version = "0.3.5" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyfab-{{ version }}.tar.gz
sha256: fff612517cc3f24c23c0314bc115d7ba092c26b9a4823984b01d081926070960
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=2.7
run:
- fslpy
- nibabel
- numpy
- python >=2.7
- six
test:
imports:
- fabber
- fabber.test
commands:
- pip check
requires:
- pip
about:
home: https://fabber_core.readthedocs.io/
summary: Python interface to the Fabber toolkit for Bayesian model fitting
license: Apache-2.0
license_file: LICENSE
extra:
recipe-maintainers:
- mcraig-ibme
``` |
188f91c2-5b26-433a-8118-8a598983c0e4 | {
"language": "YAML"
} | ```yaml
title: Dev.Opera
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
transliterated_header_ids: true
use_coderay: true
coderay:
coderay_line_numbers: nil
coderay_css: class
permalink: /:categories/:title/
include:
- '.htaccess'
exclude:
- 'node_modules'
- 'Gruntfile.js'
- 'package.json'
- 'README.md'
- '*.scss'
# limit_posts: 150```
Use Redcarpet for Markdown parsing | ```yaml
title: Dev.Opera
markdown: redcarpet
permalink: /:categories/:title/
include:
- '.htaccess'
exclude:
- 'node_modules'
- 'Gruntfile.js'
- 'package.json'
- 'README.md'
- '*.scss'
# limit_posts: 150
``` |
e45e5e78-a56e-471b-a317-1577f6cabe61 | {
"language": "YAML"
} | ```yaml
name: Your New Jekyll Site
markdown: redcarpet
pygments: true
```
Add permalink style and timezone | ```yaml
name: Your New Jekyll Site
timezone: America/Chicago
pygments: true
permalink: /:title/
markdown: redcarpet``` |
be3daa0f-b219-4dc7-ac22-5d1e4c4419ca | {
"language": "YAML"
} | ```yaml
# meta file for screen
---
galaxy_info:
author: Mischa ter Smitten
company: Oefenweb.nl B.V.
description: Set up (multiple) wordpress installations in Debian-like systems (using wp-cli)
license: MIT
min_ansible_version: 1.4
platforms:
- name: Ubuntu
versions:
- lucid
- precise
- trusty
- name: Debian
versions:
- squeeze
- wheezy
- jessie
categories:
- web
dependencies: []
```
Fix for Ansible galaxy (import) warning | ```yaml
# meta file for screen
---
galaxy_info:
author: Mischa ter Smitten
company: Oefenweb.nl B.V.
description: Set up (multiple) wordpress installations in Debian-like systems (using wp-cli)
license: MIT
min_ansible_version: 1.4
platforms:
- name: Ubuntu
versions:
- lucid
- precise
- trusty
- name: Debian
versions:
- squeeze
- wheezy
- jessie
galaxy_tags:
- web
dependencies: []
``` |
c8cda41b-e428-40b0-9841-9ec5242cf599 | {
"language": "YAML"
} | ```yaml
galaxy_info:
author: bartekrutkowski
description: Xen Orchestra Appliance for FreeBSD/Linux
company: "PixeWare LTD"
license: license (BSD)
min_ansible_version: 1.9
platforms:
- name: FreeBSD
versions:
- 10.0
- 10.1
- 10.2
- 9.3
galaxy_tags:
- freebsd
- xenserver
- xen
- gui
- xoa
- web
- virtualization
dependencies: []
```
Add RedHat/Centos 7 to supported platforms | ```yaml
galaxy_info:
author: bartekrutkowski
description: Xen Orchestra Appliance for FreeBSD/Linux
company: "PixeWare LTD"
license: license (BSD)
min_ansible_version: 1.9
platforms:
- name: FreeBSD
versions:
- 10.0
- 10.1
- 10.2
- 9.3
- name: EL
versions:
- 7
galaxy_tags:
- freebsd
- el7
- rhel
- centos
- xenserver
- xen
- gui
- xoa
- web
- virtualization
dependencies: []
``` |
f774442d-3541-48cc-92f3-4e63acec95a5 | {
"language": "YAML"
} | ```yaml
env:
# needed for cilium
K3S_EXEC: '--flannel-backend=none --disable-network-policy'
provision:
# needs root to mount
- mode: system
script: |
#!/bin/sh
set -e
# needed for cilium
mount bpffs -t bpf /sys/fs/bpf
mount --make-shared /sys/fs/bpf
mkdir -p /run/cilium/cgroupv2
mount -t cgroup2 none /run/cilium/cgroupv2
mount --make-shared /run/cilium/cgroupv2/
```
Rename env var required to disable Flannel | ```yaml
env:
# needed for cilium
INSTALL_K3S_EXEC: '--flannel-backend=none --disable-network-policy'
provision:
# needs root to mount
- mode: system
script: |
#!/bin/sh
set -e
# needed for cilium
mount bpffs -t bpf /sys/fs/bpf
mount --make-shared /sys/fs/bpf
mkdir -p /run/cilium/cgroupv2
mount -t cgroup2 none /run/cilium/cgroupv2
mount --make-shared /run/cilium/cgroupv2/
``` |
0324500d-5f00-4446-ae21-540ca83bf846 | {
"language": "YAML"
} | ```yaml
{% set name = "iolabs" %}
{% set version = "3.2" %}
{% set sha256 = "74c8dbc4cd4bfd5e01f8a2655455330cac81dd3de99a766630ecd0896b8be84b" %}
package:
name: iolabs
version: {{version}}
source:
fn: ioLabs-3.2.tar.gz
url: https://github.com/ioLab/python-ioLabs/archive/v{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install
skip: true # [py3k]
requirements:
build:
- python
- setuptools
run:
- python
test:
# Python imports
imports:
- hid
about:
home: https://github.com/ioLab/python-ioLabs
license: BSD-3
license_file: '{{ environ["RECIPE_DIR"] }}/LICENSE'
summary: 'ioLab response box library'
license_family: BSD
extra:
recipe-maintainers:
# GitHub IDs for maintainers of the recipe.
# Always check with the people listed below if they are OK becoming maintainers of the recipe. (There will be spam!)
- kastman
```
Add selector to avoid linux | ```yaml
{% set name = "iolabs" %}
{% set version = "3.2" %}
{% set sha256 = "74c8dbc4cd4bfd5e01f8a2655455330cac81dd3de99a766630ecd0896b8be84b" %}
package:
name: iolabs
version: {{version}}
source:
fn: ioLabs-3.2.tar.gz
url: https://github.com/ioLab/python-ioLabs/archive/v{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install
skip: true # [py3k and not linux]
requirements:
build:
- python
- setuptools
run:
- python
test:
# Python imports
imports:
- hid
about:
home: https://github.com/ioLab/python-ioLabs
license: BSD-3
license_file: '{{ environ["RECIPE_DIR"] }}/LICENSE'
summary: 'ioLab response box library'
license_family: BSD
extra:
recipe-maintainers:
# GitHub IDs for maintainers of the recipe.
# Always check with the people listed below if they are OK becoming maintainers of the recipe. (There will be spam!)
- kastman
``` |
0758dfc5-d832-46d3-9831-72007c68ec5a | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/osa1/hsyslog-tcp#readme
changelog-type: ''
hash: d86314d6956fa6c9ca4321930930311c472aabc654600991b69d25adc7bea5f7
test-bench-deps: {}
maintainer: omeragacan@gmail.com
synopsis: syslog over TCP
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
time: -any
hsyslog: -any
text: -any
network: -any
hsyslog-udp: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Ömer Sinan Ağacan
latest: '0.2.0.0'
description-type: markdown
description: ! '# hsyslog-tcp
'
license-name: BSD3
```
Update from Hackage at 2017-12-05T08:22:54Z | ```yaml
homepage: https://github.com/osa1/hsyslog-tcp#readme
changelog-type: ''
hash: 89cebd7de484df942645698022646d701facf9547d78ee284bfb87c9975e2d94
test-bench-deps: {}
maintainer: omeragacan@gmail.com
synopsis: syslog over TCP
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
time: -any
hsyslog: -any
text: -any
network: -any
hsyslog-udp: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.1.0'
author: Ömer Sinan Ağacan
latest: '0.2.1.0'
description-type: markdown
description: ! '# hsyslog-tcp
'
license-name: BSD3
``` |
9633b857-0fef-4420-8251-ee7317331dcb | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: markdown
hash: 34fcfda2c0e1784913bd51f4ce215f0b7ac33e37b02386132d9260982854fc22
test-bench-deps: {}
maintainer: kazu@iij.ad.jp
synopsis: Simple network runner library
changelog: |
# Revision history for network-run
## 0.0.0
* First version.
basic-deps:
bytestring: -any
base: ! '>=4 && <5'
network: ! '>=3.1.0'
all-versions:
- 0.0.0
- 0.0.1
- 0.1.0
- 0.2.0
- 0.2.1
- 0.2.2
author: Kazu Yamamoto
latest: 0.2.2
description-type: haddock
description: Simple functions to run network clients and servers.
license-name: BSD-3-Clause
```
Update from Hackage at 2020-05-14T01:08:48Z | ```yaml
homepage: ''
changelog-type: markdown
hash: e625dfb65dfefaae30309cc8e9761213cb246b38b2d8d17d20b44a5acdcc05df
test-bench-deps: {}
maintainer: kazu@iij.ad.jp
synopsis: Simple network runner library
changelog: |
# Revision history for network-run
## 0.0.0
* First version.
basic-deps:
bytestring: -any
base: '>=4 && <5'
network: '>=3.1.0'
all-versions:
- 0.0.0
- 0.0.1
- 0.1.0
- 0.2.0
- 0.2.1
- 0.2.2
- 0.2.3
author: Kazu Yamamoto
latest: 0.2.3
description-type: haddock
description: Simple functions to run network clients and servers.
license-name: BSD-3-Clause
``` |
3810c8b5-5c91-4b85-9dae-685bd97280ff | {
"language": "YAML"
} | ```yaml
test_duration: 240
stress_cmd: ["cassandra-harry -run-time 2 -run-time-unit HOURS"]
n_db_nodes: 6
n_loaders: 1
n_monitor_nodes: 1
instance_type_db: 'i3.large'
root_disk_size_loader: 80 # enlarge loader disk, cause of cassandra-harry operation.log that can't be disabled
# nemesis_class_name: 'SisyphusMonkey'
nemesis_seed: '001'
nemesis_interval: 2
ssh_transport: 'libssh2'
user_prefix: 'longevity-harry-2h'
space_node_threshold: 64424
use_mgmt: false
```
Revert "fix(HACK): remove nemeis from harry case" | ```yaml
test_duration: 240
stress_cmd: ["cassandra-harry -run-time 2 -run-time-unit HOURS"]
n_db_nodes: 6
n_loaders: 1
n_monitor_nodes: 1
instance_type_db: 'i3.large'
root_disk_size_loader: 80 # enlarge loader disk, cause of cassandra-harry operation.log that can't be disabled
nemesis_class_name: 'SisyphusMonkey'
nemesis_seed: '001'
nemesis_interval: 2
ssh_transport: 'libssh2'
user_prefix: 'longevity-harry-2h'
space_node_threshold: 64424
use_mgmt: false
``` |
405d8079-600b-4d73-8ddf-390cf19a2efa | {
"language": "YAML"
} | ```yaml
homepage: http://darcs.redspline.com/safe-access
changelog-type: ''
hash: 6869708d3102ededf80055fee28ec5e03555aa89f3986f184da722a7ceeb1566
test-bench-deps: {}
maintainer: tho.feron@gmail.com
synopsis: A simple environment to control access to data
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.10'
mtl: ! '>=2.2.1'
transformers: ! '>=0.3.0.0'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.1.1'
- '0.2.1.2'
- '0.3.0.0'
- '0.3.1.0'
author: Thomas Feron
latest: '0.3.1.0'
description-type: haddock
description: This is a small capability-based interface to check legitimacy of accesses
in different parts of the program depending on the context in which the data is
accessed. See the README.md in the repository for a longer explanation and an example.
license-name: BSD3
```
Update from Hackage at 2017-03-08T11:10:52Z | ```yaml
homepage: http://darcs.redspline.com/safe-access
changelog-type: ''
hash: 23cfe12c64aa2511b6030e63bbb165bcf3cdb5271454014438caf1aa2cd74c28
test-bench-deps: {}
maintainer: tho.feron@gmail.com
synopsis: A simple environment to control access to data
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.10'
mtl: ! '>=2.2.1'
transformers: ! '>=0.3.0.0'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.1.1'
- '0.2.1.2'
- '0.3.0.0'
- '0.3.1.0'
- '0.3.2.0'
author: Thomas Feron
latest: '0.3.2.0'
description-type: haddock
description: This is a small capability-based interface to check legitimacy of accesses
in different parts of the program depending on the context in which the data is
accessed. See the README.md in the repository for a longer explanation and an example.
license-name: BSD3
``` |
6459ac91-5eb9-432c-a4a5-fbbb3aedee78 | {
"language": "YAML"
} | ```yaml
---
machine:
node:
version: v6.2.2
test:
post:
- nyc report --reporter=text-lcov > coverage.lcov && bash <(curl -s https://codecov.io/bash)
```
Update node version for tests to reflect CLI version | ```yaml
---
machine:
node:
version: v7.10.0
test:
post:
- nyc report --reporter=text-lcov > coverage.lcov && bash <(curl -s https://codecov.io/bash)
``` |
1b0610ec-109c-44e2-aebb-6940846992c7 | {
"language": "YAML"
} | ```yaml
homepage: http://code.haskell.org/~bkomuves/
changelog-type: ''
hash: 2afaf86ee35e188f7179ade4d796afeac1b11ba0af2df988689d74a7d57f4de2
test-bench-deps: {}
maintainer: bkomuves (plus) hackage (at) gmail (dot) hu
synopsis: Homogeneous tuples
changelog: ''
basic-deps:
parsec2: -any
base: ! '>=3 && <5'
haskell-src-exts: -any
cpphs: ! '>=1.3'
all-versions:
- '0.1'
- '0.2'
- 0.2.0.1
- 0.2.0.2
- 0.2.0.3
- 0.3.0.0
author: Balazs Komuves
latest: 0.3.0.0
description-type: haddock
description: ! 'Homogeneous tuples (also known as vectors), with various instances,
most notably ''Functor'' and ''Applicative''.
The primary goal of the library is to help functor-oriented programming
(for low-dimensional linear algebra, there are more specific packages, eg. @vect@).
A small preprocessor for a tuple syntax is also included. We provide 4 different
implementations,
with a unified type class interface.'
license-name: BSD-3-Clause
```
Update from Hackage at 2019-11-24T21:26:52Z | ```yaml
homepage: http://code.haskell.org/~bkomuves/
changelog-type: ''
hash: 2afaf86ee35e188f7179ade4d796afeac1b11ba0af2df988689d74a7d57f4de2
test-bench-deps: {}
maintainer: bkomuves (plus) hackage (at) gmail (dot) hu
synopsis: Homogeneous tuples
changelog: ''
basic-deps:
parsec2: -any
base: ! '>=3 && <5'
haskell-src-exts: -any
cpphs: ! '>=1.3'
all-versions:
- '0.1'
- 0.2.0.3
- 0.3.0.0
author: Balazs Komuves
latest: 0.3.0.0
description-type: haddock
description: |-
Homogeneous tuples (also known as vectors), with various instances, most notably 'Functor' and 'Applicative'.
The primary goal of the library is to help functor-oriented programming
(for low-dimensional linear algebra, there are more specific packages, eg. @vect@).
A small preprocessor for a tuple syntax is also included. We provide 4 different implementations,
with a unified type class interface.
license-name: BSD-3-Clause
``` |
fd1e52bb-03c9-448e-86d6-891823758e32 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/atzedijkstra/logict-state
changelog-type: ''
hash: 4b5ae70cd6915d348fc41af3b6dddc58c7c52744e76e49cdfdc1efe61866558e
test-bench-deps: {}
maintainer: atzedijkstra@gmail.com
synopsis: Library for logic programming based on haskell package logict
changelog: ''
basic-deps:
logict: ! '>=0.6.0.2'
base: ! '>=4.8 && <5'
mtl: ! '>=2.1'
transformers: ! '>=0.4.2'
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.0.2
- 0.1.0.4
- 0.1.0.5
author: Atze Dijkstra
latest: 0.1.0.5
description-type: haddock
description: Logic programming built on top of part of logict library, in particular
for dealing with backtrackable state
license-name: BSD-3-Clause
```
Update from Hackage at 2022-09-16T20:28:00Z | ```yaml
homepage: https://github.com/atzedijkstra/logict-state
changelog-type: ''
hash: 83d991ad011e7cbd646172c734f9e7bef8f2f31cad5eacda730a8837d10554a1
test-bench-deps: {}
maintainer: atzedijkstra@gmail.com
synopsis: Library for logic programming based on haskell package logict
changelog: ''
basic-deps:
logict: '>=0.8.0.0'
base: '>=4.8 && <5'
mtl: '>=2.1'
transformers: '>=0.4.2'
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.0.2
- 0.1.0.4
- 0.1.0.5
- 0.1.1.0
author: Atze Dijkstra
latest: 0.1.1.0
description-type: haddock
description: Logic programming built on top of part of logict library, in particular
for dealing with backtrackable state
license-name: BSD-3-Clause
``` |
0b1d35eb-9249-4a19-8e13-7af8e8f5759b | {
"language": "YAML"
} | ```yaml
---
api_key:
description: "The API key for OpsGenie."
type: "string"
secret: true
required: true
api_host:
description: "The OpsGenie API host to use."
type: "string"
default: "https://api.opsgenie.com/"
```
Set required on api_host for ops_genie. | ```yaml
---
api_key:
description: "The API key for OpsGenie."
type: "string"
secret: true
required: true
api_host:
description: "The OpsGenie API host to use."
type: "string"
default: "https://api.opsgenie.com/"
required: true
``` |
92cd8a23-a362-4626-b783-a241729ce119 | {
"language": "YAML"
} | ```yaml
Categories:
- Internet
License: GPL-3.0-only
AuthorName: Thomas
AuthorWebSite: https://fedilab.app/
SourceCode: https://framagit.org/tom79/fedilab-tube
IssueTracker: https://framagit.org/tom79/fedilab-tube/issues
Translation: https://crowdin.com/project/tubelab
AutoName: TubeLab
RepoType: git
Repo: https://framagit.org/tom79/fedilab-tube
Builds:
- versionName: 1.1.1
versionCode: 11
commit: 1.1.1
subdir: app
gradle:
- fdroid_full
- versionName: 1.2.0
versionCode: 12
commit: 1.2.0
subdir: app
gradle:
- fdroid_full
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.2.0
CurrentVersionCode: 12
```
Update TubeLab to 1.3.0 (14) | ```yaml
Categories:
- Internet
License: GPL-3.0-only
AuthorName: Thomas
AuthorWebSite: https://fedilab.app/
SourceCode: https://framagit.org/tom79/fedilab-tube
IssueTracker: https://framagit.org/tom79/fedilab-tube/issues
Translation: https://crowdin.com/project/tubelab
AutoName: TubeLab
RepoType: git
Repo: https://framagit.org/tom79/fedilab-tube
Builds:
- versionName: 1.1.1
versionCode: 11
commit: 1.1.1
subdir: app
gradle:
- fdroid_full
- versionName: 1.2.0
versionCode: 12
commit: 1.2.0
subdir: app
gradle:
- fdroid_full
- versionName: 1.3.0
versionCode: 14
commit: 1.3.0
subdir: app
gradle:
- fdroid_full
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.3.0
CurrentVersionCode: 14
``` |
ad69cfd2-1deb-46ee-8287-1fda467a69c6 | {
"language": "YAML"
} | ```yaml
version: '2'
services:
api:
build:
context: .
dockerfile: ./Dockerfile.dev
restart: always
env_file: .env
links:
- postgres
- redis
ports:
- $PORT:$PORT
- '127.0.0.1:9229:9229' # V8 inspector
volumes:
- yarn:/root/.cache/yarn
- ./:/usr/src/app
working_dir: /usr/src/app
command: node scripts/run.js
postgres:
image: postgres:9.6.1-alpine
restart: always
ports:
- 32776:5432
tmpfs:
- /run/postgresql
- /tmp
volumes:
- postgres:/var/lib/postgresql/data
- ./scripts/postgres-init.sh:/docker-entrypoint-initdb.d/init.sh
environment:
- POSTGRES_PASSWORD=passw0rd
- POSTGRES_USER=admin
- POSTGRES_DB=vanidb
- PGDATA=/var/lib/postgresql/data
redis:
image: redis:3.2.6-alpine
restart: always
read_only: true
volumes:
- redis:/data
volumes:
yarn:
postgres:
redis:
```
Remove restart always from containers | ```yaml
version: '2'
services:
api:
build:
context: .
dockerfile: ./Dockerfile.dev
env_file: .env
links:
- postgres
- redis
ports:
- $PORT:$PORT
- '127.0.0.1:9229:9229' # V8 inspector
volumes:
- yarn:/root/.cache/yarn
- ./:/usr/src/app
working_dir: /usr/src/app
command: node scripts/run.js
postgres:
image: postgres:9.6.1-alpine
ports:
- 32776:5432
tmpfs:
- /run/postgresql
- /tmp
volumes:
- postgres:/var/lib/postgresql/data
- ./scripts/postgres-init.sh:/docker-entrypoint-initdb.d/init.sh
environment:
- POSTGRES_PASSWORD=passw0rd
- POSTGRES_USER=admin
- POSTGRES_DB=vanidb
- PGDATA=/var/lib/postgresql/data
redis:
image: redis:3.2.6-alpine
read_only: true
volumes:
- redis:/data
volumes:
yarn:
postgres:
redis:
``` |
811f8f17-b796-4839-a091-675539740342 | {
"language": "YAML"
} | ```yaml
name: Ben Kantor
avatar: bdk3079@rit.edu
blog: http://benkantor.github.io/hfoss-blog
feed: http://benkantor.github.io/hfoss-blog/feed
email: bdk3079@rit.edu
major: Software Engineering
irc: benkantor
rit_dce: bdk3079
forges:
- https://github.com/benkantor
- https://bitbucket.org/benkantor
bio: Automate everything. Ukuleles.
```
Add link to Ben Kantor's first flight hw | ```yaml
name: Ben Kantor
avatar: bdk3079@rit.edu
blog: http://benkantor.github.io/hfoss-blog
feed: http://benkantor.github.io/hfoss-blog/feed
email: bdk3079@rit.edu
major: Software Engineering
irc: benkantor
rit_dce: bdk3079
forges:
- https://github.com/benkantor
- https://bitbucket.org/benkantor
bio: Automate everything. Ukuleles.
hw:
firstflight: http://benkantor.github.io/hfoss-blog//blog/2016/01/29/first-flight.html
``` |
23f99f53-75e6-458d-9dad-f94b4faa2f4b | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/rcook/hgeos#readme
changelog-type: ''
hash: 93004326e239c264d2fc9b2ed7efef9d8329de1342688ae8680a0e5270429744
test-bench-deps:
MissingH: -any
base: ! '>=4.7 && <5'
hgeos: -any
maintainer: Richard Cook <rcook@rcook.org>
synopsis: Simple Haskell bindings to GEOS C API
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.2.0'
author: Richard Cook <rcook@rcook.org>
latest: '0.1.2.0'
description-type: haddock
description: ! 'Simple Haskell bindings to the <https://trac.osgeo.org/geos/ GEOS>
<http://geos.osgeo.org/doxygen/geos__c_8h_source.html C API> heavily inspired
by <https://github.com/django/django/tree/master/django/contrib/gis/geos Django
GEOS bindings>'
license-name: MIT
```
Update from Hackage at 2016-07-23T23:55:31+0000 | ```yaml
homepage: https://github.com/rcook/hgeos#readme
changelog-type: ''
hash: 77e899776670396075c165720d1c7217a0cb3278c8a75a9affe3858ba9bad42b
test-bench-deps:
MissingH: -any
base: ! '>=4.7 && <5'
hgeos: -any
maintainer: Richard Cook <rcook@rcook.org>
synopsis: Simple Haskell bindings to GEOS C API
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
author: Richard Cook <rcook@rcook.org>
latest: '0.1.3.0'
description-type: haddock
description: ! 'Simple Haskell bindings to the <https://trac.osgeo.org/geos/ GEOS>
<http://geos.osgeo.org/doxygen/geos__c_8h_source.html C API> heavily inspired
by <https://github.com/django/django/tree/master/django/contrib/gis/geos Django
GEOS bindings>'
license-name: MIT
``` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.