commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266 values | license stringclasses 13 values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
278a0893d63107478146d70b1c6deb9ced02bd51 | .travis.yml | .travis.yml | language: go
go: 1.4
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.5"
- "2.2.0"
before_script: bundle install
script:
- bundle exec rake
- go test ./go/quartz | language: go
go: 1.4
rvm:
- "2.1.5"
before_script: bundle install
script:
- bundle exec rake
- go test ./go/quartz | Use Ruby 2.1.5 inside Travis | Use Ruby 2.1.5 inside Travis
| YAML | mit | DavidHuie/quartz,DavidHuie/quartz |
614b9b5162a55d16b05e29a1c00fc880ff6dfb3d | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
sudo: false
env:
- MYSQL_USER=travis MYSQL_HOST=127.0.0.1 POSTGRESQL_USER=postgres POSTGRESQL_HOST=127.0.0.1
services:
- mongodb
before_install:
- bash bin/check_signoff.sh
- pip install -q flake8
- flake8
install:
# Install package, test requirements, and coverage for testing
- pip install -q -e .
- pip install -q -r requirements.txt
- pip install -q -r tests/requirements.txt
- pip install -q coverage
before_script:
- mysql -u $MYSQL_USER < tests/input/chinook_mysql.sql > /dev/null
- psql -U $POSTGRESQL_USER -c 'create database chinook' > /dev/null
- psql -U $POSTGRESQL_USER -d chinook < tests/input/chinook_postgresql.sql > /dev/null
- mongorestore --db chinook tests/input/mongodb > /dev/null
#script:
# - coverage run test_suite.py
#
#after_success:
# - pip install -q coveralls
# - coveralls > /dev/null
| language: python
python:
- "3.3"
- "3.4"
sudo: false
env:
- MYSQL_USER=travis MYSQL_HOST=127.0.0.1 POSTGRESQL_USER=postgres POSTGRESQL_HOST=127.0.0.1
services:
- mongodb
before_install:
- bash bin/check_signoff.sh
- pip install -q flake8
- flake8
install:
# Install package, test requirements, and coverage for testing
- pip install -q -e .
- pip install -q -r requirements.txt
- pip install -q -r tests/requirements.txt
- pip install -q coverage
before_script:
- mysql -u $MYSQL_USER < tests/input/chinook_mysql.sql > /dev/null
- psql -U $POSTGRESQL_USER -c 'create database chinook' > /dev/null
- psql -U $POSTGRESQL_USER -d chinook < tests/input/chinook_postgresql.sql > /dev/null
- mongorestore --db chinook tests/input/mongodb > /dev/null
script:
- echo noop
#after_success:
# - pip install -q coveralls
# - coveralls > /dev/null
| Add a required script command for the Travis config | Add a required script command for the Travis config
Signed-off-by: Byron Ruth <e9d71f5ee7c92d6dc9e92ffdad17b8bd49418f98@devel.io>
| YAML | bsd-2-clause | chop-dbhi/prov-extractor,chop-dbhi/prov-extractor |
f934c1b916d49f7f529a1e0ebd63daf07de1ad76 | .travis.yml | .travis.yml | language: scala
os:
- linux
script:
- sbt ++$TRAVIS_SCALA_VERSION clean "flaky times=10"
scala:
- 2.12.3
jdk:
- oraclejdk8
sudo: false
notifications:
email:
- krzysztof.otrebski@gmail.com
cache:
directories:
- $HOME/.sbt/1.0
- $HOME/.sbt/boot/scala*
- $HOME/.sbt/cache
- $HOME/.sbt/launchers
- $HOME/.ivy2
- $TRAVIS_BUILD_DIR/history
before_cache:
- du -h -d 1 $HOME/.ivy2/
- du -h -d 2 $HOME/.sbt/
- find $HOME/.sbt -name "*.lock" -type f -delete
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -type f -delete
deploy:
provider: bitballoon
skip_cleanup: true
site-id:
secure: "$SITE_ID"
access-token:
secure: "$ACCESS_TOKEN"
local-dir: "target/flaky-test-reports-html" | language: scala
os:
- linux
script:
- sbt ++$TRAVIS_SCALA_VERSION clean "flaky times=30"
scala:
- 2.12.3
jdk:
- oraclejdk8
sudo: false
notifications:
email:
- krzysztof.otrebski@gmail.com
cache:
directories:
- $HOME/.sbt/1.0
- $HOME/.sbt/boot/scala*
- $HOME/.sbt/cache
- $HOME/.sbt/launchers
- $HOME/.ivy2
- $TRAVIS_BUILD_DIR/history
before_cache:
- du -h -d 1 $HOME/.ivy2/
- du -h -d 2 $HOME/.sbt/
- find $HOME/.sbt -name "*.lock" -type f -delete
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -type f -delete
deploy:
provider: bitballoon
skip_cleanup: true
site-id:
secure: "$SITE_ID"
access-token:
secure: "$ACCESS_TOKEN"
local-dir: "target/flaky-test-reports-html" | Increase number of test runs | Increase number of test runs
| YAML | apache-2.0 | otrebski/sbt-flaky-demo |
92953b639577f24f8679bc245e68b0e14addc90b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "iojs"
- "0.10"
- "0.12"
| sudo: false
language: node_js
node_js:
- "6"
- "5"
- "4"
- "iojs"
- "0.10"
- "0.12"
| Update Travis CI node versions | Update Travis CI node versions
| YAML | mit | emgeee/gulp-standard,nebez/gulp-semistandard,stevelacy/gulp-standard |
277c7303323897973a643d464bef668177004af2 | .travis.yml | .travis.yml | # Travis CI integration
# Defaults to GNU GCC and autotools: ./configure && make && make test
language: c
# Use newer Travis "trusty" image to get newer bash 4.3.*
dist: trusty
# We don't need to install packages, use dockerized build, quicker
sudo: false
# Get and install the Bash Automated Testing System (bats)
before_script:
- git clone https://github.com/sstephenson/bats.git /tmp/bats
- mkdir -p /tmp/local
- bash /tmp/bats/install.sh /tmp/local
- export PATH=$PATH:/tmp/local/bin
# We don't store generated files (configure and Makefile) in GIT,
# so we must customize the default build script to run ./autogen.sh
script:
- ./autogen.sh
- ./configure
- make
- make test
- bats tests
| # Travis CI integration
# Defaults to GNU GCC and autotools: ./configure && make && make test
language: c
# Use newer Travis "trusty" image to get newer bash 4.3.*
dist: trusty
# We don't need to install packages, use dockerized build, quicker
sudo: false
# Get and install the Bash Automated Testing System (bats)
before_script:
- git clone https://github.com/sstephenson/bats.git /tmp/bats
- mkdir -p /tmp/local
- bash /tmp/bats/install.sh /tmp/local
- export PATH=$PATH:/tmp/local/bin
# We don't store generated files (configure and Makefile) in GIT,
# so we must customize the default build script to run ./autogen.sh
script:
- ./autogen.sh
- ./configure
- make
- make test
- PATH=$PATH:./src bats tests
| Set PATH to netcalc for BATS | Set PATH to netcalc for BATS
Signed-off-by: Joachim Nilsson <583c295fd7602c168ad814279bbc3894ba65f5d6@gmail.com>
| YAML | bsd-3-clause | troglobit/sipcalc,troglobit/netcalc,troglobit/sipcalc,troglobit/netcalc |
ff499ac32336c80bf0bc19749dab9207134eb302 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
addons:
apt:
packages:
- ffmpeg
install:
- python setup.py install
script:
- python -c "import audioread"
| language: python
python:
- "2.7"
- "3.6"
addons:
apt:
sources:
- trusty-media
packages:
- ffmpeg
install:
- python setup.py install
script:
- python -c "import audioread"
| Add a PPA source for ffmpeg | Add a PPA source for ffmpeg
| YAML | mit | beetbox/audioread |
58d979322c7f8edee4bf46f3316eb2fc4bca7da3 | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.6.0
before_install:
- sudo apt-get update
- Y | sudo apt-get install -qqy docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
script:
- docker-compose -f docker-compose-test.yml build
- docker-compose -f docker-compose-test.yml run --rm -e $GITHUB_API_TOKEN -e $MAGE_ACCOUNT_PUBLIC_KEY -e $MAGE_ACCOUNT_PRIVATE_KEY magento2 magento
| sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.6.0
before_install:
- sudo apt-get remove -qqy docker-engine
- sudo apt-get autoremove --purge docker-engine
- sudo apt-get update
- sudo apt-get install -qqy docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
script:
- docker-compose -f docker-compose-test.yml build
- docker-compose -f docker-compose-test.yml run --rm -e $GITHUB_API_TOKEN -e $MAGE_ACCOUNT_PUBLIC_KEY -e $MAGE_ACCOUNT_PRIVATE_KEY magento2 magento
| Remove docker-engine pakckage before update it | Remove docker-engine pakckage before update it
| YAML | mit | sirateck/devops-magento2 |
b020946fcfe1d570941ef43a61a9c2f3caa23774 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
include:
- php: 5.6
env: PHPCS=1
allow_failures:
- php: 7.0
- php: hhvm-nightly
install:
- composer self-update
- composer install --prefer-dist --no-interaction
before_script:
- sh -c "if [ '$PHPCS' = '1' ]; then composer require cakephp/cakephp-codesniffer:~2.0; fi"
- phpenv rehash
script:
- sh -c "if [ '$PHPCS' != '1' ]; then phpunit; fi"
- sh -c "if [ '$PHPCS' = '1' ]; then vendor/bin/phpcs -p --extensions=php,css,js --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./config ./webroot --ignore=./webroot/css/base.css,./webroot/css/cdn-fallback,./webroot/js/cdn-fallback; fi"
notifications:
email: false
| language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
include:
- php: 5.6
env: PHPCS=1
allow_failures:
- php: 7.0
- php: hhvm-nightly
install:
- composer self-update
- composer install --prefer-dist --no-interaction
before_script:
- sh -c "if [ '$PHPCS' = '1' ]; then composer require cakephp/cakephp-codesniffer:~2.0; fi"
- phpenv rehash
script:
- sh -c "if [ '$PHPCS' != '1' ]; then phpunit; fi"
- sh -c "if [ '$PHPCS' = '1' ]; then vendor/bin/phpcs -p --extensions=php,ctp,css,js --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./config ./webroot --ignore=./webroot/css/base.css,./webroot/css/cdn-fallback,./webroot/js/cdn-fallback; fi"
notifications:
email: false
| Include ctp files in PHPCS run | Include ctp files in PHPCS run
| YAML | mit | alt3/cakebox-console,alt3/cakebox-console,alt3/cakebox-console |
3af64bba34852b1f33d7b313d91ccd087f4a80c1 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_script:
- mkdir build
- cd build
- cmake ..
script: make && make test
| language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libprotobuf-dev
before_script:
- mkdir build
- cd build
- cmake ..
script: make && make test
| Install the Protocol Buffer library dependency before building. | Install the Protocol Buffer library dependency before building.
| YAML | apache-2.0 | vertica/orc,vertica/orc,jorgemarsal/orc,vertica/orc,jorgemarsal/orc,jorgemarsal/orc,jorgemarsal/orc,jorgemarsal/orc,jorgemarsal/orc,vertica/orc,jorgemarsal/orc,vertica/orc,vertica/orc,vertica/orc,jorgemarsal/orc,vertica/orc |
09c5225805a3dbd89ebca1785d9b80951e097a72 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
| sudo: false
language: node_js
node_js:
- iojs
- "0.12"
| Remove node.js 0.10 from CI | Remove node.js 0.10 from CI
| YAML | mit | ai/browserslist,mdix/browserslist |
f1a5e2f7930d3504ccea7b22adfd517bc82251c9 | .travis.yml | .travis.yml | language: python
python:
- "3.7-dev"
cache: pip
install:
- pip install -r requirements.txt
script:
- pylint tracki
- flake8
- mypy tracki
- pytest
| language: python
python:
- "3.7"
dist: xenial
cache: pip
install:
- pip install -r requirements.txt
script:
- pylint tracki
- flake8
- mypy tracki
- pytest
| Use xenial and Python 3.7 on Travis | Use xenial and Python 3.7 on Travis
| YAML | mit | rok-povsic/Tracki |
fa50bbbe3909d0ef103a09fe7abab51e68e87c07 | .travis.yml | .travis.yml | language: ruby
cache: bundler
gemfile: docs/Gemfile
script:
- bundle exec jekyll algolia --config docs/_config.yml
branches:
only:
# Change this to gh-pages if you're deploying using the gh-pages branch
- master
rvm:
- 2.4 | language: ruby
cache: bundler
gemfile: docs/Gemfile
script:
- bundle exec jekyll algolia --source docs --destination docs/_site --config docs/_config.yml
branches:
only:
# Change this to gh-pages if you're deploying using the gh-pages branch
- master
rvm:
- 2.4 | Add source and destination paths to build script | Add source and destination paths to build script
| YAML | mit | bum752/bum752.github.io,code-not-found/code-not-found.github.io,robmarkoski/robmarkoski.github.io,barryboy/barryboy.github.io,gadobe/gadobe.github.io,aaronherman/aaronherman.github.io,waldirio/waldirio.github.io,lucasnetau/lucasnetau.github.io,Dhvanan/Dhvanan.github.io,mmistakes/minimal-mistakes,Dhvanan/Dhvanan.github.io,juanlu-sanz/juanlu-sanz.github.io,cmbosma/cmbosma.github.io,chrismacp/chrismacp.github.io,alexstyl/alexstyl.github.io,dblalock/dblalock.github.io,kozuli/kozuli.github.io,nvpnathan/nvpnathan.github.io,luisDVA/luisdva.github.io,kamilszymanski/kamilszymanski.github.io,JesseWaas/jessewaas.github.io,XIAOYixuan/XIAOYixuan.github.io,ftclausen/ftclausen.github.io,LukeJDPunnett/LukeJDPunnett.github.io,code-not-found/code-not-found.github.io,martinapugliese/martinapugliese.github.io,martinapugliese/martinapugliese.github.io,adokter/adokter.github.io,gadobe/gadobe.github.io,Vel0x/vel0x.github.io,dkoprowski/dkoprowski.github.io,Pscheidl/pscheidl.github.io,tehrlich/tehrlich.github.io,Jackie9/Jackie9.github.io,widdowquinn/widdowquinn.github.io,sorrel/minimal-mistakes,kamilszymanski/kamilszymanski.github.io,gbpcosta/gbpcosta.github.io,luisDVA/luisdva.github.io,jijames/dfir.science,barryboy/barryboy.github.io,Jackie9/Jackie9.github.io,GersonDias/gersondias.github.io,Vel0x/vel0x.github.io,XIAOYixuan/XIAOYixuan.github.io,kanaloa/kanaloa.github.io,dunkinnear/dunkinnear.github.io,tannn/tannn.github.io,bighi/bighi.github.io,lesserwhirls/lesserwhirls.github.io,Pscheidl/pscheidl.github.io,anhluong/anhluong.github.io,widdowquinn/widdowquinn.github.io,Xoke/xoke.github.io,vatervonacht/vatervonacht.github.io,nithinvenugopal/nithinvenugopal.github.io,barryboy/barryboy.github.io,mohamed-barakat/mohamed-barakat.github.io,bighi/bighi.github.io,przemyslawwozniak/przemyslawwozniak.github.io,dispersing/dispersing.github.io,gitfvb/minimal-mistakes,tehrlich/tehrlich.github.io,juanlu-sanz/juanlu-sanz.github.io,przemyslawwozniak/przemyslawwozniak.github.io,RosieCampbell/RosieCampbell.github.io,sagnikb/sagnikb.github.io,stevans/stevans.github.io,FilippoMito/filippomito.github.io,vcidst/vcidst.github.io,singhal/singhal.github.io,waldirio/waldirio.github.io,seunghwanyeo/seunghwanyeo.github.io,logankp/logankp.github.io,akashmjn/akashmjn.github.io,lesserwhirls/lesserwhirls.github.io,prakharguptage/prakharguptage.github.io,aisouard/aisouard.github.io,RyanMilstead1/website,adokter/adokter.github.io,dispersing/dispersing.github.io,Vel0x/vel0x.github.io,poudelprakash/poudelprakash.github.io,dkoprowski/dkoprowski.github.io,agakshat/agakshat.github.io,alexstyl/alexstyl.github.io,singhal/singhal.github.io,kanaloa/kanaloa.github.io,SeungyeonKang/seungyeonkang.github.io,USDA-ARS-GBRU/Microbiome-workshop,poudelprakash/poudelprakash.github.io,gbpcosta/gbpcosta.github.io,nithinvenugopal/nithinvenugopal.github.io,dispersing/dispersing.github.io,dispersing/dispersing.github.io,robmarkoski/robmarkoski.github.io,luisDVA/luisdva.github.io,kamilszymanski/kamilszymanski.github.io,waldirio/waldirio.github.io,robmarkoski/robmarkoski.github.io,lucasnetau/lucasnetau.github.io,FilippoMito/filippomito.github.io,AirLoft/minimal-mistakes,Jackie9/Jackie9.github.io,akashmjn/akashmjn.github.io,singhal/singhal.github.io,mmistakes/minimal-mistakes,sagnikb/sagnikb.github.io,gyandeeps/gyandeeps.github.io,LoveMeWithoutAll/lovemewithoutall.github.io,LukeJDPunnett/LukeJDPunnett.github.io,logankp/logankp.github.io,GersonDias/gersondias.github.io,Xoke/xoke.github.io,johnson-li/johnson-li.github.io,costanzo/costanzo.github.io,gyandeeps/gyandeeps.github.io,thexiaozhuzhu/thexiaozhuzhu.github.io,juanlu-sanz/juanlu-sanz.github.io,Dhvanan/Dhvanan.github.io,RosieCampbell/RosieCampbell.github.io,PosiTUne/positune.github.io,alcalyn/alcalyn.github.io,vcidst/vcidst.github.io,cmbosma/cmbosma.github.io,poudelprakash/poudelprakash.github.io,RosieCampbell/RosieCampbell.github.io,tannn/tannn.github.io,prakharguptage/prakharguptage.github.io,kaitokikuchi/kaitokikuchi.github.io,eroth/eroth.github.io,bps90/bps90.github.io,gadobe/gadobe.github.io,jungwook-lee/jungwook-lee.github.io,widdowquinn/widdowquinn.github.io,phcerdan/phcerdan.github.io,agakshat/agakshat.github.io,nvpnathan/nvpnathan.github.io,dblalock/dblalock.github.io,gitfvb/minimal-mistakes,gbpcosta/gbpcosta.github.io,vatervonacht/vatervonacht.github.io,alexstyl/alexstyl.github.io,akashmjn/akashmjn.github.io,JesseWaas/jessewaas.github.io,cmbosma/cmbosma.github.io,LoveMeWithoutAll/lovemewithoutall.github.io,luisDVA/luisdva.github.io,ftclausen/ftclausen.github.io,objectprogr/objectprogr.github.io,dunkinnear/dunkinnear.github.io,LukeJDPunnett/LukeJDPunnett.github.io,aisouard/aisouard.github.io,lesserwhirls/lesserwhirls.github.io,tjmahr/tjmahr.github.io,code-not-found/code-not-found.github.io,dblalock/dblalock.github.io,chrismacp/chrismacp.github.io,anhluong/anhluong.github.io,dev4223/ondata,nithinvenugopal/nithinvenugopal.github.io,tbsexton/tbsexton.github.io,LoveMeWithoutAll/lovemewithoutall.github.io,FilippoMito/filippomito.github.io,tehrlich/tehrlich.github.io,costanzo/costanzo.github.io,JesseWaas/jessewaas.github.io,sorrel/minimal-mistakes,AirLoft/minimal-mistakes,poudelprakash/poudelprakash.github.io,agakshat/agakshat.github.io,gitfvb/minimal-mistakes,jijames/dfir.science,jijames/dfir.science,ftclausen/ftclausen.github.io,prakharguptage/prakharguptage.github.io,anhluong/anhluong.github.io,dev4223/ondata,HectorYee/hectoryee.github.io,objectprogr/objectprogr.github.io,hoch1009/hoch1009.github.io,vatervonacht/vatervonacht.github.io,oh4851/oh4851.github.io,nvpnathan/nvpnathan.github.io,kaitokikuchi/kaitokikuchi.github.io,USDA-ARS-GBRU/Microbiome-workshop,ashoksahoo/ashoksahoo.github.io,tannn/tannn.github.io,sorrel/minimal-mistakes,alcalyn/alcalyn.github.io,PosiTUne/positune.github.io,logankp/logankp.github.io,khbrst/khbrst.github.io,PosiTUne/positune.github.io,vcidst/vcidst.github.io,tjmahr/tjmahr.github.io,mmistakes/minimal-mistakes,SabotagePerformanceAppraisals/seattle-scrum,yukongis/yukongis.github.io,emory/inc-mm-v4,bps90/bps90.github.io,costanzo/costanzo.github.io,HectorYee/hectoryee.github.io,keelezibel/keelezibel.github.io,RyanMilstead1/website,RyanMilstead1/website,Thecontrarian/Thecontrarian.github.io,lucasnetau/lucasnetau.github.io,eroth/eroth.github.io,eroth/eroth.github.io,Sebastian-D/Sebastian-D.github.io,jungwook-lee/jungwook-lee.github.io,ashoksahoo/ashoksahoo.github.io,aisouard/aisouard.github.io,bum752/bum752.github.io,keelezibel/keelezibel.github.io,dev4223/ondata,martinapugliese/martinapugliese.github.io,objectprogr/objectprogr.github.io,oh4851/oh4851.github.io,Sebastian-D/Sebastian-D.github.io,oh4851/oh4851.github.io,bps90/bps90.github.io,dkoprowski/dkoprowski.github.io,SabotagePerformanceAppraisals/seattle-scrum,bps90/bps90.github.io,thexiaozhuzhu/thexiaozhuzhu.github.io,gadobe/gadobe.github.io,Pscheidl/pscheidl.github.io,bum752/bum752.github.io,khbrst/khbrst.github.io,juanlu-sanz/juanlu-sanz.github.io,kaitokikuchi/kaitokikuchi.github.io,XIAOYixuan/XIAOYixuan.github.io,kozuli/kozuli.github.io,przemyslawwozniak/przemyslawwozniak.github.io,GersonDias/gersondias.github.io,tbsexton/tbsexton.github.io,phcerdan/phcerdan.github.io,aaronherman/aaronherman.github.io,emory/inc-mm-v4,sagnikb/sagnikb.github.io,tbsexton/tbsexton.github.io,chrismacp/chrismacp.github.io,vtrnnhlinh/vtrnnhlinh.github.io,tjmahr/tjmahr.github.io,khbrst/khbrst.github.io,AirLoft/minimal-mistakes,thexiaozhuzhu/thexiaozhuzhu.github.io,kozuli/kozuli.github.io,vtrnnhlinh/vtrnnhlinh.github.io,NaxAlpha/naxalpha.github.io,HectorYee/hectoryee.github.io,USDA-ARS-GBRU/Microbiome-workshop,johnson-li/johnson-li.github.io,yukongis/yukongis.github.io,phcerdan/phcerdan.github.io,adokter/adokter.github.io,chrismacp/chrismacp.github.io,yukongis/yukongis.github.io,tjmahr/tjmahr.github.io,hoch1009/hoch1009.github.io,johnson-li/johnson-li.github.io,gadobe/gadobe.github.io,aaronherman/aaronherman.github.io,SabotagePerformanceAppraisals/seattle-scrum,gyandeeps/gyandeeps.github.io,stevans/stevans.github.io,Xoke/xoke.github.io,tjmahr/tjmahr.github.io,dunkinnear/dunkinnear.github.io,bighi/bighi.github.io,keelezibel/keelezibel.github.io,ashoksahoo/ashoksahoo.github.io,jungwook-lee/jungwook-lee.github.io,stevans/stevans.github.io,vtrnnhlinh/vtrnnhlinh.github.io,martinapugliese/martinapugliese.github.io,emory/inc-mm-v4,Sebastian-D/Sebastian-D.github.io,hoch1009/hoch1009.github.io,alcalyn/alcalyn.github.io,jijames/dfir.science |
cdc3e403824f5c817518feb4c5f737b39287e386 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
- rvm: truffleruby
fast_finish: true
branches:
only: master
notifications:
email: false
| ---
language: ruby
sudo: false
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
- rvm: truffleruby
fast_finish: true
branches:
only: master
notifications:
email: false
| Change to stop caching bundler | Change to stop caching bundler
| YAML | mit | piotrmurach/tty-prompt,peter-murach/tty-prompt |
78e54383a4da1a6cc01b755b78bb90475ed2d964 | .travis.yml | .travis.yml | language: sh
before_script:
- sudo add-apt-repository -y "deb http://mirrors.kernel.org/ubuntu utopic main universe"
- sudo apt-get -y update
- sudo apt-get -y install shellcheck
script:
- shellcheck *.sh
notifications:
email: false
branches:
only:
- master
| language: sh
before_script:
- wget "http://ftp.debian.org/debian/pool/main/s/shellcheck/shellcheck_0.3.7-5_amd64.deb"
- sudo dpkg -i "shellcheck_0.3.7-5_amd64.deb"
script:
- shellcheck *.sh
notifications:
email: false
branches:
only:
- master
| Update ShellCheck installation method for Travis | Update ShellCheck installation method for Travis
| YAML | mit | ntpeters/homebrew-notifier |
56e57047a73136b0dd16e276de5c06bcc03fb27a | .travis.yml | .travis.yml | language: python
python:
- 2.7
env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
before_install:
- export DJANGO_SETTINGS_MODULE=app.settings
- export PYTHONPATH=$HOME/builds/fatboystring/csv_generator
- export PIP_USE_MIRRORS=true
install:
- pip install -r requirements.txt
- pip install django==$DJANGO --quiet
script:
- "if [[ ${DJANGO} == 1.7 ]]; then python manage.py syncdb --noinput; else python manage.py migrate --noinput; fi" | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
before_install:
- export DJANGO_SETTINGS_MODULE=app.settings
- export PYTHONPATH=$HOME/builds/fatboystring/csv_generator
- export PIP_USE_MIRRORS=true
install:
- pip install -r requirements.txt
- pip install django==$DJANGO --quiet
script:
- "if [[ ${DJANGO} == 1.7 ]]; then python manage.py syncdb --noinput; else python manage.py migrate --noinput; fi" | Test with more versions of django and python | Test with more versions of django and python
| YAML | mit | fatboystring/csv_generator,fatboystring/csv_generator |
976143d0eead9cffaed4fd5fd1dbe1b49614b5ba | .travis.yml | .travis.yml | language: python
python:
- 3.4
- 3.5
- 3.6
env:
- DJANGO="1.11"
- DJANGO="2.0"
- DJANGO="2.1"
install:
- pip install tox tox-travis
script:
- tox
matrix:
fast_finish: true
| language: python
python:
- 3.4
- 3.5
- 3.6
env:
- DJANGO="1.11"
- DJANGO="2.0"
- DJANGO="2.1"
install:
- pip install tox tox-travis
script:
- tox
matrix:
fast_finish: true
include:
- { python: "3.6", env: TOXENV=docs }
| Add "docs" build on Travis | Add "docs" build on Travis
| YAML | bsd-3-clause | snowball-one/cid |
40a060488fff32dee6c655408ad3f84d076764e9 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
| language: node_js
node_js:
- "0.6"
- "0.8"
- "0.10"
- "0.11"
| Add tests for node v0.10 and v0.11 | Add tests for node v0.10 and v0.11
| YAML | mit | Submersible/node-staticfile |
ca4505eb0875a8b9d8b95f8733130086e87b2d53 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install: echo "skip './gradlew assemble' step"
script: ./gradlew --no-daemon
after_success:
- bash <(curl -s https://codecov.io/bash)
addons:
apt:
packages:
- oracle-java8-installer
| language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install: true
script: ./gradlew --no-daemon
after_success:
- bash <(curl -s https://codecov.io/bash)
addons:
apt:
packages:
- oracle-java8-installer
| Improve skipping of install step in CI | Improve skipping of install step in CI | YAML | mit | RemonSinnema/awe,RemonSinnema/awe,RemonSinnema/awe |
90c436c741b3d9b577ddcf66de886795ff3b9f8c | .travis.yml | .travis.yml | rvm:
- 1.8.7
# - 1.9.2
- 1.9.3
- 2.0.0
script: bundle exec rake spec
| rvm:
- 1.8.7
# - 1.9.2
- 1.9.3
- 2.0.0
script: bundle exec rspec --color --format progress
| Use progress formatter on Travis | Use progress formatter on Travis
| YAML | apache-2.0 | sempervictus/chef,kaznishi/chef,sanditiffin/chef,faspl/chef,jordane/chef,nathwill/chef,lamont-granquist/chef,kaznishi/chef,renanvicente/chef,grubernaut/chef,ducthanh/chef,mwrock/chef,tbunnyman/chef,karthikrev/chef,lamont-granquist/chef,tbriggs-curse/chef,faspl/chef,askl56/chef,antonifs/chef,nathwill/chef,gene1wood/chef,youngjl1/chef,paulmooring/chef,andrewpsp/chef,pburkholder/chef,adamleff/chef,circleback/chef,nsdavidson/chef,martinisoft/chef,sideci-sample/sideci-sample-chef,youngjl1/chef,sempervictus/chef,ekometti/chef,Tensibai/chef,chef/chef,jimmymccrory/chef,jordane/chef,mwrock/chef,3dinfluence/chef,OpSitters/chef,docwhat/chef,jordane/chef,sanditiffin/chef,sysbot/chef,faspl/chef,youngjl1/chef,sekrett/chef,mio-g/chef,sometimesfood/chef,skmichaelson/chef,b002368/chef-repo,jonlives/chef,sekrett/chef,3dinfluence/chef,cachamber/chef,grubernaut/chef,aaron-lane/chef,erkolson/chef,h4ck3rm1k3/chef,mwrock/chef,pburkholder/chef,josb/chef,malisettirammurthy/chef,EasonYi/chef,paulmooring/chef,martinisoft/chef,martinb3/chef,Tensibai/chef,mikedodge04/chef,nathwill/chef,custora/chef,cmluciano/chef,juliandunn/chef,baberthal/chef,gsaslis/chef,bahamas10/chef,zshuo/chef,bahamas10/chef,Igorshp/chef,Ppjet6/chef,3dinfluence/chef,smurawski/chef,jordane/chef,zuazo-forks/chef,jimmymccrory/chef,tbriggs-curse/chef,ekometti/chef,strangelittlemonkey/chef,lamont-granquist/chef,Ppjet6/chef,circleback/chef,zuazo-forks/chef,aaron-lane/chef,lamont-granquist/chef,jmhardison/chef,polamjag/chef,jblaine/chef,webframp/chef,legal90/chef,zshuo/chef,cachamber/chef,renanvicente/chef,tas50/chef-1,nalingarg2/chef-1,baberthal/chef,adamleff/chef,joemiller/chef,sysbot/chef,tbunnyman/chef,sempervictus/chef,sanditiffin/chef,ChaosCloud/chef,nathwill/chef,zuazo-forks/chef,ducthanh/chef,docwhat/chef,someara/chef,webframp/chef,nellshamrell/chef,gene1wood/chef,oclaussen/chef,danielsdeleo/seth,nellshamrell/chef,mal/chef,tomdoherty/chef,webframp/chef,evan2645/chef,jk47/chef,webframp/chef,sometimesfood/chef,mikedodge04/chef,cgvarela/chef,mio-g/chef,circleback/chef,acaiafa/chef,cgvarela/chef,3dinfluence/chef,cgvarela/chef,ktpan/chef-play,ekometti/chef,erkolson/chef,nvwls/chef,nguyen-tien-mulodo/chef,jk47/chef,AndyBoucher/Chef-Testing,ranjib/chef,MichaelPereira/chef,b002368/chef-repo,juliandunn/chef,nicklv/chef,tbriggs-curse/chef,nvwls/chef,higanworks/chef,faspl/chef,someara/chef,jmhardison/chef,permyakovsv/chef,nicklv/chef,strangelittlemonkey/chef,askl56/chef,smurawski/chef,Kast0rTr0y/chef,mattray/chef,karthikrev/chef,erkolson/chef,sanditiffin/chef,sanditiffin/chef,Ppjet6/chef,faspl/chef,grubernaut/chef,nvwls/chef,malisettirammurthy/chef,antonifs/chef,mio-g/chef,kaznishi/chef,EasonYi/chef,natewalck/chef,someara/chef,jagdeesh109/chef,tbriggs-curse/chef,natewalck/chef,ktpan/chef-play,ducthanh/chef,Ppjet6/chef,nicklv/chef,lamont-granquist/chef,tas50/chef-1,docwhat/chef,nicklv/chef,DeWaRs1206/chef,joemiller/chef,kaznishi/chef,pburkholder/chef,ChaosCloud/chef,jaymzh/chef,BackSlasher/chef,renanvicente/chef,h4ck3rm1k3/chef,Kast0rTr0y/chef,sysbot/chef,tbriggs-curse/chef,pburkholder/chef,h4ck3rm1k3/chef,skmichaelson/chef,jk47/chef,cmluciano/chef,brettcave/chef,jonlives/chef,cachamber/chef,martinisoft/chef,andrewpsp/chef,jagdeesh109/chef,oclaussen/chef,DeWaRs1206/chef,mal/chef,paulmooring/chef,polamjag/chef,mikedodge04/chef,mattray/chef,tbriggs-curse/chef,mal/chef,b002368/chef-repo,skmichaelson/chef,permyakovsv/chef,nguyen-tien-mulodo/chef,BackSlasher/chef,jblaine/chef,swalberg/chef,mikedodge04/chef,sysbot/chef,bahamas10/chef,ekometti/chef,sanditiffin/chef,acaiafa/chef,nalingarg2/chef-1,mal/chef,joemiller/chef,nsdavidson/chef,Igorshp/chef,MichaelPereira/chef,adamleff/chef,ckaushik/chef,sekrett/chef,juliandunn/chef,b002368/chef-repo,EasonYi/chef,patcon/chef,erkolson/chef,brettcave/chef,patcon/chef,h4ck3rm1k3/chef,adamleff/chef,aaron-lane/chef,evan2645/chef,skmichaelson/chef,acaiafa/chef,clintoncwolfe/chef,jkerry/chef,Ppjet6/chef,joemiller/chef,criteo-forks/chef,someara/chef,higanworks/chef,gene1wood/chef,legal90/chef,jkerry/chef,renanvicente/chef,sideci-sample/sideci-sample-chef,kaznishi/chef,paulmooring/chef,malisettirammurthy/chef,nalingarg2/chef-1,mikefaille/chef,ktpan/chef-play,oclaussen/chef,nalingarg2/chef-1,ChaosCloud/chef,3dinfluence/chef,ekometti/chef,webframp/chef,swalberg/chef,clintoncwolfe/chef,grubernaut/chef,karthikrev/chef,swalberg/chef,ccsplit/chef,onlyhavecans/chef,joemiller/chef,natewalck/chef,robmul/chef,MichaelPereira/chef,ranjib/chef,ccope/chef,pburkholder/chef,patcon/chef,ekometti/chef,ccsplit/chef,mio-g/chef,clintoncwolfe/chef,permyakovsv/chef,zuazo-forks/chef,natewalck/chef,paulmooring/chef,zshuo/chef,jblaine/chef,mikefaille/chef,tomdoherty/chef,juliandunn/chef,mattray/chef,josb/chef,BackSlasher/chef,gsaslis/chef,faspl/chef,jmhardison/chef,jonlives/chef,zshuo/chef,ranjib/chef,nguyen-tien-mulodo/chef,kaznishi/chef,askl56/chef,AndyBoucher/Chef-Testing,ckaushik/chef,joemiller/chef,swalberg/chef,Kast0rTr0y/chef,jkerry/chef,webframp/chef,evan2645/chef,ranjib/chef,OpSitters/chef,gsaslis/chef,docwhat/chef,zuazo-forks/chef,ktpan/chef-play,MsysTechnologiesllc/chef,Igorshp/chef,smurawski/chef,cmluciano/chef,martinb3/chef,martinisoft/chef,strangelittlemonkey/chef,sempervictus/chef,jblaine/chef,criteo-forks/chef,andrewpsp/chef,swalberg/chef,baberthal/chef,tas50/chef-1,erkolson/chef,patcon/chef,askl56/chef,nellshamrell/chef,criteo-forks/chef,nicklv/chef,nvwls/chef,sekrett/chef,strangelittlemonkey/chef,josb/chef,ChaosCloud/chef,ccope/chef,antonifs/chef,gene1wood/chef,OpSitters/chef,brettcave/chef,cmluciano/chef,permyakovsv/chef,ccope/chef,acaiafa/chef,ChaosCloud/chef,ChaosCloud/chef,sysbot/chef,docwhat/chef,chef/chef,swalberg/chef,circleback/chef,mikefaille/chef,aaron-lane/chef,andrewpsp/chef,onlyhavecans/chef,antonifs/chef,nsdavidson/chef,jonlives/chef,acaiafa/chef,nellshamrell/chef,custora/chef,mio-g/chef,patcon/chef,patcon/chef,pburkholder/chef,BackSlasher/chef,sempervictus/chef,Kast0rTr0y/chef,MsysTechnologiesllc/chef,DeWaRs1206/chef,strangelittlemonkey/chef,DeWaRs1206/chef,natewalck/chef,mattray/chef,zshuo/chef,jaymzh/chef,nathwill/chef,jimmymccrory/chef,Igorshp/chef,aaron-lane/chef,nalingarg2/chef-1,mikefaille/chef,jkerry/chef,sekrett/chef,MsysTechnologiesllc/chef,OpSitters/chef,ducthanh/chef,ccope/chef,someara/chef,nguyen-tien-mulodo/chef,evan2645/chef,sometimesfood/chef,b002368/chef-repo,circleback/chef,higanworks/chef,mikefaille/chef,legal90/chef,jkerry/chef,renanvicente/chef,cgvarela/chef,higanworks/chef,onlyhavecans/chef,jagdeesh109/chef,AndyBoucher/Chef-Testing,BackSlasher/chef,nguyen-tien-mulodo/chef,nellshamrell/chef,paulmooring/chef,oclaussen/chef,custora/chef,youngjl1/chef,mattray/chef,grubernaut/chef,criteo-forks/chef,evan2645/chef,smurawski/chef,EasonYi/chef,nicklv/chef,AndyBoucher/Chef-Testing,baberthal/chef,jimmymccrory/chef,lamont-granquist/chef,adamleff/chef,youngjl1/chef,Igorshp/chef,gsaslis/chef,polamjag/chef,MichaelPereira/chef,ranjib/chef,bahamas10/chef,OpSitters/chef,EasonYi/chef,ccsplit/chef,onlyhavecans/chef,legal90/chef,cmluciano/chef,martinb3/chef,bahamas10/chef,jonlives/chef,DeWaRs1206/chef,evan2645/chef,antonifs/chef,smurawski/chef,oclaussen/chef,karthikrev/chef,jk47/chef,sometimesfood/chef,mal/chef,sempervictus/chef,jimmymccrory/chef,legal90/chef,ccsplit/chef,ccsplit/chef,danielsdeleo/seth,tbunnyman/chef,robmul/chef,clintoncwolfe/chef,danielsdeleo/seth,cgvarela/chef,strangelittlemonkey/chef,sometimesfood/chef,AndyBoucher/Chef-Testing,martinb3/chef,sometimesfood/chef,mikefaille/chef,robmul/chef,skmichaelson/chef,erkolson/chef,nellshamrell/chef,tbunnyman/chef,jagdeesh109/chef,robmul/chef,natewalck/chef,aaron-lane/chef,jordane/chef,polamjag/chef,ktpan/chef-play,Tensibai/chef,criteo-forks/chef,chef/chef,MichaelPereira/chef,martinb3/chef,onlyhavecans/chef,jaymzh/chef,robmul/chef,jaymzh/chef,mal/chef,EasonYi/chef,cachamber/chef,gsaslis/chef,brettcave/chef,criteo-forks/chef,jk47/chef,malisettirammurthy/chef,brettcave/chef,jkerry/chef,ckaushik/chef,nvwls/chef,permyakovsv/chef,mio-g/chef,permyakovsv/chef,martinb3/chef,jmhardison/chef,nathwill/chef,3dinfluence/chef,acaiafa/chef,grubernaut/chef,ccsplit/chef,bahamas10/chef,josb/chef,jk47/chef,AndyBoucher/Chef-Testing,juliandunn/chef,OpSitters/chef,malisettirammurthy/chef,ckaushik/chef,antonifs/chef,cachamber/chef,ducthanh/chef,polamjag/chef,ktpan/chef-play,b002368/chef-repo,someara/chef,brettcave/chef,Igorshp/chef,mwrock/chef,ckaushik/chef,nsdavidson/chef,Tensibai/chef,sideci-sample/sideci-sample-chef,robmul/chef,jblaine/chef,askl56/chef,sideci-sample/sideci-sample-chef,h4ck3rm1k3/chef,mikedodge04/chef,malisettirammurthy/chef,youngjl1/chef,docwhat/chef,custora/chef,renanvicente/chef,polamjag/chef,DeWaRs1206/chef,Kast0rTr0y/chef,BackSlasher/chef,tbunnyman/chef,mikedodge04/chef,sekrett/chef,tomdoherty/chef,cachamber/chef,nguyen-tien-mulodo/chef,karthikrev/chef,jonlives/chef,tas50/chef-1,jmhardison/chef,circleback/chef,josb/chef,tbunnyman/chef,ducthanh/chef,zshuo/chef,custora/chef,legal90/chef,custora/chef,danielsdeleo/seth,josb/chef,ckaushik/chef,jmhardison/chef,chef/chef,ranjib/chef,adamleff/chef,gsaslis/chef,tomdoherty/chef,skmichaelson/chef,zuazo-forks/chef,Ppjet6/chef,oclaussen/chef,MichaelPereira/chef,MsysTechnologiesllc/chef,andrewpsp/chef,nsdavidson/chef,sideci-sample/sideci-sample-chef,martinisoft/chef,jimmymccrory/chef,Kast0rTr0y/chef,nalingarg2/chef-1,onlyhavecans/chef,tomdoherty/chef,nvwls/chef,jagdeesh109/chef,ccope/chef,jagdeesh109/chef,jblaine/chef,askl56/chef,karthikrev/chef,clintoncwolfe/chef,clintoncwolfe/chef,h4ck3rm1k3/chef,nsdavidson/chef,baberthal/chef,danielsdeleo/seth,baberthal/chef,higanworks/chef,Tensibai/chef,cgvarela/chef,smurawski/chef,andrewpsp/chef |
387963d3327978563e66216839b614329b787f6e | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
| Test Node.js 4 instead of io.js | Test Node.js 4 instead of io.js
See jadejs/jade#2083.
| YAML | mit | jadejs/jade-walk,pugjs/jade-walk |
d4e0ced41f5bfa14405f4d8f6c62a35d41324a21 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- "./requirements.sh"
- "pip install -e ."
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
script:
- "pip install unittest2"
- "assay --batch skyfield.tests"
- "cd skyfield/documentation && make doctest"
| # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- "./requirements.sh"
- "pip install -e ."
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
script:
- "pip install unittest2"
- "assay --batch skyfield.tests"
- "make -C skyfield/documentation doctest"
| Simplify "make" command for Travis CI | Simplify "make" command for Travis CI
| YAML | mit | ozialien/python-skyfield,GuidoBR/python-skyfield,ozialien/python-skyfield,skyfielders/python-skyfield,skyfielders/python-skyfield,GuidoBR/python-skyfield |
6ddfc35f25f0f9fa7897774205dd86801dde7eae | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "2.6"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: workshopvenues/manage.py test --settings=workshopvenues.settings_test venues
| language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: workshopvenues/manage.py test --settings=workshopvenues.settings_test venues
| Remove Python 2.6 build from TravisCI configuration file. | Remove Python 2.6 build from TravisCI configuration file.
| YAML | bsd-3-clause | andreagrandi/workshopvenues |
e2433606d8bfd515b8a787958ea274a6d9b08926 | .travis.yml | .travis.yml | dist: bionic
language: python
jobs:
fast_finish: true
include:
- python: '3.6'
env: TOX_ENV=py36
- python: '3.8'
env: TOX_ENV=py38
# - python: pypy3.5-5.10.1
# env: TOX_ENV=pypy3
- python: nightly
env: TOX_ENV=py3
- python: '3.8'
env: TOX_ENV=doc
- python: '3.8'
env: TOX_ENV=pep8
install:
- travis_retry pip install tox tox-venv
- python -VV
script:
- "tox -e $TOX_ENV -- $TOX_ARGS"
| dist: bionic
language: python
jobs:
fast_finish: true
include:
- python: '3.6'
env: TOX_ENV=py36
- python: '3.8'
env: TOX_ENV=py38
# - python: pypy3.5-5.10.1
# env: TOX_ENV=pypy3
- python: nightly
env: TOX_ENV=py3
- python: '3.8'
env: TOX_ENV=doc
- python: '3.8'
env: TOX_ENV=pep8
- python: '3.9'
env: TOX_ENV=py3
install:
- travis_retry pip install tox tox-venv
- python -VV
script:
- "tox -e $TOX_ENV -- $TOX_ARGS"
| Add Python 3.9 support on Travis | Add Python 3.9 support on Travis
| YAML | mit | vstinner/pyperf |
c105ea2dfa802884d7effb5bc8230f49a5442e2f | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
after_success:
- mvn clean cobertura:cobertura coveralls:report
| # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
after_success:
- mvn clean cobertura:cobertura coveralls:report
| Add oraclejdk7 to Travis CI. | Add oraclejdk7 to Travis CI.
git-svn-id: 92d2f100b6cafdf88e1adb9671e85c40510aab88@1790596 13f79535-47bb-0310-9956-ffa450edef68
| YAML | apache-2.0 | apache/commons-jxpath,apache/commons-jxpath,apache/commons-jxpath |
b1ec55acd2773a68019cc2df6718de43cf771a35 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
| Use dynamic node versions on Travis CI | Test(config): Use dynamic node versions on Travis CI | YAML | unlicense | fvdm/nodejs-europeana |
36269bafd15f2ea02b85794cb4758bfe59629c56 | .travis.yml | .travis.yml | language: csharp
solution: src/GitTools.Core.sln
sudo: true
install:
- sudo nuget update -self
- nuget restore src/GitTools.Core.sln
- nuget install NUnit.Runners -Version 3.2.1 -OutputDirectory ./src/packages
script:
- xbuild ./src/GitTools.Core.sln /property:Configuration="Debug" /verbosity:detailed
- mono --debug --runtime=v4.0.30319 ./src/packages/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe ./src/GitTools.Core.Tests/bin/Debug/GitTools.Core.Tests.Tests.dll
| language: csharp
solution: src/GitTools.Core.sln
sudo: true
install:
- sudo nuget update -self
- nuget restore src/GitTools.Core.sln
- nuget install NUnit.Runners -Version 3.2.1 -OutputDirectory ./src/packages
script:
- xbuild ./src/GitTools.Core.sln /property:Configuration="Debug" /verbosity:detailed
- mono --debug --runtime=v4.0.30319 ./src/packages/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe ./output/debug/GitTools.Core.Tests/net45/GitTools.Core.Tests.dll
| Fix path of the test DLL | Fix path of the test DLL
| YAML | mit | GitTools/GitTools.Core,JakeGinnivan/GitTools.Core |
0952e77a33b8910981e4ebf0750bb41bebb12fb2 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: java
jdk:
- openjdk8
- oraclejdk8
env: GRADLE_OPTS="-Xms1g -Xmx3g"
script: gradle build
before_deploy:
- rvm 1.9.3 do gem install mime-types -v 2.6.2
- for f in "./build/libs/ProjectNovacula-Anno*SNAPSHOT.jar"; do mv ${f} "./build/libs/ProjectNovacula-Anno-${TRAVIS_TAG}-${TRAVIS_BUILD_NUMBER}-SNAPSHOT.jar"; done
deploy:
file_glob: true
provider: releases
api-key: ${KEY}
file: "./build/libs/ProjectNovacula-Anno*.jar"
skip_cleanup: true
on:
tags: true | sudo: required
dist: trusty
language: java
jdk:
- openjdk8
- oraclejdk8
env: GRADLE_OPTS="-Xms1g -Xmx3g"
script: gradle build
notifications:
email: false
before_deploy:
- rvm 1.9.3 do gem install mime-types -v 2.6.2
- for f in "./build/libs/ProjectNovacula-Anno*SNAPSHOT.jar"; do mv ${f} "./build/libs/ProjectNovacula-Anno-${TRAVIS_TAG}-${TRAVIS_BUILD_NUMBER}-SNAPSHOT.jar"; done
deploy:
file_glob: true
provider: releases
api-key: ${KEY}
file: "./build/libs/ProjectNovacula-Anno*.jar"
skip_cleanup: true
on:
tags: true | STOP SENDING ME EMAILS DAMNIT | STOP SENDING ME EMAILS DAMNIT
| YAML | mit | FoxDenStudio/ProjectNovacula-Anno |
9e7093ec3106342ba98fd6da6f03e2b46f2ecafc | .travis.yml | .travis.yml | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower@1.7.9 polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
| dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
| Use a current version of bower again | Use a current version of bower again
We need a newer version of bower so that it can find its repository.
| YAML | apache-2.0 | Collaborne/paper-more-button |
cd6e1c58950ce16eca88a034ce95865bd56b19fd | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=master
matrix:
exclude:
- python: "3.3"
env: DJANGO=master
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO
after_script:
- coveralls
| sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=master
matrix:
exclude:
- python: "3.3"
env: DJANGO=master
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO
after_script:
- coveralls
| Switch to new Travis infrastructure | Switch to new Travis infrastructure
| YAML | mit | pinax/django-user-accounts,ntucker/django-user-accounts,mysociety/django-user-accounts,GeoNode/geonode-user-accounts,jpotterm/django-user-accounts,GeoNode/geonode-user-accounts,mysociety/django-user-accounts,ntucker/django-user-accounts,nderituedwin/django-user-accounts,jawed123/django-user-accounts,jpotterm/django-user-accounts,pinax/django-user-accounts,nderituedwin/django-user-accounts,jawed123/django-user-accounts |
c5b5563a5baa5cd50865b555dbd4449ea9b687df | .travis.yml | .travis.yml | language: node_js
dist: trusty
# before_script:
# - npm list -g firebase-tools --depth=0 || npm install -g firebase-tools
script:
- npm install
- npm run build
# after_success:
# - "$TRAVIS_BUILD_DIR/.travis/deploy.sh develop"
cache:
directories:
- '$(npm config get prefix)/bin/firebase-tools'
- node_modules
notifications:
email: false
webhooks: https://travis.webhooks.m4m.io
| language: node_js
dist: trusty
before_script:
- npm list -g firebase-tools --depth=0 || npm install -g firebase-tools
script:
- npm install
- npm run build
after_success:
- "./deploy.sh"
cache:
directories:
- '$(npm config get prefix)/bin/firebase-tools'
- node_modules
notifications:
email: false
webhooks: https://travis.webhooks.m4m.io
| Update (enable) after_success script in Travis | Update (enable) after_success script in Travis
| YAML | mit | move4mobile/move4mobile.github.io,move4mobile/move4mobile.github.io,move4mobile/move4mobile.github.io |
573962be295a0314f4407de134e4c1541515c07e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3
- 2.4
- 2.5
| language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
| Test against ruby versions 2.6 and 2.7 | Test against ruby versions 2.6 and 2.7
Ruby version 2.6 was introduced in alpine v3.11 and edge (latest) is using 2.7. | YAML | apache-2.0 | crayfishx/jacaranda |
191b4ea3a8440e7506a2148a1d7deec101c72e08 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
bundler_args: --without tools benchmarks
script:
- bundle exec rake spec
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby-9000
- ruby-head
- jruby-head
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| language: ruby
sudo: false
cache: bundler
bundler_args: --without tools benchmarks
script:
- bundle exec rake spec
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby-9000
- ruby-head
- jruby-head
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
addons:
code_climate:
repo_token: c1c8f334714254acf5da901ca4da6afe24b15408074faae27159e3d14a450b62
| Add token for Code Climate coverage reporting | Add token for Code Climate coverage reporting | YAML | mit | dry-rb/dry-view,hanami/view,hanami/view,dry-rb/dry-view,lotus/view |
bf5fabf7be2ce34d6e8088943949101b6007b341 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- oraclejdk8
after_success:
- .buildscript/deploy_snapshot.sh
env:
global:
- secure: "uVIUoNn5M4uM/jLq4A1AzPn87tAY3SnRsMfX8Qn0DhaBmqU57uA9NvwvDMYFk5hpeO+HY7XUN3eou4NTvD0KEKQYV94JZbQC40JxLAOLr1Twh3IaG54rfe90qmyHetFge62kaFLJ6H7EVcspA/E5Mreaz00MYyoqNnrun/tSKAw="
- secure: "B83As2Kbxdmul1LX23RlNGr9AciU7OSU5hE7R8vnnjNAwg2AdaoUn1p4PvEwxm1GDALDCS9Cp8OozP9S7aPWS0SedUrx/a2d+MkrqQ/E3Ot5QZOx4QZ8XCU4h22TEoKk0XnIhi5uuwtpOvWZjksZMa9rDbAww0C735JigyA0iF4="
branches:
except:
- gh-pages
notifications:
email: false
sudo: false
cache:
directories:
- $HOME/.m2
| language: java
dist: trusty
jdk:
- oraclejdk8
after_success:
- .buildscript/deploy_snapshot.sh
env:
global:
- secure: "uVIUoNn5M4uM/jLq4A1AzPn87tAY3SnRsMfX8Qn0DhaBmqU57uA9NvwvDMYFk5hpeO+HY7XUN3eou4NTvD0KEKQYV94JZbQC40JxLAOLr1Twh3IaG54rfe90qmyHetFge62kaFLJ6H7EVcspA/E5Mreaz00MYyoqNnrun/tSKAw="
- secure: "B83As2Kbxdmul1LX23RlNGr9AciU7OSU5hE7R8vnnjNAwg2AdaoUn1p4PvEwxm1GDALDCS9Cp8OozP9S7aPWS0SedUrx/a2d+MkrqQ/E3Ot5QZOx4QZ8XCU4h22TEoKk0XnIhi5uuwtpOvWZjksZMa9rDbAww0C735JigyA0iF4="
branches:
except:
- gh-pages
notifications:
email: false
sudo: false
cache:
directories:
- $HOME/.m2
| Drop support for OpenJDK 7. | Drop support for OpenJDK 7.
| YAML | apache-2.0 | square/jna-gmp,square/jna-gmp |
4797ce45bcb22f2112db27e175c1cfad23ed07dc | .travis.yml | .travis.yml | language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- '10'
- '8'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
| language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- '10'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
| Remove support for node 8 | Remove support for node 8 | YAML | mit | longlho/ts-transform-react-intl |
70058c72a15a4382122e3cbaf4b2406667c75ec2 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- phpunit tests
- ./tests/lint.sh
git:
depth: 5
| language: php
php:
- 5.4
- 5.5
- 5.6
- system
- hhvm
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
before_install:
- >
if [[ "$TRAVIS_PHP_VERSION" == "system" ]]; then
pushd $HOME;
git clone https://github.com/php/php-src.git;
pushd php-src;
./buildconf -f;
./configure --prefix=$HOME/.phpenv/versions/7 \
--with-curl --enable-soap --enable-sockets \
&& make && make install;
phpenv global 7;
popd; popd;
php --version;
mkdir $PWD/phar;
wget http://getcomposer.org/composer.phar -O $PWD/phar/composer;
wget https://phar.phpunit.de/phpunit.phar -O $PWD/phar/phpunit;
chmod +x $PWD/phar/*;
export PATH=$PWD/phar:$PATH;
fi
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- phpunit tests
- ./tests/lint.sh
git:
depth: 5
| Add support for php7 (using the current master branch) | Add support for php7 (using the current master branch)
| YAML | apache-2.0 | duncan3dc/sonos,fdp2/sonos,fdp2/sonos |
7310ed1eb98f79ce0657b00cf0286e5cb5d7fa4d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-19mode
| Add ruby 2.1.0 to Travis CI build matrix | Add ruby 2.1.0 to Travis CI build matrix
This should show when the issues in #49 are fixed.
| YAML | mit | magicalbanana/pry-rescue,sethk/pry-rescue,ConradIrwin/pry-rescue |
903ac300e34e9de03eec4aafb6c44bd556ca9f68 | .travis.yml | .travis.yml | notifications:
email:
on_success: never
on_failure: never
language: php
php:
- 7.2
- 7.1
before_script:
- echo Start travis
- echo Current dir is `pwd`
- echo Home dir is `echo ~`
- wget https://scrutinizer-ci.com/ocular.phar
- cd ..
- git clone git://github.com/squizlabs/PHP_CodeSniffer.git
- php PHP_CodeSniffer/bin/phpcs -h
- php PHP_CodeSniffer/bin/phpcbf -h
- phpenv rehash
script:
- php PHP_CodeSniffer/bin/phpcs -i
- php PHP_CodeSniffer/bin/phpcs --standard=/home/travis/build/thulin82/innebandybokning/.phpcs.xml
- cd innebandybokning
- phpunit
after_script:
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover | notifications:
email:
on_success: never
on_failure: never
language: php
php:
- 7.2
- 7.1
before_script:
- echo Start travis
- wget https://scrutinizer-ci.com/ocular.phar
- make composer-install
- phpenv rehash
script:
- make test
after_script:
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover | Use Makefile when building/testing on Travis | Use Makefile when building/testing on Travis
| YAML | mit | thulin82/innebandybokning,thulin82/innebandybokning |
77a350d4b2a7ad91cd04f8c2268ae28f77b2f298 | .travis.yml | .travis.yml | os:
- linux
- osx
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
before_script:
- npm install winston@2.3.0
- npm install https://github.com/ioBroker/ioBroker.js-controller/tarball/master --production
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
# - g++-4.8
- build-essential
| os:
- linux
- osx
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
before_script:
- npm install winston@2.3.0
- npm install https://github.com/ioBroker/ioBroker.js-controller/tarball/master --production
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| Revert "experiment to install build-essential instead of g++-4.8" | Revert "experiment to install build-essential instead of g++-4.8"
This reverts commit 26827b43bd7f14bba2f36ad204a2f8acd8d382d5.
| YAML | mit | Apollon77/ioBroker.nut,Apollon77/ioBroker.nut,Apollon77/ioBroker.nut |
9382fb669e5348288eff5f71c6fcb295f14fa718 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "3.4"
env:
- TOX_ENV=py26-django15
- TOX_ENV=py26-django16
- TOX_ENV=py27-django15
- TOX_ENV=py27-django16
- TOX_ENV=py27-django17
- TOX_ENV=py27-django18
- TOX_ENV=py27-django19
- TOX_ENV=py33-django15
- TOX_ENV=py33-django16
- TOX_ENV=py33-django17
- TOX_ENV=py33-django18
- TOX_ENV=py34-django15
- TOX_ENV=py34-django16
- TOX_ENV=py34-django17
- TOX_ENV=py34-django18
- TOX_ENV=py34-django19
- TOX_ENV=py35-django17
- TOX_ENV=py35-django18
- TOX_ENV=py35-django19
- TOX_ENV=pypy-django15
- TOX_ENV=pypy-django16
- TOX_ENV=pypy-django17
- TOX_ENV=pypy-django18
- TOX_ENV=pypy-django19
install:
- pip install -U tox
script:
- tox -e $TOX_ENV
| language: python
sudo: false
python:
- "3.5"
env:
- TOX_ENV=py26-django15
- TOX_ENV=py26-django16
- TOX_ENV=py27-django15
- TOX_ENV=py27-django16
- TOX_ENV=py27-django17
- TOX_ENV=py27-django18
- TOX_ENV=py27-django19
- TOX_ENV=py33-django15
- TOX_ENV=py33-django16
- TOX_ENV=py33-django17
- TOX_ENV=py33-django18
- TOX_ENV=py34-django15
- TOX_ENV=py34-django16
- TOX_ENV=py34-django17
- TOX_ENV=py34-django18
- TOX_ENV=py34-django19
- TOX_ENV=py35-django17
- TOX_ENV=py35-django18
- TOX_ENV=py35-django19
- TOX_ENV=pypy-django15
- TOX_ENV=pypy-django16
- TOX_ENV=pypy-django17
- TOX_ENV=pypy-django18
- TOX_ENV=pypy-django19
install:
- pip install -U tox
script:
- tox -e $TOX_ENV
| Use Python 3.5 as default Python | Use Python 3.5 as default Python
| YAML | mit | messense/djsubdomains |
42b5765f244de58d81b79413b313fd4e7777f21d | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
script: npm run travis-test
| language: node_js
node_js:
- 0.12
script: npm run travis-test
| Use Node 0.12 on Travis | Use Node 0.12 on Travis
| YAML | mit | davedoesdev/qlobber,davedoesdev/qlobber,davedoesdev/qlobber,davedoesdev/qlobber |
594d3c5ffbc712017df68af5b7f7f2142a7dff3f | .travis.yml | .travis.yml | language: php
php:
- 7.2
- 7.3
- 7.4
- 8.0snapshot
env:
- LARAVEL=^6.0
- LARAVEL=^7.0
- LARAVEL=^8.0
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-dist --no-progress
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- vendor/bin/test-reporter
| language: php
php:
- 7.2
- 7.3
- 7.4
- 8.0
env:
- LARAVEL=^6.0
- LARAVEL=^7.0
- LARAVEL=^8.0
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-dist --no-progress
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- vendor/bin/test-reporter
| Update Travis CI to use PHP 8.0 instead of 8.0snapshot | Update Travis CI to use PHP 8.0 instead of 8.0snapshot | YAML | mit | generationtux/php-healthz,generationtux/php-healthz,generationtux/php-healthz |
5ed51ef23df3f605a3e43d1becaf744a5b545c0f | .travis.yml | .travis.yml | language: node_js
sudo: false
addons:
apt:
packages:
- xvfb
- gnome-keyring
- libgnome-keyring-dev
node_js:
- "0.11"
- "0.10"
- "iojs"
notifications:
email: false
script: xvfb-run ./script/cibuild
git:
depth: 10
branches:
only:
- master
| language: node_js
sudo: false
addons:
apt:
packages:
- xvfb
- gnome-keyring
- libgnome-keyring-dev
env:
- CC=clang CXX=clang++ npm_config_clang=1
node_js:
- "0.11"
- "0.10"
- "iojs"
notifications:
email: false
script: xvfb-run ./script/cibuild
git:
depth: 10
branches:
only:
- master
| Use clang to compile modules | Use clang to compile modules
| YAML | mit | xeno-io/keytar,atom/node-keytar,havoc-io/keytar,atom/node-keytar,xeno-io/keytar,havoc-io/keytar,havoc-io/keytar,thesbros/node-keytar,atom/node-keytar,thesbros/node-keytar,atom/node-keytar,xeno-io/keytar,thesbros/node-keytar |
f4953e7c2243aa8d6464ddacc6f5e8b62f625f2f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "iojs"
before_script:
- "npm run grammar"
- "npm run gen-spec"
script: "npm run test && npm run test-spec"
after_script:
- "npm run report-coverage"
| language: node_js
node_js:
- "0.12"
- "iojs"
before_script:
- "node_modules/.bin/gulp default"
- "npm run grammar"
- "npm run gen-spec"
script: "npm run test && npm run test-spec"
after_script:
- "npm run report-coverage"
| Add building TypeScript sources to Travis | Add building TypeScript sources to Travis
| YAML | bsd-3-clause | dirk/hummingbird,dirk/hummingbird,dirk/hummingbird |
e5ebfb3084141ee982d0b0a006577a6b2381ce31 | .travis.yml | .travis.yml | language: ruby
cache: bundler
addons:
apt:
packages:
- redis-server
services:
- redis-server
before_install:
- sudo sed -e 's/^bind.*/bind 127.0.0.1/' /etc/redis/redis.conf > redis.conf
- sudo mv redis.conf /etc/redis
- sudo service redis-server start
- echo PING | nc localhost 6379
rvm:
- 2.4
- 2.5
- 2.6
before_script:
- git config --local user.email "travis@travis.ci"
- git config --local user.name "Travis CI"
script:
- redis-cli --version
- redis --version
- bundle exec rspec
- bundle exec overcommit --sign
- bundle exec overcommit --run
| language: ruby
cache: bundler
addons:
apt:
packages:
- redis-server
services:
- redis-server
before_install:
- sudo sed -e 's/^bind.*/bind 127.0.0.1/' /etc/redis/redis.conf > redis.conf
- sudo mv redis.conf /etc/redis
- sudo service redis-server start
- echo PING | nc localhost 6379
rvm:
- 2.4
- 2.5
- 2.6
before_script:
- git config --local user.email "travis@travis.ci"
- git config --local user.name "Travis CI"
script:
- redis-cli --version
- bundle exec rspec
- bundle exec overcommit --sign
- bundle exec overcommit --run
| Remove broken `redis --version` command from Travis build | Remove broken `redis --version` command from Travis build
This doesn't work in the Travis context.
| YAML | mit | brigade/mock_redis |
d87e26f08d5053d5dae90709f81fd356de09ac5c | .travis.yml | .travis.yml | language: java
matrix:
include:
- os: linux
sudo: required
jdk: oraclejdk8
- os: linux
sudo: required
jdk: openjdk8
- os: linux
sudo: required
jdk: oraclejdk9
script: ./gradlew :provider:check --info --stacktrace --console=plain --max-workers=1 --no-daemon -Dkotlin.compiler.execution.strategy="in-process" -Dkotlin.colors.enabled=false
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| language: java
matrix:
include:
- os: linux
sudo: required
jdk: oraclejdk8
- os: linux
sudo: required
jdk: openjdk11
script: ./gradlew check --info --stacktrace --console=plain --max-workers=1 --no-daemon -Dkotlin.colors.enabled=false
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Update Travis configuration to run samples tests | Update Travis configuration to run samples tests
Signed-off-by: Paul Merlin <a027184a55211cd23e3f3094f1fdc728df5e0500@gradle.com>
| YAML | apache-2.0 | gradle/gradle-script-kotlin,gradle/gradle-script-kotlin |
ac9504b42a90c694c1e4fe7a7cc7191bbf369d00 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs"
- "0.12"
- "0.10"
sudo: false
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "node_modules/.bin/testem ci -l firefox"
| language: node_js
node_js:
- "iojs"
- "0.12"
- "0.10"
sudo: false
env:
matrix:
- WEBPACK_VERSION=1.13.1 WEBPACK_DEV_SERVER_VERSION=1.7.0
- WEBPACK_VERSION=2.1.0-beta.7 WEBPACK_DEV_SERVER_VERSION=2.1.0-beta.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
before_script:
- npm rm webpack webpack-dev-server
- npm install webpack@$WEBPACK_VERSION webpack-dev-server@$WEBPACK_DEV_SERVER_VERSION
script:
- "node_modules/.bin/testem ci -l firefox"
| Test on Webpack 1 and 2. | Test on Webpack 1 and 2.
| YAML | mit | walmartlabs/stylus-relative-loader,shama/stylus-loader,walmartlabs/stylus-relative-loader,shama/stylus-loader |
b7cd9b1482e6f8573c00301ec5114fc80b987ff8 | .travis.yml | .travis.yml | rvm:
- 2.0.0
- 2.1.0
- 2.2
script: bundle exec rspec --color --format progress
| language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1
- 2.2
script: bundle exec rspec --color --format progress
| Make Travis run on container-based infrastructure for faster builds. | Make Travis run on container-based infrastructure for faster builds.
| YAML | apache-2.0 | ClogenyTechnologies/knife-ec2,TheNeatCompany/knife-ec2,chef/knife-ec2,paperlesspost/knife-ec2,tas50/knife-ec2,cloudant/knife-ec2,chef/knife-ec2,MsysTechnologiesllc/knife-ec2,juliandunn/knife-ec2,4current/knife-ec2,MsysTechnologiesllc/knife-ec2,evertrue/knife-ec2 |
af69132839491f456e38edc6cf81eca8fe5a158d | .travis.yml | .travis.yml | language: go
go:
- 1.5
addons:
apt:
packages:
- nodejs
install:
- go get -u github.com/gopherjs/gopherjs
script:
- diff -u <(echo -n) <(gofmt -d ./)
- gopherjs test
| language: go
go:
- 1.7
addons:
apt:
packages:
- nodejs
install:
- go get -u github.com/gopherjs/gopherjs
script:
- diff -u <(echo -n) <(gofmt -d ./)
- gopherjs test
| Update to latest Go version | Update to latest Go version
| YAML | bsd-2-clause | gopherjs/jsbuiltin,gopherjs/jsbuiltin |
361611b7dc0b67d9c33d8ef08ae375132b277355 | .travis.yml | .travis.yml | language: android
android:
components:
# The SDK version used to compile your project
- android-22
| language: android
android:
components:
# The SDK version used to compile your project
- build-tools-23.0.2
- android-22
jdk:
- oraclejdk8
| Set build tools version to 23.0.2 | Set build tools version to 23.0.2
| YAML | apache-2.0 | jpedrofigueiredo/ShoppingList |
e52d1cd34a40f0cf2bfe12e35d3fd1cdaf387955 | .travis.yml | .travis.yml | language: python
# Enable Travis container-based infrastructure
sudo: false
cache:
pip: true
directories:
- test/data/nidmresults-examples
python:
- "3.4"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
# Install nidmresults from source in GitHub repo
- pip install --upgrade --no-deps git+https://github.com/cmaumet/nidmresults.git@python3#egg=nidmresults
- pip install -r requirements.txt
- python setup.py install # install nidmfsl from sources
- curl -sLo - https://github.com/github/git-lfs/releases/download/v1.1.2/git-lfs-linux-amd64-1.1.2.tar.gz | tar xzvf -
- export PATH=$PATH:`pwd`/git-lfs-1.1.2
- cd test/data/nidmresults-examples
- git lfs install
- cd ../../..
- pip --version
# Packages only needed for testing (others are set up in requirements.txt)
- pip install vcrpy
- pip install ddt
- pip install gitpython
- export GIT_PYTHON_TRACE='full'
# command to run tests, e.g. python setup.py test
script:
# - coverage run --source=nidmfsl -m unittest discover
- python test/export_test_battery.py
- python -m unittest discover
- cat debug.log
# Update subtree nidm from main nidm repository
before_install:
- git config --global user.name "TravisCI"
- git config --global user.email "travis@dummy.com"
# after_success:
# coveralls | language: python
# Enable Travis container-based infrastructure
sudo: false
cache:
pip: true
directories:
- test/data/nidmresults-examples
python:
- "3.4"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
- python setup.py install # install nidmfsl from sources
- curl -sLo - https://github.com/github/git-lfs/releases/download/v1.1.2/git-lfs-linux-amd64-1.1.2.tar.gz | tar xzvf -
- export PATH=$PATH:`pwd`/git-lfs-1.1.2
- cd test/data/nidmresults-examples
- git lfs install
- cd ../../..
- pip --version
# Packages only needed for testing (others are set up in requirements.txt)
- pip install vcrpy
- pip install ddt
- pip install gitpython
- export GIT_PYTHON_TRACE='full'
# command to run tests, e.g. python setup.py test
script:
# - coverage run --source=nidmfsl -m unittest discover
- python test/export_test_battery.py
- python -m unittest discover
- cat debug.log
# Update subtree nidm from main nidm repository
before_install:
- git config --global user.name "TravisCI"
- git config --global user.email "travis@dummy.com"
# after_success:
# coveralls | Test against released nidmresults 1.0.0 | Test against released nidmresults 1.0.0
| YAML | mit | cmaumet/nidm-results_fsl,cmaumet/nidmresults-fsl,incf-nidash/nidmresults-fsl,incf-nidash/nidm-results_fsl |
2878f2cdaa899d2cf45895edf4dfcfa5c161c631 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby
- rbx
gemfile:
- Gemfile
- Gemfile.edge
matrix:
allow_failures:
- gemfile: Gemfile.edge
notifications:
email: false
campfire:
on_success: change
rooms:
- secure: "TP0fJ4aqXCRD7CaAgaYW7Pa22j4/uLChdBb59ob/sJvHtfi4Zx3I54xWApmp\nZl1KItFGCV8oQZhQl5hAmHJfJ+1gCNeBvIKwY6TsIyTmyDg1KcJUcJDrwYxO\ntAeYI2PvU5PtKMmpnfnwFQMxL+2nfWJWNzboBCDr4YvoFI+rN+A="
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0-preview2
- jruby
- rbx
gemfile:
- Gemfile
- Gemfile.edge
matrix:
allow_failures:
- gemfile: Gemfile.edge
notifications:
email: false
campfire:
on_success: change
rooms:
- secure: "TP0fJ4aqXCRD7CaAgaYW7Pa22j4/uLChdBb59ob/sJvHtfi4Zx3I54xWApmp\nZl1KItFGCV8oQZhQl5hAmHJfJ+1gCNeBvIKwY6TsIyTmyDg1KcJUcJDrwYxO\ntAeYI2PvU5PtKMmpnfnwFQMxL+2nfWJWNzboBCDr4YvoFI+rN+A="
| Test using Ruby 2.1 in Travis | Test using Ruby 2.1 in Travis
| YAML | mit | sideci-sample/sideci-sample-rails-api,joshbedo/rails-api,ikhakoo/rails-api,GHolmes04/rails-api,PatrickEifler/rails-api,bjenkins100/rails-api,ipmobiletech/rails-api,rails-api/rails-api,ryoconnell/rails-api,djom20/rails-api,cyberid41/rails-api,kyaukyuai/rails-api |
ee677296caef0547e4bfd8dc7fabf6af0eaa81c3 | .travis.yml | .travis.yml | env:
_JAVA_OPTIONS="-Xms1G -Xmx4G"
language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
script:
- mvn clean package
notifications:
irc: "chat.freenode.net#io7m"
| env:
_JAVA_OPTIONS="-Xms1G -Xmx4G"
language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
script:
- mvn clean verify
notifications:
irc: "chat.freenode.net#io7m"
| Use "clean verify" in Travis CI | Use "clean verify" in Travis CI
| YAML | isc | io7m/smf,io7m/smf |
37d2c0df1ed10da22ac8f2519ede33ebe1c3c95f | .travis.yml | .travis.yml | # https://docs.travis-ci.com/user/languages/java
language: java
jdk:
- oraclejdk8
| # https://docs.travis-ci.com/user/languages/java
language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Configure Travis for Gradle dependency caching. | Configure Travis for Gradle dependency caching.
| YAML | mit | commercetools/commercetools-payone-integration,commercetools/commercetools-payone-integration |
9f43f4137444fcc42894754e6d4e5c9f2827b8b0 | .travis.yml | .travis.yml | language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
- ST=Pharo-2.0 SCREENSHOT=30
# For SqueakSSL
before_install:
- sudo apt-get -qq install libssl0.9.8:i386
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sudo apt-get update
# Boilerplate ... should be no reason to edit the install section
install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget http://selenium-release.storage.googleapis.com/2.42/selenium-server-standalone-2.42.2.jar
- wget -q -O builderCI.zip https://github.com/SWTI2014/builderCI/zipball/master
- unzip -q builderCI.zip
- cd SWTI2014-builderCI*
- source build_env_vars
- ln -s $PROJECT_HOME $GIT_PATH
- sudo apt-get -qq install firefox
- ./build_image.sh
before_script:
- java -jar $HOME/selenium-server-standalone-2.42.2.jar &
- sleep 30
- sudo netstat -tulp
# use a different script if you want to customize how travis tests are run
# use verbose flag to dump transcript unconditionally
script: $BUILDER_CI_HOME/testTravisCI.sh -verbose
| language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
- ST=Pharo-2.0
# For SqueakSSL
before_install:
- sudo apt-get -qq install libssl0.9.8:i386
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sudo apt-get update
# Boilerplate ... should be no reason to edit the install section
install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget http://selenium-release.storage.googleapis.com/2.42/selenium-server-standalone-2.42.2.jar
- wget -q -O builderCI.zip https://github.com/SWTI2014/builderCI/zipball/master
- unzip -q builderCI.zip
- cd SWTI2014-builderCI*
- source build_env_vars
- ln -s $PROJECT_HOME $GIT_PATH
- sudo apt-get -qq install firefox
- ./build_image.sh
before_script:
- java -jar $HOME/selenium-server-standalone-2.42.2.jar &
- sleep 30
- sudo netstat -tulp
# use a different script if you want to customize how travis tests are run
# use verbose flag to dump transcript unconditionally
script: $BUILDER_CI_HOME/testTravisCI.sh -verbose
| Disable screenshots on master branch | Disable screenshots on master branch [ci skip] | YAML | mit | HPI-SWA-Teaching/Salsify,HPI-SWA-Teaching/Salsify,Killerameise/SWTI2014-Project-15 |
2d5fb179fc7204ce5e3ea1cf62849fc0fcc93c56 | .travis.yml | .travis.yml | language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
script:
- bundle exec rspec ./spec
| language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.5
- 2.6
- 2.7
script:
- bundle exec rspec ./spec
| Remove Ruby 2.4 from Travis matrix | Remove Ruby 2.4 from Travis matrix
| YAML | mit | digitalocean/droplet_kit |
4f48999b0b951fdced108bf89ac40f9ef381c601 | .travis.yml | .travis.yml | language: objective-c
before_install:
- brew update
- brew install mongodb
- ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
- sleep 5
before_script:
- mongo mydb_test --eval 'db.addUser("travis", "test");'
script: rake test
| language: objective-c
before_install:
- brew update
- brew install mongodb
- ln -s $(brew --prefix mongodb)/mongod.conf $(brew --prefix)/etc/mongod.conf
- ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
- sleep 5
before_script:
- mongo mydb_test --eval 'db.addUser("travis", "test");'
script: rake test
| Work around MongoDB installer bug | Work around MongoDB installer bug
https://github.com/mxcl/homebrew/issues/23190
| YAML | apache-2.0 | paulmelnikow/ObjCMongoDB,money-alex2006hw/ObjCMongoDB |
3e50478a6bdd4e9a3e9d184402d99dd543e13f5a | .travis.yml | .travis.yml | language: ruby
rvm:
- '1.8.7'
- '1.9.2'
- '1.9.3'
- '2.0.0'
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec | language: ruby
rvm:
- '1.8.7'
- '1.9.2'
- '1.9.3'
- '2.0.0'
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx
script: bundle exec rspec | Use spec to run tests | Use spec to run tests
| YAML | mit | rikas/portuguese_validators |
6eed792503a74cfc6b92411aeb70589e4945687d | .travis.yml | .travis.yml | language: go
go:
- 1.7
- 1.8
- stable
- tip
script:
- go test -race -parallel 4 -timeout 30s -v ./... | language: go
go:
- 1.7
- 1.8
- tip
script:
- go test -race -parallel 4 -timeout 30s -v ./... | Remove version 'stable' from Travis build | Remove version 'stable' from Travis build
| YAML | mit | vapourismo/knx-go |
89204676b16a040ae4a9ecaa1f02d3fb469a5af9 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
node_js: "stable"
addons:
hosts:
- travis.dev
notifications:
email: false
before_install:
# Console
- stty cols 80
script:
# Main repo
- if [ $TRAVIS_PULL_REQUEST = "false" ]; then npm run test-remote; fi
# Forks (Travis blocks encrypted environment variables, so no remote tests)
- if [ $TRAVIS_PULL_REQUEST != "false" ]; then npm test; fi
after_success:
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION
| sudo: required
dist: trusty
language: node_js
node_js: "stable"
addons:
chrome: stable
hosts:
- travis.dev
notifications:
email: false
before_install:
# Console
- stty cols 80
# Chrome
# - export CHROME_BIN=chromium-browser
# - export DISPLAY=:99.0
# - sh -e /etc/init.d/xvfb start
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
script:
# Main repo
- if [ $TRAVIS_PULL_REQUEST = "false" ]; then npm run test; fi
# Forks (Travis blocks encrypted environment variables, so no remote tests)
- if [ $TRAVIS_PULL_REQUEST != "false" ]; then npm test; fi
after_success:
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION
| Use headless Chrome for Travis+PRs | Use headless Chrome for Travis+PRs
| YAML | mit | jhildenbiddle/css-vars-ponyfill |
ed2defa29b5073f2e1dfd5c9fc70fffa34f1bdf4 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install:
- "pip install -r requirements/dev.txt"
- "pip install -r requirements/compiled.txt"
- "pip install rednose coverage coveralls"
script:
- PYTHONPATH=vendor/lib/python nosetests -v --rednose --force-color auslib/test
- coverage run -a scripts/test-rules.py -v
- pyflakes $(find . \( -iname "*.py" -or -iname "*.wsgi" \) -not -path "*vendor*")
after_success:
- coveralls --rcfile coveragerc
# currently cannot customise per user fork, see:
# https://github.com/travis-ci/travis-ci/issues/1094
# please comment out this section in your personal fork!
notifications:
irc:
channels:
- "irc.mozilla.org#releng"
on_success: always
on_failure: always
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
- "Change view : %{compare_url}"
- "Build details : %{build_url}"
- "Commit message : %{commit_message}"
| language: python
python:
- "2.6"
- "2.7"
install:
- "pip install -r requirements/dev.txt"
- "pip install -r requirements/compiled.txt"
- "pip install rednose coverage coveralls"
script:
- PYTHONPATH=vendor/lib/python nosetests -v --with-coverage --rednose --force-color auslib/test
- coverage run -a scripts/test-rules.py -v
- pyflakes $(find . \( -iname "*.py" -or -iname "*.wsgi" \) -not -path "*vendor*")
after_success:
- coveralls --rcfile coveragerc
# currently cannot customise per user fork, see:
# https://github.com/travis-ci/travis-ci/issues/1094
# please comment out this section in your personal fork!
notifications:
irc:
channels:
- "irc.mozilla.org#releng"
on_success: always
on_failure: always
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
- "Change view : %{compare_url}"
- "Build details : %{build_url}"
- "Commit message : %{commit_message}"
| Add coverage back into nosetests run | Add coverage back into nosetests run
| YAML | mpl-2.0 | mozbhearsum/balrog,aksareen/balrog,nurav/balrog,nurav/balrog,nurav/balrog,aksareen/balrog,tieu/balrog,aksareen/balrog,testbhearsum/balrog,tieu/balrog,aksareen/balrog,mozbhearsum/balrog,testbhearsum/balrog,mozbhearsum/balrog,nurav/balrog,testbhearsum/balrog,testbhearsum/balrog,tieu/balrog,tieu/balrog,mozbhearsum/balrog |
d83bc4da666df3ee188ffa16b90c23468ac1d4b9 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
install: travis_retry pip install 'requests>=2.9,<2.10' $DJANGO_VERSION
env:
global:
- PYTHONWARNINGS=all DJANGO_SETTINGS_MODULE=tests.django_settings
matrix:
- DJANGO_VERSION='Django>=1.8,<1.9'
- DJANGO_VERSION='Django>=1.9,<1.10'
matrix:
include:
- python: 3.5
env: DJANGO_VERSION='Django>=1.8,<1.9'
- python: 3.5
env: DJANGO_VERSION='Django>=1.9,<1.10'
exclude:
- python: 3.3
env: DJANGO_VERSION='Django>=1.9,<1.10'
fast_finish: true
script: python -m unittest discover
| # Use the faster container-based infrastructure.
sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
install: travis_retry pip install 'requests>=2.9,<2.10' $DJANGO_VERSION
env:
global:
- PYTHONWARNINGS=all DJANGO_SETTINGS_MODULE=tests.django_settings
matrix:
- DJANGO_VERSION='Django>=1.8,<1.9'
- DJANGO_VERSION='Django>=1.9,<1.10'
matrix:
include:
- python: 3.5
env: DJANGO_VERSION='Django>=1.8,<1.9'
- python: 3.5
env: DJANGO_VERSION='Django>=1.9,<1.10'
exclude:
- python: 3.3
env: DJANGO_VERSION='Django>=1.9,<1.10'
fast_finish: true
script: python -m unittest discover
| Switch to the faster container-based Travis infrastructure | Switch to the faster container-based Travis infrastructure
By declaring that the tests do not require sudo, Travis can run the test
jobs on their newer/faster container-based infrastructure:
https://docs.travis-ci.com/user/migrating-from-legacy/
(Notably the builds start within seconds rather than needing to wait for
the VMs to be spun up before the test run even starts)
| YAML | mit | evansd/whitenoise,evansd/whitenoise,evansd/whitenoise |
431696a7f46ea0434fd430174708ba5501f08c09 | .travis.yml | .travis.yml | language: node_js
node_js:
- 11
- 10
cache: yarn
matrix:
fast_finish: true
notifications:
email: false
| language: node_js
node_js:
- 14
- 12
- 10
cache: yarn
matrix:
fast_finish: true
notifications:
email: false
| Remove broken node test environments | Remove broken node test environments
| YAML | mit | theplatapi/csv-loader |
751451828c17fda76bc453c99d8fd72e3a1611a0 | .kitchen.yml | .kitchen.yml | ---
provisioner:
name: ansible_playbook
hosts: test-kitchen
require_ansible_repo: false
require_ansible_omnibus: true
driver:
name: docker
platforms:
- name: debian-7.8
driver_config:
image: dynatrace/debian-testing:7.8
suites:
- name: default
| ---
provisioner:
name: ansible_playbook
hosts: test-kitchen
require_ansible_repo: false
require_ansible_omnibus: true
driver:
name: docker
platforms:
- name: centos-6
driver_config:
image: dynatrace/centos-testing:6
- name: debian-7.8
driver_config:
image: dynatrace/debian-testing:7.8
- name: ubuntu-12.04
driver_config:
image: dynatrace/ubuntu-testing:12.04
suites:
- name: default
| Add CentOS 6.5 and Ubuntu 12.04 as test platforms. | Add CentOS 6.5 and Ubuntu 12.04 as test platforms.
| YAML | mit | dynaTrace/Dynatrace-Collector-Ansible,dynaTrace/Dynatrace-Collector-Ansible |
e2367130964f725b93c153532274e3bfa8df3a8c | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.11.0"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- npm install
- npm install mocha -g
script:
- mocha test --recursive -u tdd | language: node_js
node_js:
- "6.9.2"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- npm install
- npm install mocha -g
script:
- mocha test --recursive -u tdd | Build with node 6.11.0 => 6.9.2 | Build with node 6.11.0 => 6.9.2
| YAML | mit | codingchili/kbn-authentication-plugin,codingchili/kbn-authentication-plugin |
9c0bb8d30b0eb2187b57be4e06439ef7a7ffcfda | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
before_script:
- npm install -g gulp
script: gulp travis
branches:
except:
- gh-pages | language: node_js
node_js:
- "7"
before_script:
- npm install -g gulp
script: gulp travis
branches:
except:
- gh-pages
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libcairo2-dev
- libjpeg8-dev
- libpango1.0-dev
- libgif-dev
- g++-4.9
- calibre
env:
- CXX=g++-4.9
before_install:
- npm explore npm -g -- npm install node-gyp@latest | Add full toolchain for node-canvas and ebook building | Add full toolchain for node-canvas and ebook building
| YAML | apache-2.0 | hybox/models |
4a55e6d3e23dd61e94895157e3d7cee3df40909f | .travis.yml | .travis.yml | ---
sudo: required
dist: trusty
language: python
cache: pip
python:
- "3.6"
services:
- docker
env:
- DJANGO_DATABASE_URL=postgresql://chaospizza:chaospizza@db:5432/chaospizza
install:
- pip install coveralls
- which coveralls >/dev/null 2>&1
- make build-image
- make check
before_script:
- mkdir -p build/{db,coverage}
- docker-compose up -d db
script:
- make lint
- make TESTOPTS="--verbose" test
after_script:
- docker-compose down
- cp build/coverage/datafile .coverage
after_success:
- coveralls
| ---
sudo: required
dist: trusty
language: python
cache: pip
python:
- "3.6"
services:
- docker
env:
- DJANGO_DATABASE_URL=postgresql://chaospizza:chaospizza@db:5432/chaospizza
install:
- pip install coveralls
- which coveralls >/dev/null 2>&1
- make build-image
- make check
before_script:
- mkdir -p build/{db,coverage}
- docker-compose up -d db
script:
- make lint
- make TESTOPTS="--verbose" test
after_success:
- cp build/coverage/datafile .coverage
- coveralls
after_script:
- docker-compose down
| Fix order bug when copying coverage results for coveralls | fix(build): Fix order bug when copying coverage results for coveralls
| YAML | mit | chaosdorf/chaospizza,chaosdorf/chaospizza,chaosdorf/chaospizza |
60668b6fdcd25e3301909e3188f0e3d1e515e4ee | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
- PHPUNIT_FLAGS="--coverage-clover build/coverage.xml"
- COVERAGE=true
install:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
- php -S 127.0.0.1:10000 -t vendor/php-http/adapter-integration-tests/fixture
script: vendor/bin/phpunit ${PHPUNIT_FLAGS}
after_script:
- if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
- PHPUNIT_FLAGS="--coverage-clover build/coverage.xml"
- COVERAGE=true
install:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
- php -S 127.0.0.1:10000 -t vendor/php-http/adapter-integration-tests/fixture > /dev/null 2>&1 &
script: vendor/bin/phpunit ${PHPUNIT_FLAGS}
after_script:
- if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
| Fix PHP web server run | Fix PHP web server run
| YAML | mit | php-http/guzzle5-adapter |
3f2a4c38ac42f6756266ab3fcc6edfd9159e273a | auspice/s3_website.yml | auspice/s3_website.yml | s3_id: <%= ENV['S3_KEY'] %>
s3_secret: <%= ENV['S3_SECRET'] %>
s3_bucket: <%= ENV['S3_BUCKET'] %>
cloudfront_distribution_id: <%= ENV['CLOUDFRONT_ID'] %>
cloudfront_invalidate_root: true
gzip: true
| s3_id: <%= ENV['S3_KEY'] %>
s3_secret: <%= ENV['S3_SECRET'] %>
s3_bucket: <%= ENV['S3_BUCKET'] %>
cloudfront_distribution_id: <%= ENV['CLOUDFRONT_ID'] %>
cloudfront_invalidate_root: true
gzip:
- .html
- .css
- .tsv
- .json
- .js
- .png
- .jpg
| Fix gzip compression to work for more file types. | Fix gzip compression to work for more file types.
This results in much better compression, primarily through jsons.
Page loads should be much faster.
| YAML | agpl-3.0 | blab/nextflu,blab/nextflu,blab/nextflu,blab/nextflu,blab/nextflu |
c94b952dee8e3547cf1beb44b306cbf571682394 | .rubocop.yml | .rubocop.yml |
MethodLength:
Max: 200
LineLength:
Max: 160
FileName:
Enabled: false
PerceivedComplexity:
Enabled: false
CyclomaticComplexity:
Enabled: false
ClassLength:
Enabled: false
IfUnlessModifier:
Enabled: false
RegexpLiteral:
Enabled: false
|
MethodLength:
Max: 200
LineLength:
Max: 160
AbcSize:
Max: 50
FileName:
Enabled: false
PerceivedComplexity:
Enabled: false
CyclomaticComplexity:
Enabled: false
ClassLength:
Enabled: false
IfUnlessModifier:
Enabled: false
RegexpLiteral:
Enabled: false
| Exclude the ABC check from Rubocop | Exclude the ABC check from Rubocop
| YAML | mit | sensu-plugins/sensu-plugins-dhcp,opintanner/sensu-plugins-dhcp |
f8cdb3fcba22e9ba9e57e30ddad95afc4fb3993b | .rubocop.yml | .rubocop.yml | Layout/IndentArray:
EnforcedStyle: consistent
Metrics/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*.rb"
Style/Documentation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
| AllCops:
TargetRubyVersion: 2.3
Layout/IndentArray:
EnforcedStyle: consistent
Metrics/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*.rb"
Style/Documentation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
| Add target ruby version to Rubocop | Add target ruby version to Rubocop
| YAML | mit | jcypret/hashid-rails,jcypret/hashid-rails |
6641b0463e501a8619bbb0aef9613f9695d3e588 | .rubocop.yml | .rubocop.yml | Style/StringLiterals:
EnforcedStyle: double_quotes
Style/IndentArray:
EnforcedStyle: consistent
Style/Documentation:
Enabled: false
Style/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*.rb"
| Style/StringLiterals:
EnforcedStyle: double_quotes
Style/IndentArray:
EnforcedStyle: consistent
Style/Documentation:
Enabled: false
Metrics/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*.rb"
| Change block length linter to Metric | Change block length linter to Metric
| YAML | mit | jcypret/hashid-rails,jcypret/hashid-rails |
24499232a0535627acab7cc83604e45f5d617c08 | .travis.yml | .travis.yml | osx_image: xcode8.3
language: objective-c
sudo: required
env:
global:
- WORKSPACE="Umbrella.xcworkspace"
- SCHEME="Umbrella"
- IOS_SDK="iphonesimulator10.3"
- MACOS_SDK="macosx10.12"
- TVOS_SDK="appletvsimulator10.2"
- FRAMEWORK="Umbrella"
matrix:
- SDK="$IOS_SDK" DESTINATION="platform=iOS Simulator,name=iPhone 7,OS=10.3.1"
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
- swift --version
before_script:
- set -o pipefail
- pod repo update
- make project
script:
- xcodebuild clean build test
-workspace "$WORKSPACE"
-scheme "$SCHEME"
-sdk "$SDK"
-destination "$DESTINATION"
-configuration Debug
-enableCodeCoverage YES
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c
- pod lib lint --allow-warnings
after_success:
- bash <(curl -s https://codecov.io/bash) -J 'Umbrella'
| osx_image: xcode8.3
language: objective-c
sudo: required
env:
global:
- WORKSPACE="Umbrella.xcworkspace"
- SCHEME="Umbrella"
- IOS_SDK="iphonesimulator10.3"
- MACOS_SDK="macosx10.12"
- TVOS_SDK="appletvsimulator10.2"
- FRAMEWORK="Umbrella"
matrix:
- SDK="$IOS_SDK" DESTINATION="platform=iOS Simulator,name=iPhone 7,OS=10.3.1"
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
- swift --version
before_script:
- set -o pipefail
- pod repo update
- make project
script:
- xcodebuild clean build test
-workspace "$WORKSPACE"
-scheme "$SCHEME"
-sdk "$SDK"
-destination "$DESTINATION"
-configuration Debug
-enableCodeCoverage YES
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c
- pod lib lint --allow-warnings
after_success:
- bash <(curl -s https://codecov.io/bash) -J 'Umbrella' -X xcodeplist
| Use codecov with '-X xcodeplist' option | Use codecov with '-X xcodeplist' option
| YAML | mit | devxoul/Umbrella,devxoul/Umbrella |
aa522cebb917e2e67eb2b98bebd9badbc7fa38ed | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
| Use dynamic node versions on Travis CI | Test(config): Use dynamic node versions on Travis CI | YAML | unlicense | fvdm/nodejs-planetos |
7cc31b1004eb71766b410f52992e3b5099dc6f40 | .travis.yml | .travis.yml | ## language: java
## env:
## global:
## - MAVEN_OPTS="-Xmx2048m -XX:MaxPermSize=512m"
language: java
jdk:
- oraclejdk8
script:
- mvn clean install
| ## (C) Copyright IBM Corp. 2015, 2016
##
## Licensed under the Apache License, Version 2.0 (the "License");
## you may not use this file except in compliance with the License.
## You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
##
language: java
jdk:
- oraclejdk8
script:
- mvn clean install
| Add license header to build configuration | Add license header to build configuration
| YAML | apache-2.0 | SparkTC/stocator,ymoatti/pushdown-stocator,SparkTC/stocator |
1111d2929ea5fab00c0b15e288689c678613e6cb | kbase.yml | kbase.yml | module-name:
KBParallel
module-description:
A low level module for managing simple bulk execution in KBase
service-language:
python
module-version:
0.4.7
owners:
[mccorkle, wriehl, bsadkhin]
| module-name:
KBParallel
module-description:
A low level module for managing simple bulk execution in KBase
service-language:
python
module-version:
0.4.8
owners:
[mccorkle, wriehl, bsadkhin]
| Add fix for local jobs bump version | Add fix for local jobs bump version
| YAML | mit | sean-mccorkle/KBparallel,sean-mccorkle/KBparallel,sean-mccorkle/KBparallel,sean-mccorkle/KBparallel,sean-mccorkle/KBparallel,sean-mccorkle/KBparallel |
f030754c2c51d9bc3fc25eadfb9b604e84963633 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
git:
depth: 3
before_script:
- chmod +x gradlew
script:
- ./gradlew build
| language: java
jdk:
- oraclejdk8
- oraclejdk7
git:
depth: 3
before_script:
- chmod +x gradlew
script:
- echo 'Setup environment'
- ./gradlew setupCiWorkspace
- echo 'Build'
- ./gradlew build
| Make Travis using efficient build script | Make Travis using efficient build script
| YAML | mit | lion328/ThaiFixes |
b4c7f9446904c6f69ee590a903322e54e5cbd7a1 | install.conf.yaml | install.conf.yaml | - clean: ['~']
- link:
~/.dotfiles: ''
~/.gitconfig: git/gitconfig
~/.gitexcludes: git/gitexcludes
~/.tmux.conf: tmux.conf
~/.zprezto: zsh/plugins/prezto
~/.zlogin: zsh/plugins/prezto/runcoms/zlogin
~/.zlogout: zsh/plugins/prezto/runcoms/zlogout
~/.zpreztorc: zsh/zpreztorc
~/.zprofile: zsh/zprofile
~/.zshenv: zsh/plugins/prezto/runcoms/zshenv
~/.zshrc: zsh/zshrc
- shell:
- [powerline/install.sh, Install powerline fonts]
-
command: zsh/install.sh
description: Install zsh
stdin: true
stderr: true
- [sudo apt-get install -y tmux, Install tmux]
| - clean: ['~']
- link:
~/.dotfiles: ''
~/.gitconfig: git/gitconfig
~/.gitexcludes: git/gitexcludes
~/.tmux.conf: tmux.conf
~/.zlogin: zsh/plugins/prezto/runcoms/zlogin
~/.zlogout: zsh/plugins/prezto/runcoms/zlogout
~/.zprezto: zsh/plugins/prezto
~/.zpreztorc: zsh/zpreztorc
~/.zprofile: zsh/zprofile
~/.zshenv: zsh/plugins/prezto/runcoms/zshenv
~/.zshrc: zsh/zshrc
- shell:
- [powerline/install.sh, Install powerline fonts]
-
command: zsh/install.sh
description: Install zsh
stdin: true
stderr: true
- [hash tmux || sudo apt-get install -y tmux, Install tmux]
| Test for tmux before installing | Test for tmux before installing
| YAML | unlicense | cmcginty/dotfiles,cmcginty/dotfiles |
0d609c72cda1ffe8312940333507898ef66f1c36 | recipes/python-omero/meta.yaml | recipes/python-omero/meta.yaml | {% set OMERO_VERSION = "5.3.1" %}
package:
name: python-omero
version: {{ OMERO_VERSION }}
source:
fn: OMERO.py-{{ OMERO_VERSION }}-ice36-b61.zip
url: http://downloads.openmicroscopy.org/omero/{{ OMERO_VERSION }}/artifacts/OMERO.py-{{ OMERO_VERSION }}-ice36-b61.zip
sha1: b4485c382b8ad5d059c72b8cba272f7b29574395
build:
number: 2
skip: True # [py3k]
requirements:
build:
- conda-build
- setuptools
- python
run:
- python
- zeroc-ice
test:
imports:
- omero
- omero.gateway
about:
home: http://www.openmicroscopy.org/
license: GPL 2
summary: OME (Open Microscopy Environment) develops open-source software and data format standards for the storage and manipulation of biological light microscopy data.
| {% set OMERO_VERSION = "5.3.1" %}
package:
name: python-omero
version: {{ OMERO_VERSION }}
source:
fn: OMERO.py-{{ OMERO_VERSION }}-ice36-b61.zip
url: http://downloads.openmicroscopy.org/omero/{{ OMERO_VERSION }}/artifacts/OMERO.py-{{ OMERO_VERSION }}-ice36-b61.zip
sha1: b4485c382b8ad5d059c72b8cba272f7b29574395
build:
number: 0
skip: True # [py3k]
requirements:
build:
- conda-build
- setuptools
- python
run:
- python
- zeroc-ice
test:
imports:
- omero
- omero.gateway
about:
home: http://www.openmicroscopy.org/
license: GPL 2
summary: OME (Open Microscopy Environment) develops open-source software and data format standards for the storage and manipulation of biological light microscopy data.
| Set build number to 0. | Set build number to 0. | YAML | mit | shenwei356/bioconda-recipes,keuv-grvl/bioconda-recipes,shenwei356/bioconda-recipes,hardingnj/bioconda-recipes,mcornwell1957/bioconda-recipes,oena/bioconda-recipes,bebatut/bioconda-recipes,martin-mann/bioconda-recipes,phac-nml/bioconda-recipes,CGATOxford/bioconda-recipes,chapmanb/bioconda-recipes,mdehollander/bioconda-recipes,ivirshup/bioconda-recipes,roryk/recipes,bow/bioconda-recipes,rvalieris/bioconda-recipes,abims-sbr/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,gregvonkuster/bioconda-recipes,rob-p/bioconda-recipes,HassanAmr/bioconda-recipes,mcornwell1957/bioconda-recipes,HassanAmr/bioconda-recipes,HassanAmr/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,jfallmann/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,colinbrislawn/bioconda-recipes,daler/bioconda-recipes,bebatut/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,bioconda/bioconda-recipes,martin-mann/bioconda-recipes,abims-sbr/bioconda-recipes,jfallmann/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,CGATOxford/bioconda-recipes,rvalieris/bioconda-recipes,CGATOxford/bioconda-recipes,Luobiny/bioconda-recipes,dmaticzka/bioconda-recipes,chapmanb/bioconda-recipes,gvlproject/bioconda-recipes,hardingnj/bioconda-recipes,peterjc/bioconda-recipes,phac-nml/bioconda-recipes,cokelaer/bioconda-recipes,hardingnj/bioconda-recipes,hardingnj/bioconda-recipes,peterjc/bioconda-recipes,shenwei356/bioconda-recipes,keuv-grvl/bioconda-recipes,mdehollander/bioconda-recipes,HassanAmr/bioconda-recipes,dkoppstein/recipes,bow/bioconda-recipes,gvlproject/bioconda-recipes,daler/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,chapmanb/bioconda-recipes,bow/bioconda-recipes,saketkc/bioconda-recipes,gvlproject/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,zachcp/bioconda-recipes,colinbrislawn/bioconda-recipes,rob-p/bioconda-recipes,martin-mann/bioconda-recipes,mdehollander/bioconda-recipes,mcornwell1957/bioconda-recipes,npavlovikj/bioconda-recipes,lpantano/recipes,mdehollander/bioconda-recipes,matthdsm/bioconda-recipes,cokelaer/bioconda-recipes,mcornwell1957/bioconda-recipes,abims-sbr/bioconda-recipes,rvalieris/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,ostrokach/bioconda-recipes,blankenberg/bioconda-recipes,acaprez/recipes,matthdsm/bioconda-recipes,dmaticzka/bioconda-recipes,gvlproject/bioconda-recipes,npavlovikj/bioconda-recipes,npavlovikj/bioconda-recipes,jfallmann/bioconda-recipes,Luobiny/bioconda-recipes,oena/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,xguse/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,HassanAmr/bioconda-recipes,oena/bioconda-recipes,blankenberg/bioconda-recipes,keuv-grvl/bioconda-recipes,peterjc/bioconda-recipes,joachimwolff/bioconda-recipes,chapmanb/bioconda-recipes,ivirshup/bioconda-recipes,zachcp/bioconda-recipes,matthdsm/bioconda-recipes,CGATOxford/bioconda-recipes,lpantano/recipes,abims-sbr/bioconda-recipes,colinbrislawn/bioconda-recipes,chapmanb/bioconda-recipes,gregvonkuster/bioconda-recipes,bebatut/bioconda-recipes,ostrokach/bioconda-recipes,joachimwolff/bioconda-recipes,colinbrislawn/bioconda-recipes,dkoppstein/recipes,ivirshup/bioconda-recipes,daler/bioconda-recipes,hardingnj/bioconda-recipes,zachcp/bioconda-recipes,dmaticzka/bioconda-recipes,matthdsm/bioconda-recipes,colinbrislawn/bioconda-recipes,roryk/recipes,rvalieris/bioconda-recipes,blankenberg/bioconda-recipes,Luobiny/bioconda-recipes,saketkc/bioconda-recipes,saketkc/bioconda-recipes,peterjc/bioconda-recipes,martin-mann/bioconda-recipes,rvalieris/bioconda-recipes,ivirshup/bioconda-recipes,xguse/bioconda-recipes,colinbrislawn/bioconda-recipes,mdehollander/bioconda-recipes,gvlproject/bioconda-recipes,ivirshup/bioconda-recipes,bebatut/bioconda-recipes,npavlovikj/bioconda-recipes,daler/bioconda-recipes,xguse/bioconda-recipes,lpantano/recipes,saketkc/bioconda-recipes,joachimwolff/bioconda-recipes,joachimwolff/bioconda-recipes,lpantano/recipes,daler/bioconda-recipes,dmaticzka/bioconda-recipes,keuv-grvl/bioconda-recipes,matthdsm/bioconda-recipes,rob-p/bioconda-recipes,bow/bioconda-recipes,peterjc/bioconda-recipes,bioconda/recipes,gvlproject/bioconda-recipes,ostrokach/bioconda-recipes,abims-sbr/bioconda-recipes,peterjc/bioconda-recipes,bioconda/bioconda-recipes,phac-nml/bioconda-recipes,mcornwell1957/bioconda-recipes,acaprez/recipes,zachcp/bioconda-recipes,ivirshup/bioconda-recipes,saketkc/bioconda-recipes,abims-sbr/bioconda-recipes,ostrokach/bioconda-recipes,daler/bioconda-recipes,bow/bioconda-recipes,jfallmann/bioconda-recipes,xguse/bioconda-recipes,Luobiny/bioconda-recipes,keuv-grvl/bioconda-recipes,keuv-grvl/bioconda-recipes,saketkc/bioconda-recipes,phac-nml/bioconda-recipes,rob-p/bioconda-recipes,bow/bioconda-recipes,roryk/recipes,phac-nml/bioconda-recipes,shenwei356/bioconda-recipes,bioconda/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,cokelaer/bioconda-recipes,cokelaer/bioconda-recipes,CGATOxford/bioconda-recipes,dmaticzka/bioconda-recipes,matthdsm/bioconda-recipes,bioconda/recipes,gregvonkuster/bioconda-recipes,acaprez/recipes,bioconda/bioconda-recipes,CGATOxford/bioconda-recipes,joachimwolff/bioconda-recipes,gregvonkuster/bioconda-recipes,bioconda/recipes,dkoppstein/recipes,mdehollander/bioconda-recipes,ostrokach/bioconda-recipes,oena/bioconda-recipes,blankenberg/bioconda-recipes,xguse/bioconda-recipes,oena/bioconda-recipes,joachimwolff/bioconda-recipes,dmaticzka/bioconda-recipes,ostrokach/bioconda-recipes,rvalieris/bioconda-recipes,acaprez/recipes,HassanAmr/bioconda-recipes,martin-mann/bioconda-recipes |
bdad50313c665a5271e0a94ec429379b0a521b05 | recipe/meta.yaml | recipe/meta.yaml | {% set version = "1.2.0" %}
package:
name: conda-smithy
version: {{ version }}
source:
fn: conda-smithy-v{{ version }}.tar.gz
url: https://github.com/conda-forge/conda-smithy/archive/v{{ version }}.tar.gz
sha256: 9c008025f3198b1f89f3fda48aca79b14773f6ae3d16271576cf893a34f489be
build:
number: 2
script: python setup.py install --single-version-externally-managed --record=record.txt
entry_points:
- feedstocks = conda_smithy.feedstocks:main
- conda-smithy = conda_smithy.cli:main
requirements:
build:
- python
- setuptools
run:
- python
- conda-build-all
- conda
- conda-build >=1.21.12
- jinja2
- requests
- pycrypto
- gitpython
- pygithub <2
- ruamel.yaml
test:
imports:
- conda_smithy
- conda_smithy.ci_register
- conda_smithy.configure_feedstock
commands:
- conda smithy --help
about:
home: https://github.com/conda-forge/conda-smithy
license: BSD 3-clause
license_family: BSD
license_file: LICENSE
summary: The tool for managing conda-forge feedstocks
extra:
recipe-maintainers:
- jakirkham
- pelson
| {% set version = "1.3.0" %}
package:
name: conda-smithy
version: {{ version }}
source:
fn: conda-smithy-v{{ version }}.tar.gz
url: https://github.com/conda-forge/conda-smithy/archive/v{{ version }}.tar.gz
sha256: 95c7aa5324d3deeee682054d79b74fb3797e64a2376fd59a26492f2377d32415
build:
number: 2
script: python setup.py install --single-version-externally-managed --record=record.txt
entry_points:
- feedstocks = conda_smithy.feedstocks:main
- conda-smithy = conda_smithy.cli:main
requirements:
build:
- python
- setuptools
run:
- python
- conda-build-all
- conda
- conda-build >=1.21.12
- jinja2
- requests
- pycrypto
- gitpython
- pygithub <2
- ruamel.yaml
test:
imports:
- conda_smithy
- conda_smithy.ci_register
- conda_smithy.configure_feedstock
commands:
- conda smithy --help
about:
home: https://github.com/conda-forge/conda-smithy
license: BSD 3-clause
license_family: BSD
license_file: LICENSE
summary: The tool for managing conda-forge feedstocks
extra:
recipe-maintainers:
- jakirkham
- pelson
| Update the version of conda-smithy, without rerendering... | Update the version of conda-smithy, without rerendering...
| YAML | bsd-3-clause | ocefpaf/conda-smithy-feedstock |
5d7ed70bfb500c8e8a611fdb5cd18da5c0e44e20 | metadata/com.ultramegasoft.flavordex2.yml | metadata/com.ultramegasoft.flavordex2.yml | Categories:
- Writing
License: MIT
WebSite: http://ultramegasoft.com
SourceCode: https://github.com/ultramega/flavordex
IssueTracker: https://github.com/ultramega/flavordex/issues
Changelog: https://github.com/ultramega/flavordex/blob/HEAD/CHANGELOG.md
AutoName: Flavordex
RepoType: git
Repo: https://github.com/ultramega/flavordex
Builds:
- versionName: 2.5.0
versionCode: 21
commit: 2.5.0
subdir: app
gradle:
- yes
- versionName: 2.5.1
versionCode: 22
commit: 2.5.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 2.5.1
CurrentVersionCode: 22
| Categories:
- Writing
License: MIT
WebSite: http://ultramegasoft.com
SourceCode: https://github.com/ultramega/flavordex
IssueTracker: https://github.com/ultramega/flavordex/issues
Changelog: https://github.com/ultramega/flavordex/blob/HEAD/CHANGELOG.md
AutoName: Flavordex
RepoType: git
Repo: https://github.com/ultramega/flavordex
Builds:
- versionName: 2.5.0
versionCode: 21
commit: 2.5.0
subdir: app
gradle:
- yes
- versionName: 2.5.1
versionCode: 22
commit: 2.5.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 2.5.0
CurrentVersionCode: 21
| Update CV of Flavordex to 2.5.0 (21) | Update CV of Flavordex to 2.5.0 (21)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
0f210e8db64c106df16c840ed2873f51b1c603c8 | install.conf.yaml | install.conf.yaml | - clean: ['~']
- shell: # Pre-install
-
command: mkdir -p ~/.config/nvim
stdout: true
stderr: true
- link:
~/.tmux.conf: tmux.conf
~/.gitconfig: gitconfig
~/.vimrc: vimrc
~/.zshrc: zshrc
~/.zshrc.local: zshrc.local
~/.Xresources: Xresources
~/.alias: alias
~/.xprofile: xprofile
~/.gnupg/gpg-agent.conf: gnupg/gpg-agent.conf
~/.config/nvim/init.vim: nvim/init.vim
- shell: # Post-install
-
command: sh ./neobundle-install.sh
stdout: true
stderr: true
| - clean: ['~']
- shell: # Pre-install
-
command: mkdir -p ~/.gnupg
stdout: true
stderr: true
-
command: mkdir -p ~/.config/nvim
stdout: true
stderr: true
- link:
~/.tmux.conf: tmux.conf
~/.gitconfig: gitconfig
~/.vimrc: vimrc
~/.zshrc: zshrc
~/.zshrc.local: zshrc.local
~/.Xresources: Xresources
~/.alias: alias
~/.xprofile: xprofile
~/.gnupg/gpg-agent.conf: gnupg/gpg-agent.conf
~/.config/nvim/init.vim: nvim/init.vim
- shell: # Post-install
-
command: sh ./neobundle-install.sh
stdout: true
stderr: true
| Add pre-install step to ensure presence of .gnupg | Add pre-install step to ensure presence of .gnupg
| YAML | mit | ouroboros8/dotfiles,ouroboros8/dotfiles |
ebd53d511f2f194beb0b3c4d84511efdc4e07030 | packages/in/index-core.yaml | packages/in/index-core.yaml | homepage: ''
changelog-type: ''
hash: 97808339bd2ac8a5c79ed99e716e2e8e941234421fde3930b370e0bbc734b063
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Indexed Types
changelog: ''
basic-deps:
base: ! '>=4 && <4.8'
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
author: Gabriel Gonzalez
latest: '1.0.2'
description-type: haddock
description: ! 'This library implements indexed types in the style of Conor McBride,
described in the functional pearl \"Kleisli arrows of outrageous fortune\",
following his presentation closely.
This provides a more general form of indexed monad than the one people are
most commonly familiar with.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: f4d8953baf6811a2fc1872ecda0d7fa265bc0d933667c4d6b175977cd6d519b5
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Indexed Types
changelog: ''
basic-deps:
base: ! '>=4 && <5'
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
- '1.0.3'
author: Gabriel Gonzalez
latest: '1.0.3'
description-type: haddock
description: ! 'This library implements indexed types in the style of Conor McBride,
described in the functional pearl \"Kleisli arrows of outrageous fortune\",
following his presentation closely.
This provides a more general form of indexed monad than the one people are
most commonly familiar with.'
license-name: BSD3
| Update from Hackage at 2016-04-10T23:40:11+0000 | Update from Hackage at 2016-04-10T23:40:11+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
fcae6ee227b35da805360f419844af9072bb7a28 | kubernetes/api_deployment.yaml | kubernetes/api_deployment.yaml | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: sdapi
spec:
replicas: 1
template:
metadata:
labels:
app: screwdriver
tier: api
spec:
containers:
- name: screwdriver-api
image: screwdrivercd/api
ports:
- containerPort: 8080
volumeMounts:
- name: apikey
mountPath: /etc/kubernetes/apikey
readOnly: true
- name: screwdriver-imdb
mountPath: /opt/screwdriver/data
env:
- name: DATA_DIR
value: /opt/screwdriver/data
- name: SECRET_JWT_PRIVATE_KEY
valueFrom:
secretKeyRef:
name: plugin-login-secrets
key: jwtprivatekey
- name: SECRET_OAUTH_CLIENT_ID
valueFrom:
secretKeyRef:
name: plugin-login-secrets
key: oauthclientid
- name: SECRET_OAUTH_CLIENT_SECRET
valueFrom:
secretKeyRef:
name: plugin-login-secrets
key: oauthclientsecret
- name: SECRET_PASSWORD
valueFrom:
secretKeyRef:
name: plugin-login-secrets
key: password
- name: K8S_TOKEN
valueFrom:
secretKeyRef:
name: default-token-sw0ar
key: token
volumes:
- name: screwdriver-imdb
awsElasticBlockStore:
volumeID: vol-2d20aaa4
fsType: ext4
| apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: sdapi
spec:
replicas: 1
template:
metadata:
labels:
app: screwdriver
tier: api
spec:
containers:
- name: screwdriver-api
image: screwdrivercd/api
ports:
- containerPort: 8080
volumeMounts:
- name: screwdriver-imdb
mountPath: /opt/screwdriver/data
env:
- name: DATA_DIR
value: /opt/screwdriver/data
- name: SECRET_JWT_PRIVATE_KEY
valueFrom:
secretKeyRef:
name: plugin-login-secrets
key: jwtprivatekey
- name: SECRET_OAUTH_CLIENT_ID
valueFrom:
secretKeyRef:
name: plugin-login-secrets
key: oauthclientid
- name: SECRET_OAUTH_CLIENT_SECRET
valueFrom:
secretKeyRef:
name: plugin-login-secrets
key: oauthclientsecret
- name: SECRET_PASSWORD
valueFrom:
secretKeyRef:
name: plugin-login-secrets
key: password
- name: K8S_TOKEN
valueFrom:
secretKeyRef:
name: default-token-sw0ar
key: token
volumes:
- name: screwdriver-imdb
awsElasticBlockStore:
volumeID: vol-2d20aaa4
fsType: ext4
| Remove apikey from volume mounts | Remove apikey from volume mounts
| YAML | bsd-3-clause | screwdriver-cd/api |
fec18e1a69322a611e84ff4bb7b2411adef95ec6 | docker/centos7/requirements.yml | docker/centos7/requirements.yml | ---
- src: openmicroscopy.ice
- src: openmicroscopy.omero-python-deps
- name: openmicroscopy.omero-common
src: https://github.com/openmicroscopy/ansible-role-omero-common.git
- name: openmicroscopy.omego
src: https://github.com/openmicroscopy/ansible-role-omego.git
| ---
- src: openmicroscopy.ice
version: 2.0.0
- src: openmicroscopy.omero-python-deps
version: 1.1.0
- name: openmicroscopy.omero-common
src: https://github.com/openmicroscopy/ansible-role-omero-common/archive/0.1.0.tar.gz
- name: openmicroscopy.omego
src: https://github.com/openmicroscopy/ansible-role-omego/archive/0.1.0.tar.gz
| Use versions for galaxy roles. Workaround galaxy bug. | Use versions for galaxy roles. Workaround galaxy bug.
| YAML | apache-2.0 | simleo/pydoop-features,simleo/pydoop-features,simleo/pydoop-features |
daf901a686656ad0a2546bdc242d090b05523b67 | conda/meta.yaml | conda/meta.yaml | package:
name: im-fusion
version: {{ environ.get('GIT_DESCRIBE_TAG', '')[1:]+ '+' + environ.get('GIT_DESCRIBE_NUMBER', '') }}
source:
path: ../
requirements:
build:
- setuptools
# Basic dependencies.
- python
- future
- pandas
- numexpr
- pysam ==0.8.4
- toolz
- scipy
- seaborn
- pyfaidx
- intervaltree
- pathlib2 # [py27]
- r
- rpy2
run:
# Basic dependencies.
- python
- intervaltree
- future
- pandas
- numexpr
- pysam ==0.8.4
- toolz
- scipy
- seaborn
- pyfaidx
- intervaltree
- pathlib2 # [py27]
- r
- rpy2
# Bioconda dependencies.
- tophat
- bowtie
- subread
test:
imports:
- imfusion
commands:
- im-fusion -h
- tophat --version
- featureCounts -v
- py.test $SRC_DIR
requires:
- mock
- pytest
- pytest-datafiles
- pytest-mock
- pytest-helpers-namespace
about:
home: https://github.com/jrderuiter/im-fusion
license: MIT
summary: "IM-Fusion - Tool for identifying transposon insertions
and their effects from RNA-sequencing data"
| package:
name: im-fusion
version: {{ environ.get('GIT_DESCRIBE_TAG', '')[1:] }}
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
source:
path: ../
requirements:
build:
- setuptools
# Basic dependencies.
- python
- future
- pandas
- numexpr
- pysam ==0.8.4
- toolz
- scipy
- seaborn
- pyfaidx
- intervaltree
- pathlib2 # [py27]
- r
- rpy2
run:
# Basic dependencies.
- python
- intervaltree
- future
- pandas
- numexpr
- pysam ==0.8.4
- toolz
- scipy
- seaborn
- pyfaidx
- intervaltree
- pathlib2 # [py27]
- r
- rpy2
# Bioconda dependencies.
- tophat
- bowtie
- subread
test:
imports:
- imfusion
commands:
- im-fusion -h
- tophat --version
- featureCounts -v
- py.test $SRC_DIR
requires:
- mock
- pytest
- pytest-datafiles
- pytest-mock
- pytest-helpers-namespace
about:
home: https://github.com/jrderuiter/im-fusion
license: MIT
summary: "IM-Fusion - Tool for identifying transposon insertions
and their effects from RNA-sequencing data"
| Change build tag in conda. | Change build tag in conda.
| YAML | mit | jrderuiter/im-fusion,NKI-CCB/imfusion,jrderuiter/im-fusion,NKI-CCB/imfusion |
8505e2737e43f89c09fc9597889e56a6f8e114b9 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- nightly
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.1
env: STYLE
install:
- travis_retry composer install --prefer-dist --no-interaction --no-suggest
script: vendor/bin/php-cs-fixer fix . --dry-run --diff
allow_failures:
- php: nightly
install:
- composer remove friendsofphp/php-cs-fixer --dev --no-update --no-interaction
- travis_retry composer install --prefer-dist --no-interaction --no-suggest
script: vendor/bin/phpunit
| language: php
php:
- 7.1
- nightly
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.1
env: STYLE
install:
- composer config github-oauth.github.com $GITHUB_OAUTH
- travis_retry composer install --prefer-dist --no-interaction --no-suggest
script: vendor/bin/php-cs-fixer fix . --dry-run --diff
allow_failures:
- php: nightly
install:
- composer config github-oauth.github.com $GITHUB_OAUTH
- composer remove friendsofphp/php-cs-fixer --dev --no-update --no-interaction
- travis_retry composer install --prefer-dist --no-interaction --no-suggest
script: vendor/bin/phpunit
| Add GitHub auth to pull dependencies via composer | Add GitHub auth to pull dependencies via composer
| YAML | mit | Parsemd/Parsemd |
23b861a43e4ff12bba72bb79be547230805450fd | skeleton/spec/acceptance/nodesets/debian-76-x64.yml | skeleton/spec/acceptance/nodesets/debian-76-x64.yml | HOSTS:
debian-76-x64:
roles:
- master
platform: debian-7-amd64
box: puppetlabs/debian-7.6-64-nocm
box_url: https://vagrantcloud.com/puppetlabs/boxes/debian-7.6-64-nocm
hypervisor: vagrantHOSTS:
CONFIG:
log_level: verbose
type: foss
| HOSTS:
debian-76-x64:
roles:
- master
platform: debian-7-amd64
box: puppetlabs/debian-7.6-64-nocm
box_url: https://vagrantcloud.com/puppetlabs/boxes/debian-7.6-64-nocm
hypervisor: vagrant
CONFIG:
log_level: verbose
type: foss
| Fix yaml for debian 7 beaker node | Fix yaml for debian 7 beaker node
| YAML | apache-2.0 | natemccurdy/puppet-module-skeleton,mmarseglia/puppet-module-skeleton,danieldreier/puppet-module-skeleton,garethr/puppet-module-skeleton,chartbeat-labs/puppet-module-skeleton,ITV/puppet-module-skeleton,fvoges/puppet-module-skeleton,pgomersbach/puppet-module-skeleton,jlambert121/puppet-module-skeleton,garethr/puppet-module-skeleton,chartbeat-labs/puppet-module-skeleton,spacepants/puppet-module-skeleton,yo61/puppet-module-skeleton,natemccurdy/puppet-module-skeleton,devops-workflow/puppet-module-skeleton,witjoh/puppet-module-skeleton,danieldreier/puppet-module-skeleton,spacepants/puppet-module-skeleton,jbarbuto/puppet-module-skeleton,yo61/puppet-module-skeleton,witjoh/puppet-module-skeleton,kyblik/puppet-module-skeleton,devops-workflow/puppet-module-skeleton,mmarseglia/puppet-module-skeleton,fvoges/puppet-module-skeleton,jbarbuto/puppet-module-skeleton,mmarseglia/puppet-module-skeleton,jlambert121/puppet-module-skeleton,natemccurdy/puppet-module-skeleton,ITV/puppet-module-skeleton,witjoh/puppet-module-skeleton,spacepants/puppet-module-skeleton,pgomersbach/puppet-module-skeleton,fvoges/puppet-module-skeleton,tuxmea/puppet-module-skeleton,tuxmea/puppet-module-skeleton,danieldreier/puppet-module-skeleton,ITV/puppet-module-skeleton,jbarbuto/puppet-module-skeleton,tuxmea/puppet-module-skeleton,timhughes/puppet-module-skeleton,abes140377/puppet-module-skeleton,abes140377/puppet-module-skeleton,tubemogul/puppet-module-skeleton,tubemogul/puppet-module-skeleton,kyblik/puppet-module-skeleton,garethr/puppet-module-skeleton,tubemogul/puppet-module-skeleton,pgomersbach/puppet-module-skeleton,abes140377/puppet-module-skeleton,yo61/puppet-module-skeleton,timhughes/puppet-module-skeleton,chartbeat-labs/puppet-module-skeleton,devops-workflow/puppet-module-skeleton,jlambert121/puppet-module-skeleton,timhughes/puppet-module-skeleton,kyblik/puppet-module-skeleton |
03257aa14d1930e44c83f797c8a4fb0df3bd85b0 | .travis.yml | .travis.yml | language: php
php:
- '5.6'
install:
- composer install
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- cp test/php/.travis.config.php test/php/config.php
- npm install
- bower install
script:
- phpunit
- grunt jasmine
| language: php
php:
- '5.6'
install:
- composer install
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- cp test/php/.travis.config.php test/php/config.php
- npm install
- node_modules/bower/bin/bower install
script:
- phpunit
- grunt jasmine
| Adjust bower command to use local node version | Adjust bower command to use local node version
| YAML | mit | molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec |
884c102258cefeaadda02dcac1bac7bc8e469bf5 | .travis.yml | .travis.yml | # Travis performance customizations based on
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
# Use faster container-based infrastructure
sudo: false
language: scala
# These directories are cached to S3 at the end of the build
#cache:
# directories:
# - $HOME/.ivy2/cache
# - $HOME/.sbt/boot/
scala:
- 2.10.5
- 2.11.8
env:
# - SPARK_VER=1.6.1 spark 1.6 is not supported anymore
- SPARK_VER=2.0.1
script:
- export SKIP_WHEN_TRAVIS=yes; SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -Xmx4G -XX:MaxPermSize=4G" sbt -Dspark.version=$SPARK_VER -Dscala.version=$TRAVIS_SCALA_VERSION -Dspark.resolver.search=true "set offline := true" test
# # Tricks to avoid unnecessary cache updates
# - find $HOME/.sbt -name "*.lock" | xargs rm -f
# - find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm -f
| # Travis performance customizations based on
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
# Use faster container-based infrastructure
sudo: false
language: scala
# These directories are cached to S3 at the end of the build
#cache:
# directories:
# - $HOME/.ivy2/cache
# - $HOME/.sbt/boot/
scala:
- 2.10.5
- 2.11.8
env:
# - SPARK_VER=1.6.1 spark 1.6 is not supported anymore
- SPARK_VER=2.0.2
script:
- export SKIP_WHEN_TRAVIS=yes; SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -Xmx4G -XX:MaxPermSize=4G" sbt -Dspark.version=$SPARK_VER -Dscala.version=$TRAVIS_SCALA_VERSION -Dspark.resolver.search=false "set offline := true" test
# # Tricks to avoid unnecessary cache updates
# - find $HOME/.sbt -name "*.lock" | xargs rm -f
# - find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm -f
| Update spark to released version | Travis: Update spark to released version
| YAML | apache-2.0 | spark-notebook/spark-notebook,0asa/spark-notebook,spark-notebook/spark-notebook,antonkulaga/spark-notebook,maasg/spark-notebook,spark-notebook/spark-notebook,0asa/spark-notebook,antonkulaga/spark-notebook,andypetrella/spark-notebook,maasg/spark-notebook,maasg/spark-notebook,spark-notebook/spark-notebook,antonkulaga/spark-notebook,andypetrella/spark-notebook,antonkulaga/spark-notebook,0asa/spark-notebook,maasg/spark-notebook,0asa/spark-notebook,andypetrella/spark-notebook,andypetrella/spark-notebook |
f6f603552b1119d1840b217582d6f5afdfc7df53 | data/plugin.yml | data/plugin.yml | name: UltraCommand
version: 0.5.2-flex
author: Kier Davis <kierdavis@gmail.com>
main: com.kierdavis.ultracommand.UltraCommand
commands:
uc:
description: UltraCommand
ultracommand:
description: UltraCommand
permissions:
ultracommand.configure:
description: Gives access to the /uc and /ultracommand commands.
default: op
ultracommand.commands.*:
description: Gives access to all custom commands defined with this plugin.
default: op
ultracommand.commands.<name>:
description: Gives access to the custom command named <name>.
| name: UltraCommand
version: 0.5.3-flex
author: Kier Davis <kierdavis@gmail.com>
main: com.kierdavis.ultracommand.UltraCommand
commands:
uc:
description: UltraCommand
ultracommand:
description: UltraCommand
permissions:
ultracommand.configure:
description: Gives access to the /uc and /ultracommand commands.
default: op
ultracommand.commands.*:
description: Gives access to all custom commands defined with this plugin.
default: op
ultracommand.commands.<name>:
description: Gives access to the custom command named <name>.
| Update version to rebuild with new upstream artifact | Update version to rebuild with new upstream artifact
| YAML | mit | kierdavis/UltraCommand |
7d3d792f345c634359ab6ab5ce53601b011c6b8d | .travis.yml | .travis.yml | language: go
go_import_path: aqwari.net/xml
go:
- 1.7
notifications:
email:
recipients: droyo@aqwari.net
on_success: change
on_failure: always
| language: go
go_import_path: aqwari.net/xml
go:
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11"
notifications:
email:
recipients: droyo@aqwari.net
on_success: change
on_failure: always
| Extend build to more go versions | Extend build to more go versions
| YAML | mit | droyo/go-xml |
7960eabca4dbd769daafd7a6661a4bc7ca2b5a1a | recipes/jobtastic/meta.yaml | recipes/jobtastic/meta.yaml | {% set name = "jobtastic" %}
{% set version = "0.3.1" %}
{% set hash_type = "md5" %}
{% set hash_val = "e43f1017fd76726955dd8afdf78a1a04" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://github.com/PolicyStat/{{ name }}/archive/v{{ version }}.tar.gz
{{hash_type}}: {{ md5 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
- psutil >=3.0,<4
- celery >=2.5,<4
run:
- python
- psutil >=3.0,<4
- celery >=2.5,<4
test:
# Python imports
imports:
- jobtastic
requires:
- django
- django-nose
- mock
- unittest2 # [ py26 ]
about:
home: http://policystat.github.com/jobtastic
license: BSD
summary: 'Make your user-facing Celery jobs totally awesomer'
extra:
recipe-maintainers:
- sodre
| {% set name = "jobtastic" %}
{% set version = "0.3.1" %}
{% set hash_type = "md5" %}
{% set hash_val = "e43f1017fd76726955dd8afdf78a1a04" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://github.com/PolicyStat/{{ name }}/archive/v{{ version }}.tar.gz
{{hash_type}}: {{ hash_val }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
- psutil >=3.0,<4
- celery >=2.5,<4
run:
- python
- psutil >=3.0,<4
- celery >=2.5,<4
test:
# Python imports
imports:
- jobtastic
requires:
- django
- django-nose
- mock
- unittest2 # [ py26 ]
about:
home: http://policystat.github.com/jobtastic
license: BSD
summary: 'Make your user-facing Celery jobs totally awesomer'
description: 'Jobtastic makes your user-responsive long-running Celery jobs totally awesomer. Celery is the ubiquitous python job queueing tool and jobtastic is a python library that adds useful features to your Celery tasks. Specifically, these are features you probably want if the results of your jobs are expensive or if your users need to wait while they compute their results.'
extra:
recipe-maintainers:
- sodre
| Correct hash_val typo. Add description | Correct hash_val typo. Add description
| YAML | bsd-3-clause | mariusvniekerk/staged-recipes,ceholden/staged-recipes,chohner/staged-recipes,basnijholt/staged-recipes,koverholt/staged-recipes,stuertz/staged-recipes,dharhas/staged-recipes,hbredin/staged-recipes,asmeurer/staged-recipes,ceholden/staged-recipes,jakirkham/staged-recipes,johannesring/staged-recipes,pmlandwehr/staged-recipes,sodre/staged-recipes,ocefpaf/staged-recipes,khallock/staged-recipes,Juanlu001/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes,gqmelo/staged-recipes,khallock/staged-recipes,scopatz/staged-recipes,caspervdw/staged-recipes,mariusvniekerk/staged-recipes,glemaitre/staged-recipes,kwilcox/staged-recipes,tylere/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,bmabey/staged-recipes,Savvysherpa/staged-recipes,NOAA-ORR-ERD/staged-recipes,hbredin/staged-recipes,jerowe/staged-recipes,ocefpaf/staged-recipes,hadim/staged-recipes,synapticarbors/staged-recipes,koverholt/staged-recipes,jerowe/staged-recipes,jcb91/staged-recipes,gqmelo/staged-recipes,petrushy/staged-recipes,hajapy/staged-recipes,Juanlu001/staged-recipes,guillochon/staged-recipes,birdsarah/staged-recipes,grlee77/staged-recipes,ReimarBauer/staged-recipes,cpaulik/staged-recipes,dschreij/staged-recipes,chohner/staged-recipes,bmabey/staged-recipes,barkls/staged-recipes,dharhas/staged-recipes,vamega/staged-recipes,atedstone/staged-recipes,JohnGreeley/staged-recipes,barkls/staged-recipes,sodre/staged-recipes,ReimarBauer/staged-recipes,pmlandwehr/staged-recipes,jochym/staged-recipes,planetarypy/staged-recipes,isuruf/staged-recipes,pstjohn/staged-recipes,sannykr/staged-recipes,igortg/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,rvalieris/staged-recipes,goanpeca/staged-recipes,cpaulik/staged-recipes,dfroger/staged-recipes,rvalieris/staged-recipes,sannykr/staged-recipes,SylvainCorlay/staged-recipes,birdsarah/staged-recipes,atedstone/staged-recipes,larray-project/staged-recipes,isuruf/staged-recipes,asmeurer/staged-recipes,basnijholt/staged-recipes,guillochon/staged-recipes,hajapy/staged-recipes,caspervdw/staged-recipes,chrisburr/staged-recipes,mcernak/staged-recipes,SylvainCorlay/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,larray-project/staged-recipes,jjhelmus/staged-recipes,chrisburr/staged-recipes,benvandyke/staged-recipes,Cashalow/staged-recipes,JohnGreeley/staged-recipes,sodre/staged-recipes,glemaitre/staged-recipes,NOAA-ORR-ERD/staged-recipes,shadowwalkersb/staged-recipes,benvandyke/staged-recipes,petrushy/staged-recipes,blowekamp/staged-recipes,pstjohn/staged-recipes,johanneskoester/staged-recipes,tylere/staged-recipes,jcb91/staged-recipes,patricksnape/staged-recipes,mcs07/staged-recipes,blowekamp/staged-recipes,grlee77/staged-recipes,planetarypy/staged-recipes,rmcgibbo/staged-recipes,jjhelmus/staged-recipes,synapticarbors/staged-recipes,jakirkham/staged-recipes,rmcgibbo/staged-recipes,Savvysherpa/staged-recipes,scopatz/staged-recipes,mcernak/staged-recipes,shadowwalkersb/staged-recipes,patricksnape/staged-recipes,vamega/staged-recipes,johannesring/staged-recipes,mcs07/staged-recipes,Cashalow/staged-recipes,dfroger/staged-recipes |
2c81a56a37aeecf719722092675eaa48595e47c4 | hieradata/role-backend-app.yaml | hieradata/role-backend-app.yaml | ---
classes:
- 'python'
- 'backdrop'
backdrop_apps:
read.backdrop:
port: 3038
app_module: 'backdrop.read.api:app'
user: 'deploy'
group: 'deploy'
write.backdrop:
port: 3039
app_module: 'backdrop.write.api:app'
user: 'deploy'
group: 'deploy'
python::version: '2.7'
python::dev: true
python::virtualenv: true
backdrop::user: 'deploy'
backdrop::group: 'deploy'
backdrop::pip_cache_path: '/var/cache/pip-download-cache'
ufw_rules:
allowhttp:
port: 80
ip: 'any'
| ---
classes:
- 'python'
- 'backdrop'
backdrop_apps:
read.backdrop:
port: 3038
app_module: 'backdrop.read.api:app'
user: 'deploy'
group: 'deploy'
write.backdrop:
port: 3039
app_module: 'backdrop.write.api:app'
user: 'deploy'
group: 'deploy'
python::version: '2.7'
python::dev: true
python::virtualenv: true
python::pip: true
backdrop::user: 'deploy'
backdrop::group: 'deploy'
backdrop::pip_cache_path: '/var/cache/pip-download-cache'
ufw_rules:
allowhttp:
port: 80
ip: 'any'
| Install pip when installing python | Install pip when installing python
| YAML | mit | alphagov/pp-puppet,alphagov/pp-puppet,alphagov/pp-puppet,alphagov/pp-puppet |
aa91e9de6ce2b7443d26f4d060eab6bf4e2d34e8 | packages/ao/aop-prelude.yaml | packages/ao/aop-prelude.yaml | homepage: https://github.com/cutsea110/aop-prelude.git
changelog-type: markdown
hash: dfd76cf8d4656753ad7dada50b8aa711ad07412ee7dd295049c6b2a3fb3d652c
test-bench-deps:
base: ^>=4.12.0.0
ghc-prim: ^>=0.5.3
maintainer: cutsea110@gmail.com
synopsis: prelude for Algebra of Programming
changelog: |
# Revision history for aop-prelude
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
base: ^>=4.12.0.0
ghc-prim: ^>=0.5.3
all-versions:
- 0.1.0.0
- 0.2.0.0
author: cutsea110
latest: 0.2.0.0
description-type: haddock
description: prelude for Algenra of Programming, the original code was created by
Richard Bird.
license-name: BSD-3-Clause
| homepage: https://github.com/cutsea110/aop-prelude.git
changelog-type: markdown
hash: 127b28ec00736c2bd10b516ceafa21eb7e27dc07c7a63a4f86e1c352af47a085
test-bench-deps:
base: ^>=4.12.0.0
ghc-prim: ^>=0.5.3
maintainer: cutsea110@gmail.com
synopsis: prelude for Algebra of Programming
changelog: |
# Revision history for aop-prelude
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
base: ^>=4.12.0.0
integer-gmp: ^>=1.0.2
ghc-prim: ^>=0.5.3
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.3.0.0
author: cutsea110
latest: 0.3.0.0
description-type: haddock
description: prelude for Algenra of Programming, the original code was created by
Richard Bird.
license-name: BSD-3-Clause
| Update from Hackage at 2020-04-12T00:13:16Z | Update from Hackage at 2020-04-12T00:13:16Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2d33402aba02148635b7cda269dd6ce93ea79cba | .builds/archlinux.yaml | .builds/archlinux.yaml | image: archlinux
packages:
- python-pip
- python-tox
- python-wheel
- python-pre-commit
- twine
sources:
- https://github.com/pimutils/todoman
secrets:
- 9a8d4d44-96f9-4365-beaa-aaa759c4f1c4
environment:
CODECOV_TOKEN: a4471483-7f55-411a-bf2f-f65a91013dc4
CI: true
tasks:
- setup: |
sudo pip install codecov
- test: |
# Test without pyicu installed:
cd todoman
tox -e py
codecov
- test-pyicu: |
# Test with pyicu installed:
cd todoman
TOXENV=pyicu tox
codecov
- test-repl: |
# Test repl repl:
cd todoman
TOXENV=repl tox
codecov
git describe --exact-match --tags || complete-build
- publish: |
cd todoman
python setup.py sdist bdist_wheel
twine upload dist/*
| image: archlinux
packages:
- python-build
- python-pip
- python-pre-commit
- python-tox
- python-wheel
- python-setuptools-scm
- twine
sources:
- https://github.com/pimutils/todoman
secrets:
- 9a8d4d44-96f9-4365-beaa-aaa759c4f1c4
environment:
CODECOV_TOKEN: a4471483-7f55-411a-bf2f-f65a91013dc4
CI: true
tasks:
- setup: |
sudo pip install codecov
- test: |
# Test without pyicu installed:
cd todoman
tox -e py
codecov
- test-pyicu: |
# Test with pyicu installed:
cd todoman
TOXENV=pyicu tox
codecov
- test-repl: |
# Test repl repl:
cd todoman
TOXENV=repl tox
codecov
- package: |
cd todoman
python -m build --wheel --no-isolation
git describe --exact-match --tags || complete-build
- publish: |
cd todoman
twine upload dist/*
| Use PEP 517 for building wheels | Use PEP 517 for building wheels
| YAML | isc | pimutils/todoman |
1e0bcedaa1a54846e63d9e0403b029bb625c5425 | src/Oro/Bundle/ChartBundle/Resources/config/requirejs.yml | src/Oro/Bundle/ChartBundle/Resources/config/requirejs.yml | config:
shim:
'flotr2':
deps:
- 'jquery'
paths:
'flotr2': 'bundles/orochart/lib/flotr2/flotr2.amd.js'
'bean': 'bundles/orochart/lib/flotr2/bean.js'
'orochart/js/chart_form': 'bundles/orochart/js/chart_form.js'
'orochart/js/data_formatter': 'bundles/orochart/js/data_formatter.js'
'orochart/js/flotr2/funnel': 'bundles/orochart/js/flotr2/funnel.js'
'orochart/js/charts/bar_chart': 'bundles/orochart/js/charts/bar_chart.js'
'orochart/js/charts/pie_chart': 'bundles/orochart/js/charts/pie_chart.js'
'orochart/js/charts/flow_chart': 'bundles/orochart/js/charts/flow_chart.js'
'orochart/js/charts/line_chart': 'bundles/orochart/js/charts/line_chart.js'
| config:
shim:
'flotr2':
deps:
- 'jquery'
paths:
'flotr2': 'bundles/orochart/lib/flotr2/flotr2.amd.js'
'bean': 'bundles/orochart/lib/flotr2/bean.js'
'orochart/js/chart_form': 'bundles/orochart/js/chart_form.js'
'orochart/js/data_formatter': 'bundles/orochart/js/data_formatter.js'
'orochart/js/flotr2/funnel': 'bundles/orochart/js/flotr2/funnel.js'
'orochart/js/charts/abstract_chart': 'bundles/orochart/js/charts/abstract_chart.js'
'orochart/js/charts/bar_chart': 'bundles/orochart/js/charts/bar_chart.js'
'orochart/js/charts/pie_chart': 'bundles/orochart/js/charts/pie_chart.js'
'orochart/js/charts/flow_chart': 'bundles/orochart/js/charts/flow_chart.js'
'orochart/js/charts/line_chart': 'bundles/orochart/js/charts/line_chart.js'
| Add require js path for abstract chart widget | tiket/1726: Add require js path for abstract chart widget
| YAML | mit | 2ndkauboy/platform,ramunasd/platform,morontt/platform,ramunasd/platform,hugeval/platform,2ndkauboy/platform,Djamy/platform,hugeval/platform,trustify/oroplatform,Djamy/platform,hugeval/platform,northdakota/platform,orocrm/platform,northdakota/platform,geoffroycochard/platform,ramunasd/platform,orocrm/platform,2ndkauboy/platform,Djamy/platform,morontt/platform,geoffroycochard/platform,trustify/oroplatform,trustify/oroplatform,orocrm/platform,geoffroycochard/platform,northdakota/platform,morontt/platform |
ce38981ba5cf69a2540f872d0a8b74124e164620 | packages/co/connections.yaml | packages/co/connections.yaml | homepage: https://github.com/cmk/connections
changelog-type: markdown
hash: b3461b73d3b77ee8554d0c97c6c996e02f65d242435b16ac9a4612f29f0028b6
test-bench-deps:
property: -any
base: ==4.*
connections: -any
hedgehog: -any
maintainer: chris.mckinlay@gmail.com
synopsis: Partial orders & Galois connections.
changelog: |
# Revision history for orders
## 0.0.1 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
semigroupoids: ==5.*
property: ! '>=0.0.1 && <1.0'
base: ! '>=4.10 && <5.0'
containers: ! '>=0.4.0 && <0.7'
all-versions:
- 0.0.1
- 0.0.2
- 0.0.2.1
author: Chris McKinlay
latest: 0.0.2.1
description-type: haddock
description: A library for precision rounding using Galois connections.
license-name: BSD-3-Clause
| homepage: https://github.com/cmk/connections
changelog-type: markdown
hash: 11b5eb6de24d1049560689e639b60db1c73389e41a108d89894715dcd11373f5
test-bench-deps:
property: -any
base: ==4.*
connections: -any
hedgehog: -any
maintainer: chris.mckinlay@gmail.com
synopsis: Partial orders, lattices, & Galois connections.
changelog: |
# Revision history for orders
## 0.0.1 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
semigroupoids: ==5.*
base: ! '>=4.10 && <5.0'
containers: ! '>=0.4.0 && <0.7'
lawz: ! '>=0.0.1 && <1.0'
all-versions:
- 0.0.1
- 0.0.2
- 0.0.2.1
- 0.0.2.2
author: Chris McKinlay
latest: 0.0.2.2
description-type: haddock
description: A library for precision rounding using Galois connections.
license-name: BSD-3-Clause
| Update from Hackage at 2019-12-29T21:35:25Z | Update from Hackage at 2019-12-29T21:35:25Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1a237c9f98b37a29373a5865f275d2c883b5aee5 | packages/ec/ecta-plugin.yaml | packages/ec/ecta-plugin.yaml | homepage: ''
changelog-type: ''
hash: 7c06f993f5447ef737766be0196bbb0fbac34a38cc5a1793cf030d86abb2fdbd
test-bench-deps: {}
maintainer: mpg@mpg.is
synopsis: Hole-Fit Synthesis using ECTAs
changelog: ''
basic-deps:
ghc: '>8.10 && <9'
base: '>=4 && <5'
text: '>1.2 && <=1.3'
ecta: '>=1.0 && <1.1'
containers: '>0.6 && <=0.7'
all-versions:
- 0.1.0
- 0.1.0.1
author: Matthías Páll Gissurarson
latest: 0.1.0.1
description-type: haddock
description: |-
A hole-fit plugin for GHC that uses an ECTA to synthesize valid hole-fits.
See <https://github.com/jkoppel/ecta> for more details on ECTAs!
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 343cd4873242553f4f01f309e7481eacc5989803d0d97f65b80224890aca0790
test-bench-deps: {}
maintainer: mpg@mpg.is
synopsis: Hole-Fit Synthesis using ECTAs
changelog: ''
basic-deps:
ghc: '>8.10 && <9'
base: '>=4 && <5'
text: '>1.2 && <=1.3'
ecta: '>=1.0 && <1.1'
containers: '>0.6 && <=0.7'
all-versions:
- 0.1.0
- 0.1.0.1
- 0.1.1.1
author: Matthías Páll Gissurarson
latest: 0.1.1.1
description-type: haddock
description: |-
A hole-fit plugin for GHC that uses an ECTA to synthesize valid hole-fits.
See <https://github.com/jkoppel/ecta> for more details on ECTAs!
license-name: MIT
| Update from Hackage at 2022-09-14T14:40:53Z | Update from Hackage at 2022-09-14T14:40:53Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
dc7190164a3585a164df86b1973711c2753f39a2 | .dependabot/config.yml | .dependabot/config.yml | # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdependencies)
update_type: "all"
automerged_updates:
- match:
dependency_type: "development"
update_type: "all"
- match:
dependency_type: "production"
update_type: "semver:patch"
- match:
dependency_name: "rubocop"
update_type: "all"
- match:
dependency_name: "specinfra"
update_type: "all"
# Enable. Only lockfile updates (ignore updates that require Gemfile changes)
version_requirement_updates: "off"
| # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdependencies)
update_type: "all"
automerged_updates:
- match:
dependency_type: "development"
update_type: "all"
- match:
dependency_type: "production"
update_type: "semver:patch"
- match:
dependency_name: "rubocop"
update_type: "all"
- match:
dependency_name: "specinfra"
update_type: "all"
- match:
dependency_name: "rspec*"
update_type: "all"
# Enable. Only lockfile updates (ignore updates that require Gemfile changes)
version_requirement_updates: "off"
| Allow auto merge rspec gems | Allow auto merge rspec gems | YAML | mit | sue445/jenkins-backup-script,sue445/jenkins-backup-script |
8de3c648918a8ea0abc87b3195f60b580a7ccda6 | conda-recipe/meta.yaml | conda-recipe/meta.yaml | package:
name: filestore
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: ../
patches:
- config.patch
build:
number: 1
# Note that this will override the default build string with the Python
# and NumPy versions
string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }}
requirements:
build:
- python
- six
run:
- python
- mongoengine ==0.8.7
- h5py
- numpy
- six
- pyyaml
- jsonschema
- pims
- tifffile
- boltons
test:
requires:
- nslsii_dev_configuration
imports:
- filestore
- filestore.api
- filestore.commands
- filestore.conf
- filestore.file_writers
- filestore.handlers
- filestore.odm_templates
- filestore.retrieve
- filestore.utils
about:
home: https://github.com/NSLS-II/filestore
license: BSD
| package:
name: filestore
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: ../
patches:
- config.patch
build:
number: 1
# Note that this will override the default build string with the Python
# and NumPy versions
string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }}
requirements:
build:
- python
- six
run:
- python
- mongoengine ==0.8.7
- h5py
- numpy
- six
- pyyaml
- jsonschema
- pims
- tifffile
- boltons
test:
requires:
- nslsii_dev_configuration
imports:
- filestore
- filestore.api
- filestore.commands
- filestore.conf
- filestore.file_writers
- filestore.handlers
- filestore.odm_templates
- filestore.path_only_handlers
- filestore.retrieve
- filestore.readers
- filestore.readers.spe
- filestore.utils
- filestore.utils.testing
about:
home: https://github.com/NSLS-II/filestore
license: BSD
| Include all modules in test imports | MNT: Include all modules in test imports
| YAML | bsd-3-clause | ericdill/fileStore,ericdill/fileStore,stuwilkins/filestore,danielballan/filestore,danielballan/filestore,ericdill/databroker,NSLS-II/filestore,stuwilkins/filestore,ericdill/databroker,tacaswell/filestore |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.