doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
010621ce-9030-43a4-b062-5d288da3960e | {
"language": "YAML"
} | ```yaml
branches:
only:
- master
- staging
- trying
sudo: false
language: python
cache:
directories:
- "$HOME/.cache/pip"
matrix:
include:
- env: TOXENV=py27
- env: TOXENV=pypy
install:
- pip install -U pip setuptools wheel
- pip install tox codecov
- |
if [ "${TOXENV}" == "pypy" ]; then
git clone --depth 1 https://github.com/yyuu/pyenv.git ~/.pyenv
PYENV_ROOT="$HOME/.pyenv"
PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
pyenv install pypy2.7-5.8.0
pyenv global pypy2.7-5.8.0
fi
script:
- tox
after_success:
- codecov
notifications:
email: false
slack:
secure: lqGRJQkQSBw9zX/AXqaPXVShw00TNncVvMAAj6q7jsLn17aCPmL5N0wmKWO6Oibdmu2EuehosCCN5JQ00tQ2zfi9sCGFtA5AC7Uxl2bi9rgBaW/HWSTc2q0ghi4v0MMCuxadOWOgjhRMKYNg37tIAuUYvJeB3kG8NFZgHKsxg0I=
```
Remove our own pyenv junk. | ```yaml
branches:
only:
- master
- staging
- trying
sudo: false
dist: trusty
language: python
cache:
directories:
- "$HOME/.cache/pip"
matrix:
include:
- env: TOXENV=py27
python: 2.7.13
- env: TOXENV=pypy
python: pypy2.7-5.8.0
install:
- pip install -U pip setuptools wheel
- pip install tox codecov
script:
- tox
after_success:
- codecov
notifications:
email: false
slack:
secure: lqGRJQkQSBw9zX/AXqaPXVShw00TNncVvMAAj6q7jsLn17aCPmL5N0wmKWO6Oibdmu2EuehosCCN5JQ00tQ2zfi9sCGFtA5AC7Uxl2bi9rgBaW/HWSTc2q0ghi4v0MMCuxadOWOgjhRMKYNg37tIAuUYvJeB3kG8NFZgHKsxg0I=
``` |
cc741d7c-faaa-4c63-b12d-e544f198999a | {
"language": "YAML"
} | ```yaml
sudo: false
language: ruby
cache: bundler
rvm:
- 2.2
- 2.1
- 2.0.0
- jruby
- rbx-2
gemfile:
- test/gemfiles/Gemfile.rails-4.0.x
- test/gemfiles/Gemfile.rails-4.1.x
- test/gemfiles/Gemfile.rails-4.2.x
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-2
fast_finish: true
script: "bundle exec rake submodules test"
```
Add ruby 2.3 to test matrix | ```yaml
sudo: false
language: ruby
cache: bundler
rvm:
- 2.3
- 2.2
- 2.1
- 2.0.0
- jruby
- rbx-2
gemfile:
- test/gemfiles/Gemfile.rails-4.0.x
- test/gemfiles/Gemfile.rails-4.1.x
- test/gemfiles/Gemfile.rails-4.2.x
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-2
fast_finish: true
script: "bundle exec rake submodules test"
``` |
5a75d73e-f9d9-4be4-bd51-491df4a20cbe | {
"language": "YAML"
} | ```yaml
# Use container-based infrastructure
sudo: false
language: ruby
# Travis bug, see https://github.com/bundler/bundler/pull/3559
before_install: gem update bundler
cache: bundler
rvm:
- ruby-head
- 2.3.3 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361
- 2.2
- 2.1
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby-head
- jruby-19mode
- jruby-18mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-18mode # until we figure out failure in `bundle exec`, which is not our problem
fast_finish: true
```
Test more Rubinius versions, but allow to fail | ```yaml
# Use container-based infrastructure
sudo: false
language: ruby
# Travis bug, see https://github.com/bundler/bundler/pull/3559
before_install: gem update bundler
cache: bundler
rvm:
- ruby-head
- 2.3.3 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361
- 2.2
- 2.1
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby-head
- jruby-19mode
- jruby-18mode
- rbx-2
- rbx
- rbx-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-18mode # until we figure out failure in `bundle exec`, which is not our problem
- rvm: rbx-2 # until Travis fixes Rubinius again
- rvm: rbx
- rvm: rbx-head
fast_finish: true
``` |
bd5e9722-ac9c-48f8-a406-8841b023bac7 | {
"language": "YAML"
} | ```yaml
dist: xenial
language: rust
cache: cargo
rust:
- stable
- nightly
script:
- cargo build --verbose
- cargo test --verbose
- cargo run -- --version
```
Enable Travis CI to run on Windows and macOS. | ```yaml
language: rust
cache: cargo
os:
- linux
- osx
- windows
dist: xenial
rust:
- stable
- nightly
script:
- cargo build --verbose
- cargo test --verbose
- cargo run -- --version
``` |
7fc04c82-7afc-47b0-b926-c3df0c4720d6 | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
env:
global:
- KITCHEN_LOCAL_YAML=.kitchen.docker.yml
install: echo "skip bundle install"
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- chef gem install test-kitchen
- chef gem install kitchen-docker
- chef gem install chefstyle
script: chef exec rake quick
notifications:
slack:
email: false
secure: S/tClOuaGnhxdCkyc3WT0kWy9fP4a9dI7Ha0Pk0sjC0Fy1+0V/AShxwfgzJdGlzvbsRlCXmkE8W4BEQmZ0HjiPZgrvOx9mxv1krbBaO+eZDiSJIv2NgkgbwcxfraD+V3s4Mo8q3/FtS27diBOOUip4xqETsAIx0X86ZjHcb21ew=
```
Add missing stove gem to fix the build | ```yaml
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
env:
global:
- KITCHEN_LOCAL_YAML=.kitchen.docker.yml
install: echo "skip bundle install"
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- chef gem install test-kitchen
- chef gem install kitchen-docker
- chef gem install chefstyle
- chef gem install stove
script: chef exec rake quick
notifications:
slack:
email: false
secure: S/tClOuaGnhxdCkyc3WT0kWy9fP4a9dI7Ha0Pk0sjC0Fy1+0V/AShxwfgzJdGlzvbsRlCXmkE8W4BEQmZ0HjiPZgrvOx9mxv1krbBaO+eZDiSJIv2NgkgbwcxfraD+V3s4Mo8q3/FtS27diBOOUip4xqETsAIx0X86ZjHcb21ew=
``` |
df1a144d-5e57-4962-967b-3dd77ae39986 | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=tinydns-ubuntu-1404
- INSTANCE=dbndns-ubuntu-1404
- INSTANCE=source-ubuntu-1404
- INSTANCE=tinydns-ubuntu-1604
- INSTANCE=dbndns-ubuntu-1604
- INSTANCE=source-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
matrix:
include:
- script:
- /opt/chefdk/bin/chef exec delivery local all
env: UNIT_AND_LINT=1
```
Simplify Travis config and fix ChefDK 2.0 failures | ```yaml
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=tinydns-ubuntu-1404
- INSTANCE=dbndns-ubuntu-1404
- INSTANCE=source-ubuntu-1404
- INSTANCE=tinydns-ubuntu-1604
- INSTANCE=dbndns-ubuntu-1604
- INSTANCE=source-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
``` |
32da3bc4-9df5-49e3-b180-e191aac4096e | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: cpp
before_install:
- sudo apt-get update -qq
# Install ZeroMQ
- sudo apt-get install -y libzmq3-dev libzmq3
# Install Boost
- sudo apt-get install -y libboost-all-dev
# Install yaml-cpp
- sudo apt-get install -y libyaml-cpp0.5 libyaml-cpp-dev
# Install libcURL
- sudo apt-get install -y libcurl4-gnutls-dev
# Install libarchive (to avoid compiling it)
- sudo apt-get install -y libarchive-dev
# Install libcap for isolate
- sudo apt-get install -y libcap-dev
# Install isolate
- git clone https://github.com/ioi/isolate.git
- cd isolate
- make isolate
- sudo make install
- cd ..
- rm -rf isolate
# Install coveralls uploader
- pip install --user cpp-coveralls
script:
- mkdir build
- cd build
- cmake ..
- make
- ctest -E tool_ --output-on-failure
after_success:
- ctest -R tool_ --output-on-failure || true
- cd ${TRAVIS_BUILD_DIR}
- coveralls -i src --gcov-options '\-lp'
```
Discard output of coveralls uploader | ```yaml
sudo: required
dist: trusty
language: cpp
before_install:
- sudo apt-get update -qq
# Install ZeroMQ
- sudo apt-get install -y libzmq3-dev libzmq3
# Install Boost
- sudo apt-get install -y libboost-all-dev
# Install yaml-cpp
- sudo apt-get install -y libyaml-cpp0.5 libyaml-cpp-dev
# Install libcURL
- sudo apt-get install -y libcurl4-gnutls-dev
# Install libarchive (to avoid compiling it)
- sudo apt-get install -y libarchive-dev
# Install libcap for isolate
- sudo apt-get install -y libcap-dev
# Install isolate
- git clone https://github.com/ioi/isolate.git
- cd isolate
- make isolate
- sudo make install
- cd ..
- rm -rf isolate
# Install coveralls uploader
- pip install --user cpp-coveralls
script:
- mkdir build
- cd build
- cmake ..
- make
- ctest -E tool_ --output-on-failure
after_success:
- ctest -R tool_ --output-on-failure || true
- cd ${TRAVIS_BUILD_DIR}
- coveralls -i src --gcov-options '\-lp' > /dev/null
``` |
15db03c6-5b22-423c-9b2c-42b0ec1d8a55 | {
"language": "YAML"
} | ```yaml
language: haxe
before_script:
- npm install
haxe:
- "3.2.0"
hxml:
- test/travis.hxml```
Disable sudo for faster container-based builds | ```yaml
language: haxe
sudo: false
before_script:
- npm install
haxe:
- "3.2.0"
hxml:
- test/travis.hxml``` |
772e4932-cd19-44e3-8727-d10d1d8a94ac | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-nightly
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
fast_finish: true
```
Remove hhvm-nightly from Travis CI configuration. | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
matrix:
allow_failures:
- php: hhvm
fast_finish: true
``` |
0d8fb105-8d08-40cd-b5fa-6281080decba | {
"language": "YAML"
} | ```yaml
sudo: false
language: go
go:
- 1.4
- 1.5
- 1.6
- tip
script: go test -v -cover -race
notifications:
email:
- u@gogs.io
```
Remove stupid 1.4 for CI | ```yaml
sudo: false
language: go
go:
- 1.5
- 1.6
- tip
script: go test -v -cover -race
notifications:
email:
- u@gogs.io
``` |
48bd1972-0391-45fb-bf4b-c4e9766807a0 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
```
Update Travis config to latest. Add v4.2, drop v4.0 . | ```yaml
sudo: false
language: node_js
node_js:
- "0.11"
- "0.12"
- "4.1"
- "4.2"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
``` |
69de6af6-f5a7-477a-8b5e-3612cdbb8017 | {
"language": "YAML"
} | ```yaml
dist: trusty
sudo: false
language: go
go:
- 1.8
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 Travis build to Go 1.9 | ```yaml
dist: trusty
sudo: false
language: go
go:
- 1.9
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
``` |
6e996f68-8837-4acf-9252-24897e6ec8c6 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
```
Test with latest Node.js 5 on Travis CI. | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
``` |
922dadfe-9b3a-4955-a827-8dd85d9b361b | {
"language": "YAML"
} | ```yaml
language: python
python: 2.7
branches:
only:
- src
env:
global:
secure: gZYVTY9bdudw6cJSj0IR5reYvkoAeOrOx5t+1H/t3ZHVhcVUhFwBpBkbc0iDFIdAFa43W76FymP5a0MAKrTaTcnEHRpKRVBdEDr7et5hWntGFaCKYN34qFuDsVVftBkPLhWkYufaOsX2f8NF04hC+E7NdzHKaDTXL4PjmayTydI=
install:
- pip install -r requirements.txt
before_script:
- git config --global user.name "Travis CI"
script:
- make publish github
```
Clone Pelican plugins and disable notifications | ```yaml
language: python
python: 2.7
notifications:
email: false
branches:
only:
- src
env:
global:
secure: gZYVTY9bdudw6cJSj0IR5reYvkoAeOrOx5t+1H/t3ZHVhcVUhFwBpBkbc0iDFIdAFa43W76FymP5a0MAKrTaTcnEHRpKRVBdEDr7et5hWntGFaCKYN34qFuDsVVftBkPLhWkYufaOsX2f8NF04hC+E7NdzHKaDTXL4PjmayTydI=
install:
- pip install -r requirements.txt
before_script:
- git config --global user.name "Travis CI"
- git clone https://github.com/getpelican/pelican-plugins plugins
script:
- make publish github
``` |
01f97be2-619e-46bc-a8cf-7fe65c1362be | {
"language": "YAML"
} | ```yaml
language: groovy
jdk:
- openjdk7
install:
- sudo apt-get install pandoc texlive-latex-base texlive-luatex
- ./gradlew -I gradle/travis-init.gradle ciPrepare
script: ./gradlew -I gradle/travis-init.gradle ciBuild
after_success:
- ./gradlew -I gradle/travis-init.gradle ciPostBuild
env:
global:
- DEPLOY_USER=travis
- secure: cUGqhBVQMOeKco9NdwlTXOLFUWGtlqNBtVATigGAKXYPqlYwb17DSdM28p7+nKZUFSOXDEAa4JrAXWOpBTC7qY06cDTt7Zoj0Fcd0DuK/pXyDnqh7QMRRvrtnEFq/utbws4Yhm9hTdUosN5bz49CK9v5ZVAtPAe8/rwp6Y1ksMM=
```
Install Rscript for integration tests | ```yaml
language: groovy
jdk:
- openjdk7
install:
- sudo apt-get install pandoc texlive-latex-base texlive-luatex r-base-core
- ./gradlew -I gradle/travis-init.gradle ciPrepare
script: ./gradlew -I gradle/travis-init.gradle ciBuild
after_success:
- ./gradlew -I gradle/travis-init.gradle ciPostBuild
env:
global:
- DEPLOY_USER=travis
- secure: cUGqhBVQMOeKco9NdwlTXOLFUWGtlqNBtVATigGAKXYPqlYwb17DSdM28p7+nKZUFSOXDEAa4JrAXWOpBTC7qY06cDTt7Zoj0Fcd0DuK/pXyDnqh7QMRRvrtnEFq/utbws4Yhm9hTdUosN5bz49CK9v5ZVAtPAe8/rwp6Y1ksMM=
``` |
e6389940-ddb1-42ce-aca3-5a41ff77472d | {
"language": "YAML"
} | ```yaml
language: python
- "3.2"
- "3.4"
- "3.5"
- "3.6"
addons:
apt:
packages:
- python3-scipy
- python3-nose
- python3-coverage
before_install:
- pip install codecov rednose nose coverage toolz nose-parameterized codeclimate-test-reporter
cache: pip
sudo: false
script: nosetests3
dist: trusty
after_success:
- codeclimate-test-reporter --token 71eb68ef3ba1f85d8e92407d03e43df51deb6f14a870ada23e8530a16d438eae
- codecov --token=e3a3e622-b5b4-40a0-b0be-f427bbb23449
```
Use nosetests instead of nosetests3 | ```yaml
language: python
- "3.2"
- "3.4"
- "3.5"
- "3.6"
addons:
apt:
packages:
- python3-scipy
- python3-nose
- python3-coverage
before_install:
- pip install codecov rednose nose coverage toolz nose-parameterized codeclimate-test-reporter
cache: pip
sudo: false
script: nosetests
dist: trusty
after_success:
- codeclimate-test-reporter --token 71eb68ef3ba1f85d8e92407d03e43df51deb6f14a870ada23e8530a16d438eae
- codecov --token=e3a3e622-b5b4-40a0-b0be-f427bbb23449
``` |
a29ae806-82d8-4012-8f8b-965ffa7b12e4 | {
"language": "YAML"
} | ```yaml
---
bundler_args: --without development
language: ruby
cache: bundler
rvm:
- 2.2.0
sudo: false
before_script:
- mysql -e 'create database elmo_test;'
- "for f in $(find -name '*.example'); do cp \"$f\" \"${f%.example}\"; done"
- "sed -ri 's/user: elmo/user: travis/; /password:/d' config/database.yml"
- bundle exec rake ts:index ts:start db:setup
script: bundle exec rake
env:
global:
# Set reCAPTCHA keys to dummy values
- RECAPTCHA_PUBLIC_KEY=6Lc6BAAAAAAAAChqRbQZcn_yyyyyyyyyyyyyyyyy
- RECAPTCHA_PRIVATE_KEY=6Lc6BAAAAAAAAKN3DRm6VA_xxxxxxxxxxxxxxxxx
```
Remove reCAPTCHA lines from local_config.rb | ```yaml
---
bundler_args: --without development
language: ruby
cache: bundler
rvm:
- 2.2.0
sudo: false
before_script:
- mysql -e 'create database elmo_test;'
- "for f in $(find -name '*.example'); do cp \"$f\" \"${f%.example}\"; done"
- "sed -ri 's/user: elmo/user: travis/; /password:/d' config/database.yml"
- "sed -ri '/config\.(public|private)_key = nil/d' config/initializers/local_config.rb"
- bundle exec rake ts:index ts:start db:setup
script: bundle exec rake
env:
global:
# Set reCAPTCHA keys to dummy values
- RECAPTCHA_PUBLIC_KEY=6Lc6BAAAAAAAAChqRbQZcn_yyyyyyyyyyyyyyyyy
- RECAPTCHA_PRIVATE_KEY=6Lc6BAAAAAAAAKN3DRm6VA_xxxxxxxxxxxxxxxxx
``` |
2b6d14b3-96bc-46b5-8387-6d4086734314 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- rbx-19mode
- ruby-head
script:
- RAILS_ENV=test bundle exec rake --trace db:migrate
- bundle exec rake db:test:prepare
- bundle exec rake test```
Add jruby-19mode to Travis rubies | ```yaml
language: ruby
rvm:
- 1.9.3
- rbx-19mode
- ruby-head
- jruby-19mode
script:
- RAILS_ENV=test bundle exec rake --trace db:migrate
- bundle exec rake db:test:prepare
- bundle exec rake test``` |
f872b4f2-a1e0-4728-ae9a-08cd54a3d14b | {
"language": "YAML"
} | ```yaml
language: node_js
before_script:
- "git submodule update --init --recursive"
notifications:
irc:
channels:
- "irc.freenode.org#patterns"
on_success: change
on_failure: always
template:
- "%{branch}/%{commit} %{author} %{message}"
- "Build details: %{build_url}"
```
Use node_js 0.8 and install grunt-cli" | ```yaml
language: node_js
node_js:
- 0.8
before_script:
- "git submodule update --init --recursive"
- "npm install grunt-cli"
notifications:
irc:
channels:
- "irc.freenode.org#patterns"
on_success: change
on_failure: always
template:
- "%{branch}/%{commit} %{author} %{message}"
- "Build details: %{build_url}"
``` |
d3bde0ea-355f-4f64-9b18-9ba2ce92f083 | {
"language": "YAML"
} | ```yaml
dist: xenial
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install -r requirements.txt
- pip install nose flexmock
script: nosetests
```
Add new Pythons to the CI config | ```yaml
dist: xenial
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10-dev"
install:
- pip install -r requirements.txt
- pip install nose flexmock
script: nosetests
``` |
ddcf2a29-217b-466f-862d-0557c5c23813 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 3.3
- 3.4
install:
- pip install -e .[tests]
- pip install pytest-cov flake8 coveralls
script:
- py.test -v --cov cliche --durations=20
- hooks/pre-commit
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.ozinger.org#cliche.io"
on_success: change
on_failure: always
```
Test on PostgreSQL as well | ```yaml
language: python
python:
- 3.3
- 3.4
addons:
postgresql: "9.3"
install:
- pip install -e .[tests]
- pip install pytest-cov flake8 coveralls
before_script:
- createdb -U postgres cliche_test
script:
- py.test -v --cov cliche --durations=20 --database-url='postgresql:///cliche_test?user=postgres'
- py.test -v --durations=20
- hooks/pre-commit
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.ozinger.org#cliche.io"
on_success: change
on_failure: always
``` |
9bb36dba-df74-4920-be23-c2037eef532d | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
addons:
apt:
packages:
- ttf-dejavu
install:
- pip install pytest flake8 -e .
- mkdir -p ~/.fonts
- wget http://www.w3.org/Style/CSS/Test/Fonts/Ahem/AHEM____.TTF -O ~/.fonts/Ahem.ttf
script:
- py.test -s
- flake8 weasyprint
sudo: false
```
Fix the link used to download Ahem | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
addons:
apt:
packages:
- ttf-dejavu
install:
- pip install pytest flake8 -e .
- mkdir -p ~/.fonts
- wget "https://github.com/Kozea/Ahem/blob/master/Ahem.ttf?raw=true" -O ~/.fonts/Ahem.ttf
script:
- py.test -s
- flake8 weasyprint
sudo: false
``` |
7d6b7a2a-77ed-4f5c-a7d8-8c93699ea10a | {
"language": "YAML"
} | ```yaml
language: ruby
dist: trusty
sudo: required
cache: bundler
services:
- postgresql
- mysql
bundler_args: --without yard guard benchmarks tools
before_script:
- psql -c 'create database rom_sql;' -U postgres
- mysql -u root -e 'create database rom_sql;'
- rvm get master
after_success:
- '[ -d coverage ] && bundle exec codeclimate-test-reporter'
script: "bundle exec rake ci"
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.8.0
env:
global:
- CODECLIMATE_REPO_TOKEN=03d7f66589572702b12426d2bc71c4de6281a96139e33b335b894264b1f8f0b0
- JRUBY_OPTS='--dev -J-Xmx1024M'
- COVERAGE='true'
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/39e1225f489f38b0bd09
on_success: change
on_failure: always
on_start: false
addons:
postgresql: 9.5
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
```
Use latest JRuby on Travis | ```yaml
language: ruby
dist: trusty
sudo: required
cache: bundler
services:
- postgresql
- mysql
bundler_args: --without yard guard benchmarks tools
before_script:
- psql -c 'create database rom_sql;' -U postgres
- mysql -u root -e 'create database rom_sql;'
- rvm get master
after_success:
- '[ -d coverage ] && bundle exec codeclimate-test-reporter'
script: "bundle exec rake ci"
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.12.0
env:
global:
- CODECLIMATE_REPO_TOKEN=03d7f66589572702b12426d2bc71c4de6281a96139e33b335b894264b1f8f0b0
- JRUBY_OPTS='--dev -J-Xmx1024M'
- COVERAGE='true'
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/39e1225f489f38b0bd09
on_success: change
on_failure: always
on_start: false
addons:
postgresql: 9.5
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
``` |
a4d40948-b228-4c4c-8222-50ce9a4ee52a | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- '0.12'
- '4'
- '5'
```
Add test and coverall configuration | ```yaml
language: node_js
node_js:
- '0.12'
- '4'
- '5'
script: "npm run test"
# Send coverage data to Coveralls
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
``` |
d5f9cd7d-660b-47bc-8a34-1cfbc4ebbb56 | {
"language": "YAML"
} | ```yaml
language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
```
Use JRuby 1.7.4 for CI. Update DOAP file for N-Triples. Change deprecated RSpec mock to double. | ```yaml
language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode-1.7.4
- rbx-19mode
``` |
8c0eef5f-b80c-46a4-8ee8-65012a4f455a | {
"language": "YAML"
} | ```yaml
sudo: false
addons:
apt:
sources:
- deadsnakes
- ubuntu-toolchain-r-test
packages:
- python3.5
- python3.5-dev
- python-pip
- python-virtualenv
- gcc-4.9
- g++-4.9
# Needed for ARM gcc
- lib32bz2-1.0
- lib32ncurses5
- lib32z1
language: cpp
matrix:
include:
- compiler: clang
env: BUILD_TYPE="tests"
- compiler: gcc
env: BUILD_TYPE="tests"
- compiler: clang
env: BUILD_TYPE="client-tests"
- compiler: gcc
env: BUILD_TYPE="build" PLATFORM="motor-board-v1"
- compiler: gcc
env: BUILD_TYPE="build" PLATFORM="rc-board-v1"
- compiler: gcc
env: BUILD_TYPE="build" PLATFORM="olimex-e407"
- compiler: gcc
env: BUILD_TYPE="build" PLATFORM="can-io-board"
before_install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
install:
- ci/install.sh
script:
- ci/build.sh
```
Add CI for Nucleo STM32F103 platform | ```yaml
sudo: false
addons:
apt:
sources:
- deadsnakes
- ubuntu-toolchain-r-test
packages:
- python3.5
- python3.5-dev
- python-pip
- python-virtualenv
- gcc-4.9
- g++-4.9
# Needed for ARM gcc
- lib32bz2-1.0
- lib32ncurses5
- lib32z1
language: cpp
matrix:
include:
- compiler: clang
env: BUILD_TYPE="tests"
- compiler: gcc
env: BUILD_TYPE="tests"
- compiler: clang
env: BUILD_TYPE="client-tests"
- compiler: gcc
env: BUILD_TYPE="build" PLATFORM="motor-board-v1"
- compiler: gcc
env: BUILD_TYPE="build" PLATFORM="rc-board-v1"
- compiler: gcc
env: BUILD_TYPE="build" PLATFORM="olimex-e407"
- compiler: gcc
env: BUILD_TYPE="build" PLATFORM="can-io-board"
- compiler: gcc
env: BUILD_TYPE="build" PLATFORM="nucleo-board-stm32f103rb"
before_install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
install:
- ci/install.sh
script:
- ci/build.sh
``` |
c26a233a-6313-4e66-af1a-234924eb32d3 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
install: "pip install Django==$DJANGO_VERSION --use-mirrors"
script: ./runtests.py
env:
- DJANGO_VERSION=1.4.5
- DJANGO_VERSION=1.5
```
Add Python 3 tests to Travis CI | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.3
install: "pip install Django==$DJANGO_VERSION --use-mirrors"
script: ./runtests.py
env:
- DJANGO_VERSION=1.4.5
- DJANGO_VERSION=1.5
matrix:
exclude:
- python: 3.3
env: DJANGO_VERSION=1.4.5
``` |
c54a0db5-43dd-48f4-a0fd-0580b56d85bd | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.12
env:
- GO111MODULE=on
script:
# Fail on first non 0 exit code
- set -e
# Check if Go source code is unformatted
- UNFMT_LIST=$(gofmt -l $(find . -iname '*.go' -type f))
- if [ "${UNFMT_LIST}" ]; then echo "${UNFMT_LIST}"; exit 1; fi
# Run tests
- make test
# Linter for Go source code
#- go get -u golang.org/x/lint/golint
#- golint -set_exit_status ./...
# Vet examines Go source code and reports suspicious constructs
- go vet ./...
# Can app be built?
- go build
```
Add CodeCov to Travis stack | ```yaml
language: go
go:
- 1.12
env:
- GO111MODULE=on
script:
# Fail on first non 0 exit code
- set -e
# Check if Go source code is unformatted
- UNFMT_LIST=$(gofmt -l $(find . -iname '*.go' -type f))
- if [ "${UNFMT_LIST}" ]; then echo "${UNFMT_LIST}"; exit 1; fi
# Run tests
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
# Linter for Go source code
#- go get -u golang.org/x/lint/golint
#- golint -set_exit_status ./...
# Vet examines Go source code and reports suspicious constructs
- go vet ./...
# Can app be built?
- go build
after_success:
- bash <(curl -s https://codecov.io/bash)
``` |
67676755-88f1-4cfa-bc1f-6159acbfc086 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
```
Test Node.js 4 instead of io.js | ```yaml
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
``` |
b20dd3ec-eaf0-4ce7-b8a9-3cc1f2952c78 | {
"language": "YAML"
} | ```yaml
---
- name: Ensure the PowerDNS configuration directory exists
file: name={{pdns_rec_config_dir | default('/etc/powerdns')}} state=directory owner="root" group="root"
- name: grab pdns_recursor version
shell: "pdns_recursor --version 2>&1 | awk '/PowerDNS Recursor/ { print $6 }'"
register: pdns_recursor_version_result
- set_fact: pdns_recursor_version="{{ pdns_recursor_version_result.stdout }}"
- name: Add configuration for the PowerDNS Recursor
template: src=recursor.conf.j2 dest={{pdns_rec_config_dir | default('/etc/powerdns')}}/recursor.conf
notify: Restart PowerDNS Recursor
```
Mark a task a never changing | ```yaml
---
- name: Ensure the PowerDNS configuration directory exists
file: name={{pdns_rec_config_dir | default('/etc/powerdns')}} state=directory owner="root" group="root"
- name: grab pdns_recursor version
shell: "pdns_recursor --version 2>&1 | awk '/PowerDNS Recursor/ { print $6 }'"
register: pdns_recursor_version_result
changed_when: false
- set_fact: pdns_recursor_version="{{ pdns_recursor_version_result.stdout }}"
- name: Add configuration for the PowerDNS Recursor
template: src=recursor.conf.j2 dest={{pdns_rec_config_dir | default('/etc/powerdns')}}/recursor.conf
notify: Restart PowerDNS Recursor
``` |
a7cb95da-fe09-4c19-a996-5bc6bda1b142 | {
"language": "YAML"
} | ```yaml
version: '2'
services:
init:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container
command: configure
env_file: .env-docker-compose
volumes:
- .:/opt/koding
backend:
image: koding/base
entrypoint: /opt/koding/scripts/bootstrap-container
command: build
env_file: .env-docker-compose
volumes:
- .:/opt/koding
ports:
- 8090:8090
links:
- mongo
- postgres
- rabbitmq
- redis
mongo:
image: koding/mongo
postgres:
image: koding/postgres
rabbitmq:
image: rabbitmq:3-management
redis:
image: redis
```
Set working directory for backend service container | ```yaml
version: '2'
services:
init:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container
command: configure
env_file: .env-docker-compose
volumes:
- .:/opt/koding
backend:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container
command: build
env_file: .env-docker-compose
volumes:
- .:/opt/koding
ports:
- 8090:8090
links:
- mongo
- postgres
- rabbitmq
- redis
mongo:
image: koding/mongo
postgres:
image: koding/postgres
rabbitmq:
image: rabbitmq:3-management
redis:
image: redis
``` |
bd90da58-bab2-44a7-8bfa-ed6b7c140718 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- composer install -n
script:
- phpunit --coverage-clover=coverage.clover
- wget https://scrutinizer-ci.com/ocular.phar
- if [[ "$(phpenv version-name)" != "7.0" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
```
Remove PHP 5.3 build from Travis config | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- composer install -n
script:
- phpunit --coverage-clover=coverage.clover
- wget https://scrutinizer-ci.com/ocular.phar
- if [[ "$(phpenv version-name)" != "7.0" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
``` |
d6e32e11-6a1e-490d-93e5-84bb9d01fab5 | {
"language": "YAML"
} | ```yaml
feeder:
build: .
volumes:
- .:/app
container_name: feeder-web
env_file:
- .env
links:
- db
ports:
- "3000:3000"
command: web
worker:
image: feederprxorg_feeder
volumes:
- .:/app
container_name: feeder-worker
env_file:
- .env
links:
- db
command: worker
db:
image: postgres
env_file:
- .env
ports:
- "5432:5432"
```
Use feeder for base image name, map 3k to 3k, but use a virtual host to enable dinghy http proxy | ```yaml
feeder:
build: .
volumes:
- .:/app
env_file:
- .env
links:
- db
ports:
- "3000:3000"
command: web
environment:
VIRTUAL_HOST: feeder.docker
worker:
image: feederprxorg_feeder
volumes:
- .:/app
env_file:
- .env
links:
- db
command: worker
db:
image: postgres
env_file:
- .env
ports:
- "5432:5432"
``` |
844fa431-e2f4-46df-9f6b-476be66f2500 | {
"language": "YAML"
} | ```yaml
db:
image: postgres
web:
build: .
command: bundle exec rails s -p 3000 -b '0.0.0.0'
ports:
- "3000:3000"
links:
- db
env_file: .env
```
Fix pidfile error when docker container is killed | ```yaml
db:
image: postgres
web:
build: .
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
ports:
- "3000:3000"
links:
- db
env_file: .env
``` |
4caf8a02-a63c-4911-aed9-1540c3068e0d | {
"language": "YAML"
} | ```yaml
version: '2'
services:
init:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container
command: configure
env_file: .env-docker-compose
volumes:
- .:/opt/koding
backend:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container
command: run backend
env_file: .env-docker-compose
volumes:
- .:/opt/koding
ports:
- 8090:8090
links:
- mongo
- postgres
- rabbitmq
- redis
mongo:
image: koding/mongo
postgres:
image: koding/postgres
rabbitmq:
image: rabbitmq:3-management
redis:
image: redis
```
Add client build service container | ```yaml
version: '2'
services:
init:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container
command: configure
env_file: .env-docker-compose
volumes:
- .:/opt/koding
backend:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container
command: run backend
env_file: .env-docker-compose
volumes:
- .:/opt/koding
ports:
- 8090:8090
links:
- mongo
- postgres
- rabbitmq
- redis
client:
image: koding/base
working_dir: /opt/koding
entrypoint: scripts/bootstrap-container is_ready
command: make -C client development
env_file: .env-docker-compose
volumes:
- .:/opt/koding
mongo:
image: koding/mongo
postgres:
image: koding/postgres
rabbitmq:
image: rabbitmq:3-management
redis:
image: redis
``` |
0715cc70-e93b-4df8-9dfe-41836607ba31 | {
"language": "YAML"
} | ```yaml
language: objective-c
script:
- xctool -project TestsAndSample/TestsAndSample.xcodeproj -scheme Tests64 test
- xctool -project TestsAndSample/TestsAndSample.xcodeproj -scheme Tests32 test
```
Use Swift 2.1 on Travis for tests. | ```yaml
language: objective-c
osx_image: xcode7.2
script:
- xctool -project TestsAndSample/TestsAndSample.xcodeproj -scheme Tests64 test
- xctool -project TestsAndSample/TestsAndSample.xcodeproj -scheme Tests32 test
``` |
15bb65ca-3dbf-4994-ae8a-f46e222b8156 | {
"language": "YAML"
} | ```yaml
version: '3'
networks:
keycloak-network:
volumes:
keycloak-postgres-data:
keycloak-nginx-ssl:
services:
postgres:
image: postgres:9.6-alpine
container_name: postgres
networks:
- keycloak-network
volumes:
- keycloak-postgres-data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=keycloak
- POSTGRES_USER=keycloak
- POSTGRES_PASSWORD=password
keycloak:
image: jboss/keycloak-postgres
container_name: keycloak
links:
- postgres
networks:
- keycloak-network
depends_on:
- postgres
environment:
- POSTGRES_DATABASE=keycloak
- POSTGRES_USER=keycloak
- POSTGRES_PASSWORD=password
- PROXY_ADDRESS_FORWARDING=true
- KEYCLOAK_USER=admin
- KEYCLOAK_PASSWORD=admin
- POSTGRES_JDBC_VERSION=42.1.4
# JBoss is using legacy linking environment variables
- POSTGRES_PORT_5432_TCP_ADDR=postgres
- POSTGRES_PORT_5432_TCP_PORT=5432
nginx:
image: ernsheong/keycloak-nginx
container_name: nginx
networks:
- keycloak-network
depends_on:
- keycloak
volumes:
- keycloak-nginx-ssl:/etc/nginx/ssl
environment:
- KEYCLOAK_HOST=keycloak
- KEYCLOAK_PORT=8080
ports:
- "443:443"```
Switch to keycloak-postgres with curl fix | ```yaml
version: '3'
networks:
keycloak-network:
volumes:
keycloak-postgres-data:
keycloak-nginx-ssl:
services:
postgres:
image: postgres:9.6-alpine
container_name: postgres
networks:
- keycloak-network
volumes:
- keycloak-postgres-data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=keycloak
- POSTGRES_USER=keycloak
- POSTGRES_PASSWORD=password
keycloak:
image: ernsheong/keycloak-postgres
container_name: keycloak
links:
- postgres
networks:
- keycloak-network
depends_on:
- postgres
environment:
- POSTGRES_DATABASE=keycloak
- POSTGRES_USER=keycloak
- POSTGRES_PASSWORD=password
- PROXY_ADDRESS_FORWARDING=true
- KEYCLOAK_USER=admin
- KEYCLOAK_PASSWORD=admin
- POSTGRES_JDBC_VERSION=42.1.4
# JBoss is using legacy linking environment variables
- POSTGRES_PORT_5432_TCP_ADDR=postgres
- POSTGRES_PORT_5432_TCP_PORT=5432
nginx:
image: ernsheong/keycloak-nginx
container_name: nginx
networks:
- keycloak-network
depends_on:
- keycloak
volumes:
- keycloak-nginx-ssl:/etc/nginx/ssl
environment:
- KEYCLOAK_HOST=keycloak
- KEYCLOAK_PORT=8080
ports:
- "443:443"``` |
aaae8fbc-d760-4d52-81d6-ae2a31af6485 | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- jruby
- jruby-9.0.5.0
env:
- RAILS_VERSION="~>4.2.0"
- RAILS_VERSION="~>5.0.0"
matrix:
exclude:
- env: RAILS_VERSION="~>5.0.0"
rvm: 2.0
- env: RAILS_VERSION="~>5.0.0"
rvm: 2.1
before_install:
- gem install bundler --version 1.17.3
notifications:
email:
recipients:
- sbazyl@google.com
on_success: change
on_failure: change
```
Disable combinations that are failing due to bundler2-rails-rvm interaction | ```yaml
language: ruby
sudo: false
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- jruby
- jruby-9.0.5.0
env:
- RAILS_VERSION="~>4.2.0"
- RAILS_VERSION="~>5.0.0"
matrix:
exclude:
- env: RAILS_VERSION="~>4.2.0"
rvm: 2.3
- env: RAILS_VERSION="~>4.2.0"
rvm: jruby
before_install:
- gem install bundler --version 1.17.3
notifications:
email:
recipients:
- sbazyl@google.com
on_success: change
on_failure: change
``` |
06736847-3438-4925-aa90-5a632422fb0a | {
"language": "YAML"
} | ```yaml
language: ruby
env:
- TEST_SUITE=test:unit
- secure: "d/fE2Iuyrf5mfvQPe2nl++a06hpy82mEM5jbmXmS1ttQgMpf955GWTmZ+16VBZa9MU2pJLBXoBXy53tp8P9ADysE4R7YCeI68yE0CZ/OuU+FVADZ9/F6i4nlUESjNNQnlC0mTIjDMO5WI9HbVQiS07HqDHzr6bcS51ZvBzItcn4="
rvm:
- 1.9.3
- 2.1.0
- ruby-head
before_install:
- gem update --system
- gem update bundler
before_script:
- cp spec/data/.gooddata ~/
script: rake $TEST_SUITE
```
Use rake ci for testing | ```yaml
language: ruby
env:
- secure: "d/fE2Iuyrf5mfvQPe2nl++a06hpy82mEM5jbmXmS1ttQgMpf955GWTmZ+16VBZa9MU2pJLBXoBXy53tp8P9ADysE4R7YCeI68yE0CZ/OuU+FVADZ9/F6i4nlUESjNNQnlC0mTIjDMO5WI9HbVQiS07HqDHzr6bcS51ZvBzItcn4="
rvm:
- 1.9.3
- 2.1.0
- ruby-head
before_install:
- gem update --system
- gem update bundler
before_script:
- cp spec/data/.gooddata ~/
script: rake ci
``` |
ea62587c-fd90-47b7-8eff-4d5ada8ba156 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- node
cache:
yarn: true
directories:
- node_modules
before_install:
- yarn global add yarn
before_deploy:
- yarn global add now
deploy:
- provider: script
script:
- cd packages/api.literally.deals
- now --token $NOW_TOKEN
on:
all_branches: true
master: false
- provider: script
script:
- cd packages/literally.deals
- now --token $NOW_TOKEN
on:
all_branches: true
master: false
- provider: script
script:
- cd packages/api.literally.deals
- now --token $NOW_TOKEN
- now alias --token $NOW_TOKEN
on:
master: true
- provider: script
script:
- cd packages/literally.deals
- now --token $NOW_TOKEN
- now alias --token $NOW_TOKEN
on:
master: true
```
Adjust again for Yarn on Travis | ```yaml
language: node_js
node_js:
- node
cache:
yarn: true
directories:
- node_modules
before_install:
- yarn global add yarn
- export PATH="$HOME/.yarn/bin:$PATH"
before_deploy:
- yarn global add now
deploy:
- provider: script
script:
- cd packages/api.literally.deals
- now --token $NOW_TOKEN
on:
all_branches: true
master: false
- provider: script
script:
- cd packages/literally.deals
- now --token $NOW_TOKEN
on:
all_branches: true
master: false
- provider: script
script:
- cd packages/api.literally.deals
- now --token $NOW_TOKEN
- now alias --token $NOW_TOKEN
on:
master: true
- provider: script
script:
- cd packages/literally.deals
- now --token $NOW_TOKEN
- now alias --token $NOW_TOKEN
on:
master: true
``` |
8d051f5d-2487-445d-a8db-753813628071 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
cache: bundler
```
Reduce Travis CI email notifications. | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
cache: bundler
notifications:
email:
on_success: change
on_failure: always
``` |
9574f582-7da3-45bf-81e3-e3147b784ab6 | {
"language": "YAML"
} | ```yaml
language: haskell
sudo: required
services:
- docker
dist: trusty
cache:
directories:
- $HOME/.ghc
- $HOME/.cabal
- $HOME/.stack
before_script:
- pwd
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- ./scripts/bootstrap.sh
```
Disable redundant Haskell build actions | ```yaml
# Use dummy language to suppress Haskell-specific, automatic build steps
# (will be done inside dev container)
language: cpp
sudo: required
services:
- docker
dist: trusty
cache:
directories:
- $HOME/.ghc
- $HOME/.cabal
- $HOME/.stack
before_script:
- pwd
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- ./scripts/bootstrap.sh
``` |
9c77bf63-65fe-4ae5-b95d-5a466f109a43 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
before_install:
- travis_retry npm install -g npm@2.14.5
- travis_retry npm install
script:
- npm test
```
Remove npm install npm line | ```yaml
sudo: false
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
before_install:
- travis_retry npm install
script:
- npm test
``` |
292c988c-6d54-4746-9b95-300fa8fe3f1e | {
"language": "YAML"
} | ```yaml
language: c++
before_install:
- sudo apt-add-repository -y ppa:nelhage/livegrep
- sudo apt-get -qq update
- sudo apt-get -y install libgflags-dev libgit2-dev libjson0-dev libboost-system-dev libboost-filesystem-dev libsparsehash-dev
script: make test
```
Test against both g++ and clang++ | ```yaml
language: c++
before_install:
- sudo apt-add-repository -y ppa:nelhage/livegrep
- sudo apt-get -qq update
- sudo apt-get -y install libgflags-dev libgit2-dev libjson0-dev libboost-system-dev libboost-filesystem-dev libsparsehash-dev
script: make test
env:
- CXX=g++
- CXX=clang++
``` |
2452ede9-2b95-49a9-ae3a-7c3631b9e68f | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
python:
- "2.7"
before_script:
- flake8 remo
before_install:
- mysql -e 'create database remo character set utf8;'
- git submodule update --init --recursive
install:
- pip install -r requirements/dev.txt
script:
- python manage.py test --with-coverage --cover-erase --cover-package=remo
after_success:
- pip install coveralls
- coveralls
```
Fix MySQL has gone away error. | ```yaml
language: python
sudo: false
python:
- "2.7"
before_script:
- flake8 remo
before_install:
- mysql -e 'create database remo character set utf8; SET @@GLOBAL.wait_timeout=28800;'
- git submodule update --init --recursive
install:
- pip install -r requirements/dev.txt
script:
- python manage.py test --with-coverage --cover-erase --cover-package=remo
after_success:
- pip install coveralls
- coveralls
``` |
5d22b8c9-33de-4663-a37f-d7fb1e23f965 | {
"language": "YAML"
} | ```yaml
language: java
jdk: oraclejdk8
services: mongodb
before_script:
- sleep 15
- mongo centromere-test --eval 'db.addUser("centromere", "centromere");'
script:
- cd centromere-core
- mvn clean install -DskipTests
- mvn test
notifications:
email:
recipients:
- willoemler@gmail.com
on_success: change
on_failure: always
```
Split core into extra modules. Updating documentation. | ```yaml
language: java
jdk: oraclejdk8
services: mongodb
before_script:
- sleep 15
- mongo centromere-test --eval 'db.addUser("centromere", "centromere");'
script:
- cd centromere-parent
- mvn clean install -DskipTests
- mvn test
notifications:
email:
recipients:
- willoemler@gmail.com
on_success: change
on_failure: always
``` |
12cdb00b-1586-486a-b8e2-e7a244ee9200 | {
"language": "YAML"
} | ```yaml
language: python
dist: xenial
python:
- 2.7
- 3.6
- 3.7
- 3.8
matrix:
include:
- dist: trusty
python: 2.6
addons:
apt:
packages:
- scons
cache:
pip: true
directories:
- $HOME/perl5
install:
- sudo apt-get -qq update
- sudo apt-get install -y libtest-exception-perl libtest-output-perl libdevel-cover-perl acl cpanminus
- pip install codecov flask pytest-cov pytest-pep8
- sudo cpanm --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov
script:
- scons python=$(which python) test
- py.test --cov=account/account --cov-branch --pep8 account
after_success:
- coverage combine
- codecov
- cd test/frontend && cover -report codecov
```
Update to latest Ubuntu image | ```yaml
language: python
dist: bionic
python:
- 2.7
- 3.6
- 3.7
- 3.8
matrix:
include:
- dist: trusty
python: 2.6
addons:
apt:
packages:
- scons
cache:
pip: true
directories:
- $HOME/perl5
install:
- sudo apt-get -qq update
- sudo apt-get install -y libtest-exception-perl libtest-output-perl libdevel-cover-perl acl cpanminus
- pip install codecov flask pytest-cov pytest-pep8
- sudo cpanm --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov
script:
- scons python=$(which python) test
- py.test --cov=account/account --cov-branch --pep8 account
after_success:
- coverage combine
- codecov
- cd test/frontend && cover -report codecov
``` |
aef1b72c-8dee-4d4b-87e7-cfa8c208f739 | {
"language": "YAML"
} | ```yaml
language: c
sudo: false
addons:
apt:
sources:
- kalakris-cmake
packages:
- cmake
os:
- linux
# - osx
env:
global:
- LUAROCKS=2.3.0
matrix:
- LUA=lua5.1
- LUA=lua5.2
- LUA=lua5.3
- LUA=luajit # latest stable version (2.0.4)
# - LUA=luajit2.0 # current head of 2.0 branch
# - LUA=luajit2.1 # current head of 2.1 branch
before_install:
- source .travis/setenv_lua.sh
- luarocks install luv
- luarocks install luabitop
- luarocks install --server=http://luarocks.org/dev luaffi
- curl -L https://github.com/luvit/lit/raw/master/get-lit.sh | sh
- ./lit install luvit/pretty-print
script:
- lua test.lua
notifications:
email:
on_success: change
on_failure: always
```
Install pretty-print to the right place | ```yaml
language: c
sudo: false
addons:
apt:
sources:
- kalakris-cmake
packages:
- cmake
os:
- linux
# - osx
env:
global:
- LUAROCKS=2.3.0
matrix:
- LUA=lua5.1
- LUA=lua5.2
- LUA=lua5.3
- LUA=luajit # latest stable version (2.0.4)
# - LUA=luajit2.0 # current head of 2.0 branch
# - LUA=luajit2.1 # current head of 2.1 branch
before_install:
- source .travis/setenv_lua.sh
- luarocks install luv
- luarocks install luabitop
- luarocks install --server=http://luarocks.org/dev luaffi
- curl -L https://github.com/luvit/lit/raw/master/get-lit.sh | sh && mv lit $HOME/.local/bin/
script:
- ./lit install luvit/pretty-print
- lua test.lua
notifications:
email:
on_success: change
on_failure: always
``` |
42d2dfd1-bc78-44f4-b18a-71134ad34029 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '6'
- '7'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
```
Drop support for Node.js 0. | ```yaml
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '7'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
``` |
d2dbcfeb-8c63-4ff9-bac6-21133ffed50a | {
"language": "YAML"
} | ```yaml
language: php
php:
- "5.6"
- "5.5"
- "5.3"
script:
- find . -name '*.php' -print0 | xargs -0 -L 1 -P 8 php -l
notifications:
irc:
channels:
- "chat.freenode.net##krinkle"
```
Add test for php 5.4 | ```yaml
language: php
php:
- "5.6"
- "5.5"
- "5.4"
- "5.3"
script:
- find . -name '*.php' -print0 | xargs -0 -L 1 -P 8 php -l
notifications:
irc:
channels:
- "chat.freenode.net##krinkle"
``` |
8d39e47b-30e2-4c7b-a67c-87eec6bb13de | {
"language": "YAML"
} | ```yaml
language: csharp
solution: "./Extension Library/Extension Library.sln"
dotnet: 1.0.1
dist: trusty
sudo: required
install:
- nuget restore "./Extension Library/Extension Library.sln"
- nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release "./Extension Library/Extension Library.sln"
- mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "./Extension Library/ArrayExtensionTests/bin/Release/ArrayExtensionTests.dll"
- mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../EnumerableExtensionTests/bin/Release/EnumerableExtensionTests.dll"
- mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../../StringExtensionTests/bin/Release/StringExtensionTests.dll"
branches:
only:
- master```
Update build script for Travis CI | ```yaml
language: csharp
solution: "./Extension Library/Extension Library.sln"
#dotnet: 1.0.1
dist: trusty
sudo: required
install:
- nuget restore "./Extension Library/Extension Library.sln"
# - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
# script:
# - xbuild /p:Configuration=Release "./Extension Library/Extension Library.sln"
# - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "./Extension Library/ArrayExtensionTests/bin/Release/ArrayExtensionTests.dll"
# - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../EnumerableExtensionTests/bin/Release/EnumerableExtensionTests.dll"
# - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../../StringExtensionTests/bin/Release/StringExtensionTests.dll"
branches:
only:
- master``` |
29d93b7d-fd7b-4be1-b5e2-647312b7390a | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "7"
- "8"
- "9"
- "10"
- "11"
before_script:
- npm install -g gulp
script:
- gulp all test
```
Test in Node 12 as well | ```yaml
language: node_js
node_js:
- "7"
- "8"
- "9"
- "10"
- "11"
- "12"
before_script:
- npm install -g gulp
script:
- gulp all test
``` |
65bdc52d-2f9c-4f53-9d97-943d6eac1981 | {
"language": "YAML"
} | ```yaml
language: csharp
matrix:
include:
- os: linux
mono: latest
dotnet: 2.1.0
script: ./build.sh -t "Travis"
- os: osx
mono: latest
dotnet: 2.1.0
script: ./build.sh -t "Travis"```
Add a Travis Windows build | ```yaml
language: csharp
matrix:
include:
- os: linux
mono: latest
dotnet: 2.1.0
script: ./build.sh -t "Travis"
- os: osx
mono: latest
dotnet: 2.1.0
script: ./build.sh -t "Travis"
- os: windows
dotnet: 2.1.0
script: ./build.sh -t "Travis"``` |
a3d4f580-b3b4-4f73-af7d-39e3401c2dc0 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.12.0"
env:
- TEST_DIR=router-page-switcher
- TEST_DIR=timer
script: cd $TEST_DIR && npm install && npm test
```
Add gh-pages as a testing target on Travis | ```yaml
language: node_js
node_js:
- "0.12.0"
branches:
only:
- gh-pages
- /^.*$/
env:
- TEST_DIR=router-page-switcher
- TEST_DIR=timer
script: cd $TEST_DIR && npm install && npm test
``` |
29fd648a-9752-4c90-9ead-4960289488c1 | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
addons:
apt:
packages:
- gfortran
- gcc
notifications:
email: false
python:
- "2.7"
# command to install dependencies
install:
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# conditionally because it saves us some downloading if the version is
# the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda env create -f environment.yml
- source activate poets
# command to run tests
script:
- python setup.py test
```
Add tests for Python 3.4 and 3.5. | ```yaml
language: python
sudo: false
addons:
apt:
packages:
- gfortran
- gcc
notifications:
email: false
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
- "3.5"
# command to install dependencies
install:
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# conditionally because it saves us some downloading if the version is
# the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda env create -f environment.yml
- source activate poets
# command to run tests
script:
- python setup.py test
``` |
decdeb85-c13b-4ab6-a500-803ed1222612 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "4"
- "6"
- "node"
after_success:
- "nyc report --reporter=text-lcov | coveralls"
```
Enable caching for yarn and node_modules in Travis CI config | ```yaml
language: node_js
cache:
yarn: true
directories:
- node_modules
node_js:
- "4"
- "6"
- "node"
after_success:
- "nyc report --reporter=text-lcov | coveralls"
``` |
27d93b79-8537-49d1-a9f3-36f75e57a282 | {
"language": "YAML"
} | ```yaml
language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
script:
- ./build.sh --quiet verify```
Update Travis osx image to xcode7.3 | ```yaml
language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.3
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
script:
- ./build.sh --quiet verify``` |
9b6d8719-50f0-4305-91c3-c8bfdb3f713a | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.12"
- "0.10"
sudo: false
install:
- npm install $TYPESCRIPT
- npm install
env:
- TYPESCRIPT=typescript
- TYPESCRIPT=typescript@next```
Remove node v0.10 from test matrix | ```yaml
language: node_js
node_js:
- "0.12"
sudo: false
install:
- npm install $TYPESCRIPT
- npm install
env:
- TYPESCRIPT=typescript
- TYPESCRIPT=typescript@next``` |
26657ee2-2e62-4895-8ccb-71774fe9a061 | {
"language": "YAML"
} | ```yaml
before_install:
- sudo apt-get update --fix-missing
install:
- pip install numpy
- pip install genty
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
script:
- python -m unittest discover tests/
```
Install pydub and matplotlib Remove tests for python 3.2 and 3.3 | ```yaml
before_install:
- sudo apt-get update --fix-missing
install:
- pip install numpy
- pip install genty
- pip install pydub
- pip install matplotlib
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
script:
- python -m unittest discover tests/
``` |
e8e2c0cb-894a-4d47-b45d-9fb0695b1639 | {
"language": "YAML"
} | ```yaml
sudo: required
tags: true
services:
- docker
script:
- docker run --rm -v "$PWD":/go/src/github.com/ApsOps/gohaqd -w /go/src/github.com/ApsOps/gohaqd -e 'CGO_ENABLED=0' -e 'GOOS=linux' golang:1.7 /bin/bash -c "go build -a -v -ldflags '-w'"
after_success:
- export REPO=apsops/gohaqd
- export TAG=${TRAVIS_TAG:=latest}
- docker build -t $REPO:$TRAVIS_COMMIT .
- docker tag $REPO:$TRAVIS_COMMIT $REPO:$TAG
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push $REPO
```
Build only git tags and latest docker images | ```yaml
sudo: required
tags: true
services:
- docker
script:
- docker run --rm -v "$PWD":/go/src/github.com/ApsOps/gohaqd -w /go/src/github.com/ApsOps/gohaqd -e 'CGO_ENABLED=0' -e 'GOOS=linux' golang:1.7 /bin/bash -c "go build -a -v -ldflags '-w'"
after_success:
- export REPO=apsops/gohaqd
- export TAG=${TRAVIS_TAG:=latest}
- docker build -t $REPO:$TAG .
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push $REPO
``` |
f7659ded-3e6c-448e-ab6e-f65bded0f145 | {
"language": "YAML"
} | ```yaml
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- WP_VERSION=latest WP_MULTISITE=0
- WP_VERSION=latest WP_MULTISITE=1
- WP_VERSION=4.1.7 WP_MULTISITE=0
- WP_VERSION=4.1.7 WP_MULTISITE=1
- WP_VERSION=3.9.8 WP_MULTISITE=0
- WP_VERSION=3.9.8 WP_MULTISITE=1
- WP_VERSION=3.7.9 WP_MULTISITE=0
- WP_VERSION=3.7.9 WP_MULTISITE=1
matrix:
exclude:
- php: 5.5
env: WP_VERSION=3.7.9 WP_MULTISITE=1
- php: 5.5
env: WP_VERSION=3.7.9 WP_MULTISITE=0
before_script:
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
- composer install --dev --prefer-source
script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then mkdir -p build/logs; phpunit --coverage-clover build/logs/clover.xml; fi
- if [ "$TRAVIS_BRANCH" != "master" ]; then phpunit -c bin/phpunit-nocover.xml; fi
after_script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then php vendor/bin/coveralls -v; fi
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then coveralls; fi```
Update Travis to just test HHVM | ```yaml
sudo: false
language: php
php:
- 5.5
- hhvm
env:
- WP_VERSION=latest WP_MULTISITE=0
- WP_VERSION=latest WP_MULTISITE=1
before_script:
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
- composer install --dev --prefer-source
script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then mkdir -p build/logs; phpunit --coverage-clover build/logs/clover.xml; fi
- if [ "$TRAVIS_BRANCH" != "master" ]; then phpunit -c bin/phpunit-nocover.xml; fi
after_script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then php vendor/bin/coveralls -v; fi
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then coveralls; fi
``` |
71a5b22f-0979-4097-bc99-132d6d886ade | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.3"
# command to install dependencies
install:
- pip install flake8
- pip install pep257
# command to run tests
script:
- flake8 . --max-line-length=120
- pep257 . --ignore=D202
```
Update Travis config to use overcommit | ```yaml
language: python
python:
- "3.3"
install:
- pip install flake8
- pip install pep257
- gem install travis
- gem install overcommit
before_script:
- git config --global user.email "travis@travis.ci"
- git config --global user.name "Travis CI"
script:
- overcommit --run
``` |
bc1e67fe-8fe7-4b74-81a3-0ecfdf0855dd | {
"language": "YAML"
} | ```yaml
sudo: false
dist: bionic
language: python
# addons:
# apt:
# # sources:
# # - sourceline: "ppa:jonathonf/ffmpeg-4"
# packages:
# - python-dev
# - pkg-config
# - libudev-dev
# - libavformat-dev
# - libavcodec-dev
# - libavdevice-dev
# - libavutil-dev
# - libswscale-dev
# - libavresample-dev
# - libswresample-dev
# - libavfilter-dev
python:
- "3.7"
before_install:
- mv travis/travis_secrets.yaml secrets.yaml
- mv travis/travis.fake_ssl_crt travis.fake_ssl_crt
- mv travis/travis.fake_ssl_key travis.fake_ssl_key
install:
- pip3 install homeassistant
script:
- hass -c . --script check_config
```
Update required packages per documentation. | ```yaml
sudo: false
dist: bionic
language: python
addons:
apt:
packages:
- python-dev
- pkg-config
- libavformat-dev
- libavcodec-dev
- libavdevice-dev
- libavutil-dev
- libswscale-dev
- libavresample-dev
- libavfilter-dev
python:
- "3.7"
before_install:
- mv travis/travis_secrets.yaml secrets.yaml
- mv travis/travis.fake_ssl_crt travis.fake_ssl_crt
- mv travis/travis.fake_ssl_key travis.fake_ssl_key
install:
- pip3 install homeassistant
script:
- hass -c . --script check_config
``` |
fae6ff95-33d3-4158-8fbd-846cbd2db886 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- iojs-v1.2.0
```
Test on latest nodejs and iojs | ```yaml
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- "node"
- "iojs-v1.2.0"
- "iojs"
``` |
4bb2a81f-8acc-4559-8fef-7476b8a82272 | {
"language": "YAML"
} | ```yaml
language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO_VERSION="Django<1.9"
- DJANGO_VERSION="Django<1.10"
- DJANGO_VERSION="Django<1.11"
install:
- pip install -q $DJANGO_VERSION
- pip install flake8
script:
- flake8 --ignore=E501,W391 rpc4django
- ./runtravis.py
```
Add updated Django and Python versions for TravisCI | ```yaml
language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO_VERSION="Django<1.9"
- DJANGO_VERSION="Django<1.10"
- DJANGO_VERSION="Django<1.11"
- DJANGO_VERSION="Django<1.12"
install:
- pip install -q $DJANGO_VERSION
- pip install flake8
script:
- flake8 --ignore=E501,W391 rpc4django
- ./runtravis.py
``` |
25b3ffbc-cdce-4561-9d0d-feb628a73bc7 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-19mode
branches:
only:
- master
script: 'rake spec && bundle exec guard-jasmine'
notifications:
recipients:
- michi@netzpiraten.ch
```
Use Bundler for running rspec. | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-19mode
branches:
only:
- master
script: 'bundle exec rake spec && bundle exec guard-jasmine'
notifications:
recipients:
- michi@netzpiraten.ch
``` |
b4dfedf2-85c3-40f8-9315-31116748659e | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo echo "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-4.0 main" > /etc/apt/sources.list.d/llvm4.list
- wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
- sudo apt-get -qq update
- sudo apt-get remove -y llvm
- sudo apt-get install -y llvm-4.0 llvm-4.0-dev llvm-4.0-runtime lld-4.0
- sudo update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-4.0 200
- llvm-config --version
- export RUST_TEST_THREADS=1
script:
- cargo build
- cargo test --all
- ./run_compiler_tests.sh
```
Install llvm4.list file, so that we don't get permission denied errors | ```yaml
sudo: required
dist: trusty
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo bash -c 'echo "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-4.0 main" > /etc/apt/sources.list.d/llvm4.list'
- wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
- sudo apt-get -qq update
- sudo apt-get remove -y llvm
- sudo apt-get install -y llvm-4.0 llvm-4.0-dev llvm-4.0-runtime lld-4.0
- sudo update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-4.0 200
- llvm-config --version
- export RUST_TEST_THREADS=1
script:
- cargo build
- cargo test --all
- ./run_compiler_tests.sh
``` |
d681104f-9d10-411c-989d-cfdca849718a | {
"language": "YAML"
} | ```yaml
notifications:
slack: wtsi-cgpit:ptUMR1tkNyZJYd9TpGoss8WR
email: false
env:
- CC=gcc
addons:
apt:
packages:
- build-essential # everything
- autoconf # biobambam
- libtool # biobambam
- zlib1g-dev # many
- nettle-dev # cgpBigWig
- libncurses5-dev # samtools
- unzip # kentools/pcap
- libcurl4-openssl-dev # many
- libgd-dev
- libdb-dev
install: true
language: perl
perl:
- "5.22"
script:
- export PATH=$HOME/install/bin:$HOME/install/biobambam2/bin:$PATH
- git clone --depth 1 --single-branch --branch develop https://github.com/cancerit/cgpBigWig.git
- cd cgpBigWig
- ./setup.sh $HOME/install
- cd ../
- git clone --depth 1 --single-branch --branch hotfix/5.0.3 https://github.com/cancerit/PCAP-core.git
- cd PCAP-core
- ./setup.sh $HOME/install
- cd ../
- git clone --depth 1 --single-branch --branch dev https://github.com/cancerit/cgpVcf.git
- cd cgpVcf
- ./setup.sh $HOME/install
- cd ../
- ./setup.sh $HOME/install
dist: trusty
sudo: false
```
Revert now develop of PCAP-core is fixed | ```yaml
notifications:
slack: wtsi-cgpit:ptUMR1tkNyZJYd9TpGoss8WR
email: false
env:
- CC=gcc
addons:
apt:
packages:
- build-essential # everything
- autoconf # biobambam
- libtool # biobambam
- zlib1g-dev # many
- nettle-dev # cgpBigWig
- libncurses5-dev # samtools
- unzip # kentools/pcap
- libcurl4-openssl-dev # many
- libgd-dev
- libdb-dev
install: true
language: perl
perl:
- "5.22"
script:
- export PATH=$HOME/install/bin:$HOME/install/biobambam2/bin:$PATH
- git clone --depth 1 --single-branch --branch develop https://github.com/cancerit/cgpBigWig.git
- cd cgpBigWig
- ./setup.sh $HOME/install
- cd ../
- git clone --depth 1 --single-branch --branch develop https://github.com/cancerit/PCAP-core.git
- cd PCAP-core
- ./setup.sh $HOME/install
- cd ../
- git clone --depth 1 --single-branch --branch dev https://github.com/cancerit/cgpVcf.git
- cd cgpVcf
- ./setup.sh $HOME/install
- cd ../
- ./setup.sh $HOME/install
dist: trusty
sudo: false
``` |
03536aa1-0c9d-4222-be60-2e688863aff8 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
#- 1.9.3 # Travis broken September 2017
#- 2.1.1
- 2.2.2
- 2.3.1
- 2.4.1
#- jruby-19mode # Travis broken September 2017
#- jruby-20mode # Travis broken September 2017
matrix:
include:
- rvm: jruby-9.1.13.0
#- env: JRUBY_OPTS="--profile.api"
#before_install: gem install bundler
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
sudo: false
cache: bundler
#env:
# - FLOR_DEFAULT_TIMEOUT=7
```
Stop using the matrix: on Travis | ```yaml
language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
#- 1.9.3 # Travis broken September 2017
#- 2.1.1
- 2.2.2
- 2.3.1
- 2.4.1
#- jruby-19mode # Travis broken September 2017
#- jruby-20mode # Travis broken September 2017
- jruby-9.1.13.0
#matrix:
# include:
# - rvm: jruby-9.1.13.0
# #- env: JRUBY_OPTS="--profile.api"
#before_install: gem install bundler
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
sudo: false
cache: bundler
#env:
# - FLOR_DEFAULT_TIMEOUT=7
``` |
edac4395-cd22-4866-ae26-3c5a93c0c66b | {
"language": "YAML"
} | ```yaml
group: deprecated-2017Q4
language: python
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
dist: xenial # needed for python 3.7 as of 2019-04-05
env: TOXENV=py37
- python: pypy
env: TOXENV=pypy
before_install:
- "sudo rm -rf /var/lib/apt/lists/*"
- "sudo apt-get clean"
- "sudo apt-get update"
- "sudo apt-get install python-gi python3-gi"
install:
- "pip install tox coverage coveralls"
script:
- "tox"
- "coverage report"
after_success:
- "coveralls"
```
Add py38 to Travis tests | ```yaml
group: deprecated-2017Q4
language: python
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
dist: xenial # needed for python 3.7 as of 2019-04-05
env: TOXENV=py37
- python: 3.8
dist: xenial # needed for python 3.7 as of 2019-04-05
env: TOXENV=py38
- python: pypy
env: TOXENV=pypy
before_install:
- "sudo rm -rf /var/lib/apt/lists/*"
- "sudo apt-get clean"
- "sudo apt-get update"
- "sudo apt-get install python-gi python3-gi"
install:
- "pip install tox coverage coveralls"
script:
- "tox"
- "coverage report"
after_success:
- "coveralls"
``` |
b3283239-c83c-4e37-93c2-0f151098b901 | {
"language": "YAML"
} | ```yaml
language: php
os:
- linux
sudo: false
php:
# - 5.3 (doesn't recognize $var=[], only recognizes $var=array())
# - 5.4 (doesn't have finally{} in try blocks)
- 5.5
- 5.6
- 7.0
- nightly
matrix:
allow_failures:
- php: 7.0
- php: nightly
services:
- memcached
- mysql
addons:
apt:
packages:
- libgeoip-dev
install:
- pecl install geoip
- pear install http2
before_script:
- cp config.sample.json config.phoenix.json
script:
- bash -c 'set -e;for file in $(find . -type f -regex .*\.php -print); do php -e -l -f "$file"; done'
```
Update pear channel and disallow PHP 7.0 failure | ```yaml
language: php
os:
- linux
sudo: false
php:
# - 5.3 (doesn't recognize $var=[], only recognizes $var=array())
# - 5.4 (doesn't have finally{} in try blocks)
- 5.5
- 5.6
- 7.0
- nightly
matrix:
allow_failures:
- php: nightly
services:
- memcached
- mysql
addons:
apt:
packages:
- libgeoip-dev
install:
- pear channel-update pear.php.net
- pecl install geoip
- pear install http2
before_script:
- cp config.sample.json config.phoenix.json
script:
- bash -c 'set -e;for file in $(find . -type f -regex .*\.php -print); do php -e -l -f "$file"; done'
``` |
7854ee02-fb25-470b-9a46-d731a4ef15d2 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.5.4
- 1.6.2
- 1.7.1
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get labix.org/v2/mgo/bson
script:
- go test -v
- $HOME/gopath/bin/goveralls -service=travis-ci
env:
global:
secure: HWujU0uan88tfKH8uH9km6Biaq3fJOHeMvfZ9juVR1DK+jxX0NIQ2vSYyaoahxG/FMhUFntnXklFoq/RgmTc8cLwvFnqqGGMK/u+o65ZMTGDn0ud8y3CeqdJGiCAfG4ju/0ApZY6kxdrhoKuBQGG33ykMTxw7xGgN2Vh4x8hUbM=
```
Update go version for using test | ```yaml
language: go
go:
- 1.8
- 1.9
- 1.10
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get labix.org/v2/mgo/bson
script:
- go test -v
- $HOME/gopath/bin/goveralls -service=travis-ci
env:
global:
secure: HWujU0uan88tfKH8uH9km6Biaq3fJOHeMvfZ9juVR1DK+jxX0NIQ2vSYyaoahxG/FMhUFntnXklFoq/RgmTc8cLwvFnqqGGMK/u+o65ZMTGDn0ud8y3CeqdJGiCAfG4ju/0ApZY6kxdrhoKuBQGG33ykMTxw7xGgN2Vh4x8hUbM=
``` |
a4625609-a043-40a5-9c31-eadd7cada300 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "6.5"
- "6.1"
- "6"
- "5.11"
- "4.0"```
Add Linux/macOS builds for Travis CI | ```yaml
language: node_js
node_js:
- "6.5"
- "6.1"
- "6"
- "5.11"
- "4.0"
os:
- linux
- osx
``` |
c4afaf31-e2e9-4529-aa57-b2655cad18ee | {
"language": "YAML"
} | ```yaml
language: cpp
os:
- linux
- osx
compiler:
- clang
- gcc
before_install:
- sudo apt-get update
install:
#Google Log
- svn checkout http://google-glog.googlecode.com/svn/trunk/ glog
- cd glog
- ./configure
- make -j4
- sudo make -j4 install
- cd ..
#Google Test
- sudo apt-get install libgtest-dev
- mkdir gtest
- cd gtest
- cmake /usr/src/gtest/
- make
- sudo mv libg* /usr/lib/
- cd ..
#OpenCV
- git clone https://github.com/Itseez/opencv.git
- cd opencv
- git checkout 2.4
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_opencv_java=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF ..
- make -j4
- sudo make -j4 install
- cd ../..
before_script:
#Main Program
- mkdir build
- cd build
- cmake ..
script: make
```
Add boost to tavis config | ```yaml
language: cpp
os:
- linux
- osx
compiler:
- clang
- gcc
before_install:
- sudo apt-get update
install:
#Upgrade
- sudo apt-get upgrade
#Boost
- sudo apt-get install libboost-dev
#Google Log
- svn checkout http://google-glog.googlecode.com/svn/trunk/ glog
- cd glog
- ./configure
- make -j4
- sudo make -j4 install
- cd ..
#Google Test
- sudo apt-get install libgtest-dev
- mkdir gtest
- cd gtest
- cmake /usr/src/gtest/
- make
- sudo mv libg* /usr/lib/
- cd ..
#OpenCV
- git clone https://github.com/Itseez/opencv.git
- cd opencv
- git checkout 2.4
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_opencv_java=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF ..
- make -j4
- sudo make -j4 install
- cd ../..
before_script:
#Main Program
- mkdir build
- cd build
- cmake ..
script: make
``` |
4a13f079-c102-4bbd-84d3-227320aa6a04 | {
"language": "YAML"
} | ```yaml
language:
- c
- cpp
- go
- python
compiler:
- gcc
# - clang
before_install:
- sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -qq libsdl2-dev libsdl2-image-dev gcc-4.8 g++-4.8
- export GOPATH=$(pwd)
- go get -v github.com/veandco/go-sdl2/sdl
before_script:
- export CXX=g++-4.8
- export CC=gcc-4.8
script:
- make -C c++11
- make -C c++
- make -C c
- pushd go
- go build
- go test
- popd
#notifications:
# email: false
# irc:
# channels:
# - "irc.freenode.net#blabla"
# on_success: change
# on_failure: always
# template:
# - "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
# - "Change view : %{compare_url}"
# - "Build details : %{build_url}"
# use_notice: true
# skip_join: true
```
Update the CI configuration script | ```yaml
language:
- c
- cpp
- go
- python
dist: trusty
addons:
apt:
packages:
- build-essential
- libsdl2-dev
- cmake
matrix:
include:
- os: linux
compiler: gcc
- os: linux
compiler: clang
script:
- make -C c++11
- make -C c++98
- make -C c11
- pushd go
- go build
- go test
- popd
#notifications:
# email: false
# irc:
# channels:
# - "irc.freenode.net#blabla"
# on_success: change
# on_failure: always
# template:
# - "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
# - "Change view : %{compare_url}"
# - "Build details : %{build_url}"
# use_notice: true
# skip_join: true
``` |
5da4c29e-7bf4-4d3f-9042-a42be7171ca4 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
before_install:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
install:
- pip install -r requirements.txt --use-mirrors
- pip install coveralls --use-mirrors
script:
coverage run manage.py test
after_success:
- coveralls
```
Upgrade pip and setuptools in Travis builds. | ```yaml
language: python
python:
- "2.7"
before_install:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
install:
- pip install pip setuptools --upgrade
- pip install -r requirements.txt
- pip install coveralls
script:
coverage run manage.py test
after_success:
- coveralls
``` |
ccf33ed8-d235-476d-a79e-a1f95b7655c7 | {
"language": "YAML"
} | ```yaml
---
language: node_js
node_js:
- "6"
sudo: false
cache:
directories:
- $HOME/.npm
env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- npm config set spin false
- npm install -g phantomjs-prebuilt
- phantomjs --version
install:
- npm install
script:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
```
Allow beta failures for now | ```yaml
---
language: node_js
node_js:
- "6"
sudo: false
cache:
directories:
- $HOME/.npm
env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- npm config set spin false
- npm install -g phantomjs-prebuilt
- phantomjs --version
install:
- npm install
script:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
``` |
542761f6-8072-4251-b6f6-3e8d0e5b2ddf | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- "pip install -U setuptools pip"
- "pip install pytest pytest-cov pytest-pep8 mock responses coveralls"
- "pip install ."
script: "py.test"
after_success: "coveralls"
branches:
only:
- master
- develop
```
Test on modern Python 3 | ```yaml
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy"
install:
- "pip install -U setuptools pip"
- "pip install pytest pytest-cov pytest-pep8 mock responses coveralls"
- "pip install ."
script: "py.test"
after_success: "coveralls"
branches:
only:
- master
- develop
``` |
fb279d3d-0acd-4137-a008-a2212c74e51e | {
"language": "YAML"
} | ```yaml
language: java
sudo: false
jdk:
- oraclejdk8
script: "./bin/travis.sh"
```
Use JDK 9 on Travis. | ```yaml
language: java
sudo: false
jdk:
- oraclejdk9
script: "./bin/travis.sh"
``` |
02e87451-31bb-4d3e-ac1b-902fc639b32e | {
"language": "YAML"
} | ```yaml
language: java
matrix:
include:
- jdk: oraclejdk8
-script: travis_retry ./gradlew clean headless allTests coverage coveralls -i
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
addons:
apt:
packages:
- oracle-java8-installer```
Fix yml that cause the problems. | ```yaml
language: java
matrix:
include:
- jdk: oraclejdk8
script: travis_retry ./gradlew clean headless allTests coverage coveralls -i
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
addons:
apt:
packages:
- oracle-java8-installer``` |
994975d3-0f4b-41cd-ad2f-00d1c681a28a | {
"language": "YAML"
} | ```yaml
language: php
php:
- 7.0
- 7.1
- 7.2
before_script:
- composer self-update
```
Revert accidental removal of composer update | ```yaml
language: php
php:
- 7.0
- 7.1
- 7.2
before_script:
- composer self-update
- composer update --prefer-source
``` |
049f7a50-f04f-4692-ac97-af72695aae87 | {
"language": "YAML"
} | ```yaml
language: ruby
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
bundler_args: --jobs=3 --retry=3
cache: bundler
script:
- bundle exec rake
- bundle exec codeclimate-test-reporter
```
Make like rspec instead of rake? | ```yaml
language: ruby
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
bundler_args: --jobs=3 --retry=3
cache: bundler
script:
- bundle exec rspec
- bundle exec codeclimate-test-reporter
``` |
7524f826-ed08-4245-8a61-5ff49a598727 | {
"language": "YAML"
} | ```yaml
language: objective-c
xcode_workspace: Tests/ThirdPartyMailerExample.xcworkspace
xcode_scheme: ThirdPartyMailerExample
xcode_sdk: iphonesimulator
osx_image: xcode7.3
```
Update Travis configuration with custom build script | ```yaml
language: objective-c
xcode_sdk: iphonesimulator
osx_image: xcode7.3
script:
- xcodebuild test -workspace Tests/ThirdPartyMailerExample.xcworkspace -scheme ThirdPartyMailerExample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
``` |
03061667-2e2b-4493-92ae-a73184745f77 | {
"language": "YAML"
} | ```yaml
sudo: false
addons:
apt:
sources:
- debian-sid
packages:
- texlive-latex-recommended
- texlive-latex-extra
- texlive-fonts-recommended
- texlive-science
- texlive-bibtex-extra
- texlive-latex-recommended
- latexmk
script:
- latexmk masterthesis
- latexmk presentation
```
Revert "Use Debian unstable for tests." | ```yaml
sudo: false
addons:
apt:
packages:
- texlive-latex-recommended
- texlive-latex-extra
- texlive-fonts-recommended
- texlive-science
- texlive-bibtex-extra
- texlive-latex-recommended
- latexmk
script:
- latexmk masterthesis
- latexmk presentation
``` |
f05e4aaa-bd53-419f-994b-63de139f7ca2 | {
"language": "YAML"
} | ```yaml
# Config file for automatic testing at travis-ci.org
language: python
# http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "pypy3"
- "pypy"
install:
- pip install -U -r dev-requirements.txt
before_script:
- flake8 .
script: PATH=./tests/ffmpeg:$PATH PYTHONPATH=. py.test tests # is setting PYTHONPATH the right thing to do?
```
Disable flake8 (until figured out how to run it on PyPy) | ```yaml
# Config file for automatic testing at travis-ci.org
language: python
# http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "pypy3"
- "pypy"
install:
- pip install -U -r dev-requirements.txt
#before_script:
# - flake8 .
script: PATH=./tests/ffmpeg:$PATH PYTHONPATH=. py.test tests # is setting PYTHONPATH the right thing to do?
``` |
2dd7fc33-e8ee-4b01-8444-d6971af3db45 | {
"language": "YAML"
} | ```yaml
language: csharp
mono: 5.2.0
solution: ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.sln
script:
- xbuild /p:Configuration=Release ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.sln
- mono ./src/packages/xunit.runner.console.*/tools/net452/xunit.console.exe ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.Tests/bin/Release/Objectivity.AutoFixture.XUnit2.AutoMoq.Tests.dll```
Include Core.Tests in test run on Travis | ```yaml
language: csharp
mono: 5.2.0
solution: ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.sln
script:
- xbuild /p:Configuration=Release ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.sln
- mono ./src/packages/xunit.runner.console.*/tools/net452/xunit.console.exe ./src/Objectivity.AutoFixture.XUnit2.Core.Tests/bin/Release/Objectivity.AutoFixture.XUnit2.Core.Tests.dll ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.Tests/bin/Release/Objectivity.AutoFixture.XUnit2.AutoMoq.Tests.dll``` |
fefd69ca-887b-4196-9c8d-6aaf097418bf | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- '8'
- '9'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
```
Drop node.js 9 support, add 10 and 12 | ```yaml
language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- '8'
- '10'
- '12'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
``` |
8fcd1437-5dfc-4ec8-91d4-8e3a414d8034 | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
script:
- yarn run test
- yarn run lint
services:
- redis
```
Drop node 4, 5 and add 8, 9 | ```yaml
sudo: required
dist: trusty
language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
script:
- yarn run test
- yarn run lint
services:
- redis
``` |
03ae06db-845e-4c93-afcb-ce8cf0eec331 | {
"language": "YAML"
} | ```yaml
- name: Get Started
link: /starting_pycharm.html
dropdown:
- name: PyCharm
link: /starting_pycharm.html
- name: Emacs
link: /starting_emacs.html
- name: Sublime Text
link: /starting_sublime_text.html
- name: Browser
link: /demo/
- name: Space Tracer
link: /space_tracer.html
dropdown:
- name: Getting Started
link: /starting_space_tracer.html
- name: How it Works
link: /howitworks.html
```
Add link to GitHub repository. | ```yaml
- name: Get Started
link: /starting_pycharm.html
dropdown:
- name: PyCharm
link: /starting_pycharm.html
- name: Emacs
link: /starting_emacs.html
- name: Sublime Text
link: /starting_sublime_text.html
- name: Browser
link: /demo/
- name: Space Tracer
link: /space_tracer.html
dropdown:
- name: Getting Started
link: /starting_space_tracer.html
- name: How it Works
link: /howitworks.html
- name: GitHub
link: https://github.com/donkirkby/live-py-plugin``` |
8f20a4b8-4341-4ba6-862c-1923aefae6f4 | {
"language": "YAML"
} | ```yaml
en:
vagrant_rdp:
detecting: |-
Detecting RDP info...
connecting: |-
Vagrant will now launch your RDP client with the connection parameters
above. If the connection fails, verify that the information above is
correct. Additionally, make sure the RDP server is configured and
running in the guest machine (it is disabled by default on Windows).
Also, verify that the firewall is open to allow RDP connections.
errors:
host_unsupported: |-
Vagrant doesn't support running an RDP client on your
host OS. Currently only Windows is supported for RDP
clients.
If you wish for the OS you're running to support launching
an RDP client, please contribute this functionality back
into Vagrant. At the very least, open an issue on how it
could be done and we can handle the integration.
rdp_undetected: |-
RDP connection information for this machine could not be
detected. This is typically caused when we can't find the IP
or port to connect to for RDP. Please verify you're forwarding
an RDP port and that your machine is accessible.
```
Update RDP error message since Windows only being supported isn't true | ```yaml
en:
vagrant_rdp:
detecting: |-
Detecting RDP info...
connecting: |-
Vagrant will now launch your RDP client with the connection parameters
above. If the connection fails, verify that the information above is
correct. Additionally, make sure the RDP server is configured and
running in the guest machine (it is disabled by default on Windows).
Also, verify that the firewall is open to allow RDP connections.
errors:
host_unsupported: |-
Vagrant doesn't support running an RDP client on your
host OS.
If you wish for the OS you're running to support launching
an RDP client, please contribute this functionality back
into Vagrant. At the very least, open an issue on how it
could be done and we can handle the integration.
rdp_undetected: |-
RDP connection information for this machine could not be
detected. This is typically caused when we can't find the IP
or port to connect to for RDP. Please verify you're forwarding
an RDP port and that your machine is accessible.
``` |
98a5df2a-107c-473b-ad3f-f8f0f0451062 | {
"language": "YAML"
} | ```yaml
name: ore
version: 0.8.0
summary: Mine raw RubyGems from YAML
description:
Ore is a simple RubyGem building solution. Ore handles the
creation of Gem::Specification objects as well as building '.gem'
files. Ore allows the developer to keep all of the project information
in a single YAML file.
license: MIT
authors: Postmodern
email: postmodern.mod3@gmail.com
homepage: http://github.com/ruby-ore/ore
has_yard: true
post_install_message: |
**************************************************************************
Generate a new Ruby library:
$ mine my_library --rspec --yard
Build the library:
$ rake build
Release the library to rubygems.org:
$ rake release
**************************************************************************
dependencies:
ore-core: ~> 0.1, >= 0.1.4
env: ~> 0.1.2
thor: ~> 0.14.3
development_dependencies:
ore-tasks: ~> 0.4
rspec: ~> 2.4
yard: ~> 0.6.1
```
Revert "Version bump to 0.8.0." | ```yaml
name: ore
version: 0.7.3
summary: Mine raw RubyGems from YAML
description:
Ore is a simple RubyGem building solution. Ore handles the
creation of Gem::Specification objects as well as building '.gem'
files. Ore allows the developer to keep all of the project information
in a single YAML file.
license: MIT
authors: Postmodern
email: postmodern.mod3@gmail.com
homepage: http://github.com/ruby-ore/ore
has_yard: true
post_install_message: |
**************************************************************************
Generate a new Ruby library:
$ mine my_library --rspec --yard
Build the library:
$ rake build
Release the library to rubygems.org:
$ rake release
**************************************************************************
dependencies:
ore-core: ~> 0.1, >= 0.1.4
env: ~> 0.1.2
thor: ~> 0.14.3
development_dependencies:
ore-tasks: ~> 0.4
rspec: ~> 2.4
yard: ~> 0.6.1
``` |
093acfec-8865-422b-b9e4-8b4ab57c424a | {
"language": "YAML"
} | ```yaml
---
hide_body: false
is_partial: true
fields:
- type: field_group_list
label: Columns
name: columns
fields:
- type: text
name: title
label: Title
description: The title to display
config:
required: true
- type: textarea
label: Body
name: body
description: The content to display
config:
wysiwyg: true
schema:
format: markdown
required: true
- type: number
label: Width
name: width
config:
min: '1'
max: '12'
step: '1'
required: true
default: '4'
description: The width to apply in the 12-grid layout
config:
labelField: title
```
Update from Forestry.io - Updated Forestry configuration | ```yaml
---
hide_body: false
is_partial: true
fields:
- type: number
name: column_count
label: Column Count
description: The number of columns
config:
min: '1'
max: '3'
step: '1'
required: true
- type: field_group_list
label: Columns
name: columns
fields:
- type: text
name: title
label: Title
description: The title to display
config:
required: true
- type: textarea
label: Body
name: body
description: The content to display
config:
wysiwyg: true
schema:
format: markdown
required: true
- type: number
label: Width
name: width
config:
min: '1'
max: '8'
step: '1'
required: false
description: The optional width to apply in the 12-grid layout
config:
labelField: title
``` |
367b86fc-aff8-46dd-9198-f5bc1677bf8b | {
"language": "YAML"
} | ```yaml
Categories:
- Multimedia
License: MIT
SourceCode: https://github.com/markusfisch/BinaryEye
IssueTracker: https://github.com/markusfisch/BinaryEye/issues
AutoName: Binary Eye
Description: |-
''Binary Eye'' works in portrait and landscape orientation, can read
inverted codes, is Material Design and doesn't do anything else but
decoding a barcode. It uses the ZXing ("Zebra Crossing") barcode scanning
library. Supported barcode formats are: AZTEC, CODABAR, CODE 39, CODE 93,
CODE 128, DATA MATRIX, EAN 8, EAN 13, ITF, MAXICODE, PDF417, QR CODE, RSS
14, RSS EXPANDED, UPC A, UPC E and UPC EAN EXTENSION.
RepoType: git
Repo: https://github.com/markusfisch/BinaryEye
Builds:
- versionName: 1.3.8
versionCode: 14
commit: 1.3.8
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.3.8
CurrentVersionCode: 14
```
Update Binary Eye to 1.4.1 (16) | ```yaml
Categories:
- Multimedia
License: MIT
SourceCode: https://github.com/markusfisch/BinaryEye
IssueTracker: https://github.com/markusfisch/BinaryEye/issues
AutoName: Binary Eye
Description: |-
''Binary Eye'' works in portrait and landscape orientation, can read
inverted codes, is Material Design and doesn't do anything else but
decoding a barcode. It uses the ZXing ("Zebra Crossing") barcode scanning
library. Supported barcode formats are: AZTEC, CODABAR, CODE 39, CODE 93,
CODE 128, DATA MATRIX, EAN 8, EAN 13, ITF, MAXICODE, PDF417, QR CODE, RSS
14, RSS EXPANDED, UPC A, UPC E and UPC EAN EXTENSION.
RepoType: git
Repo: https://github.com/markusfisch/BinaryEye
Builds:
- versionName: 1.3.8
versionCode: 14
commit: 1.3.8
subdir: app
gradle:
- yes
- versionName: 1.4.1
versionCode: 16
commit: 1.4.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.4.1
CurrentVersionCode: 16
``` |
9137657a-92c1-4087-b7aa-78386e67ab4a | {
"language": "YAML"
} | ```yaml
Categories:
- Games
License: GPL-2.0-only
SourceCode: https://github.com/ge0rg/gamemasterdice
IssueTracker: https://github.com/ge0rg/gamemasterdice/issues
AutoName: DSA Dice
Description: |-
A dice rolling application with a special focus on the 3D20 role playing game
(RPG) system.
Features:
* four configurable dice buttons (long-press to configure)
* backlog of recent dice rolls
* remembers the most commonly used dice
Supported games:
* Dungeons & Dragons (DnD)
* Neuroshima
* Monastyr
* Star Wars RPG
* Shadowrun
* and further d20 and 3d20 titles
RepoType: git
Repo: https://github.com/ge0rg/gamemasterdice.git
Builds:
- versionName: 0.1.5
versionCode: 6
commit: 852aa5d917a
- versionName: 0.1.6
versionCode: 7
commit: 0.1.6
- versionName: '1.0'
versionCode: 8
commit: '1.0'
gradle:
- yes
AutoUpdateMode: None
UpdateCheckMode: Tags
CurrentVersion: '1.0'
CurrentVersionCode: 8
```
Update CV of DSA Dice to 0.1.6 (7) | ```yaml
Categories:
- Games
License: GPL-2.0-only
SourceCode: https://github.com/ge0rg/gamemasterdice
IssueTracker: https://github.com/ge0rg/gamemasterdice/issues
AutoName: DSA Dice
Description: |-
A dice rolling application with a special focus on the 3D20 role playing game
(RPG) system.
Features:
* four configurable dice buttons (long-press to configure)
* backlog of recent dice rolls
* remembers the most commonly used dice
Supported games:
* Dungeons & Dragons (DnD)
* Neuroshima
* Monastyr
* Star Wars RPG
* Shadowrun
* and further d20 and 3d20 titles
RepoType: git
Repo: https://github.com/ge0rg/gamemasterdice.git
Builds:
- versionName: 0.1.5
versionCode: 6
commit: 852aa5d917a
- versionName: 0.1.6
versionCode: 7
commit: 0.1.6
- versionName: '1.0'
versionCode: 8
commit: '1.0'
gradle:
- yes
AutoUpdateMode: None
UpdateCheckMode: Tags
CurrentVersion: 0.1.6
CurrentVersionCode: 7
``` |
6712766d-00ac-4f50-b767-ff55ed438064 | {
"language": "YAML"
} | ```yaml
description: tenant_quotas
title: Tenant Quotas
content_type: report
options:
visibility:
:roles:
- _ALL_
user_id:
resource_name: Tenant Quotas
resource_type: MiqReport
miq_schedule_options:
:run_at:
:interval:
:value: "1"
:unit: daily
enabled: true
read_only: true```
Remove key :options, we dont need it. we have default row value now | ```yaml
description: tenant_quotas
title: Tenant Quotas
content_type: report
visibility:
:roles:
- _ALL_
user_id:
resource_name: Tenant Quotas
resource_type: MiqReport
miq_schedule_options:
:run_at:
:interval:
:value: "1"
:unit: daily
enabled: true
read_only: true``` |
a95d02b2-83b5-456a-ae5f-361a1684740c | {
"language": "YAML"
} | ```yaml
---
shell_profiles:
- .bash_profile
nodejs_clean_install: false
nvm_symlink_exec: /usr/local/bin/nvm
nvm_version: v0.33.8
#nvm_repo: "https://github.com/xtuple/nvm.git"
ivm_repo: "https://github.com/demohi/ivm.git"
install_nvm: true
install_nvm_git: true
install_nodejs: true
install_ivm: false
install_iojs: false
install_npm: true
node_version: 10.0.0
node_versions:
- 4.8.2
- 5.12.0
- 6.11.2
- 7.9.0
- 8.9.1
- 9.7.1
node_packages:
- backbone
- grunt
- replace
- underscore
- yosay```
Update default node v9 to 9.11.2 | ```yaml
---
shell_profiles:
- .bash_profile
nodejs_clean_install: false
nvm_symlink_exec: /usr/local/bin/nvm
nvm_version: v0.33.8
#nvm_repo: "https://github.com/xtuple/nvm.git"
ivm_repo: "https://github.com/demohi/ivm.git"
install_nvm: true
install_nvm_git: true
install_nodejs: true
install_ivm: false
install_iojs: false
install_npm: true
node_version: 10.0.0
node_versions:
- 4.8.2
- 5.12.0
- 6.11.2
- 7.9.0
- 8.9.1
- 9.11.2
node_packages:
- backbone
- grunt
- replace
- underscore
- yosay``` |
83cfa442-b469-4b06-b746-74315b244def | {
"language": "YAML"
} | ```yaml
---
haproxy_ciphers:
- ECDHE-RSA-AES256-GCM-SHA384
- ECDHE-RSA-AES256-SHA384
- ECDHE-RSA-AES256-SHA
- AES256-GCM-SHA384
- AES256-SHA256
- AES256-SHA
- CAMELLIA256-SHA
- ECDHE-RSA-AES128-GCM-SHA256
- ECDHE-RSA-AES128-SHA256
- ECDHE-RSA-AES128-SHA
- AES128-GCM-SHA256
- AES128-SHA256
- AES128-SHA
- CAMELLIA128-SHA
- ECDHE-RSA-DES-CBC3-SHA
- DES-CBC3-SHA
```
Add settings for robust PFS | ```yaml
---
haproxy_ciphers:
- ECDHE-RSA-AES256-GCM-SHA384
- ECDHE-RSA-AES256-SHA384
- ECDHE-RSA-AES256-SHA
- AES256-GCM-SHA384
- AES256-SHA256
- DHE-RSA-AES256-SHA
- AES256-SHA
- CAMELLIA256-SHA
- ECDHE-RSA-AES128-GCM-SHA256
- ECDHE-RSA-AES128-SHA256
- ECDHE-RSA-AES128-SHA
- AES128-GCM-SHA256
- AES128-SHA256
- DHE-RSA-AES128-SHA
- AES128-SHA
- CAMELLIA128-SHA
- ECDHE-RSA-DES-CBC3-SHA
- DES-CBC3-SHA
``` |
6bdf596b-2888-4a69-a73b-6a54c4cf889f | {
"language": "YAML"
} | ```yaml
---
# user to add to docker group
docker_user: "{{ ansible_user }}"
# version that should be installed
docker_version: 17.04.0
# service related parameters
docker_listen_on_loopback: no
# registry related parameters
docker_registry: quay.io
docker_registry_password: ""
docker_registry_username: ""
# storage driver related parameters
docker_configure_storage_driver: no
docker_storage_driver: overlay
docker_storage_block_device: ""
docker_storage_filesystem: ext4
# proxy related parameters
docker_configure_proxy: no
docker_proxy_http: "http://proxy.tld:8080"
docker_proxy_https: "{{ docker_proxy_http }}"
docker_proxy_no_proxy:
- localhost
- 127.0.0.1
# CI parameters
docker_run_tests: no
```
Change default registry to docker hub | ```yaml
---
# user to add to docker group
docker_user: "{{ ansible_user }}"
# version that should be installed
docker_version: 17.04.0
# service related parameters
docker_listen_on_loopback: no
# registry related parameters
docker_registry: registry.hub.docker.com
docker_registry_password: ""
docker_registry_username: ""
# storage driver related parameters
docker_configure_storage_driver: no
docker_storage_driver: overlay
docker_storage_block_device: ""
docker_storage_filesystem: ext4
# proxy related parameters
docker_configure_proxy: no
docker_proxy_http: "http://proxy.tld:8080"
docker_proxy_https: "{{ docker_proxy_http }}"
docker_proxy_no_proxy:
- localhost
- 127.0.0.1
# CI parameters
docker_run_tests: no
``` |
39208680-7cf8-464a-a565-85885263aeff | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/iokasimov/monopati
changelog-type: ''
hash: 833758fbda0c78c4928368bf58c09ad8b2548cc6f03d5a374cc502dc137ca824
test-bench-deps: {}
maintainer: Murat Kasimov <iokasimov.m@gmail.com>
synopsis: Well-typed paths
changelog: ''
basic-deps:
free: -any
split: -any
base: ==4.*
directory: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
author: Murat Kasimov
latest: '0.1.2'
description-type: haddock
description: Despite the fact that there are a plenty of various well-typed "path"
libraries in Haskell, I decided to write new one that I would like to use.
license-name: BSD3
```
Update from Hackage at 2018-11-01T12:00:01Z | ```yaml
homepage: https://github.com/iokasimov/monopati
changelog-type: ''
hash: f1c1d5720c4b7b165ca7d198da9d3c620bbae5ebe44b5bdad3f50dd48f287641
test-bench-deps:
free: -any
split: -any
base: ==4.*
hedgehog: -any
transformers: -any
directory: -any
maintainer: Murat Kasimov <iokasimov.m@gmail.com>
synopsis: Well-typed paths
changelog: ''
basic-deps:
free: -any
split: -any
base: ==4.*
directory: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
author: Murat Kasimov
latest: '0.1.3'
description-type: haddock
description: Despite the fact that there are a plenty of various well-typed "path"
libraries in Haskell, I decided to write new one that I would like to use.
license-name: BSD3
``` |
1bfa6b4d-6123-4ad2-983d-0c3a6bd23472 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/ciez/regex-do
changelog-type: ''
hash: 3a0ac3abaee2c44fd25d99894553a8bb855e9cc1d153b55d7ec13c2c3981620b
test-bench-deps:
regex-pcre: ! '>=0.94.4'
bytestring: ! '>=0.10.6.0'
base: ! '>=4.8'
hspec: ! '>=2.1.7'
text: -any
stringsearch: ! '>=0.3.6.6'
array: ! '>=0.5.1.0'
regex-base: ! '>=0.93.2'
regex-do: -any
QuickCheck: ! '>=2.8.1'
maintainer: Imants Cekusins
synopsis: PCRE regex funs
changelog: ''
basic-deps:
regex-pcre: ! '>=0.94.4'
bytestring: ! '>=0.10.6.0'
base: ! '>=4.8 && <4.9'
text: -any
stringsearch: ! '>=0.3.6.6'
array: ! '>=0.5.1.0'
regex-base: ! '>=0.93.2'
all-versions:
- '1.0'
author: Imants Cekusins
latest: '1.0'
description-type: haddock
description: Convenience functions to search, replace, format String | ByteString
with PCRE regex
license-name: PublicDomain
```
Update from Hackage at 2016-11-06T13:59:38Z | ```yaml
homepage: https://github.com/ciez/regex-do
changelog-type: ''
hash: 8bf8ae483e58433b0d289e4f225609447935796783bc37f76fc1fdb93ebcbc1c
test-bench-deps:
regex-pcre: -any
bytestring: -any
base: <=5.0
hspec: -any
text: -any
stringsearch: -any
array: -any
regex-base: -any
regex-do: -any
QuickCheck: -any
maintainer: Imants Cekusins
synopsis: PCRE regex funs
changelog: ''
basic-deps:
regex-pcre: -any
bytestring: -any
base: <=5.0
text: -any
stringsearch: -any
array: -any
regex-base: -any
all-versions:
- '1.0'
- '1.1'
author: Imants Cekusins
latest: '1.1'
description-type: haddock
description: Convenience functions to search, replace, format String | ByteString
with PCRE regex
license-name: PublicDomain
``` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.