commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
f42397e28a25faeeb92c8364c87dc98e308081da | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.3.0
- 2.4.0
- 2.5.0
- 2.6.0
script: bundle exec rake
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.3.0
- 2.4.0
- 2.5.0
- 2.6.0
script: bundle exec rake
before_install:
- yes | gem update --system --force
- gem install bundler
| Fix an issue with Bundler 2.0 and Travis | Fix an issue with Bundler 2.0 and Travis
https://docs.travis-ci.com/user/languages/ruby/
| YAML | mit | hyperoslo/facebook-messenger,jgorset/facebook-messenger,jgorset/facebook-messenger,hyperoslo/facebook-messenger |
dbf0bb3e6c8e65c590814160aff2734214409a92 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer install -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then composer install --no-dev -n ; fi
script:
- mkdir -p build/logs
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then ph... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer install -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then composer install --no-dev -n ; fi
script:
- mkdir -p build/logs
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then phpunit --... | Remove PHP 5.3 from Travis config | Remove PHP 5.3 from Travis config
| YAML | mit | MAXakaWIZARD/JsonCollectionParser |
0ad807d443b8ae5526016360d2f5faa13ba22ae7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
script: bundle exec rspec
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.2
script: bundle exec rspec
| Add older Ruby versions to Travis config | Add older Ruby versions to Travis config
| YAML | mit | tomstuart/monads,marcinwyszynski/monads,sclinede/monads,nepalez/monads |
20d1f08aa2ca778761d24703d0256a63ea44c9e2 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- composer install
script: vendor/bin/phpunit
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- composer install
script: vendor/bin/phpunit
| Add HHVM to Travis config file | Add HHVM to Travis config file
| YAML | mit | ravage84/SwissPaymentSlipPdf |
7fe3d264441204c64c0710c74a33f973a51e8569 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
| language: node_js
node_js:
- "0.10"
- "0.11"
| Remove testing on Node.js v0.8 | Remove testing on Node.js v0.8
| YAML | mit | cha0s-repo/data2xml |
5282c2d71cafbbce7130a1a8b05e998694b9371d | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.7
- 0.6
- 0.4
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| language: node_js
node_js:
- 0.8
- 0.6
- 0.4
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| Replace node_js 0.7 with 0.8 . | Replace node_js 0.7 with 0.8 .
| YAML | mit | cliffano/bob |
b6862043e5297dd6f6a813846d49af9a3778ecda | .travis.yml | .travis.yml | language: ruby
jdk:
- oraclejdk8
sudo: false
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| language: ruby
jdk:
- oraclejdk8
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| Remove unrecognized sudo configuration section | Remove unrecognized sudo configuration section
| YAML | apache-2.0 | realityforge/ssrs-api,realityforge/ssrs-api |
d225d6ff411e6d81fbb9dfe491b137b73da62024 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.6"
install:
- pip install flake8
script:
- flake8
- python setup.py test
| language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install flake8
script:
- flake8
- python setup.py test
| Add testing for Python 3.7 and 3.8 | Add testing for Python 3.7 and 3.8
| YAML | mit | claudep/swiss-qr-bill |
820780739e16fa79053a1b6d775d7103251b68c2 | .travis.yml | .travis.yml | language: go
go:
- 1.10.x
- 1.11.x
sudo: false
script:
- godep go install github.com/streadway/amqp
- make jenkins
notifications:
email:
- bifer@alea-soluciones.com
| language: go
go:
- 1.10.x
- 1.11.x
sudo: false
script:
- go install github.com/streadway/amqp
- make jenkins
notifications:
email:
- bifer@alea-soluciones.com
| Use go tools instead godep tools | [INTERNAL][FOOLFIX] Use go tools instead godep tools
| YAML | mit | aleasoluciones/gosnmpquerier,aleasoluciones/gosnmpquerier |
2ee0f08a56f493fb5d4299c7bda9cd52c41a98a2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.6"
- node_js: "0.4"
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@1.4.6'
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.6"
- node_js: "0.4"
| Fix npm upgrading on node 0.8 | Fix npm upgrading on node 0.8
| YAML | mit | ljharb/is-generator-function |
cb452c0602f0af259bc9a582fe6f98b650947fbc | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
env: SYMFONY_VERSION=2.3.*
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- composer self-update
- composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION}
... | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
env:
global:
- COMPOSER_PREFER_LOWEST=false
- SYMFONY_VERSION=2.3.*
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- composer self-update
- composer req... | Add composer prefer lowest build | [Travis] Add composer prefer lowest build
| YAML | mit | egeloen/IvoryOrderedFormBundle,egeloen/IvoryOrderedFormBundle |
ce5015fab13d1ac87fb6df78a1a1898e2f6b4747 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.5.3
- ruby-head
gemfile: "gems.rb"
before_install: gem install bundler --no-document # Fixes ruby 2.5.3 tests
before_script:
- "ruby lib/initial_setup.rb ../.travis_setup"
- "psql -c 'create database slice_test;' -U postgres"
- "rails db:migrate"
matrix:
allow_failures:
- rvm: ru... | language: ruby
rvm:
- 2.5.3
- ruby-head
gemfile: "gems.rb"
before_install: gem install bundler --no-document # Fixes ruby 2.5.3 tests
before_script:
- "ruby lib/initial_setup.rb ../.travis_setup"
- "psql -c 'create database slice_test;' -U postgres"
- "rails db:migrate"
matrix:
allow_failures:
- rvm: ruby-head
| Remove deprecated `sudo: false` Travis-CI configuration | Remove deprecated `sudo: false` Travis-CI configuration
| YAML | mit | remomueller/slice,remomueller/slice,remomueller/slice |
5309317e3d0c7e388178c15472e25806dbdf5b5a | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=4.1.0"
script: bundle exec rspec spec/models
before_script:
- psql -c "CREATE USER cti WITH ENCRYPTED PASSWORD 'cti';" -U postgres
- psql -c "CREATE DATABASE dbvie... | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- jruby-19mode
- rbx-2
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=4.1.0"
- "RAILS_VERSION=4.2.0"
script: bundle exec rspec spec/models
before_script:
- psql -c "CREATE USER cti WITH ENCRYPTED PASSWORD 'cti';" ... | Add explicit testing for Rails 4.2 and extra ruby versions | Add explicit testing for Rails 4.2 and extra ruby versions
| YAML | mit | mvdamme/dbview_cti,mvdamme/dbview_cti,mvdamme/dbview_cti |
7dc7a317126f38dec8e2e84cee0214728ebda9a7 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "2.6"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.6
- DJANGO_VERSION=1.7
# Django 1.7 doesn't support python 2.6, so explicitly exclude that
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=1.7
# command to install dependencies,
install:
# Install... | language: python
python:
- "2.7"
- "2.6"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.6
- DJANGO_VERSION=1.7
- DJANGO_VERSION=1.8
# Django 1.7 and 1.8 don't support python 2.6, so explicitly exclude those
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=1.7
- python: "2.6"
... | Add Django 1.8 to Travis. | Add Django 1.8 to Travis.
| YAML | isc | CTPUG/wafer,CarlFK/wafer,CarlFK/wafer,CTPUG/wafer,CTPUG/wafer,CarlFK/wafer,CarlFK/wafer,CTPUG/wafer |
f5faac12fa37cfac21a940cf97ccbccbdb235f33 | .travis.yml | .travis.yml | language: node_js
before_install:
- npm install -g jspm
- jspm config registries.github.auth $JSPM_GITHUB_AUTH_TOKEN
node_js:
- "5.1"
- "5.0"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
| language: node_js
before_install:
- npm install -g jspm gulp ts-node tsd
- jspm config registries.github.auth $JSPM_GITHUB_AUTH_TOKEN
node_js:
- "5.1"
- "5.0"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
| Add global modules for troubleshooting | Add global modules for troubleshooting
| YAML | mit | peterjuras/slush-react-express,peterjuras/slush-react-express,peterjuras/slush-react-express,peterjuras/slush-azure-node,peterjuras/slush-azure-node,peterjuras/slush-azure-node |
3018b22d173a74386b64a539880cee49849e6f49 | .travis.yml | .travis.yml | language: ruby
bundler_args: --path vendor/bundle
script: bundle exec rspec
cache: bundler
gemfile:
- gemfiles/Gemfile.travis
before_install:
- gem install bundler
- bundle config --local without local_development yard guard
# env:
# - "rack=1.3.4"
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.9.2
- jruby
- rbx-... | language: ruby
bundler_args: --path vendor/bundle
script: bundle exec rspec
cache: bundler
gemfile:
- gemfiles/Gemfile.travis
before_install:
- gem install bundler
- bundle config --local without local_development yard guard
# env:
# - "rack=1.3.4"
rvm:
# 2.1, not 2.1.0 until fixed https://github.com/travis-c... | Allow TravisCI failures for ruby 2.1 | Allow TravisCI failures for ruby 2.1
Until https://github.com/travis-ci/travis-ci/issues/2220 is fixed
Also see https://github.com/Shopify/active_merchant/pull/1150
It appears rbx is similarly broken
https://github.com/travis-ci/travis-ci/issues/2230
| YAML | mit | metricfu/metric_fu,metricfu/metric_fu,metricfu/metric_fu |
52341a061b57cc7d5ce71ab94527901245d1d36e | .travis.yml | .travis.yml | language: ruby
cache:
- bundler
install:
- bundle install
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- 2.4.1
notifications:
email:
recipients:
- sensu-plugin@sensu-plugins.io
on_success: change
on_failure: always
script:
- bundle exec rake default
- gem build sensu-plugins-google-spreadsheet.gemspec
- gem install... | language: ruby
cache:
- bundler
install:
- bundle install
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- 2.4.1
notifications:
email:
recipients:
- sensu-plugin@sensu-plugins.io
on_success: change
on_failure: always
script:
- bundle exec rake default
- gem build sensu-plugins-google-spreadsheet.gemspec
- gem install... | Correct name of the gem that is built | Correct name of the gem that is built
| YAML | mit | sensu-plugins/sensu-plugins-google-spreadsheet |
1dde2530dce086b781ce7f2e56c36113199131c2 | .travis.yml | .travis.yml | language: python
python: 3.3
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=coverage
- TOXENV=lint
before_install:
- sudo apt-get -y install libcairo2-dev
install:
- pip install tox
script: "./.travis.sh"
| language: python
python: 3.3
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=coverage
- TOXENV=lint
before_install:
- sudo apt-get -y install libcairo2-dev
install:
- pip install tox
script: "./.travis.sh"
matrix:
allow_failures:
- env: TOXENV=coverage
| Mark coverage as an allow_failure build | Mark coverage as an allow_failure build
| YAML | apache-2.0 | DaveBlooman/graphite-api,cybem/graphite-api-iow,cybem/graphite-api-iow,brutasse/graphite-api,hubrick/graphite-api,bogus-py/graphite-api,raintank/graphite-api,hubrick/graphite-api,michaelrice/graphite-api,rackerlabs/graphite-api,brutasse/graphite-api,alphapigger/graphite-api,raintank/graphite-api,GeorgeJahad/graphite-ap... |
2a13b9db8b2110eee12679601b587d004683749f | .travis.yml | .travis.yml | language: groovy | language: groovy
env:
- BLDFILE=build.gradle
- BLDFILE=standalone.gradle
cache:
directories:
- $HOME/.gradle
script: ./gradlew -b $BLDFILE | Build war and standalone in matrix build | Build war and standalone in matrix build | YAML | apache-2.0 | Slugger/pseudosmtp,Slugger/pseudosmtp |
156b446edb2282bd8bf010577f575fdfc93a2d92 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.3.3
- 2.4.0
- ruby-head
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
| language: ruby
sudo: false
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
| Test build against Ruby 2.2 and 2.5 | [CI] Test build against Ruby 2.2 and 2.5 | YAML | mit | gazay/gon |
66173ce4ac1a041e8e0109d4cdad3d6036858e2a | .travis.yml | .travis.yml | # Based on https://github.com/malept/rusty_blank/blob/master/.travis.yml
language: rust
rust:
- stable
- beta
- nightly
cache: cargo
matrix:
allow_failures:
- rust: nightly
before_install:
- |
rvm install "$BUILD_RUBY_VERSION"
rvm use "$BUILD_RUBY_VERSION"
ruby --version
ruby -e 'require "pp"; ... | # Based on https://github.com/malept/rusty_blank/blob/master/.travis.yml
language: rust
rust:
- stable
- beta
- nightly
cache: cargo
matrix:
allow_failures:
- rust: nightly
before_install:
- |
rvm install "$BUILD_RUBY_VERSION"
rvm use "$BUILD_RUBY_VERSION"
ruby --version
ruby -e 'require "pp"; ... | Add Ruby library to deps dir | Add Ruby library to deps dir
| YAML | mit | d-unseductable/ruru |
7afd99ec95b7dc13c5b006b34c5c4a9c5b0be841 | .travis.yml | .travis.yml | os: "linux"
dist: "bionic"
language: "node_js"
node_js:
- "14"
- "12"
- "10"
| os: "linux"
dist: "bionic"
language: "node_js"
node_js:
- "16"
- "14"
- "12"
| Update Travis CI node versions | Test: Update Travis CI node versions
| YAML | unlicense | fvdm/nodejs-ns-api |
f52fa1227f71c5344fe0de3d9fefc852e408deaa | .travis.yml | .travis.yml | language: php
php:
- 7.0
- hhvm
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache
matrix:
allow_failures:
- php: hhvm
services: mongodb
before_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" && "$TRAVIS_PHP_VERSION" != "7.0" ]; then echo "extension = mongo.so" >> ~/.phpe... | language: php
php:
- 7.0
- 7.1
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache
matrix:
allow_failures:
- php: hhvm
dist: trusty
include:
- php: hhvm
dist: trusty
services: mongodb
before_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" && "$TRAVIS_PHP_... | Test on PHP7.1 and fix HHVM | Test on PHP7.1 and fix HHVM
| YAML | mit | thephpleague/geotools |
03ed146266b4eab31f3d28c1430b9447318b58ed | .travis.yml | .travis.yml | sudo: false
language: python
python:
- '2.7'
before_install:
- wget https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.67.zip -nv
- unzip -q google_appengine_1.9.67.zip
- openssl aes-256-cbc -K $encrypted_ad8499d072ee_key -iv $encrypted_ad8499d072ee_iv -in client_secret.json.enc -out client_s... | sudo: false
language: python
python:
- '2.7'
before_install:
- wget https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.67.zip -nv
- unzip -q google_appengine_1.9.67.zip
- openssl aes-256-cbc -K $encrypted_ad8499d072ee_key -iv $encrypted_ad8499d072ee_iv -in client_secret.json.enc -out client_s... | Add flake8 to test requirments | Add flake8 to test requirments | YAML | apache-2.0 | m-messiah/dzzzzr-bot,m-messiah/dzzzzr-bot |
f77f1350d17be4af4d44da770402f183c5512d6f | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.5
# - 2.2
# - jruby
# - rbx-2
env:
- PIVOTAL_TRACKER_API_TOKEN=dummy_api_token
- SECRET_TOKEN=s3kr1t
script: bundle exec rspec
| language: ruby
rvm:
- 2.1.5
# - 2.2
# - jruby
# - rbx-2
env:
- PIVOTAL_TRACKER_API_TOKEN=dummy_api_token SECRET_TOKEN=s3kr1t
script: bundle exec rspec
| Put environment variables in one set. | Put environment variables in one set. | YAML | mit | marnen/pivotal-tracker-pr-hook |
9c4f6d55273ceeb4a13b243455fe94a5873cd6c6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "8"
- "10"
script:
- "npm run coverage"
- "npm run lint"
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
node_js:
- 10
- 12
- 14
- node
script:
- npm run coverage
- npm run lint
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| Drop support for node.js <10, add 12, 14 + latest (semver-major) | Drop support for node.js <10, add 12, 14 + latest (semver-major)
| YAML | bsd-3-clause | alexjeffburke/unexpected-mxhr,alexjeffburke/unexpected-mxhr |
0393c75474b058ab221c03883290436e249039ac | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script: composer install --dev
notifications:
email: matthiasnoback@gmail.com | language: php
php:
- 5.3
- 5.4
- 5.5
env:
- DEPENDENCY_INJECTION_VERSION=2.2.* EXPRESSION_LANGUAGE_VERSION=2.4.*
- DEPENDENCY_INJECTION_VERSION=2.3.* EXPRESSION_LANGUAGE_VERSION=2.4.*
- DEPENDENCY_INJECTION_VERSION=2.4.* EXPRESSION_LANGUAGE_VERSION=2.4.*
- DEPENDENCY_INJECTION_VERSION=2.5.*@dev EXPRESSI... | Configure Travis to test different versions | Configure Travis to test different versions
| YAML | mit | matthiasnoback/symfony-service-definition-validator |
6a7c51cf86fa63252e2f26aef7b358a710199217 | .travis.yml | .travis.yml | sudo: false
rvm:
- 2.4.0
- 2.3.0
- 2.2
- 2.1
- 2.0.0
- jruby-9.0.5.0
# whitelist
branches:
only:
- master
notifications:
email:
- cukes-devs@googlegroups.com
webhooks:
urls: # gitter
- https://webhooks.gitter.im/e/dc010332f9d40fcc21c4
| sudo: false
before_install:
- gem update simplecov
rvm:
- 2.4.0
- 2.3.0
- 2.2
- 2.1
- 2.0.0
- jruby-9.0.5.0
# whitelist
branches:
only:
- master
notifications:
email:
- cukes-devs@googlegroups.com
webhooks:
urls: # gitter
- https://webhooks.gitter.im/e/dc010332f9d40fcc21c4
| Update simplecov from 0.12.0 that is installed on Travis rvm 2.4.0 environment to latest version to prevent core dump. | Update simplecov from 0.12.0 that is installed on Travis rvm 2.4.0 environment
to latest version to prevent core dump.
| YAML | mit | cucumber/cucumber-ruby-core,kamenlitchev/cucumber-ruby-core |
12750a0bfb64a46c8bd5fce4d6dce3d406969dc9 | .travis.yml | .travis.yml | sudo: false
language: "python"
branches:
only:
- master
matrix:
include:
- python: 2.7.13
env: TOXENV=py27
- python: pypy2.7-5.8.0
env: TOXENV=pypy
install:
- pip install -U pip setuptools wheel
- pip install tox codecov
script:
- tox
after_success:
- codecov
notifications:
... | sudo: false
language: python
dist: xenial
branches:
only:
- master
matrix:
include:
- python: 2.7.13
env: TOXENV=py27
- python: pypy2.7-6.0
env: TOXENV=pypy
install:
- pip install -U pip setuptools wheel
- pip install tox codecov
script:
- tox
after_success:
- codecov
notifica... | Upgrade to pypy 6.0 and xenial | Upgrade to pypy 6.0 and xenial
| YAML | mit | twisted/epsilon |
06aaddc38e7760c6ad63532a5628130f7febc86c | packages/ei/either-list-functions.yaml | packages/ei/either-list-functions.yaml | homepage: https://github.com/chris-martin/either-list-functions
changelog-type: text
hash: 6eb6845ab4870f580eca09bc7f86759d670c9f48b2ed89242b045c156cf5e96f
test-bench-deps:
base: ==4.12.*
doctest: -any
either-list-functions: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: Functions involving lists o... | homepage: https://github.com/chris-martin/either-list-functions
changelog-type: text
hash: d4d97edbdc018c1b3ee5b3cba63a29501407303d44e38f7de3afc142e46aa6f0
test-bench-deps:
base: ! '>=4.12 && <4.14'
doctest: -any
either-list-functions: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: Functions involv... | Update from Hackage at 2020-03-02T21:03:08Z | Update from Hackage at 2020-03-02T21:03:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ae2f9d4b7657b9f0ce2312fc4af6027ea463bf26 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
matrix:
allow_failures:
- node_js: "0.11"
notifications:
email: false
| language: node_js
node_js:
- "0.11"
- "0.10"
matrix:
allow_failures:
- node_js: "0.11"
install:
# Install graphicsmagick
- sudo apt-get install graphicsmagick -y
- gm -help
# Install node dependencies
- npm install
notifications:
email: false
| Move to common test dependencies | Move to common test dependencies
| YAML | unlicense | jedmao/gulp.spritesmith,webcaetano/gulp.spritesmith,twolfson/gulp.spritesmith,radist2s/gulp.spritesmith |
d2f5698d36606409192c6e2f06703f8293522f39 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
script: nosetests -w tests
| language: python
python:
- '3.5'
script: nosetests -w tests
notifications:
slack:
secure: F+cjB3Bc+l8iK4vufNeF1hxJtDfDAYsJOcBmvnROjQaW49SqOTCBnTbLZnud5Zq6mi2fzo1proMuqJ1yhhvzUBXFsifZwU6CpHQMDkem3LteHNKqYTWArj1JFoVqca7drGSNHRnawnMtve1Ce7P97vRRsddmzt558lC3fEVm+EqbH/dw0yiw36NMxUCk57jkDPeODFp3jH2PModvsVS7RKYdHmlbSGmL... | Add Travis to Slack integration. | Add Travis to Slack integration.
| YAML | mit | alunegov/AtmelStudioToNinja |
b35bb1b4a0acee503621f0a0de8b41c123799005 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- LIBMEMCACHED_VERSION='0.44'
- LIBMEMCACHED_VERSION='0.53'
- LIBMEMCACHED_VERSION='1.0.8'
before_install:
# Default travis-ci libmemcached is 0.44 (ubuntu precise). If we need a
# higher version, add in the appropriate ppa. The newer pa... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- LIBMEMCACHED_VERSION='0.44'
- LIBMEMCACHED_VERSION='0.53'
- LIBMEMCACHED_VERSION='1.0.8'
notifications:
irc:
channels:
- "chat.freenode.net#sendapatch"
on_success: change
on_failure: change
before_install:
# Default ... | Add IRC notifications to Travis CI | Add IRC notifications to Travis CI
| YAML | bsd-3-clause | lericson/pylibmc,lericson/pylibmc,lericson/pylibmc |
ff039697fc1a0713442af6fa97d4ff27fc2a341d | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.7
- 1.8
- 1.9
- "1.10"
# 1.x builds the latest in that series. Also try to add other versions here
# as they come up so that we're pretty sure that we're maintaining
# backwards compatibility.
- 1.x
notifications:
email: false
services:
- redis-se... | sudo: false
language: go
go:
- "1.9"
- "1.10"
- "1.11"
# 1.x builds the latest in that series. Also try to add other versions here
# as they come up so that we're pretty sure that we're maintaining
# backwards compatibility.
- 1.x
notifications:
email: false
services:
- redis-server
... | Add 1.11 to build matrix and drop 1.7 and 1.8 | Add 1.11 to build matrix and drop 1.7 and 1.8
Adds 1.11 to build the matrix.
Only the last two versions of Go are technically supported according to
the official policy (so 1.11 and 1.10). We should make an effort to
support old versions for longer than that, but probably not *too* big of
an effort because upgrading ... | YAML | bsd-3-clause | throttled/throttled,throttled/throttled,PuerkitoBio/throttled |
b2161a49e6dd814c5179543e87cfc30990dcb0b9 | .travis.yml | .travis.yml | language: go
go_import_path: github.com/namsral/multipass
go:
- 1.7.1
- tip
os:
- linux
script:
- go test -v ./...
- go build github.com/namsral/multipass/cmd/multipass
| language: go
go_import_path: github.com/namsral/multipass
go:
- 1.7.1
os:
- linux
script:
- go test -v ./...
- go vet $(go list ./...)
- go build github.com/namsral/multipass/cmd/multipass
| Add go vet command to Travic CI | Add go vet command to Travic CI
| YAML | bsd-3-clause | namsral/multipass |
e2c3807e928acfa47cef870f53dd738d48b8f0a1 | packages/he/hero-club-five-tenets.yaml | packages/he/hero-club-five-tenets.yaml | homepage: http://github.com/i-amd3/hero-club-five-tenets
changelog-type: ''
hash: 36c889475fad484884b4de3ef5e4a2c9e7104bda1fc1b5b2092bb2a704d2695b
test-bench-deps: {}
maintainer: d.kupanhy@gmail.com
synopsis: Remember the five tenets of hero club
changelog: ''
basic-deps:
hero-club-five-tenets: -any
base: ! '>=4.7 ... | homepage: https://github.com/i-amd3/hero-club-five-tenets
changelog-type: ''
hash: 0f112b9e41cf26eeb7c5d5218b9d01b41a0324ea76b700511092089f6cbdb9c4
test-bench-deps: {}
maintainer: d.kupanhy@gmail.com
synopsis: Think back of the five tenets of hero club
changelog: ''
basic-deps:
hero-club-five-tenets: -any
base: ! '... | Update from Hackage at 2016-01-24T16:21:28+0000 | Update from Hackage at 2016-01-24T16:21:28+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
14f6eae5de2fae4614ac717afb6625a5f069c247 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
before_install:
- sudo apt-get update && sudo apt-get install git swig supervisor rabbitmq-server ruby
- git fetch remote && git fetch --tags
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip i... | language: python
python:
- '2.6'
- '2.7'
before_install:
- sudo apt-get update && sudo apt-get install git swig supervisor rabbitmq-server ruby
- git describe | git remote add upstream git://github.com/saltstack/salt.git && git fetch --tags upstream
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20... | Add `git://github.com/saltstack/salt.git` as a remote and fetch tags upstream for forks. | Add `git://github.com/saltstack/salt.git` as a remote and fetch tags upstream for forks.
| YAML | apache-2.0 | saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt |
75cb93f9df4c9ad30d4edf5ea115eebadc08e1a8 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.4
- tip
| language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
- tip
| Test several versions of Go | Test several versions of Go
| YAML | bsd-3-clause | xyproto/simplebolt |
d2adef4d4467257c2eb00dc9ae170a4e96bf5c8a | .travis.yml | .travis.yml | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.9.3
env:
- PUPPET_VERSION="~> 3.8.0"
- PUPPET_VERSION="~> 5.3.0"
matrix:
allow_failures:
- env: PUPPET_VERSION="~> 5.3.0... | ---
language: ruby
before_install: rm Gemfile.lock || true
script: bundle exec rake test
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_VERSION="~> 3.8.0"
- rvm: 2.4.0
env: PUPPET_VERSION="~> 5.3.0"
allow_failures:
- rvm: 2.4.0
env: PUPPET_VERSION="~> 5.3.0"
| Test Puppet 5 under modern ruby | Test Puppet 5 under modern ruby
But allow the newer ones to fail as we don't use that.
| YAML | mit | gds-operations/puppet-resolvconf,gds-operations/puppet-resolvconf |
1d573e705afc4db1ddc7138b74589b0f47aebcc5 | config/assets.yml | config/assets.yml | compress_assets: on
gzip_assets: off
javascripts:
foundation:
- javascripts/jquery.reveal.js
- javascripts/jquery.orbit-1.4.0.js
- javascripts/jquery.customforms.js
- javascripts/jquery.placeholder.min.js | compress_assets: on
gzip_assets: off
javascripts:
foundation:
- javascripts/jquery.reveal.js
- javascripts/jquery.orbit-1.4.0.js
- javascripts/jquery.customforms.js
- javascripts/jquery.placeholder.min.js
- javascripts/jquery.jquery.tooltips.js | Include tooltips js in packaged foundation.js | Include tooltips js in packaged foundation.js
| YAML | mit | labr1005/foundation,ysalmin/foundation,designerno1/foundation-sites,rxfork/foundation,r14r-work/fork_foundation_master,anbestephen/foundation,leo-guinan/foundation,signal/foundation,oller/foundation,hummingbird-me/foundation-sites-6,a-dg/foundation,labr1005/foundation,MarcGuay/foundation,Mango-information-systems/found... |
058c13c507825c3a4b5713571d36de17ee439b56 | buildsys-tags/cloud8s-openstack-wallaby-candidate.yml | buildsys-tags/cloud8s-openstack-wallaby-candidate.yml | packages:
- project: python-amqp
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-amqp-5.0.5-1.el8
- project: python-memcached
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-memcached-1.59-1.el8
| packages:
- project: python-amqp
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-amqp-5.0.5-1.el8
- project: python-memcached
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-memcached-1.59-1.el8
- project: python-pymemcache
buildsys-tags:
cloud8s-openstack-wallaby-candidate: pyth... | Rebuild packages from Fedora to match u-c | Rebuild packages from Fedora to match u-c
python-pymemcache-3.4.0-1.el8
Change-Id: I985b4eac94d37a4317474008fca81c8b8a9b12cf
| YAML | apache-2.0 | redhat-openstack/rdoinfo |
bad3b5187f4e5783cdca0a924b8e57bc996d3b02 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE=Embassy.xcworkspace
- IOS_FRAMEWORK_SCHEME="Embassy-iOS"
- IOS_SDK=iphonesimulator11.0
- MACOS_FRAMEWORK_SCHEME="Embassy-macOS"
- MACOS_SDK=macosx10.12
matrix:
- DESTINATION="OS... | language: objective-c
osx_image: xcode9
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE=Embassy.xcworkspace
- IOS_FRAMEWORK_SCHEME="Embassy-iOS"
- IOS_SDK=iphonesimulator11.0
- MACOS_FRAMEWORK_SCHEME="Embassy-macOS"
- MACOS_SDK=macosx10.13
matrix:
- DESTINATION="OS... | Fix wrong macos SDK version | Fix wrong macos SDK version
| YAML | mit | envoy/Embassy,envoy/Embassy,envoy/Embassy |
fc5274159d15d61c08ebf4cdfb1200b2f438b772 | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.2
language: python
python:
- '3.6'
before_install:
# See https://github.com/travis-ci/travis-ci/issues/7940
- sudo rm -f /etc/boto.cfg
install:
- sudo docker --version
- sudo docker-compose --version
jobs:
include:
- stage: test
... | sudo: required
services:
- docker
language: python
python:
- '3.6'
before_install:
# See https://github.com/travis-ci/travis-ci/issues/7940
- sudo rm -f /etc/boto.cfg
install:
- sudo docker --version
- sudo docker-compose --version
jobs:
include:
- stage: test
- script: ./helper ci test_suite
... | Remove unused lines in Travis CI config file | Remove unused lines in Travis CI config file
| YAML | mit | uccser/cs4teachers,uccser/cs4teachers,uccser/cs4teachers,uccser/cs4teachers |
f1011d651331fd31c1d0a7c279a3032a75c566aa | .travis.yml | .travis.yml | before_script:
- bundle exec rake test_app
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
env:
- DB=mysql
- DB=postgres
language: ruby
rvm:
- 2.1.5
sudo: false
| before_script:
- bundle exec rake test_app
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
env:
- DB=mysql
- DB=postgres
language: ruby
rvm:
- 2.2.4
sudo: false
| Test against 2.2.4 on Travis | Test against 2.2.4 on Travis
| YAML | bsd-3-clause | MenuSlate/spree_auth_devise,spree/spree_auth_devise,DarkoP/spree_auth_devise,DarkoP/spree_auth_devise,MenuSlate/spree_auth_devise,spree/spree_auth_devise |
dcf7d8e8169981424f779151010fd1f84cff7eec | .travis.yml | .travis.yml | language: java
jdk: oraclejdk7
install: true
script: ./gradle/buildViaTravis.sh
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_fd546f631468_key -iv $encrypted_fd546f631468_iv
-in gradle.properties.... | language: java
jdk: openjdk7
install: true
script: ./gradle/buildViaTravis.sh
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_fd546f631468_key -iv $encrypted_fd546f631468_iv
-in gradle.properties.en... | Switch to OpenJDK 7 for compatiblity with the new Trusty build infrastructure on Travis | Switch to OpenJDK 7 for compatiblity with the new Trusty build infrastructure on Travis
| YAML | mit | nebula-plugins/nebula-grails-plugin |
73926889e057b5d351a6d70602b4ea1a3c7e7d7b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.1
- 2.2.5
- 2.1.9
gemfile:
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
addons:
postgresql: "9.2"
before_script:
- cp spec/database.yml.travis spec/database.yml
- bundle exec rake db:setup
| language: ruby
rvm:
- 2.3.1
- 2.2.5
gemfile:
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
addons:
postgresql: "9.2"
before_script:
- cp spec/database.yml.travis spec/database.yml
- bundle exec rake db:setup
| Remove Ruby 2.1.9 from Travis as Rails 5 does not support | Remove Ruby 2.1.9 from Travis as Rails 5 does not support
| YAML | mit | jackc/edge |
24c5e8f4e423b5937e1f1885a96d618c0d1b0f02 | .travis.yml | .travis.yml | ---
language: python
python:
- 2.6
- 2.7
env:
- secure: |-
WF3zgCer3gTFPEeJFICLJ0akll9waz4NTP1sJGlkkgwkLc/4vexe+YULBTz+
DyQX37yKqjC95Ym9YM8cmEV4axjGTxGMvp5/B9OZGO4Mc/MwbJuZ5XBdFNgC
KritpYvK2kQEVAAqWqvskgidQpxEU+WjzQ5Gtflmb6nklpemEQ4=
matrix:
allow_failures:
- python: 2.6
install: pip install -q -r ... | ---
language: python
python:
- 2.6
- 2.7
env:
- secure: |-
WF3zgCer3gTFPEeJFICLJ0akll9waz4NTP1sJGlkkgwkLc/4vexe+YULBTz+
DyQX37yKqjC95Ym9YM8cmEV4axjGTxGMvp5/B9OZGO4Mc/MwbJuZ5XBdFNgC
KritpYvK2kQEVAAqWqvskgidQpxEU+WjzQ5Gtflmb6nklpemEQ4=
matrix:
allow_failures:
- python: 2.6
install: pip install -q -r ... | Fix typo on after success script name | Fix typo on after success script name
| YAML | mit | alphagov/transactions-explorer,gds-attic/transactions-explorer,gds-attic/transactions-explorer,gds-attic/transactions-explorer,gds-attic/transactions-explorer,alphagov/transactions-explorer,alphagov/transactions-explorer,alphagov/transactions-explorer,alphagov/transactions-explorer,gds-attic/transactions-explorer |
8b9b7e2ff68fa4f68b2476d99945197751a7ec2e | .travis.yml | .travis.yml | # Ensure that we only run CI test on the Node.js enabled servers.
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "iojs-v1.1"
- "iojs-v1.0"
# Create a Travis memcached enabled environment for the test suite to run in and
# ensure that we test against localhost on Travis-CI.
servic... | # Ensure that we only run CI test on the Node.js enabled servers.
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- "4"
- "5"
# Create a Travis memcached enabled environment for the test suite to run in and
# ensure that we test against localhost on Travis-CI.
services: memcache
env: MEMCACHED__HOST=loc... | Update Travis config to test against newer Node versions | Update Travis config to test against newer Node versions
| YAML | mit | acarrasco/node-memcached,3rd-Eden/node-memcached,3rd-Eden/memcached,3rd-Eden/node-memcached,3rd-Eden/memcached,acarrasco/node-memcached |
912ff2205ea2130909dff0ea1f2f532c6bd7d7a6 | .travis.yml | .travis.yml | language: cpp
before_script:
- mkdir build
- cd build
- cmake ..
script: make
| language: cpp
before_script:
- sudo apt-get -qq update
- sudo apt-get install -y libboost-program-options-dev
- mkdir build
- cd build
- cmake ..
script: make
| Install boost before building on Travis CI | Install boost before building on Travis CI
| YAML | apache-2.0 | petabi/regexbench,petabi/regexbench,petabi/regexbench,petabi/regexbench |
b7e210fd1c0b6d0bcb9d93488305ceae60eeaa04 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.0
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
xcode_sdk: iphonesimulator
before_install:
- brew update
- brew uninstall xctool && brew install --HEAD xctool
xcode_project: Ne... | language: objective-c
osx_image: xcode8
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
# See https://docs.travis-ci.com/user/languages/objective-c for details.
xcode_sdk: iphonesimulator
before_install:
- brew update
-... | Use "xcode8" OS X image | Use "xcode8" OS X image
| YAML | mit | royratcliffe/NetworkReachability,royratcliffe/NetworkReachability |
1562dae31ece2820d866245bfd37ca73e07e49c1 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk11
addons:
apt:
packages:
- oracle-java9-installer
script: mvn install
before_install:
- ./etc/before.sh
deploy:
skip_cleanup: true
provider: script
script: mvn deploy
on:
branch: master
| language: java
jdk:
- openjdk12
addons:
apt:
packages:
- oracle-java9-installer
script: mvn install
before_install:
- ./etc/before.sh
deploy:
skip_cleanup: true
provider: script
script: mvn deploy
on:
branch: master
| Build fails for whatever reason -.- | Build fails for whatever reason -.- | YAML | apache-2.0 | remondis-it/remap |
6a9baabf28a8ef19f54f02a2ad0bde12cd765116 | .travis.yml | .travis.yml | env: RAKE_TASK=spec
cache: bundler
language: ruby
matrix:
include:
- env: RAKE_TASK=rubocop
rvm: '2.2'
rvm:
- '2.2'
- '2.1'
- '2.0'
- 'jruby-9'
- 'rbx-2'
script: bundle exec rake $RAKE_TASK
sudo: false
| env: RAKE_TASK=spec
cache: bundler
language: ruby
matrix:
include:
- env: RAKE_TASK=rubocop
rvm: '2.3'
rvm:
- '2.3'
- '2.2'
- '2.1'
- '2.0'
- 'jruby-9'
- 'rbx-2'
script: bundle exec rake $RAKE_TASK
sudo: false
| Test against Ruby 2.3 on Travis | Test against Ruby 2.3 on Travis
| YAML | mit | orgsync/stoplight,bolshakov/stoplight |
f32b29b381acf48c966e9552a5adc5e2fb940d08 | .travis.yml | .travis.yml | matrix:
include:
- language: python
sudo: false
python: "2.7"
install:
- pip install -e .[pythonz] --upgrade
- pip install pytest
script: py.test -rws tests/
- language: python
sudo: false
python: "3.3"
install:
- pip install -e . --upgrade
... | matrix:
include:
- language: python
sudo: false
python: "2.7"
install:
- pip install -e .[pythonz] --upgrade
- pip install pytest
script: py.test -rws tests/
- language: python
sudo: false
python: "3.4"
install:
- pip install -e . --upgrade
... | Drop EOL'd Python 3.3 from Travis builds | Drop EOL'd Python 3.3 from Travis builds
Python 3.3 reached EOL a couple of months ago, and setuptools dropped support
for it earlier this year: pypa/setuptools@7392f01ff . As a result, the 3.3 entry in the
build matrix has been erroring out since at least #196. | YAML | mit | berdario/pew,berdario/pew |
c41cc891c29f4820a3c00545bbb0ffb78393a4d8 | .travis.yml | .travis.yml | language: rust
addons:
postgresql: 9.4
before_script:
- "./.travis/setup.sh"
script:
- cargo test
- cargo test --features "uuid rustc-serialize time unix_socket serde"
- cargo doc --no-deps --features "unix_socket"
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && ./.travis... | language: rust
rust:
- nightly
- beta
addons:
postgresql: 9.4
before_script:
- "./.travis/setup.sh"
script:
- cargo test
- cargo test --features "uuid rustc-serialize time unix_socket serde"
- cargo doc --no-deps --features "unix_socket"
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH =... | Test on both nightly and beta | Test on both nightly and beta
| YAML | apache-2.0 | sfackler/rust-postgres,tempbottle/rust-postgres,ddrmanxbxfr/rust-postgres,achanda/rust-postgres,achanda/rust-postgres,ddrmanxbxfr/rust-postgres,sfackler/rust-postgres,tempbottle/rust-postgres |
1b65cfff815b29b57d90da1e873d3c4fad5a34eb | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
script: py.test -v
notifications:
slack: mamansoft:eEn62WlXE4vbWMZDyMc9WS9b
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
script: py.test -v
notifications:
slack:
secure: S81vdt0O2Tyb5XD/wyTysjxzsh8eRBu55KF2n/zjScWxh78pVKUicfJd2CzrdsQ9EVdugY/E2PCyLDaX9jWRIyY0JiQ2e6Q62wcgAnZuTPIwPTcVBljd9I1ptuKKq5EWeeQKr2lnxA+EKUfjKZsflEMOKRm... | Change slack token into secure | Change slack token into secure
| YAML | mit | tadashi-aikawa/owlmixin |
cbf8f46eb6ffea1c78ba41ec739cd7f5aa071b0e | .travis.yml | .travis.yml | language: python
compiler: g++
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install gcc-5 g++-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5
- sudo update-alternatives --instal... | dist: trusty
language: python
compiler: g++
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install gcc-5 g++-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5
- sudo update-alternat... | Set trusty as the default distro for CI | Set trusty as the default distro for CI
This closes https://github.com/wgma00/utscode/issues/1. | YAML | unlicense | wgma00/utscode,wgma00/utscode,wgma00/utscode |
1d889e8c20144c2b72bdc19b66ec0382543ea84c | .travis.yml | .travis.yml | sudo: required
language: python
python: "2.7"
addons:
apt:
packages:
- libffi-dev
- libjpeg-dev
- libssl-dev
- libtiff4-dev
- libxml2-dev
- libxslt1-dev
- zlib1g-dev
services:
- postgresql
env: >
DJANGO_SETTINGS_MODULE... | sudo: required
language: python
python: "2.7"
addons:
apt:
packages:
- libffi-dev
- libjpeg-dev
- libssl-dev
- libtiff4-dev
- libxml2-dev
- libxslt1-dev
- zlib1g-dev
services:
- postgresql
env: >
DJANGO_SETTINGS_MODULE... | Exclude docs folder from flake8 testing. | Exclude docs folder from flake8 testing.
| YAML | mit | pydata/conf_site,pydata/conf_site,pydata/conf_site |
6ea5842c460b832864998ab9d07bd7ff22e9be50 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
script:
- bundle exec rspec
- bundle exec rubocop
| language: ruby
rvm:
- 2.2.4
- 2.3.0
script:
- bundle exec rspec
- bundle exec rubocop
| Drop support for ruby 2.1 | Drop support for ruby 2.1 | YAML | mit | freemle/freemle-ruby,jorttbv/jortt-ruby |
ec76e65763bcdf75e8faacd6a37da5e71167b9e2 | .travis.yml | .travis.yml | sudo: required
language: javascript
services:
- docker
before_install:
- docker build -t asewdat/word-flip .
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push asewdat/word-flip
script: | sudo: required
services:
- docker
before_install:
- docker build -t asewdat/word-flip .
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push asewdat/word-flip | Remove script task temporarily from Travis CI. | Remove script task temporarily from Travis CI.
| YAML | mit | Allyshia/wordFlip,Allyshia/wordFlip,Allyshia/wordFlip |
06ec7bdd477faeef0353c088ffe998e77fbd4df4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.5
- 2.3.1
script: bundle exec rspec
before_install:
# fixes Travis CI error: NoMethodError: undefined method `spec' for nil:NilClass
- gem install bundler
| language: ruby
rvm:
- 2.2.5
- 2.3.1
script: bundle exec rspec
before_install:
# fixes Travis CI error: NoMethodError: undefined method `spec' for nil:NilClass
- gem install bundler
| Remove old Ruby versions from Travis | Remove old Ruby versions from Travis
Because they're not compatible with Rails 5, which we are now testing
against.
| YAML | mit | biola/Voight-Kampff |
7af424cae8f33c0357242a549e14bf45c1252ee9 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
# Install non-pip dependencies
before_install:
- sudo apt-get install -y librrd-dev
# Install dependencies
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
# Run unit tests
script:
- python -m unittest discover -s export/ -p '... | language: python
python:
- "2.6"
- "2.7"
# Install non-pip dependencies
addons:
apt:
sources:
- librrd-dev
# Install dependencies
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
# Run unit tests
script:
- python -m unittest discover -s export/ -p '*_test.py'... | Install apt packages with addon instead of sudo. | Install apt packages with addon instead of sudo.
| YAML | apache-2.0 | m-lab/collectd-mlab,stephen-soltesz/collectd-mlab,m-lab/collectd-mlab,stephen-soltesz/collectd-mlab |
d441083a40dd7bb559f987f3449448c5a26471a6 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.0
- 5.6
- 5.5
- hhvm
matrix:
fast_finish: true
before_script:
- composer install --dev
script:
- phpunit
| language: php
sudo: false
php:
- 7.0
- 5.6
- 5.5
- hhvm
matrix:
fast_finish: true
allow_failures:
- 7.0
before_script:
- composer install --dev
script:
- phpunit
| Allow php 7.0 build to fail | Allow php 7.0 build to fail
| YAML | mit | trk-life/trk-life,trk-life/trk-life,trk-life/trk-life |
688aad6d0c6dedd5cf3a0bb8af5127a016a1f085 | .travis.yml | .travis.yml | language: c
sudo: false
addons:
apt:
packages:
- gcc-avr
- binutils-avr
- avr-libc
- avrdude
- ccache
before_install:
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
install: true
script:
- git submodule init --recursive
- make
| language: c
sudo: false
git:
submodules: false
addons:
apt:
packages:
- gcc-avr
- binutils-avr
- avr-libc
- avrdude
- ccache
before_install:
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
- sed -i 's/git@github.com:/https:\/\/github.c... | Fix git submodule failure in CI | Fix git submodule failure in CI
| YAML | bsd-3-clause | suvayu/GPS_tracker |
5f6fbdb2b2df80a2cffb5ae8046cc5227cdcdf07 | .travis.yml | .travis.yml | # ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode7.3
xcode_workspace: CotEditor.xcworkspace
xcode_scheme:
- CotEditor
- CotEditor -AppStore
before_install:
- gem install cocoapods
script: xctool -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" ... | # ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode7.3
xcode_workspace: CotEditor.xcworkspace
xcode_scheme:
- CotEditor
- CotEditor -AppStore
before_install:
- gem install cocoapods
script: xcodebuild -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHE... | Use xcodebuild instead of xctool | Use xcodebuild instead of xctool
| YAML | apache-2.0 | onevcat/CotEditor,onevcat/CotEditor,onevcat/CotEditor |
73c193480798445fdb2e2eba0b1d3629d12d4704 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec"
rvm:
- 1.9.3
- 2.1.5
notifications:
email: false
env:
- PUPPET_VERSION=3.4.3
- PUPPET_VERSION=3.7.2
- PUPPET_VERSION=3.7.5 FUTURE_PARSER=yes
- PUPPET_VERSION=4.0.0
- PUPPET_VERSION=4.2.0
| language: ruby
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
notifications:
email: false
env:
- PUPPET_VERSION=3.4.3
- PUPPET_VERSION=3.7.2
- PUPPET_VERSION=3.7.5 FUTURE_PARSER=yes
- PUPPET_VERSION=3.8.5
- PUPPET_VERSION=3.8.5 FUTURE... | Add puppet 3.8.5 and ruby 2.0.0 to test suite | Add puppet 3.8.5 and ruby 2.0.0 to test suite
| YAML | apache-2.0 | mfinelli/puppet-nsd,mfinelli/puppet-nsd |
595ab592aa4d468b3b04f869bf78118675025544 | .travis.yml | .travis.yml | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="54.0b"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2esr" ]; then
wget -O tarball "https://archive.moz... | sudo: false
language: node_js
node_js:
- "node"
cache:
directories:
- "node_modules"
env:
- FX_VERSION="54.0b"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2es... | Use Node.js mode on Travis | Use Node.js mode on Travis
| YAML | agpl-3.0 | gracile-fr/zotero,gracile-fr/zotero,gracile-fr/zotero |
3cfcf8540c2ebfa7891db14e15e9ea014901e77b | web/docker/nibrs-web-dev.yaml | web/docker/nibrs-web-dev.yaml | # Docker Compose file that builds to nibrs-web image
# To run: docker-compose -f nibrs-web-dev.yaml build
#
version: '3.2'
networks:
nibrs_nw:
driver: bridge
ipam:
driver: default
config:
-
subnet: 192.168.0.0/16
services:
nibrs-web:
container_name: nibrs-web
image: sea... | # Docker Compose file that builds to nibrs-web image
# To run: docker-compose -f nibrs-web-dev.yaml build
#
version: '3.2'
networks:
nibrs_nw:
driver: bridge
ipam:
driver: default
config:
-
subnet: 192.168.0.0/16
services:
nibrs-web:
container_name: nibrs-web
image: sea... | Upgrade as per new WAR | Upgrade as per new WAR | YAML | apache-2.0 | SEARCH-NCJIS/nibrs,SEARCH-NCJIS/nibrs,SEARCH-NCJIS/nibrs,SEARCH-NCJIS/nibrs,SEARCH-NCJIS/nibrs |
524f75327c442efbb76a922f3c26b940a369030b | webapp/docker-compose-php.yml | webapp/docker-compose-php.yml | version: '2'
services:
mysql:
image: mysql
volumes:
- ./.data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: password
api:
build: ./php
volumes:
- ./php:/var/www:ro
react:
build: ./react
volumes:
- ./react/build:/app:ro
environment:
API: http://api
... | version: '2'
services:
mysql:
image: mysql
volumes:
- ./.data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: password
api:
build: ./php
volumes:
- ./php:/var/www:ro
react:
build: ./react
volumes:
- ./react/build:/app:ro
environment:
API: http://api
... | Set API environment variable in docker-compose.yml | Set API environment variable in docker-compose.yml
| YAML | mit | isucon/isucon6-final,isucon/isucon6-final,matsuu/isucon6-final,isucon/isucon6-final,isucon/isucon6-final,matsuu/isucon6-final,matsuu/isucon6-final,isucon/isucon6-final,isucon/isucon6-final,isucon/isucon6-final,matsuu/isucon6-final,isucon/isucon6-final,matsuu/isucon6-final,matsuu/isucon6-final,matsuu/isucon6-final,matsu... |
a22b09601cbbba94bedbcb15869752666255fccb | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer install --no-progress --prefer-source
script:
- vendor/bin/phpunit
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
php:
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer install --no-progress --prefer-source
script:
- find inc src tests \( -name '*.php' \) -exec php -l {} \;
- vendor/bin/phpunit
notifications:
email: false
slac... | Improve Travis CI config file. | Improve Travis CI config file.
| YAML | mit | inpsyde/Wonolog |
85816250a6c85b1624c00bfb5c9354d8a660a6da | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
- "pypy"
- "pypy3"
install:
- pip install pytest typing
script: py.test -vv
| sudo: false
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
- "pypy"
- "pypy3"
matrix:
allow_failures:
- python: "3.5-dev"
- python: "nightly"
install:
- pip install pytest typing
script: py.test -vv
| Allow failures with development Python versions | Allow failures with development Python versions
We build with those only to notice regressions, not to depend on them.
| YAML | bsd-3-clause | alecthomas/injector |
9dced7ad5334e7992186e7724bb15cfa4be38d9d | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "4"
- "0.12"
| language: node_js
node_js:
- "6"
- "4"
| Remove node 0.12 from CI | Remove node 0.12 from CI
| YAML | mit | NickGard/postcss-shadowCSS |
67a4afe03d51bb36d0da3b3db0328b44f0e6f1f8 | .travis.yml | .travis.yml | # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- tip
before_install:
- go get golang.org/x/tools/cmd/vet
- go get -v golang.org/x/tools/cmd/cover
- go get -v github.com/mattn/g... | # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- 1.4
- tip
before_install:
- go get golang.org/x/tools/cmd/vet
- go get -v golang.org/x/tools/cmd/cover
- go get -v github.c... | Build with go1.4 on Travis | Build with go1.4 on Travis
| YAML | bsd-2-clause | rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog |
0f988ed39548f05b85eb7294c4564d62a6729746 | _data/website/quotes.yml | _data/website/quotes.yml | ---
- section: mentors
quote: Whenever I am asked what is the missing link between a promising [business]person and a successful one, mentoring comes to mind.
author: Richard Branson (Founder & CEO, The Virgin Group)
source: The Virgin Blog
url: "http://www.virgin.com/richard-branson/the-importance-of-mentoring... | ---
- section: mentors
quote: Whenever I am asked what is the missing link between a promising person and a successful one, mentoring comes to mind.
author: Richard Branson (Founder & CEO, The Virgin Group)
source: The Virgin Blog
url: "http://www.virgin.com/richard-branson/the-importance-of-mentoring"
- secti... | Remove my editorializing on Richard's quote. | Remove my editorializing on Richard's quote.
| YAML | apache-2.0 | oaklandfinishup/oaklandfinishup.github.io,oaklandfinishup/oaklandfinishup.github.io |
919818b22d251a94366acfa55f45a8324c9d50eb | .expeditor/release.omnibus.yml | .expeditor/release.omnibus.yml | ---
project-name: chef-server
config: omnibus/omnibus.rb
install-dir: /opt/opscode
test-path: omnibus/omnibus-test.sh
fips-platforms:
- el-*-x86_64
builder-to-testers-map:
el-7-x86_64:
- el-7-x86_64
- el-8-x86_64
- amazon-2-x86_64
sles-12-x86_64:
- sles-12-x86_64
- sles-15-x86_64
ubuntu-16.0... | ---
project-name: chef-server
config: omnibus/omnibus.rb
install-dir: /opt/opscode
test-path: omnibus/omnibus-test.sh
fips-platforms:
- el-*-x86_64
- ubuntu-*-x86_64
builder-to-testers-map:
el-7-x86_64:
- el-7-x86_64
- el-8-x86_64
- amazon-2-x86_64
sles-12-x86_64:
- sles-12-x86_64
- sles-15-... | Remove support for Ubuntu 16.04 + add Ubuntu FIPS | Remove support for Ubuntu 16.04 + add Ubuntu FIPS
We can enable FIPS on Ubuntu easily so we might as well since we're
already constrained in OpenSSL with FIPS on RHEL.
Ubuntu 16.04 is EOL at the end of April so let's remove this.
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/chef-server,chef/chef-server,chef/chef-server,chef/chef-server,chef/chef-server,chef/chef-server |
f3f7dc123d199af7a1a5053de1ae626748d7bfd2 | .rubocop.yml | .rubocop.yml |
AllCops:
Includes:
- tasks/*.rake
Excludes:
- tmp/*
LineLength:
Max: 100
MethodLength:
Max: 17
CyclomaticComplexity:
Max: 9
WordArray:
Enabled: false
AlignHash:
# Alignment of entries using hash rocket as separator. Valid values are:
#
# key - left alignment of keys
# 'a' => 2
# ... |
AllCops:
Includes:
- tasks/*.rake
Excludes:
- tmp/*
LineLength:
Max: 100
MethodLength:
Max: 17
CyclomaticComplexity:
Max: 8
WordArray:
Enabled: false
AlignHash:
# Alignment of entries using hash rocket as separator. Valid values are:
#
# key - left alignment of keys
# 'a' => 2
# ... | Decrease max CyclomaticComplexity to 8 | Decrease max CyclomaticComplexity to 8
| YAML | mit | yujinakayama/transpec,irfanah/transpec,yujinakayama/transpec,irfanah/transpec |
ed0f0ae4f56ba75acce37b2acad56f3143036a9e | _config.yml | _config.yml | title: Chloé Frommer
sass:
sass_dir: /assets/_sass/
style: compressed
baseurl:
permalink: pretty
markdown: rdiscount
gems:
- jekyll-sitemap
prose:
rooturl: '_posts'
siteurl: 'http://prose.github.io/starter/'
relativeLinks: 'http://prose.github.io/starter/links.jsonp'
media: 'media'
metadata:
... | title: Chloé Frommer
sass:
sass_dir: /assets/_sass/
style: compressed
baseurl:
permalink: pretty
gems:
- jekyll-sitemap
prose:
rooturl: '_posts'
siteurl: 'http://prose.github.io/starter/'
relativeLinks: 'http://prose.github.io/starter/links.jsonp'
media: 'media'
metadata:
_posts:
- nam... | Remove markdown in config cause this is a KRAMDOWN | Remove markdown in config cause this is a KRAMDOWN
| YAML | mit | chloefrommer/chloefrommer.github.io,chloefrommer/chloefrommer.github.io,chloefrommer/chloefrommer.github.io |
02eb153e58ef3b760e3ec78cc9e004dad834d13e | _config.yml | _config.yml | name: Notes from a dev
markdown: redcarpet
pygments: true
| name: Notes from a dev
markdown: redcarpet
pygments: true
permalink: /blog/:year/:month/:day/:title
| Update URL to just be date | Update URL to just be date
| YAML | mit | ethankhall/ethankhall.github.io,ethankhall/ethankhall.github.io |
12546abc9e4d3bf5c8c9a177f09c28f6c95b59bf | _config.yml | _config.yml | title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "5.1.0"
baseurl: ""
url: "https://helmetjs.github.io"
markdown: CommonMarkGhPages
commonmark:
op... | title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "5.1.1"
baseurl: ""
url: "https://helmetjs.github.io"
markdown: CommonMarkGhPages
commonmark:
op... | Update Helmet version to 5.1.1 | Update Helmet version to 5.1.1
| YAML | mit | helmetjs/helmetjs.github.io,helmetjs/helmetjs.github.io |
84e5c5e6788ee0f0aaf0a0601b4a50f9d9c86465 | _config.yml | _config.yml | title: The Lounge — Self-hosted web IRC client
description: "The official website for The Lounge, the self-hosted web IRC client."
baseurl: ""
markdown: kramdown
gems:
- jekyll-sitemap
collections:
docs:
output: true
| title: The Lounge — Self-hosted web IRC client
description: "The official website for The Lounge, the self-hosted web IRC client."
baseurl: ""
markdown: kramdown
plugins:
- jekyll-sitemap
collections:
docs:
output: true
| Rename Jekyll config gems into plugins to silence a deprecation warning | Rename Jekyll config gems into plugins to silence a deprecation warning
| YAML | mit | thelounge/thelounge.github.io,thelounge/thelounge.github.io,thelounge/thelounge.github.io |
896d6cbe9e765aea1c161351a214649feea423dd | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# ... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# ... | Update site name and description | Update site name and description
| YAML | mit | Thalexander/sm1-site,Thalexander/sm1-site,Thalexander/sm1-site |
140ea8714a06a8e6e4019427268f6d2c42a9a627 | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highliter: pygments
# Setup
title: codeRIT
url: https://coderit.org
description: codeRIT represents a coalition of RIT students with a mission to represent the RIT hackathon community on a national level. It focuses its attention towards increasing its relationship with other colle... | # Dependencies
markdown: redcarpet
highliter: pygments
# Setup
title: codeRIT
url: https://coderit.org
description: codeRIT represents a coalition of RIT students with a mission to represent the RIT hackathon community on a national level. It focuses its attention towards increasing its relationship with other colle... | Remove unneccessary commmittees from config | Remove unneccessary commmittees from config
| YAML | mit | codeRIT/coderit.github.io |
85f72d7b991da37c0e7576dda73ea3ae3666d48f | _config.yml | _config.yml | # Site settings
title: Pioneers in Engineering
email: leadership@pioneers.berkeley.edu
description: >
(c) Pioneers in Engineering Foundation 2015. </br>
Licensed under CC-BY-4.0.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://pioneers.berkeley.edu" # the base hostname & protocol for your site
twit... | # Site settings
title: Pioneers in Engineering
email: leadership@pioneers.berkeley.edu
description: >
© Pioneers in Engineering Foundation 2015. </br>
Licensed under CC-BY-4.0.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://pioneers.berkeley.edu" # the base hostname & protocol for your site
twitte... | Change footer description to unicode copyright symbol | Change footer description to unicode copyright symbol
| YAML | apache-2.0 | pioneers/website,pioneers/website,kev-chien/website,pioneers/website,kev-chien/website,pioneers/website,kev-chien/website,pioneers/website,kev-chien/website,kev-chien/website |
ae889e83a55fdf5f145476c769055fddd881bfa7 | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: pretty
# Setup
title: 'Nathan Kleyn'
tagline: 'The musings of a programming fanatic'
description: 'Ruby, Haskell, Rust, and JS tinkerer. Find me on Twitter as <a href="https://twitter.com/nathankleyn" target="_blank">@nathankleyn</a>.'
u... | # Dependencies
highlighter: rouge
# Permalinks
permalink: pretty
# Setup
title: 'Nathan Kleyn'
tagline: 'The musings of a programming fanatic'
description: 'Ruby, Haskell, Rust, and JS tinkerer. Find me on Twitter as <a href="https://twitter.com/nathankleyn" target="_blank">@nathankleyn</a>.'
url: http://nathankleyn.... | Fix site warnings after GitHub Jekyll upgrade. | Fix site warnings after GitHub Jekyll upgrade.
| YAML | mit | nathankleyn/nathankleyn.github.io,nathankleyn/nathankleyn.github.io |
7a48c4680a896c198721e3e27382f069b45c0585 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# ... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# ... | Update site url to https | Update site url to https
| YAML | mit | clippings/ldf16-guide,clippings/ldf16-guide,clippings/ldf16-guide |
1a6e7a018c9f69a42aa0c41971aed69566027f1c | _config.yml | _config.yml | # Site wide configuration
title: "ETAIS"
description: "Estonian Scientific Computing Infrastructure"
logo: logo.png # 120x120 px default image used for Twitter summary card
teaser: # 400x250 px default teaser image used in image archive grid
locale: en
url: "http://localhost:4000"
feed:
path: atom.xml
# Jekyll conf... | # Site wide configuration
title: "ETAIS"
description: "Estonian Scientific Computing Infrastructure"
logo: logo.png # 120x120 px default image used for Twitter summary card
teaser: # 400x250 px default teaser image used in image archive grid
locale: en
url: "https://etais-ee.github.io/etais-web"
feed:
path: atom.xml... | Rollback configuration for public hosting | Rollback configuration for public hosting
| YAML | mit | etais-ee/etais-web,etais-ee/etais-web,etais-ee/etais-web |
8ef4659848b8af24a82be7ac5a2c07ddff35c3be | _config.yml | _config.yml | exclude: ['LICENSE', 'README.md', 'build.js']
| exclude: ['LICENSE', 'README.md', 'build.js', 'about-me/README.md', 'page/page.html', 'page/redirect.html']
| Exclude more files from GitHub Pages's Jekyll | Exclude more files from GitHub Pages's Jekyll
| YAML | mit | demoneaux/demoneaux.github.io,d10/d10.github.io,d10/d10.github.io |
0b8597493556a1d91dc05403cc985367f9b3b04d | metadata/amirz.dngprocessor.yml | metadata/amirz.dngprocessor.yml | Categories:
- Multimedia
License: LGPL-3.0-only
SourceCode: https://github.com/amirzaidi/DNGProcessor
IssueTracker: https://github.com/amirzaidi/DNGProcessor/issues
AutoName: DNG Processor
Summary: Process DNG images into JPEGs
Description: |-
''DNG Processor'' waits for new RAW images captured using the OEM cam... | Categories:
- Multimedia
License: LGPL-3.0-only
SourceCode: https://github.com/amirzaidi/DNGProcessor
IssueTracker: https://github.com/amirzaidi/DNGProcessor/issues
AutoName: DNG Processor
Summary: Process DNG images into JPEGs
Description: |-
''DNG Processor'' waits for new RAW images captured using the OEM cam... | Update CV of DNG Processor to 1.0 (1) | Update CV of DNG Processor to 1.0 (1)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
c860c10ecd846084ce57a398ebe24bfc7ce9c052 | metadata/co.appreactor.news.yml | metadata/co.appreactor.news.yml | Categories:
- Internet
- Reading
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/bubelov/news
IssueTracker: https://github.com/bubelov/news/issues
AutoName: News
RepoType: git
Repo: https://github.com/bubelov/news
Builds:
- versionName: 0.2.0
versionCode: 6
commit: v0.2.0
subdir... | Categories:
- Internet
- Reading
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/bubelov/news
IssueTracker: https://github.com/bubelov/news/issues
AutoName: News
RepoType: git
Repo: https://github.com/bubelov/news
Builds:
- versionName: 0.2.0
versionCode: 6
commit: v0.2.0
subdir... | Update News to 0.2.5 (11) | Update News to 0.2.5 (11)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
4fc40449133ae9172950f458f2799b93683fe1f0 | defaults/main.yml | defaults/main.yml | ---
haproxy_ciphers:
- ECDHE-RSA-AES256-GCM-SHA384
- ECDHE-RSA-AES256-SHA384
- ECDHE-RSA-AES256-SHA
- AES256-GCM-SHA384
- AES256-SHA256
- AES256-SHA
- CAMELLIA256-SHA
- ECDHE-RSA-AES128-GCM-SHA256
- ECDHE-RSA-AES128-SHA256
- ECDHE-RSA-AES128-SHA
- AES128-GCM-SHA256
- AES128-SHA256
- AES128-SHA... | ---
haproxy_ciphers:
- ECDHE-RSA-AES256-GCM-SHA384
- ECDHE-RSA-AES256-SHA384
- ECDHE-RSA-AES256-SHA
- AES256-GCM-SHA384
- AES256-SHA256
- DHE-RSA-AES256-SHA
- AES256-SHA
- CAMELLIA256-SHA
- ECDHE-RSA-AES128-GCM-SHA256
- ECDHE-RSA-AES128-SHA256
- ECDHE-RSA-AES128-SHA
- AES128-GCM-SHA256
- AES12... | Revert "Revert "Add settings for robust PFS"" | Revert "Revert "Add settings for robust PFS""
This reverts commit 3aeb89b0784f503c06c99c1df4a2e85ff68b1e3c.
see [#127793629]
| YAML | apache-2.0 | betterplace/ansible-haproxy |
87b7e65d8abbb914510bc2983cb66ad34c67330d | packages/go/google-cloud.yaml | packages/go/google-cloud.yaml | homepage: ''
changelog-type: ''
hash: 0fefd2ff6b81cd1fcb7ba97ecfc8ca090fa56f59bc091f28dfbe6a9bed85abb2
test-bench-deps: {}
maintainer: tomas.carnecky@gmail.com
synopsis: Client for the Google Cloud APIs
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
stm: -any
base: ! '>=4.4 && <4.9'
time: -any
... | homepage: ''
changelog-type: ''
hash: 4b583140ea6f13a525c7f77add013b83022d97b9bfd34674fecb0425c6ad6d48
test-bench-deps: {}
maintainer: tomas.carnecky@gmail.com
synopsis: Client for the Google Cloud APIs
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
stm: -any
base: ! '>=4.4 && <4.9'
time: -any
... | Update from Hackage at 2015-08-26T19:38:12+0000 | Update from Hackage at 2015-08-26T19:38:12+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
92c5e34789359fb39d0f2cce16f8de92a307c78d | compose/docker-compose.yml | compose/docker-compose.yml | version: "3"
services:
loadbalancer:
image: dockercloud/haproxy
ports:
- 5000:80
links:
- vote
networks:
- front-tier
- back-tier
volumes:
- /var/run/docker.sock:/var/run/docker.sock
vote:
build: ./vote
command: python app.py
volumes:
- ./vote:... | version: "3"
services:
loadbalancer:
image: dockercloud/haproxy
ports:
- 5000:80
links:
- vote
networks:
- front-tier
volumes:
- /var/run/docker.sock:/var/run/docker.sock
vote:
build: ./vote
command: python app.py
volumes:
- ./vote:/app
ports:
... | Update load balancer to be only on front end network | Update load balancer to be only on front end network
| YAML | mit | lizard43/docker-demo17,lizard43/docker-demo17,lizard43/docker-demo17,lizard43/docker-demo17,lizard43/docker-demo17,lizard43/docker-demo17 |
b701e29632514c23aa3359f2473179891a06a4a4 | defaults/main.yml | defaults/main.yml | ---
# defaults file for apt-cacher-ng
apt_cacher_ng_port: 3142
apt_cacher_ng_cache_dir: /var/cache/apt-cacher-ng
apt_cacher_ng_setup_ufw: True
apt_cacher_ng_enable_report_page: True
| ---
# defaults file for apt-cacher-ng
apt_cacher_ng_port: 3142
apt_cacher_ng_cache_dir: /var/cache/apt-cacher-ng
apt_cacher_ng_setup_ufw: True
| Revert "set SGID to CacheDir" | Revert "set SGID to CacheDir"
This reverts commit 3d1f15b8e4f584c520adf7e73b4dd603db98492a.
| YAML | mit | elnappo/ansible-role-apt-cacher-ng |
f8b003f113c3f92dd3877c55ec49ae3d329b3199 | config/database.yml | config/database.yml | # PostgreSQL. Versions 9.1 and up are supported.
#
# Install the pg driver:
# gem install pg
# On OS X with Homebrew:
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
# On OS X with MacPorts:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install ... | # PostgreSQL. Versions 9.1 and up are supported.
#
# Install the pg driver:
# gem install pg
# On OS X with Homebrew:
# gem install pg -- --with-pg-config=/usr/local/bin/pg_config
# On OS X with MacPorts:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install ... | Add werker config for tests | Add werker config for tests
| YAML | agpl-3.0 | payloadtech/mailpenny,payloadtech/mailpenny,payloadtech/mailpenny |
250584cc77ed78e5f2b69188a963780e2de2f222 | metadata/org.sensors2.osc.yml | metadata/org.sensors2.osc.yml | Categories:
- Multimedia
License: MIT
WebSite: https://sensors2.org/osc
SourceCode: https://github.com/SensorApps/Sensors2OSC
IssueTracker: https://github.com/SensorApps/Sensors2OSC/issues
Changelog: https://github.com/SensorApps/Sensors2OSC/blob/HEAD/Changelog.md
AutoName: Sensors2OSC
Description: |-
Read senso... | Categories:
- Multimedia
License: MIT
WebSite: https://sensors2.org/osc
SourceCode: https://github.com/SensorApps/Sensors2OSC
IssueTracker: https://github.com/SensorApps/Sensors2OSC/issues
Changelog: https://github.com/SensorApps/Sensors2OSC/blob/HEAD/Changelog.md
AutoName: Sensors2OSC
Description: |-
Read senso... | Update CV of Sensors2OSC to 0.3.0 (3) | Update CV of Sensors2OSC to 0.3.0 (3)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata |
928489726e7976566994124c162043d42630bced | articles/quickstart/backend/golang/index.yml | articles/quickstart/backend/golang/index.yml | title: Go API
# TODO remove 'image' once new QS page is live. Then only use 'logo'.
image: /media/platforms/golang.png
logo: golang
thirdParty: false
alias:
- go
- golang
languages:
- Go
author:
name: Sergiu Ghitea
email: sergiu.ghitea@auth0.com
community: false
topics:
- quickstart
contentType: tutorial
... | title: Go API
# TODO remove 'image' once new QS page is live. Then only use 'logo'.
image: /media/platforms/golang.png
logo: golang
thirdParty: false
alias:
- go
- golang
languages:
- Go
author:
name: Sergiu Ghitea
email: sergiu.ghitea@auth0.com
community: false
topics:
- quickstart
contentType: tutorial
... | Add go backend quickstart to docs/libraries | Add go backend quickstart to docs/libraries
| YAML | mit | auth0/docs,auth0/docs,auth0/docs |
55f50d58e3b6437942aeb2126dad1daa5b21d2bd | .github/FUNDING.yml | .github/FUNDING.yml | # These are supported funding model platforms
github: [amoffat]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
communi... | # These are supported funding model platforms
github: [amoffat, ecederstrand]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm... | Include Erik as a funding target | Include Erik as a funding target | YAML | mit | amoffat/sh,amoffat/sh |
2599cb5b960c32b6e799ff8172ceae2fdf1459bc | packages/wa/warp-systemd.yaml | packages/wa/warp-systemd.yaml | homepage: https://github.com/hercules-ci/warp-systemd
changelog-type: markdown
hash: d1c428d8713acef9938e8084fa1b86713eec716b022dac8c50b147c797b26aff
test-bench-deps: {}
maintainer: hackage@roberthensing.nl
synopsis: Socket activation and other systemd integration for the Warp web server
(WAI)
changelog: |
# Revisi... | homepage: https://github.com/hercules-ci/warp-systemd
changelog-type: markdown
hash: ce65648636f6aa4789b72ab0acd9acd73786533fe7468daf50c6e68fd7295292
test-bench-deps: {}
maintainer: hackage@roberthensing.nl
synopsis: Socket activation and other systemd integration for the Warp web server
(WAI)
changelog: |
# Revisi... | Update from Hackage at 2020-07-09T15:28:29Z | Update from Hackage at 2020-07-09T15:28:29Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a5c777bf3329b02c0a89d395fcf1483561a3abed | .github/mergify.yml | .github/mergify.yml | ---
pull_request_rules:
- name: remove outdated approvals
conditions:
- base=master
actions:
dismiss_reviews:
approved: true
changes_requested: false
- name: automatic merge
conditions:
- label!=do-not-merge
- base=master
- "#approved-reviews-by>=2"
- ... | ---
pull_request_rules:
- name: remove outdated approvals
conditions:
- base=master
actions:
dismiss_reviews:
approved: true
changes_requested: false
- name: automatic merge
conditions:
- label!=do-not-merge
- base=master
- "#approved-reviews-by>=2"
- ... | Use Smart-mode for "Strict Merge" to enable automatic rebase | Use Smart-mode for "Strict Merge" to enable automatic rebase
Enabling Smart-mode for "Strict Merge" causes Mergify to do a rebase of
the PR before merging. The rebase will trigger CI runs again, and
merging will be done only when the CI results are successful.
See-also: https://docs.mergify.io/actions.html#merge
Sign... | YAML | mit | ceph/go-ceph,ceph/go-ceph,ceph/go-ceph |
bef0463e860f952634f1f1cad1ef655275f07e21 | config/services.yml | config/services.yml | dashboards:
- slug: licensing
name: Licensing
- slug: vehicle-licensing
name: Vehicle licensing
feature_toggle: evl_dashboard
- slug: hmrc
name: HMRC
feature_toggle: hmrc_dashboards
excluded_from_list: true
- slug: lasting-power-of-attorney
name: Lasting Power of Attorney
feature... | dashboards:
- slug: licensing
name: Licensing
- slug: vehicle-licensing
name: Vehicle licensing
feature_toggle: evl_dashboard
- slug: hmrc
name: HMRC
feature_toggle: hmrc_dashboards
excluded_from_list: true
- slug: lasting-power-of-attorney
name: Lasting Power of Attorney
feature... | Fix typo in feature toggle for EVL | Fix typo in feature toggle for EVL
| YAML | mit | gds-attic/limelight,gds-attic/limelight,gds-attic/limelight |
8ce12fe98a613a3f129e0ace0a980e3c2ff85b50 | config/settings.yml | config/settings.yml | plugins:
solved_enabled:
default: true
client: true
allow_solved_on_all_topics:
default: true
client: true
accept_all_solutions_trust_level:
default: 4
client: true
empty_box_on_unsolved:
default: false
client: true
solved_quote_length:
default: 300
client: false
solv... | plugins:
solved_enabled:
default: true
client: true
allow_solved_on_all_topics:
default: true
client: true
accept_all_solutions_trust_level:
default: 1
client: true
empty_box_on_unsolved:
default: false
client: true
solved_quote_length:
default: 300
client: false
solv... | Change default for solutions trust level | Change default for solutions trust level
| YAML | mit | bolariin/discourse-instructor-endorsed,bolariin/discourse-instructor-endorsed,bolariin/discourse-instructor-endorsed |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.