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
2ea216dff10f3ed47e5431d4e7ae08858d253c45
.travis.yml
.travis.yml
language: go go: - 1.7 - 1.6 install: - go get -u github.com/golang/lint/golint script: - make check - make build - make release - make clean - make test - make coverage
language: go go: - 1.7 - 1.6 install: - go get -u github.com/golang/lint/golint script: - make check - make build - make release - make clean - make unit-test - make unit-coverage
Update test command for Travis CI
Update test command for Travis CI Signed-off-by: Jingwen Peng <a6a6de77f0e9a12d58e822b07b7a99e1ec290756@yunify.com>
YAML
apache-2.0
yunify/snips
def8f21bdbcea435629933c1f04744a828889362
.travis.yml
.travis.yml
sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - nightly cache: directories: - $HOME/.composer/cache install: - phpenv config-rm xdebug.ini - composer install script: - find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l - $(php -r 'if (PHP_MAJOR_VERSIO...
sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - nightly cache: directories: - $HOME/.composer/cache install: - phpenv config-rm xdebug.ini || echo "No xdebug config found." - composer install script: - find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l ...
Fix Travis on PHP nightly
Fix Travis on PHP nightly
YAML
mit
kelunik/two-factor
8ee91385c7ebf8456dd336cf6c97e2ae38505d11
.travis.yml
.travis.yml
language: ruby only: - master rvm: - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 env: matrix: - "RAILS_VERSION=\"~> 3.0.0\"" - "RAILS_VERSION=\"~> 3.1.0\"" - "RAILS_VERSION=\"~> 3.2.0\"" - "RAILS_VERSION=\"~> 4.0.0\"" matrix: exclude: -...
language: ruby only: - master rvm: - jruby-19mode - rbx-19mode - 1.9.2 - 1.9.3 - 2.0.0 env: matrix: - "RAILS_VERSION=\"~> 3.0.0\"" - "RAILS_VERSION=\"~> 3.1.0\"" - "RAILS_VERSION=\"~> 3.2.0\"" - "RAILS_VERSION=\"~> 4.0.0\"" matrix: exclude: - rvm: 1.9.2 env: "RAILS_VERSION=\"~>...
Stop testing against ruby 1.8
Stop testing against ruby 1.8 Ruby 1.8 has been EOL'ed and our build matrix is much bigger than it needs to be
YAML
mit
pivotaltracker/delayed_job,r-fujiwara/delayed_job,nruth/delayed_job,pivotaltracker/delayed_job,doximity/delayed_job,pwnall/delayed_job,khwangster/delayed_job,morsedigital/delayed_job,envato/delayed_job,dblock/delayed_job,mavenlink/delayed_job,scrumalliance/delayed_job,tom-asta-dev/delayed_job,collectiveidea/delayed_job...
1a80f1e6be650d703289cdc9319d91c1b1088ad6
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 env: global: - setup=basic cache: directories: - vendor - $HOME/.composer/cache sudo: false install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi - if [[ $setup = 'stable' ]...
language: php php: - 5.6 - 7.0 - 7.1 env: global: - setup=basic cache: directories: - vendor - $HOME/.composer/cache sudo: false install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi - if [[ $setup = 'stable' ]]; then travis_retry com...
Remove PHP versions below 5.6 for Travis CI
Remove PHP versions below 5.6 for Travis CI
YAML
mit
hansott/pinterest-php
a05462afde7a37762a531950d308573b6de1aa6b
.travis.yml
.travis.yml
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-stable-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk...
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefd...
Use the pre-release builds of chefdk
Use the pre-release builds of chefdk
YAML
apache-2.0
jakimowicz/sql_server,criteo-forks/sql_server,chef-cookbooks/sql_server,mahsoud/sql_server,opscode-cookbooks/sql_server,tpetchel/sql_server,tpetchel/sql_server,jakimowicz/sql_server,mahsoud/sql_server,opscode-cookbooks/sql_server,chef-cookbooks/sql_server,criteo-forks/sql_server
bc06db21c399bfb669fafc853f4eb90876487fac
.travis.yml
.travis.yml
language: python sudo: false python: - 3.4 before_install: - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda3/bin:$PATH - conda install --yes pip python==$TRAVIS_PYTHON_VERSION numpy m...
language: python sudo: false python: - 3.4 before_install: - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda3/bin:$PATH - conda install --yes pip python==$TRAVIS_PYTHON_VERSION numpy m...
Revert "Just use flit to build the wheel"
Revert "Just use flit to build the wheel" This reverts commit 665f792b22dddcd439a2433d0007a32ca42b8392.
YAML
bsd-3-clause
jhamrick/plotchecker
86c509089ca7d01e68e19dc050a2e85f1ec8a9b3
.travis.yml
.travis.yml
dist: trusty sudo: required language: ruby cache: bundler: true rvm: - 2.4.1-clang addons: postgresql: '9.6' before_script: - cp config/database.yml.travis config/database.yml - psql -c "CREATE DATABASE open_lis_test ENCODING 'UTF-8';" -U postgres
dist: trusty sudo: required language: ruby before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.24.6 - export PATH=$HOME/.yarn/bin:$PATH cache: bundler: true yarn: true rvm: - 2.4.1-clang addons: postgresql: '9.6' before_script: - cp config/database.yml.travis config/datab...
Use yarn in Travis CI
Use yarn in Travis CI
YAML
mit
Labtec/OpenLIS,Labtec/OpenLIS,Labtec/OpenLIS
c3e4e1806a84c79f06f6d7fe826cdf4bfb2ec84a
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" - "stable" script: - yarn run test:coverage before_deploy: - npm install -g auto-dist-tag - auto-dist-tag --write deploy: provider: npm email: stefan.penner+ember-cli@gmail.com api_key: secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3IoLe36z3P...
language: node_js node_js: - "6" - "stable" script: - yarn run test:coverage before_deploy: - npm install -g auto-dist-tag - auto-dist-tag --write deploy: provider: npm email: stefan.penner+ember-cli@gmail.com api_key: secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3IoLe36z3P2KuqVSbh...
Drop Node 4 from test matrix
CI: Drop Node 4 from test matrix
YAML
mit
ef4/broccoli-uglify-sourcemap,ef4/broccoli-uglify-sourcemap
3f6de1f4e114b0b93270b6ce0cd00ffd3b5a1583
.travis.yml
.travis.yml
language: java jdk: - openjdk8 - openjdk11 env: NODE_VERSION=10.2.1 CXX=g++-4.8 before_install: nvm install $NODE_VERSION jobs: include: - stage: "Shared Module" name: "Build" script: ./gradlew :shared:build - name: "Tests" script: ./gradlew :shared:test -i - stage: "Language Server...
language: java jdk: - openjdk8 - openjdk11 env: NODE_VERSION=10.2.1 CXX=g++-4.8 before_install: nvm install $NODE_VERSION addons: apt: packages: - libsecret-1-dev - g++-4.8 jobs: include: - stage: "Shared Module" name: "Build" script: ./gradlew :shared:build - name: "Tests"...
Move deployment into a separate build stage
Move deployment into a separate build stage
YAML
mit
fwcd/kotlin-language-server,fwcd/kotlin-language-server,fwcd/kotlin-language-server
549c3d6b62848cbfccb864bb92eb3201525b3f4c
.travis.yml
.travis.yml
dist: trusty sudo: false language: c branches: only: - master cache: directories: - $HOME/env before_install: - pip install --user hererocks - hererocks $HOME/env --luajit 2.0.3 --luarocks latest - source $HOME/env/bin/activate install: - luarocks show lanes > /dev/null || luarocks install lanes...
dist: trusty sudo: false language: c branches: only: - master cache: directories: - $HOME/env before_install: - pip install --user hererocks - hererocks $HOME/env --luajit 2.0.3 --luarocks latest - source $HOME/env/bin/activate install: - luarocks show lanes > /dev/null || luarocks install lanes...
Stop running Luacheck on E2 extension files
Stop running Luacheck on E2 extension files They use a custom preprocessor so don't contain standard Lua syntax. This should stop Travis builds failing when somebody touches these files. See #1087 for a discussion on this.
YAML
apache-2.0
Grocel/wire,thegrb93/wire,dvdvideo1234/wire,wiremod/wire,sammyt291/wire,garrysmodlua/wire,bigdogmat/wire,NezzKryptic/Wire
c5badb6e7b3673a247ff0d208c8e7fb5fe96344c
.travis.yml
.travis.yml
language: node_js node_js: - '6' - '8' - '9' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
language: node_js node_js: - '6' - '8' - '10' - '12' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
Drop node 9, add 10 and 12
Travis: Drop node 9, add 10 and 12
YAML
bsd-3-clause
unexpectedjs/unexpected-messy
927f4d7fc5cb47f0063f7a049d3b48d2af95365a
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.3 before_install: gem install bundler -v 1.10.6
language: ruby rvm: - 2.1.5 before_install: gem install bundler -v 1.10.6
Use Ruby 2.1.5 when building on Travis CI.
Use Ruby 2.1.5 when building on Travis CI. Related to proiel/proiel-cli#3.
YAML
mit
proiel/proiel,proiel/proiel
faafd9b2312385e467d081c56ee0ec61596c2ef7
.travis.yml
.travis.yml
language: php php: - '7.0' - hhvm - nightly before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist script: phpunit
language: php php: - '7.0' - nightly before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist script: phpunit
Remove HHVM from Travis CI
Remove HHVM from Travis CI
YAML
mit
php-earth/stats,wwphp-fb/stats,php-earth/stats,wwphp-fb/stats
b74f7bb372dbf0f98a13d77fe2aa762180e1e4e5
.travis.yml
.travis.yml
language: python python: - 2.7 virtualenv: # apt packages ends up amongst system packages system_site_packages: true addons: apt: packages: - qt4-qmake - libqt4-dev - python-qt4 # - python-pyside # not whitelisted for some reason install: # Based on http://stackoverflow.com/a/24545890...
language: python python: - 2.7 virtualenv: # apt packages ends up amongst system packages system_site_packages: true addons: apt: packages: - qt4-qmake - libqt4-dev - python-qt4 # - python-pyside # not whitelisted for some reason install: # Based on http://stackoverflow.com/a/24545890...
Enable verbosity on nosetests to find out what's going wrong.
Enable verbosity on nosetests to find out what's going wrong.
YAML
mit
mottosso/Qt.py,fredrikaverpil/Qt.py,mottosso/Qt.py,fredrikaverpil/Qt.py
048938169231f051c1612af608cde673ccc77529
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode
Add Ruby 2.1 to Travis
Add Ruby 2.1 to Travis
YAML
mit
jmdeldin/cross_validation
c5e5c08b1df5bfac4eebb2d5bbe0fea1c146b0ba
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 1.9.2 - jruby-19mode - rbx-19mode - ruby-head
language: ruby rvm: - 1.9.3 - 1.9.2 - jruby-19mode - rbx-19mode - ruby-head - jruby-head
Revert "Do not check jruby-head"
Revert "Do not check jruby-head" This reverts commit 4c0d2b33fde08781eb05e7e3a040c4eeaed52618.
YAML
mit
yagooar/lorem_ipsum_amet
1c6e3a8f6a395539911753ba9ba51118ffce7b8c
.travis.yml
.travis.yml
language: java jdk: oraclejdk7 before_install: # Gradle - wget http://services.gradle.org/distributions/gradle-1.6-bin.zip - unzip gradle-1.6-bin.zip - export GRADLE_HOME=$PWD/gradle-1.6 - export PATH=$GRADLE_HOME/bin:$PATH script: gradle assemble
language: java jdk: oraclejdk6 before_install: # Gradle - wget http://services.gradle.org/distributions/gradle-1.6-bin.zip - unzip gradle-1.6-bin.zip - export GRADLE_HOME=$PWD/gradle-1.6 - export PATH=$GRADLE_HOME/bin:$PATH script: gradle assemble
Use JDK6 for Android compatibility.
Use JDK6 for Android compatibility.
YAML
mit
Alanyanbc/sharebook,Alanyanbc/sharebook
50fc5539b73864b8753c2801d6c42cf82089510d
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" before_install: - "npm install --global bower grunt-cli"
language: node_js node_js: - '0.10' before_install: - npm install --global bower grunt-cli deploy: provider: npm email: ukfrontend@wonga.com api_key: secure: d0TXTI1s5jyogMsFk53Z0U2vtDaI/haN1CGWifRoOS8M5WWAOA8t+1s7KgZQm5//TcRgkJXCZXeMugPJw/7syjVAKLggi5+0KMrNH09/bMWwC1CqNGForHa1Gvv/WhG9E9EWK1Sf03nKsNxlCWYp5pA7...
Add NPM deploy step with encrypted API key
Add NPM deploy step with encrypted API key
YAML
mit
nabil-boag/angular-multimocks,paulreeve/angular-multimocks,edconolly/angular-multimocks,wongatech/angular-multimocks,douglaseggleton/angular-multimocks,douglaseggleton/angular-multimocks,nabil-boag/angular-multimocks,wongatech/angular-multimocks,edconolly/angular-multimocks,paulreeve/angular-multimocks
cf867582a28256167f95cf77f914fa46101344fc
.travis.yml
.travis.yml
# Use docker-based build environment (instead of openvz) sudo: false language: java jdk: - oraclejdk8 cache: directories: - '$HOME/.m2/repository' after_success: - mvn clean test jacoco:report coveralls:report
# Use docker-based build environment (instead of openvz) sudo: false language: java jdk: - oraclejdk8 cache: directories: - '$HOME/.m2/repository' after_success: - mvn clean test jacoco:report coveralls:report - echo "<settings><servers><server><id>ossrh</id><username>\${env.OSSRH_USER}</username><passwo...
Add deployment of SNAPSHOT artifacts after CI build to Sonatype OSS repository
Add deployment of SNAPSHOT artifacts after CI build to Sonatype OSS repository Kudos go to http://notbarjo.blogspot.de/2014/09/travis-ci-maven-deploy.html
YAML
mit
CPGFinanceSystems/verita,CPGFinanceSystems/verita
f986c5693aa7fcd1a2ee641fe6f418deba2e4318
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm sudo: false addons: apt: packages: - libevent-dev # Used by 'event' and 'libevent' PHP extensions cache: directories: - $HOME/.composer/cache install: - ./travis-init.sh - composer install script: - ./vendor/bin/phpunit --...
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm sudo: false addons: apt: packages: - libevent-dev # Used by 'event' and 'libevent' PHP extensions cache: directories: - $HOME/.composer/cache/files install: - ./travis-init.sh - composer install script: - ./vendor/bin/phpu...
Adjust composer cache directory to only cache package files
Adjust composer cache directory to only cache package files
YAML
mit
clue-labs/event-loop,kaduev13/event-loop,reactphp/event-loop,kaduev13/event-loop
c0c287a26758d8c4cb0af7eb629451aece187d1b
.travis.yml
.travis.yml
--- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=em...
--- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - EMBER_TRY_SCENARIO=ember-2.3 - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures:...
Add an ember try scenario for ember-2.3, the oldest supported version.
Add an ember try scenario for ember-2.3, the oldest supported version.
YAML
mit
baroquon/ember-paper,cogniteev/ember-paper,cogniteev/ember-paper,mnutt/ember-paper,pauln/ember-paper,PartCycleTech/ember-paper,JustInToCoding/ember-paper,miguelcobain/ember-paper,stonecircle/ember-paper,mnutt/ember-paper,Blooie/ember-paper,xomaczar/ember-paper,tmclouisluk/ember-paper,jamesdixon/ember-paper,cogniteev/em...
59e38026bab2f41456cd813b0dbd0e5489c0b657
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - jruby-19mode # JRuby 1.7.0 - rbx-19mode # - ruby-head # seems unstable on travis at this time
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode # JRuby 1.7.0 - rbx-19mode # - ruby-head # seems unstable on travis at this time
Add Ruby 2.0.0 for Travis CI
Add Ruby 2.0.0 for Travis CI
YAML
mit
RobotsAndPencils/grocer,dfried/grocer,grocer/grocer,utx-tex/grocer,rockarloz/grocer
88c865c6497fba5e339c8c108c0fd2b991abfa67
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - pypy env: - TWISTED_VERSION=12.2.0 - TWISTED_VERSION=12.1.0 install: - pip install Twisted==$TWISTED_VERSION - pip install -r requirements-dev.txt --use-mirrors script: - pep8 treq - pyflakes treq - trial treq
language: python python: #- 2.6 #- 2.7 - pypy env: - TWISTED_VERSION=12.2.0 #- TWISTED_VERSION=12.1.0 install: - pip install Twisted==$TWISTED_VERSION - pip install -r requirements-dev.txt --use-mirrors script: - pep8 treq - pyflakes treq - strace trial treq
Comment out everything but pypy with latest twisted and try running trial under strace.
Comment out everything but pypy with latest twisted and try running trial under strace.
YAML
mit
alex/treq,alex/treq,glyph/treq,habnabit/treq,mithrandi/treq,hawkowl/treq,cyli/treq,hawkowl/treq,inspectlabs/treq,ldanielburr/treq,FxIII/treq
6d29de52ac70bdc281c20230de8dc037c497676b
.travis.yml
.travis.yml
sudo: false language: clojure lein: 2.8.1 jdk: - oraclejdk8 - oraclejdk10 script: lein do check, midje
sudo: false language: clojure lein: 2.8.1 jdk: - oraclejdk8 - openjdk11 # Don't fall for Oracle's trick: https://blog.joda.org/2018/09/do-not-fall-into-oracles-java-11-trap.html script: lein do check, midje
Upgrade to JVM 11 (LTS)
:green_heart: Upgrade to JVM 11 (LTS)
YAML
epl-1.0
pmonks/bookmark-writer
dd9f069a9c0086990f1fa6191bce2ccb355a15d3
.travis.yml
.travis.yml
language: php php: - '7.0' - '5.6' - '5.5.9' - '5.5' - '5.4' - hhvm env: matrix: - PREFER_LOWEST="" - PREFER_LOWEST="--prefer-lowest" matrix: allow_failures: - php: '5.4' - php: hhvm install: - if [[ "$(phpenv version-name)" != "hhvm" ]]; then echo 'error_reporting = E_ALL & ~E_NOTICE ...
language: php php: - '7.0' - '5.6' - '5.5.9' - '5.5' - '5.4' - hhvm env: matrix: - PREFER_LOWEST="" - PREFER_LOWEST="--prefer-lowest" matrix: allow_failures: - php: '5.4' - php: hhvm install: - if [[ "$(phpenv version-name)" != "hhvm" ]]; then echo 'error_reporting = E_ALL & ~E_NOTICE ...
Use global PHPUnit in Travis builds
Use global PHPUnit in Travis builds
YAML
mit
danhunsaker/laravel-flysystem-service
822f0a09cec8ea9bdf009e5155c7be1ca6a1b08b
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: python setup.py install script: python setup.py test
language: python python: - "2.6" - "2.7" - "3.3" install: python setup.py install script: python setup.py test
Remove 3.2 support as WTForms doesn't support it
Remove 3.2 support as WTForms doesn't support it
YAML
mit
Javex/pyramid_crud,Javex/pyramid_crud,urielarg/pyramid_crud,urielarg/pyramid_crud,Javex/pyramid_crud
d45a9665f705d0bb9e9e3a705ec8a0c6b52ac342
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 - 7.2 cache: directories: - $HOME/.composer/cache env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" before_script: - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist script: - vendor/bin/phpunit --coverage-text ...
language: php php: - 7.0 - 7.1 - 7.2 cache: directories: - $HOME/.composer/cache before_script: - travis_retry composer update --no-interaction --prefer-dist script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar ...
Remove lower dependencies runs. Only run coverage for php 7.1
Remove lower dependencies runs. Only run coverage for php 7.1
YAML
mit
nWidart/laravel-modules
999f240c87d6a49c5dbfdd4a49e662c3281e9e2c
.travis.yml
.travis.yml
language: bash services: docker env: - VERSION=17.09 - VERSION=17.07 - VERSION=17.06 install: - git clone https://github.com/docker-library/official-images.git ~/official-images before_script: - env | sort - cd "$VERSION" - image="docker:$VERSION" script: - travis_retry docker build -t "$image" . ...
language: bash services: docker env: - VERSION=17.09 - VERSION=17.07 install: - git clone https://github.com/docker-library/official-images.git ~/official-images before_script: - env | sort - cd "$VERSION" - image="docker:$VERSION" script: - travis_retry docker build -t "$image" . - ~/official-image...
Update Travis for 17.06 removal
Update Travis for 17.06 removal
YAML
apache-2.0
infosiftr/docker,docker-library/docker
dfdda1cfa6d5dba5dcce96748f98410bf547bf49
.appveyor.yml
.appveyor.yml
version: '{branch}-{build}' init: - cmd: git config --global core.autocrlf true before_build: - cmd: >- nuget restore Agiil.sln git submodule update --init --recursive # As of 2017-05-15 it appears AppVeyor use a 32-bit MSBuild. # This means that we must compile for 32-bit, because otherwise # t...
version: '{branch}-{build}' init: - cmd: git config --global core.autocrlf true project: Agiil.sln before_build: - cmd: >- nuget restore Agiil.sln git submodule update --init --recursive # As of 2017-05-15 it appears AppVeyor use a 32-bit MSBuild. # This means that we must compile for 32-bit, bec...
Add expicit solution name; only need to build Agiil
Add expicit solution name; only need to build Agiil
YAML
mit
csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil
ebb2a78242fd10b157952cb0ad03005d77ea02c9
.travis.yml
.travis.yml
language: node_js node_js: - 0.1 before_install: - npm install -g grunt-cli install: - npm install script: # Reference the locally-installed version of Grunt - ./node_modules/grunt-cli/bin/grunt test after_success: # Check to see if the version file has been updated - ./create-release-tag.sh deploy: pro...
language: node_js node_js: - 4.0 before_install: - npm install -g grunt-cli install: - npm install script: # Reference the locally-installed version of Grunt - ./node_modules/grunt-cli/bin/grunt test after_success: # Check to see if the version file has been updated - ./create-release-tag.sh deploy: pro...
Update node_js to 4.0 to fix issue with node-sass
Update node_js to 4.0 to fix issue with node-sass Getting this error with node-sass: Failed at the node-sass@3.4.2 postinstall script.
YAML
mit
companieshouse/ch-accounts-prototype,karlparton/my-govuk,DilwoarH/GDS-Prototype-DM-SavedSearch,joelanman/govuk_prototype_kit,Demwunz/esif-prototype,chrishanes/pvb_prisoner_proto,DilwoarH/GDS-Prototype-DM-SavedSearch,dwpdigitaltech/hrt-prototype,OrcaTom/dwp_contentpatterns,dwpdigitaltech/ejs-prototype,BucksCountyCouncil...
1b81463734cc171aa791810f21fbc743b22db151
.travis.yml
.travis.yml
sudo: required language: node_js node_js: - "6" - "5" - "4" - "0.12" services: - docker env: DOCKER_VERSION: 1.11.0-0~trusty DOCKER_COMPOSE_VERSION: 1.7.1 DEBUG: "navy:*" NAVY_DEBUG: "navy:*" before_install: # list docker-engine versions - apt-cache madison docker-engine # upgrade docker-e...
sudo: required language: node_js node_js: - "5" - "4" - "0.12" services: - docker env: DOCKER_VERSION: 1.11.0-0~trusty DOCKER_COMPOSE_VERSION: 1.7.1 DEBUG: "navy:*" NAVY_DEBUG: "navy:*" before_install: # list docker-engine versions - apt-cache madison docker-engine # upgrade docker-engine to...
Remove Node 6 from build matrix as pty.js doesn't support it
Remove Node 6 from build matrix as pty.js doesn't support it
YAML
mit
momentumft/navy,momentumft/navy,momentumft/navy
bd1056f806a33d903965e0f41609b61a2861de26
.appveyor.yml
.appveyor.yml
clone_depth: 5 configuration: - Release - Debug image: Visual Studio 2015 platform: - x64 build_script: - 'git submodule update --init --recursive' - "C:\\Python36\\python.exe setup.py" - ps: Invoke-WebRequest "https://github.com/chigraph/chigraph/releases/download/dependencies/llvm-4.0.0-$env{CONFIGU...
clone_depth: 5 configuration: - Release - Debug image: Visual Studio 2015 platform: - x64 build_script: - 'git submodule update --init --recursive' - ps: Invoke-WebRequest "https://github.com/chigraph/chigraph/releases/download/dependencies/llvm-4.0.0-$env{CONFIGURATION}-msvc14-win64.tar.xz" third_party...
Remove call to setup.py, which isn't a thing for chigrpah
Remove call to setup.py, which isn't a thing for chigrpah
YAML
apache-2.0
GuapoTaco/chigraph,chigraph/chigraph,chigraph/chigraph,russelltg/chigraph,GuapoTaco/chigraph,chigraph/chigraph,russelltg/chigraph
6461a126ec28c05ef2a4d6b735e6ee7a79a480d1
.travis.yml
.travis.yml
language: php php: - "5.4" - "5.5" - "5.6" - "nightly" - "hhvm" sudo: false before_script: - composer install --no-interaction - cp config/app_travis.php config/app.php - cp config/oauth_example.php config/oauth.php - mysql -e 'create database pmaerr;' - wget https://scrutinizer-ci.com/ocular.phar s...
language: php php: - "5.6" - "nightly" - "hhvm" sudo: false before_script: - composer install --no-interaction - cp config/app_travis.php config/app.php - cp config/oauth_example.php config/oauth.php - mysql -e 'create database pmaerr;' - wget https://scrutinizer-ci.com/ocular.phar script: - bin/cake ...
Remove older PHP versions from Travis
Remove older PHP versions from Travis Our production is 5.6 so there is no need to support anything older. Signed-off-by: Michal Čihař <a2df1e659c9fd2578de0a26565357cb273292eeb@cihar.com>
YAML
mit
phpmyadmin/error-reporting-server,madhuracj/error-reporting-server,ujjwalwahi/error-reporting-server,devenbansod/error-reporting-server,ujjwalwahi/error-reporting-server,devenbansod/error-reporting-server,madhuracj/error-reporting-server,madhuracj/error-reporting-server,ujjwalwahi/error-reporting-server,phpmyadmin/erro...
693223af3b24fd92b7031f6f7fa2b55dd926d0df
.travis.yml
.travis.yml
language: php php: - "5.3" - "5.4" - "5.5" - "5.6" - "7.0" - "hhvm" matrix: allow_failures: - php: 7.0 sudo: false script: - if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit --coverage-text --coverage-clover=c...
language: php php: - "5.3" - "5.4" - "5.5" - "5.6" - "7.0" - "hhvm" matrix: allow_failures: - php: 7.0 sudo: false install: travis_retry composer install --no-interaction --prefer-source script: - if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi - if [ "$TRAVIS_PHP_VERSION"...
Make sure dev deps. are installed before testing
Make sure dev deps. are installed before testing
YAML
mit
jeremykenedy/html-to-markdown,TomzxForks/html-to-markdown,nickcernis/html-to-markdown,thephpleague/html-to-markdown,deadflowers/html-to-markdown,thephpleague/html-to-markdown,nickcernis/html-to-markdown,jarnix/html-to-markdown
4051a25615ead2049f1b1c99fcb4601f93dd276a
.travis.yml
.travis.yml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - rvm use 2.6.6 - gem install bundler - bundle install script: buildr package git: depth: false
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - gem install bundler - bundle install script: buildr package git: depth: false
Update the version of ruby used to build project in TravisCI.
Update the version of ruby used to build project in TravisCI.
YAML
apache-2.0
realityforge/arez,realityforge/arez,realityforge/arez
d70909475a345d2dbb3772e585a976b5fef7ff32
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - WORKSPACE="Aho-Corasick-Swift.xcworkspace" - IOS_FRAMEWORK_SCHEME="Aho-Corasick-Swift" - IOS_SDK=iphonesimulator10.0 matrix: - DESTINATION="OS=10.0,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" ...
language: objective-c osx_image: xcode8 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - WORKSPACE="Aho-Corasick-Swift.xcworkspace" - IOS_FRAMEWORK_SCHEME="Aho-Corasick-Swift" - IOS_SDK=iphonesimulator10.0 matrix: - DESTINATION="OS=10.0,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" ...
Disable CocoaPods Quality Indexes for now
Disable CocoaPods Quality Indexes for now
YAML
apache-2.0
fpg1503/Aho-Corasick-Swift,fpg1503/Aho-Corasick-Swift
734d9df216a2b04676efa8cd49affed803c31017
.travis.yml
.travis.yml
language: android jdk: - oraclejdk8 android: components: - tools - tools - platform-tools - build-tools-26.0.2 - android-26 - extra-android-support - extra-google-google_play_services - extra-android-m2repository - extra-google-m2repository - addon-google_apis-google-21 befo...
language: android jdk: - oraclejdk8 android: components: - tools - tools - platform-tools - build-tools-26.0.2 - android-26 - extra-android-support - extra-google-google_play_services - extra-android-m2repository - extra-google-m2repository - addon-google_apis-google-21 befo...
Add connectedCheck to include UI tests in code coverage
Add connectedCheck to include UI tests in code coverage
YAML
apache-2.0
brave-warrior/TravisClient_Android,brave-warrior/TravisClient_Android,dkhmelenko/TravisClient-Android,brave-warrior/TravisClient-Android,dkhmelenko/TravisClient-Android,dkhmelenko/Varis-Android,dkhmelenko/Varis-Android,brave-warrior/TravisClient-Android,dkhmelenko/Varis-Android
1c07f68e238893ba0067f831a96f2a35aa33860c
.travis.yml
.travis.yml
sudo: false language: go go: - 1.11.1 install: - go get github.com/gwenn/yacr - go get -tags all github.com/gwenn/gosqlite before_script: - go get github.com/bmizerany/assert script: # - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite - GODEBUG=cgocheck=0 go test -v -tags all github.com/gwenn/gosq...
sudo: false language: go go: - 1.11.5 install: - go get github.com/gwenn/yacr - go get -tags all github.com/gwenn/gosqlite before_script: - go get github.com/bmizerany/assert script: # - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite - GODEBUG=cgocheck=0 go test -v -tags all github.com/gwenn/gosq...
Upgrade Go version in Travis CI script
Upgrade Go version in Travis CI script
YAML
bsd-3-clause
gwenn/gosqlite,gwenn/gosqlite
22be5a65ee1d9f2069a09d82aa2e5dda0293974e
.travis.yml
.travis.yml
language: node_js node_js: - "0.8" - "0.10" before_script: - npm install -g grunt-cli
language: node_js node_js: - "0.10" before_script: - npm install -g grunt-cli
Drop Node.js 0.8 from Travis run
build: Drop Node.js 0.8 from Travis run
YAML
mit
Krinkle/qunit-theme-ninja
3a9084fdb68c9fb846453c7c6264cf55e97d6577
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" env: - TEST_DIR=packages/dispatchr - TEST_DIR=packages/fluxible - TEST_DIR=packages/fluxible-plugin-fetchr - TEST_DIR=packages/fluxible-reducer-store - TEST_DIR=packages/fluxible-addons-react - TEST_DIR=packages/fluxible-router - TEST_DIR=packages/generato...
sudo: false language: node_js node_js: - "0.10" env: - TEST_DIR=/ - TEST_DIR=packages/dispatchr - TEST_DIR=packages/fluxible - TEST_DIR=packages/fluxible-plugin-fetchr - TEST_DIR=packages/fluxible-reducer-store - TEST_DIR=packages/fluxible-addons-react - TEST_DIR=packages/fluxible-router - TEST_DIR=pa...
Add root as test directory to test full integration
Add root as test directory to test full integration
YAML
bsd-3-clause
pablolmiranda/fluxible
b3810bc53d8a7a8f9e86aea5820382657ad79de3
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-clover ./tests/logs/clov...
language: php php: - 7.0 - 7.1 env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml after_scrip...
Add slack notification on Travis builds
Add slack notification on Travis builds
YAML
mit
Rareloop/router
741071fe15f40a54f1c3f53b4b1baf758945a704
.travis.yml
.travis.yml
language: "node_js" node_js: - node - 6 services: - mongodb
sudo: false language: "node_js" node_js: - node - 6 services: - mongodb addons: apt: sources: - mongodb-upstart - mongodb-3.2-precise packages: - mongodb-org-server - mongodb-org-shell
Make Travis use MongoDB 3.2
Make Travis use MongoDB 3.2 This should hopefully fix some failing tests
YAML
mit
thatJavaNerd/novaXfer,thatJavaNerd/novaXfer,thatJavaNerd/novaXfer
6e8d404ea6816976bb8bd20064371029be567e4c
.travis.yml
.travis.yml
language: php env: - SYMFONY_DEPS_VERSION=2.1 - SYMFONY_DEPS_VERSION=2.2 before_script: # symfony/* - sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.2' ]; then sed -i 's/>=2.1,<2.3-dev/2.2.*@dev/g' composer.json; composer update --dev --prefer-source; fi" - composer install --dev --prefer-source php: ...
language: php env: - SYMFONY_DEPS_VERSION=2.1 - SYMFONY_DEPS_VERSION=2.2 before_script: # symfony/* - sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.2' ]; then sed -i 's/>=2.1,<2.3-dev/2.2.*@dev/g' composer.json; composer require --no-update 'symfony/property-access:2.2.*@dev'; composer update --dev --prefe...
Add symfony/property-access require for 2.2
Add symfony/property-access require for 2.2 This gives an actual good version of symfony/form instead of some old beta.
YAML
mit
gencer/Silex,romainneutron/Silex,plotek/Silex,peterkokot/Silex,lokhman/Silex,beealone/Silex,fhinkel/Silex,cesarmarinhorj/Silex,mTorres/Silex,Incognito/silex-fork,SpacePossum/Silex,cgsmith/Silex,Xephi/Silex,Xephi/Silex,peterkokot/Silex,jdreesen/Silex,SanderKnape/Silex,peterkokot/Silex,JPry/Silex,SanderKnape/Silex,akuche...
191d5d05acdfa70ac7a89f1357a1a5b412f23843
.travis.yml
.travis.yml
language: python sudo: required before_install: - sudo apt-get -qq update - sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev install: - pip install -r test/requirements.txt before_script: - wget https://github.com/GENI-NSF/geni-tools/archive/v2.10.tar.gz -O /tmp/geni-tools.tar.gz -...
language: python sudo: required before_install: - sudo apt-get -qq update - sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev - sudo apt-get install -qq -y swig # For pip M2Crypto install: - pip install -r test/requirements.txt before_script: - wget https://github.com/GENI-NSF/geni-...
Add swig, pip M2Crypto requires it
Add swig, pip M2Crypto requires it
YAML
mit
MarshallBrinn/geni-ch,tcmitchell/geni-ch,tcmitchell/geni-ch,MarshallBrinn/geni-ch
f390e35c8f1607cfd429323b2b01eb3299fe4bd3
.travis.yml
.travis.yml
language: python python: - "3.4" - "pypy3" nstall: - travis_retry pip install -r requirements.txt - travis_retry pip install coveralls script: - coverage run --branch --source=mygpoauth ./manage.py test after_script: - coveralls sudo: false
language: python python: - "3.4" - "pypy3" nstall: - travis_retry pip install -r requirements.txt - travis_retry pip install coveralls script: - coverage run --branch --source=mygpoauth ./manage.py test after_script: - coveralls sudo: false env: - DATABASE_URL="postgres://postgres@localhost/mygpo_tes...
Set DATABASE_URL for Travis-CI tests
Set DATABASE_URL for Travis-CI tests
YAML
agpl-3.0
gpodder/mygpo-auth,gpodder/mygpo-auth
033c514d09e99e2dd0b90ff4c4d2b9d7d94a49de
.travis.yml
.travis.yml
language: python python: - '3.5' - '3.6' env: - HASS=0.95.4 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS script: - hass -c . --script check_config
language: python python: - '3.5' - '3.6' env: - HASS=0.96.3 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS script: - hass -c . --script check_config
Update Home Assistant to 0.96.3 for config checks in Travis CI
Update Home Assistant to 0.96.3 for config checks in Travis CI
YAML
mit
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
58208c1624562dabc04299694fb3b45d10c9ea80
.travis.yml
.travis.yml
language: python dist: "xenial" python: - "3.5" - "3.6" - "3.7" env: - DJANGO=1.11 - DJANGO=2.0 - DJANGO=2.1 - DJANGO=2.2 - DJANGO=3.0 - DJANGO=3.1 before_install: - pip install --upgrade pytest install: - pip install -q Django==$DJANGO - pip install -e . - pip install -e '.[test]' - pi...
language: python dist: "xenial" python: - "3.5" - "3.6" - "3.7" - "3.8" env: - DJANGO=1.11 - DJANGO=2.0 - DJANGO=2.1 - DJANGO=2.2 - DJANGO=3.0 - DJANGO=3.1 matrix: exclude: - python: "3.5" env: DJANGO=3.0 - python: "3.5" env: DJANGO=3.1 before_install: - pip install --up...
Update testing matrix to drop py3.5 for django 3.x; add py3.8
Update testing matrix to drop py3.5 for django 3.x; add py3.8
YAML
apache-2.0
Princeton-CDH/django-pucas,Princeton-CDH/django-pucas
36683f37c983c363ef1c926d063f50de39a00e34
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 - 7.2 sudo: false install: travis_retry composer install --no-interaction --prefer-source script: vendor/bin/phpunit --verbose
language: php php: - 7.0 - 7.1 - 7.2 - 7.3 sudo: false install: travis_retry composer install --no-interaction --prefer-source script: vendor/bin/phpunit --verbose
Add PHP 7.3 to Travis
Add PHP 7.3 to Travis
YAML
mit
laravel/cashier,laravel/cashier
5f25fe0d86a1f8f0b95c04be2bd8d56b955bae2d
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 # command to run tests script: python setup.py develop && python setup.py ptr
language: python python: - 2.6 - 2.7 # command to run tests script: sudo aptitude install -y tcl && python setup.py develop && python setup.py ptr
Install TCL so we can run the test IRC server
Install TCL so we can run the test IRC server
YAML
mit
yougov/pmxbot,yougov/pmxbot,yougov/pmxbot
e413c8e314d606093315d049fc879e8c6daec10f
.travis.yml
.travis.yml
language: csharp mono: none dotnet: 2.0.0 matrix: include: - os: linux dist: trusty - os: osx before_install: - if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update & sudo apt-get install -y tor; else brew install tor; fi - sudo killall tor - tor RunAsDaemon 1 SOCKSPort 9050 Con...
language: csharp mono: none dotnet: 2.0.0 matrix: include: - os: linux dist: trusty - os: osx before_install: - if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update && sudo apt-get install -y tor; else brew install tor; fi - sudo killall tor - tor RunAsDaemon 1 SOCKSPort 9050 Co...
Fix apt-get running in background
Fix apt-get running in background
YAML
mit
nopara73/DotNetTor
b4706682943b438f809643b973455c10351788b6
.travis.yml
.travis.yml
language: php php: - 7.0 before_script: - composer install --prefer-dist - composer require "satooshi/php-coveralls:^1.0" script: - mkdir -p build/logs - bin/check-code-cov - vendor/bin/phpunit -c phpunit.xml.dist --coverage-text --coverage-clover ./build/logs/clover.xml after_script: - ...
language: php php: - 7.0 - 7.1 before_script: - composer install --prefer-dist - composer require "satooshi/php-coveralls:^1.0" script: - mkdir -p build/logs - bin/check-code-cov - vendor/bin/phpunit -c phpunit.xml.dist --coverage-text --coverage-clover ./build/logs/clover.xml after_scri...
Add PHP 7.1 to supported versions
Add PHP 7.1 to supported versions
YAML
mit
mihaeu/dephpend,mihaeu/dephpend
32e1e1cd237209316e55362e7ee3722e31ba326a
plugin.yml
plugin.yml
name: LuckyBlockWars main: Survingo\LuckyBlockWars\LuckyBlockWars version: Alpha author: Survingo api: [1.13.1,2.0.0] description: The MCPC mini-game Lucky Block Wars for your PocketMine server commands: lbw: permission: lbw.command aliases: ["luckyblockwars", "lucky-block-wars"] description: "All commands for ...
name: LuckyBlockWars main: Survingo\LuckyBlockWars\LuckyBlockWars version: Alpha author: Survingo api: [2.0.0] description: The MCPC mini-game Lucky Block Wars for your PocketMine server commands: lbw: permission: lbw.command aliases: ["luckyblockwars", "lucky-block-wars"] description: "All commands for Lucky B...
Cut support for old API
Cut support for old API
YAML
apache-2.0
Survingo/LuckyBlockWars
bcb2db95336ebc6acd08ae9e2ea516e59553fad1
.rubocop_todo.yml
.rubocop_todo.yml
# This configuration was generated by # `rubocop --auto-gen-config` # on 2017-06-06 16:33:49 -0400 using RuboCop version 0.35.1. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of ne...
# This configuration was generated by # `rubocop --auto-gen-config` # on 2017-07-11 13:25:18 -0400 using RuboCop version 0.49.1. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of ne...
Add additional exceptions to rubocop todo
Add additional exceptions to rubocop todo
YAML
mit
jonathanpike/mako,jonathanpike/mako
547c9b78eff8dd4d74d73629173be1793eabf5db
.forestry/front_matter/templates/artwork.yml
.forestry/front_matter/templates/artwork.yml
--- label: artwork hide_body: false is_partial: false fields: - name: date default: 2016-06-01 03:40:12 +0000 label: Date type: datetime hidden: false - name: featuredimage default: "/uploads/600-6.jpg" label: Featuredimage type: file hidden: false - name: title default: hola victor label: Title t...
--- label: artwork hide_body: false is_partial: false fields: - name: date default: 2016-06-01 03:40:12 +0000 label: Date type: datetime hidden: false - name: featuredimage default: "/uploads/600-6.jpg" label: Featuredimage type: file hidden: false - name: title default: hola victor label: Title t...
Update from Forestry.io - Updated moneda.md
Update from Forestry.io - Updated moneda.md
YAML
mit
aficiomaquinas/juan-pablo-villegas,aficiomaquinas/juan-pablo-villegas,onep/juan-pablo-villegas,aficiomaquinas/juan-pablo-villegas,aficiomaquinas/juan-pablo-villegas,onep/juan-pablo-villegas,onep/juan-pablo-villegas,onep/juan-pablo-villegas
49a78d9bb0012cd555cc166f3623ddc936979a6a
.forestry/front_matter/templates/gallery.yml
.forestry/front_matter/templates/gallery.yml
--- label: Gallery hide_body: true fields: - type: field_group_list name: Sp94 guide montage label: Sp94 guide montage fields: - type: file name: file label: file - type: text name: description label: description
--- label: Gallery hide_body: true fields: - type: field_group_list name: Sp94 guide montage label: Sp94 guide montage fields: - type: file name: file label: File - type: text name: description label: Description config: required: true
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
Narno/narno.com,Narno/narno.com
7e21299239b52dfb787021a65522ac6a1c610763
metadata/app.olaunchercf.yml
metadata/app.olaunchercf.yml
Categories: - Theming License: GPL-3.0-only AuthorName: Joscha AuthorEmail: joscha.loos@rwth-aachen.de SourceCode: https://github.com/jooooscha/Olauncher IssueTracker: https://github.com/jooooscha/Olauncher/issues AutoName: Olauncher Clutter Free RepoType: git Repo: https://github.com/jooooscha/Olauncher Builds: ...
Categories: - Theming License: GPL-3.0-only AuthorName: Joscha AuthorEmail: joscha.loos@rwth-aachen.de SourceCode: https://github.com/jooooscha/Olauncher IssueTracker: https://github.com/jooooscha/Olauncher/issues AutoName: Olauncher Clutter Free RepoType: git Repo: https://github.com/jooooscha/Olauncher Builds: ...
Update Olauncher Clutter Free to fork1.5 (5)
Update Olauncher Clutter Free to fork1.5 (5)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
cce64f7786aaa827de958172c14cdebbc622f891
.forestry/front_matter/templates/profile.yml
.forestry/front_matter/templates/profile.yml
--- hide_body: false is_partial: false fields: - name: title label: Name type: text hidden: false default: '' - name: name_organization label: Organization Name type: text hidden: false default: - name: link label: Link type: text hidden: false default: - name: services label: Services typ...
--- hide_body: true is_partial: false fields: - name: title label: Name type: text hidden: false default: '' - name: name_organization label: Organization Name type: text hidden: false default: - name: link label: Link type: text hidden: false default: - name: services label: Services type...
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
thenewdynamic-org/thenewdynamic.org,thenewdynamic-org/thenewdynamic.org,budparr/thenewdynamic,budparr/thenewdynamic,budparr/thenewdynamic
a31d5b412a78aad475fe9bc9400a1e5662b4a7d8
.github/workflows/continuous-integration.yml
.github/workflows/continuous-integration.yml
# See https://github.com/laminas/laminas-continuous-integration-action # Generates a job matrix based on current dependencies and supported version # ranges, then runs all those jobs name: "Continuous Integration" on: pull_request: push: jobs: matrix: name: Generate job matrix runs-on: ubuntu-latest ...
# See https://github.com/laminas/laminas-continuous-integration-action # Generates a job matrix based on current dependencies and supported version # ranges, then runs all those jobs name: "Continuous Integration" on: pull_request: push: jobs: matrix: name: Generate job matrix runs-on: ubuntu-latest ...
Update laminas/laminas-ci-matrix-action action to v1.21.0
Update laminas/laminas-ci-matrix-action action to v1.21.0 | datasource | package | from | to | | ----------- | -------------------------------- | ------ | ------ | | github-tags | laminas/laminas-ci-matrix-action | 1.20.0 | 1.21.0 |
YAML
mit
Ocramius/LazyProperty
7984d613ad2d9ebee7b080562b464d7b11f2c2be
packages/ek/ekg-prometheus-adapter.yaml
packages/ek/ekg-prometheus-adapter.yaml
homepage: https://github.com/adinapoli/ekg-prometheus-adapter#readme changelog-type: '' hash: 0520a0f69668a1fcec80c7658e4489004b2f325ad86cf06f770d1e8670ef4d78 test-bench-deps: ekg-prometheus-adapter: -any base: -any maintainer: alfredo.dinapoli@gmail.com synopsis: Easily expose your EKG metrics to Prometheus change...
homepage: https://github.com/adinapoli/ekg-prometheus-adapter#readme changelog-type: '' hash: cbf0120165198ee30c2d882b058e4ee2cc68f78ba0f85b1b8c546e0bb64096e9 test-bench-deps: ekg-prometheus-adapter: -any base: -any maintainer: alfredo.dinapoli@gmail.com synopsis: Easily expose your EKG metrics to Prometheus change...
Update from Hackage at 2018-11-29T11:41:12Z
Update from Hackage at 2018-11-29T11:41:12Z
YAML
mit
commercialhaskell/all-cabal-metadata
f2504bfac66932e332c933c878a24da8a179f12a
localhost.yml
localhost.yml
- hosts: localhost connection: local gather_facts: yes sudo: no roles: - hnakamur.osx-defaults - hnakamur.homebrew-packages - hnakamur.homebrew-cask-packages - hnakamur.osx-login-shell - hnakamur.oh-my-zsh - hnakamur.homebrew-path - hnakamur.osx-go - hnakamur.osx-vim - hnakam...
- hosts: localhost connection: local gather_facts: yes sudo: no roles: - hnakamur.osx-defaults - hnakamur.homebrew-packages - hnakamur.homebrew-cask-packages - hnakamur.osx-login-shell - hnakamur.oh-my-zsh - hnakamur.homebrew-path - hnakamur.osx-go - hnakamur.osx-vim - hnakam...
Use homebrew rbenv instead of homebrew ruby
Use homebrew rbenv instead of homebrew ruby
YAML
mit
hnakamur/macbook_setup,hnakamur/macbook_setup,hnakamur/macbook_setup
e3e6debc755aa84b2f9849d933ec2a8c01a719e2
packages/on/online.yaml
packages/on/online.yaml
homepage: https://github.com/tonyday567/online#readme changelog-type: '' hash: f7dfa9796de226965a6ee137af4c6ffbd0181b919368f9869075361570825abc test-bench-deps: base: ! '>=4.7 && <5' doctest: -any protolude: -any tasty: -any maintainer: tonyday567@gmail.com synopsis: online statistics changelog: '' basic-deps: ...
homepage: https://github.com/tonyday567/online#readme changelog-type: '' hash: bffa0f36cffb3b4cc360ffb9c07efdd6d8ce89557c14c2a55687b922f9c9806b test-bench-deps: base: ! '>=4.7 && <5' doctest: -any tasty: -any maintainer: tonyday567@gmail.com synopsis: online statistics changelog: '' basic-deps: tdigest: -any ...
Update from Hackage at 2019-11-12T11:47:32Z
Update from Hackage at 2019-11-12T11:47:32Z
YAML
mit
commercialhaskell/all-cabal-metadata
f6a6e976837eebd7b6da1b2dff14cd78a94b4ef1
traefik/Chart.yaml
traefik/Chart.yaml
apiVersion: v2 name: traefik version: 7.1.0 appVersion: 2.2.0 description: A Traefik based Kubernetes ingress controller keywords: - traefik - ingress home: https://traefik.io/ sources: - https://github.com/containous/traefik maintainers: - name: emilevauge email: emile@vauge.com - name: dtomcej email...
apiVersion: v1 name: traefik version: 7.2.0 appVersion: 2.2.0 description: A Traefik based Kubernetes ingress controller keywords: - traefik - ingress home: https://traefik.io/ sources: - https://github.com/containous/traefik maintainers: - name: emilevauge email: emile@vauge.com - name: dtomcej email...
Add support for helm 2
Add support for helm 2
YAML
apache-2.0
traefik/traefik-helm-chart
3051809fa1509230c3156ff82f36b33a6eaa9be9
.codeclimate.yml
.codeclimate.yml
--- engines: duplication: enabled: true config: languages: - php fixme: enabled: true phpmd: enabled: true phan: enabled: true config: file_extensions: "php" ignore-undeclared: true ratings: paths: - "**.php" exclude_paths: - tests/ - vendor/
--- engines: duplication: enabled: true config: languages: - php fixme: enabled: true phpmd: enabled: true checks: CleanCode/StaticAccess: enabled: false phan: enabled: true config: file_extensions: "php" ignore-undeclared: true ratings: paths:...
Disable static access rule for phpmd
Disable static access rule for phpmd Static methods in test utilities should be okay
YAML
mit
tddwizard/magento2-fixtures
e343ef7a3cc8fbb12db6f9ff9298ca7eecbe7f46
.codeclimate.yml
.codeclimate.yml
version: "2" plugins: rubocop: enabled: true checks: method-lines: enabled: true config: threshold: 40 exclude_patterns: - "test/"
version: "2" plugins: rubocop: enabled: true checks: method-lines: enabled: true config: threshold: 40 method-complexity: config: threshold: 40 exclude_patterns: - "test/"
Raise method complexity check threshold
Raise method complexity check threshold
YAML
mit
corenzan/scopable,haggen/scopable
a12f0225095ac6e51d0c62a183835977f89dbb95
.codeclimate.yml
.codeclimate.yml
engines: radon: enabled: true config: threshold: 'B' pep8: enabled: true ratings: paths: - "**.py" exclude_paths: - "tests/*" - "setup.py"
# https://www.codacy.com/app/gaujin/tornado-crontab/dashboard engines: radon: enabled: true config: threshold: 'B' pep8: enabled: true ratings: paths: - "**.py" exclude_paths: - "tests/*" - "setup.py"
Add Comment of Code Climate dashboard URL
Add Comment of Code Climate dashboard URL
YAML
mit
gaujin/tornado-crontab
912f169d232d1e1c1de4ccdd9f7368c838f5d367
.codeclimate.yml
.codeclimate.yml
--- engines: scss-lint: enabled: true csslint: enabled: true duplication: enabled: true config: languages: - javascript eslint: enabled: true fixme: enabled: true nodesecurity: enabled: true ratings: paths: - "**.css" - "**.inc" - "**.js" - "**.jsx" - "**....
--- engines: scss-lint: enabled: true csslint: enabled: true duplication: enabled: true config: languages: - javascript eslint: enabled: true fixme: enabled: true nodesecurity: enabled: true ratings: paths: - "**.css" - "**.inc" - "**.js" - "**.jsx" - "**....
Remove unanalyzed file extensions from CC exclude_paths
fix(metrics): Remove unanalyzed file extensions from CC exclude_paths `*` at the beginning of a value produces invalid YAML. Normally the fix would be to wrap these values in quotes, but in this case I think it makes more sense to remove the lines as these file extensions aren't analyzed by any enabled engine.
YAML
mit
therebelrobot/brigadehub,therebelrobot/brigadehub,sfbrigade/brigadehub,sfbrigade/brigadehub
6bff5823f5d8acaa19e291fb77fd90edb8ccb692
.scrutinizer.yml
.scrutinizer.yml
build: environment: python: 3.7.7 dependencies: override: - "pip install -r requirements.txt -r requirements-test.txt" nodes: analysis: tests: override: - js-scrutinizer-run - py-scrutinizer-run checks: python: duplicate_code: false
build: environment: python: 3.7.7 dependencies: override: - "pip install -r requirements.txt -r requirements-test.txt" nodes: analysis: tests: override: - js-scrutinizer-run - py-scrutinizer-run coverage: tests: override: - command: ...
Enable code coverage on Scrutinizer CI
Enable code coverage on Scrutinizer CI
YAML
bsd-3-clause
homeworkprod/byceps,homeworkprod/byceps,homeworkprod/byceps
cff131e0cbbb697732c60c06e57a683bc073ca37
.kitchen.docker.yml
.kitchen.docker.yml
driver: name: dokken privileged: true # because Docker and SystemD/Upstart chef_image: chef/chef chef_version: current transport: name: dokken provisioner: name: dokken verifier: name: inspec platforms: - name: centos-5 driver: image: centos:5 - name: centos-6 driver: image: centos:6 - n...
driver: name: dokken privileged: true # because Docker and SystemD/Upstart chef_image: chef/chef chef_version: 12.12.15 transport: name: dokken provisioner: name: dokken verifier: name: inspec platforms: - name: centos-5 driver: image: centos:5 - name: centos-6 driver: image: centos:6 - ...
Test in Travis with a pre-built in yum chef
Test in Travis with a pre-built in yum chef Otherwise we’re not testing the worst case scenario Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
YAML
apache-2.0
juliandunn/yum-epel,chef-cookbooks/yum-epel
b29007578fd03d9c0b36269ffa58d17418aeb6f8
coursebuilder/modules/gen_sample_data/manifest.yaml
coursebuilder/modules/gen_sample_data/manifest.yaml
registration: main_module: modules.gen_sample_data.gen_sample_data tests: functional: - modules.gen_sample_data.gen_sample_data_tests.GenerateSampleQuizTestCase = 1 - modules.gen_sample_data.gen_sample_data_tests.GenerateSampleStudentsTestCase = 1 - modules.gen_sample_data.gen_sample_data...
registration: main_module: modules.gen_sample_data.gen_sample_data enabled: False enabled_for_tests: True tests: functional: - modules.gen_sample_data.gen_sample_data_tests.GenerateSampleQuizTestCase = 1 - modules.gen_sample_data.gen_sample_data_tests.GenerateSampleStudentsTestCase = 1 ...
Disable generate random data module
Disable generate random data module Change on 2016/10/06 by mgainer <mgainer@google.com> ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=135428807
YAML
apache-2.0
andela-angene/coursebuilder-core,andela-angene/coursebuilder-core,andela-angene/coursebuilder-core,andela-angene/coursebuilder-core
c333f260e6700d531ce0483d7d7a9b969258bed4
packages/ha/hakyll-convert.yaml
packages/ha/hakyll-convert.yaml
homepage: http://github.com/kowey/hakyll-convert changelog-type: '' hash: 332c47ce04f5ddfef0789c5c6266a68bcb48c87c936fbdf3016b972d18a5749f test-bench-deps: {} maintainer: Eric Kow <eric.kow@gmail.com> synopsis: Convert from other blog engines to Hakyll. changelog: '' basic-deps: bytestring: -any feed: -any base: ...
homepage: http://github.com/Minoru/hakyll-convert changelog-type: '' hash: a358d09fab9a239efe019adc0f14989cba7f0c13610fe5cd7d37d1d2d6edbee4 test-bench-deps: {} maintainer: Alexander Batischev <eual.jp@gmail.com> synopsis: Convert from other blog engines to Hakyll. changelog: '' basic-deps: bytestring: -any feed: -a...
Update from Hackage at 2016-07-31T17:48:21+0000
Update from Hackage at 2016-07-31T17:48:21+0000
YAML
mit
commercialhaskell/all-cabal-metadata
e93d94fa1a1fd37533df14b7366155234c76c2e6
runtime-config/templates/collectd_addon.yml
runtime-config/templates/collectd_addon.yml
releases: - {name: collectd, version: COLLECTD_VERSION} addons: - name: collectd jobs: - name: collectd release: collectd properties: collectd: config: | LoadPlugin df LoadPlugin disk LoadPlugin cpu LoadPlugin load LoadPlugin memory LoadPlugin write_m...
releases: - {name: collectd, version: COLLECTD_VERSION} addons: - name: collectd jobs: - name: collectd release: collectd properties: collectd: space_id: SPACE_ID logging_token: LOGGING_TOKEN
Move mtlj plugin config into collectd-boshrelease
Move mtlj plugin config into collectd-boshrelease [#138704731] Signed-off-by: Peter Goetz <1bf679f6f155949fea19af278a2667a47961da6b@gmail.com>
YAML
apache-2.0
cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci
37a53b970d5e9d44ee635f33f010c0cb1b80717d
packages/ur/urlpath.yaml
packages/ur/urlpath.yaml
homepage: '' changelog-type: '' hash: b1e5f260f8d13abb9d4c79a89830090b46940358fd3c4cf90bb8af55db4fd7e4 test-bench-deps: {} maintainer: Athan Clark <athan.clark@gmail.com> synopsis: Painfully simple URL deployment. changelog: '' basic-deps: exceptions: -any split: -any base: ! '>=4.8 && <5' text: -any strict: ...
homepage: '' changelog-type: '' hash: ec5ff3c19c6f306f18d4344db1e3579f950dc2651c10e91a73ca4138d113385e test-bench-deps: {} maintainer: Athan Clark <athan.clark@gmail.com> synopsis: Painfully simple URL deployment. changelog: '' basic-deps: exceptions: -any split: -any base: ! '>=4.8 && <5' text: -any strict: ...
Update from Hackage at 2017-09-03T06:11:21Z
Update from Hackage at 2017-09-03T06:11:21Z
YAML
mit
commercialhaskell/all-cabal-metadata
e1c01bd9c236f484410f644193d53f99c107b002
openvidu-server/deployments/pro/docker-compose/media-node/beats/metricbeat-elasticsearch.yml
openvidu-server/deployments/pro/docker-compose/media-node/beats/metricbeat-elasticsearch.yml
metricbeat.modules: - module: system metricsets: - cpu - diskio - memory - network - filesystem - fsstat #- process - process_summary - uptime filesystem.ignore_types: [nfs, smbfs, autofs, devtmpfs, devpts, hugetlbfs, tmpfs, sysfs, securityfs, cgroup2, cgr...
metricbeat.modules: - module: system metricsets: - cpu - diskio - memory - network - filesystem - fsstat #- process - process_summary - uptime filesystem.ignore_types: [nfs, smbfs, autofs, devtmpfs, devpts, hugetlbfs, tmpfs, sysfs, securityfs, cgroup2, cgr...
Remove 10 factor of media nodes metricbeat
Remove 10 factor of media nodes metricbeat
YAML
apache-2.0
OpenVidu/openvidu,OpenVidu/openvidu,OpenVidu/openvidu,OpenVidu/openvidu,OpenVidu/openvidu,OpenVidu/openvidu
e4bfd07faf8b4e43ab229c3aeea6f02dbbcf2b60
acceptance-tests/task.yml
acceptance-tests/task.yml
platform: linux params: # Params are set as environment variables when the run part is executed. # Here we use (()) notation to indicate that we're using a credhub secret. GOOGLE_JSON_ACCOUNT: ((terraform-ci-acc-tests-json)) GCLOUD_PROJECT: ((ci-test-project)) # Both resources are checked out as subdirectories ...
platform: linux params: # Params are set as environment variables when the run part is executed. # Here we use (()) notation to indicate that we're using a credhub secret. GOOGLE_JSON_ACCOUNT: ((terraform-ci-acc-tests-json)) GCLOUD_PROJECT: ((ci-test-project)) GOOGLE_ORG: ((ci-test-org)) GOOGLE_BILLING_ACCO...
Set org and billing account from credhub
Set org and billing account from credhub
YAML
apache-2.0
GoogleCloudPlatform/magic-modules,GoogleCloudPlatform/magic-modules,GoogleCloudPlatform/magic-modules,GoogleCloudPlatform/magic-modules,GoogleCloudPlatform/magic-modules
5fd764f842de3d2bad974cb6191615f0260a6119
roles/desktop/tasks/virtualisations.yml
roles/desktop/tasks/virtualisations.yml
- name: AUFS tools for Docker apt: pkg=aufs-tools state=installed - name: AppArmor tools for Docker apt: pkg=apparmor state=installed - name: Does the Docker apt file exist? command: test -f {{ docker_apt_file }} register: docker_apt_exists ignore_errors: true - name: Add Docker key shell: apt-key adv --...
- name: AUFS tools for Docker apt: pkg=aufs-tools state=installed - name: AppArmor tools for Docker apt: pkg=apparmor state=installed - name: Does the Docker apt file exist? command: test -f {{ docker_apt_file }} register: docker_apt_exists ignore_errors: true - name: Add Docker key shell: apt-key adv --...
Use the correct VirtualBox package.
Use the correct VirtualBox package.
YAML
mit
jaysh/desktop-automation,jaysh/desktop-automation
7dcaeb97997b447cf643905a5500346224cad49b
src/BlogBundle/Resources/config/doctrine/Category.orm.yml
src/BlogBundle/Resources/config/doctrine/Category.orm.yml
BlogBundle\Entity\Category: type: entity table: null repositoryClass: BlogBundle\Repository\CategoryRepository id: id: type: integer id: true generator: strategy: AUTO fields: title: type: string length: 255 ...
BlogBundle\Entity\Category: type: entity table: null repositoryClass: BlogBundle\Repository\CategoryRepository id: id: type: integer id: true generator: strategy: AUTO fields: title: type: string length: 255 ...
Add field created_at to Category entity
Add field created_at to Category entity
YAML
mit
2jovany/Blog,2jovany/Blog
e65b494ad48062560d4724a0461644cb31a7e4ce
manifests/acceptance-tests-job.yml
manifests/acceptance-tests-job.yml
jobs: - name: acceptance_tests instances: 1 lifecycle: errand networks: - name: cf_private resource_pool: small_z1 templates: - name: acceptance-tests release: cf properties: acceptance_tests: admin_password: <%= ENV.fetch('CF_PASSWORD', 'admin') %> admin_user: <%= ENV.fet...
jobs: - name: acceptance_tests instances: 1 lifecycle: errand networks: - name: cf_private resource_pool: small_z1 templates: - name: acceptance-tests release: cf properties: acceptance_tests: admin_password: <%= ENV.fetch('CF_PASSWORD', 'admin') %> admin_user: <%= ENV.fet...
Exclude CAT suite 'detect' to make pipeline green
Exclude CAT suite 'detect' to make pipeline green There was a recent addition to CATs: https://github.com/cloudfoundry/cf-acceptance-tests/commit/112fab9f0d0a6e7a65832afa4a8d9e821cef8fad which seems to need special setup. Someone already marked this test as pending as it seems to be problematic (https://github.com/clo...
YAML
apache-2.0
cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci
437ab8a6fce8d23e32b00f3182feae9afbbb2c54
_config.yml
_config.yml
# Site settings title: Your awesome title email: your-email@domain.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed....
# Site settings title: Greg Jordan-Detamore email: greg@gregjd.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml ...
Update config with basic info
Update config with basic info
YAML
mit
gregjd/gregjd.github.io,gregjd/gregjd.github.io,gregjd/gregjd.github.io
4ad67a4eb77dc4c75b5fc2649cd0d7d875fb9716
_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 need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the se...
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the se...
Update Helmet version to 4.3.1
Update Helmet version to 4.3.1
YAML
mit
helmetjs/helmetjs.github.io,helmetjs/helmetjs.github.io
e9d7a5082754a3416ec920962cd3351dbdfa731e
_config.yml
_config.yml
# Site settings title: Remembering Mandy Klyne email: mandy.klyne.memorial@gmail.com # baseurl: "" # Site hosted in top directory of specified host baseurl: "/Mandy_Klyne_memorial" # the subpath of your site, e.g. /blog #url: "http://yourdomain.com" # the base hostname & protocol for your site # Sidebar settings descr...
# Site settings title: Remembering Mandy Klyne email: mandy.klyne.memorial@gmail.com baseurl: "" # Site hosted in top directory of specified host # baseurl: "/Mandy_Klyne_memorial" # the subpath of your site, e.g. /blog #url: "http://yourdomain.com" # the base hostname & protocol for your site # Sidebar settings descr...
Set site top URL to empty path
Set site top URL to empty path
YAML
mit
gklyne/Mandy_Klyne_memorial,gklyne/Mandy_Klyne_memorial
25edba35edbe3e76d3227ded14d4482d48567270
recipes/byobu/meta.yaml
recipes/byobu/meta.yaml
package: name: byobu version: "5.92" source: fn: byobu_5.92.orig.tar.gz url: https://launchpad.net/byobu/trunk/5.92/+download/byobu_5.92.orig.tar.gz md5: 8fe94f12c1d2960523dba3b061bce051 build: number: 1 requirements: build: - ncurses - libevent - tmux run: - ncurses - libevent ...
package: name: byobu version: "5.98" source: fn: byobu_5.98.orig.tar.gz url: https://launchpad.net/byobu/trunk/5.98/+download/byobu_5.98.orig.tar.gz md5: 2e09c9d2f9e3b6e2953bd581b027239c build: number: 1 requirements: build: - newt - ncurses - libevent - tmux run: - newt - n...
Update byobu and add newt dependency
Update byobu and add newt dependency
YAML
mit
bow/bioconda-recipes,omicsnut/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,phac-nml/bioconda-recipes,matthdsm/bioconda-recipes,joachimwolff/bioconda-recipes,Luobiny/bioconda-recipes,JenCabral/bioconda-recipes,CGATOxford/bioconda-recipes,colinbrislawn/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,Ji...
590227154b64327045b31b8eeebe929d25d5199e
recipes/pyfab/meta.yaml
recipes/pyfab/meta.yaml
{% set name = "pyfab" %} {% set version = "0.3.5" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyfab-{{ version }}.tar.gz sha256: fff612517cc3f24c23c0314bc115d7ba092c26b9a4823984b01d081926070960 build: number: 0 noarch: py...
{% set name = "pyfab" %} {% set version = "0.3.5" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyfab-{{ version }}.tar.gz sha256: fff612517cc3f24c23c0314bc115d7ba092c26b9a4823984b01d081926070960 build: number: 0 noarch: py...
Add python version to run dependencies and format correctly
Add python version to run dependencies and format correctly
YAML
bsd-3-clause
ocefpaf/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,igortg/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,mariusvniekerk/staged-recipes,ReimarBauer/staged-recipe...
67eec6d75d4fa6ce45e3354de6bb302cd07970c9
_config.yml
_config.yml
title: Dev.Opera markdown: kramdown kramdown: input: GFM auto_ids: true transliterated_header_ids: true use_coderay: true coderay: coderay_line_numbers: nil coderay_css: class permalink: /:categories/:title/ include: - '.htaccess' exclude: - 'node_modules' - 'Gruntfile.js' - 'package.json' - 'README.m...
title: Dev.Opera markdown: redcarpet permalink: /:categories/:title/ include: - '.htaccess' exclude: - 'node_modules' - 'Gruntfile.js' - 'package.json' - 'README.md' - '*.scss' # limit_posts: 150
Use Redcarpet for Markdown parsing
Use Redcarpet for Markdown parsing This is the easiest way to enable GitHub Flavored Markdown, and it also produces the cleanest output. Ref. #38.
YAML
apache-2.0
shwetank/devopera,initaldk/devopera,kenarai/devopera,payeldillip/devopera,michaelstewart/devopera,erikmaarten/devopera,erikmaarten/devopera,andreasbovens/devopera,operasoftware/devopera,initaldk/devopera,cvan/devopera,payeldillip/devopera,payeldillip/devopera,cvan/devopera,Mtmotahar/devopera,Mtmotahar/devopera,cvan/dev...
a0b7d6aa590ee6bef43f0fbe598873b472980074
_config.yml
_config.yml
name: Your New Jekyll Site markdown: redcarpet pygments: true
name: Your New Jekyll Site timezone: America/Chicago pygments: true permalink: /:title/ markdown: redcarpet
Add permalink style and timezone
Add permalink style and timezone
YAML
mit
briankoser/kotangent-jekyll
361aa9d4cfcd1f697883011629fb7ea937003f6d
meta/main.yml
meta/main.yml
# meta file for screen --- galaxy_info: author: Mischa ter Smitten company: Oefenweb.nl B.V. description: Set up (multiple) wordpress installations in Debian-like systems (using wp-cli) license: MIT min_ansible_version: 1.4 platforms: - name: Ubuntu versions: - lucid - precise ...
# meta file for screen --- galaxy_info: author: Mischa ter Smitten company: Oefenweb.nl B.V. description: Set up (multiple) wordpress installations in Debian-like systems (using wp-cli) license: MIT min_ansible_version: 1.4 platforms: - name: Ubuntu versions: - lucid - precise ...
Fix for Ansible galaxy (import) warning
Fix for Ansible galaxy (import) warning Found galaxy_info.categories. Update meta/main.yml to use galaxy_info.galaxy_tags
YAML
mit
Oefenweb/ansible-wordpress
a5b2dea0bf224c931b71d3df48527562b2430ab4
meta/main.yml
meta/main.yml
galaxy_info: author: bartekrutkowski description: Xen Orchestra Appliance for FreeBSD/Linux company: "PixeWare LTD" license: license (BSD) min_ansible_version: 1.9 platforms: - name: FreeBSD versions: - 10.0 - 10.1 - 10.2 - 9.3 galaxy_tags: - freebsd - xenserver - xen - gui ...
galaxy_info: author: bartekrutkowski description: Xen Orchestra Appliance for FreeBSD/Linux company: "PixeWare LTD" license: license (BSD) min_ansible_version: 1.9 platforms: - name: FreeBSD versions: - 10.0 - 10.1 - 10.2 - 9.3 - name: EL versions: - 7 galaxy_tags: - free...
Add RedHat/Centos 7 to supported platforms
Add RedHat/Centos 7 to supported platforms
YAML
bsd-2-clause
bartekrutkowski/ansible-xen-orchestra
811bf1bf8a8b0930cc68583a80c266762118492d
Documentation/installation/rancher-desktop-override.yaml
Documentation/installation/rancher-desktop-override.yaml
env: # needed for cilium K3S_EXEC: '--flannel-backend=none --disable-network-policy' provision: # needs root to mount - mode: system script: | #!/bin/sh set -e # needed for cilium mount bpffs -t bpf /sys/fs/bpf mount --make-shared /sys/fs/bpf mkdir -p /run/cilium/cgroup...
env: # needed for cilium INSTALL_K3S_EXEC: '--flannel-backend=none --disable-network-policy' provision: # needs root to mount - mode: system script: | #!/bin/sh set -e # needed for cilium mount bpffs -t bpf /sys/fs/bpf mount --make-shared /sys/fs/bpf mkdir -p /run/ciliu...
Rename env var required to disable Flannel
Rename env var required to disable Flannel See https://docs.k3s.io/reference/env-variables for documentation on the INSTALL_K3S_EXEC environment variable. Signed-off-by: Eric Hausig <585b65a6bb3bf0ee8ace618225bfa8fbee0b55c5@gmail.com>
YAML
apache-2.0
cilium/cilium,cilium/cilium,cilium/cilium,cilium/cilium,cilium/cilium
e8674fa6c39dc7cfe7c8ba796ecd3ba610d8d1e1
recipes/iolabs/meta.yaml
recipes/iolabs/meta.yaml
{% set name = "iolabs" %} {% set version = "3.2" %} {% set sha256 = "74c8dbc4cd4bfd5e01f8a2655455330cac81dd3de99a766630ecd0896b8be84b" %} package: name: iolabs version: {{version}} source: fn: ioLabs-3.2.tar.gz url: https://github.com/ioLab/python-ioLabs/archive/v{{ version }}.tar.gz sha256: {{ sha256 }} b...
{% set name = "iolabs" %} {% set version = "3.2" %} {% set sha256 = "74c8dbc4cd4bfd5e01f8a2655455330cac81dd3de99a766630ecd0896b8be84b" %} package: name: iolabs version: {{version}} source: fn: ioLabs-3.2.tar.gz url: https://github.com/ioLab/python-ioLabs/archive/v{{ version }}.tar.gz sha256: {{ sha256 }} b...
Add selector to avoid linux
Add selector to avoid linux
YAML
bsd-3-clause
ocefpaf/staged-recipes,kwilcox/staged-recipes,barkls/staged-recipes,asmeurer/staged-recipes,jjhelmus/staged-recipes,blowekamp/staged-recipes,chrisburr/staged-recipes,glemaitre/staged-recipes,mcs07/staged-recipes,Juanlu001/staged-recipes,johanneskoester/staged-recipes,mcs07/staged-recipes,jerowe/staged-recipes,jjhelmus/...
6b0c397403810e70223412db66272b98a2f51775
packages/hs/hsyslog-tcp.yaml
packages/hs/hsyslog-tcp.yaml
homepage: https://github.com/osa1/hsyslog-tcp#readme changelog-type: '' hash: d86314d6956fa6c9ca4321930930311c472aabc654600991b69d25adc7bea5f7 test-bench-deps: {} maintainer: omeragacan@gmail.com synopsis: syslog over TCP changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any hsyslog: -any ...
homepage: https://github.com/osa1/hsyslog-tcp#readme changelog-type: '' hash: 89cebd7de484df942645698022646d701facf9547d78ee284bfb87c9975e2d94 test-bench-deps: {} maintainer: omeragacan@gmail.com synopsis: syslog over TCP changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any hsyslog: -any ...
Update from Hackage at 2017-12-05T08:22:54Z
Update from Hackage at 2017-12-05T08:22:54Z
YAML
mit
commercialhaskell/all-cabal-metadata
838dde7db9fe9abb9f84156e0dcdde718f43ab4e
packages/ne/network-run.yaml
packages/ne/network-run.yaml
homepage: '' changelog-type: markdown hash: 34fcfda2c0e1784913bd51f4ce215f0b7ac33e37b02386132d9260982854fc22 test-bench-deps: {} maintainer: kazu@iij.ad.jp synopsis: Simple network runner library changelog: | # Revision history for network-run ## 0.0.0 * First version. basic-deps: bytestring: -any base: ! '...
homepage: '' changelog-type: markdown hash: e625dfb65dfefaae30309cc8e9761213cb246b38b2d8d17d20b44a5acdcc05df test-bench-deps: {} maintainer: kazu@iij.ad.jp synopsis: Simple network runner library changelog: | # Revision history for network-run ## 0.0.0 * First version. basic-deps: bytestring: -any base: '>=...
Update from Hackage at 2020-05-14T01:08:48Z
Update from Hackage at 2020-05-14T01:08:48Z
YAML
mit
commercialhaskell/all-cabal-metadata
6fcf037ca8a0d246b979470eca8f1ccf2680cab4
test-cases/longevity/longevity-harry-2h.yaml
test-cases/longevity/longevity-harry-2h.yaml
test_duration: 240 stress_cmd: ["cassandra-harry -run-time 2 -run-time-unit HOURS"] n_db_nodes: 6 n_loaders: 1 n_monitor_nodes: 1 instance_type_db: 'i3.large' root_disk_size_loader: 80 # enlarge loader disk, cause of cassandra-harry operation.log that can't be disabled # nemesis_class_name: 'SisyphusMonkey' nemesis...
test_duration: 240 stress_cmd: ["cassandra-harry -run-time 2 -run-time-unit HOURS"] n_db_nodes: 6 n_loaders: 1 n_monitor_nodes: 1 instance_type_db: 'i3.large' root_disk_size_loader: 80 # enlarge loader disk, cause of cassandra-harry operation.log that can't be disabled nemesis_class_name: 'SisyphusMonkey' nemesis_s...
Revert "fix(HACK): remove nemeis from harry case"
Revert "fix(HACK): remove nemeis from harry case" This reverts commit 739da0c255ab489444b15a9c4dc2d542c3856156.
YAML
agpl-3.0
scylladb/scylla-cluster-tests,scylladb/scylla-cluster-tests,scylladb/scylla-cluster-tests,scylladb/scylla-cluster-tests,scylladb/scylla-cluster-tests
ecdb7a62a4593a4f5d4841522d274b77a9105cb7
packages/sa/safe-access.yaml
packages/sa/safe-access.yaml
homepage: http://darcs.redspline.com/safe-access changelog-type: '' hash: 6869708d3102ededf80055fee28ec5e03555aa89f3986f184da722a7ceeb1566 test-bench-deps: {} maintainer: tho.feron@gmail.com synopsis: A simple environment to control access to data changelog: '' basic-deps: base: ! '>=4.6 && <4.10' mtl: ! '>=2.2.1' ...
homepage: http://darcs.redspline.com/safe-access changelog-type: '' hash: 23cfe12c64aa2511b6030e63bbb165bcf3cdb5271454014438caf1aa2cd74c28 test-bench-deps: {} maintainer: tho.feron@gmail.com synopsis: A simple environment to control access to data changelog: '' basic-deps: base: ! '>=4.8 && <4.10' mtl: ! '>=2.2.1' ...
Update from Hackage at 2017-03-08T11:10:52Z
Update from Hackage at 2017-03-08T11:10:52Z
YAML
mit
commercialhaskell/all-cabal-metadata
ab106b420decc1f74507995d251599ebdb25af27
packages/heroku-pg/circle.yml
packages/heroku-pg/circle.yml
--- machine: node: version: v6.2.2 test: post: - nyc report --reporter=text-lcov > coverage.lcov && bash <(curl -s https://codecov.io/bash)
--- machine: node: version: v7.10.0 test: post: - nyc report --reporter=text-lcov > coverage.lcov && bash <(curl -s https://codecov.io/bash)
Update node version for tests to reflect CLI version
Update node version for tests to reflect CLI version
YAML
isc
heroku/heroku-cli,heroku/cli,heroku/cli,heroku/cli,heroku/heroku-cli,heroku/cli,heroku/heroku-cli,heroku/heroku-cli
6ae9b3c26c97b29885c0f85c093b31f754e940bd
packages/tu/tup-functor.yaml
packages/tu/tup-functor.yaml
homepage: http://code.haskell.org/~bkomuves/ changelog-type: '' hash: 2afaf86ee35e188f7179ade4d796afeac1b11ba0af2df988689d74a7d57f4de2 test-bench-deps: {} maintainer: bkomuves (plus) hackage (at) gmail (dot) hu synopsis: Homogeneous tuples changelog: '' basic-deps: parsec2: -any base: ! '>=3 && <5' haskell-src-ex...
homepage: http://code.haskell.org/~bkomuves/ changelog-type: '' hash: 2afaf86ee35e188f7179ade4d796afeac1b11ba0af2df988689d74a7d57f4de2 test-bench-deps: {} maintainer: bkomuves (plus) hackage (at) gmail (dot) hu synopsis: Homogeneous tuples changelog: '' basic-deps: parsec2: -any base: ! '>=3 && <5' haskell-src-ex...
Update from Hackage at 2019-11-24T21:26:52Z
Update from Hackage at 2019-11-24T21:26:52Z
YAML
mit
commercialhaskell/all-cabal-metadata
a304af64dd3907387c777f6ea8232fa7d093c7b6
packages/lo/logict-state.yaml
packages/lo/logict-state.yaml
homepage: https://github.com/atzedijkstra/logict-state changelog-type: '' hash: 4b5ae70cd6915d348fc41af3b6dddc58c7c52744e76e49cdfdc1efe61866558e test-bench-deps: {} maintainer: atzedijkstra@gmail.com synopsis: Library for logic programming based on haskell package logict changelog: '' basic-deps: logict: ! '>=0.6.0.2...
homepage: https://github.com/atzedijkstra/logict-state changelog-type: '' hash: 83d991ad011e7cbd646172c734f9e7bef8f2f31cad5eacda730a8837d10554a1 test-bench-deps: {} maintainer: atzedijkstra@gmail.com synopsis: Library for logic programming based on haskell package logict changelog: '' basic-deps: logict: '>=0.8.0.0' ...
Update from Hackage at 2022-09-16T20:28:00Z
Update from Hackage at 2022-09-16T20:28:00Z
YAML
mit
commercialhaskell/all-cabal-metadata
2484a25ea4381374de5b365425e58bd773816c84
packs/opsgenie/config.schema.yaml
packs/opsgenie/config.schema.yaml
--- api_key: description: "The API key for OpsGenie." type: "string" secret: true required: true api_host: description: "The OpsGenie API host to use." type: "string" default: "https://api.opsgenie.com/"
--- api_key: description: "The API key for OpsGenie." type: "string" secret: true required: true api_host: description: "The OpsGenie API host to use." type: "string" default: "https://api.opsgenie.com/" required: true
Set required on api_host for ops_genie.
Set required on api_host for ops_genie.
YAML
apache-2.0
StackStorm/st2contrib,tonybaloney/st2contrib,StackStorm/st2contrib,tonybaloney/st2contrib,tonybaloney/st2contrib,StackStorm/st2contrib
62f92f661a2eb3a4b2074b949c3daf453d7d80c7
metadata/app.fedilab.tubelab.yml
metadata/app.fedilab.tubelab.yml
Categories: - Internet License: GPL-3.0-only AuthorName: Thomas AuthorWebSite: https://fedilab.app/ SourceCode: https://framagit.org/tom79/fedilab-tube IssueTracker: https://framagit.org/tom79/fedilab-tube/issues Translation: https://crowdin.com/project/tubelab AutoName: TubeLab RepoType: git Repo: https://framagit...
Categories: - Internet License: GPL-3.0-only AuthorName: Thomas AuthorWebSite: https://fedilab.app/ SourceCode: https://framagit.org/tom79/fedilab-tube IssueTracker: https://framagit.org/tom79/fedilab-tube/issues Translation: https://crowdin.com/project/tubelab AutoName: TubeLab RepoType: git Repo: https://framagit...
Update TubeLab to 1.3.0 (14)
Update TubeLab to 1.3.0 (14)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
bf2f1bc898b644e4d1893f559b8c3dd0b53f3e1d
docker-compose.yml
docker-compose.yml
version: '2' services: api: build: context: . dockerfile: ./Dockerfile.dev restart: always env_file: .env links: - postgres - redis ports: - $PORT:$PORT - '127.0.0.1:9229:9229' # V8 inspector volumes: - yarn:/root/.cache/yarn - ./:/usr/src/app ...
version: '2' services: api: build: context: . dockerfile: ./Dockerfile.dev env_file: .env links: - postgres - redis ports: - $PORT:$PORT - '127.0.0.1:9229:9229' # V8 inspector volumes: - yarn:/root/.cache/yarn - ./:/usr/src/app working_dir: /us...
Remove restart always from containers
Remove restart always from containers
YAML
mit
sShayron/vaniApi,sShayron/vaniApi
1719f33bf65dabbecb695fcffcfeb672e4c442c6
people/2016/spring/benkantor.yaml
people/2016/spring/benkantor.yaml
name: Ben Kantor avatar: bdk3079@rit.edu blog: http://benkantor.github.io/hfoss-blog feed: http://benkantor.github.io/hfoss-blog/feed email: bdk3079@rit.edu major: Software Engineering irc: benkantor rit_dce: bdk3079 forges: - https://github.com/benkantor - https://bitbucket.org/benkantor bio: Automate everything. Uk...
name: Ben Kantor avatar: bdk3079@rit.edu blog: http://benkantor.github.io/hfoss-blog feed: http://benkantor.github.io/hfoss-blog/feed email: bdk3079@rit.edu major: Software Engineering irc: benkantor rit_dce: bdk3079 forges: - https://github.com/benkantor - https://bitbucket.org/benkantor bio: Automate everything. Uk...
Add link to Ben Kantor's first flight hw
Add link to Ben Kantor's first flight hw
YAML
apache-2.0
deejoe/hfoss,deejoe/hfoss,theheckle/hfoss,theheckle/hfoss
69852be16c7ed79e308cf9a57b106b2fbe8f3b17
packages/hg/hgeos.yaml
packages/hg/hgeos.yaml
homepage: https://github.com/rcook/hgeos#readme changelog-type: '' hash: 93004326e239c264d2fc9b2ed7efef9d8329de1342688ae8680a0e5270429744 test-bench-deps: MissingH: -any base: ! '>=4.7 && <5' hgeos: -any maintainer: Richard Cook <rcook@rcook.org> synopsis: Simple Haskell bindings to GEOS C API changelog: '' basic...
homepage: https://github.com/rcook/hgeos#readme changelog-type: '' hash: 77e899776670396075c165720d1c7217a0cb3278c8a75a9affe3858ba9bad42b test-bench-deps: MissingH: -any base: ! '>=4.7 && <5' hgeos: -any maintainer: Richard Cook <rcook@rcook.org> synopsis: Simple Haskell bindings to GEOS C API changelog: '' basic...
Update from Hackage at 2016-07-23T23:55:31+0000
Update from Hackage at 2016-07-23T23:55:31+0000
YAML
mit
commercialhaskell/all-cabal-metadata