commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
2fd344fddf733adc802ab2652091d7a7306550e1
appveyor.yml
appveyor.yml
environment: matrix: - nodejs_version: "10" - nodejs_version: "9" - nodejs_version: "8" - nodejs_version: "6" clone_depth: 5 install: - ps: Install-Product node $env:nodejs_version - yarn install test_script: - yarn test cache: - node_modules - "%LOCALAPPDATA%/Yarn" build: off deploy: off
environment: matrix: - nodejs_version: "10" - nodejs_version: "8" - nodejs_version: "6" clone_depth: 5 install: - ps: Install-Product node $env:nodejs_version - yarn install test_script: - yarn test cache: - node_modules - "%LOCALAPPDATA%/Yarn" build: off deploy: off
Remove Node.js 9 from AppVeyor
Remove Node.js 9 from AppVeyor
YAML
mit
ai/size-limit,ai/size-limit
4d5b2db142e893cf3e0a054a5a87b5c4e2645091
.travis.yml
.travis.yml
language: scala # These directories are cached to S3 at the end of the build cache: directories: - $HOME/.cache/coursier - $HOME/.ivy2/cache - $HOME/.sbt before_cache: - rm -fv $HOME/.ivy2/.sbt.ivy.lock # Cleanup the cached directories to avoid unnecessary cache updates - find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete - find $HOME/.sbt -name "*.lock" -print -delete scala: - 2.12.10 - 2.13.1 jdk: - openjdk11 stages: - validations - test jobs: include: - stage: validations script: scripts/validate-code check name: "Code validations for source formatting" - stage: test script: sbt clean coverage test name: "Run coverage tests" after_success: - sbt coverageReport codacyCoverage coveralls
language: scala # These directories are cached to S3 at the end of the build cache: directories: - $HOME/.cache/coursier - $HOME/.ivy2/cache - $HOME/.sbt before_cache: - rm -fv $HOME/.ivy2/.sbt.ivy.lock # Cleanup the cached directories to avoid unnecessary cache updates - find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete - find $HOME/.sbt -name "*.lock" -print -delete scala: - 2.12.10 - 2.13.1 jdk: - openjdk11 stages: - validations - test jobs: include: - stage: validations script: scripts/validate-code check name: "Code validations for source formatting" - stage: test script: sbt clean coverage test name: "Run coverage tests" after_success: - sbt coverageReport codacyCoverage coveralls
Move `after_success` script to coverage job
Move `after_success` script to coverage job There is no reason to run the coverage reports after all jobs, it just does not work when there is no instrumentation data.
YAML
mit
leanovate/play-mockws
37be2f918a72958eb4481eafbbe6eb144b272a79
.travis.yml
.travis.yml
# Configuration for Travis (https://travis-ci.org) language: objective-c xcode_workspace: OneTimePassword.xcworkspace xcode_scheme: OneTimePassword osx_image: - xcode7 - xcode7.1 xcode_sdk: - iphonesimulator9.0 # Check out nested dependencies before_install: git submodule update --init --recursive # A custom test script is required because xctool cannot access the iOS keychain # https://github.com/facebook/xctool/issues/269 script: set -o pipefail && xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK build test | xcpretty -c
# Configuration for Travis (https://travis-ci.org) language: objective-c xcode_workspace: OneTimePassword.xcworkspace xcode_scheme: OneTimePassword osx_image: xcode7.1 xcode_sdk: iphonesimulator9.1 env: matrix: - DESTINATION="OS=8.1,name=iPhone 4S" - DESTINATION="OS=8.2,name=iPhone 5" - DESTINATION="OS=8.3,name=iPhone 5S" - DESTINATION="OS=8.4,name=iPhone 6" - DESTINATION="OS=9.0,name=iPhone 6 Plus" - DESTINATION="OS=9.1,name=iPhone 6S" # Check out nested dependencies before_install: git submodule update --init --recursive # A custom test script is required because xctool cannot access the iOS keychain # https://github.com/facebook/xctool/issues/269 script: set -o pipefail && xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK -destination "$DESTINATION" build test | xcpretty -c
Test on multiple devices and OS versions
[Travis] Test on multiple devices and OS versions
YAML
mit
mattrubin/onetimepassword,mattrubin/onetimepassword
145e82e314b322884b494803ad4432e094804f39
.travis.yml
.travis.yml
language: python python: - "2.7" sudo: false services: - rabbitmq install: # Build/test dependencies - pip install -r requirements-dev.txt --use-mirrors # Install Julython - pip install -e . script: - fab test:skip_js=True notifications: irc: channels: "irc.freenode.org#julython" on_success: change on_failure: change email: false
language: python python: - "2.7" sudo: false services: - rabbitmq install: # Build/test dependencies - pip install -r requirements-dev.txt # Install Julython - pip install -e . script: - fab test:skip_js=True notifications: irc: channels: "irc.freenode.org#julython" on_success: change on_failure: change email: false
Use mirrors is now deprecated
Use mirrors is now deprecated
YAML
mit
julython/julython.org,julython/julython.org,julython/julython.org,julython/julython.org
f101016c5d3fadaeacba0c9677a906782280d734
.travis.yml
.travis.yml
language: ruby script: bundle exec rake rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.1 - ruby-head - jruby-18mode - jruby-19mode - jruby-head - rbx-2 - ree
language: ruby script: bundle exec rake rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.1 - ruby-head - jruby-18mode - jruby-19mode - jruby-head - rbx-2 - ree matrix: allow_failures: - rvm: jruby-head
Allow jruby-head failures just because
Allow jruby-head failures just because
YAML
mit
harvesthq/time-warp
03f6390bf0942cf7c6aee901abe8796791b4ca80
.travis.yml
.travis.yml
language: python python: - "3.3" - "2.7" - "2.6" install: pip install flake8 script: - flake8 eve - python setup.py test services: - mongodb - redis-server before_script: - "ulimit -n 1024" - sleep 5 - mongo eve_test --eval 'db.addUser("test_user", "test_pw");' branches: only: - master - develop
language: python python: - "3.3" - "2.7" - "2.6" install: pip install flake8 script: - flake8 eve - python setup.py test services: - mongodb - redis-server before_script: - "ulimit -n 1024" - mongo eve_test --eval 'db.addUser("test_user", "test_pw");' branches: only: - master - develop
Remove vain attempts at fixing CI mongodb issues.
Remove vain attempts at fixing CI mongodb issues. See https://github.com/travis-ci/travis-ci/issues/1967
YAML
bsd-3-clause
kidaa/eve,hustlzp/eve,kalbasit/eve,yanyanqin/eve,eduardomb/eve,jzorrof/eve,opticode/eve,superdesk/eve,elpoisterio/eve,bcrochet/eve,mcreenan/eve,julianhille/eve,mugurrus/eve,amagdas/eve,stratosgear/eve,EasonYi/eve,matthieuprat/eve,pjs7678/eve,sebest/eve
67d245da717c4ff775a0d92fae87fb9074a0a088
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - "0.8" - "0.6"
language: node_js node_js: - "0.11" - "0.10"
Remove old node versions, deps need >0.10
Remove old node versions, deps need >0.10
YAML
mit
mgarbacz/nordrassil,mgarbacz/nordrassil
8be3f0e6ea963cde56ade8d0daa42868c3c85a8b
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 dist: trusty branches: only: - master before_install: bash etc/ci-setup.sh install: true script: eval $TEST_CMD after_script: if [ -z "$HEROKU_API_KEY" ]; then heroku keys:remove $USER@`hostname`; fi env: global: - IS_RUNNING_ON_TRAVIS=true - SHUNIT_HOME="/tmp/shunit2-2.1.6" matrix: - TEST_CMD='bash etc/hatchet.sh' - TEST_CMD="/tmp/testrunner/bin/run -c ."
language: java jdk: - oraclejdk8 dist: trusty branches: only: - master before_install: bash etc/ci-setup.sh install: true script: eval $TEST_CMD after_script: if [ -n "$HEROKU_API_KEY" ]; then heroku keys:remove $USER@`hostname`; fi env: global: - IS_RUNNING_ON_TRAVIS=true - SHUNIT_HOME="/tmp/shunit2-2.1.6" matrix: - TEST_CMD='bash etc/hatchet.sh' - TEST_CMD="/tmp/testrunner/bin/run -c ."
Fix key setup and removal on circle ci
Fix key setup and removal on circle ci
YAML
mit
Scalingo/java-buildpack,heroku/heroku-buildpack-java,heroku/heroku-buildpack-java,Scalingo/java-buildpack
cdf66d5bdd6f6cbae3662b84e9a44cc941204bbc
.travis.yml
.travis.yml
language: groovy jdk: - oraclejdk8 script: - chmod +x grailsw - ./grailsw clean - ./grailsw test-app - ./grailsw package
language: groovy jdk: - openjdk8 script: - chmod +x grailsw - ./grailsw clean - ./grailsw test-app - ./grailsw package
Replace oraclejdk8 with openjdk8 for Travis CI.
Replace oraclejdk8 with openjdk8 for Travis CI.
YAML
apache-2.0
damienbeaufils/epn-pointeuse,damienbeaufils/epn-pointeuse
43941e4d2100438a09680f5a40b0e3498598585d
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: tests/install.sh script: tests/test.sh # vim: et
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" install: tests/install.sh script: tests/test.sh # vim: et
Enable testing on Python 3.4
Enable testing on Python 3.4
YAML
mit
areteix/powerline,IvanAli/powerline,magus424/powerline,xxxhycl2010/powerline,magus424/powerline,EricSB/powerline,Liangjianghao/powerline,cyrixhero/powerline,EricSB/powerline,bartvm/powerline,QuLogic/powerline,QuLogic/powerline,junix/powerline,lukw00/powerline,DoctorJellyface/powerline,QuLogic/powerline,prvnkumar/powerline,s0undt3ch/powerline,xxxhycl2010/powerline,dragon788/powerline,s0undt3ch/powerline,Luffin/powerline,kenrachynski/powerline,kenrachynski/powerline,blindFS/powerline,darac/powerline,junix/powerline,lukw00/powerline,bezhermoso/powerline,blindFS/powerline,S0lll0s/powerline,firebitsbr/powerline,seanfisk/powerline,xfumihiro/powerline,DoctorJellyface/powerline,xxxhycl2010/powerline,dragon788/powerline,EricSB/powerline,s0undt3ch/powerline,xfumihiro/powerline,areteix/powerline,firebitsbr/powerline,seanfisk/powerline,blindFS/powerline,russellb/powerline,wfscheper/powerline,junix/powerline,lukw00/powerline,areteix/powerline,DoctorJellyface/powerline,magus424/powerline,firebitsbr/powerline,russellb/powerline,seanfisk/powerline,prvnkumar/powerline,Liangjianghao/powerline,S0lll0s/powerline,wfscheper/powerline,IvanAli/powerline,cyrixhero/powerline,bezhermoso/powerline,wfscheper/powerline,kenrachynski/powerline,prvnkumar/powerline,Luffin/powerline,IvanAli/powerline,dragon788/powerline,bezhermoso/powerline,russellb/powerline,darac/powerline,darac/powerline,cyrixhero/powerline,xfumihiro/powerline,Liangjianghao/powerline,S0lll0s/powerline,bartvm/powerline,bartvm/powerline,Luffin/powerline
20e4981224b0f3ce7d6c058606510e22031fe0a2
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.5" # command to install dependencies install: - pip install -r requirements.txt - cp handoverservice/handoverservice/settings.template cp handoverservice/handoverservice/settings.py # command to run tests script: cd handoverservice && python manage.py test
language: python python: - "2.7" - "3.5" # command to install dependencies install: - pip install -r requirements.txt - cp handoverservice/handoverservice/settings.template handoverservice/handoverservice/settings.py # command to run tests script: cd handoverservice && python manage.py test
Fix typo in cp line
Fix typo in cp line
YAML
mit
Duke-GCB/DukeDSHandoverService,Duke-GCB/DukeDSHandoverService,Duke-GCB/DukeDSHandoverService
6330842b8ed78afe6107d349e3ba1f2102df6796
.travis.yml
.travis.yml
language: php dist: trusty php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm - before_script: - curl -sSfL -o ~/.phpenv/versions/hhvm/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar - hhvm-nightly - before_script: - curl -sSfL -o ~/.phpenv/versions/hhvm/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar matrix: include: - php: 5.3 dist: precise script: phpunit --verbose
language: php dist: trusty php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm - hhvm-nightly matrix: include: - php: 5.3 dist: precise before_script: - if [[ "$TRAVIS_PHP_VERSION" == "hhvm"* ]]; then # Use PHPUnit 5.7 for HHVM due to compatability issues between HHVM and PHP7 echo "Detected HHVM, installing PHPUnit 5.7..." curl -sSfL -o ~/.phpenv/versions/hhvm/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar fi script: phpunit --verbose
Fix before script to properly install PHPUnit 5.7 for HHVM
Fix before script to properly install PHPUnit 5.7 for HHVM
YAML
bsd-2-clause
dennisvdvliet/php-rest-api,messagebird/php-rest-api
5991bcaa94544968fcd88ca3f71307489b545277
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" - "7" os: - linux - osx sudo: false addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 osx_image: xcode8.2 before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8; fi matrix: allow_failures: - os: osx node_js: "4"
language: node_js node_js: - "4" - "6" - "7" os: - linux - osx sudo: false addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 osx_image: xcode8.2 before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8 CC=gcc-4.8; fi matrix: allow_failures: - os: osx node_js: "4"
Update Travis CI to use gcc v4.8
Update Travis CI to use gcc v4.8
YAML
apache-2.0
lovell/64,lovell/64,lovell/64,lovell/64
146fd70f7977b0c3ae58523cf6e4e1492545ff88
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: required env: - "DB=postgresql" before_install: - nvm install v6.7.0 - node -v - npm -v - npm install -g phantomjs-prebuilt - phantomjs -v - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" before_script: - phantomjs -v - "bundle exec rake --trace fulcrum:setup db:setup" rvm: - 2.2.5 - 2.3.1 script: - "bundle exec rake travis"
language: ruby # This is going to enable build on VMs instead of containers sudo: required cache: bundler: true directories: - $HOME/.nvm/versions/node/v6.7.0/ rvm: - 2.2.5 - 2.3.1 env: - "DB=postgresql" before_install: - nvm install v6.7.0 - node -v - npm -v - npm install -g phantomjs-prebuilt - phantomjs -v - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" before_script: - phantomjs -v - "bundle exec rake --trace fulcrum:setup db:setup" script: - "bundle exec rake travis"
Add cache to Travis CI
Add cache to Travis CI
YAML
agpl-3.0
privatt/privatt-agile-tracker,privatt/privatt-agile-tracker,privatt/privatt-agile-tracker
3e606e65d8e5b20cb37fd5be1db2f80990091115
.travis.yml
.travis.yml
language: node_js node_js: - "4.1" - "4.0" - "node" after_success: 'npm run coveralls'
language: node_js node_js: - "6.3" - "6.2" - "6.1" - "6.0" - "4.1" - "4.0" - "node" after_success: 'npm run coveralls'
Expand CI test cover to node 6.x
Expand CI test cover to node 6.x
YAML
isc
lekoder/consul-kv-object
bca959328c003de6b87b2084838cc0e24c059e72
.travis.yml
.travis.yml
language: cpp sudo: required compiler: - clang - gcc env: global: - secure: "SnIBG/xLIHX3CSvUbqqsX8xTVqIqQ7fFS6HWO6KZQVBsT6yugTwYHbyhNiU531JejYJ/I3ZrDhXfYH3qFZiYxnH1sifvwV+fnTtMXpPN7qPZwIymkjcmm6gJF51e0C7VOfUbvKFv0ngwj+ul21rgZSMuoEvxPK0WxtE3/ZSfn9c=" - "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev libeigen3-dev liblapack-dev libblas-dev gfortran python-dev python-sphinx" - DEBSIGN_KEYID=5AE5CD75 notifications: email: - [email protected] branches: only: - master - debian - topic/travis matrix: allow_failures: - compiler: clang script: ./.travis/run build after_success: ./.travis/run after_success after_failure: ./.travis/run after_failure before_install: ./.travis/run before_install
language: cpp sudo: required compiler: - clang - gcc env: global: - secure: "SnIBG/xLIHX3CSvUbqqsX8xTVqIqQ7fFS6HWO6KZQVBsT6yugTwYHbyhNiU531JejYJ/I3ZrDhXfYH3qFZiYxnH1sifvwV+fnTtMXpPN7qPZwIymkjcmm6gJF51e0C7VOfUbvKFv0ngwj+ul21rgZSMuoEvxPK0WxtE3/ZSfn9c=" - "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev libeigen3-dev liblapack-dev libblas-dev gfortran python-dev python-sphinx" - DEBSIGN_KEYID=5AE5CD75 notifications: email: - [email protected] branches: only: - master - debian - topic/travis matrix: allow_failures: - compiler: clang script: ./.travis/run build after_success: ./.travis/run after_success after_failure: ./.travis/run after_failure before_install: - "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev libeigen3-dev liblapack-dev libblas-dev gfortran python-dev python-sphinx" - ./.travis/run before_install
Put APT_DEPENDENCIES at the before_install step
[Travis] Put APT_DEPENDENCIES at the before_install step
YAML
bsd-2-clause
fvalenza/pinocchio,fvalenza/pinocchio,fvalenza/pinocchio,aelkhour/pinocchio,fvalenza/pinocchio,aelkhour/pinocchio,aelkhour/pinocchio,aelkhour/pinocchio
aa754f3717a7ccec519ca3f6c0fb46d7573d80e6
.travis.yml
.travis.yml
language: go go: - 1.3 - 1.4 - tip install: - go get golang.org/x/crypto/ssh/terminal script: go test -v ./...
language: go go: - 1.3 - 1.4 install: - go get golang.org/x/crypto/ssh/terminal script: go test -v ./...
Remove tip from Travis versions
Remove tip from Travis versions
YAML
mit
alfredxing/calc
0f096e0c21b29827d28e71b1f16fa14febbd62e2
.travis.yml
.travis.yml
language: ruby script: 'bundle exec rake test:coverage' sudo: false cache: bundler rvm: - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - 2.1.3 - 2.1.4 - 2.1.5 - 2.1.6 - 2.2.0 - 2.2.1 - 2.2.2 - rbx-2 matrix: include: - rvm: jruby env: JRUBY_OPTS="--2.0" - rvm: jruby-head env: JRUBY_OPTS="--2.1" allow_failures: - rvm: rbx-2 - rvm: jruby - rvm: jruby-head
language: ruby script: 'bundle exec rake test:coverage' sudo: false cache: bundler rvm: - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - 2.1.3 - 2.1.4 - 2.1.5 - 2.1.6 - 2.2.0 - 2.2.1 - 2.2.2 - rbx-2 matrix: include: - rvm: jruby-head allow_failures: - rvm: rbx-2 - rvm: jruby-head
Test only against JRuby 9k on Travis
Test only against JRuby 9k on Travis
YAML
mit
theocodes/view,AlfonsoUceda/view,wangsucheng0715/view,vyper/view,farrel/view
ead7878c12bcf8da6c61c05a75d3c9113a1b2c25
.travis.yml
.travis.yml
language: php php: - hhvm - 5.6 - 5.5 - 5.4 - 5.3 install: - travis_retry composer install --prefer-dist before_script: - echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini script: - phpunit --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover cache: directories: - $HOME/.composer
language: php php: - hhvm - 5.6 - 5.5 - 5.4 - 5.3 install: - travis_retry composer install --prefer-dist before_script: - if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi; script: - phpunit --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover cache: directories: - $HOME/.composer
Disable mongodb extension on Travis for HHVM
Disable mongodb extension on Travis for HHVM
YAML
mit
kgilden/pager
c8d1c0fac562d541effbb4ff1478914ed41d985e
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7 git: submodules: false before_install: - brew update; brew update # - brew outdated xctool || brew upgrade xctool - brew install carthage install: script/update script: script/test
language: objective-c osx_image: xcode7 git: submodules: false before_install: - brew update; brew update - brew install carthage install: script/update script: script/test
Remove commented out xctool upgrade.
Remove commented out xctool upgrade.
YAML
mit
imgflo/ImgFlo.swift,the-grid/ImgFlo.swift,imgflo/ImgFlo.swift,the-grid/ImgFlo.swift,the-grid/ImgFlo.swift,imgflo/ImgFlo.swift
223935d7bd92d6f2dea15f044302f608a2511fda
.travis.yml
.travis.yml
language: ruby rvm: - "1.9.2" - "1.9.3" - "2.0.0" - rbx-19mode
language: ruby rvm: - 1.9.3 - 2.1 - rbx
Update list of rubies to test against.
Update list of rubies to test against.
YAML
mit
toddthomas/signed_xml,openlogic/signed_xml
fb92b4cdc36d8aaad35343cf1eaba9320b2f9ea7
.travis.yml
.travis.yml
language: node_js node_js: - "node" - "iojs" - "0.12" after_success: - npm run report-coverage
language: node_js node_js: - "node" - "iojs" - "4.1" - "4.0" - "0.12" after_success: - npm run report-coverage
Include node 4 when testing
Include node 4 when testing
YAML
mit
mauricedb/polly-js
6bac7dd1922ed13b79668504978d59f14854aa17
.travis.yml
.travis.yml
language: csharp matrix: include: - env: Ubuntu=14.04 os: linux dist: trusty sudo: required - env: OSX=10.11 os: osx osx_image: xcode7.3 rvm: system before_install: - ./.ci/before_install.sh install: - ./.ci/install.sh script: - ./.ci/script.sh notifications: slack: secure: HvfVJFkn9PhK5k6VPWK/URUPcseMEy1lGNLJWFr4j5b1ETLx8xrmZcQD7x9zMLO7aD3b5pc9XrNmvYe4phfGOm0PagKbvkYxt7L2ZY8Gp3WqgTHgjamcK/lObB0MGVwNGd/x7HzjWyNsgKqjvAY9vhk5l2kr1v3t2ql+MN1epAY= git: depth: 3
language: csharp matrix: fast_finish: true include: - env: Ubuntu=14.04 os: linux dist: trusty sudo: required allow_failures: - env: OSX=10.11 os: osx osx_image: xcode7.3 rvm: system before_install: - ./.ci/before_install.sh install: - ./.ci/install.sh script: - ./.ci/script.sh notifications: slack: secure: HvfVJFkn9PhK5k6VPWK/URUPcseMEy1lGNLJWFr4j5b1ETLx8xrmZcQD7x9zMLO7aD3b5pc9XrNmvYe4phfGOm0PagKbvkYxt7L2ZY8Gp3WqgTHgjamcK/lObB0MGVwNGd/x7HzjWyNsgKqjvAY9vhk5l2kr1v3t2ql+MN1epAY= git: depth: 3
Allow failures for Mac OS X build and notify as soon as Linux build finishes
Allow failures for Mac OS X build and notify as soon as Linux build finishes
YAML
apache-2.0
YaccConstructor/FStar,A-Manning/FStar,hoheinzollern/FStar,A-Manning/FStar,hoheinzollern/FStar,YaccConstructor/FStar,MallabaevAzamat/FStar,MallabaevAzamat/FStar,A-Manning/FStar,YaccConstructor/FStar,FStarLang/FStar,FStarLang/FStar,MallabaevAzamat/FStar,YaccConstructor/FStar,hoheinzollern/FStar,MallabaevAzamat/FStar,FStarLang/FStar,hoheinzollern/FStar
dfc0c7e3c62a5553782cee11319a081da35849ea
.travis.yml
.travis.yml
language: "ruby" rvm: - "2.0" - "2.4.0" sudo: false install: - bundle install --retry=3 - npm install script: - bundle exec rspec - npm test addons: code_climate: repo_token: cad4913c49d614008c332cda660cf909de208e335201aa8bfab373b9740e85be after_success: - bundle exec codeclimate-test-reporter
language: "ruby" rvm: - "2.0" - "2.5.0" sudo: false install: - bundle install --retry=3 - npm install script: - bundle exec rspec - npm test addons: code_climate: repo_token: cad4913c49d614008c332cda660cf909de208e335201aa8bfab373b9740e85be after_success: - bundle exec codeclimate-test-reporter
Use ruby 2.5.0 in test build
Use ruby 2.5.0 in test build
YAML
mit
jalyna/oakdex-pokedex,jalyna/oakdex-pokedex
efb5ad2a4083e675c25eacefa4f435d246bddc51
.travis.yml
.travis.yml
env: - CABALVER=1.16 GHCVER=7.4.2 - CABALVER=1.16 GHCVER=7.6.3 - CABALVER=1.20 GHCVER=7.8.4 - CABALVER=1.22 GHCVER=7.10.1 - CABALVER=head GHCVER=head matrix: allow_failures: - env: CABALVER=head GHCVER=head before_install: - sudo add-apt-repository -y ppa:hvr/ghc - sudo apt-get update -qq install: - sudo apt-get install -qq cabal-install-$CABALVER ghc-$GHCVER - export PATH="/opt/cabal/$CABALVER/bin:/opt/ghc/$GHCVER/bin:$PATH" - git clone http://github.com/markus1189/xmonad-710 xmonad-710 before_script: - cabal --version - cabal update - ghc --version - ghc-pkg list - ( cd xmonad-710 && cabal sandbox init && cabal install ) - cabal sandbox init - cabal sandbox add-source xmonad-710 script: - cabal install --enable-documentation - cabal sdist after_script: - ghc-pkg list
env: - CABALVER=1.20 GHCVER=7.4.2 - CABALVER=1.20 GHCVER=7.6.3 - CABALVER=1.20 GHCVER=7.8.4 - CABALVER=1.22 GHCVER=7.10.1 - CABALVER=head GHCVER=head matrix: allow_failures: - env: CABALVER=head GHCVER=head before_install: - sudo add-apt-repository -y ppa:hvr/ghc - sudo apt-get update -qq install: - sudo apt-get install -qq cabal-install-$CABALVER ghc-$GHCVER - export PATH="/opt/cabal/$CABALVER/bin:/opt/ghc/$GHCVER/bin:$PATH" - git clone http://github.com/markus1189/xmonad-710 xmonad-710 before_script: - cabal --version - cabal update - ghc --version - ghc-pkg list - ( cd xmonad-710 && cabal sandbox init && cabal install ) - cabal sandbox init - cabal sandbox add-source xmonad-710 script: - cabal install --enable-documentation - cabal sdist after_script: - ghc-pkg list
Use higher cabal versions for ghc 7.4.* and ghc 7.6.*
Use higher cabal versions for ghc 7.4.* and ghc 7.6.*
YAML
bsd-3-clause
markus1189/xmonad-contrib-710,markus1189/xmonad-contrib-710
60503e69d4ecf581f138e957df6b9d7b3f44da06
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm sudo: false cache: directories: - $HOME/.composer/cache env: - SYMFONY_VERSION=2.6.* matrix: include: - php: 5.6 env: SYMFONY_VERSION=2.3.* - php: 5.6 env: SYMFONY_VERSION=2.5.* - php: 5.6 env: SYMFONY_VERSION=2.7.* - php: 5.6 env: SYMFONY_VERSION=3.0.* allow_failures: - php: 5.6 env: SYMFONY_VERSION=2.7.* - php: 5.6 env: SYMFONY_VERSION=3.0.* before_install: - composer require symfony/routing:${SYMFONY_VERSION} --prefer-dist script: phpunit --coverage-text notifications: irc: "irc.freenode.org#symfony-cmf" email: "[email protected]"
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm sudo: false cache: directories: - $HOME/.composer/cache env: - SYMFONY_VERSION=2.6.* matrix: include: - php: 5.6 env: SYMFONY_VERSION=2.3.* - php: 5.6 env: SYMFONY_VERSION=2.5.* - php: 5.6 env: SYMFONY_VERSION=2.7.* - php: 5.6 env: SYMFONY_VERSION=3.0.* allow_failures: - php: 5.6 env: SYMFONY_VERSION=3.0.* before_install: - composer require symfony/routing:${SYMFONY_VERSION} --prefer-dist script: phpunit --coverage-text notifications: irc: "irc.freenode.org#symfony-cmf" email: "[email protected]"
Make Symfony 2.7 support a requirement
Make Symfony 2.7 support a requirement
YAML
mit
ZnanyLekarz/Routing,sustmi/Routing,pk16011990/Routing,aheinz-sg/Routing,timplunkett/Routing
9ad2f5feac8991fe3aad2194afcb59add31399a3
.travis.yml
.travis.yml
language: php sudo: false php: - 5.6 - 7.0 - hhvm env: global: - setup=basic - coverage=no before_script: - travis_retry composer self-update - composer config discard-changes true - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi - if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~0.7" --prefer-dist --no-interaction --dev; fi script: - if [[ $coverage = 'yes' ]]; then phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi - if [[ $coverage = 'no' ]]; then phpunit -c phpunit.xml; fi after_script: - if [[ $setup = 'coveralls' ]]; then php vendor/bin/coveralls -v; fi matrix: include: - php: 5.6 env: setup=lowest - php: 5.6 env: setup=stable - php: 5.6 env: setup=coveralls coverage=yes allow_failures: - env: setup=stable - env: setup=coveralls coverage=yes fast_finish: true
language: php sudo: false php: - 5.6 - 7.0 - 7.1 env: global: - setup=basic - coverage=no before_script: - travis_retry composer self-update - composer config discard-changes true - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi - if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~0.7" --prefer-dist --no-interaction --dev; fi script: - if [[ $coverage = 'yes' ]]; then phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi - if [[ $coverage = 'no' ]]; then phpunit -c phpunit.xml; fi after_script: - if [[ $setup = 'coveralls' ]]; then php vendor/bin/coveralls -v; fi matrix: include: - php: 5.6 env: setup=lowest - php: 5.6 env: setup=stable - php: 5.6 env: setup=coveralls coverage=yes allow_failures: - env: setup=stable - env: setup=coveralls coverage=yes fast_finish: true
Remove hhvm and add 7.1
Remove hhvm and add 7.1 Signed-off-by: crynobone <[email protected]>
YAML
mit
orchestral/publisher
07f88ea49c8f39fe8ef12d71643e2bbdae8da414
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.2.6 - 2.3.3 - 2.4.0 - jruby - rbx cache: bundler sudo: false matrix: allow_failures: - rvm: rbx - rvm: jruby
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.2 - 2.3 - 2.4 - jruby-9 - rbx-3 cache: bundler sudo: false matrix: allow_failures: - rvm: jruby-9 - rvm: rbx-3 dist: trusty
Use Travis "trusty" build and wildcard Ruby versions.
Use Travis "trusty" build and wildcard Ruby versions.
YAML
unlicense
ruby-rdf/rdf-n3,ruby-rdf/rdf-n3
1866f8822c6fb7f831b387460f153914b9f8f3d2
.travis.yml
.travis.yml
sudo: false language: java # whitelist branches: only: - master jdk: - oraclejdk8 # Run the commit message check and then check out some required dependencies. # TODO Currently check in messages are not checked for dawnsci. # - chmod +x ./org.eclipse.dawnsci.releng/build/commit-msg.sh # - bash ./org.eclipse.dawnsci.releng/build/commit-msg.sh before_install: - git clone --depth=50 --branch=master https://github.com/eclipse/richbeans.git ../org.eclipse.richbeans - git clone --depth=50 --branch=master https://github.com/DawnScience/dawn-third.git ../../dawn-third # Run the build from org.eclipse.dawnsci install: - cd .. - mv dawnsci org.eclipse.dawnsci - cd org.eclipse.dawnsci # Maven compile and test # No need to run this as default travis will find maven and run it # script: mvn clean compile surefire:test
sudo: false # use containers language: java cache: directories: - $HOME/.m2 # Maven dependencies # whitelist branches: only: - master jdk: - oraclejdk8 # Run the commit message check and then check out some required dependencies. # TODO Currently check in messages are not checked for dawnsci. # - chmod +x ./org.eclipse.dawnsci.releng/build/commit-msg.sh # - bash ./org.eclipse.dawnsci.releng/build/commit-msg.sh before_install: - git clone --depth=50 --branch=master https://github.com/eclipse/richbeans.git ../org.eclipse.richbeans - git clone --depth=50 --branch=master https://github.com/DawnScience/dawn-third.git ../../dawn-third # Run the build from org.eclipse.dawnsci install: - cd .. - mv dawnsci org.eclipse.dawnsci - cd org.eclipse.dawnsci # Maven compile and test # No need to run this as default travis will find maven and run it # script: mvn clean compile surefire:test
Add caching of Maven artifacts for Travis-CI
Add caching of Maven artifacts for Travis-CI
YAML
epl-1.0
DawnScience/dawnsci,colinpalmer/dawnsci,eclipse/dawnsci,xen-0/dawnsci,belkassaby/dawnsci,jamesmudd/dawnsci,colinpalmer/dawnsci,jamesmudd/dawnsci,jamesmudd/dawnsci
ad2772172b1e589df88d4c065ceb685b7fe442af
.travis.yml
.travis.yml
language: python env: - DJANGO_VERSION=https://github.com/django/django/archive/stable/1.4.x.zip - DJANGO_VERSION=1.5.12 - DJANGO_VERSION=1.6.11 - DJANGO_VERSION=https://github.com/django/django/archive/stable/1.7.x.zip - DJANGO_VERSION=https://github.com/django/django/archive/stable/1.8.x.zip python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" matrix: exclude: - python: "3.3" env: DJANGO_VERSION=https://github.com/django/django/archive/stable/1.4.x.zip - python: "3.4" env: DJANGO_VERSION=https://github.com/django/django/archive/stable/1.4.x.zip - python: "2.6" env: DJANGO_VERSION=https://github.com/django/django/archive/stable/1.7.x.zip - python: "2.6" env: DJANGO_VERSION=https://github.com/django/django/archive/stable/1.8.x.zip install: - pip install django==$DJANGO_VERSION nose --use-mirrors - pip install . --use-mirrors script: - nosetests tests/tests.py
language: python env: - DJANGO_VERSION=1.4 - DJANGO_VERSION=1.5 - DJANGO_VERSION=1.6 - DJANGO_VERSION=1.7 - DJANGO_VERSION=1.8 python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" matrix: exclude: - python: "3.3" env: DJANGO_VERSION=1.4 - python: "3.4" env: DJANGO_VERSION=1.4 - python: "2.6" env: DJANGO_VERSION=1.7 - python: "2.6" env: DJANGO_VERSION=1.8 install: - pip install django==$DJANGO_VERSION nose --use-mirrors - pip install . --use-mirrors script: - nosetests tests/tests.py
Test against PyPI Django releases
Test against PyPI Django releases
YAML
bsd-3-clause
AlexHill/djpj,AlexHill/djpj
b9735415ae70fccda0716619bc57eabbf92a9b90
.travis.yml
.travis.yml
language: clojure script: lein with-profile production compile :all
language: clojure script: lein with-profile production compile :all deploy: provider: releases api_key: secure: kvygJ/E+YVe0sSuDZXaNYtn9DXxx8RovAvCDnsdMjEkWYwTfg8yUaMdlqvzzYojym/FKRr05RzSjClDbWJ8JnU4su2iMjOMuHzrhH8UALZQIM2yaxporVugh32OYSFZDYEA2oUwg0TRD7GPfb7aJYbkmu2AWb5ZubCwXQKSWauOFVnXY6xmCZl7Z+0xAZJBHFch7LyGXk2tc3sYd4qwSla46ysVj0AB5A5ymQbmrlg+QIk5jOBDB6/3Q947Lzq9tupjuMH7dB1bmYJ3vAXBbUfVpTtlAFYjnsUF0R5kJca2G2VGputKgIvU68OuTu+UgRTrMJBKY6W1cuP9NuWR1/dvNE6H8rW0mL5xBUwYtTkNlh6YkAAUkkIh0gEB2X4MpA73dVdNv3gwQoSFysGT0tO4kHlNwgGPYY1iuHJPkjMImxP4p3L3MpQa7+KyxOafKwIX9BkZW+jY6vcv+TGt0Wi3Lw4RSMq8twFes+GgI+OiBasg1myOqpWsaPkgSucm+2KE66EnA09tq5fO5fw0PxlDej6HHFvALrqmLrjQemfvUvw606pwC9UjELs3Ia8v7kKE2Vovd/7kA+KCe3Vds8s+T6f+dPhQLQOOSNIuR9MuXQo14mbjc4mJXv6GJC80OoJhCqDXodAqrnFM8WhXxDmUfAMFU/hV2QbF4tII5SSk= file: resources/public/js/lens.js skip_cleanup: true on: tags: true
Add GitHub Releases Uploading to Travis
Add GitHub Releases Uploading to Travis
YAML
epl-1.0
alexanderkiel/lens-app,alexanderkiel/lens-app
ed9bda7e025ddd1ffcec57fd5195603aae18d7ed
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - 7.3 before_script: - composer install script: - mkdir -p build/logs - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - vendor/bin/php-coveralls -v
language: php php: - 7.1 - 7.2 - 7.3 - 7.4 before_script: - composer install script: - mkdir -p build/logs - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - vendor/bin/php-coveralls -v
Test PHP 7.4 on Travis
Test PHP 7.4 on Travis
YAML
mit
brick/event
4fbb996b3a4a7919293ff12284a7766e8563c45b
.travis.yml
.travis.yml
services: - docker before_script: - docker-compose build script: - docker-compose run wscef
services: - docker before_script: - docker-compose build script: - docker-compose run wscef after_success: - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS - export REPO=sebestblog/travis-demo - export TAG=`if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo $TRAVIS_BRANCH ; fi` - docker build -f Dockerfile -t $REPO:$COMMIT . - docker tag $REPO:$COMMIT $REPO:$TAG - docker tag $REPO:$COMMIT $REPO:travis-$TRAVIS_BUILD_NUMBER - docker push $REPO
Add new commands for build dockerhub images
Add new commands for build dockerhub images
YAML
mit
farribeiro/wscef-docker
66dde16c4b8457a5fd693176bb9727d99f5728a1
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.5" - "3.6" - "3.7" - "3.8" install: - pip install --editable ".[all]" - pip install pytest>=3.6 pytest-cov coverage pathlib script: - pytest notifications: email: recipients: - [email protected] on_success: change on_failure: change
language: python python: - "2.7" - "3.5" - "3.6" - "3.7" - "3.8" install: - pip install --editable ".[all]" - pip install pytest>=3.6 pytest-cov coverage pathlib - python -c "import lasio; print(lasio.__version__)" script: - pytest notifications: email: recipients: - [email protected] on_success: change on_failure: change
Add debug lasio version for Travis CI
Add debug lasio version for Travis CI
YAML
mit
kwinkunks/lasio,kinverarity1/lasio,kinverarity1/las-reader
82ce72861a131c934db668b593cc2897b0d7a809
.travis.yml
.travis.yml
language: java env: global: - MAVEN_OPTS="-Xmx2g"
language: java jdk: - oraclejdk8 env: global: - MAVEN_OPTS="-Xmx2g"
Change Travis config to use Java 8
Change Travis config to use Java 8
YAML
apache-2.0
zjshen/presto,takari/presto,losipiuk/presto,deciament/presto,geraint0923/presto,springning/presto,shixuan-fan/presto,prateek1306/presto,Praveen2112/presto,DanielTing/presto,idemura/presto,martint/presto,XiaominZhang/presto,mpilman/presto,TeradataCenterForHadoop/bootcamp,dongjoon-hyun/presto,aramesh117/presto,yu-yamada/presto,hgschmie/presto,prestodb/presto,mvp/presto,elonazoulay/presto,totticarter/presto,mode/presto,11xor6/presto,joy-yao/presto,kietly/presto,EvilMcJerkface/presto,hgschmie/presto,sopel39/presto,wyukawa/presto,yuananf/presto,aramesh117/presto,mbeitchman/presto,gh351135612/presto,ocono-tech/presto,prateek1306/presto,electrum/presto,sopel39/presto,yuananf/presto,mode/presto,mugglmenzel/presto,svstanev/presto,arhimondr/presto,idemura/presto,erichwang/presto,toyama0919/presto,toyama0919/presto,miquelruiz/presto,Svjard/presto,mattyb149/presto,y-lan/presto,sunchao/presto,fipar/presto,dabaitu/presto,zofuthan/presto,yu-yamada/presto,shixuan-fan/presto,soz-fb/presto,Praveen2112/presto,wyukawa/presto,totticarter/presto,joshk/presto,Teradata/presto,idemura/presto,zhenxiao/presto,ajoabraham/presto,deciament/presto,zjshen/presto,vermaravikant/presto,dain/presto,geraint0923/presto,cosinequanon/presto,lingochamp/presto,rockerbox/presto,zofuthan/presto,troels/nz-presto,propene/presto,twitter-forks/presto,erichwang/presto,wyukawa/presto,pnowojski/presto,mbeitchman/presto,tellproject/presto,Myrthan/presto,yu-yamada/presto,albertocsm/presto,nakajijiji/presto,wangcan2014/presto,treasure-data/presto,tomz/presto,albertocsm/presto,haozhun/presto,prestodb/presto,XiaominZhang/presto,dongjoon-hyun/presto,raghavsethi/presto,11xor6/presto,damiencarol/presto,vermaravikant/presto,aglne/presto,sumitkgec/presto,nezihyigitbasi/presto,yu-yamada/presto,ptkool/presto,lingochamp/presto,takari/presto,dongjoon-hyun/presto,zofuthan/presto,dain/presto,Zoomdata/presto,smartpcr/presto,avasilevskiy/presto,ArturGajowy/presto,tellproject/presto,Nasdaq/presto,raghavsethi/presto,nvoron23/presto,losipiuk/presto,cberner/presto,troels/nz-presto,mbeitchman/presto,mandusm/presto,mandusm/presto,ebd2/presto,wrmsr/presto,fiedukow/presto,kaschaeffer/presto,hulu/presto,kined/presto,haitaoyao/presto,Zoomdata/presto,kietly/presto,kingland/presto,tellproject/presto,hulu/presto,facebook/presto,ocono-tech/presto,siddhartharay007/presto,erichwang/presto,zhenyuy-fb/presto,harunurhan/presto,kaschaeffer/presto,wrmsr/presto,toxeh/presto,cberner/presto,totticarter/presto,dain/presto,jekey/presto,ocono-tech/presto,fipar/presto,hulu/presto,stewartpark/presto,cawallin/presto,jacobgao/presto,ArturGajowy/presto,kingland/presto,springning/presto,fengshao0907/presto,ptkool/presto,EvilMcJerkface/presto,fipar/presto,sunchao/presto,aleph-zero/presto,DanielTing/presto,ipros-team/presto,mvp/presto,Teradata/presto,Jimexist/presto,suyucs/presto,dain/presto,mugglmenzel/presto,Jimexist/presto,11xor6/presto,Yaliang/presto,rockerbox/presto,shixuan-fan/presto,totticarter/presto,deciament/presto,pwz3n0/presto,kined/presto,ebyhr/presto,zjshen/presto,aleph-zero/presto,sumanth232/presto,arhimondr/presto,ajoabraham/presto,ipros-team/presto,pwz3n0/presto,fiedukow/presto,bloomberg/presto,ptkool/presto,avasilevskiy/presto,ajoabraham/presto,Yaliang/presto,nsabharwal/presto,kuzemchik/presto,fipar/presto,dabaitu/presto,wagnermarkd/presto,bloomberg/presto,albertocsm/presto,ajoabraham/presto,deciament/presto,yuananf/presto,jxiang/presto,aramesh117/presto,sumitkgec/presto,haozhun/presto,fengshao0907/presto,mbeitchman/presto,suyucs/presto,hgschmie/presto,svstanev/presto,tellproject/presto,zjshen/presto,jf367/presto,sumanth232/presto,mattyb149/presto,vermaravikant/presto,mcanthony/presto,dabaitu/presto,nezihyigitbasi/presto,sumanth232/presto,TeradataCenterForHadoop/bootcamp,youngwookim/presto,prestodb/presto,tomz/presto,y-lan/presto,kingland/presto,mode/presto,saidalaoui/presto,vermaravikant/presto,harunurhan/presto,shubham166/presto,xiangel/presto,takari/presto,RobinUS2/presto,deciament/presto,prateek1306/presto,cosinequanon/presto,gcnonato/presto,y-lan/presto,saidalaoui/presto,mono-plane/presto,troels/nz-presto,jiangyifangh/presto,mandusm/presto,raghavsethi/presto,smartpcr/presto,elonazoulay/presto,ebd2/presto,jiekechoo/presto,Jimexist/presto,svstanev/presto,geraint0923/presto,haitaoyao/presto,cosinequanon/presto,zzhao0/presto,mvp/presto,elonazoulay/presto,tomz/presto,RobinUS2/presto,fiedukow/presto,smartpcr/presto,ebyhr/presto,chrisunder/presto,sumanth232/presto,kuzemchik/presto,mandusm/presto,dongjoon-hyun/presto,treasure-data/presto,Myrthan/presto,gcnonato/presto,sunchao/presto,nezihyigitbasi/presto,lingochamp/presto,smartnews/presto,zhenxiao/presto,ArturGajowy/presto,jf367/presto,sopel39/presto,mono-plane/presto,facebook/presto,smartnews/presto,springning/presto,jf367/presto,shubham166/presto,chrisunder/presto,smartnews/presto,prestodb/presto,mono-plane/presto,kuzemchik/presto,gh351135612/presto,kietly/presto,mugglmenzel/presto,pwz3n0/presto,propene/presto,stewartpark/presto,wangcan2014/presto,zzhao0/presto,nsabharwal/presto,sunchao/presto,hulu/presto,joy-yao/presto,lingochamp/presto,Nasdaq/presto,jiangyifangh/presto,smartpcr/presto,joy-yao/presto,jiangyifangh/presto,zhenyuy-fb/presto,jiangyifangh/presto,siddhartharay007/presto,sumitkgec/presto,toyama0919/presto,fiedukow/presto,cberner/presto,DanielTing/presto,zzhao0/presto,toyama0919/presto,kuzemchik/presto,harunurhan/presto,ipros-team/presto,nileema/presto,takari/presto,nileema/presto,zhenxiao/presto,joy-yao/presto,wagnermarkd/presto,kined/presto,nvoron23/presto,denizdemir/presto,kined/presto,springning/presto,propene/presto,y-lan/presto,nsabharwal/presto,Zoomdata/presto,mono-plane/presto,haitaoyao/presto,jekey/presto,shubham166/presto,nakajijiji/presto,idemura/presto,Nasdaq/presto,mcanthony/presto,aglne/presto,11xor6/presto,ebd2/presto,TeradataCenterForHadoop/bootcamp,youngwookim/presto,Praveen2112/presto,ptkool/presto,ebyhr/presto,facebook/presto,treasure-data/presto,xiangel/presto,nileema/presto,jiekechoo/presto,saidalaoui/presto,aramesh117/presto,Jimexist/presto,denizdemir/presto,toxeh/presto,albertocsm/presto,martint/presto,miquelruiz/presto,siddhartharay007/presto,mbeitchman/presto,wagnermarkd/presto,twitter-forks/presto,avasilevskiy/presto,suyucs/presto,sumitkgec/presto,xiangel/presto,avasilevskiy/presto,dongjoon-hyun/presto,elonazoulay/presto,cosinequanon/presto,shixuan-fan/presto,fengshao0907/presto,smartpcr/presto,toxeh/presto,jekey/presto,hgschmie/presto,rockerbox/presto,mcanthony/presto,zzhao0/presto,pwz3n0/presto,kaschaeffer/presto,haozhun/presto,raghavsethi/presto,arhimondr/presto,mvp/presto,Zoomdata/presto,joy-yao/presto,Yaliang/presto,idemura/presto,mode/presto,DanielTing/presto,losipiuk/presto,nsabharwal/presto,jf367/presto,fipar/presto,suyucs/presto,11xor6/presto,Teradata/presto,youngwookim/presto,aleph-zero/presto,Myrthan/presto,springning/presto,bloomberg/presto,aglne/presto,y-lan/presto,twitter-forks/presto,wrmsr/presto,wrmsr/presto,Svjard/presto,troels/nz-presto,cawallin/presto,wyukawa/presto,lingochamp/presto,cberner/presto,pnowojski/presto,ajoabraham/presto,mcanthony/presto,pnowojski/presto,EvilMcJerkface/presto,aramesh117/presto,soz-fb/presto,geraint0923/presto,yuananf/presto,aleph-zero/presto,Myrthan/presto,haozhun/presto,wangcan2014/presto,geraint0923/presto,mpilman/presto,siddhartharay007/presto,toxeh/presto,RobinUS2/presto,propene/presto,toxeh/presto,Svjard/presto,soz-fb/presto,gh351135612/presto,Praveen2112/presto,zhenyuy-fb/presto,wrmsr/presto,TeradataCenterForHadoop/bootcamp,CHINA-JD/presto,jiekechoo/presto,mattyb149/presto,xiangel/presto,ebd2/presto,prestodb/presto,electrum/presto,nakajijiji/presto,joshk/presto,kined/presto,soz-fb/presto,cawallin/presto,ArturGajowy/presto,mcanthony/presto,shixuan-fan/presto,kingland/presto,mattyb149/presto,mugglmenzel/presto,prestodb/presto,dain/presto,XiaominZhang/presto,yu-yamada/presto,mattyb149/presto,Yaliang/presto,takari/presto,svstanev/presto,smartnews/presto,Yaliang/presto,harunurhan/presto,youngwookim/presto,haitaoyao/presto,cawallin/presto,RobinUS2/presto,erichwang/presto,suyucs/presto,prateek1306/presto,ipros-team/presto,soz-fb/presto,miquelruiz/presto,harunurhan/presto,Jimexist/presto,twitter-forks/presto,electrum/presto,joshk/presto,nvoron23/presto,Nasdaq/presto,miniway/presto,CHINA-JD/presto,XiaominZhang/presto,denizdemir/presto,damiencarol/presto,aglne/presto,Zoomdata/presto,wyukawa/presto,facebook/presto,electrum/presto,mpilman/presto,xiangel/presto,zhenxiao/presto,jekey/presto,mugglmenzel/presto,Praveen2112/presto,mpilman/presto,kaschaeffer/presto,svstanev/presto,jiekechoo/presto,tellproject/presto,prateek1306/presto,zofuthan/presto,jacobgao/presto,smartnews/presto,jekey/presto,zofuthan/presto,saidalaoui/presto,twitter-forks/presto,ArturGajowy/presto,miniway/presto,yuananf/presto,electrum/presto,youngwookim/presto,ebyhr/presto,gcnonato/presto,treasure-data/presto,jxiang/presto,EvilMcJerkface/presto,Svjard/presto,wrmsr/presto,Teradata/presto,zjshen/presto,CHINA-JD/presto,miniway/presto,ipros-team/presto,sumanth232/presto,jxiang/presto,losipiuk/presto,haozhun/presto,cosinequanon/presto,wangcan2014/presto,propene/presto,haitaoyao/presto,kingland/presto,nvoron23/presto,kuzemchik/presto,saidalaoui/presto,shubham166/presto,cberner/presto,martint/presto,zhenyuy-fb/presto,Svjard/presto,miniway/presto,RobinUS2/presto,kietly/presto,DanielTing/presto,miquelruiz/presto,hgschmie/presto,zhenyuy-fb/presto,joshk/presto,raghavsethi/presto,jiangyifangh/presto,martint/presto,hulu/presto,jxiang/presto,stewartpark/presto,miquelruiz/presto,fiedukow/presto,jacobgao/presto,rockerbox/presto,gcnonato/presto,nakajijiji/presto,CHINA-JD/presto,nezihyigitbasi/presto,erichwang/presto,wagnermarkd/presto,mpilman/presto,sopel39/presto,denizdemir/presto,jacobgao/presto,nezihyigitbasi/presto,pwz3n0/presto,facebook/presto,miniway/presto,damiencarol/presto,damiencarol/presto,ocono-tech/presto,rockerbox/presto,cawallin/presto,aglne/presto,kietly/presto,vermaravikant/presto,jf367/presto,albertocsm/presto,siddhartharay007/presto,mpilman/presto,mvp/presto,ptkool/presto,kaschaeffer/presto,EvilMcJerkface/presto,damiencarol/presto,Nasdaq/presto,tomz/presto,totticarter/presto,arhimondr/presto,tomz/presto,dabaitu/presto,nakajijiji/presto,dabaitu/presto,jxiang/presto,avasilevskiy/presto,losipiuk/presto,troels/nz-presto,bloomberg/presto,ebd2/presto,aleph-zero/presto,XiaominZhang/presto,pnowojski/presto,Teradata/presto,nileema/presto,martint/presto,chrisunder/presto,jiekechoo/presto,gh351135612/presto,mandusm/presto,chrisunder/presto,fengshao0907/presto,CHINA-JD/presto,stewartpark/presto,wangcan2014/presto,treasure-data/presto,TeradataCenterForHadoop/bootcamp,arhimondr/presto,elonazoulay/presto,fengshao0907/presto,ocono-tech/presto,ebyhr/presto,chrisunder/presto,Myrthan/presto,treasure-data/presto,mode/presto,gh351135612/presto,bloomberg/presto,tellproject/presto,nileema/presto,toyama0919/presto,wagnermarkd/presto,nsabharwal/presto,stewartpark/presto,sumitkgec/presto,sunchao/presto,sopel39/presto,zzhao0/presto
8d090e79a7aff61fce2e9c7669acd1a4ce359970
.travis.yml
.travis.yml
language: php php: - "5.6" - "7.1" services: - mysql before_install: - sudo apt-get update install: - composer self-update before_script: - mv .env.travis .env - mv travis.phpunit.xml phpunit.xml - mysql -e 'create database test_timegrid;' - composer install --dev --no-interaction - php artisan config:clear - php artisan migrate - php artisan db:seed - php artisan geoip:update - php artisan config:cache script: - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_success: - ./travis-codeclimate-report.sh
language: php php: - "5.6" - "7.1" services: - mysql before_install: - sudo apt-get update install: - composer self-update before_script: - mv .env.travis .env - mv travis.phpunit.xml phpunit.xml - mysql -e 'create database test_timegrid;' - composer install --dev --no-interaction - php artisan config:clear - php artisan migrate - php artisan db:seed # - php artisan geoip:update - php artisan config:cache script: - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_success: - ./travis-codeclimate-report.sh
Disable geoip update for Travis-CI builds
Disable geoip update for Travis-CI builds
YAML
agpl-3.0
timegridio/timegrid,timegridio/timegrid,timegridio/timegrid
7864163214d2bf476589fdc650d9d551c98aa669
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch install: - git clone https://github.com/sstephenson/bats.git && cd bats && ./install.sh .. && cd - - pip install -U pip setuptools - pip install -U . -r dev-requirements.txt # command to run tests script: - paver lint - paver coverage - PATH=$PWD/bin:$PATH paver bats addons: code_climate: repo_token: f12006bd2fc1828b90e76ba38458b741fbf1f6ec67b46d4653a40814b17d23e0
language: python python: - "2.7" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch install: - git clone https://github.com/sstephenson/bats.git && cd bats && ./install.sh .. && cd - - pip install -U pip setuptools - pip install -U . -r dev-requirements.txt # command to run tests script: - paver lint - paver coverage - PATH=$PWD/bin:$PATH paver bats addons: code_climate: repo_token: 184a6ec8293cad700aa6dd0076d3d7296b25a7b432717acfbff3053dc7cce88a
Update codeclimate token for coverage
Update codeclimate token for coverage
YAML
bsd-3-clause
EvgeneOskin/termius-cli,EvgeneOskin/termius-cli,Crystalnix/serverauditor-sshconfig,Crystalnix/serverauditor-sshconfig,EvgeneOskin/serverauditor-sshconfig
d3b78d05d25290dffa002daf7021fa874a84adde
.travis.yml
.travis.yml
language: node_js node_js: - stable - "4" - "0.10" script: npm run build
language: node_js node_js: - stable - "4" - "0.10" script: npm run build notifications: email: on_failure: change
Stop notifications for every failing build
Stop notifications for every failing build
YAML
mit
absortium/frontend,chaintng/react-boilerplate,blockfs/frontend-react,JonathanMerklin/react-boilerplate,jasoncyu/always-be-bulking,shiftunion/bot-a-tron,codermango/BetCalculator,dbrelovsky/react-boilerplate,Proxiweb/react-boilerplate,bsr203/react-boilerplate,be-oi/beoi-training-client,Demonslyr/Donut.WFE.Customer,perry-ugroop/ugroop-react-dup2,gihrig/react-boilerplate,Dattaya/react-boilerplate-object,react-boilerplate/react-boilerplate,Dmitry-N-Medvedev/motor-collection,gihrig/react-boilerplate-logic,haxorbit/chiron,kossel/react-boilerplate,Jan-Jan/react-hackathon-boilerplate,StrikeForceZero/react-typescript-boilerplate,samit4me/react-boilerplate,s0enke/react-boilerplate,absortium/frontend,StrikeForceZero/react-typescript-boilerplate,Jan-Jan/react-hackathon-boilerplate,KarandikarMihir/react-boilerplate,shiftunion/bot-a-tron,ayozebarrera/react-boilerplate,chaintng/react-boilerplate,chexee/karaoke-night,gihrig/react-boilerplate-logic,kossel/react-boilerplate,haithemT/app-test,ipselon/react-boilerplate-clone,likesalmon/likesalmon-react-boilerplate,AnhHT/react-boilerplate,StrikeForceZero/react-typescript-boilerplate,pauleonardo/demo-trans,rlagman/raphthelagman,mmaedel/react-boilerplate,kaizen7-nz/gold-star-chart,Dattaya/react-boilerplate-object,romanvieito/ball-simpler,s0enke/react-boilerplate,kaizen7-nz/gold-star-chart,TheTopazWombat/levt-2,abasalilov/react-boilerplate,codermango/BetCalculator,blockfs/frontend-react,Dmitry-N-Medvedev/motor-collection,pauleonardo/demo-trans,samit4me/react-boilerplate,gtct/wallet.eine.com,KarandikarMihir/react-boilerplate,be-oi/beoi-training-client,mxstbr/react-boilerplate,jasoncyu/always-be-bulking,AnhHT/react-boilerplate,bsr203/react-boilerplate,gtct/wallet.eine.com,s0enke/react-boilerplate,Proxiweb/react-boilerplate,mxstbr/react-boilerplate,romanvieito/ball-simpler,w01fgang/react-boilerplate,gtct/wallet.eine.com,mikejong0815/Temp,mikejong0815/Temp,perry-ugroop/ugroop-react-dup2,gtct/wallet.eine.com,Dmitry-N-Medvedev/motor-collection,w01fgang/react-boilerplate,mmaedel/react-boilerplate,haxorbit/chiron,abasalilov/react-boilerplate,react-boilerplate/react-boilerplate,Demonslyr/Donut.WFE.Customer,JonathanMerklin/react-boilerplate,haithemT/app-test,Proxiweb/react-boilerplate,SilentCicero/react-boilerplate,gihrig/react-boilerplate,tomazy/react-boilerplate,tomazy/react-boilerplate,SilentCicero/react-boilerplate,Dmitry-N-Medvedev/motor-collection,dbrelovsky/react-boilerplate,TheTopazWombat/levt-2,ayozebarrera/react-boilerplate,rlagman/raphthelagman,likesalmon/likesalmon-react-boilerplate,ipselon/react-boilerplate-clone,chexee/karaoke-night
f5f2085b290d4518119a1455744f83e644e5eea3
.travis.yml
.travis.yml
language: python python: - "2.5" - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.4 - DJANGO_VERSION=1.4.2 # command to install dependencies install: - pip install -q Django==$DJANGO_VERSION --use-mirrors - pip install -r requirements.txt --use-mirrors # command to run tests script: python setup.py test
language: python python: # Disable 2.5 for now due to a bug in django-setuptest # Ref: https://github.com/praekelt/django-setuptest/pull/6 # - "2.5" - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.4 - DJANGO_VERSION=1.4.2 # command to install dependencies install: - pip install -q Django==$DJANGO_VERSION --use-mirrors - pip install -r requirements.txt --use-mirrors # command to run tests script: python setup.py test
Disable 2.5 testing (for now).
Disable 2.5 testing (for now).
YAML
agpl-3.0
ctxis/django-newsletter,dsanders11/django-newsletter,ctxis/django-newsletter,viaregio/django-newsletter,ctxis/django-newsletter,viaregio/django-newsletter,dsanders11/django-newsletter,dsanders11/django-newsletter
718c4317e5abdd9f7b92c60cf2c14f7cc23ab668
.travis.yml
.travis.yml
language: go go: - 1.4 - tip install: - go get github.com/tools/godep - godep restore sudo: false
language: go go: - 1.4 #- tip install: - go get github.com/tools/godep - godep restore sudo: false
Disable tip testing on Travis
Disable tip testing on Travis
YAML
bsd-3-clause
cloudpipe/cloudpipe,cloudpipe/cloudpipe,cloudpipe/cloudpipe
4c29c3d01a4afc8718ffb8b89a4fc97f8fa2c6c1
hieradata/bgo/roles/compute.yaml
hieradata/bgo/roles/compute.yaml
--- ntp::servers: - 172.16.0.100 - 172.16.0.101 - 172.16.0.102 profile::base::network::manage_httpproxy: 'true' puppet::cron_cmd: "if [ -e /etc/profile.d/proxy.sh ] ; then source /etc/profile.d/proxy.sh ; fi ; \ /usr/bin/env puppet agent --config %{puppet::dir}/puppet.conf --onetime --no-daemonize" ################ TEMP DATA - SHOULD BE FIXED IN COMMON ######################### calico::compute::bird_template: 'profile/bird/bird.conf.erb' named_interfaces::config: mgmt: - em3 transport: - bond1 service: - bond1 # Enable intance migration via ssh profile::firewall::pre::ssh_settings: source: "0.0.0.0/0"
--- include: default: - profile::openstack::compute::migration ntp::servers: - 172.16.0.100 - 172.16.0.101 - 172.16.0.102 profile::base::network::manage_httpproxy: 'true' puppet::cron_cmd: "if [ -e /etc/profile.d/proxy.sh ] ; then source /etc/profile.d/proxy.sh ; fi ; \ /usr/bin/env puppet agent --config %{puppet::dir}/puppet.conf --onetime --no-daemonize" ################ TEMP DATA - SHOULD BE FIXED IN COMMON ######################### calico::compute::bird_template: 'profile/bird/bird.conf.erb' named_interfaces::config: mgmt: - em3 transport: - bond1 service: - bond1 # Enable intance migration via ssh profile::firewall::pre::ssh_settings: source: "0.0.0.0/0"
Add shell to nova user in bgo
Add shell to nova user in bgo
YAML
apache-2.0
eckhart/himlar,raykrist/himlar,tanzr/himlar,eckhart/himlar,TorLdre/himlar,raykrist/himlar,mikaeld66/himlar,eckhart/himlar,TorLdre/himlar,mikaeld66/himlar,raykrist/himlar,TorLdre/himlar,raykrist/himlar,tanzr/himlar,mikaeld66/himlar,TorLdre/himlar,norcams/himlar,mikaeld66/himlar,tanzr/himlar,norcams/himlar,eckhart/himlar,tanzr/himlar,norcams/himlar,mikaeld66/himlar,norcams/himlar,norcams/himlar,tanzr/himlar,TorLdre/himlar,raykrist/himlar
6dfa0f5a98fd1db6f5fc6ae891fa3b621ddf7399
kubernetes/helm/values.dev.yaml
kubernetes/helm/values.dev.yaml
# The HX cluster has 3 workers. Each k8s worker comes with 8 cores and 32GB of RAM. # The resources of this cluster will be divided as follows: # - Failover public website (2 workers) # - Test website (1 worker) # Database database: db-dev # Proxy proxy: proxy-hx # EBI search index searchIndex: search-index-dev # Memcached memcachedReplicas: 1 memcachedRequestsMemory: "1024Mi" memcachedRequestsCPU: "500m" memcachedLimitssMemory: "2048Mi" memcachedLimitsCPU: "1000m" # Redis redisReplicas: 1 redisRequestsMemory: "1024Mi" redisRequestsCPU: "500m" redisLimitssMemory: "2048Mi" redisLimitsCPU: "1000m" # Nginx nginxReplicas: 1 nginxRequestsMemory: "512Mi" nginxRequestsCPU: "500m" nginxLimitssMemory: "1024Mi" nginxLimitsCPU: "1000m" # RNAcentral rnacentralReplicas: 1 rnacentralRequestsMemory: "1536Mi" rnacentralRequestsCPU: "500m" rnacentralLimitssMemory: "3072Mi" rnacentralLimitsCPU: "1000m"
# The HX cluster has 3 workers. Each k8s worker comes with 8 cores and 32GB of RAM. # The resources of this cluster will be divided as follows: # - Failover public website (2 workers) # - Test website (1 worker) # Database database: db-dev # Proxy proxy: proxy-hx # EBI search index searchIndex: search-index-dev # Memcached memcachedReplicas: 1 memcachedRequestsMemory: "512Mi" memcachedRequestsCPU: "500m" memcachedLimitssMemory: "1024Mi" memcachedLimitsCPU: "1000m" # Redis redisReplicas: 1 redisRequestsMemory: "1024Mi" redisRequestsCPU: "500m" redisLimitssMemory: "2048Mi" redisLimitsCPU: "1000m" # Nginx nginxReplicas: 1 nginxRequestsMemory: "512Mi" nginxRequestsCPU: "500m" nginxLimitssMemory: "1024Mi" nginxLimitsCPU: "1000m" # RNAcentral rnacentralReplicas: 1 rnacentralRequestsMemory: "2048Mi" rnacentralRequestsCPU: "500m" rnacentralLimitssMemory: "4096Mi" rnacentralLimitsCPU: "1000m"
Update values for the test website
Update values for the test website
YAML
apache-2.0
RNAcentral/rnacentral-webcode,RNAcentral/rnacentral-webcode,RNAcentral/rnacentral-webcode,RNAcentral/rnacentral-webcode
aee66272fdc335ba8b1166398d830fa2256f2987
yosys/meta.yaml
yosys/meta.yaml
{% set version = '%s_%04i_%s'|format(GIT_DESCRIBE_TAG|replace('yosys-', '') or '0.X', GIT_DESCRIBE_NUMBER|int, GIT_DESCRIBE_HASH or 'gUNKNOWN') %} package: name: yosys version: {{ version }} source: git_url: https://github.com/YosysHQ/yosys.git git_rev: master patches: - makefile-conda-config.patch build: # number: 201803050325 number: {{ environ.get('DATE_NUM') }} # string: 20180305_0325 string: {{ environ.get('DATE_STR') }} script_env: - CI - TRAVIS requirements: build: - python 3.6.* - tk 8.5.* - {{ compiler('c') }} - {{ compiler('cxx') }} host: - bison - flex - iverilog - libffi - pkg-config - python 3.6.* - tk 8.5.* run: - flex - libffi - python {{ python }} - tk 8.5.* about: home: http://www.clifford.at/yosys/ license: ISC license_file: COPYING summary: 'Yosys is a framework for Verilog RTL synthesis. It currently has extensive Verilog-2005 support and provides a basic set of synthesis algorithms for various application domains.'
{% set version = '%s_%04i_%s'|format(GIT_DESCRIBE_TAG|replace('yosys-', '') or '0.X', GIT_DESCRIBE_NUMBER|int, GIT_DESCRIBE_HASH or 'gUNKNOWN') %} package: name: yosys version: {{ version }} source: git_url: https://github.com/timvideos/yosys.git git_rev: master patches: - makefile-conda-config.patch build: # number: 201803050325 number: {{ environ.get('DATE_NUM') }} # string: 20180305_0325 string: {{ environ.get('DATE_STR') }} script_env: - CI - TRAVIS requirements: build: - python 3.6.* - tk 8.5.* - {{ compiler('c') }} - {{ compiler('cxx') }} host: - bison - flex - iverilog - libffi - pkg-config - python 3.6.* - tk 8.5.* run: - flex - libffi - python {{ python }} - tk 8.5.* about: home: http://www.clifford.at/yosys/ license: ISC license_file: COPYING summary: 'Yosys is a framework for Verilog RTL synthesis. It currently has extensive Verilog-2005 support and provides a basic set of synthesis algorithms for various application domains.'
Use TimVideos Yosys for building packages.
Use TimVideos Yosys for building packages.
YAML
apache-2.0
litex-hub/litex-conda-compilers,litex-hub/litex-conda-prog,timvideos/conda-misoc-lm32,timvideos/conda-hdmi2usb-packages,timvideos/conda-hdmi2usb-packages,litex-hub/litex-conda-eda,timvideos/conda-misoc-lm32
224031423676779fbb919bee7e875add02da25de
_config.yml
_config.yml
# Site settings title: samyakchoudhary.com email: [email protected] description: Computer Science, IIT Roorkee, graduate. Aspiring Entrepreneur. ENTP. baseurl: "" # the subpath of your site, e.g. /blog url: "samyakchoudhary.com" # the base hostname & protocol for your site enable_retina: false permalink: :title nav_list: Home : ['Home', '/', 'fa-home'] About : ['About', '/about', 'fa-user'] LinkedIn : ['LinkedIn','https://www.linkedin.com/in/samyakchoudhary/', 'fa-anchor'] Facebook : ['Facebook','http://facebook.com/samyak.choudhary.355', 'fa-facebook'] Instagram : ['Instagram','http://instagram.com/samyak.choudhary/', 'fa-anchor'] Quora : ['Quora','https://www.quora.com/profile/Samyak-Choudhary', 'fa-anchor'] Email : ['Email','mailto:[email protected]', 'fa-anchor'] single_footer: '<a href="/">latest posts</a></p>' footer_links: About: ['About', '/about'] Home : ['Home', '/'] # Build settings markdown: kramdown
# Site settings title: samyakchoudhary.com email: [email protected] description: Computer Science, IIT Roorkee, graduate. Aspiring Entrepreneur. ENTP. baseurl: "" # the subpath of your site, e.g. /blog url: "samyakchoudhary.com" # the base hostname & protocol for your site enable_retina: false permalink: :title nav_list: Home : ['Home', '/', 'fa-home'] About : ['About', '/about', 'fa-user'] LinkedIn : ['LinkedIn','https://www.linkedin.com/in/samyakchoudhary/', 'fa-linkedin'] Facebook : ['Facebook','http://facebook.com/samyak.choudhary.355', 'fa-facebook'] Instagram : ['Instagram','http://instagram.com/samyak.choudhary/', 'fa-instagram'] Quora : ['Quora','https://www.quora.com/profile/Samyak-Choudhary', 'fa-quora'] Email : ['Email','mailto:[email protected]', 'fa-envelope'] single_footer: '<a href="/">latest posts</a></p>' footer_links: About: ['About', '/about'] Home : ['Home', '/'] # Build settings markdown: kramdown
Use fa icons in nav bar
Use fa icons in nav bar
YAML
mit
samyak45/samyak45.github.io,samyak45/samyak45.github.io
a7b6fc7c62250a35bef2b8e3834b744acb6ee55e
src/gcloudbuild.yaml
src/gcloudbuild.yaml
# Copyright 2020 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. steps: # Deploy code to Google App Engine - name: 'gcr.io/google.com/cloudsdktool/cloud-sdk' entrypoint: 'gcloud' args: ['app', 'deploy', './src/app.yaml'] timeout: 1200s # Schedule all tasks via Google Cloud Scheduler - name: python entrypoint: 'bash' dir: './src' args: - '-c' - | pip install -r requirements.txt python3 ./scripts/setup_scheduler.py # Define global timeout timeout: 1800s
# Copyright 2020 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. steps: # Deploy code to Google App Engine - name: 'gcr.io/google.com/cloudsdktool/cloud-sdk' entrypoint: 'bash' dir: './src' args: - '-c' - | gcloud config set app/cloud_build_timeout 1200 gcloud app deploy ./app.yaml # Schedule all tasks via Google Cloud Scheduler - name: python entrypoint: 'bash' dir: './src' args: - '-c' - | pip install -r requirements.txt python3 ./scripts/setup_scheduler.py # Define global timeout since the deployment takes >10m timeout: 1800s
Add timeout to individual build step
Add timeout to individual build step
YAML
apache-2.0
GoogleCloudPlatform/covid-19-open-data,GoogleCloudPlatform/covid-19-open-data
df3cb3e98e1008819f4498a7890a61cac4f2636a
roles/shellcheck/tasks/main.yml
roles/shellcheck/tasks/main.yml
--- - name: Install requirements become: true apt: name={{item}} state=latest with_items: - cabal-install - ghc - name: Install shellcheck shell: cabal update && cabal install shellcheck args: creates: ~/.cabal/bin/shellcheck
--- - name: Install requirements become: true apt: name={{item}} state=latest with_items: - cabal-install - ghc - name: Install tmux become: true apt: name=tmux state=latest - name: Install shellcheck shell: cabal update && cabal install shellcheck args: creates: ~/.cabal/bin/shellcheck
Install tmux in new dev machines
Install tmux in new dev machines
YAML
mit
deivid-rodriguez/dotfiles,deivid-rodriguez/dotfiles
d5762e4c7c7bffcb3e5fa8ba1c63e6ee6d345027
playbook/include/syslog.inc.yml
playbook/include/syslog.inc.yml
- name: "Create /usr/local/etc/syslog.d/" file: path: /usr/local/etc/syslog.d/ state: directory owner: root group: wheel mode: "0755" - name: "Remove obsolete syslog files" file: path: "{{ item }}" state: absent loop: - /usr/local/etc/syslog.d/console.conf notify: restart_syslogd - name: "Install syslog.d files" copy: src: "{{ item }}" dest: /usr/local/etc/syslog.d/ owner: root group: wheel mode: "0644" with_fileglob: - ../ansible/syslog.d/*.conf notify: restart_syslogd - name: "Touch log files" file: path: "/var/log/{{ item }}" state: touch mode: "0600" changed_when: no loop: - console.log - name: "Disable '/dev/console' target in /etc/syslog.conf" replace: path: /etc/syslog.conf regexp: '(.*/dev/console$)' replace: '#\1' notify: restart_syslogd
- name: "Create /usr/local/etc/syslog.d/" file: path: /usr/local/etc/syslog.d/ state: directory owner: root group: wheel mode: "0755" - name: "Remove obsolete syslog files" file: path: "{{ item }}" state: absent loop: - /usr/local/etc/syslog.d/console.conf notify: restart_syslogd - name: "Install syslog.d files" copy: src: "{{ item }}" dest: /usr/local/etc/syslog.d/ owner: root group: wheel mode: "0644" with_fileglob: - ../ansible/syslog.d/*.conf notify: restart_syslogd - name: "Touch log files" file: path: "/var/log/{{ item }}" state: touch mode: "0600" changed_when: no loop: - console.log - name: "Disable '/dev/console' target in /etc/syslog.conf" replace: path: /etc/syslog.conf regexp: '([^#].*/dev/console$)' replace: '#\1' notify: restart_syslogd
Fix disabling of '/dev/console' in syslog.
Fix disabling of '/dev/console' in syslog.
YAML
bsd-2-clause
olgeni/bsdkit
4ba60696158b90423a8d8d7197ab6a36755bb186
recipes/Sanic-HTTPAuth/meta.yaml
recipes/Sanic-HTTPAuth/meta.yaml
{% set name = "Sanic-HTTPAuth" %} {% set version = "0.2.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/Sanic-HTTPAuth-{{ version }}.tar.gz sha256: a4f9fb15165a470d53ba1bd42acb8b0d9f579acb1c0af2c9752d1ed38e41cb89 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python - poetry run: - python - sanic test: imports: - sanic_httpauth commands: - pip check requires: - pip about: home: http://github.com/MihaiBalint/sanic-httpauth/ summary: Basic, Digest and Bearer token authentication for Sanic routes license: MIT license_file: LICENSE extra: recipe-maintainers: - patricksnape
{% set name = "Sanic-HTTPAuth" %} {% set version = "0.2.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/Sanic-HTTPAuth-{{ version }}.tar.gz sha256: a4f9fb15165a470d53ba1bd42acb8b0d9f579acb1c0af2c9752d1ed38e41cb89 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python - poetry run: - python - sanic test: imports: - sanic_httpauth - sanic_httpauth_compat commands: - pip check requires: - pip about: home: http://github.com/MihaiBalint/sanic-httpauth/ summary: Basic, Digest and Bearer token authentication for Sanic routes license: MIT license_file: LICENSE extra: recipe-maintainers: - patricksnape
Add the compat module back
Add the compat module back
YAML
bsd-3-clause
ocefpaf/staged-recipes,jochym/staged-recipes,patricksnape/staged-recipes,scopatz/staged-recipes,stuertz/staged-recipes,hadim/staged-recipes,scopatz/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,ReimarBauer/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,igortg/staged-recipes,igortg/staged-recipes
3dcb27158763b1470ac25923e291b72dce9615c0
roles/python-3/defaults/main.yml
roles/python-3/defaults/main.yml
--- python_3_version: "3.6.7" python_3_version_output: "Python {{ python_3_version }}" # TODO: determine these strings using python_3_version python_3_executable: "python3.6" pip_3_executable: "pip3.6" python_3_dir: "Python-{{ python_3_version }}" python_3_filename: "{{ python_3_dir }}.tgz" python_3_url: "https://www.python.org/ftp/python/{{ python_3_version }}/{{ python_3_filename }}"
--- python_3_version: "3.6.7" python_3_version_output: "Python {{ python_3_version }}" python_3_executable: "python{{ python_3_version.split('.')[0:2] | join('.') }}" pip_3_executable: "pip{{ python_3_version.split('.')[0:2] | join('.') }}" python_3_dir: "Python-{{ python_3_version }}" python_3_filename: "{{ python_3_dir }}.tgz" python_3_url: "https://www.python.org/ftp/python/{{ python_3_version }}/{{ python_3_filename }}"
Determine python and pip executable names from python 3 version
Determine python and pip executable names from python 3 version
YAML
apache-2.0
osu-mist/ansible-roles
8e4beac736d0050820e5181bbb5ac3e3ba5524bb
common/tasks/main.yml
common/tasks/main.yml
--- - include: zsh.yml - include: postgres.yml - include: chrome.yml - include: java.yml - include: vim.yml - include: intellij.yml - include: node.yml - include: wine.yml - include: hipchat.yml - include: gimp.yml - include: spotify.yml - include: vlc.yml - include: docker.yml - include: golang.yml - include: latex.yml - include: shutter.yml - include: samba.yml
--- - include: zsh.yml - include: postgres.yml - include: chrome.yml - include: java.yml - include: vim.yml - include: intellij.yml - include: node.yml - include: wine.yml - include: hipchat.yml - include: gimp.yml - include: spotify.yml - include: vlc.yml - include: docker.yml - include: golang.yml - include: latex.yml - include: shutter.yml - include: samba.yml #- include: monit.yml
Add monit but commented out
Add monit but commented out
YAML
apache-2.0
lilleswing/dev_box
cb8e6f08eb010fed201dfeac058f1a7b1cb05881
docs/antora.yml
docs/antora.yml
name: rubocop-rspec title: RuboCop RSpec version: '2.1' nav: - modules/ROOT/nav.adoc
name: rubocop-rspec title: RuboCop RSpec version: master nav: - modules/ROOT/nav.adoc
Switch docs version back to master
Switch docs version back to master
YAML
mit
bquorning/rubocop-rspec,backus/rubocop-rspec,nevir/rubocop-rspec,backus/rubocop-rspec
6a3f7fa3a19df2394ef74aa3c376a43e5d90e0eb
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: directory path: projects label: Projects create: documents match: "**/*.md" templates: - project - type: directory path: journal label: Journal create: documents match: "**/*.md" templates: - journal - type: heading label: Data - type: document path: data/authors.json label: Authors upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: publish_command: gridsome build output_directory: dist
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: directory path: projects label: Projects create: documents match: "**/*.md" templates: - project - type: directory path: journal label: Journal create: documents match: "**/*.md" templates: - journal - type: heading label: Data upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: publish_command: gridsome build output_directory: dist
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
wkadwaikar/wkadwaikar.github.io,gatsbimantico/blog,wkadwaikar/wkadwaikar.github.io,gatsbimantico/blog
65f229bad85a873b2839d9dd6de22c1212cd42f7
packages/co/contiguous.yaml
packages/co/contiguous.yaml
homepage: https://github.com/andrewthad/contiguous changelog-type: '' hash: f72f4700ffca3868587d77007d35bb0acbd2cb4524692bd10c699587d1c19937 test-bench-deps: {} maintainer: [email protected] synopsis: Unified interface for primitive arrays changelog: '' basic-deps: base: ! '>=4.9 && <5' deepseq: ! '>=1.4' primitive: ! '>=0.6.4' all-versions: - 0.1.0.0 - 0.2.0.0 - 0.3.0.0 - 0.3.1.0 - 0.3.2.0 author: Andrew Martin latest: 0.3.2.0 description-type: markdown description: | # primitive-class license-name: BSD-3-Clause
homepage: https://github.com/andrewthad/contiguous changelog-type: '' hash: 7493e1216cf3c98721c5d16c27dcf535a1d7ca6ba122a62cb176b77e573bf21c test-bench-deps: {} maintainer: [email protected] synopsis: Unified interface for primitive arrays changelog: '' basic-deps: base: ! '>=4.9 && <5' deepseq: ! '>=1.4' primitive: ! '>=0.6.4' all-versions: - 0.1.0.0 - 0.2.0.0 - 0.3.0.0 - 0.3.1.0 - 0.3.2.0 - 0.3.3.0 author: Andrew Martin latest: 0.3.3.0 description-type: markdown description: | # primitive-class license-name: BSD-3-Clause
Update from Hackage at 2019-03-24T03:07:44Z
Update from Hackage at 2019-03-24T03:07:44Z
YAML
mit
commercialhaskell/all-cabal-metadata
b6a4ab27c6be84d6a1f0324b199ea12db29f248b
recipes/pydantic_factories/meta.yaml
recipes/pydantic_factories/meta.yaml
{% set name = "pydantic_factories" %} {% set version = "1.2.8" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pydantic-factories-{{ version }}.tar.gz sha256: d97b10c251874e87aa306bb001a75eb340f58debbe9124a572331f4926484e5e build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python >=3.6,<4.0 - poetry run: - exrex - faker - pydantic - python >=3.6,<4.0 - typing-extensions test: imports: - pydantic_factories - pydantic_factories.constraints commands: - pip check requires: - pip about: home: https://github.com/Goldziher/pydantic-factories summary: Mock data generation for pydantic based models license: MIT license_file: LICENSE extra: recipe-maintainers: - janjagusch
{% set name = "pydantic_factories" %} {% set version = "1.2.8" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pydantic-factories-{{ version }}.tar.gz sha256: d97b10c251874e87aa306bb001a75eb340f58debbe9124a572331f4926484e5e build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python >=3.6,<4.0 - poetry run: - exrex - faker - pydantic - python >=3.6,<4.0 - typing-extensions test: imports: - pydantic_factories - pydantic_factories.constraints commands: - pip check requires: - pip about: home: https://github.com/Goldziher/pydantic-factories summary: Mock data generation for pydantic based models license: MIT license_file: LICENSE extra: recipe-maintainers: - janjagusch - ivergara
Add @ivergara as a maintainer
Add @ivergara as a maintainer
YAML
bsd-3-clause
jakirkham/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes
08c5b7d4a16f5330e4a6df24ea315bfc68fea075
.github/workflows/continuous-build.yml
.github/workflows/continuous-build.yml
name: Continuous Build on: push: branches: - main pull_request: branches: - main jobs: documentation: runs-on: ubuntu-latest name: Check Markdown links steps: - name: Clone eslint-teamcity uses: actions/checkout@master - name: Check hyperlinks uses: gaurav-nelson/github-action-markdown-link-check@v1 lint-test: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x, 16.x] name: Build (${{ matrix.node-version }}) steps: - name: Clone eslint-teamcity uses: actions/checkout@v2 - name: Setup node uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} - name: Install Dependencies run: npm ci - name: Lint run: npm run lint - name: Test run: npm run test:coverage - name: Report coverage uses: coverallsapp/github-action@master with: flag-name: node-${{ matrix.node-version }} github-token: ${{ secrets.GITHUB_TOKEN }}
name: Continuous Build on: push: branches: - main pull_request: branches: - main jobs: documentation: runs-on: ubuntu-latest name: Check Markdown links steps: - name: Clone eslint-teamcity uses: actions/checkout@master - name: Check hyperlinks uses: gaurav-nelson/github-action-markdown-link-check@v1 lint-test: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x, 16.x] name: Build (${{ matrix.node-version }}) steps: - name: Clone eslint-teamcity uses: actions/checkout@v2 - name: Setup node uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} - name: Install Dependencies run: npm ci - name: Lint run: npm run lint - name: Test run: npm run test:coverage - name: Report coverage uses: coverallsapp/github-action@master with: flag-name: node-${{ matrix.node-version }} github-token: ${{ secrets.GH_ACCESS_TOKEN }}
Add back custom access token
Add back custom access token
YAML
mit
andreogle/eslint-teamcity,andreogle/eslint-teamcity
bb771e8bafa9cbf6e97841d87415c0ba3b191c73
.github/dependabot.yml
.github/dependabot.yml
version: 2 updates: - package-ecosystem: bundler directory: / schedule: interval: daily allow: # Security updates - dependency-name: brakeman dependency-type: direct # Internal gems - dependency-name: "govuk*" dependency-type: direct - dependency-name: gds-api-adapters dependency-type: direct - dependency-name: gds-sso dependency-type: direct - dependency-name: plek dependency-type: direct - dependency-name: rubocop-govuk dependency-type: direct # Framework gems - dependency-name: factory_bot_rails dependency-type: direct - dependency-name: pg dependency-type: direct - dependency-name: rails dependency-type: direct - dependency-name: rspec-rails dependency-type: direct - package-ecosystem: npm directory: / schedule: interval: daily allow: # Internal packages - dependency-name: stylelint-config-gds dependency-type: direct # Framework packages - dependency-name: standardx dependency-type: direct - dependency-name: stylelint dependency-type: direct
version: 2 updates: - package-ecosystem: bundler directory: / schedule: interval: daily - package-ecosystem: npm directory: / schedule: interval: daily
Remove allow list from Dependabot config
Remove allow list from Dependabot config
YAML
mit
alphagov/local-links-manager,alphagov/local-links-manager,alphagov/local-links-manager
44f58861b7b69304c0aa12461c3c0bf224416606
packages/mo/modbus-tcp.yaml
packages/mo/modbus-tcp.yaml
homepage: https://github.com/roelvandijk/modbus-tcp changelog-type: '' hash: 119191cc690c7fd1b884b692c43c1b83f1544305e81c40f965d9894029eb7e33 test-bench-deps: {} maintainer: Roel van Dijk <[email protected]> synopsis: Communicate with Modbus devices over TCP changelog: '' basic-deps: cereal: ! '>=0.5.1 && <0.6' bytestring: ! '>=0.10.6 && <0.11' base: ! '>=4.9 && <5' network: ! '>=2.6.2.1 && <2.7' mtl: ! '>=2.2.1 && <3' transformers: ! '>=0.5.2 && <0.6' all-versions: - '0.0' - '0.1' - '0.2' - '0.2.1' - '0.2.1.1' - '0.3' author: Roel van Dijk <[email protected]>, Tim Schwarte <[email protected]> latest: '0.3' description-type: haddock description: Implements the Modbus TPC/IP protocol. license-name: BSD3
homepage: https://github.com/roelvandijk/modbus-tcp changelog-type: '' hash: f8bbf621b5ce927681e5fdd28935b5d334ab04c0f90b4dc233ba2172df8920f2 test-bench-deps: {} maintainer: Roel van Dijk <[email protected]> synopsis: Communicate with Modbus devices over TCP changelog: '' basic-deps: cereal: ! '>=0.5.1 && <0.6' bytestring: ! '>=0.10.6 && <0.11' base: ! '>=4.9 && <5' mtl: ! '>=2.2.1 && <3' transformers: ! '>=0.5.2 && <0.6' all-versions: - '0.0' - '0.1' - '0.2' - '0.2.1' - '0.2.1.1' - '0.3' - '0.4' author: Roel van Dijk <[email protected]>, Tim Schwarte <[email protected]> latest: '0.4' description-type: haddock description: Implements the Modbus TPC/IP protocol. license-name: BSD3
Update from Hackage at 2017-02-15T15:07:50Z
Update from Hackage at 2017-02-15T15:07:50Z
YAML
mit
commercialhaskell/all-cabal-metadata
0fa90bf83a87f393fac7257d4d3b63d96ff6f2e1
.github/dependabot.yml
.github/dependabot.yml
version: 2 updates: - package-ecosystem: npm directory: "/" schedule: interval: weekly day: "monday" time: "00:00" timezone: Europe/London open-pull-requests-limit: 10 ignore: - dependency-name: govuk-colours versions: - ">= 0" - dependency-name: govuk-frontend versions: - ">= 0" - dependency-name: "@storybook/addon-a11y" versions: - ">= 0" - dependency-name: "@storybook/addon-actions" versions: - ">= 0" - dependency-name: "@storybook/addon-knobs" versions: - ">= 0" - dependency-name: "@storybook/react" versions: - ">= 0" # ignore all GitHub linguist patch updates - dependency-name: "github-linguist" update-types: ["version-update:semver-patch"] rebase-strategy: disabled
version: 2 updates: - package-ecosystem: npm directory: "/" schedule: interval: weekly day: "monday" time: "00:00" timezone: Europe/London open-pull-requests-limit: 10 ignore: - dependency-name: govuk-colours versions: - ">= 0" - dependency-name: govuk-frontend versions: - ">= 0" - dependency-name: "@storybook/addon-a11y" versions: - ">= 0" - dependency-name: "@storybook/addon-actions" versions: - ">= 0" - dependency-name: "@storybook/addon-knobs" versions: - ">= 0" - dependency-name: "@storybook/react" versions: - ">= 0" - dependency-name: "@storybook/builder-webpack5" versions: - ">= 0" - dependency-name: "@storybook/manager-webpack5" versions: - ">= 0" # ignore all GitHub linguist patch updates - dependency-name: "github-linguist" update-types: ["version-update:semver-patch"] rebase-strategy: disabled
Add new Storybook depdencies to Dependabot ignore list
Add new Storybook depdencies to Dependabot ignore list
YAML
mit
uktrade/data-hub-fe-beta2,uktrade/data-hub-frontend,uktrade/data-hub-fe-beta2,uktrade/data-hub-frontend,uktrade/data-hub-frontend
2ec8e9d58428e927be5c637eb1c02759c769f744
metadata/net.pfiers.osmfocus.yml
metadata/net.pfiers.osmfocus.yml
Categories: - Navigation License: Apache-2.0 SourceCode: https://github.com/ubipo/osmfocus IssueTracker: https://github.com/ubipo/osmfocus/issues Donate: https://pfiers.net/donate AutoName: OSMfocus Reborn RepoType: git Repo: https://github.com/ubipo/osmfocus Builds: - versionName: 1.0.0 versionCode: 100 commit: v1.0.0 subdir: app gradle: - yes - versionName: 1.0.1-fdroid versionCode: 101 commit: v1.0.1 subdir: app gradle: - fdroid AutoUpdateMode: Version +-fdroid v%v UpdateCheckMode: Tags CurrentVersion: 1.0.1 CurrentVersionCode: 101
Categories: - Navigation License: Apache-2.0 SourceCode: https://github.com/ubipo/osmfocus IssueTracker: https://github.com/ubipo/osmfocus/issues Donate: https://pfiers.net/donate AutoName: OSMfocus Reborn RepoType: git Repo: https://github.com/ubipo/osmfocus Builds: - versionName: 1.0.0 versionCode: 100 commit: v1.0.0 subdir: app gradle: - yes - versionName: 1.0.1-fdroid versionCode: 101 commit: v1.0.1 subdir: app gradle: - fdroid - versionName: 1.0.3-fdroid-fdroid versionCode: 103 commit: v1.0.3 subdir: app gradle: - fdroid AutoUpdateMode: Version +-fdroid v%v UpdateCheckMode: Tags CurrentVersion: 1.0.3-fdroid CurrentVersionCode: 103
Update OSMfocus Reborn to 1.0.3-fdroid (103)
Update OSMfocus Reborn to 1.0.3-fdroid (103)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
1023bc62122159adfc0da8a8572201bae852f59c
packages/fa/fadno-braids.yaml
packages/fa/fadno-braids.yaml
homepage: http://github.com/slpopejoy/ changelog-type: '' hash: 5f83551262a257edd3c0b17a5f59c7154d8a95329878d0d75e60d6c9830f4f3b test-bench-deps: {} maintainer: [email protected] synopsis: Braid representations in Haskell changelog: '' basic-deps: diagrams-lib: '>=1.4' base: '>=4.9 && <4.15' diagrams-rasterific: '>=1.4' data-default: '>=0.7' containers: '>=0.5' lens: '>=4.15' random: '>=1.1' diagrams: '>=1.4' all-versions: - 0.0.2 - 0.0.4 - 0.0.5 - 0.1.0 - 0.1.1 - 0.1.2 - 0.1.3 - 0.1.4 author: Stuart Popejoy latest: 0.1.4 description-type: haddock description: Braids represented as Haskell types with support for generation and transformations. license-name: BSD-2-Clause
homepage: http://github.com/slpopejoy/ changelog-type: '' hash: a3e35beba624e473f19776f14ac16541a4316021700a64531c4fd2596379d466 test-bench-deps: {} maintainer: [email protected] synopsis: Braid representations in Haskell changelog: '' basic-deps: diagrams-lib: '>=1.4' base: '>=4.9 && <4.14' diagrams-rasterific: '>=1.4' data-default: '>=0.7' containers: '>=0.5' lens: '>=4.15' random: '>=1.1' diagrams: '>=1.4' all-versions: - 0.0.2 - 0.0.4 - 0.0.5 - 0.1.0 - 0.1.1 - 0.1.2 - 0.1.3 - 0.1.4 - 0.1.5 author: Stuart Popejoy latest: 0.1.5 description-type: haddock description: Braids represented as Haskell types with support for generation and transformations. license-name: BSD-2-Clause
Update from Hackage at 2020-12-27T04:27:00Z
Update from Hackage at 2020-12-27T04:27:00Z
YAML
mit
commercialhaskell/all-cabal-metadata
5d4d6b0e8fc04cdb735c54c3654f503baa1efa45
packages/li/lists-flines.yaml
packages/li/lists-flines.yaml
homepage: https://hackage.haskell.org/package/lists-flines changelog-type: markdown hash: 4233fba0b9b9efb3a0458280072b8a6f1576dafa4a9674e28a1605c3d7d23361 test-bench-deps: {} maintainer: [email protected] synopsis: Additional data and structures to some 'String'-related lists. changelog: | # Revision history for lists-flines ## 0.1.0.0 -- 2020-10-05 * First version. Released on an unsuspecting world. ## 0.1.0.1 -- 2020-10-05 * First version revised A. Fixed issue with the wrong import statements order. basic-deps: base: '>=4.7 && <4.15' all-versions: - 0.1.0.0 - 0.1.0.1 author: OleksandrZhabenko latest: 0.1.0.1 description-type: haddock description: Is primarily used to transform some Strings read from a file. license-name: MIT
homepage: https://hackage.haskell.org/package/lists-flines changelog-type: markdown hash: 4233fba0b9b9efb3a0458280072b8a6f1576dafa4a9674e28a1605c3d7d23361 test-bench-deps: {} maintainer: [email protected] synopsis: Additional data and structures to some 'String'-related lists. changelog: | # Revision history for lists-flines ## 0.1.0.0 -- 2020-10-05 * First version. Released on an unsuspecting world. ## 0.1.0.1 -- 2020-10-05 * First version revised A. Fixed issue with the wrong import statements order. basic-deps: base: '>=4.7 && <4.15' all-versions: - 0.1.0.1 author: OleksandrZhabenko latest: 0.1.0.1 description-type: haddock description: Is primarily used to transform some Strings read from a file. license-name: MIT
Update from Hackage at 2020-10-05T11:34:46Z
Update from Hackage at 2020-10-05T11:34:46Z
YAML
mit
commercialhaskell/all-cabal-metadata
5a3c98ef6c2ed9bb1efed7d882bde7997c3045f7
package.yaml
package.yaml
name: haskell-weekly version: 0.0.0 category: Web description: Haskell Weekly is an email newsletter. extra-source-files: - content/**/* - README.markdown github: haskellweekly/haskellweekly.github.io license: MIT license-file: LICENSE.markdown maintainer: Taylor Fausak synopsis: An email newsletter. executables: haskell-weekly: dependencies: base: '>= 4.10.1 && < 4.11' cmark: '>= 0.5.6 && < 0.6' directory: '>= 1.3.0 && < 1.4' filepath: '>= 1.4.1 && < 1.5' text: '>= 1.2.2 && < 1.3' time: '>= 1.8.0 && < 1.9' ghc-options: - -rtsopts - -threaded - -Weverything - -Wno-implicit-prelude - -Wno-unsafe main: haskell-weekly.hs source-dirs: executables
name: haskell-weekly version: 0.0.0 category: Web description: Haskell Weekly is an email newsletter. extra-source-files: - CODE_OF_CONDUCT.markdown - content/**/* - CONTRIBUTING.markdown - README.markdown github: haskellweekly/haskellweekly.github.io license: MIT license-file: LICENSE.markdown maintainer: Taylor Fausak synopsis: An email newsletter. executables: haskell-weekly: dependencies: base: '>= 4.10.1 && < 4.11' cmark: '>= 0.5.6 && < 0.6' directory: '>= 1.3.0 && < 1.4' filepath: '>= 1.4.1 && < 1.5' text: '>= 1.2.2 && < 1.3' time: '>= 1.8.0 && < 1.9' ghc-options: - -rtsopts - -threaded - -Weverything - -Wno-implicit-prelude - -Wno-unsafe main: haskell-weekly.hs source-dirs: executables
Include new files in the source tarball
Include new files in the source tarball
YAML
mit
haskellweekly/haskellweekly.github.io,haskellweekly/haskellweekly.github.io
beddafb2e2a80e5fe7ab4983d473da0e64e1cfee
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/config.yml
# Documentation for this file can be found at: # https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository blank_issues_enabled: false contact_links: - name: "💬 IRC: #pypa" url: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa about: Chat with devs
# Documentation for this file can be found at: # https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository blank_issues_enabled: false contact_links: - name: "💬 IRC: #pypa" url: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa about: Chat with devs - name: "(maintainers only) Blank issue" url: https://github.com/pypa/pip/issues/new
Add maintainers-only link to file blank issues, to "New Issue" selector
Add maintainers-only link to file blank issues, to "New Issue" selector This link is only accessible for users who have the "Write" or "Admin" permissions on the repository. Everyone else will get redirected to the same URL as the selector, which I imagine to be an amusing experience.
YAML
mit
pradyunsg/pip,pradyunsg/pip,pypa/pip,pfmoore/pip,sbidoul/pip,pypa/pip,pfmoore/pip,sbidoul/pip
0478a6ad93e4c517a2caf757653b2b492385a8c5
conda-recipe/meta.yaml
conda-recipe/meta.yaml
{% set data = load_setup_py_data() %} package: name: nb_conda version: {{ data.get('version') }} source: path: ../ build: number: 0 script: - {{ PYTHON }} -m pip install --no-deps --ignore-installed . - jupyter nbextension install nb_conda --py --sys-prefix --overwrite requirements: host: - python - setuptools - pip - notebook >=4.3.1 run: - python - notebook >=4.3.1 - nb_conda_kernels >=2.0.0 test: source_files: - setup.cfg - .coveragerc - package.json - tests requires: - nodejs - pytest - pytest-cov - notebook - requests - mock commands: - npm install - npm run test about: home: https://github.com/Anaconda-Platform/nb_conda license: BSD-3-Clause license_family: BSD license_file: LICENSE summary: Conda environment and package access extension from within Jupyter extra: recipe-maintainers: - mcg1969 - bollwyvl - damianavila - fjcapdevila - xylar
{% set data = load_setup_py_data() %} package: name: nb_conda version: {{ data.get('version') }} source: path: ../ build: number: 0 script: - {{ PYTHON }} -m pip install --no-deps --ignore-installed . - jupyter nbextension install nb_conda --py --sys-prefix --overwrite requirements: host: - python - setuptools - pip - backports.functools_lru_cache # [py2k and win] - notebook >=4.3.1 run: - python - notebook >=4.3.1 - backports.functools_lru_cache # [py2k and win] - nb_conda_kernels >=2.0.0 test: source_files: - setup.cfg - .coveragerc - package.json - tests requires: - nodejs - pytest - pytest-cov - notebook - requests - mock commands: - npm install - npm run test about: home: https://github.com/Anaconda-Platform/nb_conda license: BSD-3-Clause license_family: BSD license_file: LICENSE summary: Conda environment and package access extension from within Jupyter extra: recipe-maintainers: - mcg1969 - bollwyvl - damianavila - fjcapdevila - xylar
Add backports to Windows Python 2.7
Add backports to Windows Python 2.7
YAML
bsd-3-clause
Anaconda-Server/nb_conda,Anaconda-Server/nb_conda,Anaconda-Server/nb_conda,Anaconda-Server/nb_conda
e44da2a977ab2b027610d00108702b8f8666753b
_config/site.yml
_config/site.yml
name: JavaEE Samples title: Navigate your way through EE via Tests org: JavaEE Samples issue_tracker: 'https://github.com/javaee-samples/javaee7-samples/issues' base_url: '' profiles: development: base_url: '' deploy: nil # force development as the default production: base_url: 'http://javaee.support' fingerprint_assets: true minify: true google_analytics: account: UA-18727998-5 deploy: host: github_pages branch: master repository: upstream
name: JavaEE Support title: Navigate your way through EE via Tests org: JavaEE Samples issue_tracker: 'https://github.com/javaee-samples/javaee7-samples/issues' base_url: '' profiles: development: base_url: '' deploy: nil # force development as the default production: base_url: 'http://javaee.support' fingerprint_assets: true minify: true google_analytics: account: UA-18727998-5 deploy: host: github_pages branch: master repository: upstream
Update Site.name to JavaEE Support
Update Site.name to JavaEE Support
YAML
mit
javaee-samples/javaee-samples.github.io,javaee-samples/javaee-samples.github.io
ccd6fba54072e07157304b5ca381b7479e1b7fde
templates/aws-resource-pools.yml
templates/aws-resource-pools.yml
--- properties: template_only: (( merge )) compilation: cloud_properties: instance_type: (( merge || "c4.large" )) availability_zone: (( properties.template_only.aws.availability_zone )) ephemeral_disk: size: 30000 # in MB type: gp2 resource_pools: - name: riak-pool network: riak-cs1 stemcell: name: bosh-aws-xen-hvm-ubuntu-trusty-go_agent version: latest cloud_properties: instance_type: m3.large availability_zone: (( properties.template_only.aws.availability_zone )) - name: broker-pool network: riak-cs1 stemcell: name: bosh-aws-xen-hvm-ubuntu-trusty-go_agent version: latest cloud_properties: instance_type: m3.large availability_zone: (( properties.template_only.aws.availability_zone ))
--- properties: template_only: (( merge )) compilation: cloud_properties: instance_type: (( merge || "c4.large" )) availability_zone: (( properties.template_only.aws.availability_zone2 )) ephemeral_disk: size: 30000 # in MB type: gp2 resource_pools: - name: riak-pool network: riak-cs1 stemcell: name: bosh-aws-xen-hvm-ubuntu-trusty-go_agent version: latest cloud_properties: instance_type: m3.large availability_zone: (( properties.template_only.aws.availability_zone2 )) - name: broker-pool network: riak-cs1 stemcell: name: bosh-aws-xen-hvm-ubuntu-trusty-go_agent version: latest cloud_properties: instance_type: m3.large availability_zone: (( properties.template_only.aws.availability_zone2 ))
Move all resource pools to second AZ
Move all resource pools to second AZ [#89434250]
YAML
apache-2.0
mikfreedman/cf-riak-cs-release,cloudfoundry/cf-riak-cs-release,datianshi/cf-riak-cs-release,mikfreedman/cf-riak-cs-release,datianshi/cf-riak-cs-release,cloudfoundry/cf-riak-cs-release,mikfreedman/cf-riak-cs-release,datianshi/cf-riak-cs-release,cloudfoundry/cf-riak-cs-release,datianshi/cf-riak-cs-release,mikfreedman/cf-riak-cs-release,cloudfoundry/cf-riak-cs-release
02995fcf2a7e88c21297818739f82db02f635d0a
.goreleaser.yml
.goreleaser.yml
repo: goreleaser/releaser binary_name: release brew: repo: goreleaser/homebrew-formulae build: oses: - windows - darwin - linux
repo: goreleaser/releaser binary_name: release brew: repo: goreleaser/homebrew-formulae build: oses: - windows
Create release for windows only first
Create release for windows only first
YAML
mit
izzulhaziq/aggregateapi
95efdaccee1a73104da6a7a7f51a0ecc8ad505e0
.github/workflows/cclib_pytest.yml
.github/workflows/cclib_pytest.yml
--- # yamllint disable rule:line-length name: run tests and coverage # yamllint disable-line rule:truthy on: [push, pull_request] jobs: run-tests: runs-on: ubuntu-20.04 strategy: matrix: container: ['shivupa/cclib-ci:py37'] container: image: ${{ matrix.container }} default: run: shell: bash -l {0} steps: - name: Checkout uses: actions/checkout@v2 - name: Install core dependencies run: | command -v python command -v conda python -m pip install -r requirements.txt - name: Install cclib run: | python -m pip install . - name: Test with pytest run: | env | sort bash .github/scripts/run_pytest.bash - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 with: files: ./coverage-unit.xml,./coverage-regression.xml name: codecov-cclib fail_ci_if_error: true verbose: false if: matrix.container == 'shivupa/cclib-ci:py37'
--- # yamllint disable rule:line-length name: run tests and coverage # yamllint disable-line rule:truthy on: [push, pull_request] jobs: run-tests: runs-on: ubuntu-20.04 strategy: matrix: container: ['shivupa/cclib-ci:py37'] container: image: ${{ matrix.container }} defaults: run: shell: bash -l {0} steps: - name: Checkout uses: actions/checkout@v2 - name: Install core dependencies run: | which python which conda conda info -a - name: Install cclib run: | python -m pip install . - name: Test with pytest run: | env | sort bash .github/scripts/run_pytest.bash - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 with: files: ./coverage-unit.xml,./coverage-regression.xml name: codecov-cclib fail_ci_if_error: true verbose: false if: matrix.container == 'shivupa/cclib-ci:py37'
Fix default shell specification, direct dependencies are installed in Docker image
Fix default shell specification, direct dependencies are installed in Docker image
YAML
bsd-3-clause
berquist/cclib,berquist/cclib,berquist/cclib,langner/cclib,langner/cclib,langner/cclib,cclib/cclib,cclib/cclib,cclib/cclib
958c8ba2f1599fe625bf904dca2895375d91f527
.github/workflows/build-test.yaml
.github/workflows/build-test.yaml
name: Test Web application authentication developer setup on: push: pull_request: workflow_dispatch: schedule: - cron: '42 22 * * 0' jobs: test-docker-compose: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - run: | set -e sudo apt update sudo apt remove -y moby-engine moby-containerd moby-runc sudo apt install -y docker.io echo -e "dockremap:$( id -u ):1\ndockremap:200001:65535" | sudo tee -a /etc/subuid echo -e "dockremap:$( id -g ):1\ndockremap:200001:65535" | sudo tee -a /etc/subgid echo '{ "userns-remap": "default" }' | sudo tee /etc/docker/daemon.json sudo systemctl restart docker - run: docker-compose version - run: make build - run: make build COMPOSE=docker-compose.yml.www-with-app - run: make run - run: make test - run: docker-compose down - run: make run - run: make test - run: docker-compose down - run: make run COMPOSE=docker-compose.yml.www-with-app - run: make test
name: Test Web application authentication developer setup on: push: pull_request: workflow_dispatch: schedule: - cron: '42 22 * * 0' jobs: test-docker-compose: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - run: | set -e sudo apt update sudo apt remove -y moby-engine moby-containerd moby-runc sudo apt install -y docker.io echo -e "dockremap:$( id -u ):1\ndockremap:200001:65535" | sudo tee -a /etc/subuid echo -e "dockremap:$( id -g ):1\ndockremap:200001:65535" | sudo tee -a /etc/subgid echo '{ "userns-remap": "default" }' | sudo tee /etc/docker/daemon.json sudo systemctl restart docker - run: docker-compose version - run: make build - run: make build COMPOSE=docker-compose.yml.www-with-app - run: make run - run: make test - run: docker-compose down - run: make run - run: make test - run: docker-compose down - run: make run COMPOSE=docker-compose.yml.www-with-app - run: make test
Address Node.js 12 actions are deprecated.
Address Node.js 12 actions are deprecated. Message on workflows continued with For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout@v2
YAML
apache-2.0
adelton/webauthinfra,adelton/webauthinfra,adelton/webauthinfra,adelton/webauthinfra
234763a31dbf67984cc449670e0da3fda8569b01
.github/workflows/ci-workflow.yaml
.github/workflows/ci-workflow.yaml
--- name: CI on: [push, pull_request, workflow_dispatch] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: token: ${{ secrets.STUDIO_GITHUB_TOKEN }} - uses: actions/setup-node@v1 with: node-version: '16' - run: git config --global user.email "[email protected]" - run: git config --global user.name "pakkunbot" - uses: ./.github/actions/ci-action - run: npm install -g gh-pages - run: make doc-publish
--- name: CI on: [push, pull_request, workflow_dispatch] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: token: ${{ secrets.STUDIO_GITHUB_TOKEN }} - uses: actions/setup-node@v1 with: node-version: '16' - uses: ./.github/actions/ci-action - run: git config --global user.email "[email protected]" - run: git config --global user.name "pakkunbot" - run: npm install -g gh-pages - run: make doc-publish
Set git user and email right before gh-pages call..
Set git user and email right before gh-pages call..
YAML
mit
cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins,cliffano/swaggy-jenkins
a2163ff973ddddba1456348da05a9749aadefefe
circle.yml
circle.yml
machine: services: - docker environment: # Pushing to adapter-go until this is tested, then it will replace the # existing repo on Docker. I can't just push a new tag on the existing # because it's a trusted build. IMAGE_NAME: centurylink/panamax-kubernetes-adapter-go IMAGE_TAG: qa general: artifacts: - "panamax-kubernetes-adapter-go" # the built binary dependencies: override: - docker pull centurylink/golang-tester:latest - docker pull centurylink/golang-builder:latest test: override: - docker run -v $(pwd):/src centurylink/golang-tester deployment: hub: branch: master owner: CenturyLinkLabs commands: - docker run -v $(pwd):/src centurylink/golang-builder:latest - docker build -t $IMAGE_NAME:$IMAGE_TAG . - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS - docker push $IMAGE_NAME:$IMAGE_TAG
machine: services: - docker environment: IMAGE_NAME: centurylink/panamax-kubernetes-adapter IMAGE_TAG: qa general: artifacts: - "panamax-kubernetes-adapter-go" # the built binary dependencies: override: - docker pull centurylink/golang-tester:latest - docker pull centurylink/golang-builder:latest test: override: - docker run -v $(pwd):/src centurylink/golang-tester deployment: hub: branch: master owner: CenturyLinkLabs commands: - docker run -v $(pwd):/src centurylink/golang-builder:latest - docker build -t $IMAGE_NAME:$IMAGE_TAG . - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS - docker push $IMAGE_NAME:$IMAGE_TAG
Update Circle to push to production docker repository.
Update Circle to push to production docker repository. There were some shenangans with the normal repo being a trusted build and not allowing manual pushes.
YAML
apache-2.0
CenturyLinkLabs/panamax-kubernetes-adapter-go,rupakg/panamax-kubernetes-adapter-go
5294e0007034e8447884c713bac6c4c801ec4b61
circle.yml
circle.yml
machine: pre: - sudo curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0 - sudo chmod 0755 /usr/bin/docker services: - docker dependencies: override: - sudo pip install --upgrade docker-compose==1.7.1 test: override: - make deployment: publish: branch: master owner: medigo commands: - make publish
machine: pre: - sudo curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0 - sudo chmod 0755 /usr/bin/docker services: - docker dependencies: override: - sudo pip install --upgrade docker-compose==1.7.1 test: override: - make deployment: publish: branch: master owner: MEDIGO commands: - make publish
Fix typo on CircleCI configuration
Fix typo on CircleCI configuration
YAML
mit
alexyans/laika,MEDIGO/laika,dbrabera/laika,alexyans/laika,alexyans/laika,alexyans/laika,MEDIGO/laika,dbrabera/laika,dbrabera/laika,MEDIGO/laika,dbrabera/laika,alexyans/laika,MEDIGO/laika
51277a34fb426724616618c1afdb893ab2de4c6b
circle.yml
circle.yml
machine: python: version: 2.7.10 dependencies: override: - "pip install -U pip wheel setuptools" - "pip install -e git://github.com/edx/xblock-sdk.git@bddf9f4a2c6e4df28a411c8f632cc2250170ae9d#egg=xblock-sdk" - "pip install -r requirements.txt" - "pip install -r $VIRTUAL_ENV/src/xblock-sdk/requirements/base.txt" - "pip install -r $VIRTUAL_ENV/src/xblock-sdk/requirements/test.txt" - "pip uninstall -y xblock-problem-builder && python setup.py sdist && pip install dist/xblock-problem-builder-2.5.0.tar.gz" - "pip install -r test_requirements.txt" - "mkdir var" test: override: - "if [ $CIRCLE_NODE_INDEX = '0' ]; then pep8 problem_builder --max-line-length=120; fi": parallel: true - "if [ $CIRCLE_NODE_INDEX = '1' ]; then pylint problem_builder --disable=all --enable=function-redefined,undefined-variable,unused-import,unused-variable; fi": parallel: true - "python run_tests.py": parallel: true files: - "problem_builder/v1/tests/**/*.py" - "problem_builder/tests/**/*.py"
machine: python: version: 2.7.10 dependencies: override: - "pip install -U pip wheel" - "pip install setuptools==24.3.1" - "pip install -e git://github.com/edx/xblock-sdk.git@bddf9f4a2c6e4df28a411c8f632cc2250170ae9d#egg=xblock-sdk" - "pip install -r requirements.txt" - "pip install -r $VIRTUAL_ENV/src/xblock-sdk/requirements/base.txt" - "pip install -r $VIRTUAL_ENV/src/xblock-sdk/requirements/test.txt" - "pip uninstall -y xblock-problem-builder && python setup.py sdist && pip install dist/xblock-problem-builder-2.5.0.tar.gz" - "pip install -r test_requirements.txt" - "mkdir var" test: override: - "if [ $CIRCLE_NODE_INDEX = '0' ]; then pep8 problem_builder --max-line-length=120; fi": parallel: true - "if [ $CIRCLE_NODE_INDEX = '1' ]; then pylint problem_builder --disable=all --enable=function-redefined,undefined-variable,unused-import,unused-variable; fi": parallel: true - "python run_tests.py": parallel: true files: - "problem_builder/v1/tests/**/*.py" - "problem_builder/tests/**/*.py"
Fix dependency installation for CircleCI builds.
Fix dependency installation for CircleCI builds. XBlock is listed as a dependency in requirements files for xblock-sdk, xblock-utils, and problem-builder itself. These files list different (but compatible) versions of the XBlock repo. Because of that, XBlock gets installed multiple times when installing dependencies for CircleCI builds. Starting with setuptools 25.0.0, the behavior for installing packages on top of existing installs changed; see https://github.com/pypa/setuptools/issues/729 for an example issue that this change in behavior caused. For problem-builder CI builds, the issue was that after installing all dependencies, the egg link for XBlock ended up pointing to the installation of problem-builder itself, creating a situation where the code that ships with XBlock was not accessible from modules that depend on it. This caused imports for any classes defined in the XBlock repo to fail, and CircleCI builds errored out. To fix this, we temporarily pin setuptools to the most recent version that does not exhibit this behavior (24.3.1). An upstream fix seems to be underway (via https://github.com/pypa/pip/pull/3904), but it hasn't been merged/released yet.
YAML
agpl-3.0
proversity-org/problem-builder,proversity-org/problem-builder,proversity-org/problem-builder
5a0ae7bc99ee0b40fe12262b041df8a748e5ac28
circle.yml
circle.yml
machine: node: version: 6.9.1 environment: # Fix issue with selenium-server in containers. # See http://github.com/SeleniumHQ/docker-selenium/issues/87 DBUS_SESSION_BUS_ADDRESS: /dev/null dependencies: override: - npm update cache_directories: - testapp/node_modules post: - npm run webdriver: background: true - cd testapp && npm update - npm run testapp: background: true test: override: - ./node_modules/.bin/gulp lint - npm test - npm run test:e2e
machine: node: version: 6.9.1 environment: # Fix issue with selenium-server in containers. # See http://github.com/SeleniumHQ/docker-selenium/issues/87 DBUS_SESSION_BUS_ADDRESS: /dev/null dependencies: override: - npm update cache_directories: - testapp/node_modules post: # Install the latest Chrome - curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb - sudo dpkg -i google-chrome.deb - sudo sed -i 's|HERE/chrome\"|HERE/chrome\" --disable-setuid-sandbox|g' /opt/google/chrome/google-chrome - rm google-chrome.deb - npm run webdriver: background: true - cd testapp && npm update - npm run testapp: background: true test: override: - ./node_modules/.bin/gulp lint - npm test - npm run test:e2e
Use the latest version of chrome on Circle
chore(ci): Use the latest version of chrome on Circle
YAML
mit
angular/blocking-proxy,angular/blocking-proxy,angular/blocking-proxy,angular/blocking-proxy
79489348ce1cded0ec83e12b01b266e8302a19bb
config/thin.sample.yml
config/thin.sample.yml
--- environment: production chdir: /apps/integrity address: 127.0.0.1 port: 8910 pid: /apps/integrity/thin.pid rackup: /apps/integrity/config.ru log: /apps/integrity/log/thin.log max_conns: 1024 timeout: 30 max_persistent_conns: 512 daemonize: true
--- environment: production chdir: /apps/integrity address: 127.0.0.1 port: 8910 pid: /apps/integrity/thin.pid rackup: /apps/integrity/config.ru log: /apps/integrity/log/thin.log max_conns: 1024 timeout: 30 max_persistent_conns: 512 daemonize: true servers: 2
Use 2 servers by default
Use 2 servers by default
YAML
mit
p/integrity,erik-escobedo/integrity,factorylabs/integrity,dkastner/prism_ci,integrity/integrity,erik-escobedo/integrity,p/integrity,faradayio/ci1,faradayio/ci1,forresty/integrity,forresty/integrity,factorylabs/integrity,integrity/integrity,integrity/integrity
2f9ca29e7467678189e6928639ce4f4446d38f35
circle.yml
circle.yml
--- machine: ruby: version: '2.2.3' test: override: - bundle exec rake ci
--- machine: ruby: version: '2.2.3' dependencies: pre: - gem install bundler test: override: - bundle exec rake ci
Add bundler to CircleCI config
Add bundler to CircleCI config
YAML
mit
mbj/devtools,zaidan/devtools
8ff36f5a63ba844c7ebb3c1e9149746dbe9a9a6f
.github/workflows/build.yml
.github/workflows/build.yml
name: websocket-client build and test on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - name: Check out source repository uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} environment uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Run local websockets echo server on port 8765 run: | pip3 install -U websockets asyncio python3 websocket/tests/echo-server.py - name: Build websocket-client & run tests run: | pip3 install -U pip setuptools wheel readme_renderer twine pytest python-socks python3 -c "import setuptools; print('Setup tools version'); print(setuptools.__version__)" pytest websocket/tests -v -rP python3 setup.py sdist twine check dist/* env: TEST_WITH_INTERNET: 1
name: websocket-client build and test on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: python-version: [3.7, 3.8, 3.9] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - name: Check out source repository uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} environment uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Run local websockets echo server on port 8765 (code is for Python 3.7+) run: | pip3 install -U websockets asyncio python3 websocket/tests/echo-server.py - name: Build websocket-client & run tests run: | pip3 install -U pip setuptools wheel readme_renderer twine pytest python-socks python3 -c "import setuptools; print('Setup tools version'); print(setuptools.__version__)" pytest websocket/tests -v -rP python3 setup.py sdist twine check dist/* env: TEST_WITH_INTERNET: 1
Remove Python 3.6 from CI for local echo server
Remove Python 3.6 from CI for local echo server
YAML
apache-2.0
websocket-client/websocket-client
646039f5cdd356fade9b19de9d729ce5ce9feab4
.github/workflows/maven.yml
.github/workflows/maven.yml
name: build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [ 8, 11, 17 ] steps: - uses: actions/checkout@v3 - name: Setup java uses: actions/[email protected] with: distribution: 'adopt' java-version: ${{ matrix.java }} - name: Build with Maven run: mvn -B package --file pom.xml
name: build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [ 8, 11, 17 ] steps: - uses: actions/checkout@v3 - name: Setup java uses: actions/[email protected] with: distribution: 'adopt' java-version: ${{ matrix.java }} - name: Build with Maven run: mvn -B package --file pom.xml
Update actions/setup-java action to v3.5.0
Update actions/setup-java action to v3.5.0
YAML
mit
dvare/dynamic-loader
0e863203321dda85e5f3e9adb1d613ec91bf58b3
packages/at/attoparsec-data.yaml
packages/at/attoparsec-data.yaml
homepage: https://github.com/nikita-volkov/attoparsec-data changelog-type: '' hash: 18bccd08da787e7dffbfd1e39e3edc76b498b77343337bbeb4d7497dd8590f4d test-bench-deps: {} maintainer: Nikita Volkov <[email protected]> synopsis: Parsers for the standard Haskell data types changelog: '' basic-deps: bytestring: ! '>=0.10 && <0.11' base-prelude: <2 base: <5 time: ! '>=1.4 && <2' text: ! '>=1 && <2' attoparsec-time: ==0.1.* attoparsec: ==0.13.* scientific: ! '>=0.2 && <0.4' all-versions: - '0.1.1.1' author: Nikita Volkov <[email protected]> latest: '0.1.1.1' description-type: haddock description: '' license-name: MIT
homepage: https://github.com/nikita-volkov/attoparsec-data changelog-type: '' hash: 2a91e30852ce3814293685b0ef8f18987a46c29b9a461fdecde9f8645835f90a test-bench-deps: {} maintainer: Nikita Volkov <[email protected]> synopsis: Parsers for the standard Haskell data types changelog: '' basic-deps: bytestring: ! '>=0.10 && <0.11' base-prelude: <2 base: <5 time: ! '>=1.4 && <2' text: ! '>=1 && <2' attoparsec-time: ==0.1.* attoparsec: ==0.13.* scientific: ! '>=0.2 && <0.4' all-versions: - '0.1.1.1' - '0.1.1.2' author: Nikita Volkov <[email protected]> latest: '0.1.1.2' description-type: haddock description: '' license-name: MIT
Update from Hackage at 2017-02-03T13:53:18Z
Update from Hackage at 2017-02-03T13:53:18Z
YAML
mit
commercialhaskell/all-cabal-metadata
c86bd65c0f8413abeed7be9ae37f17bc5125d1fe
container-images/tcib/base/os/swift-base/swift-proxy-server/swift-proxy-server.yaml
container-images/tcib/base/os/swift-base/swift-proxy-server/swift-proxy-server.yaml
tcib_actions: - run: dnf -y install {{ tcib_packages['common'] | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf - run: ln -s /usr/share/openstack-tripleo-common/healthcheck/swift-proxy /openstack/healthcheck && chmod a+rx /openstack/healthcheck - run: sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf && sed -i -r 's,^(Listen 443),#\1,' /etc/httpd/conf.d/ssl.conf tcib_packages: common: - httpd - mod_ssl - openstack-ceilometer-common - openstack-swift-proxy - python3-ceilometermiddleware tcib_user: swift
tcib_actions: - run: dnf -y install {{ tcib_packages['common'] | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf - run: ln -s /usr/share/openstack-tripleo-common/healthcheck/swift-proxy /openstack/healthcheck && chmod a+rx /openstack/healthcheck - run: sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf && sed -i -r 's,^(Listen 443),#\1,' /etc/httpd/conf.d/ssl.conf tcib_packages: common: - httpd - mod_ssl - openstack-swift-proxy - python3-ceilometermiddleware tcib_user: swift
Remove ceilometer-common from swift images
Remove ceilometer-common from swift images ... because the package is not really required. Depends-on: https://review.opendev.org/848544 Change-Id: Ie7fc33a7092a1f234a7ef30b235984b43be1aa81
YAML
apache-2.0
openstack/tripleo-common,openstack/tripleo-common
9fbcc8e42171aeb8f0daf59adf80ea2f0513c19d
roles/macvim/tasks/main.yml
roles/macvim/tasks/main.yml
- name: be sure MacVim is installed and updated homebrew: name=macvim state=latest options=with-lua,with-override-system-vim - name: be sure exuberant-ctags is installed and updated homebrew: name=ctags state=latest - name: be sure cmake is installed and updated homebrew: name=cmake state=latest - name: be sure vim configurations are updated git: [email protected]:renanivo/dotvim.git dest=~/.vim accept_hostkey=yes notify: - make dotVIM
- name: be sure MacVim is installed and updated homebrew: name=macvim state=latest - name: be sure exuberant-ctags is installed and updated homebrew: name=ctags state=latest - name: be sure cmake is installed and updated homebrew: name=cmake state=latest - name: be sure vim configurations are updated git: [email protected]:renanivo/dotvim.git dest=~/.vim accept_hostkey=yes notify: - make dotVIM
Remove options from macvim install
[macvim] Remove options from macvim install
YAML
mit
renanivo/playbooks
7ef742e0978453e3a8fdbf2b8c6713382896689d
catalog/HTML_Markup/template_engines.yml
catalog/HTML_Markup/template_engines.yml
name: Template Engines description: projects: - arbre - cadenza - curly-templates - deface - ember - erector - erubi - erubis - fortitude - faml - haml - hamlit - hammer_builder - handlebars_assets - inversion - judofyr/parkaby - liquid - markaby - markerb - mustache - PageTemplate - ruty - scottpersinger/laminate - slim - sweet-lang - tagz - temple - tilt - wlang
name: Template Engines description: projects: - arbre - cadenza - curly-templates - deface - ember - erector - erubi - erubis - faml - fortitude - haml - hamlit - hammer_builder - handlebars_assets - inversion - judofyr/parkaby - liquid - markaby - markerb - mustache - PageTemplate - ruty - scottpersinger/laminate - slim - sweet-lang - tagz - temple - tilt - wlang
Move faml up on the list
Move faml up on the list
YAML
mit
rubytoolbox/catalog
3b49a4ae4a1ad47d97d98b344c058fc73184b8d1
ansible/main.yml
ansible/main.yml
--- - hosts: all vars: cf_cli_version: "6.25.0" maven_version: "3.5.0" maven_checksum: "35c39251d2af99b6624d40d801f6ff02" sbt_version: "0.13.13" intellij_version: "2017.1" sts_version: "3.8.4" eclipse_version: "4.6.3" docker_compose_version: "1.12.0" atom_version: "1.15.0" gradle_version: "3.4.1" go_version: "1.8" compliance_masonry_version: "1.1.2" gather_facts: yes become: yes roles: - disable_auto_update - developer_packages - atom - docker_service - docker_compose - cf_cli - maven - sbt - gradle - intellij - sts - unity_desktop - go - postman - gitbook - compliance_masonry
--- - hosts: all vars: cf_cli_version: "6.26.0" maven_version: "3.5.0" maven_checksum: "35c39251d2af99b6624d40d801f6ff02" sbt_version: "0.13.13" intellij_version: "2017.1" sts_version: "3.8.4" eclipse_version: "4.6.3" docker_compose_version: "1.12.0" atom_version: "1.15.0" gradle_version: "3.4.1" go_version: "1.8" compliance_masonry_version: "1.1.2" gather_facts: yes become: yes roles: - disable_auto_update - developer_packages - atom - docker_service - docker_compose - cf_cli - maven - sbt - gradle - intellij - sts - unity_desktop - go - postman - gitbook - compliance_masonry
Update cf cli to 6.26.0
Update cf cli to 6.26.0
YAML
apache-2.0
cagiti/developer-environment
8b80ebaa5d01a866be3d729018a735dc735a069d
packages/le/lens-th-rewrite.yaml
packages/le/lens-th-rewrite.yaml
homepage: '' changelog-type: markdown hash: 3c9023a5f10e9edee5349b82fc2b346cfb31bdc294d0d04f50eb5ab0cb641b26 test-bench-deps: {} maintainer: [email protected] synopsis: Rewrites Template Haskell splices using the API changelog: | # Revision history for lens-th-rewrite ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. basic-deps: ghc: -any base: <5 lens: -any all-versions: - 0.1.0.0 author: David Johnson latest: 0.1.0.0 description-type: haddock description: A GHC plugin to perform source-to-source transformation on parsed Haskell, used to manually inline Template Haskell calls for lens. license-name: BSD-3-Clause
homepage: '' changelog-type: markdown hash: e86139d4ab8061c415b29b6ce06e9c09e30ed09073b0255a46488678f4570df9 test-bench-deps: {} maintainer: [email protected] synopsis: Rewrites Template Haskell splices using the API changelog: | # Revision history for lens-th-rewrite ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. basic-deps: ghc: -any base: <5 ghc-exactprint: -any lens: -any lens-th-rewrite: -any all-versions: - 0.1.0.0 - 0.3.0.0 author: David Johnson latest: 0.3.0.0 description-type: haddock description: A GHC plugin to perform source-to-source transformation on parsed Haskell, used to manually inline Template Haskell calls for lens. license-name: BSD-3-Clause
Update from Hackage at 2020-04-05T15:29:55Z
Update from Hackage at 2020-04-05T15:29:55Z
YAML
mit
commercialhaskell/all-cabal-metadata
451e75371e2c42cd0c6ae2759210dfbe3cf5223d
packages/sd/sdl2-compositor.yaml
packages/sd/sdl2-compositor.yaml
homepage: '' changelog-type: '' hash: 96986152f49766b946a5ea29ceba11df8226b8db64d527ab4f9e31c01cb8eb14 test-bench-deps: {} maintainer: [email protected] synopsis: image compositing with sdl2 - declarative style changelog: '' basic-deps: lrucache: ! '>=1.2' stm: ! '>=2.3' base: ! '>=4.8 && <5' text: -any sdl2: ! '>=2.0' lens: -any sdl2-ttf: ! '>=1' StateVar: -any linear: ! '>=1.19' transformers: ! '>=0.4' QuickCheck: -any all-versions: - '1.0' - '1.0.0.1' - '1.0.1' - '1.1' - '1.2.0.1' - '1.2.0.3' - '1.2.0.4' author: Sebastian Jordan latest: '1.2.0.4' description-type: haddock description: ! 'This package provides tools for simple image composition through the means of the SDL library, version 2. You can combine, translate, rotate, blend, modulate colors and draw in a declarative way.' license-name: GPL-3
homepage: '' changelog-type: '' hash: aa93307aac7a55ee70abbaa0a8b3b4392a238daf7015648fc050ac3a7fb1484e test-bench-deps: {} maintainer: [email protected] synopsis: image compositing with sdl2 - declarative style changelog: '' basic-deps: base: ! '>=4.8 && <4.9' sdl2: ==2.* linear: ==1.19.* transformers: ==0.4.* all-versions: - '1.0' - '1.0.0.1' - '1.0.1' - '1.1' author: Sebastian Jordan latest: '1.1' description-type: haddock description: ! 'This package provides tools for simple image composition through the means of the SDL library, version 2. You can combine, translate, rotate, blend, modulate colors and draw in a declarative way.' license-name: GPL-3
Update from Hackage at 2016-04-18T18:19:57+0000
Update from Hackage at 2016-04-18T18:19:57+0000
YAML
mit
commercialhaskell/all-cabal-metadata
5e8ce5c2feea5fbf41e6473598416be0a2229151
_data/navbar-default.yml
_data/navbar-default.yml
main: - title: Download url: '/download' - title: Documentation url: 'http://api.projectchrono.org' sub: - title: Chrono Development Branch url: 'http://api.projectchrono.org/development' - title: Chrono 3.0.0 url: 'http://api.projectchrono.org/3.0.0' - title: FAQ url: '/faq/' - title: PyChrono url: '/pychrono/' - title: Validation Studies url: '/validation/' - title: White Papers url: '/whitepapers/' - title: Movies url: '/gallery/' sub: - title: Gallery url: '/gallery/' - title: SBEL url: 'http://sbel.wisc.edu/Animations/' - title: On Vimeo url: 'https://vimeo.com/uwsbel' - title: News url: '/news/' - title: Forum url: '/forum/' - title: About url: '/about/' sub: - title: Quick Facts url: '/about/' - title: Current/Past Users url: '/testimonials/' - title: Consulting url: '/consulting/' # - title: Old Website # url: 'http://old.projectchrono.org' - title: Status url: '/status'
main: - title: Download url: '/download' - title: Documentation url: 'http://api.projectchrono.org' sub: - title: Chrono Development Branch url: 'http://api.projectchrono.org/development' - title: Chrono 4.0.0 url: 'http://api.projectchrono.org/4.0.0' - title: Chrono 3.0.0 url: 'http://api.projectchrono.org/3.0.0' - title: FAQ url: '/faq/' - title: PyChrono url: '/pychrono/' - title: Validation Studies url: '/validation/' - title: White Papers url: '/whitepapers/' - title: Movies url: '/gallery/' sub: - title: Gallery url: '/gallery/' - title: SBEL url: 'http://sbel.wisc.edu/Animations/' - title: On Vimeo url: 'https://vimeo.com/uwsbel' - title: News url: '/news/' - title: Forum url: '/forum/' - title: About url: '/about/' sub: - title: Quick Facts url: '/about/' - title: Current/Past Users url: '/testimonials/' - title: Consulting url: '/consulting/' # - title: Old Website # url: 'http://old.projectchrono.org' - title: Status url: '/status'
Add menu item for Chrono 4.0.0 documentation
Add menu item for Chrono 4.0.0 documentation
YAML
bsd-3-clause
projectchrono/chrono-website,projectchrono/chrono-website,projectchrono/chrono-website
c34bda172c4f9b83babbd7a603446020d4dc1084
scripts/post-provision/tasks/sorted/15-apache-missing-file-redirect.yml
scripts/post-provision/tasks/sorted/15-apache-missing-file-redirect.yml
--- - name: Add Apache redirect for missing files (WordPress). set_fact: # Apache vhost extra parameters to force redirect to https version. apache_vhosts_extra_parameters_site: | {{ apache_vhosts_extra_parameters_site | default('') }} <IfModule mod_rewrite.c> RewriteEngine on # Attempt to load files from production if # they're not in our local version RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule wp-content/uploads/(.*) \ {{ prod_uri }}/wp-content/uploads/$1 [NC,L] </IfModule> when: apache_redirect_missing_files | default(False) and drupalvm_webserver == 'apache' and project_type == 'wordpress' tags: - webserver - name: Run Apache role after changing vhost extra parameters. include_role: name: geerlingguy.apache when: apache_redirect_missing_files | default(False) and drupalvm_webserver == 'apache' tags: - webserver
--- - name: Add Apache redirect for missing files (Drupal). set_fact: # Apache vhost extra parameters to force redirect to https version. apache_vhosts_extra_parameters_site: | {{ apache_vhosts_extra_parameters_site | default('') }} <IfModule mod_rewrite.c> RewriteEngine on # Attempt to load files from production if # they're not in our local version RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule {{ drupal_file_public_path }}/(.*) \ {{ prod_uri }}/{{ drupal_file_public_path }}/$1 [NC,L] </IfModule> when: apache_redirect_missing_files | default(False) and drupalvm_webserver == 'apache' and project_type == 'drupal' tags: - webserver - name: Add Apache redirect for missing files (WordPress). set_fact: # Apache vhost extra parameters to force redirect to https version. apache_vhosts_extra_parameters_site: | {{ apache_vhosts_extra_parameters_site | default('') }} <IfModule mod_rewrite.c> RewriteEngine on # Attempt to load files from production if # they're not in our local version RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule wp-content/uploads/(.*) \ {{ prod_uri }}/wp-content/uploads/$1 [NC,L] </IfModule> when: apache_redirect_missing_files | default(False) and drupalvm_webserver == 'apache' and project_type == 'wordpress' tags: - webserver - name: Run Apache role after changing vhost extra parameters. include_role: name: geerlingguy.apache when: apache_redirect_missing_files | default(False) and drupalvm_webserver == 'apache' tags: - webserver
Add missing file redirect for Drupal
Add missing file redirect for Drupal
YAML
mit
kentr/drupal-vm,kentr/drupal-vm,kentr/drupal-vm,kentr/drupal-vm,kentr/drupal-vm
7c7e1232801ebabdae3e0fe8c6f7b11d6d60fafd
local-volume/helm/provisioner/templates/provisioner-service-account.yaml
local-volume/helm/provisioner/templates/provisioner-service-account.yaml
{{- if .Values.common.rbac }} apiVersion: v1 kind: ServiceAccount metadata: name: {{ .Values.daemonset.serviceAccount }} {{- end }}
{{- if .Values.common.rbac }} apiVersion: v1 kind: ServiceAccount metadata: name: {{ .Values.daemonset.serviceAccount }} namespace: {{ .Values.common.namespace }} {{- end }}
Add namespace to sa template
local-volume: Add namespace to sa template
YAML
apache-2.0
kubernetes-incubator/external-storage,kubernetes-incubator/external-storage,kubernetes-incubator/external-storage,humblec/external-storage,humblec/external-storage,humblec/external-storage
e94b8a92dd92983f53dcc2fa9c911e12d90b299c
data/nodes/spamd1-us-west.apache.org.yaml
data/nodes/spamd1-us-west.apache.org.yaml
--- classes: - collectd::plugin::postfix - pflogsumm - rbldnsd::client::setup - spamassassin::spamd - ssl::name::wildcard_apache_org postfix::server::clamav: 'true' postfix::server::clamav_enabled: 'true' postfix::server::inet_interfaces: 'all' postfix::server::postscreen: 'false' postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subversion.net,subversion.org' postfix::server::relayhost: '[hermes.apache.org]:2025' # As used by the spamassassin/templates/spamassasssin-default.erb # template - which creates /etc/default/spamassassin # This manages the daemon options spamassassin::spamd::allowedips: '10.40.0.8' spamassassin::spamd::listenip: '0.0.0.0' spamassassin::spamd::required_hits: '10'
--- classes: - collectd::plugin::postfix - pflogsumm - rbldnsd::client::setup - spamassassin::spamd - ssl::name::wildcard_apache_org postfix::server::clamav_enabled: 'true' postfix::server::inet_interfaces: 'all' postfix::server::postscreen: 'false' postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subversion.net,subversion.org' postfix::server::relayhost: '[hermes.apache.org]:2025' # As used by the spamassassin/templates/spamassasssin-default.erb # template - which creates /etc/default/spamassassin # This manages the daemon options spamassassin::spamd::allowedips: '10.40.0.8' spamassassin::spamd::listenip: '0.0.0.0' spamassassin::spamd::required_hits: '10'
Stop setting this var as it tries to pull in a non-existent module.
Stop setting this var as it tries to pull in a non-existent module.
YAML
apache-2.0
apache/infrastructure-puppet,apache/infrastructure-puppet,sebbASF/infrastructure-puppet,chtyim/infrastructure-puppet,sebbASF/infrastructure-puppet,apache/infrastructure-puppet,apache/infrastructure-puppet,stumped2/infrastructure-puppet,bdube/infrastructure-puppet,bdube/infrastructure-puppet,stumped2/infrastructure-puppet,stumped2/infrastructure-puppet,sebbASF/infrastructure-puppet,apache/infrastructure-puppet,sebbASF/infrastructure-puppet,sebbASF/infrastructure-puppet,bdube/infrastructure-puppet,apache/infrastructure-puppet,chtyim/infrastructure-puppet,bdube/infrastructure-puppet,sebbASF/infrastructure-puppet,sebbASF/infrastructure-puppet,chtyim/infrastructure-puppet,apache/infrastructure-puppet,bdube/infrastructure-puppet,stumped2/infrastructure-puppet,chtyim/infrastructure-puppet,stumped2/infrastructure-puppet,bdube/infrastructure-puppet,stumped2/infrastructure-puppet,sebbASF/infrastructure-puppet,chtyim/infrastructure-puppet,chtyim/infrastructure-puppet
aedb0c81cd415e8f67ac753d184d0f4dc19a9df7
packages/ha/Hastodon.yaml
packages/ha/Hastodon.yaml
homepage: https://github.com/syucream/hastodon changelog-type: '' hash: 00d9b44af85484208c0103dfdc6bad9b1560f1b0fd8ff726546f2280b925f4b6 test-bench-deps: {} maintainer: [email protected] synopsis: mastodon client module for Haskell changelog: '' basic-deps: http-client: -any MissingH: -any bytestring: -any base: ! '>=4.5 && <5' text: -any mime-types: -any http-conduit: -any http-types: -any aeson: -any all-versions: - '0.0.1' - '0.0.2' - '0.1.0' - '0.2.0' - '0.3.1' author: Ryo Okubo latest: '0.3.1' description-type: haddock description: mastodon client module for Haskell license-name: MIT
homepage: https://github.com/syucream/hastodon changelog-type: '' hash: 6beff70122628e0005220ac80bdf2a60d82e0b6b865aa16c7002ee831d0c6f7d test-bench-deps: {} maintainer: [email protected] synopsis: mastodon client module for Haskell changelog: '' basic-deps: http-client: -any MissingH: -any bytestring: -any base: ! '>=4.5 && <5' text: -any mime-types: -any http-conduit: -any http-types: -any aeson: -any all-versions: - '0.0.1' - '0.0.2' - '0.1.0' - '0.2.0' - '0.3.1' - '0.3.2' author: Ryo Okubo latest: '0.3.2' description-type: haddock description: mastodon client module for Haskell license-name: MIT
Update from Hackage at 2018-04-18T15:30:20Z
Update from Hackage at 2018-04-18T15:30:20Z
YAML
mit
commercialhaskell/all-cabal-metadata
e51cecbcc44e5378b2481fbc6f3a3bf4a9b9874b
doc/travis-simple.yml
doc/travis-simple.yml
# This is the simple Travis configuration, which is intended for use # on applications which do not require cross-platform and # multiple-GHC-version support. For more information and other # options, see: # # https://docs.haskellstack.org/en/stable/travis_ci/ # # Copy these contents into the root directory of your Github project in a file # named .travis.yml # Use new container infrastructure to enable caching sudo: false # Do not choose a language; we provide our own build tools. language: generic # Caching so the next build will be fast too. cache: directories: - $HOME/.stack # Ensure necessary system libraries are present addons: apt: packages: - libgmp-dev before_install: # Download and unpack the stack executable - mkdir -p ~/.local/bin - export PATH=$HOME/.local/bin:$PATH - travis_retry curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' install: # Build dependencies - stack --no-terminal --install-ghc test --only-dependencies script: # Build the package, its tests, and its docs and run the tests - stack --no-terminal test --haddock --no-haddock-deps
# This is the simple Travis configuration, which is intended for use # on applications which do not require cross-platform and # multiple-GHC-version support. For more information and other # options, see: # # https://docs.haskellstack.org/en/stable/travis_ci/ # # Copy these contents into the root directory of your Github project in a file # named .travis.yml # Choose a build environment dist: xenial # Do not choose a language; we provide our own build tools. language: generic # Caching so the next build will be fast too. cache: directories: - $HOME/.stack # Ensure necessary system libraries are present addons: apt: packages: - libgmp-dev before_install: # Download and unpack the stack executable - mkdir -p ~/.local/bin - export PATH=$HOME/.local/bin:$PATH - travis_retry curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' install: # Build dependencies - stack --no-terminal --install-ghc test --only-dependencies script: # Build the package, its tests, and its docs and run the tests - stack --no-terminal test --haddock --no-haddock-deps
Choose virtual machine based infrastructure
Choose virtual machine based infrastructure Travis CI is deprecating container based build environments. See https://blog.travis-ci.com/2018-10-04-combining-linux-infrastructures for more.
YAML
bsd-3-clause
juhp/stack,juhp/stack
d78bbd9cfacbc63aae76ce8f9cb744eb0003cd79
packages/ty/type-fun.yaml
packages/ty/type-fun.yaml
homepage: https://github.com/s9gf4ult/type-fun changelog-type: markdown hash: c1d80758607192a27140fc2c5ed6877fd3a12793ce30735a829f17171e7a7d49 test-bench-deps: base: -any type-fun: -any maintainer: [email protected] synopsis: Collection of widely reimplemented type families changelog: ! "# TODO\n* Add doctests\n* Add TyFun from singletons (or just depend from)?\n\n# CHANGELOG\n\n## 0.1.1\n### Fixed\n* Compilable with ghc-8.0.1\n\n## 0.1.0\n### Added\n* Type family `Substract` to remove elements of one list from another\n* Unsafe helper functions to relax constraints in some safe points. But we use\n `unsafeCoerce` so this functions are potentially just break constants\n### Changed\n* Compilable under ghc-7.8\n\n## 0.0.1\nFirst version\n" basic-deps: base: ! '>=4.7 && <5' all-versions: - 0.0.1 - 0.1.0 - 0.1.1 author: Aleksey Uimanov latest: 0.1.1 description-type: haddock description: '' license-name: BSD-3-Clause
homepage: https://github.com/s9gf4ult/type-fun changelog-type: markdown hash: c08422f9f9b326778d43063bc4dd3069cec336e15082b274953f3800d766b147 test-bench-deps: base: -any type-fun: -any maintainer: [email protected] synopsis: Collection of widely reimplemented type families changelog: | # TODO * Add doctests * Add TyFun from singletons (or just depend from)? # CHANGELOG ## 0.1.2 ### Added KnownPeano ## 0.1.1 ### Fixed * Compilable with ghc-8.0.1 ## 0.1.0 ### Added * Type family `Substract` to remove elements of one list from another * Unsafe helper functions to relax constraints in some safe points. But we use `unsafeCoerce` so this functions are potentially just break constants ### Changed * Compilable under ghc-7.8 ## 0.0.1 First version basic-deps: base: '>=4.7 && <5' all-versions: - 0.0.1 - 0.1.0 - 0.1.1 - 0.1.2 author: Aleksey Uimanov latest: 0.1.2 description-type: haddock description: '' license-name: BSD-3-Clause
Update from Hackage at 2020-10-11T17:13:49Z
Update from Hackage at 2020-10-11T17:13:49Z
YAML
mit
commercialhaskell/all-cabal-metadata
2925afc5e19a53b7825b30ee584e9b93bfdfaad5
build.yaml
build.yaml
repositories: remote: - https://repo.maven.apache.org/maven2 artifacts: javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0 gwt_user: com.google.gwt:gwt-user:jar:2.8.1
repositories: remote: - https://repo.maven.apache.org/maven2 artifacts: javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0 gwt_user: org.realityforge.com.google.gwt:gwt-user:jar:2.8.2-v20191108
Update the com.google.gwt dependency coordinates.
Update the com.google.gwt dependency coordinates.
YAML
apache-2.0
realityforge/gwt-cache-filter,realityforge/gwt-cache-filter,realityforge/gwt-cache-filter
91f861ef689cef071450d9e2ca0ddc345c2048a9
.github/workflows/issue-planned.yml
.github/workflows/issue-planned.yml
on: issues: {types: milestoned} jobs: apply-label: runs-on: ubuntu-latest steps: - uses: actions/[email protected] with: github-token: ${{github.token}} script: | github.issues.addLabels({...context.issue, labels: ['status: planned']})
on: issues: {types: milestoned} jobs: apply-label: name: Add label 'status planned' to issue when milestoned runs-on: ubuntu-latest steps: - uses: actions/[email protected] with: github-token: ${{github.token}} script: | github.issues.addLabels({...context.issue, labels: ['status: planned']})
Add name to apply label for milestoned issues
Add name to apply label for milestoned issues
YAML
apache-2.0
synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung
558d3ac4c7f31e21c9d545834b47ec547186550f
.github/workflows/pythonpackage.yml
.github/workflows/pythonpackage.yml
name: Python package on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install poetry poetry install --no-ansi - name: Lint with pylint run: | poetry run pip install pylint poetry run pylint --reports=y --exit-zero puresnmp - name: Test with pytest run: | poetry run pip install pytest poetry run pytest publish: runs-on: ubuntu-latest strategy: max-parallel: 1 matrix: python-version: [3.8] steps: - uses: actions/checkout@v1 - name: Build distribution if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') run: | pip install poetry poetry build - name: Publish package if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@e777b333 with: user: __token__ password: ${{ secrets.pypi_token }}
name: Python package on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [2.7, 3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e .[test] - name: Lint with pylint run: | pip install pylint pylint --reports=y --exit-zero puresnmp - name: Test with pytest run: | pip install pytest pytest publish: runs-on: ubuntu-latest strategy: max-parallel: 1 matrix: python-version: [3.8] steps: - uses: actions/checkout@v1 - name: Build distribution if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') run: | pip install wheel python setup.py sdist python setup.py bdist_wheel - name: Publish package if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@e777b333 with: user: __token__ password: ${{ secrets.pypi_token }}
Revert "Update github actions for poetry"
Revert "Update github actions for poetry" This reverts commit e033f4b577ce88fa5472f02c62085b028193315c.
YAML
mit
exhuma/puresnmp,exhuma/puresnmp
fa42268f387ddf0b5570e54ee1b1829690dd76a7
.github/workflows/run-all-tests.yml
.github/workflows/run-all-tests.yml
name: run-all-tests on: push: branches: - main jobs: run-tests: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/[email protected] - name: Setup CMake uses: jwlawson/[email protected] with: cmake-version: '3.23.x' - name: Build CMake project run: | cmake -S . -B build -DBUILD_TESTING=on cmake --build build - name: Run tests run: make -C build test
name: run-all-tests on: push: branches: - main jobs: run-tests: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/[email protected] - name: Setup CMake uses: jwlawson/[email protected] with: cmake-version: '3.23.x' - name: Build CMake project run: | cmake -S . -B build -DBUILD_TESTING=on cmake --build build - name: Run tests run: make -C build test
Remove empty lines from GA workflow.
Remove empty lines from GA workflow.
YAML
mit
kartikkumar/cppbase
870e4ee819d52f879f403550c943f9c97e8cadc4
playbooks/check-requirements.yml
playbooks/check-requirements.yml
--- - hosts: localhost gather_facts: no tasks: - name: check for security when: security_enabled is not defined or not security_enabled fail: msg: | Security is not enabled. Please run `security-setup` in the root directory and re-run this playbook with the `--extra-vars`/`-e` option pointing to your `security.yml` (e.g., `-e @security.yml`) # Change concurrently with the required ansible version in requirements.txt - name: check for compatible Ansible version when: ansible_version["string"] | version_compare("1.9.1", "<") or ansible_version["string"] | version_compare("2", ">=") fail: msg: | Your version of Ansible doesn't match the required version. Please install ansible-playbook with `pip install -r requirements.txt`. - hosts: all gather_facts: yes tasks: - name: check for compatible centos version when: ansible_distribution_version | version_compare('7.2', '<') fail: msg: | Your hosts don't appear to be running a compatible version of Centos. Please run the playbook playbooks/upgrade-packages.yml before continuing.
--- - hosts: localhost gather_facts: no tasks: - name: check for security when: security_enabled is not defined or not security_enabled fail: msg: | Security is not enabled. Please run `security-setup` in the root directory and re-run this playbook with the `--extra-vars`/`-e` option pointing to your `security.yml` (e.g., `-e @security.yml`) # Change concurrently with the required ansible version in requirements.txt - name: check for compatible Ansible version when: ansible_version["string"] | version_compare("1.9.1", "<") or ansible_version["string"] | version_compare("2", ">=") fail: msg: | Your version of Ansible doesn't match the required version. Please install ansible-playbook with `pip install -r requirements.txt`. - hosts: all gather_facts: yes tasks: - name: check for compatible centos version when: ansible_distribution_version | version_compare("7.2", "<") fail: msg: | Your hosts don't appear to be running a compatible version of Centos. Please run the playbook playbooks/upgrade-packages.yml before continuing. - name: check for compatible kernel version when: ansible_kernel | version_compare("3.10.0-327", "<") fail: msg: | Your hosts don't appear to be running a compatible version of the Linux kernel. Please run the playbook playbooks/upgrade-packages.yml before continuing.
Check kernel version for overlayfs support
Check kernel version for overlayfs support Closes #1052, #1046
YAML
apache-2.0
mantl/mantl,CiscoCloud/mantl,mantl/mantl,sehqlr/mantl,phnmnl/mantl,bitium/mantl,datascienceinc/mantl,CiscoCloud/mantl,bitium/mantl,ContainerSolutions/microservices-infrastructure,CiscoCloud/microservices-infrastructure,KaGeN101/mantl,phnmnl/mantl,ContainerSolutions/microservices-infrastructure,sehqlr/mantl,KaGeN101/mantl,datascienceinc/mantl,CiscoCloud/microservices-infrastructure
a008e0ae61ad385d52903cfc0f15d6ab623ac9be
_config_dev.yml
_config_dev.yml
exclude: # Exclude list and detail pages, since they rarely change and take a long time to build. - list - community-garden - farmers-market - food-pantry - grocery-store - supermarket # These files are unique to the “site” repository. - rakefile keep_files: # Keep the list and detail pages, if they exist. - list - community-garden - farmers-market - food-pantry - grocery-store - supermarket # These files are unique to the “foodoasisla.github.io” repository. - .nojekyll - .gitignore - .git
exclude: # Exclude list and detail pages, since they rarely change and take a long time to build. - list - community-garden - farmers-market - food-pantry - supermarket - grocery-store - store # These files are unique to the “site” repository. - rakefile keep_files: # Keep the list and detail pages, if they exist. - list - community-garden - farmers-market - food-pantry - supermarket - grocery-store - store # These files are unique to the “foodoasisla.github.io” repository. - .nojekyll - .gitignore - .git
Update config for misc grocery stores
Update config for misc grocery stores
YAML
mit
kathwang21/site,SomeRandom42/site,foodoasisla/site,gheulard/fichier,foodoasisla/site,SomeRandom42/site,gheulard/fichier,kathwang21/site
1c6e597b3281f7c52eb15151b144c87e8cc01a4e
roles/osxw.developer-atom/defaults/main.yml
roles/osxw.developer-atom/defaults/main.yml
--- brew_taps: [] npm_packages: - dockerlint - eslint - yaml-js - csslint brew_packages: - node cask_packages: - atom - font-inconsolata - font-source-code-pro - font-sauce-code-powerline atom_packages: - atomatigit - trailing-spaces - editorconfig - emmet - pigments - file-icons - tabularize - language-docker - language-twig - language-diff - react - docblockr - autocomplete-php - atom-autocomplete-php - atom-symfony2 - linter - linter-php - linter-phpcs - linter-phpmd - linter-js-yaml - linter-htmlhint - linter-csslint - linter-eslint - linter-jscs - linter-docker
--- brew_taps: [] npm_packages: - dockerlint - eslint - yaml-js - csslint brew_packages: - node cask_packages: - atom - font-inconsolata - font-source-code-pro - font-sauce-code-powerline atom_packages: - atomatigit - trailing-spaces - editorconfig - emmet - pigments - file-icons - tabularize - language-docker - language-twig - language-diff - language-nginx - react - docblockr - autocomplete-php - atom-autocomplete-php - atom-symfony2 - linter - linter-php - linter-phpcs - linter-phpmd - linter-js-yaml - linter-htmlhint - linter-csslint - linter-eslint - linter-jscs - linter-docker
Add nginx language to atom
Add nginx language to atom
YAML
mit
ansible-macos/macos-playbook,ansible-macos/macos-playbook,luishdez/osx-playbook
63b8f3515bd9b4ca0f954bb35b70a35ca66493d2
circle.yml
circle.yml
machine: pre: - curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.11.1 services: - docker dependencies: override: - sudo pip install --upgrade docker-compose - echo $GCLOUD_SERVICE_KEY | base64 --decode > ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update - sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud config set project gfts-wlox - sudo /opt/google-cloud-sdk/bin/gcloud docker pull gcr.io/gfts-wlox/bitcoin-classic test: override: - docker-compose up -d - sleep 30 - curl --retry 10 --retry-delay 5 -v http://localhost:38080 - curl --retry 10 --retry-delay 5 -v http://localhost:48080
machine: pre: - curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0 services: - docker dependencies: override: - sudo pip install --upgrade docker-compose - echo $GCLOUD_SERVICE_KEY | base64 --decode > ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update - sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud config set project gfts-wlox - sudo /opt/google-cloud-sdk/bin/gcloud docker pull gcr.io/gfts-wlox/bitcoin-classic test: override: - docker-compose up -d - sleep 30 - curl --retry 10 --retry-delay 5 -v http://localhost:38080 - curl --retry 10 --retry-delay 5 -v http://localhost:48080
Revert "Incremented to docker 1.11.1"
Revert "Incremented to docker 1.11.1" This reverts commit 69ec807f85b485cbd530cbe65be1e1698bfc1f6f.
YAML
apache-2.0
1btcxe/wlox,gfts/wlox,gfts/wlox,gfts/wlox,1btcxe/wlox,gfts/wlox,1btcxe/wlox,1btcxe/wlox