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
edd2c6a6fe99ca94399bdc1406ee5bc5fc526ea5
.travis.yml
.travis.yml
language: python python: - "3.4" os: - linux install: - pip install flake8 - pip install coveralls before_script: - "flake8 --show-source --max-line-length=80 --statistics --builtins=_ pubkey" script: - python setup.py install - python setup.py sdist - pubkey --help - pubkey --version - pubkey --debug --time 1 --key ./tests/id_rsa.pub - pubkey --debug --auto --time 1 --key ./tests/id_rsa.pub after_success: - coveralls deploy: branches: only: - deploy-test
language: python python: - "3.4" os: - linux install: - pip install flake8 - pip install coveralls before_script: - "flake8 --show-source --max-line-length=80 --statistics --builtins=_ pubkey" script: - python setup.py install - python setup.py sdist - pubkey --help - pubkey --version - pubkey --debug --time 1 --key ./tests/id_rsa.pub - pubkey --debug --auto --time 1 --key ./tests/id_rsa.pub after_success: - coveralls deploy: branches: only: - deploy-test - feature-travis - pubkey --version
Add minimal deployment test logic
Add minimal deployment test logic
YAML
mit
fxstein/pubkey
e51f75fcc3a4e38a8860ef3aa99075bb29607e30
.travis.yml
.travis.yml
sudo: required services: - docker env: DOCKER_COMPOSE_VERSION: 1.6.0 before_install: - sudo apt-get update - sudo apt-get install -qqy docker-engine - sudo rm /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin script: - docker-compose -f docker-compose-test.yml build - docker-compose -f docker-compose-test.yml run --rm -e $GITHUB_API_TOKEN -e $MAGE_ACCOUNT_PUBLIC_KEY -e $MAGE_ACCOUNT_PRIVATE_KEY magento2 magento
sudo: required services: - docker env: DOCKER_COMPOSE_VERSION: 1.6.0 before_install: - sudo apt-get update - Y | sudo apt-get install -qqy docker-engine - sudo rm /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin script: - docker-compose -f docker-compose-test.yml build - docker-compose -f docker-compose-test.yml run --rm -e $GITHUB_API_TOKEN -e $MAGE_ACCOUNT_PUBLIC_KEY -e $MAGE_ACCOUNT_PRIVATE_KEY magento2 magento
Test auto answer Y during docker update
Test auto answer Y during docker update
YAML
mit
sirateck/devops-magento2
e25e28b4d5c7dbf802abf397fa684a0a68324e24
.travis.yml
.travis.yml
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode7.3 install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail && xcodebuild test -workspace Example/BonMot.xcworkspace -scheme BonMot-Example -destination 'name=iPhone 6' ONLY_ACTIVE_ARCH=NO | xcpretty - set -o pipefail && xcodebuild test -workspace Example/BonMot.xcworkspace -scheme BonMot-Example -destination 'name=iPhone 4s' ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode7.3 install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: - set -o pipefail && xcodebuild test -workspace Example/BonMot.xcworkspace -scheme BonMot-Example -destination 'name=iPhone 6' ONLY_ACTIVE_ARCH=NO - set -o pipefail && xcodebuild test -workspace Example/BonMot.xcworkspace -scheme BonMot-Example -destination 'name=iPhone 4s' ONLY_ACTIVE_ARCH=NO - pod lib lint
Stop using xcpretty, which may be masking the reason behind the exit code 65 intermittent build failures.
Stop using xcpretty, which may be masking the reason behind the exit code 65 intermittent build failures.
YAML
mit
Raizlabs/BonMot,Raizlabs/BonMot,Raizlabs/BonMot
6d1f646ec7c5d4adf374ded876fe1f0649902a86
.travis.yml
.travis.yml
--- # Verify this with: http://lint.travis-ci.org/ language: ruby # Delete dependency locks for matrix builds. before_install: rm Gemfile.lock || true script: bundle exec rake test rvm: - 1.8.7 - 1.9.2 - 1.9.3 env: matrix: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.1.0" - PUPPET_VERSION="~> 3.2.0" - PUPPET_VERSION="~> 3.4.0" # Only notify for failed builds. notifications: email: on_success: never
--- # Verify this with: http://lint.travis-ci.org/ language: ruby # Delete dependency locks for matrix builds. before_install: rm Gemfile.lock || true script: bundle exec rake test rvm: - 1.9.3 env: matrix: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.1.0" - PUPPET_VERSION="~> 3.2.0" - PUPPET_VERSION="~> 3.4.0" # Only notify for failed builds. notifications: email: on_success: never
Remove older version of Ruby from Travis
Remove older version of Ruby from Travis Drop versions 1.8.7 and 1.9.2 from the Travis matrix, because the latest version of the `retriable` gem (which comes from Beaker) requires at least Ruby 1.9.3.
YAML
apache-2.0
gds-operations/puppet-graphite,gds-operations/puppet-graphite
c53ddcc8a56657f2baeaf6feee4796b7157580a9
.travis.yml
.travis.yml
sudo: false dist: trusty addons: apt: packages: - tidy - tcl - tk install: bundle install --without=benchmark rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3.4 - 2.4.1 - rbx-3.81 - ruby-head notifications: email: false
sudo: false dist: trusty addons: apt: packages: - tidy - tcl - tk install: bundle install --without=benchmark rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 - rbx-3.81 - ruby-head notifications: email: false
Test against new Ruby 2.5
[CI] Test against new Ruby 2.5
YAML
mit
kaneshin/redcarpet,vmg/redcarpet,increments/greenmat,fukayatsu/redcarpet,increments/greenmat,fukayatsu/redcarpet,fukayatsu/redcarpet,kaneshin/redcarpet,kaneshin/redcarpet,vmg/redcarpet,increments/greenmat,kaneshin/redcarpet,increments/greenmat,vmg/redcarpet,vmg/redcarpet,fukayatsu/redcarpet
ee86eebc25af816d48ae4200d0a0783a17919d50
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" - "0.11" - "0.12" - "4.0" - "4.1" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
sudo: false language: node_js node_js: - "0.10" - "0.11" - "0.12" - "4.0" - "4.1" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
YAML
mit
cliffano/bagofcli
cf8f7b6a38abe33ba8cd118542da42acf487b46d
.travis.yml
.travis.yml
rvm: - 1.9.2 - 1.8.7 branches: only: - 4.0.0 env: - DB=postgres - DB=mysql - DB=sqlite3 gemfile: - gemfiles/Gemfile.rails-3.0.rb - gemfiles/Gemfile.rails-3.1.rb script: "bundle exec rake db:reset db:up test"
rvm: - 1.9.2 - 1.8.7 - jruby branches: only: - 4.0.0 env: - DB=postgres - DB=mysql - DB=sqlite3 gemfile: - gemfiles/Gemfile.rails-3.0.rb - gemfiles/Gemfile.rails-3.1.rb script: "bundle exec rake db:reset db:up test"
Add JRuby to tested rubies
Add JRuby to tested rubies
YAML
mit
MatthewRDodds/friendly_id,sideci-sample/sideci-sample-friendly_id,tekin/friendly_id,Pathgather/friendly_id,kangkyu/friendly_id,onursarikaya/friendly_id,norman/friendly_id,Empact/friendly_id,zenhacks/friendly_id,joshsoftware/friendly_id,morsedigital/friendly_id,ThanhKhoaIT/friendly_id,ashagnanasekar/friendly_id,MAubreyK/friendly_id
e16f95cdd23ba2c549ed293ebf0f55ae5d5aad24
packages/pi/pipes-lzma.yaml
packages/pi/pipes-lzma.yaml
homepage: http://github.com/bgamari/pipes-lzma changelog-type: '' hash: e704705165de18fd9c7ae84fc12a2e8c9b6409da34c65f5579cd3d2431d3fbd2 test-bench-deps: {} maintainer: ben@smart-cactus.org synopsis: LZMA compressors and decompressors for the Pipes package changelog: '' basic-deps: bytestring: ==0.10.* base: ! '>=4.8 && <4.10' pipes-bytestring: -any pipes: ! '>=4.0 && <4.3' lzma: ! '>=0.0.0.1 && <0.1' pipes-lzma: -any QuickCheck: -any all-versions: - '0.1.0.0' author: Ben Gamari latest: '0.1.0.0' description-type: haddock description: ! 'This package provides a @pipes@ interface to the LZMA compression algorithm used by the @.xz@ file format.' license-name: BSD3
homepage: http://github.com/bgamari/pipes-lzma changelog-type: '' hash: 3e01e58f9dade8355a7dd2abc54a030001afb335064ac64cffb435f6ab13e443 test-bench-deps: {} maintainer: ben@smart-cactus.org synopsis: LZMA compressors and decompressors for the Pipes package changelog: '' basic-deps: bytestring: ==0.10.* base: ! '>=4.6 && <4.10' pipes-bytestring: -any pipes: ! '>=4.0 && <4.3' lzma: ! '>=0.0.0.1 && <0.1' pipes-lzma: -any QuickCheck: -any all-versions: - '0.1.0.0' author: Ben Gamari latest: '0.1.0.0' description-type: haddock description: ! 'This package provides a @pipes@ interface to the LZMA compression algorithm used by the @.xz@ file format.' license-name: BSD3
Update from Hackage at 2016-06-05T06:47:20+0000
Update from Hackage at 2016-06-05T06:47:20+0000
YAML
mit
commercialhaskell/all-cabal-metadata
48694fed52208a0d73345aaab844ded331cf5825
packages/qu/quiver-csv.yaml
packages/qu/quiver-csv.yaml
homepage: https://github.com/zadarnowski/quiver-csv changelog-type: '' hash: 45ed0aea590e7044c7fb958dadc2d45e2b9e72a7355aa28fe702a53c74111b3f test-bench-deps: {} maintainer: Patryk Zadarnowski <pat@jantar.org> synopsis: Quiver combinators for cellular CSV data processing changelog: '' basic-deps: bytestring: ! '>=0.10.6.0' base: ! '>=4.8 && <5' quiver-bytestring: ! '>=0.0.0.2' quiver: ! '>=0.0.0.11' data-cell: ! '>=1.0.0.2' all-versions: - '0.0.0.1' - '0.0.0.2' author: Patryk Zadarnowski latest: '0.0.0.2' description-type: haddock description: ! 'This library provides an efficient pipes-based implementation of a cellular CSV codec designed for fast streaming of data with guaranteed constant memory usage.' license-name: BSD3
homepage: https://github.com/zadarnowski/quiver-csv changelog-type: '' hash: dd389f7e765712ee78032d7146c17545dcddc1201083400435a9cd7f380bf06d test-bench-deps: {} maintainer: Patryk Zadarnowski <pat@jantar.org> synopsis: Quiver combinators for cellular CSV data processing changelog: '' basic-deps: bytestring: ! '>=0.10.6.0' base: ! '>=4.8 && <5' quiver-bytestring: ! '>=0.0.0.2' quiver: ! '>=0.0.0.11' data-cell: ! '>=1.0.0.2' all-versions: - '0.0.0.1' - '0.0.0.2' - '0.0.0.3' author: Patryk Zadarnowski latest: '0.0.0.3' description-type: haddock description: ! 'This library provides an efficient pipes-based implementation of a cellular CSV codec designed for fast streaming of data with guaranteed constant memory usage.' license-name: BSD3
Update from Hackage at 2015-08-04T02:18:37+0000
Update from Hackage at 2015-08-04T02:18:37+0000
YAML
mit
commercialhaskell/all-cabal-metadata
1e66b36943b46e91fe661629ab1886ed1659f71b
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - 6 - 8 - 10 - 11 os: - linux - osx script: - npm run ci
language: node_js sudo: false node_js: - 8 - 10 - 11 os: - linux - osx script: - npm run test
Fix why does Travis always fail on me
Fix why does Travis always fail on me Is it because we export an async function on index.js line 17 (and call a script that doesn't exist)
YAML
mit
davidmarkclements/0x
859a783ee1ec48a7b48a7e13386a1d0c05dc6115
.travis.yml
.travis.yml
--- language: ruby bundler_args: --without system_tests --jobs 3 --retry 3 script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'" sudo: false matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.6.0" - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.7.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" notifications: email: false
--- language: ruby bundler_args: --without system_tests --jobs 3 --retry 3 script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'" sudo: false matrix: fast_finish: true include: - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" notifications: email: false
Remove support for Puppet 2.7
Remove support for Puppet 2.7
YAML
apache-2.0
dhoppe/puppet-puppet,dhoppe/puppet-puppet
00b5cb670044e2bb52b25b0acb22a22643f2c9a3
packages/pl/ploterific.yaml
packages/pl/ploterific.yaml
homepage: http://github.com/GregorySchwartz/ploterific#readme changelog-type: '' hash: 9e2a85bff62e5c60159de48eb03ed4f050266991bd5e19b08ac1a9dce999dbef test-bench-deps: {} maintainer: gsch@pennmedicine.upenn.edu synopsis: Basic plotting of tabular data for the command line. changelog: '' basic-deps: bytestring: -any optparse-generic: -any base: '>=4.7 && <5' palette: -any text: -any containers: -any lens: -any cassava: -any mtl: -any ploterific: -any hvega: -any colour: -any hvega-theme: -any all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.1.0 - 0.2.0.0 author: Gregory W. Schwartz latest: 0.2.0.0 description-type: haddock description: A quick and easy way to plot tabular data from the command line. Meant for quick visualizations, not too customizable. license-name: GPL-3.0-only
homepage: http://github.com/GregorySchwartz/ploterific#readme changelog-type: '' hash: e46261efb88bf7d048306fea1b81a16ac7874ec85a11178bd02e9ef647306779 test-bench-deps: {} maintainer: gsch@pennmedicine.upenn.edu synopsis: Basic plotting of tabular data for the command line. changelog: '' basic-deps: bytestring: -any optparse-generic: -any base: '>=4.7 && <5' palette: -any text: -any containers: -any lens: -any cassava: -any mtl: -any ploterific: -any hvega: -any colour: -any hvega-theme: -any all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.1.0 - 0.2.0.0 - 0.2.1.0 author: Gregory W. Schwartz latest: 0.2.1.0 description-type: haddock description: A quick and easy way to plot tabular data from the command line. Meant for quick visualizations, not too customizable. license-name: GPL-3.0-only
Update from Hackage at 2021-05-20T15:29:26Z
Update from Hackage at 2021-05-20T15:29:26Z
YAML
mit
commercialhaskell/all-cabal-metadata
0956931c94d3ee3b4cfde386c2cd12aa04211c8c
packages/sd/sdl2-image.yaml
packages/sd/sdl2-image.yaml
homepage: '' changelog-type: markdown hash: 3ef2860a80d31d54c20ce50033f03a48d6e76ba41d7f4d61777fe88b29f8159a test-bench-deps: {} maintainer: cailei@live.com synopsis: Haskell binding to sdl2-image. changelog: ! '## v0.1.3.1 - add ''this'' change-log file ## v0.1.3.0 - bump dependency version to support sdl2 1.3 ' basic-deps: base: ! '>=4.6 && <4.8' sdl2: ! '>=1.0 && <1.4' all-versions: - '0.1.0.1' - '0.1.1.0' - '0.1.3.0' - '0.1.3.1' author: Cai Lei latest: '0.1.3.1' description-type: haddock description: Haskell binding to sdl2-image. license-name: MIT
homepage: '' changelog-type: markdown hash: 7d5c7c825727632ac1837672db01522aaff0819291f4794b8d9254ec8245d380 test-bench-deps: {} maintainer: cailei@live.com synopsis: Haskell binding to sdl2-image. changelog: ! '## v0.1.3.2 - add support for ''base-4.8'' ## v0.1.3.1 - add ''this'' change-log file ## v0.1.3.0 - bump dependency version to support sdl2 1.3 ' basic-deps: base: ! '>=4.6 && <4.9' sdl2: ! '>=1.0 && <1.4' all-versions: - '0.1.0.1' - '0.1.1.0' - '0.1.3.0' - '0.1.3.1' - '0.1.3.2' author: Cai Lei latest: '0.1.3.2' description-type: haddock description: Haskell binding to sdl2-image. license-name: MIT
Update from Hackage at 2015-07-08T11:19:16+0000
Update from Hackage at 2015-07-08T11:19:16+0000
YAML
mit
commercialhaskell/all-cabal-metadata
cc2891bb07f193bb98713b2b20c4403a572bc2df
.travis.yml
.travis.yml
language: "node_js" node_js: - "0.10" - "0.8" - "0.6" - "0.4" before_install: - '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true' - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-cov-to-coveralls"
language: "node_js" node_js: - "0.10" - "0.8" # - "0.6" - "0.4" before_install: - '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true' - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-cov-to-coveralls"
Disable Node 0.6 on Travis CI.
Disable Node 0.6 on Travis CI.
YAML
mit
jaredhanson/node-multihash
f8464a190df0b38c7d879a5fd47371aff8989706
.travis.yml
.travis.yml
language: go go: - 1.9.3 - 1.8.6 sudo: false script: - go vet ./... - go test ./...
language: go go: - "1.10" - 1.9.4 sudo: false script: - go vet ./... - go test ./...
Build against 1.10 and 1.9.4
Build against 1.10 and 1.9.4
YAML
mit
TV4/mms
bbd3f7d2efc0cf769e851da851ffc7fddaaa5fca
.travis.yml
.travis.yml
sudo: false addons: postgresql: "9.4" language: node_js node_js: - 4.4.5 install: - rvm use 2.2.2 --install --binary --fuzzy - npm install elm --global - make install before_script: - bundle exec rake db:create db:migrate script: - bundle exec rake - make test notifications: email: false
sudo: false cache: bundler: true addons: postgresql: "9.4" language: node_js node_js: - 4.4.5 install: - rvm use 2.2.2 --install --binary --fuzzy - npm install elm --global - make install before_script: - bundle exec rake db:create db:migrate script: - bundle exec rake - make test notifications: email: false
Add rubygem cache on CI
Add rubygem cache on CI
YAML
agpl-3.0
hackathing/tea-and-pronouns,hackathing/tea-and-pronouns,hackathing/tea-and-pronouns
c5ce7951322dacfa976a048435c3a6e1a2311376
.travis.yml
.travis.yml
language: ruby sudo: false cache: - bundler rvm: - 2.2.6 - 2.3.3 - 2.4.0 before_install: gem install bundler -v 1.10.6 env: matrix: - RAILS_VERSION="~> 4.2" - RAILS_VERSION="~> 5.0.0" matrix: exclude: - rvm: 2.4.0 env: RAILS_VERSION="~> 4.2" # Rails 4.2 depends on json gem 1.8. However it couldn't be built with Ruby 2.4.
language: ruby sudo: false cache: - bundler rvm: - 2.2.6 - 2.3.3 - 2.4.0 before_install: gem install bundler -v 1.10.6 env: matrix: - RAILS_VERSION="~> 4.2" - RAILS_VERSION="~> 5.0.0"
Test on Ruby 2.4.0 & Rails 4.2
Test on Ruby 2.4.0 & Rails 4.2 Now json gem 1.8.6 that works with Ruby 2.4.0 is released.
YAML
mit
ursm/json_api_params,ursm/json_api_params
2b353874ecf6d5675d758323a4577ccb01bc4538
.travis.yml
.travis.yml
language: node_js node_js: - '0.12' install: - npm install - bower install before_script: - chmod +x ./scripts/deploy.sh script: - gulp test - gulp docs:clean - gulp docs:build - gulp build after_success: - bash ./scripts/deploy.sh env: global: - GH_REF: github.com/fluanceit/angular-dashboard.git - GH_BOWER_REF: github.com/fluanceit/bower-angular-dashboard branches: only: - master
language: node_js node_js: - '6' install: - npm install - bower install before_script: - chmod +x ./scripts/deploy.sh script: - gulp test - gulp docs:clean - gulp docs:build - gulp build after_success: - bash ./scripts/deploy.sh env: global: - GH_REF: github.com/fluanceit/angular-dashboard.git - GH_BOWER_REF: github.com/fluanceit/bower-angular-dashboard branches: only: - master
Update nodejs to version 6
Update nodejs to version 6
YAML
apache-2.0
fluanceit/angular-dashboard,fluanceit/angular-dashboard,fluanceit/angular-dashboard
3bbf2fa737098c4b9dd3544d8be1abfe489edde7
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.8"
language: node_js node_js: - "0.10" # - "0.8"
Disable Travis 0.8 build until upstream bug fixed
Disable Travis 0.8 build until upstream bug fixed Cannot npm install grunt-contrib-jshint due to this https://github.com/Raynos/console-browserify/issues/6
YAML
apache-2.0
MADAR15/IoT-Modeler,ppillip/node-red,drwoods/node-red,fcollova/node-red,nuroglu/cloudgate,anusornc/node-red,cloudfoundry-community/node-red-cf-ready,btsimonh/node-red,knolleary/node-red,zcpara/robot_gui_program,fpt-software/seniot-data-workflow,Tizen-Sunfish/ehf-node-red,nuroglu/cloudgate,redconnect-io/node-red,lostinthestory/node-red,dojot/mashup,weitingchou/humix-think,the-osgarden/pi-nodered-osg,Kazuki-Nakanishi/node-red,lucciano/node-red,beni55/node-red,anusornc/node-red,whummer/node-red,mikestebbins/node-red,syzer/node-red,redconnect-io/node-red,udayanga91/node-red,coderofsalvation/node-red,zcpara/robot_gui_program,estbeetoo/beetoo-controller,anusornc/node-red,ddm/node-red,whoGloo/node-red,udayanga91/node-red,ddm/node-red,cgvarela/node-red,nosun/node-red,knolleary/node-red,fcollova/node-red,redcom/node-red-freeboard,drwoods/node-red,mikestebbins/node-red,iotcafe/node-red,syzer/node-red,Ubicall/node-red,dbuentello/node-red,whoGloo/node-red,MADAR15/IoT-Modeler,retailos/node-red,redcom/node-red-freeboard,modulexcite/node-red,HiroyasuNishiyama/node-red,augustnmonteiro/skills-visual-programming,avinod1987/NodeRed,dorado-lmz/node-red,kanki8086/node-red,namgk/node-red,codeaudit/node-red,rntdrts/node-red,avinod1987/Node-Red,codeaudit/node-red,HiroyasuNishiyama/node-red,michaelsteenkamp/node-red,Ubicall/node-red,drwoods/node-red,whoGloo/node-red,fcollova/node-red,michaelsteenkamp/node-red,dojot/mashup,redcom/node-red-freeboard,FlowDesigner/node-red,fcollova/node-red,ilc-opensource/mcf,avinod1987/NodeRed,olopez32/node-red,syzer/node-red,ty4tw/node-red,PaGury/node-red,gbraad/node-red,ddm/node-red,iotcafe/node-red,modulexcite/node-red,nuroglu/cloudgate,mw75/node-red,ChipSoftTech/HANDS2,rdrm2014/node-red,estbeetoo/beetoo-controller,augustnmonteiro/skills-visual-programming,monteslu/pagenodes,ddm/node-red,gbraad/node-red,dorado-lmz/node-red,Kazuki-Nakanishi/node-red,drwoods/node-red,wajnberg/node-red,btsimonh/node-red,dojot/mashup,avinod1987/Node-Red,ioglue/ioglue,coderofsalvation/node-red,PaGury/node-red,modulexcite/node-red,ppillip/node-red,FlowDesigner/node-red,michaelsteenkamp/node-red,kanki8086/node-red,wajnberg/node-red,Ubicall/node-red,whummer/node-red,dbuentello/node-red,emiloberg/node-red,Tizen-Sunfish/ehf-node-red,MADAR15/IoT-Modeler,cloudfoundry-community/node-red-cf-ready,augustnmonteiro/skills-visual-programming,lostinthestory/node-red,the-osgarden/pi-nodered-osg,FlowDesigner/node-red,zcpara/robot_gui_program,lucciano/node-red,codeaudit/node-red,cgvarela/node-red,retailos/node-red,coderofsalvation/node-red,darcy202/node-red,avinod1987/Node-Red,redconnect-io/node-red,iotcafe/node-red,the-osgarden/pi-nodered-osg,anusornc/node-red,xively/habanero,rntdrts/node-red,mw75/node-red,fpt-software/seniot-data-workflow,ChipSoftTech/HANDS2,olopez32/node-red,beni55/node-red,dbuentello/node-red,PaGury/node-red,beni55/node-red,zcpara/robot_gui_program,fpt-software/seniot-data-workflow,gbraad/node-red,giovannicuriel/mashup,nosun/node-red,ppillip/node-red,darcy202/node-red,ioglue/ioglue,ioglue/ioglue,knolleary/node-red,lostinthestory/node-red,kanki8086/node-red,fpt-software/seniot-data-workflow,lostinthestory/node-red,estbeetoo/beetoo-controller,dojot/mashup,xively/habanero,giovannicuriel/mashup,rdrm2014/node-red,codeaudit/node-red,Kazuki-Nakanishi/node-red,MaxXx1313/my-node-red,monteslu/pagenodes,avinod1987/NodeRed,mikestebbins/node-red,syzer/node-red,knolleary/node-red,xively/habanero,ty4tw/node-red,retailos/node-red,weitingchou/humix-think,beni55/node-red,nuroglu/cloudgate,avinod1987/NodeRed,nosun/node-red,weitingchou/humix-think,retailos/node-red,MaxXx1313/my-node-red,MaxXx1313/my-node-red,cgvarela/node-red,whummer/node-red,augustnmonteiro/skills-visual-programming,wajnberg/node-red,lucciano/node-red,udayanga91/node-red,node-red/node-red,dbuentello/node-red,whoGloo/node-red,ty4tw/node-red,redcom/node-red-freeboard,xively/habanero,namgk/node-red,node-red/node-red,rdrm2014/node-red,mw75/node-red,ppillip/node-red,weitingchou/humix-think,darcy202/node-red,mw75/node-red,HiroyasuNishiyama/node-red,mblackstock/node-red-contrib,lucciano/node-red,olopez32/node-red,cloudfoundry-community/node-red-cf-ready,mikestebbins/node-red,whummer/node-red,dorado-lmz/node-red,Kazuki-Nakanishi/node-red,giovannicuriel/mashup,olopez32/node-red,rdrm2014/node-red,dorado-lmz/node-red,coderofsalvation/node-red,nosun/node-red,Ubicall/node-red,modulexcite/node-red,giovannicuriel/mashup,emiloberg/node-red,kanki8086/node-red,michaelsteenkamp/node-red,wajnberg/node-red,PaGury/node-red,emiloberg/node-red,tak4hir0/node-red,estbeetoo/beetoo-controller,btsimonh/node-red,iotcafe/node-red,the-osgarden/pi-nodered-osg,rntdrts/node-red,cloudfoundry-community/node-red-cf-ready,tak4hir0/node-red,redconnect-io/node-red,mblackstock/node-red-contrib,MaxXx1313/my-node-red,gbraad/node-red,node-red/node-red,darcy202/node-red,ChipSoftTech/HANDS2,udayanga91/node-red,avinod1987/Node-Red,FlowDesigner/node-red,cgvarela/node-red,ChipSoftTech/HANDS2
afeabb50aa7c59d9823e587d74b47039fcb0f82a
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm ## Cache composer sudo: false cache: directories: - $HOME/.composer/cache install: - travis_retry composer install --prefer-dist --no-interaction script: vendor/bin/phpspec run
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 ## Cache composer sudo: false cache: directories: - $HOME/.composer/cache install: - travis_retry composer install --prefer-dist --no-interaction script: vendor/bin/phpspec run
Drop support for hhvm and add PHP 7.1 and 7.2
Drop support for hhvm and add PHP 7.1 and 7.2
YAML
mit
antonioribeiro/google2fa,antonioribeiro/google2fa
909cbfce303707f4fdba0546da31813e988ecf18
.travis.yml
.travis.yml
language: python python: - "2.7" env: - DJANGO_VERSION=1.4 - DJANGO_VERSION=1.5 - DJANGO_VERSION=1.6 - DJANGO_VERSION=1.7 install: - pip install -q Django==$DJANGO_VERSION - pip install -r requirements.txt - pip install . script: - make lint - make test
language: python python: - "2.7" env: - DJANGO_VERSION=1.4.19 - DJANGO_VERSION=1.5.12 - DJANGO_VERSION=1.6.10 - DJANGO_VERSION=1.7.5 install: - pip install -q Django==$DJANGO_VERSION - pip install -r requirements.txt - pip install . script: - make lint - make test
Use latest point releaes of Django for tests
Use latest point releaes of Django for tests
YAML
mit
AMeng/django-single-model-admin
7c3fb7e18aa388ec8830c6ca4639fb24bae7aa81
.travis.yml
.travis.yml
env: - GHCVER=7.4.2 CABALVER=1.16 - GHCVER=7.6.3 CABALVER=1.18 - GHCVER=head CABALVER=1.18 before_install: - sudo add-apt-repository -y ppa:hvr/ghc - sudo apt-get update - sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER hlint - cabal-$CABALVER update - cabal-$CABALVER install happy -j - export PATH=/opt/ghc/$GHCVER/bin:~/.cabal/bin:$PATH install: - cabal-$CABALVER install --only-dependencies --enable-tests --enable-benchmarks -j - ln -s $(which cabal-$CABALVER) ~/.cabal/bin/cabal script: - travis/script.sh - hlint src matrix: allow_failures: - env: GHCVER=head CABALVER=1.18 fast_finish: true
env: - GHCVER=7.4.2 CABALVER=1.16 - GHCVER=7.6.3 CABALVER=1.18 - GHCVER=head CABALVER=1.18 before_install: - sudo add-apt-repository -y ppa:hvr/ghc - sudo apt-get update - sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER hlint - cabal-$CABALVER update - cabal-$CABALVER install happy -j - export PATH=/opt/ghc/$GHCVER/bin:~/.cabal/bin:$PATH install: - cabal-$CABALVER install --only-dependencies --enable-tests --enable-benchmarks -j - sudo ln -s $(which cabal-$CABALVER) /usr/bin script: - travis/script.sh && cat log - hlint src matrix: allow_failures: - env: GHCVER=head CABALVER=1.18 fast_finish: true
Install cabal into /usr/bin and show server log
Install cabal into /usr/bin and show server log
YAML
bsd-3-clause
bennofs/ghc-server
2c7e2435804d17dda011114e23867581887898b4
.travis.yml
.travis.yml
language: ruby matrix: allow_failures: - rvm: jruby-19mode - rvm: jruby-20mode - rvm: rbx-2 fast_finish: true rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - jruby-19mode - jruby-20mode - rbx-2
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - 2.1.3 - 2.1.4 - 2.1.5 - 2.2.0 - jruby-19mode - rbx-2
Remove support for ruby < 1.9.3
Remove support for ruby < 1.9.3
YAML
mit
sermo/purview,jzaleski/purview
40109c646c4fb51ae7d463f0272e6c47b75dabc6
.travis.yml
.travis.yml
before_install: sudo apt-get install libzmq3-dev script: bundle exec rspec language: ruby rvm: - 1.9 - 2.0 - 2.1 - rbx-2 notifications: email: false irc: channels: - "chat.freenode.net#wires"
before_install: "git clone https://github.com/$LIBZMQ_REPO libzmq \ && cd libzmq \ && ./autogen.sh \ && ./configure --with-pgm \ && make \ && sudo make install \ && cd .." script: bundle exec rspec language: ruby rvm: - 1.9 - 2.0 - 2.1 - rbx-2 env: - LIBZMQ_REPO=zeromq/zeromq3-x - LIBZMQ_REPO=zeromq/zeromq4-x notifications: email: false irc: channels: - "chat.freenode.net#wires"
Add second dimension to Travis CI build matrix - libzmq version 3 and 4
Add second dimension to Travis CI build matrix - libzmq version 3 and 4
YAML
mit
jemc/0mq
2dd3cf47775edb9a2d2d2ba911d976656b56aa1a
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler rvm: - 2.3.1 - 2.2.5 - 2.1.9 addons: apt: packages: - libicu-dev before_script: - git config --global user.email "test@example.com" - git config --global user.name "Test"
language: ruby sudo: false cache: bundler rvm: - 2.4.1 - 2.3.3 - 2.2.6 - 2.1.9 addons: apt: packages: - libicu-dev before_script: - git config --global user.email "test@example.com" - git config --global user.name "Test"
Test with latest Ruby versions
Test with latest Ruby versions
YAML
mit
jbox-web/gitolite
8cfe73bb206c1413fa05e531d9979e2dc6e41398
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 2.6.0-rc2 - 2.5.3 - 2.4.5 - 2.3.8 - jruby-9.2.5.0 before_install: - gem update --system - gem install bundler --no-document after_success: - bundle exec codeclimate-test-reporter
language: ruby cache: bundler sudo: false rvm: - 2.6.0 - 2.5.3 - 2.4.5 - 2.3.8 - jruby-9.2.5.0 before_install: - gem update --system - gem install bundler --no-document after_success: - bundle exec codeclimate-test-reporter
Test with Ruby 2.6 final
Test with Ruby 2.6 final
YAML
mit
jbox-web/simple_navigation_bootstrap
80186ba5cfc4830fc57a16eca0d404220006b939
.travis.yml
.travis.yml
language: bash sudo: required os: - osx osx_image: xcode11 script: - chmod a+x setup.sh && source setup.sh - command -v brew - command -v npm - command -v yarn - command -v node
language: bash sudo: required os: - osx osx_image: xcode11 script: - chmod a+x setup.sh && source setup.sh - command -v brew - command -v npm - command -v node
Remove command to check if yarn exists
Remove command to check if yarn exists
YAML
mit
ruchern/dotfiles,ruchern/dotfiles
3e139b7a81fa829c4687b4c9f21007079ac53a09
.travis.yml
.travis.yml
language: php # php compatibility php: - 5.6 - 7.0 - 7.1 - 7.2 # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false before_script: - travis_retry composer install --no-interaction - travis_retry php scripts/create-sqlite-from-raw.php script: - mkdir -p build/tests/ - vendor/bin/parallel-lint src/ scripts/ tests/ - vendor/bin/phpcs -sp src/ scripts/ tests/ - vendor/bin/phpunit --coverage-text --coverage-clover=build/tests/coverage.xml after_script: # upload to scrutinizer - | if [[ $TRAVIS_PHP_VERSION == '7.1' ]]; then wget https://scrutinizer-ci.com/ocular.phar php ocular.phar code-coverage:upload --format=php-clover build/tests/coverage.xml fi notifications: email: false
language: php # php compatibility php: - 5.6 - 7.0 - 7.1 - 7.2 # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false before_script: - travis_retry composer install --no-interaction --prefer-dist - travis_retry php scripts/create-sqlite-from-raw.php script: - mkdir -p build/tests/ - vendor/bin/parallel-lint src/ scripts/ tests/ - vendor/bin/phpcs -sp src/ scripts/ tests/ - vendor/bin/phpunit --coverage-text --coverage-clover=build/tests/coverage.xml after_script: # upload to scrutinizer - | if [[ $TRAVIS_PHP_VERSION == '7.1' ]]; then wget https://scrutinizer-ci.com/ocular.phar php ocular.phar code-coverage:upload --format=php-clover build/tests/coverage.xml fi notifications: email: false
Add --prefer-dist to composer install
Add --prefer-dist to composer install
YAML
mit
eclipxe13/sepomexphp
0b4c11ab509c10833c505c13f82c7a3240446576
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "0.11" - "0.10" - "4.1" - "4.0" before_install: - npm install -g bower - npm install - bower install -f # Run tests. script: - gulp lint - node_modules/karma/bin/karma start
language: node_js sudo: false node_js: - "0.11" - "0.10" - "4.1" - "4.0" before_install: - npm install -g bower - npm install - bower install -f # Run tests. script: - gulp lint - node_modules/karma/bin/karma start - bin/find-windows-line-breaks
Add check for windows line endings as part of CI build
Add check for windows line endings as part of CI build
YAML
mit
partnermarketing/pm-image-editor,partnermarketing/pm-image-crop,partnermarketing/pm-image-editor,partnermarketing/pm-image-editor,partnermarketing/pm-image-crop,partnermarketing/pm-image-crop
f8dfba62dad751c723aaf99a6f11444f4fe52b1b
.travis.yml
.travis.yml
sudo: required addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=smoke-package-stable-centos-6 - INSTANCE=smoke-package-stable-centos-7 - INSTANCE=smoke-package-stable-debian-9 - INSTANCE=smoke-package-stable-ubuntu-1604 - INSTANCE=smoke-war-stable-centos-6 - INSTANCE=smoke-war-stable-centos-7 - INSTANCE=smoke-war-stable-debian-8 - INSTANCE=smoke-war-stable-debian-9 - INSTANCE=smoke-war-stable-ubuntu-1404 - INSTANCE=smoke-war-stable-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
sudo: required addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: # - INSTANCE=smoke-package-stable-centos-6 # terribly slow; takes more than 45 minutes - INSTANCE=smoke-package-stable-centos-7 - INSTANCE=smoke-package-stable-debian-9 - INSTANCE=smoke-package-stable-ubuntu-1604 # - INSTANCE=smoke-war-stable-centos-6 # terribly slow; takes more than 45 minutes - INSTANCE=smoke-war-stable-centos-7 - INSTANCE=smoke-war-stable-debian-8 - INSTANCE=smoke-war-stable-debian-9 - INSTANCE=smoke-war-stable-ubuntu-1404 - INSTANCE=smoke-war-stable-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
Disable Centos 6 in Travis as it takes too long
Disable Centos 6 in Travis as it takes too long Signed-off-by: Josh Barker <88d7d21fa8a250d4e915db098658a3f5a42acdfb@gmail.com>
YAML
apache-2.0
chef-cookbooks/jenkins,opscode-cookbooks/jenkins,opscode-cookbooks/jenkins,gshively11/jenkins,chef-cookbooks/jenkins,gshively11/jenkins,chef-cookbooks/jenkins,opscode-cookbooks/jenkins,gshively11/jenkins
bd71d3f4fafef4bf2ef26f3108191692f6a7e930
.travis.yml
.travis.yml
language: python python: - "2.7" sudo: required dist: trusty addons: postgresql: "9.4" services: - postgresql virtualenv: system_site_packages: true # install prerequisites before_install: - sudo apt-get update -qq - sudo apt-get install -y build-essential python-numpy python-scipy libgdal1h libhdf5-dev libnetcdf-dev cython python-pandas python-h5py python-pip python-psycopg2 python-gdal - sudo pip install netCDF4 - psql -U postgres -c "create extension postgis" - psql -U postgres -c "create extension postgis_topology" - python bootstrap.py - ln -s /usr/bin/psql ./bin/psql - ln -s /usr/bin/raster2pgsql ./bin/raster2pgsql - ln -s /usr/bin/shp2pgsql ./bin/shp2pgsql # install install: - ./bin/buildout -c .travis-buildout.cfg # testing script: - ./bin/rheas -h
language: python python: - "2.7" sudo: required dist: trusty addons: postgresql: "9.4" services: - postgresql virtualenv: system_site_packages: true # install prerequisites before_install: - sudo apt-get update -qq - sudo apt-get install -y build-essential python-numpy python-scipy libgdal1h libhdf5-dev libnetcdf-dev cython postgresql-9.4-postgis-2.3 python-pandas python-h5py python-pip python-psycopg2 python-gdal - sudo pip install netCDF4 - psql -U postgres -c "create extension postgis" - psql -U postgres -c "create extension postgis_topology" - python bootstrap.py - ln -s /usr/bin/psql ./bin/psql - ln -s /usr/bin/raster2pgsql ./bin/raster2pgsql - ln -s /usr/bin/shp2pgsql ./bin/shp2pgsql # install install: - ./bin/buildout -c .travis-buildout.cfg # testing script: - ./bin/rheas -h
Fix for postgis extension error.
Fix for postgis extension error.
YAML
mit
nasa/RHEAS
addd8e9dd951b50d85650cfb73f1c9d786017866
.travis.yml
.travis.yml
language: python python: - "3.6" - "3.5" - "3.4" - "2.7" # Install dependencies install: pip install . # command to run tests script: py.test # Enable new Travis stack, should speed up builds sudo: false
language: python python: - "3.6" - "3.5" - "3.4" - "2.7" # Install dependencies install: - pip install tornado ptyprocess # command to run tests script: py.test # Enable new Travis stack, should speed up builds sudo: false
Update Travis config for flit
Update Travis config for flit
YAML
bsd-2-clause
takluyver/terminado,takluyver/terminado
6818a2d9f7a954e44faaba658d0402ee7ae1ed96
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - iojs - "0.12" - "0.10"
sudo: false language: node_js node_js: - iojs - "0.12"
Remove node.js 0.10 from CI
Remove node.js 0.10 from CI
YAML
mit
postcss/postcss-nested
dc532018585b03842ec84312ce8b03421f688284
.travis.yml
.travis.yml
language: rust sudo: false matrix: include: - rust: stable - os: osx osx_image: xcode9.2 - os: osx osx_image: xcode9.4 - os: osx osx_image: xcode10 - os: osx osx_image: xcode11 - rust: beta - rust: nightly - name: "master doc to gh-pages" rust: nightly script: - cargo doc --no-deps --all-features deploy: provider: script script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out) skip_cleanup: true on: branch: master script: - cargo test notifications: email: on_success: never
language: rust sudo: false matrix: include: - rust: stable - os: osx osx_image: xcode9.2 - os: osx osx_image: xcode11 - rust: beta - rust: nightly - name: "master doc to gh-pages" rust: nightly script: - cargo doc --no-deps --all-features deploy: provider: script script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out) skip_cleanup: true on: branch: master script: - cargo test notifications: email: on_success: never
Disable OSX images with utimensat bug
Disable OSX images with utimensat bug
YAML
apache-2.0
alexcrichton/filetime
324a91d6d35c2f28921d0f8920099aab695dc601
.travis.yml
.travis.yml
# https://app.shippable.com/projects/544620bbb904a4b21567c427 language: python python: - 2.7 - 3.3 - 3.4 cache: directories: - $HOME/.pip-cache/ install: - python setup.py install - pip install flake8 - pip install coveralls before_script: - mkdir -p shippable/codecoverage - mkdir -p shippable/testresults - flake8 script: - coverage run setup.py test after_success: - coverage report - coverage xml - coveralls - mv -v coverage.xml shippable/codecoverage/ - mv -v unittests.xml shippable/testresults/ notifications: slack: rooms: - organice:uPGToVwXE2IYAwn4hFFudPJ5#notifications
# https://app.shippable.com/projects/544620bbb904a4b21567c427 language: python python: - 2.7 cache: directories: - $HOME/.pip-cache/ install: - python setup.py install - pip install flake8 - pip install coveralls before_script: - mkdir -p shippable/codecoverage - mkdir -p shippable/testresults - flake8 script: - coverage run setup.py test after_success: - coverage report - coverage xml - coveralls - mv -v coverage.xml shippable/codecoverage/ - mv -v unittests.xml shippable/testresults/ notifications: slack: rooms: - organice:uPGToVwXE2IYAwn4hFFudPJ5#notifications
Exclude unsupported Python 3.3 and 3.4 from CI tests
Exclude unsupported Python 3.3 and 3.4 from CI tests (Reason: Packages such as Emencia newsletter are not Python 3k compatible)
YAML
apache-2.0
Organice/django-organice,jawaid/django-organice,Organice/django-organice,jawaid/django-organice
a8763f8d403ec6d92d2e493235851c3c5c769f36
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 install: composer install
language: php php: - 5.6 - 7.0 - 7.1 - 7.4 install: composer install
Update Travis dependencies tested against.
Update Travis dependencies tested against.
YAML
mit
beberlei/composer-monorepo-plugin
9681510de75437aaaab1a2d6aff76cc5e292f3ba
.travis.yml
.travis.yml
language: ruby dist: trusty sudo: false cache: bundler rvm: - 2.6.2 addons: apt: packages: - vim-gtk env: - TRAVIS_CI=1 before_install: - "gem install bundler" before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "vim --version"
language: ruby dist: stretch sudo: false cache: bundler rvm: - 2.6.2 addons: apt: update: true env: - TRAVIS_CI=1 before_install: - "gem install bundler" - "sudo apt-get -y install vim-gtk3" before_script: - "export DISPLAY=:99.0" - "vim --version" script: "xvfb-run bundle exec rspec spec"
Upgrade TravisCI to Debian Stretch and Vim 8
Upgrade TravisCI to Debian Stretch and Vim 8
YAML
mit
AndrewRadev/switch.vim
7f2a657acfdf5c9db406f15961abe147aa3ca314
.travis.yml
.travis.yml
sudo: required language: ruby cache: bundler rvm: - 2.3.0 services: - docker before_script: - ./bin/rake db:create RAILS_ENV=test - ./bin/rake ridgepole:apply RAILS_ENV=test after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; ./bin/rake docker:build && ./bin/rake docker:push ; fi
sudo: required language: ruby cache: bundler rvm: - 2.3.0 services: - docker before_script: - ./bin/rake db:create RAILS_ENV=test - ./bin/rake ridgepole:apply RAILS_ENV=test after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker pull hogelog/dmemo; ./bin/rake docker:build && ./bin/rake docker:push ; fi
Use public image for build cache
Use public image for build cache
YAML
mit
hogelog/dmemo,hogelog/dmemo,hogelog/dmemo,hogelog/dmemo
060ff2ae3e64c3edf18ee2b63900136f2f65381b
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '12' - '14' - '15' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
sudo: false language: node_js node_js: - '12' - '14' - '16' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
Build with Node.js 16 on Travis CI.
Build with Node.js 16 on Travis CI.
YAML
mit
bigeasy/compassion
6a5999ef8f8d9a541e57af9bd90865a355866a99
.travis.yml
.travis.yml
language: haskell ghc: - 8.6.5 sudo: false # Caching so the next build will be fast too. cache: directories: - $HOME/.cabal/packages - $HOME/.cabal/store - $HOME/.stack - $TRAVIS_BUILD_DIR/.stack-work 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' script: - stack init && stack --no-terminal --skip-ghc-check test
language: haskell sudo: false # Caching so the next build will be fast too. cache: directories: - $HOME/.cabal/packages - $HOME/.cabal/store - $HOME/.stack - $TRAVIS_BUILD_DIR/.stack-work 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' script: - stack init && stack --no-terminal --skip-ghc-check test branches: only: - master
Make CI only test master branch
Make CI only test master branch
YAML
mit
egison/egison
2db331e865d828de805b080f1bf2f57ab8364857
.travis.yml
.travis.yml
language: php php: - 5.6 - 7.0 - 7.1 # Use the newer stack for HHVM as HHVM does not support Precise - php: hhvm sudo: required dist: trusty group: edge before_install: - composer require phpunit/phpunit:4.8.* satooshi/php-coveralls:dev-master - composer install --dev script: - mkdir -p build/logs && ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - php vendor/bin/coveralls -v
language: php php: - 5.6 - 7.0 - 7.1 # Use the newer stack for HHVM as HHVM does not support Precise #- php: hhvm # sudo: required # dist: trusty # group: edge before_install: - composer require phpunit/phpunit:4.8.* satooshi/php-coveralls:dev-master - composer install --dev script: - mkdir -p build/logs && ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - php vendor/bin/coveralls -v
Remove hhvm (didn't work, revisit later)
Remove hhvm (didn't work, revisit later)
YAML
mit
jasonlam604/Stringizer
fc8a1afa2b6fed37cb16d80c2dd52f826942fcfa
.travis.yml
.travis.yml
language: python python: 2.7 install: "pip install pytest tox" env: - TOX_ENV=py27 - TOX_ENV=py32 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=pypy - TOX_ENV=docs script: - tox -e $TOX_ENV
language: python python: 2.7 install: "pip install pytest tox" env: - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=pypy script: - tox -e $TOX_ENV
Remove broken docs and python 3.2 builds from tox.
Remove broken docs and python 3.2 builds from tox.
YAML
mit
thirdkey-solutions/pycoin,Tetchain/pycoin,Tetchain/pycoin,XertroV/pycoin,richardkiss/pycoin,Pan0ram1x/pycoin,zsulocal/pycoin,tomholub/pycoin,Treefunder/pycoin,XertroV/pycoin,gitonio/pycoin,antiface/pycoin,Magicking/pycoin,Treefunder/pycoin,ptcrypto/pycoin,ptcrypto/pycoin,moocowmoo/pycoin,shayanb/pycoin,tomholub/pycoin,lekanovic/pycoin,moocowmoo/pycoin,Bluejudy/pycoin,shayanb/pycoin,mperklin/pycoin,antiface/pycoin,shivaenigma/pycoin,pycoin/pycoin,Pan0ram1x/pycoin,devrandom/pycoin,Bluejudy/pycoin,zsulocal/pycoin,devrandom/pycoin,richardkiss/pycoin,lekanovic/pycoin,Kefkius/pycoin,gitonio/pycoin,thirdkey-solutions/pycoin,Magicking/pycoin,shivaenigma/pycoin,Kefkius/pycoin,mperklin/pycoin,pycoin/pycoin
93256f610c4cb2bc99e1aeb4ede38f659bcbe547
.travis.yml
.travis.yml
language: node_js sudo: required # See http://docs.travis-ci.com/user/trusty-ci-environment/ dist: trusty node_js: - "stable" python: - "2.7" notifications: webhooks: - http://savage.nonblocking.io:8080/savage/travis addons: sauce_connect: true hosts: - ads.localhost - iframe.localhost apt: packages: - protobuf-compiler - python-protobuf before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm install -g gulp - pip install --user protobuf script: - gulp lint - gulp build - gulp dist - gulp presubmit # Unit tests with Travis' default chromium - gulp test --compiled # Integration tests with all saucelabs browsers - gulp test --saucelabs --integration --compiled # All unit tests with an old chrome (best we can do right now to pass tests # and not start relying on new features). # Disabled because it regressed. Better to run the other saucelabs tests. # - gulp test --saucelabs --oldchrome - gulp validator branches: only: - master - release - canary
language: node_js sudo: required # See http://docs.travis-ci.com/user/trusty-ci-environment/ dist: trusty node_js: - "stable" python: - "2.7" notifications: webhooks: - http://savage.nonblocking.io:8080/savage/travis addons: sauce_connect: true hosts: - ads.localhost - iframe.localhost apt: packages: - protobuf-compiler - python-protobuf before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm install -g gulp - pip install --user protobuf script: - gulp lint - gulp build - gulp dist - gulp presubmit # Unit tests with Travis' default chromium - gulp test --compiled # Integration tests with all saucelabs browsers - gulp test --saucelabs --integration --compiled # All unit tests with an old chrome (best we can do right now to pass tests # and not start relying on new features). # Disabled because it regressed. Better to run the other saucelabs tests. # - gulp test --saucelabs --oldchrome - gulp validator branches: only: - master - release - canary env: global: - NPM_CONFIG_PROGRESS="false"
Speed up npm installs on Travis
Speed up npm installs on Travis Re: https://github.com/npm/npm/issues/11283
YAML
apache-2.0
sriramkrish85/amphtml,widespace-os/amphtml,arealit/amphtml,Gregable/amphtml,nathangoulding/amphtml,prateekbh/amphtml,bpaduch/amphtml,yandex-pcode/amphtml,sortable/amphtml,BenDz/amphtml,triplelift/amphtml,criteo-forks/amphtml,BenDz/amphtml,mkhatib/amphtml,NataliaLKB/amphtml,honeybadgerdontcare/amphtml,donttrustthisbot/amphtml,yevheniiminin/amphtml,techhtml/amphtml,DAC-f1h-dev/amphtml,ericlindley-g/amphtml,clawr/amphtml,bpaduch/amphtml,arealit/amphtml,rlugojr/amphtml,ColombiaAnalytics/amphtml,techhtml/amphtml,dotandads/amphtml,comScore/amphtml,sortable/amphtml,criteo-forks/amphtml,koshka/amphtml,ColombiaAnalytics/amphtml,luciancrasovan/amphtml,zhouyx/amphtml,Meggin/amphtml,adup-tech/amphtml,sebastianbenz/amphtml,alanorozco/amphtml,clawr/amphtml,smartadserver/amphtml,DarXector/amphtml,avimehta/amphtml,gumgum/amphtml,kixer-com/amphtml,kixer-com/amphtml,simplereach/amphtml,mkhatib/amphtml,ampproject/amphtml,sriramkrish85/amphtml,smartadserver/amphtml,criteo-forks/amphtml,fullspeed-sp/amphtml,mkhatib/amphtml,erwinmombay/amphtml,cory-work/amphtml,media-net/amphtml,media-net/amphtml,taboola/amphtml,techhtml/amphtml,Gregable/amphtml,interspacejp/amphtml,wjfang/amphtml,jridgewell/amphtml,keithwrightbos/amphtml,camelburrito/amphtml,fullspeed-sp/amphtml,jasti/amphtml,comScore/amphtml,erwinmombay/amphtml,mlb7687/amphtml,adiant/amphtml,cory-work/amphtml,powdercloud/amphtml,spotxchange/amphtml,vmarteev/amphtml,luciancrasovan/amphtml,wjfang/amphtml,Lith/amphtml,plista/amphtml,ruturajv-media-net/amphtml,ADITION/amphtml,jdelhommeau/amphtml,adup-tech/amphtml,Mobusi-ads/amphtml,Re-lM/amphtml,simplereach/amphtml,jlucero-contentad/amphtml,adiant/amphtml,danielrozenberg/amphtml,pietergreyling/amphtml,jpettitt/amphtml,taboola/amphtml,nexxtv/amphtml,mlb7687/amphtml,kmh287/amphtml,BenDz/amphtml-atinternet,danielrozenberg/amphtml,sriramkrish85/amphtml,criteo-forks/amphtml,chaveznvg/amphtml,sklobovskaya/amphtml,ithinkihaveacat/amphtml,lzanol/amphtml,Gregable/amphtml,Adtoma/amphtml,vmarteev/amphtml,nexxtv/amphtml,chaveznvg/amphtml,interspacejp/amphtml,voyagegroup/amphtml,nekodo/amphtml,Meggin/amphtml,pietergreyling/amphtml,laterpay/amphtml,adiant/amphtml,yandex-pcode/amphtml,jridgewell/amphtml,arealit/amphtml,alanorozco/amphtml,ruturajv-media-net/amphtml,camelburrito/amphtml,NataliaLKB/amphtml,wjfang/amphtml,erwinmombay/amphtml,ericlindley-g/amphtml,jpettitt/amphtml,dvoytenko/amphtml,zhucl/amphtml,rsimha-amp/amphtml,tdrl/amphtml,donttrustthisbot/amphtml,BenDz/amphtml-atinternet,tdrl/amphtml,yieldmo/amphtml,Lith/amphtml,ruturajv-media-net/amphtml,laterpay/amphtml,mhc-gh/amphtml,JuliusThms/amphtml,DAC-f1h-dev/amphtml,koshka/amphtml,adup-tech/amphtml,JuliusThms/amphtml,src-code/amphtml,AaronCritchley/amphtml,widespace-os/amphtml,kixer-com/amphtml,yevheniiminin/amphtml,zhangsu/amphtml,rajkumarsrk/amphtml,jpettitt/amphtml,DistroScale/amphtml,BenDz/amphtml,triplelift/amphtml,devjsun/amphtml,fullspeed-sp/amphtml,cvializ/amphtml,bpaduch/amphtml,clawr/amphtml,plista/amphtml,JuliusThms/amphtml,widespace-os/amphtml,rsimha-amp/amphtml,amoad-amoe/amphtml,lannka/amphtml,cvializ/amphtml,AaronCritchley/amphtml,voyagegroup/amphtml,jasti/amphtml,Adtoma/amphtml,sharethrough/amphtml,adtechnology/amphtml,britice/amphtml,keithwrightbos/amphtml,techhtml/amphtml,nexxtv/amphtml,Gregable/amphtml,koshka/amphtml,fullspeed-sp/amphtml,zhucl/amphtml,rlugojr/amphtml,src-code/amphtml,vmarteev/amphtml,BenDz/amphtml,Mobusi-ads/amphtml,AaronCritchley/amphtml,jpettitt/amphtml,jlucero-contentad/amphtml,kmh287/amphtml,burtcorp/amphtml,prateekbh/amphtml,nekodo/amphtml,wjfang/amphtml,erwinmombay/amphtml,sriramkrish85/amphtml,sharethrough/amphtml,src-code/amphtml,dvoytenko/amphtml,yevheniiminin/amphtml,Re-lM/amphtml,vmarteev/amphtml,ithinkihaveacat/amphtml,DarXector/amphtml,ADITION/amphtml,ADITION/amphtml,kixer-com/amphtml,donttrustthisbot/amphtml,zhucl/amphtml,Mobusi-ads/amphtml,smartadserver/amphtml,zhucl/amphtml,yieldbot/amphtml,NataliaLKB/amphtml,media-net/amphtml,Adtoma/amphtml,camelburrito/amphtml,mhc-gh/amphtml,ampproject/amphtml,gumgum/amphtml,media-net/amphtml,rsimha-amp/amphtml,Mixpo/amphtml,laterpay/amphtml,comScore/amphtml,mhc-gh/amphtml,media-net/amphtml,comScore/amphtml,rlugojr/amphtml,alanorozco/amphtml,loic-seguin/amphtml,galeksic/amphtml,galeksic/amphtml,lannka/amphtml,arealit/amphtml,DarXector/amphtml,prateekbh/amphtml,DAC-f1h-dev/amphtml,sklobovskaya/amphtml,honeybadgerdontcare/amphtml,danielrozenberg/amphtml,yieldmo/amphtml,dvoytenko/amphtml,pietergreyling/amphtml,src-code/amphtml,cory-work/amphtml,pedjoni8/amphtml,spotxchange/amphtml,jpettitt/amphtml,zhangsu/amphtml,honeybadgerdontcare/amphtml,camelburrito/amphtml,laterpay/amphtml,shawnbuso/amphtml,JuliusThms/amphtml,techhtml/amphtml,zhangsu/amphtml,powdercloud/amphtml,jasti/amphtml,fullspeed-sp/amphtml,Re-lM/amphtml,jmadler/amphtml,chaveznvg/amphtml,jdelhommeau/amphtml,BrightcoveOS/amphtml,luciancrasovan/amphtml,triplelift/amphtml,arealit/amphtml,cvializ/amphtml,yieldbot/amphtml,yandex-pcode/amphtml,BrightcoveOS/amphtml,ADITION/amphtml,kmh287/amphtml,Mobusi-ads/amphtml,donttrustthisbot/amphtml,spotxchange/amphtml,Lith/amphtml,zhucl/amphtml,honeybadgerdontcare/amphtml,zhangsu/amphtml,yieldbot/amphtml,jpettitt/amphtml,pietergreyling/amphtml,nekodo/amphtml,rifler/amphtml,sklobovskaya/amphtml,JuliusThms/amphtml,Mixpo/amphtml,smartadserver/amphtml,loic-seguin/amphtml,yandex-pcode/amphtml,mhc-gh/amphtml,dvoytenko/amphtml,burtcorp/amphtml,taboola/amphtml,ecoron/amphtml,loic-seguin/amphtml,yieldmo/amphtml,dotandads/amphtml,DistroScale/amphtml,sebastianbenz/amphtml,DistroScale/amphtml,laterpay/amphtml,kamtschatka/amphtml,ruturajv-media-net/amphtml,yieldmo/amphtml,DAC-f1h-dev/amphtml,avimehta/amphtml,koshka/amphtml,jlucero-contentad/amphtml,yieldbot/amphtml,pedjoni8/amphtml,AaronCritchley/amphtml,jmadler/amphtml,ecoron/amphtml,alanorozco/amphtml,plista/amphtml,sebastianbenz/amphtml,rajkumarsrk/amphtml,kamtschatka/amphtml,Adtoma/amphtml,voyagegroup/amphtml,avimehta/amphtml,jlucero-contentad/amphtml,dvoytenko/amphtml,Adtoma/amphtml,sortable/amphtml,adtechnology/amphtml,voyagegroup/amphtml,tdrl/amphtml,NataliaLKB/amphtml,DarXector/amphtml,techhtml/amphtml,britice/amphtml,yandex-pcode/amphtml,tdrl/amphtml,jlucero-contentad/amphtml,luciancrasovan/amphtml,keithwrightbos/amphtml,jasti/amphtml,engtat/amphtml,burtcorp/amphtml,cvializ/amphtml,comScore/amphtml,lzanol/amphtml,DAC-f1h-dev/amphtml,dotandads/amphtml,devjsun/amphtml,gumgum/amphtml,shawnbuso/amphtml,sharethrough/amphtml,AaronCritchley/amphtml,nexxtv/amphtml,sebastianbenz/amphtml,jasti/amphtml,nathangoulding/amphtml,aghassemi/amphtml,gumgum/amphtml,jmadler/amphtml,kmh287/amphtml,kamtschatka/amphtml,jridgewell/amphtml,lannka/amphtml,kmh287/amphtml,yevheniiminin/amphtml,src-code/amphtml,yieldbot/amphtml,mlb7687/amphtml,clawr/amphtml,Lith/amphtml,alanorozco/amphtml,aghassemi/amphtml,pedjoni8/amphtml,rifler/amphtml,rifler/amphtml,Adtoma/amphtml,amoad-amoe/amphtml,powdercloud/amphtml,bpaduch/amphtml,devjsun/amphtml,danielrozenberg/amphtml,ericlindley-g/amphtml,rsimha-amp/amphtml,yieldbot/amphtml,yieldmo/amphtml,Meggin/amphtml,alanorozco/amphtml,chaveznvg/amphtml,rlugojr/amphtml,camelburrito/amphtml,cory-work/amphtml,lannka/amphtml,simplereach/amphtml,mhc-gh/amphtml,burtcorp/amphtml,pedjoni8/amphtml,rifler/amphtml,vmarteev/amphtml,burtcorp/amphtml,powdercloud/amphtml,jridgewell/amphtml,honeybadgerdontcare/amphtml,ampproject/amphtml,devjsun/amphtml,ColombiaAnalytics/amphtml,adtechnology/amphtml,nekodo/amphtml,powdercloud/amphtml,Gregable/amphtml,britice/amphtml,mhc-gh/amphtml,rsimha-amp/amphtml,mlb7687/amphtml,widespace-os/amphtml,comScore/amphtml,BenDz/amphtml,jpettitt/amphtml,Mobusi-ads/amphtml,zhangsu/amphtml,engtat/amphtml,rajkumarsrk/amphtml,danielrozenberg/amphtml,rlugojr/amphtml,jpettitt/amphtml,laterpay/amphtml,jmadler/amphtml,yandex-pcode/amphtml,jdelhommeau/amphtml,aghassemi/amphtml,pedjoni8/amphtml,prateekbh/amphtml,kamtschatka/amphtml,adiant/amphtml,donttrustthisbot/amphtml,taboola/amphtml,shawnbuso/amphtml,alanorozco/amphtml,voyagegroup/amphtml,galeksic/amphtml,ADITION/amphtml,tdrl/amphtml,BrightcoveOS/amphtml,zhouyx/amphtml,kamtschatka/amphtml,sortable/amphtml,burtcorp/amphtml,zhangsu/amphtml,sharethrough/amphtml,tlong2/amphtml,devjsun/amphtml,DistroScale/amphtml,nexxtv/amphtml,wjfang/amphtml,spotxchange/amphtml,mkhatib/amphtml,Gregable/amphtml,spotxchange/amphtml,yevheniiminin/amphtml,triplelift/amphtml,wjfang/amphtml,sklobovskaya/amphtml,DarXector/amphtml,fullspeed-sp/amphtml,galeksic/amphtml,dotandads/amphtml,rifler/amphtml,kixer-com/amphtml,DarXector/amphtml,amoad-amoe/amphtml,gumgum/amphtml,danielrozenberg/amphtml,adiant/amphtml,loic-seguin/amphtml,widespace-os/amphtml,galeksic/amphtml,zhouyx/amphtml,kixer-com/amphtml,rajkumarsrk/amphtml,koshka/amphtml,sklobovskaya/amphtml,ruturajv-media-net/amphtml,engtat/amphtml,kamtschatka/amphtml,nathangoulding/amphtml,camelburrito/amphtml,rajkumarsrk/amphtml,jmadler/amphtml,prateekbh/amphtml,criteo-forks/amphtml,Gregable/amphtml,gumgum/amphtml,BrightcoveOS/amphtml,powdercloud/amphtml,voyagegroup/amphtml,danielrozenberg/amphtml,interspacejp/amphtml,DistroScale/amphtml,sebastianbenz/amphtml,smartadserver/amphtml,jridgewell/amphtml,erwinmombay/amphtml,ecoron/amphtml,Mobusi-ads/amphtml,erwinmombay/amphtml,sklobovskaya/amphtml,keithwrightbos/amphtml,tlong2/amphtml,avimehta/amphtml,taboola/amphtml,jmadler/amphtml,ecoron/amphtml,donttrustthisbot/amphtml,prateekbh/amphtml,sortable/amphtml,sklobovskaya/amphtml,yieldmo/amphtml,mlb7687/amphtml,triplelift/amphtml,britice/amphtml,comScore/amphtml,ericlindley-g/amphtml,yieldmo/amphtml,danielrozenberg/amphtml,mhc-gh/amphtml,jdelhommeau/amphtml,ColombiaAnalytics/amphtml,donttrustthisbot/amphtml,avimehta/amphtml,widespace-os/amphtml,tlong2/amphtml,sriramkrish85/amphtml,pietergreyling/amphtml,BrightcoveOS/amphtml,zhucl/amphtml,media-net/amphtml,cvializ/amphtml,rajkumarsrk/amphtml,lzanol/amphtml,cory-work/amphtml,media-net/amphtml,kixer-com/amphtml,dotandads/amphtml,sortable/amphtml,clawr/amphtml,amoad-amoe/amphtml,sharethrough/amphtml,chaveznvg/amphtml,tdrl/amphtml,zhucl/amphtml,arealit/amphtml,lannka/amphtml,adtechnology/amphtml,media-net/amphtml,plista/amphtml,tlong2/amphtml,engtat/amphtml,ecoron/amphtml,mkhatib/amphtml,jasti/amphtml,Gregable/amphtml,mlb7687/amphtml,AaronCritchley/amphtml,honeybadgerdontcare/amphtml,tlong2/amphtml,adtechnology/amphtml,ithinkihaveacat/amphtml,engtat/amphtml,pietergreyling/amphtml,vmarteev/amphtml,cory-work/amphtml,voyagegroup/amphtml,mhc-gh/amphtml,Mixpo/amphtml,rlugojr/amphtml,avimehta/amphtml,jdelhommeau/amphtml,adup-tech/amphtml,bpaduch/amphtml,luciancrasovan/amphtml,ampproject/amphtml,ampproject/amphtml,amoad-amoe/amphtml,src-code/amphtml,Re-lM/amphtml,aghassemi/amphtml,koshka/amphtml,pedjoni8/amphtml,wjfang/amphtml,interspacejp/amphtml,ericlindley-g/amphtml,nathangoulding/amphtml,alanorozco/amphtml,jdelhommeau/amphtml,gumgum/amphtml,shawnbuso/amphtml,BenDz/amphtml,chaveznvg/amphtml,tlong2/amphtml,Lith/amphtml,aghassemi/amphtml,zhouyx/amphtml,taboola/amphtml,shawnbuso/amphtml,ruturajv-media-net/amphtml,keithwrightbos/amphtml,triplelift/amphtml,ampproject/amphtml,cvializ/amphtml,engtat/amphtml,mkhatib/amphtml,yevheniiminin/amphtml,BenDz/amphtml-atinternet,interspacejp/amphtml,luciancrasovan/amphtml,Lith/amphtml,JuliusThms/amphtml,camelburrito/amphtml,ericlindley-g/amphtml,lannka/amphtml,spotxchange/amphtml,rifler/amphtml,keithwrightbos/amphtml,rajkumarsrk/amphtml,honeybadgerdontcare/amphtml,nexxtv/amphtml,sharethrough/amphtml,ampproject/amphtml,aghassemi/amphtml,rsimha-amp/amphtml,rsimha-amp/amphtml,nexxtv/amphtml,bpaduch/amphtml,Mixpo/amphtml,DAC-f1h-dev/amphtml,smartadserver/amphtml,ecoron/amphtml,interspacejp/amphtml,bpaduch/amphtml,sebastianbenz/amphtml,cory-work/amphtml,adtechnology/amphtml,zhouyx/amphtml,engtat/amphtml,adup-tech/amphtml,lzanol/amphtml,adiant/amphtml,DistroScale/amphtml,taboola/amphtml,adiant/amphtml,dotandads/amphtml,devjsun/amphtml,clawr/amphtml,criteo-forks/amphtml,shawnbuso/amphtml,clawr/amphtml,jridgewell/amphtml,amoad-amoe/amphtml,arealit/amphtml,luciancrasovan/amphtml,dvoytenko/amphtml,prateekbh/amphtml,keithwrightbos/amphtml,zhouyx/amphtml,lannka/amphtml,jridgewell/amphtml,lzanol/amphtml,yandex-pcode/amphtml,Mixpo/amphtml,zhouyx/amphtml,vmarteev/amphtml,kmh287/amphtml,BrightcoveOS/amphtml,shawnbuso/amphtml,powdercloud/amphtml,Mixpo/amphtml,jlucero-contentad/amphtml,adup-tech/amphtml,sriramkrish85/amphtml,ithinkihaveacat/amphtml,ampproject/amphtml,lzanol/amphtml
a0dd4785438ac445affc178a0809f9e9a31966e0
.travis.yml
.travis.yml
language: node_js sudo: false addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-5 - gcc-5 env: CC=gcc-5 CXX=g++-5 node_js: - "4" - "5" - "6" - "7" - "8" - "9" - "10"
language: node_js sudo: false addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-5 - gcc-5 env: CC=gcc-5 CXX=g++-5 node_js: - "5" - "6" - "7" - "8" - "9" - "10"
Remove node 4 from CI
Remove node 4 from CI
YAML
mit
nevermnd/anitomy-js,nevermnd/anitomy-js,nevermnd/anitomy-js
e68a90491834dbf3e659e4f06fd3e4e339885426
.travis.yml
.travis.yml
sudo: false language: php php: - 5.5 - 5.6 - 7.0 env: matrix: - DRIVER_VERSION=1.1.1 addons: apt: sources: - mongodb-3.2-precise packages: - mongodb-org-server before_script: - pecl install -f mongodb-${DRIVER_VERSION} - composer install script: - ./vendor/bin/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
sudo: false language: php php: - 5.5 - 5.6 - 7.0 env: matrix: - DRIVER_VERSION=1.1.1 LEGACY_DRIVER_VERSION="" - DRIVER_VERSION=1.1.1 LEGACY_DRIVER_VERSION=1.6.12 addons: apt: sources: - mongodb-3.2-precise packages: - mongodb-org-server before_script: - pecl install -f mongodb-${DRIVER_VERSION} - if [ "x$LEGACY_DRIVER_VERSION" != "x" ]; then yes '' | pecl -q install -f mongo-${LEGACY_DRIVER_VERSION}; fi - composer install script: - ./vendor/bin/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
Add ext-mongo tests to build matrix
Add ext-mongo tests to build matrix
YAML
mit
alcaeus/mongo-php-adapter,researchgate/mongo-php-adapter,researchgate/mongo-php-adapter,alcaeus/mongo-php-adapter,researchgate/mongo-php-adapter
5f11de5bfa046ee3601d8fc5b3a236c437fa3a51
.travis.yml
.travis.yml
language: c sudo: required dist: trusty install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh script: bash -ex .travis-opam.sh env: global: - EXTRA_REMOTES="https://github.com/mirage/mirage-dev.git" - TESTS=false matrix: - OCAML_VERSION=4.03 EXTRA_DEPS="solo5-kernel-ukvm" - OCAML_VERSION=4.03 EXTRA_DEPS="solo5-kernel-virtio" - OCAML_VERSION=4.02 EXTRA_DEPS="solo5-kernel-ukvm" - OCAML_VERSION=4.02 EXTRA_DEPS="solo5-kernel-virtio"
language: c sudo: required dist: trusty install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh script: bash -ex .travis-opam.sh env: global: - EXTRA_REMOTES="https://github.com/mirage/mirage-dev.git" - TESTS=false matrix: - OCAML_VERSION=4.04 EXTRA_DEPS="solo5-kernel-ukvm" - OCAML_VERSION=4.04 EXTRA_DEPS="solo5-kernel-virtio" - OCAML_VERSION=4.03 EXTRA_DEPS="solo5-kernel-ukvm" - OCAML_VERSION=4.03 EXTRA_DEPS="solo5-kernel-virtio" - OCAML_VERSION=4.02 EXTRA_DEPS="solo5-kernel-ukvm" - OCAML_VERSION=4.02 EXTRA_DEPS="solo5-kernel-virtio"
Add OCaml 4.04 to matrix
Travis: Add OCaml 4.04 to matrix Not removing 4.02 for now since that would require an OPAM constraint and the package still builds with that version.
YAML
isc
mato/mirage-solo5,mato/mirage-solo5
8548c15f72b5b8c138fec7ea980edf035a60f612
.travis.yml
.travis.yml
--- language: ruby bundler_args: --without development before_install: rm Gemfile.lock || true rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 script: bundle exec rake test env: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.2.0" - PUPPET_VERSION="~> 3.3.0" - PUPPET_VERSION="~> 3.4.0" - PUPPET_VERSION="~> 3.5.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.6.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.7.4" STRICT_VARIABLES=yes matrix: exclude: - rvm: 1.9.3 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.0.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.2.0" STRICT_VARIABLES=yes - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.3.0" STRICT_VARIABLES=yes - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.4.0" STRICT_VARIABLES=yes
--- language: ruby bundler_args: --without development before_install: rm Gemfile.lock || true rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 script: bundle exec rake test env: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.2.0" - PUPPET_VERSION="~> 3.3.0" - PUPPET_VERSION="~> 3.4.0" - PUPPET_VERSION="~> 3.5.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.6.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.7.4" STRICT_VARIABLES=yes matrix: exclude: - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.2.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.3.0"
Exclude testing on ruby 2.1.0 with puppet 3.2.0 & 3.3.0
Exclude testing on ruby 2.1.0 with puppet 3.2.0 & 3.3.0
YAML
apache-2.0
yo61/puppet-user_group
cddc138696eda9f666f27217458363f5b87a97b8
.travis.yml
.travis.yml
dist: trusty sudo: required language: node_js node_js: - 8 addons: chrome: stable before_install: - "export CHROME_BIN=chromium-browser" - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" before_script: - "yarn -g gulp-cli" - "yarn -g bower" - "bower install"
dist: trusty sudo: required language: node_js node_js: - 8 addons: chrome: stable before_install: - "export CHROME_BIN=chromium-browser" - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" before_script: - "yarn global add gulp-cli" - "yarn global add bower" - "bower install"
Fix yarn commands in Travis CI config
Fix yarn commands in Travis CI config
YAML
mit
sorich87/bootstrap-tour,sorich87/bootstrap-tour
54cf2673f46fdc76b8c911a1c783f7b19a45439b
.travis.yml
.travis.yml
language: node_js node_js: - "0.10"
language: node_js node_js: - "0.10" script: - "./node_modules/.bin/gulp doc"
Build docs in Travis CI build.
Build docs in Travis CI build.
YAML
apache-2.0
Arnavion/libjass,joshuabrown-ellation/libjass,joshuabrown-ellation/libjass,Dador/libjass,Arnavion/libjass,Arnavion/libjass,Dador/libjass,Dador/libjass,joshuabrown-ellation/libjass
85f386778683abb8525e5b1422b1084b7445ffc8
.travis.yml
.travis.yml
language: python python: - "3.4" script: - python setup.py -q install - python tests.py
language: python python: - "2.7" - "3.4" script: - python setup.py -q install - python tests.py
Add Python 2.7 testing to Travis
Add Python 2.7 testing to Travis
YAML
mit
jbrudvik/yahooscraper
bc3f3f43e189d7b48ae787a727002544badddcda
playbooks/release/post.yaml
playbooks/release/post.yaml
- hosts: all roles: - remove-sshkey # TODO(fungi) re-add remove-launchpad-credentials here - remove-gpgkey
- hosts: all roles: - remove-sshkey - remove-launchpad-credentials - remove-gpgkey
Revert "Temporarily leave launchpad creds for release jobs"
Revert "Temporarily leave launchpad creds for release jobs" This reverts commit dc06e340d536afea8170a73a4580dbe8549be833. Troubleshooting is complete, and secure removal of the credentials can be safely restored now. Change-Id: I18ab248bfd32f7588c7bf041e7b98e32e1db494e
YAML
apache-2.0
openstack-infra/project-config,openstack-infra/project-config
1ad89d592eecd53d18787d599ba905677b6c0a9e
scripts/jenkins/jobs-ibs/templates/cloud-mkcloud-job-magnum-template.yaml
scripts/jenkins/jobs-ibs/templates/cloud-mkcloud-job-magnum-template.yaml
- job-template: name: 'cloud-mkcloud{version}-job-magnum-{arch}' node: cloud-trigger triggers: - timed: 'H H * * *' logrotate: numToKeep: 7 daysToKeep: -1 builders: - trigger-builds: - project: openstack-mkcloud condition: SUCCESS block: true current-parameters: true predefined-parameters: | TESTHEAD=1 cloudsource=develcloud{version} nodenumber=2 want_magnum=1 ostestroptions=" --regex '^magnum.tests.functional.api'" mkcloudtarget=all label={label}
- job-template: name: 'cloud-mkcloud{version}-job-magnum-{arch}' node: cloud-trigger triggers: - timed: 'H H * * *' logrotate: numToKeep: 7 daysToKeep: -1 builders: - trigger-builds: - project: openstack-mkcloud condition: SUCCESS block: true current-parameters: true predefined-parameters: | TESTHEAD=1 cloudsource=develcloud{version} nodenumber=3 nodenumbercompute=2 want_magnum=1 ostestroptions=" --regex '^magnum.tests.functional.api'" mkcloudtarget=all label={label}
Add more compute nodes for Magnum tempest job
Add more compute nodes for Magnum tempest job A single compute node is not enough to run magnum. So add another one.
YAML
apache-2.0
aspiers/automation,vmoravec/automation,SUSE-Cloud/automation,aspiers/automation,SUSE-Cloud/automation,gosipyan/automation,vmoravec/automation,aspiers/automation,vmoravec/automation,SUSE-Cloud/automation,SUSE-Cloud/automation,gosipyan/automation,aspiers/automation,gosipyan/automation,gosipyan/automation,vmoravec/automation
24373cdf9bdf4de4daa974ad3f001b7d527522dd
packages/bo/Boolean.yaml
packages/bo/Boolean.yaml
homepage: '' changelog-type: '' hash: a707a0f0fe9f2f6be156be1bdf5b76c6b9f52b3c10dc41cf4416dbb0b67d71dd test-bench-deps: {} maintainer: conal@conal.net synopsis: Generalized booleans and numbers changelog: '' basic-deps: base: <5 all-versions: - '0.0.0' - '0.0.1' - '0.1.0' - '0.1.1' - '0.1.2' - '0.2' - '0.2.1' - '0.2.2' - '0.2.3' author: Conal Elliott latest: '0.2.3' description-type: haddock description: ! 'Some classes for generalized boolean operations. Starting with 0.1.0, this package uses type families. Up to version 0.0.2, it used MPTCs with functional dependencies. My thanks to Andy Gill for suggesting & helping with the change. Thanks also to Alex Horsman for Data.Boolean.Overload and to Jan Bracker for Data.Boolean.Numbers. Copyright 2009-2013 Conal Elliott; BSD3 license.' license-name: BSD3
homepage: '' changelog-type: '' hash: a16b532a00eb3f29e8e588f3ca5c225370eef3dd963ee833d88b241ac680dc71 test-bench-deps: {} maintainer: conal@conal.net synopsis: Generalized booleans and numbers changelog: '' basic-deps: base: <5 all-versions: - '0.0.0' - '0.0.1' - '0.1.0' - '0.1.1' - '0.1.2' - '0.2' - '0.2.1' - '0.2.2' - '0.2.3' - '0.2.4' author: Conal Elliott latest: '0.2.4' description-type: haddock description: ! 'Some classes for generalized boolean operations. Starting with 0.1.0, this package uses type families. Up to version 0.0.2, it used MPTCs with functional dependencies. My thanks to Andy Gill for suggesting & helping with the change. Thanks also to Alex Horsman for Data.Boolean.Overload and to Jan Bracker for Data.Boolean.Numbers. Copyright 2009-2013 Conal Elliott; BSD3 license.' license-name: BSD3
Update from Hackage at 2017-02-19T22:13:29Z
Update from Hackage at 2017-02-19T22:13:29Z
YAML
mit
commercialhaskell/all-cabal-metadata
18775fda0f7a3c1d73b78a4f9bf8b4c37a304597
.builds/archlinux.yml
.builds/archlinux.yml
image: archlinux packages: - clang - freerdp - ffmpeg - libcap - libinput - libxkbcommon - mesa - meson - pixman - wayland - wayland-protocols - xcb-util-errors - xcb-util-image - xcb-util-wm - xorgproto sources: - https://github.com/swaywm/wlroots tasks: - setup: | cd wlroots CC=gcc meson build-gcc -Dauto_features=enabled CC=clang meson build-clang -Dauto_features=enabled - gcc: | cd wlroots/build-gcc ninja - clang: | cd wlroots/build-clang ninja
image: archlinux packages: - clang - freerdp - ffmpeg - libcap - libinput - libxkbcommon - mesa - meson - pixman - wayland - wayland-protocols - xcb-util-errors - xcb-util-image - xcb-util-wm sources: - https://github.com/swaywm/wlroots tasks: - setup: | cd wlroots CC=gcc meson build-gcc -Dauto_features=enabled CC=clang meson build-clang -Dauto_features=enabled - gcc: | cd wlroots/build-gcc ninja - clang: | cd wlroots/build-clang ninja
Revert "ci: add xorgproto dep to Arch build"
Revert "ci: add xorgproto dep to Arch build" This reverts commit 35bc3e662a34fe92a3de4e3768dc976f8ac2c242. Per [1], the dependency has been re-added and we shouldn't need to explicitly install it anymore. [1]: https://bugs.archlinux.org/task/64914
YAML
mit
swaywm/wlroots,ascent12/wlroots,SirCmpwn/wlroots,ascent12/wlroots,swaywm/wlroots
659b4df952d844c17647e56a6161bbe602b6ec23
.github/workflows/main.yml
.github/workflows/main.yml
name: Builda & deploy 🚀 on: push: branches: - master jobs: build: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Setup Node uses: actions/setup-node@v1 with: node-version: '10.16' - name: Install Node packages run: yarn install --production --pure-lockfile --non-interactive - name: Build assets for deployment run: yarn run deploy - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Bundle install run: | gem install bundler bundle install --jobs 4 --retry 3 - name: Jekyll build run: jekyll build --config "_config.yml,_config.prod.yml" - name: Deploy uses: easingthemes/ssh-deploy@v2.0.7 env: SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }} ARGS: '--checksum --delete -rltgoDzvO' SOURCE: '_site' REMOTE_HOST: ${{ secrets.REMOTE_HOST }} REMOTE_USER: ${{ secrets.REMOTE_USER }} TARGET: ${{ secrets.REMOTE_TARGET }}
name: Build & deploy 🚀 on: push: branches: - master jobs: build: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Setup Node uses: actions/setup-node@v1 with: node-version: '10.16' - name: Install Node packages run: yarn install --production --pure-lockfile --non-interactive - name: Build assets for deployment run: yarn run deploy - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Bundle install run: | gem install bundler bundle install --jobs 4 --retry 3 - name: Jekyll build run: jekyll build --config "_config.yml,_config.prod.yml" - name: Deploy uses: easingthemes/ssh-deploy@v2.0.7 env: SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} ARGS: '--checksum --delete -rltgoDzvO' SOURCE: '_site' REMOTE_HOST: ${{ secrets.REMOTE_HOST }} REMOTE_USER: ${{ secrets.REMOTE_USER }} TARGET: ${{ secrets.REMOTE_TARGET }}
Remove typo & fix key secret var
Remove typo & fix key secret var
YAML
mit
frippz/frippz.se,frippz/frippz.se,frippz/frippz.se
7d7164d7c79eb01934d7d6a792c8c36069667359
.github/workflows/main.yml
.github/workflows/main.yml
name: Test on: push: branches: - master pull_request: branches: - "*" jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8"] steps: - name: Install libgnutls28-dev run: | sudo apt update -q sudo apt install -q -y libgnutls28-dev libcurl4-gnutls-dev - uses: actions/checkout@v3.0.1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install project dependencies run: | pip install --upgrade pip pip install codecov tox tox-gh-actions - name: Run tests with tox run: tox - name: Run coverage run: codecov
name: Test on: push: branches: - master pull_request: branches: - "*" jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8"] steps: - name: Install libgnutls28-dev run: | sudo apt update -q sudo apt install -q -y libgnutls28-dev libcurl4-gnutls-dev - uses: actions/checkout@v3.0.1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - name: Install project dependencies run: | pip install --upgrade pip pip install codecov tox tox-gh-actions - name: Run tests with tox run: tox - name: Run coverage run: codecov
Bump actions/setup-python from 2 to 3.1.0
Bump actions/setup-python from 2 to 3.1.0 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 3.1.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v3.1.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@github.com>
YAML
mit
kevin1024/vcrpy,kevin1024/vcrpy
1da0bebfd8973b72f8c2696c70808261f247b98b
.github/workflows/main.yml
.github/workflows/main.yml
name: CI on: [push] jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v1 - name: Build run: .\build.cmd - name: Upload binaries uses: actions/upload-artifact@v1 with: name: bin path: bin push-to-myget: if: github.event_name == 'push' && github.ref == 'refs/heads/master' needs: build runs-on: windows-latest steps: - name: Download binaries uses: actions/download-artifact@v1 with: name: bin - name: Setup nuget uses: warrenbuckley/Setup-Nuget@v1 - run: | nuget source Add -Name "GitHub" -Source "https://nuget.pkg.github.com/terrajobst/index.json" -UserName terrajobst -Password ${{ secrets.GH_TOKEN }} nuget push bin\*.nupkg -Source "GitHub"
name: CI on: [push] jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v1 - name: Build run: .\build.cmd - name: Upload binaries uses: actions/upload-artifact@v1 with: name: bin path: bin push-to-myget: if: github.event_name == 'push' && github.ref == 'refs/heads/master' needs: build runs-on: windows-latest steps: - name: Download binaries uses: actions/download-artifact@v1 with: name: bin - name: Setup nuget uses: nuget/setup-nuget@v1 - run: | nuget source Add -Name "GitHub" -Source "https://nuget.pkg.github.com/terrajobst/index.json" -UserName terrajobst -Password ${{ secrets.GH_TOKEN }} nuget push bin\*.nupkg -Source "GitHub"
Move to official NuGet action
Move to official NuGet action
YAML
mit
terrajobst/nquery-vnext
5cc024268756c64f131094226a398b5c04d9806f
.github/workflows/ruby.yml
.github/workflows/ruby.yml
name: Ruby on: [push] jobs: build: runs-on: ubuntu-latest services: redis: image: redis ports: - 6379:6379 options: --entrypoint redis-server strategy: fail-fast: false matrix: ruby: [2.4, 2.5, 2.6, 2.7] steps: - uses: actions/checkout@v2 - name: Setup Ruby ${{ matrix.ruby }} uses: eregon/use-ruby-action@v1 with: ruby-version: ${{ matrix.ruby }} - uses: actions/cache@v1 with: path: vendor/bundle key: ${{ runner.os }}-ruby-version-${{ matrix.ruby }}-gems-${{ hashFiles('**/*[Gg]em[fs][ip][le][ec]') }} restore-keys: | ${{ runner.os }}-ruby-version-${{ matrix.ruby }}-gems- - name: Install dependencies run: | gem install bundler bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Test with RSpec env: REDIS_HOST: redis REDIS_PORT: ${{ job.services.redis.ports[6379] }} run: | bundle exec rspec spec
name: Ruby on: [push] jobs: build: runs-on: ${{ matrix.os }} services: redis: image: redis ports: - 6379:6379 options: --entrypoint redis-server strategy: fail-fast: false matrix: ruby: [2.4, 2.5, 2.6, 2.7] os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v2 - name: Setup Ruby ${{ matrix.ruby }} uses: eregon/use-ruby-action@v1 with: ruby-version: ${{ matrix.ruby }} - uses: actions/cache@v1 with: path: vendor/bundle key: ${{ matrix.os }}-ruby-version-${{ matrix.ruby }}-gems-${{ hashFiles('**/*[Gg]em[fs][ip][le][ec]') }} restore-keys: | ${{ matrix.os }}-ruby-version-${{ matrix.ruby }}-gems- - name: Install dependencies run: | gem install bundler bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Test with RSpec env: REDIS_HOST: redis REDIS_PORT: ${{ job.services.redis.ports[6379] }} run: | bundle exec rspec spec
Add macOS to the build matrix
Add macOS to the build matrix
YAML
mit
brutuscat/medusa
8e41fe87875b2f589fe054df071f586c57fddb2d
.goreleaser.yml
.goreleaser.yml
builds: - ldflags: -s -w -X main.commit={{.Commit}} -X main.date={{.Date}} env: - CGO_ENABLED=0 goos: - windows - darwin - linux goarch: - amd64 - 386 archive: format: tar.gz format_overrides: - goos: windows format: zip
builds: - ldflags: -s -w -X main.commit={{.Commit}} -X main.date={{.Date}} env: - CGO_ENABLED=0 goos: - windows - darwin - linux goarch: - amd64 - 386 archive: format: tar.gz format_overrides: - goos: windows format: zip files: - LICENSE - README.md
Revert "Avoid to include LICENSE file and README.md (binrep go binary includes LICENSE)"
Revert "Avoid to include LICENSE file and README.md (binrep go binary includes LICENSE)" This reverts commit b9dfd5e37952fa5f946b26ebc883ba0eec0fda7a.
YAML
mit
yuuki/binrep,yuuki/binrep
a1dac07592aa06c42660d6f67eb8d9551a977ba0
roles/nodepool/files/etc/nodepool/elements/bonnyci-nodepool/package-installs.yml
roles/nodepool/files/etc/nodepool/elements/bonnyci-nodepool/package-installs.yml
build-essential: python-dev: libssl-dev: libffi-dev:
build-essential: python-dev: python3-dev: libssl-dev: libffi-dev:
Add python3-dev to nodepool image
Add python3-dev to nodepool image Zuul specifies that the pep8 tox venv uses python3, so we need python3-dev to install the pep8 dependencies. Signed-off-by: K Jonathan Harker <4a32a1ac4cf9729ec1fbb65946748ef0085119ad@ibm.com>
YAML
apache-2.0
jamielennox/hoist,BonnyCI/hoist,jamielennox/hoist,SpamapS/hoist,BonnyCI/hoist,SpamapS/hoist
bc679bcccca17a3985243d71c3a5bac413bdd0b5
.forestry/front_matter/templates/data-testing.yml
.forestry/front_matter/templates/data-testing.yml
--- hide_body: false is_partial: false fields: - type: text name: title label: Title description: e.g. Display Title config: required: true - type: textarea name: description label: Description description: Example description config: wysiwyg: true schema: format: markdown data_files: - _data/material.yml
--- hide_body: false is_partial: false fields: - type: text name: title label: Title description: e.g. Display Title config: required: true data_files: - _data/material.yml
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
truecodersio/truecoders.io,truecodersio/truecoders.io,truecodersio/truecoders.io
3327cde8408c576e182664871e750d2ebe44b4a0
provisioning/vars/main.yml
provisioning/vars/main.yml
--- apache_create_vhosts: false mysql_root_password: '' drush_version: 7.0.0-alpha1 # The core version you want to use (e.g. 6.x, 7.x, 8.x). drupal_core_version: "8.x" # The path where Drupal will be downloaded and installed. drupal_core_path: "/var/www/drupal-{{ drupal_core_version }}-dev" # The resulting domain will be [domain].dev (with .dev appended). domain: "drupaltest" # Your Drupal site name. drupal_site_name: "D8 Test"
--- apache_create_vhosts: false mysql_root_password: '' drush_version: master # The core version you want to use (e.g. 6.x, 7.x, 8.x). drupal_core_version: "8.x" # The path where Drupal will be downloaded and installed. drupal_core_path: "/var/www/drupal-{{ drupal_core_version }}-dev" # The resulting domain will be [domain].dev (with .dev appended). domain: "drupaltest" # Your Drupal site name. drupal_site_name: "D8 Test"
Use drush master version (so it works with D8 master).
Use drush master version (so it works with D8 master).
YAML
mit
souleyHype/drupal-vm,WahilaCreative/drupal-vm,MelvinLoos/dev-vm,Eli-TW/Elis-Drupal8-Migrate-Playground,drupler/drupal-vm,Luciditi/drupal-vm,edwardchan/d8-drupalvm,edf/drupal-vm,thom8/drupal-vm,kalamuna/drupal-vm,kentr/drupal-vm,david-robinson-practiceweb/drupal-vm,calvez/drupal-vm,kentr/drupal-vm,akeemw/drupal-vm,nerdstein/drupal-vm,edwardchan/d8-drupalvm,kentr/drupal-vm,nateswart/drupal-vm,WahilaCreative/drupal-vm,esod/drupalseven-vm,ownsourcing/drupal-dev-vm,oxyc/drupal-vm,UCEAP-IT/drupal-vm,jaimeguzman/drupal-vm,UCEAP-IT/drupal-vm,nlisgo/drupal-vm,aczietlow/drupal-vm,nerdstein/drupal-vm,debugacademy/drupal-vm,TravisCarden/drupal-vm,srowlands/govcms-devkit,andreiashu/drupal-vm,nerdstein/drupal-vm,ravbaba/drupal-vm,geerlingguy/drupal-vm,Eli-TW/Elis-Drupal8-Migrate-Playground,thom8/drupal-vm,edf/drupal-vm,JorisVanEijden/drupal-vm,Luciditi/drupal-vm,kentr/drupal-vm,WahilaCreative/drupal-vm,opdavies/drupal-vm,msherron/drupal-vm,debugacademy/drupal-vm,nemeth/drupal-vm,rpkoller/drupal-vm,oxyc/drupal-vm,joestewart/drupal-vm,edwardchan/d8-drupalvm,debugacademy/drupal-vm,joestewart/drupal-vm,thom8/drupal-vm,esclapes/drupal-vm,MelvinLoos/dev-vm,akeemw/drupal-vm,Luciditi/drupal-vm,banzo/drupal-vm,UCEAP-IT/drupal-vm,cthos/drupal-vm,edwardchan/d8-drupalvm,Eli-TW/Elis-Drupal8-Migrate-Playground,kentr/drupal-vm,oxyc/drupal-vm,AndBicScadMedia/drupal-vm,kalamuna/drupal-vm,akvermaktr/drupal-vm,thinkshout/crm-training,ravindrasingh22/drupal-vm,marcelovani/drupal-vm,geerlingguy/drupal-vm,akeemw/drupal-vm,weitzman/drupal-vm,kalamuna/drupal-vm,geerlingguy/drupal-vm,edf/drupal-vm,frob/drupal-vm,bartvig/drupal-vm,aczietlow/drupal-vm,Decipher/drupal-vm,scottalan/drupal-vm,akeemw/drupal-vm,aczietlow/drupal-vm,debugacademy/drupal-vm,weitzman/drupal-vm,geerlingguy/drupal-vm,weitzman/drupal-vm,edwardchan/d8-drupalvm,joestewart/drupal-vm
feae3a61bfd12c413d99bcf4156df1311069b62f
_config/_config.yml
_config/_config.yml
Bigfork\SilverStripeOAuth\Client\Control\Controller: extensions: - Bigfork\SilverStripeOAuth\Client\Extension\ControllerExtension Injector: MemberMapperFactory: class: Bigfork\SilverStripeOAuth\Client\Factory\MemberMapperFactory
Bigfork\SilverStripeOAuth\Client\Authenticator\Authenticator: providers: [] Bigfork\SilverStripeOAuth\Client\Control\Controller: extensions: - Bigfork\SilverStripeOAuth\Client\Extension\ControllerExtension Injector: MemberMapperFactory: class: Bigfork\SilverStripeOAuth\Client\Factory\MemberMapperFactory
Fix missing config value causing test failures
Fix missing config value causing test failures
YAML
bsd-3-clause
bigfork/silverstripe-oauth-login
adcbe3790f0475d8b3cd42a16ab522155a62037a
_config.yml
_config.yml
# Site settings title: Shablog email: mail@sabhiram.com description: > A collection of ponderous ponderings baseurl: "" url: "http://sabhiram.com" twitter_username: shaba_abhiram github_username: sabhiram # Build settings kramdown: input: GFM defaults: - scope: path: "" type: "posts" values: layout: "post" openQuote: "<div class='sab-quote'>" closeQuote: "</div>"
# Site settings title: Shablog email: mail@sabhiram.com description: > A collection of ponderous ponderings baseurl: "" url: "http://sabhiram.com" twitter_username: shaba_abhiram github_username: sabhiram # Build settings kramdown: input: GFM defaults: - scope: path: "" type: "posts" values: layout: "post" openQuote: "<div class='sab-quote'>" closeQuote: "</div>" # This is here so we can enable the same defaults for "drafts" as well - scope: path: "" type: "drafts" values: layout: "post" openQuote: "<div class='sab-quote'>" closeQuote: "</div>"
Add open and close quote front matter for all drafts pages
Add open and close quote front matter for all drafts pages
YAML
mit
sabhiram/sabhiram.github.io,sabhiram/sabhiram.github.io
f7346cbe773bcc637b37b39b382a7da5600ed01b
catalog/Developer_Tools/Ruby_Core_Extensions.yml
catalog/Developer_Tools/Ruby_Core_Extensions.yml
name: Ruby Core Extensions description: Libraries that enhance Ruby's core classes like Hash or String with additional features projects: - activesupport - deep_tree - docile - extlib - facets - fast_underscore - hamster - hashie - hashy - named-parameters - optionalargument - pluginfactory - powerpack - rearmed - rubytree - rucursive - rumonade - scan_left - suggest_rb - tagen - vernacular - vernacular-ast - zucker
name: Ruby Core Extensions description: Libraries that enhance Ruby's core classes like Hash or String with additional features projects: - activesupport - deep_tree - docile - extlib - facets - fast_blank - fast_camelize - fast_parameterize - fast_underscore - hamster - hashie - hashy - named-parameters - optionalargument - pluginfactory - powerpack - rearmed - rubytree - rucursive - rumonade - scan_left - suggest_rb - tagen - vernacular - vernacular-ast - zucker
Add the other fast_* gems
Add the other fast_* gems
YAML
mit
rubytoolbox/catalog
90b92bc4680523f37132a081d0ce2fb5d4e967b2
_config.yml
_config.yml
# visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" exclude: ["README.md"] # files to exclude highlighter: rouge markdown: kramdown plugins: - jekyll-paginate - jekyll-seo-tag google_analytics : UA-72064362-1 defaults: - scope: path: "" # empty string for all files values: title: Bhushan Authankar description: Bhushan Vinod Authankar author: name: Bhushan Authankar email: bhushanauthankar@gmail.com github: archbloom twitter: archbloom instagram: archbloom pinterest: archbloom linkedin: bhushan-authankar-05953abb bio: It will change our Lives email_md5: rss_path: feed.xml categories_path: categories.html tags_path: tags.html about_path: about.html style_css_path: assets/css/style.css BASE_PATH:
# visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" exclude: ["README.md"] # files to exclude highlighter: rouge markdown: kramdown plugins: - jekyll-paginate - jekyll-seo-tag - jekyll-sitemap google_analytics : UA-72064362-1 permalink: /:title defaults: - scope: path: "" # empty string for all files values: title: Bhushan Authankar description: Bhushan Vinod Authankar author: name: Bhushan Authankar email: bhushanauthankar@gmail.com github: archbloom twitter: archbloom instagram: archbloom pinterest: archbloom linkedin: bhushan-authankar-05953abb bio: It will change our Lives email_md5: rss_path: feed.xml categories_path: categories.html tags_path: tags.html about_path: about.html style_css_path: assets/css/style.css BASE_PATH:
Add sitemap plugin to config
Add sitemap plugin to config
YAML
mit
archbloom/archbloom.github.io,archbloom/archbloom.github.io,archbloom/archbloom.github.io
1afa736c338c4055d7369e519facb6596b3f75f8
_config.yml
_config.yml
full_rebuild: true title: ranu2619 url: http://webuser.uni-weimar.de baseurl: /~ranu2619 description: "Eine Website mit Lösungen zu Übungsaufgaben, kleinen Tutorials und einer Linksammlung die im Rahmen des Medieninformatik-Studiums an der Bauhaus-Universität Weimar entsteht." permalink: /:title kramdown: input: GFM auto_ids: false sass: style: compressed # compress.html by Anatol Broder (http://jch.penibelst.de) compress_html: clippings: all comments: ["<!--", "-->"] endings: all ignore: envs: [local] defaults: - values: layout: "default" - scope: path: "" type: "pages" values: layout: "page" - scope: type: "posts" values: layout: "post"
full_rebuild: true title: ranu2619 url: http://webuser.uni-weimar.de baseurl: /ranu2619 description: "Eine Website mit Lösungen zu Übungsaufgaben, kleinen Tutorials und einer Linksammlung die im Rahmen des Medieninformatik-Studiums an der Bauhaus-Universität Weimar entsteht." permalink: /:title kramdown: input: GFM auto_ids: false sass: style: compressed # compress.html by Anatol Broder (http://jch.penibelst.de) compress_html: clippings: all comments: ["<!--", "-->"] endings: all ignore: envs: [local] defaults: - values: layout: "default" - scope: path: "" type: "pages" values: layout: "page" - scope: type: "posts" values: layout: "post"
Adjust config so it uses as baseurl
Adjust config so it uses as baseurl
YAML
mit
kleinfreund/ranu2619,kleinfreund/ranu2619,kleinfreund/ranu2619
adcdb012d1fcaaa36503e6091a73cb980f542230
_config.yml
_config.yml
safe: false #auto: false #server: false port: 4000 baseurl: /jekyll_demo url: http://localhost:4000 source: . destination: ./_site plugins_dir: ./_plugins future: true lsi: false #highlighter: pygments markdown: redcarpet permalink: date #maruku: # use_tex: false # use_divs: false # png_engine: blahtex # png_dir: images/latex # png_url: /images/latex rdiscount: extensions: [] redcarpet: extensions: ['tables', 'smart'] kramdown: auto_ids: true, footnote_nr: 1 entity_output: as_char toc_levels: 1..6 enable_coderay: false coderay: coderay_wrap: div coderay_line_numbers: inline coderay_line_numbers_start: 1 coderay_tab_width: 4 coderay_bold_every: 10 coderay_css: style
safe: false #auto: false #server: false port: 4000 baseurl: /jekyll_demo url: http://localhost:4000 source: . destination: ./_site plugins_dir: ./_plugins future: true lsi: false #highlighter: pygments markdown: kramdown permalink: date #maruku: # use_tex: false # use_divs: false # png_engine: blahtex # png_dir: images/latex # png_url: /images/latex rdiscount: extensions: [] redcarpet: extensions: ['tables', 'smart'] kramdown: auto_ids: true, footnote_nr: 1 entity_output: as_char toc_levels: 1..6 enable_coderay: false coderay: coderay_wrap: div coderay_line_numbers: inline coderay_line_numbers_start: 1 coderay_tab_width: 4 coderay_bold_every: 10 coderay_css: style
Change redcarpet to kramdown for gh-pages
Change redcarpet to kramdown for gh-pages
YAML
mit
jarthurgross/gcf-website
7cc241d2de466b66f9d0bbf2cea8ef5c763217a2
_config.yml
_config.yml
# visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" exclude: ["README.md"] # files to exclude highlighter: pygments markdown: kramdown defaults: - scope: path: "" # empty string for all files values: title: Enric Forn - Software engineering description: Stylish Jekyll Theme author: name: Enric Forn email: enricfj@gmail.com github: enricforn twitter: eforn pinterest: linkedin: enricforn bio: Personal blog. Software development, software automation, DevOps, Continuous Delivery, distributed teams email_md5: e4306225c5593de4b39fa7f66d49f81b rss_path: feed.xml categories_path: categories.html tags_path: tags.html BASE_PATH:
# visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" exclude: ["README.md"] # files to exclude highlighter: pygments markdown: kramdown defaults: - scope: path: "" # empty string for all files values: title: Enric Forn - Software engineering description: Stylish Jekyll Theme author: name: Enric Forn email: enricfj@gmail.com github: enricforn twitter: eforn pinterest: linkedin: enricforn bio: Personal blog. Software development, software automation, DevOps, Continuous Delivery, distributed teams email_md5: e4306225c5593de4b39fa7f66d49f81b comments : provider : disqus disqus : short_name : enricforn analytics : provider : google google : tracking_id : 'UA-5555555-7' rss_path: feed.xml categories_path: categories.html tags_path: tags.html BASE_PATH:
Add comment and google analytics configuration
Add comment and google analytics configuration
YAML
mit
enricforn/enricforn.github.io,enricforn/enricforn.github.io,enricforn/enricforn.github.io
cbfe3afc7615bc72c0cbc30ed3ed75e8277fc885
_config.yml
_config.yml
permalink: /:title/
permalink: /:title/ # prose configuration metadata: _posts: - name: "layout" field: element: hidden value: saying - name: "published" field: element: hidden value: true - name: "title" field: element: text
Add prose.io config to metadata.
Add prose.io config to metadata.
YAML
mit
parkr/yogi
c2fd0a774472e511635d1dda6cd28c90c2cfdf90
_config.yml
_config.yml
name: Your New Jekyll Site description: Blogging about stuffs meta_description: "Your New Jekyll Site, Blogging about stuffs" markdown: kramdown highlighter: pygments logo: false paginate: 15 baseurl: / domain_name: 'http://yourblog-domain.com' google_analytics: 'UA-XXXXXXXX-X' gems: [jekyll-paginate] # Details for the RSS feed generator url: 'blog url' author: 'Your Name'
name: Your New Jekyll Site description: Blogging about stuffs meta_description: "Your New Jekyll Site, Blogging about stuffs" markdown: kramdown highlighter: rouge logo: false paginate: 15 baseurl: / domain_name: 'http://yourblog-domain.com' google_analytics: 'UA-XXXXXXXX-X' plugins: [jekyll-paginate] # Details for the RSS feed generator url: 'blog url' author: 'Your Name'
Add support for Jekyll >= 3.5.0
Add support for Jekyll >= 3.5.0 And replace highlighter.
YAML
mit
timfeirg/timfeirg.github.io,rosario/kasper,rosario/kasper,timfeirg/timfeirg.github.io
93204e5a976fa76b812d78b19733971d665f5244
_config.yml
_config.yml
# Jekyll configuration whitelist: - jekyll-redirect-from - jekyll-github-metadata plugins: - jekyll-redirect-from - jekyll-github-metadata exclude: - Makefile - README.md - CONTRIBUTING.md - Gemfile - Gemfile.lock - CNAME - vendor - package.json - .babelrc - yarn.lock - package-lock.json - webpack.config.js - node_modules # Markdown highlighter: false markdown: kramdown kramdown: input: GFM hard_wrap: false parse_block_html: true syntax_highlighter_opts: disable: true # Defaults defaults: - scope: path: "" type: pages values: layout: "default" og_type: article type: article category: "Others" excerpt_separator: "<!--more-->" prism_languages: - jsx - bash - scss - css - elixir - ruby # Site info url: https://devhints.io title: Devhints.io cheatsheets # GitHub metadata # https://help.github.com/articles/repository-metadata-on-github-pages/ repository: rstacruz/cheatsheets
# Jekyll configuration whitelist: - jekyll-redirect-from - jekyll-github-metadata plugins: - jekyll-redirect-from - jekyll-github-metadata exclude: - Makefile - README.md - CONTRIBUTING.md - Gemfile - Gemfile.lock - CNAME - vendor - package.json - .babelrc - yarn.lock - package-lock.json - webpack.config.js - node_modules # Markdown highlighter: false markdown: kramdown kramdown: input: GFM hard_wrap: false parse_block_html: true syntax_highlighter_opts: disable: true # Defaults defaults: - scope: path: "" type: pages values: layout: "default" og_type: article type: article category: "Others" excerpt_separator: "<!--more-->" prism_languages: [] # Site info url: https://devhints.io title: Devhints.io cheatsheets # GitHub metadata # https://help.github.com/articles/repository-metadata-on-github-pages/ repository: rstacruz/cheatsheets
Move some languages into JS bundle
Move some languages into JS bundle
YAML
mit
pmackay/cheatsheets
ef83d0470933f77a603af16d77e9fe4a2062c286
dsaas-services/core.yaml
dsaas-services/core.yaml
services: - hash: 58ba3b428d1e0090a0337ab87ea929c2d7affc70 name: core path: /openshift/core.app.yaml url: https://github.com/almighty/almighty-core/
services: - hash: 309ae39290f318c8b5370e67be92d5b5cc6f35e7 name: core path: /openshift/core.app.yaml url: https://github.com/almighty/almighty-core/
Fix list of collaborators for openshiftio space
Fix list of collaborators for openshiftio space
YAML
apache-2.0
openshiftio/saas,openshiftio/saas
eba6ab5421fad068f9deea2157974ec4d2653de1
manifest-generation/opsfiles/use-system-domain-as-metron-deployment-name.yml
manifest-generation/opsfiles/use-system-domain-as-metron-deployment-name.yml
--- # cf-deployment uses system_domain as metron agent deployment. # Use this to override metron agent deployment name in the metron_agent addon - type: replace path: /addons/name=metron_agent/jobs/name=metron_agent/properties/metron_agent?/tags value: {"deployment": "((system_domain))"}
--- # cf-deployment uses system_domain as metron agent deployment. # Use this to override metron agent deployment name in the metron_agent addon - type: replace path: /addons/name=metron_agent/jobs/name=metron_agent/properties/metron_agent?/tags value: {"deployment": "((system_domain))"} - type: replace path: /addons/name=metron_agent/jobs/name=metron_agent/properties/metron_agent?/deployment value: ((system_domain))
Set metron-agent deployment name to system_domain
Set metron-agent deployment name to system_domain [#153459513] Signed-off-by: Amelia Downs <3da6d4986e923696b3a0bfb6f5a9291799608f85@pivotal.io>
YAML
apache-2.0
cloudfoundry-incubator/cf-networking-release,cloudfoundry-incubator/cf-networking-release,cloudfoundry-incubator/cf-networking-release,cloudfoundry-incubator/cf-networking-release
85f9b971979b2b30d807258dfd22f05757d21c16
recipes/go-sqlcmd/meta.yaml
recipes/go-sqlcmd/meta.yaml
{% set name = "go-sqlcmd" %} {% set version = "0.7.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/microsoft/go-sqlcmd/archive/refs/tags/v{{ version }}.tar.gz sha256: 52ee47b84a0f932fc83881d6320588d1b0c7fd944309dd8ed92828ee3e3bdaff build: number: 0 script: | set -eoux pipefail go install ./cmd/sqlcmd go-licenses save --ignore="github.com/Azure/azure-sdk-for-go" --save_path="./thirdparty" ./cmd/sqlcmd requirements: build: - {{ compiler('go') }} - go-licenses >=1.2.1 test: commands: - sqlcmd --help about: home: https://github.com/microsoft/go-sqlcmd summary: 'Native go implementation of sqlcmd' license: MIT license_file: - LICENSE - thirdparty/ extra: recipe-maintainers: - dhirschfeld
{% set name = "go-sqlcmd" %} {% set version = "0.7.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/microsoft/go-sqlcmd/archive/refs/tags/v{{ version }}.tar.gz sha256: 52ee47b84a0f932fc83881d6320588d1b0c7fd944309dd8ed92828ee3e3bdaff build: number: 0 script: | set -eoux pipefail go install ./cmd/sqlcmd # FIXME: Remove ignore once depending on 0.8.3 or later # https://github.com/Azure/azure-sdk-for-go/issues/16203#issuecomment-971695479 go-licenses save --ignore="github.com/Azure/azure-sdk-for-go" --save_path="./thirdparty" ./cmd/sqlcmd requirements: build: - {{ compiler('go') }} - go-licenses >=1.2.1 test: commands: - sqlcmd --help about: home: https://github.com/microsoft/go-sqlcmd summary: 'Native go implementation of sqlcmd' license: MIT license_file: - LICENSE - thirdparty/ extra: recipe-maintainers: - dhirschfeld
Add comment about ignore flag
Add comment about ignore flag
YAML
bsd-3-clause
jakirkham/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes
f367da2f27bfb10c01c29f25f7f2dbcd5f05ec2c
smirnoff99frosst/meta.yaml
smirnoff99frosst/meta.yaml
package: name: smirnoff99frosst version: "1.1.0" source: git_url: https://github.com/openforcefield/smirnoff99frosst.git git_tag: 1.1.0 build: number: 1 noarch: python entry_points: - smirnoff99frosst = smirnoff99frosst.smirnoff99frosst:main skip: True # [win32 or (win and py2k)] extra: upload: main # include_omnia_label: rc about: home: https://github.com/openforcefield/smirnoff99frosst license: CC-BY summary: 'The smirnoff99Frosst line of force fields' requirements: build: - python - cython - setuptools
package: name: smirnoff99frosst version: "1.1.0" source: git_url: https://github.com/openforcefield/smirnoff99frosst.git git_tag: 1.1.0 build: number: 1 #noarch: python entry_points: - smirnoff99frosst = smirnoff99frosst.smirnoff99frosst:main skip: True # [win32 or (win and py2k)] extra: upload: main # include_omnia_label: rc about: home: https://github.com/openforcefield/smirnoff99frosst license: CC-BY summary: 'The smirnoff99Frosst line of force fields' requirements: build: - python - cython - setuptools run: - python
Add run:python to s99F, remove noarch
Add run:python to s99F, remove noarch
YAML
mit
omnia-md/conda-recipes,peastman/conda-recipes,peastman/conda-recipes,omnia-md/conda-recipes,peastman/conda-recipes,omnia-md/conda-recipes
d75fc71b9d22406255be5171436604516a9f7c1b
docker-compose/rdebug-ide.override.yml
docker-compose/rdebug-ide.override.yml
version: '2.3' services: web: command: docker-compose/rdebug-ide.sh ports: - 1234:1234 environment: - REMOTE_DEBUGGING_ENABLED=1
version: '2.3' services: web: command: docker-compose/rdebug-ide.sh ports: - 1234:1234 environment: - REMOTE_DEBUGGING_ENABLED=1 - VIRTUAL_PORT=80
Fix rdebug-ide to not confuse dinghy/dory proxy
Fix rdebug-ide to not confuse dinghy/dory proxy The dinghy_http_proxy will see the port binding to :1234 and assume that's the port it should be talking to in the container, so we need to use the VIRTUAL_PORT variable to tell it no, use :80 test plan: - Make sure your main `docker-compose.override.yml` DOES NOT include a `VIRTUAL_PORT` environment variable setting for your web container - Update your `.env` to include `docker-compose/rdebug-ide.override.yml` in your `COMPOSE_FILE` variable - `docker-compose up` to recreate your containers - Go to http://canvas.docker * VERIFY: it works Change-Id: I395c253a68619dfa861916362d432947b13e4ac2 Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/295213 Tested-by: Service Cloud Jenkins <9144042a601061f88f1e1d7a1753ea3e2972119d@instructure.com> Product-Review: Jon Scheiding <9af6aa5061dd5eef0e85122953253a66930fcf3e@instructure.com> Reviewed-by: Xander Moffatt <27f70fe194da423604e6e0a63a3de19814736fa9@instructure.com> QA-Review: Joe Hernandez <2475ff9f2214a383ad29b079daec0de5f5df5945@instructure.com>
YAML
agpl-3.0
instructure/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/canvas-lms
41330abd354feeafbe2a69f67b401472d886a471
core/config/elasticsearch.yml
core/config/elasticsearch.yml
development: elasticsearch: hostname: localhost port: 9200 cluster: factlink_development test: elasticsearch: hostname: localhost port: 9200 cluster: factlink_test testserver: elasticsearch: hostname: 89.188.27.177 port: 9200 cluster: factlink_testserver staging: elasticsearch: hostname: 89.188.27.178 port: 9200 cluster: factlink_staging production: elasticsearch: hostname: localhost port: 9200 cluster: factlink_production
development: elasticsearch: hostname: localhost port: 9200 cluster: factlink_development test: elasticsearch: hostname: localhost port: 9200 cluster: factlink_test testserver: elasticsearch: hostname: 89.188.27.177 port: 9200 cluster: factlink_testserver staging: elasticsearch: hostname: 89.188.27.178 port: 9200 cluster: factlink_staging production: elasticsearch: hostname: 89.188.27.179 port: 9200 cluster: factlink_production
Use dedicated ElasticSearch for production environment
Use dedicated ElasticSearch for production environment
YAML
mit
daukantas/factlink-core,Factlink/factlink-core,daukantas/factlink-core,daukantas/factlink-core,Factlink/factlink-core,Factlink/factlink-core,daukantas/factlink-core,Factlink/factlink-core
e230a94c866a05f2272003d1be7d180bd409a5a0
cu-manager/docker-compose.yml
cu-manager/docker-compose.yml
# LICENCE : CloudUnit is available under the Affero Gnu Public License GPL V3 : https://www.gnu.org/licenses/agpl-3.0.html # but CloudUnit is licensed too under a standard commercial license. # Please contact our sales team if you would like to discuss the specifics of our Enterprise license. # If you are not sure whether the GPL is right for you, # you can always test our software under the GPL and inspect the source code before you contact us # about purchasing a commercial license. # LEGAL TERMS : "CloudUnit" is a registered trademark of Treeptik and can't be used to endorse # or promote products derived from this project without prior written permission from Treeptik. # Products or services derived from this software may not be called "CloudUnit" # nor may "Treeptik" or similar confusing terms appear in their names without prior written permission. # For any questions, contact us : contact@treeptik.fr cujavabuild: build: images/cu-javabuild environment: - BUILDER_UID - BUILDER_GID volumes: - .:/home/builder/app command: mvn clean package -DskipTests cunodebuild: build: images/cu-nodebuild environment: - BUILDER_UID - BUILDER_GID volumes: - ./src/main/webapp:/home/builder/app
# LICENCE : CloudUnit is available under the Affero Gnu Public License GPL V3 : https://www.gnu.org/licenses/agpl-3.0.html # but CloudUnit is licensed too under a standard commercial license. # Please contact our sales team if you would like to discuss the specifics of our Enterprise license. # If you are not sure whether the GPL is right for you, # you can always test our software under the GPL and inspect the source code before you contact us # about purchasing a commercial license. # LEGAL TERMS : "CloudUnit" is a registered trademark of Treeptik and can't be used to endorse # or promote products derived from this project without prior written permission from Treeptik. # Products or services derived from this software may not be called "CloudUnit" # nor may "Treeptik" or similar confusing terms appear in their names without prior written permission. # For any questions, contact us : contact@treeptik.fr cujavabuild: build: images/cu-javabuild environment: - BUILDER_UID - BUILDER_GID volumes: - ..:/home/builder/app command: mvn clean install -DskipTests cunodebuild: build: images/cu-nodebuild environment: - BUILDER_UID - BUILDER_GID volumes: - ./src/main/webapp:/home/builder/app
Change maven config build to use cu-core
Change maven config build to use cu-core
YAML
agpl-3.0
Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit
9c70570786ed99ca475da7416c723862f76996c4
recipes/gftool/meta.yaml
recipes/gftool/meta.yaml
{% set name = "gftool" %} {% set version = "0.9.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/gftool-{{ version }}.tar.gz sha256: e9d866464f6c9169d064e84a0f6ac44aa3ce77b666fa64dc88e0b04203c141a3 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - pytest-runner - python >=3.6 run: - mpmath - numpy - python >=3.6 - scipy test: imports: - gftool - gftool.basis commands: - pip check - pytest gftool requires: - pip - pytest >=4.6 - hypothesis >=4.24.5 - hypothesis_gufunc about: home: https://github.com/DerWeh/gftools summary: Collection of commonly used Green's functions and utilities license: MIT license_file: MIT license_file: LICENSE.txt doc_url: https://gftools.readthedocs.io dev_url: https://github.com/DerWeh/gftools extra: recipe-maintainers: - DerWeh
{% set name = "gftool" %} {% set version = "0.9.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/gftool-{{ version }}.tar.gz sha256: e9d866464f6c9169d064e84a0f6ac44aa3ce77b666fa64dc88e0b04203c141a3 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - pytest-runner - python >=3.6 run: - mpmath - numpy - python >=3.6 - scipy test: imports: - gftool - gftool.basis commands: - pip check requires: - pip about: home: https://github.com/DerWeh/gftools summary: Collection of commonly used Green's functions and utilities license: MIT license_file: MIT license_file: LICENSE.txt doc_url: https://gftools.readthedocs.io dev_url: https://github.com/DerWeh/gftools extra: recipe-maintainers: - DerWeh
Remove test, `hypothesis_gufunc` not available
Remove test, `hypothesis_gufunc` not available
YAML
bsd-3-clause
ocefpaf/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,goanpeca/staged-recipes,jochym/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes
fe1b80035bfcbf593a9e7a74d3b91c4cbdac33ac
recipes/konoha/meta.yaml
recipes/konoha/meta.yaml
{% set name = "konoha" %} {% set version = "4.6.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/konoha-{{ version }}.tar.gz sha256: c5feb806be40d66a557d70440d156accb0d55851d002ce808f6e29f3d3b93de0 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - poetry >=0.12 - python >=3.6 run: - overrides ==3.0.0 - python >=3.6 test: imports: - konoha - konoha.api commands: - pip check requires: - pip about: home: https://pypi.org/project/konoha/ summary: A tiny sentence/word tokenizer for Japanese text written in Python license: MIT doc_url: https://konoha.readthedocs.io/en/latest/?badge=latest dev_url: https://github.com/himkt/konoha extra: recipe-maintainers: - BastianZim
{% set name = "konoha" %} {% set version = "4.6.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/konoha-{{ version }}.tar.gz sha256: c5feb806be40d66a557d70440d156accb0d55851d002ce808f6e29f3d3b93de0 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - poetry >=0.12 - python >=3.6 run: - overrides ==3.0.0 - python >=3.6 test: imports: - konoha - konoha.api commands: - pip check requires: - pip about: home: https://pypi.org/project/konoha/ summary: A tiny sentence/word tokenizer for Japanese text written in Python license: MIT license_file: LICENSE doc_url: https://konoha.readthedocs.io/en/latest/?badge=latest dev_url: https://github.com/himkt/konoha extra: recipe-maintainers: - BastianZim
Add license file as required by linter
Add license file as required by linter
YAML
bsd-3-clause
ocefpaf/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,igortg/staged-recipes,conda-forge/staged-recipes,scopatz/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,jochym/staged-recipes,ocefpaf/staged-recipes,patricksnape/staged-recipes,mariusvniekerk/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,jakirkham/staged-recipes,scopatz/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes
c0ef96a800da7fd17a0805faf25ddfef58644655
recipes/psutil/meta.yaml
recipes/psutil/meta.yaml
{% set version = "5.1.1" %} package: name: psutil version: {{ version }} source: fn: psutil-{{ version }}.tar.gz url: https://pypi.io/packages/source/p/psutil/psutil-{{ version }}.tar.gz md5: 63a9436e0c91030a254714f0a6ccc584 build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools run: - python test: requires: - ipaddress # [py<33] - mock # [py<33] - unittest2 # [py<27] imports: - psutil - psutil.tests about: home: https://github.com/giampaolo/psutil license: BSD 3-Clause summary: A cross-platform process and system utilities module for Python
{% set version = "5.1.2" %} package: name: psutil version: {{ version }} source: fn: psutil-{{ version }}.tar.gz url: https://pypi.io/packages/source/p/psutil/psutil-{{ version }}.tar.gz md5: 57eaf0952599ff22e157710724cda409 build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools run: - python test: requires: - ipaddress # [py<33] - mock # [py<33] - unittest2 # [py<27] imports: - psutil - psutil.tests about: home: https://github.com/giampaolo/psutil license: BSD 3-Clause summary: A cross-platform process and system utilities module for Python
Update psutil recipe to version 5.1.2
Update psutil recipe to version 5.1.2
YAML
bsd-3-clause
jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda
0b6be6783e18185bb4d8ca235c28b2d609ffaabf
recipes/gtabview/meta.yaml
recipes/gtabview/meta.yaml
{% set name = "gtabview" %} {% set version = "0.10" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: f791b0a103c9eeb9aa7c76c47c85f16d682d77c07a6f433a0d8a50bd9e7df7e1 build: number: 0 noarch: python script: "{{ PYTHON }} setup.py install" requirements: host: - python - setuptools run: - python >=2.7 - pyqt test: imports: - gtabview about: home: https://github.com/TabViewer/gtabview/ license: MIT license_family: MIT license_file: LICENSE.txt summary: 'Simple graphical tabular data viewer' description: | Simple tabular data viewer that can be used both stand-alone and as a Python module for various files and Python/Pandas/NumPy data structures. extra: recipe-maintainers: - wavexx
{% set name = "gtabview" %} {% set version = "0.10" %} {% set sha256 = "f791b0a103c9eeb9aa7c76c47c85f16d682d77c07a6f433a0d8a50bd9e7df7e1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 noarch: python script: "{{ PYTHON }} setup.py install" requirements: host: - python - setuptools run: - python >=2.7 - pyqt test: imports: - gtabview about: home: https://github.com/TabViewer/gtabview/ license: MIT license_family: MIT license_file: LICENSE.txt summary: 'Simple graphical tabular data viewer' description: | Simple tabular data viewer that can be used both stand-alone and as a Python module for various files and Python/Pandas/NumPy data structures. extra: recipe-maintainers: - wavexx
Move the hash to the top
Move the hash to the top
YAML
bsd-3-clause
ocefpaf/staged-recipes,goanpeca/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes
5618875eae1d15f256c0f914921af71dfcfbdd3e
constants-dev.yaml
constants-dev.yaml
genesisN: 228 maxLocalTxs: 10000 defaultPeers: [] mdNoBlocksSlotThreshold: 3 mdNoCommitmentsEpochThreshold: 3 protocolMagic: 0 enhancedMessageBroadcast: 2 blockRetrievalQueueSize: 100 recoveryHeadersMessage: 100 # should be more than k, less than blockRetrievalQueueSize # Fundamental constants for core protocol k: 2 slotDurationSec: 7 # Time slave/lord sysTimeBroadcastSlots: 6 # Networking neighboursSendThreshold: 2 networkDiameter: 3 networkConnectionTimeout: 2000 # GodTossing vssMaxTTL: 10 # epochs vssMinTTL : 2 # epochs mpcSendInterval: 12 # must be less than (k * slotDuration - networkDiameter) mpcThreshold: 0.01 # 1% of stake # Delegation delegationThreshold: 0.005 # 0.5% of stake maxBlockProxySKs: 10000 ntpResponseTimeout: 1000000 # 1 sec ntpPollDelay: 300000000 # 300 sec # Update mechanism updateServers: [] updateProposalThreshold: 0.1 # 10% of total stake updateVoteThreshold: 0.001 # 0.1% of total stake updateImplicitApproval: 40000 # slots # Production start time productionNetworkStartTime: 0
genesisN: 12 maxLocalTxs: 10000 defaultPeers: [] mdNoBlocksSlotThreshold: 3 mdNoCommitmentsEpochThreshold: 3 protocolMagic: 0 enhancedMessageBroadcast: 2 blockRetrievalQueueSize: 100 recoveryHeadersMessage: 100 # should be more than k, less than blockRetrievalQueueSize # Fundamental constants for core protocol k: 2 slotDurationSec: 7 # Time slave/lord sysTimeBroadcastSlots: 6 # Networking neighboursSendThreshold: 2 networkDiameter: 3 networkConnectionTimeout: 2000 # GodTossing vssMaxTTL: 10 # epochs vssMinTTL : 2 # epochs mpcSendInterval: 12 # must be less than (k * slotDuration - networkDiameter) mpcThreshold: 0.01 # 1% of stake # Delegation delegationThreshold: 0.005 # 0.5% of stake maxBlockProxySKs: 10000 ntpResponseTimeout: 1000000 # 1 sec ntpPollDelay: 300000000 # 300 sec # Update mechanism updateServers: [] updateProposalThreshold: 0.1 # 10% of total stake updateVoteThreshold: 0.001 # 0.1% of total stake updateImplicitApproval: 40000 # slots # Production start time productionNetworkStartTime: 0
Decrease genesisN in dev constants
Decrease genesisN in dev constants
YAML
apache-2.0
input-output-hk/pos-haskell-prototype,input-output-hk/pos-haskell-prototype,input-output-hk/cardano-sl,input-output-hk/cardano-sl,input-output-hk/pos-haskell-prototype,input-output-hk/cardano-sl,input-output-hk/cardano-sl
f2db11c1d2642b97521d827425b6c6113aee8244
recipes/junit-xml/meta.yaml
recipes/junit-xml/meta.yaml
{% set name = "junit-xml" %} {% set version = "1.8" %} {% set sha256 = "602f1c480a19d64edb452bf7632f76b5f2cb92c1938c6e071dcda8ff9541dc21 " %} package: name: {{ name|lower }} version: {{ version }} source: url: https://files.pythonhosted.org/packages/a6/2a/f8d5aab80bb31fcc789d0f2b34b49f08bd6121cd8798d2e37f416df2b9f8/{{ name }}-{{ version }}.tar.gz sha256: {{ sha256 }} build: noarch: python number: 0 requirements: host: - python - setuptools - six run: - python - six test: imports: - junit_xml about: home: https://github.com/kyrus/python-junit-xml license: MIT summary: 'Creates JUnit XML test result documents that can be read by tools such as Jenkins' license_family: MIT extra: recipe-maintainers: - dfornika
{% set name = "junit-xml" %} {% set version = "1.8" %} {% set sha256 = "602f1c480a19d64edb452bf7632f76b5f2cb92c1938c6e071dcda8ff9541dc21 " %} package: name: {{ name|lower }} version: {{ version }} source: url: http://pypi.io/packages/source/j/{{ name }}/{{ name }}-{{ name}}.tar.gz sha256: {{ sha256 }} build: noarch: python number: 0 requirements: host: - python - setuptools - six run: - python - six test: imports: - junit_xml about: home: https://github.com/kyrus/python-junit-xml license: MIT summary: 'Creates JUnit XML test result documents that can be read by tools such as Jenkins' license_family: MIT extra: recipe-maintainers: - dfornika
Use better URL for templating
Use better URL for templating
YAML
bsd-3-clause
Juanlu001/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,scopatz/staged-recipes,mariusvniekerk/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,sodre/staged-recipes,igortg/staged-recipes,Juanlu001/staged-recipes,rvalieris/staged-recipes,shadowwalkersb/staged-recipes,basnijholt/staged-recipes,SylvainCorlay/staged-recipes,asmeurer/staged-recipes,cpaulik/staged-recipes,ceholden/staged-recipes,conda-forge/staged-recipes,isuruf/staged-recipes,cpaulik/staged-recipes,SylvainCorlay/staged-recipes,shadowwalkersb/staged-recipes,conda-forge/staged-recipes,dschreij/staged-recipes,jochym/staged-recipes,scopatz/staged-recipes,mcs07/staged-recipes,petrushy/staged-recipes,goanpeca/staged-recipes,rmcgibbo/staged-recipes,isuruf/staged-recipes,jjhelmus/staged-recipes,mariusvniekerk/staged-recipes,sodre/staged-recipes,johanneskoester/staged-recipes,sodre/staged-recipes,birdsarah/staged-recipes,chrisburr/staged-recipes,stuertz/staged-recipes,basnijholt/staged-recipes,igortg/staged-recipes,mcs07/staged-recipes,petrushy/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,synapticarbors/staged-recipes,ReimarBauer/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,ceholden/staged-recipes,rmcgibbo/staged-recipes,hadim/staged-recipes,birdsarah/staged-recipes,patricksnape/staged-recipes,asmeurer/staged-recipes,patricksnape/staged-recipes,rvalieris/staged-recipes,chrisburr/staged-recipes,jochym/staged-recipes,jjhelmus/staged-recipes,ReimarBauer/staged-recipes,synapticarbors/staged-recipes,hadim/staged-recipes,ocefpaf/staged-recipes
44e22065a2b7d5e82fd6a565f714526a193b94b2
recipes/wurlitzer/meta.yaml
recipes/wurlitzer/meta.yaml
{% set name = "wurlitzer" %} {% set version = "1.0.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 23e85af0850b98add77bef0a1eb47b243baab29160131d349234c9dfc9e57add build: skip: true # [win] number: 0 script: python -m pip install --no-deps --ignore-installed . requirements: host: - python - pip run: - python test: imports: - wurlitzer about: home: https://github.com/minrk/wurlitzer license: MIT license_family: MIT license_file: LICENSE summary: 'Capture C-level stdout/stderr in Python' extra: recipe-maintainers: - bjodah
{% set name = "wurlitzer" %} {% set version = "1.0.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 23e85af0850b98add77bef0a1eb47b243baab29160131d349234c9dfc9e57add build: skip: true # [win] number: 0 script: python -m pip install --no-deps --ignore-installed . requirements: host: - python - pip run: - python test: imports: - wurlitzer about: home: https://github.com/minrk/wurlitzer license: MIT license_family: MIT license_file: LICENSE summary: 'Capture C-level stdout/stderr in Python' extra: recipe-maintainers: - minrk - bjodah
Add minrk as maintainer of feedstock
Add minrk as maintainer of feedstock
YAML
bsd-3-clause
ocefpaf/staged-recipes,ceholden/staged-recipes,sodre/staged-recipes,sodre/staged-recipes,petrushy/staged-recipes,hadim/staged-recipes,cpaulik/staged-recipes,patricksnape/staged-recipes,sodre/staged-recipes,synapticarbors/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,jjhelmus/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,shadowwalkersb/staged-recipes,ceholden/staged-recipes,birdsarah/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,Juanlu001/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,scopatz/staged-recipes,asmeurer/staged-recipes,pmlandwehr/staged-recipes,basnijholt/staged-recipes,barkls/staged-recipes,pmlandwehr/staged-recipes,barkls/staged-recipes,mcs07/staged-recipes,SylvainCorlay/staged-recipes,rvalieris/staged-recipes,synapticarbors/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,chrisburr/staged-recipes,conda-forge/staged-recipes,chrisburr/staged-recipes,scopatz/staged-recipes,cpaulik/staged-recipes,basnijholt/staged-recipes,isuruf/staged-recipes,conda-forge/staged-recipes,jjhelmus/staged-recipes,asmeurer/staged-recipes,ocefpaf/staged-recipes,rvalieris/staged-recipes,birdsarah/staged-recipes,igortg/staged-recipes,SylvainCorlay/staged-recipes,mcs07/staged-recipes,mariusvniekerk/staged-recipes,petrushy/staged-recipes,Juanlu001/staged-recipes,dschreij/staged-recipes,shadowwalkersb/staged-recipes,ReimarBauer/staged-recipes,isuruf/staged-recipes,rmcgibbo/staged-recipes,dschreij/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes
346e1612200563cdbeadc49186fd819dc6d4f950
zuul.d/projects.yaml
zuul.d/projects.yaml
--- - project: queue: trove templates: - check-requirements - openstack-cover-jobs # - openstack-lower-constraints-jobs - openstack-python3-zed-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - openstack-tox-cover: voting: false - trove-tox-bandit-baseline: voting: false - trove-tempest: voting: false - trove-ubuntu-guest-image-build: voting: true - trove-centos8s-guest-image-build: voting: true - trove-tempest-postgres: voting: false - trove-tempest-ipv6-only: voting: false - trove-functional-mysql: voting: false gate: jobs: - trove-tempest: voting: false experimental: jobs: - trove-functional-mysql - trove-scenario-mysql-single - trove-scenario-mysql-multi - trove-scenario-mariadb-single - trove-scenario-mariadb-multi periodic: jobs: - publish-trove-guest-image-ubuntu-focal - publish-trove-guest-image-ubuntu-focal-dev
--- - project: queue: trove templates: - check-requirements - openstack-cover-jobs # - openstack-lower-constraints-jobs - openstack-python3-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - openstack-tox-cover: voting: false - trove-tox-bandit-baseline: voting: false - trove-tempest: voting: false - trove-ubuntu-guest-image-build: voting: true - trove-centos8s-guest-image-build: voting: true - trove-tempest-postgres: voting: false - trove-tempest-ipv6-only: voting: false - trove-functional-mysql: voting: false gate: jobs: - trove-tempest: voting: false experimental: jobs: - trove-functional-mysql - trove-scenario-mysql-single - trove-scenario-mysql-multi - trove-scenario-mariadb-single - trove-scenario-mariadb-multi periodic: jobs: - publish-trove-guest-image-ubuntu-focal - publish-trove-guest-image-ubuntu-focal-dev
Switch to 2023.1 Python3 unit tests and generic template name
Switch to 2023.1 Python3 unit tests and generic template name This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for antelope. Also, updating the template name to generic one. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I7c81bf7a43d91c5e63a3dc3ca34528667c4966b5
YAML
apache-2.0
openstack/trove,openstack/trove
e0f15c6cd49b1b0baa35bd27b686f9208d2f4226
metadata/mobi.cyann.nstools.yml
metadata/mobi.cyann.nstools.yml
Categories: - Development License: GPL-3.0-only SourceCode: https://github.com/arifhn/nstools IssueTracker: https://github.com/arifhn/nstools/issues AutoName: NSTools Description: |- Manage BLX,BLN,Deep Idle,Governor and voltage settings for custom kernels. Relevant for most custom kernels on the i9020 and i9023, Crespo and Crespo 4g. RepoType: git Repo: https://github.com/arifhn/NSTools.git Builds: - versionName: '1.16' versionCode: 20 commit: v1.16 extlibs: - android/android-support-v4.jar AutoUpdateMode: None UpdateCheckMode: Tags CurrentVersion: '1.16' CurrentVersionCode: 20
Categories: - Development License: GPL-3.0-only SourceCode: https://github.com/arifhn/nstools IssueTracker: https://github.com/arifhn/nstools/issues AutoName: NSTools Description: |- Manage BLX,BLN,Deep Idle,Governor and voltage settings for custom kernels. Relevant for most custom kernels on the i9020 and i9023, Crespo and Crespo 4g. RepoType: git Repo: https://github.com/arifhn/NSTools.git Builds: - versionName: '1.16' versionCode: 20 commit: v1.16 extlibs: - android/android-support-v4.jar AutoUpdateMode: None UpdateCheckMode: Tags CurrentVersion: '1.9' CurrentVersionCode: 12
Update CurrentVersion of NSTools to 1.9 (12)
Update CurrentVersion of NSTools to 1.9 (12)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
7c744d0d6f3947033aae80951ba1539b0e174732
.github/workflows/maven-release.yml
.github/workflows/maven-release.yml
name: Publish package to the Maven Central Repository on: release: types: [ created ] jobs: publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Install gpg secret key run: | cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import - name: Set up Maven Central Repository uses: actions/setup-java@v3 with: java-version: '17' distribution: 'temurin' server-id: ossrh server-username: MAVEN_USERNAME server-password: MAVEN_PASSWORD - name: Publish package run: mvn --batch-mode -Dgpg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} deploy env: MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
name: Publish package to the Maven Central Repository on: release: types: [ created ] jobs: publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Install gpg secret key run: | cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import - name: Set up Maven Central Repository uses: actions/setup-java@v3 with: java-version: '17' distribution: 'temurin' server-id: ossrh server-username: MAVEN_USERNAME server-password: MAVEN_PASSWORD - name: Publish package run: mvn --batch-mode -P release -Dgpg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} deploy env: MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
Use release profile in release action
Use release profile in release action
YAML
bsd-3-clause
koraktor/mavanagaiata
e5aff95d661e40a1c36b96531def8de7b2d466ce
.github/workflows/pythonpackage.yml
.github/workflows/pythonpackage.yml
name: Python package on: [push] jobs: build: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [2.7, 3.5, 3.6, 3.7] 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 . - name: Lint with pylint run: | pip install pylint # stop the build if there are Pylint errors pylint --disable=all --enable=F,E *.py - name: Lint with flake8 run: | pip install flake8 # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
name: Python package on: [push] jobs: build: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [2.7, 3.5, 3.6, 3.7] steps: - uses: actions/checkout@v1 - name: Cache Python packages uses: actions/cache@v1 with: path: ~/.cache/pip key: ${{ runner.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('setup.py') }} restore-keys: | ${{ runner.os }}-py${{ matrix.python-version }}-pip- - 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 . - name: Lint with pylint run: | pip install pylint # stop the build if there are Pylint errors pylint --disable=all --enable=F,E *.py - name: Lint with flake8 run: | pip install flake8 # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
Add pip cache to actions workflow
Add pip cache to actions workflow
YAML
mit
yymao/adstex
948311d71ddcbebc0555ba4f74b9a1d5979f5e9f
.github/workflows/update-readme.yml
.github/workflows/update-readme.yml
name: update-readme on: [workflow_dispatch, push] jobs: update-readme: name: Readme Update runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run Readme Editor run: | php csv2md.php resources.csv README.md git config user.name "Update README Action" git config user.email github-actions@github.com if [[ `git status --porcelain` ]]; then git add . && git commit -m "README.md updated by action" && git push; fi
name: Update Readme on: [workflow_dispatch, push, pull_request] jobs: update-readme: name: Update Readme runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run Readme Editor run: | php csv2md.php resources.csv README.md git config user.name "Update README Action" git config user.email github-actions@github.com if [[ `git status --porcelain` ]]; then git add . && git commit -m "README.md updated by action" && git push; fi
Rename "Update Readme" action, add PR event
Rename "Update Readme" action, add PR event
YAML
cc0-1.0
aleron75/mageres,aleron75/mageres
d06a1cc8eade26a522eac10cc0bee2001b12f7ed
include/lovelace/start.yaml
include/lovelace/start.yaml
title: Start path: start icon: 'mdi:rocket' badges: - binary_sensor.occupancy cards: - type: glance entities: - entity: person.king - entity: person.queen - entity: person.bishop - type: custom:vertical-stack-in-card cards: - entity: sensor.time type: 'custom:bignumber-card' - entity: sensor.date type: 'custom:bignumber-card' scale: '20px' - entity: binary_sensor.occupancy hold_action: action: more-info show_icon: true show_name: false tap_action: action: more-info type: entity-button - entity: light.living_lights type: light - entities: - entity: sensor.power_consumption type: glance
title: Start path: start icon: 'mdi:rocket' badges: - entity: binary_sensor.occupancy - person.queen - person.king - person.bishop cards: - type: glance entities: - entity: person.king - entity: person.queen - entity: person.bishop - entity: sensor.occupancy - type: custom:vertical-stack-in-card cards: - entity: sensor.time type: 'custom:bignumber-card' - entity: sensor.date type: 'custom:bignumber-card' scale: '20px' - entity: binary_sensor.occupancy hold_action: action: more-info show_icon: true show_name: false tap_action: action: more-info type: entity-button - entity: light.living_lights type: light - entities: - entity: sensor.power_consumption type: glance
Add presence and occupancy to UI
Add presence and occupancy to UI
YAML
mit
rtvb/home-assistant-config
0fe616c0906dedd4982bd9aeb0c69e061e291a68
util/ansible/roles/azuracast-radio/tasks/main.yml
util/ansible/roles/azuracast-radio/tasks/main.yml
--- - name: Install IceCast2 become: true apt: deb=http://download.opensuse.org/repositories/multimedia:/xiph/xUbuntu_14.04/amd64/icecast2_2.4.2-2_amd64.deb - name: Install LiquidSoap become: true apt: pkg=liquidsoap state=latest - name: Link Fallback Error MP3 file: src="{{ www_base }}/resources/error.mp3" dest="/usr/share/icecast2/web/error.mp3" state=link
--- - name: Install IceCast2 become: true apt: deb=http://download.opensuse.org/repositories/multimedia:/xiph/xUbuntu_14.04/amd64/icecast2_2.4.2-2_amd64.deb - name: Install LiquidSoap become: true apt: pkg="{{ item }}" state=latest with_items: - liquidsoap - liquidsoap-plugin-icecast - liquidsoap-plugin-lame - name: Link Fallback Error MP3 file: src="{{ www_base }}/resources/error.mp3" dest="/usr/share/icecast2/web/error.mp3" state=link
Add plugin installation to Ansible liquidsoap install process.
Add plugin installation to Ansible liquidsoap install process.
YAML
agpl-3.0
SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast
452ee2b09f72c5f39a7a72957e26f3d54a0340cd
.gitlab-ci.yml
.gitlab-ci.yml
image: ruby:2.3.0 variables: SSH_AUTH_SOCK: "/ssh-agent" before_script: - mkdir -p /root/.ssh && ssh-keyscan -H codevault.io > /root/.ssh/known_hosts 2>/dev/null - bundle config jobs 8 - bundle install --path=/tmp/bundler --quiet rspec: script: - bundle exec rspec rubocop: script: - bundle exec rubocop
image: ruby:2.3.0 variables: SSH_AUTH_SOCK: "/ssh-agent" before_script: - mkdir -p /root/.ssh && ssh-keyscan -H codevault.io > /root/.ssh/known_hosts 2>/dev/null - bundle config jobs 8 - echo "en_US UTF-8" > /etc/locale.gen - locale-gen en_US.UTF-8 - export LANG=en_US.UTF-8 - export LANGUAGE=en_US:en - export LC_ALL=en_US.UTF-8 - bundle install --path=/tmp/bundler --quiet rspec: script: - bundle exec rspec rubocop: script: - bundle exec rubocop
Use UTF8 in ci.yml for a bundle error
Use UTF8 in ci.yml for a bundle error
YAML
mit
kaeuferportal/access_token_agent
4dab61b07a2abed9890abde6d695c5c75d6ee022
.gitlab-ci.yml
.gitlab-ci.yml
image: ruby:2.3 # define the environment variables variables: JEKYLL_ENV: production # add bundle cache to 'vendor' for speeding up builds cache: paths: - vendor/ # 'bundle' all the required gems for the project before_script: - bundle install --path vendor # build and deploy the site pages: stage: deploy script: - bundle exec jekyll build -d public artifacts: paths: - public only: - pages
image: ruby:2.3 # define the environment variables variables: JEKYLL_ENV: production # add bundle cache to 'vendor' for speeding up builds cache: untracked: true paths: - vendor/ # 'bundle' all the required gems for the project before_script: - bundle install --path vendor # build and deploy the site pages: stage: deploy script: - bundle exec jekyll build -d public artifacts: paths: - public only: - pages
Add caching of untracked files
Add caching of untracked files
YAML
mit
richardp2/perry-online,richardp2/perry-online
6d9a9f05656ff5dc86a8499cfc142f7b72c1eeb3
roles/UndercloudMinion.yaml
roles/UndercloudMinion.yaml
############################################################################### # Role: UndercloudMinion # ############################################################################### - name: UndercloudMinion description: | A role to deploy an undercloud minion to handle scaling out of heat-engine and ironic-conductor via heat using the 'openstack undercloud minion deploy' command. CountDefault: 1 disable_constraints: True ServicesDefault: - OS::TripleO::Services::CACerts - OS::TripleO::Services::CertmongerUser - OS::TripleO::Services::ContainerImagePrepare - OS::TripleO::Services::ContainersLogrotateCrond - OS::TripleO::Services::HeatEngine - OS::TripleO::Services::IronicConductor - OS::TripleO::Services::Kernel - OS::TripleO::Services::MySQLClient - OS::TripleO::Services::OpenStackClients - OS::TripleO::Services::Podman - OS::TripleO::Services::Rhsm - OS::TripleO::Services::Timesync - OS::TripleO::Services::Timezone - OS::TripleO::Services::Tmpwatch - OS::TripleO::Services::TripleoFirewall - OS::TripleO::Services::TripleoValidations - OS::TripleO::Services::Tuned - OS::TripleO::Services::UndercloudMinionMessaging - OS::TripleO::Services::UndercloudUpgrade
############################################################################### # Role: UndercloudMinion # ############################################################################### - name: UndercloudMinion description: | A role to deploy an undercloud minion to handle scaling out of heat-engine and ironic-conductor via heat using the 'openstack undercloud minion deploy' command. CountDefault: 1 disable_constraints: True tags: - primary ServicesDefault: - OS::TripleO::Services::CACerts - OS::TripleO::Services::CertmongerUser - OS::TripleO::Services::ContainerImagePrepare - OS::TripleO::Services::ContainersLogrotateCrond - OS::TripleO::Services::HeatEngine - OS::TripleO::Services::IronicConductor - OS::TripleO::Services::Kernel - OS::TripleO::Services::MySQLClient - OS::TripleO::Services::OpenStackClients - OS::TripleO::Services::Podman - OS::TripleO::Services::Rhsm - OS::TripleO::Services::Sshd - OS::TripleO::Services::Timesync - OS::TripleO::Services::Timezone - OS::TripleO::Services::Tmpwatch - OS::TripleO::Services::TripleoFirewall - OS::TripleO::Services::TripleoValidations - OS::TripleO::Services::Tuned - OS::TripleO::Services::UndercloudMinionMessaging - OS::TripleO::Services::UndercloudUpgrade
Add ssh configuration for minion
Add ssh configuration for minion Currently once the install is complete, a user is locked out which isn't ideal. Let's manage the ssh like we do for the undercloud as well. Change-Id: Ia94a3b92355cb0bd24f133a22e3dc5977fcb5180 Closes-Bug: #1837942
YAML
apache-2.0
openstack/tripleo-heat-templates,openstack/tripleo-heat-templates
7c965714dfd09de04dd09377a3280ec45e56b5ab
_config.yml
_config.yml
# top level stuff you probably don't need to touch highlighter: rouge markdown: kramdown rdiscount: extensions: [smart] permalink: /:title.html paginate: 5 gems: [jekyll-paginate] port: 4000 safe: true # edit here to achieve your personal greatness url: http://dkarter.github.io/ baseurl: /blog title: Dorian Karter author: Dorian Karter description: Personal blog and resume avatar: profile.jpg email: jobs@doriankerter.com github: dkarter twitter: dorian_escplan linkedin: doriankarter stackoverflow: users/77131/dorian #Comment out if you don't want disqus # disqus: username google_analytics: UA-38677517-1 # needed for travis-ci build exclude: [vendor]
# top level stuff you probably don't need to touch highlighter: rouge markdown: kramdown kramdown: input: GFM syntax_highlighter: rouge permalink: /:title.html paginate: 5 gems: [jekyll-paginate] port: 4000 safe: true # edit here to achieve your personal greatness url: http://dkarter.github.io/ baseurl: /blog title: Dorian Karter author: Dorian Karter description: Personal blog and resume avatar: profile.jpg email: jobs@doriankerter.com github: dkarter twitter: dorian_escplan linkedin: doriankarter stackoverflow: users/77131/dorian #Comment out if you don't want disqus # disqus: username google_analytics: UA-38677517-1 # needed for travis-ci build exclude: [vendor]
Define kramdown options in config
Define kramdown options in config
YAML
mit
dkarter/blog,dkarter/blog,dkarter/blog
e990d696cffb408a7641821890d0c8382fe6349c
_config.yml
_config.yml
# Site settings title: Kenrick Beckett email: contact@kenrick.me description: The blog, projects and videos by Kenrick Beckett baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://kenrick.me" # the base hostname & protocol for your site gravatar_url: http://www.gravatar.com/avatar/86f71b7b2907e160556f8f00fe940c35 #Social media handles twitter_url: http://twitter.com/kenrickbeckett github_url: http://github.com/kenrick linkedin_url: http://jm.linkedin.com/in/kenrickbeckett iams: - color: "#CC342D" sentence: I love crafting applications in Ruby - color: "#f39c12" sentence: I am enchanted by JavaScript - color: "#6dbd63" link: http://www.codedry.com sentence: I'm a consultant at Codedry - color: "#333" link: http://github.com/kenrick sentence: I'm kenrick on GitHub - color: "#55ACEE" link: http://twitter.com/kenrick1991 sentence: I'm @kenrick1991 on Twitter permalink: /blog/:title.html # Build settings markdown: kramdown
# Site settings title: Kenrick Beckett email: contact@kenrick.me description: The blog, projects and videos by Kenrick Beckett baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://kenrick.me" # the base hostname & protocol for your site gravatar_url: http://www.gravatar.com/avatar/86f71b7b2907e160556f8f00fe940c35 permalink: /blog/:title.html #Social media handles twitter_url: http://twitter.com/kenrickbeckett github_url: http://github.com/kenrick linkedin_url: http://jm.linkedin.com/in/kenrickbeckett iams: - color: "#CC342D" sentence: I love crafting applications in Ruby - color: "#f39c12" sentence: I am enchanted by JavaScript - color: "#6dbd63" link: http://www.codedry.com sentence: "I'm a consultant at Codedry" - color: "#333" link: http://github.com/kenrick sentence: "I'm kenrick on GitHub" - color: "#375EAB" sentence: "I'm currently learning Go" - color: "#55ACEE" link: http://twitter.com/kenrickbeckett sentence: "I'm @kenrickbeckett on Twitter" # Build settings markdown: kramdown
Add golang sentence to iams
Add golang sentence to iams
YAML
mit
kenrick/kenrick.github.com,kenrick/kenrick.github.com
924a6c197790c65307361b50a0180afb7184ecb1
_config.yml
_config.yml
# Permalinks permalink: pretty # Setup title: 'GAP Days 2015, Fall' tagline: 'A GAP school' description: 'School: Sep 14-18, 2015<br> Code sprint: Sep 19-23, 2015' location: 'NTNU Trondheim' url: http://gapdays.de baseurl: /gapdays2015-fall exclude: [ "program.aux", "program.log", "program.out", "program.tex", "misc" ] include: [ "program.pdf" ]
# Permalinks permalink: pretty # Setup title: 'GAP Days 2015, Fall' tagline: 'A GAP school' description: 'School: Sep 14-18, 2015<br> Code sprint: Sep 19-23, 2015' location: 'NTNU Trondheim' url: http://gapdays.de baseurl: /gapdays2015-fall exclude: [ "LICENSE.hyde.md", "README.hyde.md", "program.aux", "program.log", "program.out", "program.tex", "misc" ] include: [ "program.pdf" ]
Exclude some .md files from rendering and TOC
Exclude some .md files from rendering and TOC
YAML
mit
gapdays/gapdays2015-fall
532439fa89dfdeef2ea3f51c43e1b3fda886d8df
_config.yml
_config.yml
title: CDAlertView description: Highly customizable alertview and alert/notification/success/error/alarm popup written in Swift 3 google_analytics: show_downloads: true theme: jekyll-theme-cayman gems: - jekyll-mentions
title: CDAlertView description: Highly customizable alertview and alert/notification/success/error/alarm popup written in Swift google_analytics: show_downloads: true theme: jekyll-theme-cayman gems: - jekyll-mentions
Update config.yml for GitHub Page
Update config.yml for GitHub Page
YAML
mit
candostdagdeviren/CDAlertView,candostdagdeviren/CDAlertView