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... | ```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 instal... |
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 ... | ```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: ... |
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... | ```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... |
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
- che... | ```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
- che... |
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
- INSTAN... | ```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
- INSTAN... |
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 lib... | ```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 lib... |
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/b... | ```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 php... |
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... | ```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/cover... |
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 git... | ```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 git... |
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:... | ```yaml
language: python
python: 2.7
notifications:
email: false
branches:
only:
- src
env:
global:
secure: gZYVTY9bdudw6cJSj0IR5reYvkoAeOrOx5t+1H/t3ZHVhcVUhFwBpBkbc0iDFIdAFa43W76FymP5a0MAKrTaTcnEHRpKRVBdEDr7et5hWntGFaCKYN34qFuDsVVftBkPLhWkYufaOsX2f8NF04hC+E7NdzHKaDTXL4PjmayTydI=
install:
- pip install -r r... |
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... | ```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:
-... |
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
... | ```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
... |
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"
... | ```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"
... |
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... | ```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}"
- "Buil... |
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_fai... | ```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 -... |
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
- f... | ```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
... |
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 ... | ```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 ... |
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... | ```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... |
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 fo... | ```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 -coverpro... |
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_... | ```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_... |
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
... | ```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/boot... |
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:upl... | ```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 --form... |
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:
... | ```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: postgr... |
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/boot... | ```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/boot... |
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... | ```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... |
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 ... | ```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 bundle... |
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 --syste... | ```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
... |
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: tr... | ```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 $... |
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 buil... | ```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" ... |
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 --cov... | ```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 --... |
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_succes... | ```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_succ... |
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 libte... | ```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 libte... |
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 hea... | ```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 hea... |
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 "./Extens... | ```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 ".... |
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 t... | ```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 ... |
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
- o... | ```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
- o... |
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 a... | ```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... | ```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... |
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_VERS... | ```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_BRAN... |
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
# ... | ```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:
-... |
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
- ./runtra... | ```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... |
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... | ```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:... |
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
... | ```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... |
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
... | ```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
... |
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.... | ```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:
#... |
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_... | ```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... |
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:
packa... | ```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:
- li... |
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+jxX... | ```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+jxX0NIQ2... |
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
... | ```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... |
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... | ```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
... |
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... | ```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_SC... | ```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_SC... |
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 moder... | ```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
- develo... |
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 ... | ```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
- l... | ```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:... | ```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
#bef... |
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/bi... | ```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/R... |
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:... | ```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:... |
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
... | ```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
... |
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: ... | ```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: ... |
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 ... | ```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
... |
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 doe... | ```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 doe... |
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:
... | ```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:
... |
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... | ```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... | ```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... |
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
- AE... | ```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
... |
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: ""
# stor... | ```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_user... |
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.*
director... | ```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: ... |
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'
... | ```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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.