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
641d602498b7cfbf38e7c6f48a2e9f45f98c4039
.travis.yml
.travis.yml
sudo: false branches: only: - master language: python python: - 2.6 - 2.7 install: - python setup.py -q install - pip install --use-mirrors simplejson coverage script: python build.py analyse notifications: email: false irc: channels: - "irc.freenode.org#aspen" on_success: change on_failure: always template: - "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})" skip_join: true
sudo: false branches: only: - master language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 install: - python setup.py -q install - pip install --use-mirrors simplejson coverage script: python build.py analyse notifications: email: false irc: channels: - "irc.freenode.org#aspen" on_success: change on_failure: always template: - "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})" skip_join: true
Test Python 3.* at Travis
Test Python 3.* at Travis
YAML
mit
gratipay/aspen.py,gratipay/aspen.py
1eddb285b2bea3df9aadfb78f3143dceb31aaaa5
.travis.yml
.travis.yml
language: python python: - "3.3" install: - pip install coverage - pip install git+git://github.com/TangledWeb/tangled.git#egg=tangled - pip install -e . script: - tangled test
language: python python: - "3.3" install: - pip install coverage - pip install git+git://github.com/TangledWeb/tangled.git#egg=tangled - pip install git+git://github.com/TangledWeb/tangled.web.git#egg=tangled.web - pip install -e . script: - tangled test
Add missing tangled.web dep to Travis CI config
Add missing tangled.web dep to Travis CI config
YAML
mit
TangledWeb/tangled.mako
0fa4d0fa0efdc71b2f12057cbac7be29ea7072eb
.travis.yml
.travis.yml
language: node_js node_js: - lts/argon - lts/boron - lts/carbon - stable cache: directories: - node_modules after_success: - npm i -g coveralls - cat coverage/lcov.info | coveralls
language: node_js node_js: - lts/argon - lts/boron - lts/carbon - stable cache: directories: - $HOME/.npm after_success: - npm i -g coveralls - cat coverage/lcov.info | coveralls
Change caching to avoid crossversion issues
Change caching to avoid crossversion issues
YAML
mit
maxdavidson/typescript-library-boilerplate,maxdavidson/typescript-library-boilerplate
627458f8d30459dc5b3f3b6a1b0d3bf8e369d1b2
.travis.yml
.travis.yml
language: php cache: directories: - $HOME/.composer/cache php: - 7.1 - 7.2 - 7.3 - 7.4 matrix: fast_finish: true before_install: - composer self-update install: - composer update --prefer-dist --prefer-stable --no-interaction script: - vendor/bin/phpstan --level=max --memory-limit="-1" --no-progress analyze - vendor/bin/php-cs-fixer fix --diff --dry-run - vendor/bin/phpunit --stderr --coverage-clover=build/coverage.xml after_success: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml notifications: email: false
language: php cache: directories: - $HOME/.composer/cache php: - 7.1 - 7.2 - 7.3 - 7.4 matrix: fast_finish: true include: # Run test with code coverage - php: 7.1 env: COVERAGE=true before_install: - composer self-update install: - composer update --prefer-dist --prefer-stable --no-interaction script: - vendor/bin/phpstan --level=max --memory-limit="-1" --no-progress analyze - vendor/bin/php-cs-fixer fix --diff --dry-run - vendor/bin/phpunit --stderr --coverage-clover=build/coverage.xml after_success: - if [[ $COVERAGE = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [[ $COVERAGE = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi notifications: email: false
Update Travis configuration for Coverage
Update Travis configuration for Coverage
YAML
mit
ker0x/messenger
0b6d1f9342477759c9253a6fe90cf71041a517a4
.travis.yml
.travis.yml
language: node_js node_js: - '0.10'
language: node_js node_js: - '0.10' notifications: slack: unit4architects:kashdeuAVUCPIetTI2mwlmi5
Add slack notification from Travis
Add slack notification from Travis
YAML
mit
Unit4/jsb3
f63dee66422b4e5b4c6723eeb5f8860540a13298
.travis.yml
.travis.yml
language: python python: - "2.7" env: global: - SECRET_KEY=blajblajbasdf matrix: - DJANGO=1.8 install: - pip install -r requirements.txt script: python manage.py test notifications: email: on_success: change on_failure: change
language: python python: - "2.7" addons: postgresql: "9.3" services: - postgresql env: global: - SECRET_KEY=blajblajbasdf - DATABASE_URL="postgres://postgres:@127.0.0.1:5432/lc" matrix: - DJANGO=1.8 install: - pip install -r requirements.txt script: python manage.py test notifications: email: on_success: change on_failure: change
Switch TravisCI to use postgres
Switch TravisCI to use postgres
YAML
mit
p2pu/learning-circles,p2pu/learning-circles,p2pu/learning-circles,p2pu/learning-circles
d0d686584d8d4c70cb99ae1c4ae5745d9c2a0105
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.11" - "0.12" - "iojs" branches: except: - gh-pages script: - npm test after_script: - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js - CODECLIMATE_REPO_TOKEN=46b538e32a131ea7637cbbc30f08237cef088467c9b9ec25419a961962fa96b3 ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info notifications: webhooks: urls: - https://webhooks.gitter.im/e/5ba2780eb32dc366def2 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
language: node_js node_js: - "0.10" - "0.11" - "0.12" - "iojs" branches: except: - gh-pages script: - npm test after_script: - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js - CODECLIMATE_REPO_TOKEN=f3feeb7586e2840f6baf8f244008a4377321263909236a4b9dceee67f4f1b773 ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info notifications: webhooks: urls: - https://webhooks.gitter.im/e/5ba2780eb32dc366def2 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Update coverage token for code climate
Update coverage token for code climate
YAML
mit
yahoo/pngjs-image
6729495266dfc23f3260f2a0982aa0e85fd34602
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python python: - "3.6" - "3.5" - "3.4" - "3.3" - "2.7" - "2.6" - "pypy" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install -r requirements.txt - pip install flake8 before_script: flake8 . --count --ignore=E402 --max-line-length=127 --statistics --exit-zero script: python setup.py test notifications: on_success: change on_failure: always
# Config file for automatic testing at travis-ci.org language: python python: - "3.6" - "3.5" - "3.4" - "3.3" - "2.7" - "2.6" - "pypy" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install -r requirements.txt - pip install flake8 before_script: flake8 . --count --ignore=E402 --max-line-length=127 --statistics --exit-zero # command to run tests, e.g. python setup.py test script: python setup.py test notifications: on_success: change on_failure: always
Put the comment back in
Put the comment back in
YAML
mit
xesscorp/skidl,xesscorp/skidl
d953863c8990716a42ea3cd372500e0c80ca7f3c
.travis.yml
.travis.yml
language: erlang env: matrix: - LUA=lua5.1 - LUA=lua5.2 before_install: - sudo apt-get install $LUA script: - $LUA run_unit_tests.lua - $LUA run_functional_tests.lua notifications: email: on_success: change on_failure: always
language: erlang env: matrix: - LUA=lua5.1 - LUA=lua5.2 before_install: - sudo apt-get install $LUA libxml2-utils script: - $LUA run_unit_tests.lua - $LUA run_functional_tests.lua notifications: email: on_success: change on_failure: always
Install xmllint before running test suite
Install xmllint before running test suite
YAML
bsd-2-clause
GuntherStruyf/luaunit,GuntherStruyf/luaunit
ee6b64a14e4120effec21193d17d7e9cc286f3e5
.travis.yml
.travis.yml
language: ruby sudo: false matrix: include: - rvm: 1.9.3 - rvm: 2.0.0 - rvm: 2.1.10 - rvm: 2.2.5 - rvm: 2.3.1 - rvm: ruby-head - rvm: jruby-9.1.5.0 env: JRUBY_OPTS="--dev -J-Djruby.launch.inproc=true -J-Xmx1024M" - rvm: jruby-1.7.26 env: JRUBY_OPTS="--dev -J-Djruby.launch.inproc=true -J-Xmx1024M" - rvm: rbx-3 allow_failures: - rvm: jruby-1.7.26 - rvm: jruby-9.1.5.0 - rvm: rbx-3
language: ruby sudo: false dist: trusty group: beta matrix: include: - rvm: 1.9.3 - rvm: 2.0.0 - rvm: 2.1.10 - rvm: 2.2.5 - rvm: 2.3.1 - rvm: ruby-head - rvm: jruby-9.1.5.0 env: JRUBY_OPTS="--dev -J-Djruby.launch.inproc=true -J-Xmx1024M" - rvm: jruby-1.7.26 env: JRUBY_OPTS="--dev -J-Djruby.launch.inproc=true -J-Xmx1024M" - rvm: rubinius-3 allow_failures: - rvm: jruby-1.7.26 - rvm: jruby-9.1.5.0 - rvm: rubinius-3
Change build machine to Ubuntu 14.04
Travis: Change build machine to Ubuntu 14.04
YAML
mit
flavorjones/loofah,flavorjones/loofah,flavorjones/loofah
2e7cdc80f1dda9046f02c97d457826cbab077aa7
.travis.yml
.travis.yml
language: cpp compiler: gcc before_install: sudo apt-get install -qq libx11-dev libxrandr-dev libasound2-dev libgl1-mesa-dev doxygen graphviz script: exit 0 && ./cmake_gcc.sh -DENABLE_64BIT=1 -DENABLE_LUAJIT=1 -DENABLE_LUAJIT_AMALG=1 -DENABLE_SAMPLES=1 -DENABLE_TOOLS=1 -DENABLE_EXTRAS=1 -DENABLE_DOCS_QUIET=1 && cd Build && make after_success: rake travis env: global: secure: Bg7YyGEd7KXP8TFm9FEFpW5mg/OS0sQmlQlFmD6Y4I2rCFikwF/qoeLmIJ5fu8hpt/69tYiG/ivTyXjntNlOCqFztK4LeYY8RicAlfAbY73XtvWoq5uhXACmjev3nsBsVfcNu8dJyXUW0L7LAerSbhJP7V2CdvoEGAlN5mOMgJc=
language: cpp compiler: gcc before_install: sudo apt-get install -qq libx11-dev libxrandr-dev libasound2-dev libgl1-mesa-dev doxygen graphviz #script: ./cmake_gcc.sh -DENABLE_64BIT=1 -DENABLE_LUAJIT=1 -DENABLE_LUAJIT_AMALG=1 -DENABLE_SAMPLES=1 -DENABLE_TOOLS=1 -DENABLE_EXTRAS=1 -DENABLE_DOCS_QUIET=1 && cd Build && make script: echo Bypass after_success: rake travis env: global: secure: Bg7YyGEd7KXP8TFm9FEFpW5mg/OS0sQmlQlFmD6Y4I2rCFikwF/qoeLmIJ5fu8hpt/69tYiG/ivTyXjntNlOCqFztK4LeYY8RicAlfAbY73XtvWoq5uhXACmjev3nsBsVfcNu8dJyXUW0L7LAerSbhJP7V2CdvoEGAlN5mOMgJc=
Test site documentation deployment using Travis CI.
Test site documentation deployment using Travis CI.
YAML
mit
SuperWangKai/Urho3D,tommy3/Urho3D,victorholt/Urho3D,kostik1337/Urho3D,codedash64/Urho3D,SuperWangKai/Urho3D,c4augustus/Urho3D,urho3d/Urho3D,PredatorMF/Urho3D,rokups/Urho3D,eugeneko/Urho3D,helingping/Urho3D,fire/Urho3D-1,bacsmar/Urho3D,bacsmar/Urho3D,carnalis/Urho3D,iainmerrick/Urho3D,fire/Urho3D-1,MonkeyFirst/Urho3D,orefkov/Urho3D,codemon66/Urho3D,helingping/Urho3D,eugeneko/Urho3D,bacsmar/Urho3D,codedash64/Urho3D,xiliu98/Urho3D,PredatorMF/Urho3D,henu/Urho3D,iainmerrick/Urho3D,helingping/Urho3D,iainmerrick/Urho3D,kostik1337/Urho3D,xiliu98/Urho3D,tommy3/Urho3D,victorholt/Urho3D,weitjong/Urho3D,codedash64/Urho3D,PredatorMF/Urho3D,weitjong/Urho3D,helingping/Urho3D,abdllhbyrktr/Urho3D,bacsmar/Urho3D,MeshGeometry/Urho3D,cosmy1/Urho3D,codedash64/Urho3D,rokups/Urho3D,c4augustus/Urho3D,luveti/Urho3D,MeshGeometry/Urho3D,rokups/Urho3D,iainmerrick/Urho3D,luveti/Urho3D,xiliu98/Urho3D,victorholt/Urho3D,c4augustus/Urho3D,eugeneko/Urho3D,kostik1337/Urho3D,abdllhbyrktr/Urho3D,carnalis/Urho3D,codedash64/Urho3D,weitjong/Urho3D,codemon66/Urho3D,codemon66/Urho3D,codemon66/Urho3D,abdllhbyrktr/Urho3D,299299/Urho3D,tommy3/Urho3D,cosmy1/Urho3D,rokups/Urho3D,orefkov/Urho3D,fire/Urho3D-1,henu/Urho3D,carnalis/Urho3D,henu/Urho3D,carnalis/Urho3D,cosmy1/Urho3D,SirNate0/Urho3D,helingping/Urho3D,victorholt/Urho3D,tommy3/Urho3D,weitjong/Urho3D,urho3d/Urho3D,rokups/Urho3D,fire/Urho3D-1,SirNate0/Urho3D,rokups/Urho3D,299299/Urho3D,SirNate0/Urho3D,carnalis/Urho3D,MonkeyFirst/Urho3D,luveti/Urho3D,c4augustus/Urho3D,fire/Urho3D-1,luveti/Urho3D,codemon66/Urho3D,abdllhbyrktr/Urho3D,299299/Urho3D,eugeneko/Urho3D,abdllhbyrktr/Urho3D,PredatorMF/Urho3D,urho3d/Urho3D,MeshGeometry/Urho3D,weitjong/Urho3D,299299/Urho3D,cosmy1/Urho3D,c4augustus/Urho3D,SirNate0/Urho3D,kostik1337/Urho3D,SuperWangKai/Urho3D,MonkeyFirst/Urho3D,iainmerrick/Urho3D,cosmy1/Urho3D,henu/Urho3D,victorholt/Urho3D,xiliu98/Urho3D,kostik1337/Urho3D,MonkeyFirst/Urho3D,luveti/Urho3D,xiliu98/Urho3D,MonkeyFirst/Urho3D,henu/Urho3D,SuperWangKai/Urho3D,SuperWangKai/Urho3D,MeshGeometry/Urho3D,299299/Urho3D,orefkov/Urho3D,SirNate0/Urho3D,urho3d/Urho3D,tommy3/Urho3D,299299/Urho3D,orefkov/Urho3D,MeshGeometry/Urho3D
9a1f70160b4965ca937f4dff94f1bd86bea6fe93
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" script: "python setup.py test" sudo: false
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" script: "python setup.py test" sudo: false
Update Python versions tested by Travis
Update Python versions tested by Travis
YAML
mit
AntagonistHQ/openprovider.py
b3773c00d16e31f013a53496a8c01acbd7447a44
hieradata/nodes/osl-proxy-01.yaml
hieradata/nodes/osl-proxy-01.yaml
--- network::interfaces_hash: 'eth0': ipaddress: '129.240.224.114' netmask: '255.255.255.224' gateway: '129.240.224.97' mtu: '1500' peerdns: 'yes' dns1: '129.240.2.3' dns2: '129.240.2.40' domain: 'iaas.uio.no'
--- network::interfaces_hash: 'eth0': ipaddress: '129.240.224.114' netmask: '255.255.255.224' gateway: '129.240.224.97' mtu: '1500' peerdns: 'yes' dns1: '129.240.2.3' dns2: '129.240.2.40' domain: 'iaas.uio.no' 'eth1': ipaddress: '172.18.32.5' netmask: '255.255.248.0' gateway: '172.18.32.1' srcaddr: '158.37.63.253' defroute: 'yes' 'dummy0': ipaddress: '158.37.63.253' netmask: '255.255.255.255' defroute: 'no'
Refactor osl-proxy for NAT role
Refactor osl-proxy for NAT role
YAML
apache-2.0
mikaeld66/himlar,raykrist/himlar,raykrist/himlar,tanzr/himlar,norcams/himlar,tanzr/himlar,norcams/himlar,TorLdre/himlar,TorLdre/himlar,mikaeld66/himlar,TorLdre/himlar,eckhart/himlar,eckhart/himlar,norcams/himlar,raykrist/himlar,tanzr/himlar,tanzr/himlar,mikaeld66/himlar,raykrist/himlar,eckhart/himlar,mikaeld66/himlar,tanzr/himlar,norcams/himlar,eckhart/himlar,TorLdre/himlar,mikaeld66/himlar,norcams/himlar,TorLdre/himlar,raykrist/himlar
0a013b1abf94f06f233fa39d86a15ea8cf16934f
packages/in/inline-c-cpp.yaml
packages/in/inline-c-cpp.yaml
homepage: '' changelog-type: '' hash: b139412c32ef6021eebdc025591b79bf4c2ae8fc1247139d367fa64618bc6e3e test-bench-deps: inline-c: -any base: ! '>=4 && <5' hspec: -any safe-exceptions: -any inline-c-cpp: -any containers: -any maintainer: f@mazzo.li synopsis: Lets you embed C++ code into Haskell. changelog: '' basic-deps: inline-c: ! '>=0.6.1.0' base: ! '>=4.7 && <5' safe-exceptions: -any containers: -any template-haskell: -any all-versions: - 0.1.0.0 - 0.2.0.0 - 0.2.0.1 - 0.2.0.2 - 0.2.1.0 - 0.2.2.1 - 0.3.0.1 - 0.3.0.2 - 0.3.0.3 - 0.3.1.0 author: Francesco Mazzoli latest: 0.3.1.0 description-type: haddock description: |- Utilities to inline C++ code into Haskell using inline-c. See tests for example on how to build. license-name: MIT
homepage: '' changelog-type: '' hash: 4ff2d7643a36dbfc8d089db3b79981b7f44d7a23823c273f826b545a26c822ca test-bench-deps: inline-c: -any base: ! '>=4 && <5' hspec: -any safe-exceptions: -any inline-c-cpp: -any containers: -any maintainer: f@mazzo.li synopsis: Lets you embed C++ code into Haskell. changelog: '' basic-deps: inline-c: ! '>=0.6.1.0' base: ! '>=4.7 && <5' safe-exceptions: -any containers: -any template-haskell: -any all-versions: - 0.1.0.0 - 0.2.0.0 - 0.2.0.1 - 0.2.0.2 - 0.2.1.0 - 0.2.2.1 - 0.3.0.1 - 0.3.0.2 - 0.3.0.3 - 0.3.1.0 - 0.4.0.0 author: Francesco Mazzoli latest: 0.4.0.0 description-type: haddock description: |- Utilities to inline C++ code into Haskell using inline-c. See tests for example on how to build. license-name: MIT
Update from Hackage at 2019-11-25T21:58:05Z
Update from Hackage at 2019-11-25T21:58:05Z
YAML
mit
commercialhaskell/all-cabal-metadata
0203a1122ddfa1a22e0466087380e9737ca1cda0
tusk.yml
tusk.yml
--- options: fast: usage: Skip slow linters/tests type: bool tasks: bootstrap: usage: Set up the app for first time use description: | Install all dependencies for building and testing the application. run: - command: - go get -u github.com/alecthomas/gometalinter - go get -u github.com/golang/dep/cmd/dep - dep ensure lint: usage: Run the linter description: | Runs gometalinter using the configuration specified in .gometalinter.json. options: opts: private: true computed: - when: equal: fast: true default: --fast run: - command: gometalinter --config .gometalinter.json ${opts} ./... test: usage: Run tests description: | Runs the full test suite using `go test -cover ./...`. Also runs the linter by default, and linter errors are considered failed tests. options: lint: usage: Run the linter with the tests default: true type: bool run: - when: equal: lint: true task: lint - command: go test -cover -race ./...
--- options: fast: usage: Skip slow linters/tests type: bool tasks: bootstrap: usage: Set up the app for first time use description: | Install all dependencies for building and testing the application. run: - command: - go get -u github.com/alecthomas/gometalinter - go get -u github.com/golang/dep/cmd/dep - dep ensure lint: usage: Run the linter description: | Runs gometalinter using the configuration specified in .gometalinter.json. options: opts: private: true computed: - when: equal: fast: true default: --fast run: - command: gometalinter --config .gometalinter.json ${opts} ./... test: usage: Run tests description: | Runs the full test suite using `go test -cover ./...`. Also runs the linter by default, and linter errors are considered failed tests. options: lint: usage: Run the linter with the tests default: true type: bool verbose: usage: Run the tests in verbose mode short: v default: false type: bool verbose_string: private: true computed: - when: equal: verbose: true default: -v run: - when: equal: lint: true task: lint - command: go test -cover -race ${verbose_string} ./...
Add verbose flag to test task
Add verbose flag to test task
YAML
mit
rliebz/tusk,rliebz/tusk
fbd20ace1452657459b033b5ef1a09bf3e5d2266
packages/re/read-bounded.yaml
packages/re/read-bounded.yaml
homepage: https://github.com/thomaseding/read-bounded changelog-type: '' hash: 922cff6efb878048938e71fed3ea57ec0820d1f746a3ca1c34f47dcadce2a292 test-bench-deps: {} maintainer: thomasedingcode@gmail.com synopsis: Class for reading bounded values changelog: '' basic-deps: base: ! '>=4.9 && <5.0' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.1.1 author: Thomas Eding latest: 0.1.1.1 description-type: markdown description: ! "# read-bounded\r\nLibrary for reading in values that have bounded representations.\r\n\r\n\r\n```haskell\r\n> readBounded \"1\" :: BoundedRead Word8\r\nExactRead 1\r\n> readBounded \"1000\" :: BoundedRead Word8\r\nClampedRead 255\r\n> readBounded \"\" :: BoundedRead Word8\r\nNoRead\r\n```\r\n\r\n" license-name: BSD-3-Clause
homepage: https://github.com/thomaseding/read-bounded changelog-type: '' hash: cb4d93c0b3862f651dd2266b88d5d9f4b8ae032ecb339d7e7510f7e371200f1f test-bench-deps: {} maintainer: Thomas Eding synopsis: Class for reading bounded values changelog: '' basic-deps: base: ^>=4.12.0.0 all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.1.1 - 0.1.1.2 author: Thomas Eding latest: 0.1.1.2 description-type: markdown description: "# read-bounded\r\nLibrary for reading in values that have bounded representations.\r\n\r\n\r\n```haskell\r\n> readBounded \"1\" :: BoundedRead Word8\r\nExactRead 1\r\n> readBounded \"1000\" :: BoundedRead Word8\r\nClampedRead 255\r\n> readBounded \"\" :: BoundedRead Word8\r\nNoRead\r\n```\r\n\r\n" license-name: BSD-3-Clause
Update from Hackage at 2019-03-24T14:16:27Z
Update from Hackage at 2019-03-24T14:16:27Z
YAML
mit
commercialhaskell/all-cabal-metadata
5d2e860565e4b0ac9c6b30586d506a5132e33b6e
tasks/compile-lattice-tgz/task.yml
tasks/compile-lattice-tgz/task.yml
--- platform: linux image: docker:///cloudfoundry/lattice-ci inputs: - name: lattice-ci - name: lattice-release run: path: lattice-ci/tasks/compile-lattice-tar/run.sh
--- platform: linux image: docker:///cloudfoundry/lattice-ci inputs: - name: lattice-ci - name: lattice-release run: path: lattice-ci/tasks/compile-lattice-tgz/run.sh
Use correct path to compile-lattice-tgz's run script
Use correct path to compile-lattice-tgz's run script [#104919732]
YAML
apache-2.0
cloudfoundry-incubator/lattice-ci,cloudfoundry-incubator/lattice-ci,cloudfoundry-incubator/lattice-ci
673e0a59f098300e0877f628e32a0893e4298e99
config_files/history_graph.yaml
config_files/history_graph.yaml
gr1: name: Power Consumption entities: - sensor.emoncms_node0power_livew hours_to_show: 24 refresh: 60 gr2: name: NordPool Elspot entities: - sensor.elspot_kwh hours_to_show: 24
gr1: name: Power Consumption entities: - sensor.emoncms_node0power_livew hours_to_show: 24 refresh: 60 gr2: name: NordPool Elspot entities: - sensor.elspot_kwh hours_to_show: 24 refresh: 1800
Make sure the graph updates
Make sure the graph updates
YAML
mit
jafossum/Home-AssistantConfig
1c9fa5bfbf7ac8ed1f8a21052dd3e03f0b95fa15
deployments/cs194/config/prod.yaml
deployments/cs194/config/prod.yaml
jupyterhub-ssh: hubUrl: https://cs194.datahub.berkeley.edu jupyterhub: proxy: service: type: LoadBalancer loadBalancerIP: 35.193.57.206 https: hosts: - cs194.datahub.berkeley.edu auth: custom: config: client_id: '10720000000000472' oauth_callback_url: 'https://cs194.datahub.berkeley.edu/hub/oauth_callback' hub: db: pvc: # This also holds logs storage: 4Gi
jupyterhub-ssh: hubUrl: https://cs194.datahub.berkeley.edu jupyterhub: ingress: enabled: true hosts: - cs194.datahub.berkeley.edu tls: - secretName: tls-cert hosts: - cs194.datahub.berkeley.edu auth: custom: config: client_id: '10720000000000472' oauth_callback_url: 'https://cs194.datahub.berkeley.edu/hub/oauth_callback' hub: db: pvc: # This also holds logs storage: 4Gi
Switch cs194 to using ingress
Switch cs194 to using ingress Ref #2167
YAML
bsd-3-clause
berkeley-dsep-infra/datahub,ryanlovett/datahub,berkeley-dsep-infra/datahub,ryanlovett/datahub,ryanlovett/datahub,berkeley-dsep-infra/datahub
635a56e012d642e07264b445ccf48fb835a5c0d9
gce/modules/etcd/kube-scheduler.yml
gce/modules/etcd/kube-scheduler.yml
apiVersion: v1 kind: Pod metadata: name: kube-scheduler namespace: kube-system spec: hostNetwork: true containers: - name: kube-scheduler image: ${ hyperkube } command: - /hyperkube - scheduler - --master=http://127.0.0.1:8080 - --leader-elect=true resources: requests: cpu: 100m livenessProbe: httpGet: host: 127.0.0.1 path: /healthz port: 10251 initialDelaySeconds: 15 timeoutSeconds: 15
{ "apiVersion": "v1", "kind": "Pod", "metadata": { "name":"kube-scheduler", "namespace": "kube-system", "labels": { "tier": "control-plane", "component": "kube-scheduler" } }, "spec":{ "hostNetwork": true, "containers":[ { "name": "kube-scheduler", "image": "gcr.io/google_containers/kube-scheduler-amd64:v1.6.6", "resources": { "requests": { "cpu": "100m" } }, "command": [ "/bin/sh", "-c", "/usr/local/bin/kube-scheduler --v=2 --master=http://127.0.0.1:8080 --feature-gates=ExperimentalCriticalPodAnnotation=true" ], "livenessProbe": { "httpGet": { "host": "127.0.0.1", "port": 10251, "path": "/healthz" }, "initialDelaySeconds": 15, "timeoutSeconds": 15 }, "volumeMounts": [ { "name": "srvkube", "mountPath": "/etc/srv/kubernetes", "readOnly": true } ] } ], "volumes":[ { "name": "srvkube", "hostPath": {"path": "/etc/srv/kubernetes"} } ] }}
Update Scheduler to use Container
Update Scheduler to use Container
YAML
apache-2.0
cncf/cross-cloud
bbc26ea4bfcb289850c86175714569148a52f9b1
tasks/create-cf-release-without-modifying-stacks.yml
tasks/create-cf-release-without-modifying-stacks.yml
--- platform: linux image_resource: type: docker-image source: repository: cfbuildpacks/ci inputs: - name: cf-release - name: buildpacks-ci outputs: - name: cf-release-artifacts inputs: - name: deployments-buildpacks - name: buildpacks-ci run: path: buildpacks-ci/scripts/stacks/create-release-without-modifying-stacks
--- platform: linux image_resource: type: docker-image source: repository: cfbuildpacks/ci inputs: - name: cf-release - name: buildpacks-ci outputs: - name: cf-release-artifacts run: path: buildpacks-ci/scripts/stacks/create-release-without-modifying-stacks
Remove 2nd set of task inputs for cf-release task
Remove 2nd set of task inputs for cf-release task [#126369161] Signed-off-by: James Wen <3b2f4c88287a5fcd7db73a67dd1ab82807db04ee@columbia.edu>
YAML
apache-2.0
cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,orange-cloudfoundry/buildpacks-ci,orange-cloudfoundry/buildpacks-ci,orange-cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci
3c512c5f50a016f3be5a351fc83867537e49a8a3
.rubocop.yml
.rubocop.yml
inherit_gem: rubocop-govuk: - config/default.yml - config/rails.yml inherit_mode: merge: - Exclude # This app does not use ActiveRecord Rails/DynamicFindBy: Whitelist: - find_by_key - find_by_id
inherit_gem: rubocop-govuk: - config/default.yml - config/rails.yml inherit_mode: merge: - Exclude
Remove remaining redundant RuboCop config
Remove remaining redundant RuboCop config
YAML
mit
alphagov/finder-frontend,alphagov/finder-frontend,alphagov/finder-frontend,alphagov/finder-frontend
871a58e1db2fac971f0254e458cd1f46cb24689d
.builds/.freebsd.yaml
.builds/.freebsd.yaml
image: freebsd/latest packages: - gmake - gcc sources: - https://github.com/janet-lang/janet.git tasks: - build: | cd janet gmake CC=gcc gmake test CC=gcc sudo gmake install CC=gcc gmake test-install CC=gcc
image: freebsd/latest packages: - gmake - gcc tasks: - build: | cd janet gmake CC=gcc gmake test CC=gcc sudo gmake install CC=gcc gmake test-install CC=gcc
Remove extreneous source reference on sr.ht build
Remove extreneous source reference on sr.ht build
YAML
mit
bakpakin/gst,bakpakin/gst
0301c21a37de6e429f80cdb78a5f0adf41fafd12
eng/pipelines/eng-common-sync.yml
eng/pipelines/eng-common-sync.yml
# Mirror the eng/common folder to all subscribed langauge repos. trigger: branches: include: - master paths: include: - eng/common pr: none resources: repositories: - repository: azure-sdk-build-tools type: git name: internal/azure-sdk-build-tools pool: vmImage: ubuntu-18.04 jobs: - job: SyncEngCommon displayName: Sync eng/common Directory steps: - template: tools/clone-buildtools/clone-buildtools.yml@azure-sdk-build-tools - template: ./templates/steps/sync-directory.yml parameters: CommitMessage: Sync eng/common directory with azure-sdk-tools repository DirectoryToSync: eng/common Repos: - azure-sdk-for-android - azure-sdk-for-c - azure-sdk-for-go - azure-sdk-for-ios - azure-sdk-for-java - azure-sdk-for-js - azure-sdk-for-net - azure-sdk-for-python
# Mirror the eng/common folder to all subscribed langauge repos. trigger: branches: include: - master paths: include: - eng/common pr: none resources: repositories: - repository: azure-sdk-build-tools type: git name: internal/azure-sdk-build-tools pool: vmImage: windows-2019 jobs: - job: SyncEngCommon displayName: Sync eng/common Directory steps: - template: tools/clone-buildtools/clone-buildtools.yml@azure-sdk-build-tools - template: ./templates/steps/sync-directory.yml parameters: CommitMessage: Sync eng/common directory with azure-sdk-tools repository DirectoryToSync: eng/common Repos: - azure-sdk-for-android - azure-sdk-for-c - azure-sdk-for-go - azure-sdk-for-ios - azure-sdk-for-java - azure-sdk-for-js - azure-sdk-for-net - azure-sdk-for-python
Change back to windows host
Change back to windows host Currently there are some script and pwsh steps that don't work well on linux so we need to stay on windows until those can be fixed. Things that don't work well: - echo commands in script blocks. On windows they don't need quotes but on linux they do and escaping quotes is also different - commands like mkdir on in pwsh scripts don't work consistently on windows it will create parent directories because it does the create recurisvely and it is just an alias to new-item. On linux it is not an alias and you have to pass the "-p" arg to get it to create parent directories. In general we should be careful with using alias' for cross-platform pwsh because they are not consistently alias' on all platforms.
YAML
mit
tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools,tg-msft/azure-sdk-tools
7db4a1be22361a18536271e696a7e37334d3d813
platform/sponge/src/main/resources/META-INF/plugins.yml
platform/sponge/src/main/resources/META-INF/plugins.yml
plugins: - loader: java_plain id: "${project.rootProject.name.toLowerCase()}" name: "${project.rootProject.name}" version: "${project.version}" main-class: ca.stellardrift.permissionsex.sponge.PermissionsExPlugin description: "${project.description}" links: homepage: "${project.opinionated.scm.get().website}" issues: "${project.opinionated.scm.get().issueTrackerURL}" source: "${project.opinionated.scm.get().scmWeb}" contributors: - name: "zml" description: "permission herder" dependencies: - id: spongeapi version: 8.0.0
plugins: - loader: java_plain id: "${project.rootProject.name.toLowerCase()}" name: "${project.rootProject.name}" version: "${project.version}" main-class: ca.stellardrift.permissionsex.sponge.PermissionsExPlugin description: "${project.description}" links: homepage: "${project.indra.scm.get().url}" issues: "${project.indra.issues.get().url}" source: "${project.indra.scm.get().url}" contributors: - name: "zml" description: "permission herder" dependencies: - id: spongeapi version: 8.0.0
Update plugin descriptor for new resource locations
sponge: Update plugin descriptor for new resource locations
YAML
apache-2.0
PEXPlugins/PermissionsEx,PEXPlugins/PermissionsEx,PEXPlugins/PermissionsEx
456719208dbbf9adf59f80c50a107b77576b8fa0
.zuul.yml
.zuul.yml
ui: mocha-bdd concurrency: 1 browsers: - name: chrome version: 45 - name: ie version: 10..11 - name: firefox version: 41 - name: iphone version: 9.1 - name: ipad version: 9.1 - name: android version: 5.1 - name: opera version: 12 - name: safari version: 8.1
ui: mocha-bdd concurrency: 5 browsers: - name: chrome version: 45 - name: ie version: 10..11 - name: firefox version: 41 - name: iphone version: 9.1 - name: ipad version: 9.1 - name: android version: 5.1 - name: opera version: 12 - name: safari version: 8.1
Use all available vas for testing.
Use all available vas for testing.
YAML
mit
lsm/superpipe,lsm/superplumber
4223a51f49343bb2f06ee392f4edf6ae1b809c5a
update_kb_bsfcampus_sen.yml
update_kb_bsfcampus_sen.yml
--- # Ansible playbook for BSF Campus Sénégale #It will be always localhost - hosts: localhost # pre_tasks: # - lineinfile: dest=/etc/network/interfaces regexp='wpa' state=absent roles: # # Can be enable/disable on demand but affect all devices # - role: updateIdeascube # version: "0.4.0-1" # ideascube_id: "kb_bsfcampus_sen" # - role: updateMook # mook_name: "bsfcampus" # - appinventor # when: ansible_hostname == 'KoomBook483' # # Update Mook plateform # - mongodb # - { role: mook, mook_name: bsfcampus } # - { role: mook, mook_name: fun } # Install and configure a kiwix project # - role: kiwix # kiwixProject: wikipedia # portProject: 8002 # - role: kiwix # kiwixProject: wikisource # portProject: 8003 # - role: kiwix # kiwixProject: vikidia # portProject: 8004 # - role: kiwix # kiwixProject: cpassorcier # portProject: 8005 # - role: kiwix # kiwixProject: ubuntudoc # portProject: 8006 # - role: kiwix # kiwixProject: gutenberg # portProject: 8007 # - role: kiwix # kiwixProject: universcience # portProject: 8009 # - role: kiwix # kiwixProject: ted # portProject: 8010 # - role: kiwix # kiwixProject: software # portProject: 8011 # Play a role for a specific device - { role: tinc-static, when: ansible_hostname == 'kb-bsfcampus-sen-818' } #- { role: ideascube, when: ansible_hostname == 'KoomBook484' } # Start. has to be always enable - logs # Stop. has to be always enable # post_tasks: # - file: path=/etc/udev/rules.d/70-persistent-net.rules state=absent # - replace: dest=/etc/dhcp/dhclient-exit-hooks.d/ansiblePullUpdate regexp='sleep 120 &&' replace='sleep 120 && rm -rf /var/lib/ansible/ &&' # - command: /sbin/shutdown -h now
--- # Ansible playbook for BSF Campus Sénégale #It will be always localhost - hosts: localhost roles: - tinc-static # Start. has to be always enable - logs # Stop. has to be always enable
Clean up playbook and enable role tinc-static for all koombook
Clean up playbook and enable role tinc-static for all koombook
YAML
mit
ideascube/ansiblecube,ideascube/ansiblecube
e79f73cfeb9ed4d31c576d38c546c000da672252
recipes/pretty_midi/meta.yaml
recipes/pretty_midi/meta.yaml
{% set name = "pretty_midi" %} {% set version = "0.2.9" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pretty_midi-{{ version }}.tar.gz sha256: f6a249cb843441e1cb78c4c0a1290948d6f56df7486f7974e20d5c80486dc99e build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python run: - mido >=1.1.16 - numpy >=1.7.0 - python - six test: imports: - pretty_midi commands: - pip check requires: - pip about: home: https://github.com/craffel/pretty-midi summary: Functions and classes for handling MIDI data conveniently. license: MIT license_file: LICENSE.txt extra: recipe-maintainers: - Walter-0
{% set name = "pretty_midi" %} {% set version = "0.2.9" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pretty_midi-{{ version }}.tar.gz sha256: f6a249cb843441e1cb78c4c0a1290948d6f56df7486f7974e20d5c80486dc99e build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python >=2.7 run: - mido >=1.1.16 - numpy >=1.7.0 - python >=2.7 - six test: imports: - pretty_midi commands: - pip check requires: - pip about: home: https://github.com/craffel/pretty-midi summary: Functions and classes for handling MIDI data conveniently. license: MIT license_file: LICENSE.txt extra: recipe-maintainers: - Walter-0
Add lower bound to python version
Add lower bound to python version
YAML
bsd-3-clause
conda-forge/staged-recipes,ocefpaf/staged-recipes,hadim/staged-recipes,stuertz/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,ReimarBauer/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,stuertz/staged-recipes,conda-forge/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes
6f7ecae61e866dde8a9a087732b0a0910b1992e7
playbooks/roles/osx/tasks/main.yml
playbooks/roles/osx/tasks/main.yml
--- - name: Update Homebrew homebrew: update_homebrew=yes - name: Install libraries with Homebrew homebrew: name={{ item }} state=latest with_items: - git - vim - zsh - tmux - tree - ag - name: Cleanup Brew packages command: brew cleanup
--- - name: Update Homebrew homebrew: update_homebrew=yes - name: Install libraries with Homebrew homebrew: name={{ item }} state=latest with_items: - git - vim - zsh - tmux - tree - ag - name: Cleanup Brew packages command: brew cleanup - name: Create Screenshot Directory file: path=~/Pictures/Screenshots state=directory mode=0755 - name: Write to screencapture defaults raw: defaults write com.apple.screencapture location ~/Pictures/Screenshots # as suggested by http://osxdaily.com/2011/01/26/change-the-screenshot-save-file-location-in-mac-os-x/ - name: Kill SystemUIServer raw: killall SystemUIServer;
Set OSX default screencapture to ~/Pictures/Screenshots
Set OSX default screencapture to ~/Pictures/Screenshots - fixes #14
YAML
mit
evangoad/devenv,evangoad/devenv,evangoad/devie,evangoad/devie,evangoad/devie
32bf048e78b80b1b750e35ce03dffea8027a45ec
.pre-commit-config.yaml
.pre-commit-config.yaml
repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.1.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-docstring-first - id: check-yaml - id: debug-statements - id: check-ast - repo: https://github.com/ambv/black rev: 22.1.0 hooks: - id: black - repo: https://github.com/asottile/pyupgrade rev: v2.31.0 hooks: - id: pyupgrade args: [--py3-plus] - repo: https://github.com/timothycrosley/isort rev: 5.10.1 hooks: - id: isort - repo: https://gitlab.com/pycqa/flake8 rev: 3.9.2 hooks: - id: flake8
repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.1.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-docstring-first - id: check-yaml - id: debug-statements - id: check-ast - repo: https://github.com/ambv/black rev: 22.3.0 hooks: - id: black - repo: https://github.com/asottile/pyupgrade rev: v2.31.0 hooks: - id: pyupgrade args: [--py3-plus] - repo: https://github.com/timothycrosley/isort rev: 5.10.1 hooks: - id: isort - repo: https://gitlab.com/pycqa/flake8 rev: 3.9.2 hooks: - id: flake8
Upgrade version of black in pre-commit
Upgrade version of black in pre-commit
YAML
mit
amccaugh/phidl
2cd09c87157c40e389e0963bd8ea3a0925f605af
.pre-commit-config.yaml
.pre-commit-config.yaml
# HOWTO: https://pre-commit.com/#usage # pip3 install pre-commit # pre-commit install repos: - repo: https://github.com/ambv/black rev: 22.1.0 hooks: - id: black additional_dependencies: ['click==8.0.4'] language_version: python3.6 - repo: https://github.com/pre-commit/pre-commit-hooks rev: v2.2.3 hooks: - id: check-merge-conflict - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.910 hooks: - id: mypy args: [--strict, --ignore-missing-imports]
# HOWTO: https://pre-commit.com/#usage # pip3 install pre-commit # pre-commit install repos: - repo: https://github.com/ambv/black rev: 22.6.0 hooks: - id: black language_version: python3.6 - repo: https://github.com/pre-commit/pre-commit-hooks rev: v2.2.3 hooks: - id: check-merge-conflict - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.910 hooks: - id: mypy args: [--strict, --ignore-missing-imports]
Upgrade black in pre-commit hook, remove click dependency
Upgrade black in pre-commit hook, remove click dependency Avoids https://github.com/psf/black/issues/2964
YAML
apache-2.0
sclorg/container-common-scripts,sclorg/container-common-scripts
2711d729364238f18b8e9200f9538bb7a03b6581
.pre-commit-config.yaml
.pre-commit-config.yaml
repos: - repo: https://github.com/ambv/black rev: 19.10b0 hooks: - id: black language_version: python3 - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.770 hooks: - id: mypy - repo: https://gitlab.com/pycqa/flake8 rev: 3.8.3 hooks: - id: flake8 - repo: https://github.com/pre-commit/pre-commit-hooks rev: v3.2.0 hooks: - id: check-toml - id: check-yaml - repo: https://github.com/pre-commit/mirrors-isort rev: v5.4.2 hooks: - id: isort additional_dependencies: [toml]
repos: - repo: https://github.com/ambv/black rev: 19.10b0 hooks: - id: black language_version: python3 - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.770 hooks: - id: mypy - repo: https://gitlab.com/pycqa/flake8 rev: 3.8.3 hooks: - id: flake8 - repo: https://github.com/pre-commit/pre-commit-hooks rev: v3.2.0 hooks: - id: check-toml - id: check-yaml - repo: https://github.com/pre-commit/mirrors-isort rev: v5.4.2 hooks: - id: isort additional_dependencies: [toml] - repo: https://github.com/myint/docformatter rev: v1.3.1 hooks: - id: docformatter args: [--in-place]
Add pre-commit hook for docformatter
Add pre-commit hook for docformatter Signed-off-by: Dan Yeaw <2591e5f46f28d303f9dc027d475a5c60d8dea17a@yeaw.me>
YAML
lgpl-2.1
amolenaar/gaphor,amolenaar/gaphor
78c5c7c27e92ae3b94193b578775e9b25abc4b0e
ansible/roles/mysql/tasks/main.yml
ansible/roles/mysql/tasks/main.yml
--- - name: Add MySQL repo sudo: yes yum: name=http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm state=present - name: Install MySQL packages sudo: yes yum: pkg={{ item }} state=latest with_items: mysql.packages when: mysql.packages is defined - name: Install python devel sudo: yes yum: pkg=python-devel - name: Install pip sudo: yes yum: pkg=python-pip - name: Start MySQL manually sudo: yes shell: service mysqld start - name: Install the Python MySQLB module sudo: yes pip: name=MySQL-python - name: Update root password for all root accounts mysql_user: name=root host={{ item }} check_implicit_admin=yes password={{ mysql.root_password }} login_user=root login_password={{ mysql.mysql_old_root_password }} with_items: mysql.hosts when: mysql.hosts is defined
--- - name: Add MySQL repo sudo: yes yum: name=http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm state=present - name: Install MySQL packages sudo: yes yum: pkg={{ item }} state=latest with_items: mysql.packages when: mysql.packages is defined - name: Install python devel sudo: yes yum: pkg=python-devel - name: Install pip sudo: yes yum: pkg=python-pip - name: Upgrade pip sudo: yes shell: pip install --upgrade pip - name: Start MySQL manually sudo: yes shell: service mysqld start - name: Install the Python MySQLB module sudo: yes pip: name=MySQL-python - name: Create Database mysql_db: name={{ mysql.name }} state=present - name: Update root password for all root accounts mysql_user: name=root host={{ item }} check_implicit_admin=yes password={{ mysql.root_password }} login_user=root login_password={{ mysql.mysql_old_root_password }} with_items: mysql.hosts when: mysql.hosts is defined
Create database. Name set in all.yml
[Vagrant] Create database. Name set in all.yml
YAML
mit
phpminds/website,phpminds/website,phpminds/website,phpminds/website
291db323ffaeef0344d7abab0335b556a07ea59c
ansible/staging-docker-compose.yml
ansible/staging-docker-compose.yml
version: '2' services: backend: image: {{image}} extends: file: common.yml service: backend depends_on: - db ports: - "{{port}}:8000" db: image: postgres:9 container_name: {{db_name}} environment: - POSTGRES_USER={{postgres_user}} - POSTGRES_PASSWORD={{postgres_pass}}
version: '2' services: backend: image: {{image}} extends: file: common.yml service: backend depends_on: - db ports: - "{{port}}:8000" db: image: postgres:9 container_name: {{db_name}} environment: - POSTGRES_USER={{postgres_user}} - POSTGRES_PASSWORD={{postgres_pass}} fixture: image: {{image}} depends_on: - db command: | bash -c "\ /tmp/wait-for-it.sh -h db -p 5432 && \ ./manage.py makemigrations && \ ./manage.py migrate && \ ./manage.py loaddata calories/fixtures/food.json && \ echo Database migrations done!!"
Add fixture to deploy compose
Add fixture to deploy compose
YAML
bsd-2-clause
banjocat/calorie-find,banjocat/calorie-find
c2f307645071054f7c5d60aa5457ad14d013c8bd
pkg/analyzer/pubspec.yaml
pkg/analyzer/pubspec.yaml
name: analyzer version: 0.27.4-alpha.9 author: Dart Team <misc@dartlang.org> description: Static analyzer for Dart. homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer environment: sdk: '>=1.12.0 <2.0.0' dependencies: args: '>=0.12.1 <0.14.0' crypto: '>=1.1.1 <2.0.0' glob: ^1.0.3 html: ^0.12.0 package_config: ^0.1.1 path: '>=0.9.0 <2.0.0' plugin: ^0.2.0 watcher: '>=0.9.6 <0.10.0' yaml: ^2.1.2 dev_dependencies: typed_mock: '>=0.0.4 <1.0.0' unittest: '>=0.9.0 <0.12.0'
name: analyzer version: 0.27.4-alpha.9 author: Dart Team <misc@dartlang.org> description: Static analyzer for Dart. homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer environment: sdk: '>=1.12.0 <2.0.0' dependencies: args: '>=0.12.1 <0.14.0' crypto: '>=1.1.1 <3.0.0' glob: ^1.0.3 html: ^0.12.0 package_config: ^0.1.1 path: '>=0.9.0 <2.0.0' plugin: ^0.2.0 watcher: '>=0.9.6 <0.10.0' yaml: ^2.1.2 dev_dependencies: typed_mock: '>=0.0.4 <1.0.0' unittest: '>=0.9.0 <0.12.0'
Allow analyzer to be used with crypto 2.x.x
Allow analyzer to be used with crypto 2.x.x R=brianwilkerson@google.com, kevmoo@google.com BUG= Review URL: https://codereview.chromium.org/2047023002 .
YAML
bsd-3-clause
dartino/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dartino/dart-sdk
606e628639c1d6560f198bf3f7a9e82f31e32b3d
circle.yml
circle.yml
machine: timezone: Asia/Tokyo environment: XCODE_SCHEME: TiCircleCITest XCODE_PROJECT: TiCircleCITest.xcodeproj ANDROID_HOME: /usr/local/opt/android-sdk ANDROID_SDK: /usr/local/opt/android-sdk ANDROID_NDK: /usr/local/opt/android-ndk ANDROID_PLATFORM: /usr/local/opt/android-sdk/platforms/android-23 GOOGLE_APIS: /usr/local/opt/android-sdk/add-ons/addon-google_apis-google-23 JAVA_HOME: $(/usr/libexec/java_home -v 1.6) PATH: /usr/local/opt/android-sdk/tools:/usr/local/opt/android-sdk/platform-tools:$JAVA_HOME/bin:$PATH dependencies: pre: - brew install n scons android-sdk android-ndk - n 4.4.5 - npm install -g titanium tisdk - tisdk build 5.2.2.GA --force test: override: - echo Hello World - echo $JAVA_HOME - which node - which ti - ti info - ti build -p ios -b
machine: timezone: Asia/Tokyo environment: XCODE_SCHEME: TiCircleCITest XCODE_PROJECT: TiCircleCITest.xcodeproj ANDROID_HOME: /usr/local/opt/android-sdk ANDROID_SDK: /usr/local/opt/android-sdk ANDROID_NDK: /usr/local/opt/android-ndk ANDROID_PLATFORM: /usr/local/opt/android-sdk/platforms/android-23 GOOGLE_APIS: /usr/local/opt/android-sdk/add-ons/addon-google_apis-google-23 JAVA_HOME: $(/usr/libexec/java_home -v 1.8) PATH: /usr/local/opt/android-sdk/tools:/usr/local/opt/android-sdk/platform-tools:$JAVA_HOME/bin:$PATH dependencies: pre: - brew install n scons android-sdk android-ndk - brew tap caskroom/cask - brew cask install java - n 4.4.5 - npm install -g titanium tisdk - tisdk build 5.2.2.GA --force test: override: - echo Hello World - echo $JAVA_HOME - which node - which ti - ti info - ti build -p ios -b
Add java8 by Homebrew Cask
Add java8 by Homebrew Cask
YAML
apache-2.0
umi-uyura/TiCircleCITest
832bfb52c9d1dd64878ef824fc278e4b099926cf
circle.yml
circle.yml
machine: ruby: version: 2.3.1 dependencies: pre: override: - gem install bundler --pre - bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3 test: pre: - cp config/database.example.yml config/database.yml - RAILS_ENV=test bundle exec rake db:create db:schema:load override: - bundle exec rspec deployment: staging: branch: master heroku: appname: ifme
machine: ruby: version: 2.3.1 dependencies: pre: override: - gem install bundler --pre - bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3 test: pre: - cp config/database.example.yml config/database.yml - RAILS_ENV=test bundle exec rake db:create db:schema:load override: - bundle exec rspec # deployment: # staging: # branch: master # heroku: # appname: ifme
Comment out deployment for CircleCI for now
Comment out deployment for CircleCI for now
YAML
agpl-3.0
julianguyen/ifme,julianguyen/ifme,julianguyen/ifme,HashNotAdam/ifme,cartothemax/ifme,cartothemax/ifme,cartothemax/ifme,sexybiggetje/ifme,cartothemax/ifme,sexybiggetje/ifme,HashNotAdam/ifme,julianguyen/ifme,sexybiggetje/ifme,HashNotAdam/ifme
5cfc9f3e63f96b734cd46bfa55e1624330a5f3b7
circle.yml
circle.yml
machine: python: version: '2.7.14' pre: - git -C ~/.pyenv pull environment: DJANGO_SETTINGS_MODULE: 'stackdio.server.settings.testing' services: - mysql ## Customize dependencies dependencies: override: - bower install - pip install -U pip - pip install -U wheel - pip install -U -e .[testing,mysql] ## Customize test commands test: pre: - mkdir ~/.stackdio override: # Copy the config file over to use mysql - cp tests/stackdio-circle.yaml /home/ubuntu/.stackdio/stackdio.yaml # Run init to make sure the salt config files are in place - stackdio init --no-prompt # Run migration and tests on the default config file first - python manage.py migrate - py.test --cov=stackdio --cov-report=html --junit-xml=tests.xml stackdio post: - mv tests.xml $CIRCLE_TEST_REPORTS/stackdio-tests.xml - mv htmlcov $CIRCLE_ARTIFACTS/coverage deployment: artifact: branch: /.*/ commands: - python manage.py build_ui - python setup.py sdist - python setup.py bdist_wheel - mv dist/ $CIRCLE_ARTIFACTS/dist/
machine: python: version: '2.7.11' pre: - git -C ~/.pyenv pull environment: DJANGO_SETTINGS_MODULE: 'stackdio.server.settings.testing' services: - mysql ## Customize dependencies dependencies: override: - bower install - pip install -U pip - pip install -U wheel - pip install -U -e .[testing,mysql] ## Customize test commands test: pre: - mkdir ~/.stackdio override: # Copy the config file over to use mysql - cp tests/stackdio-circle.yaml /home/ubuntu/.stackdio/stackdio.yaml # Run init to make sure the salt config files are in place - stackdio init --no-prompt # Run migration and tests on the default config file first - python manage.py migrate - py.test --cov=stackdio --cov-report=html --junit-xml=tests.xml stackdio post: - mv tests.xml $CIRCLE_TEST_REPORTS/stackdio-tests.xml - mv htmlcov $CIRCLE_ARTIFACTS/coverage deployment: artifact: branch: /.*/ commands: - python manage.py build_ui - python setup.py sdist - python setup.py bdist_wheel - mv dist/ $CIRCLE_ARTIFACTS/dist/
Revert to 2.7.11 for speed
Revert to 2.7.11 for speed
YAML
apache-2.0
stackdio/stackdio,stackdio/stackdio,clarkperkins/stackdio,clarkperkins/stackdio,clarkperkins/stackdio,stackdio/stackdio,stackdio/stackdio,clarkperkins/stackdio
69aa3b02fd7f92dc45eecedb5e411b363e1f0d2a
circle.yml
circle.yml
version: 2 jobs: build: working_directory: ~/code docker: - image: circleci/android:api-26-alpha environment: JVM_OPTS: -Xmx3200m steps: - checkout - restore_cache: key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} - run: name: Download Dependencies command: ./gradlew androidDependencies - save_cache: paths: - ~/.gradle key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} - run: name: Run Tests command: ./gradlew check - store_artifacts: path: app/build/reports destination: reports - store_test_results: path: app/build/test-results
version: 2 jobs: build: working_directory: ~/code docker: - image: circleci/android:api-26-alpha environment: JVM_OPTS: -Xmx3200m steps: - checkout - restore_cache: key: jars-{{ checksum "build.gradle" }}-{{ checksum "library/build.gradle" }} - run: name: Download Dependencies command: ./gradlew androidDependencies - save_cache: paths: - ~/.gradle key: jars-{{ checksum "build.gradle" }}-{{ checksum "library/build.gradle" }} - run: name: Run Tests command: ./gradlew check - store_artifacts: path: library/build/reports destination: reports - store_test_results: path: library/build/test-results
Update path in CircleCI config
Update path in CircleCI config
YAML
mit
thyrlian/AwesomeValidation,thyrlian/AwesomeValidation
56ac7ee8fc394dca7dc99b9dff86881fc55deaad
circle.yml
circle.yml
machine: environment: PATH: $HOME/go/bin:$HOME/gopath/bin:$PATH GOPATH: $HOME/gopath dependencies: pre: - sudo apt-get update; sudo apt-get install libusb-1.0-0-dev; cd ~/; git clone https://github.com/jpoirier/librtlsdr; cd librtlsdr; mkdir build; cd build; cmake ../; make; sudo make install; sudo ldconfig; cd ~/; mkdir gopath; wget https://dl.google.com/go/go1.9.2.linux-amd64.tar.gz; tar -zxvf go1.9.2.linux-amd64.tar.gz; go version; env override: - cd .. ; rm -rf stratux ; git clone --recursive https://github.com/cyoung/stratux ; cd stratux ; git config --add remote.origin.fetch "+refs/pull/*/head:refs/remotes/origin/pr/*" ; git fetch origin ; BRANCH=`echo "$CIRCLE_BRANCH" | sed 's/pull\//pr\//g'` ; git checkout $BRANCH ; make test: override: - make test deployment: production: branch: master commands: - yes | ssh -i ~/.ssh/id_updates.stratux.me stratux-updates@updates.stratux.me "touch queue/`git log -n 1 --pretty=%H`"
machine: environment: PATH: $HOME/go/bin:$HOME/gopath/bin:$PATH GOPATH: $HOME/gopath dependencies: pre: - sudo apt-get update; sudo apt-get install libusb-1.0-0-dev; cd ~/; git clone https://github.com/jpoirier/librtlsdr; cd librtlsdr; mkdir build; cd build; cmake ../; make; sudo make install; sudo ldconfig; cd ~/; rm -rf gopath; mkdir gopath; wget https://dl.google.com/go/go1.9.2.linux-amd64.tar.gz; tar -zxvf go1.9.2.linux-amd64.tar.gz; go version; env override: - cd .. ; rm -rf stratux ; git clone --recursive https://github.com/cyoung/stratux ; cd stratux ; git config --add remote.origin.fetch "+refs/pull/*/head:refs/remotes/origin/pr/*" ; git fetch origin ; BRANCH=`echo "$CIRCLE_BRANCH" | sed 's/pull\//pr\//g'` ; git checkout $BRANCH ; make test: override: - make test deployment: production: branch: master commands: - yes | ssh -i ~/.ssh/id_updates.stratux.me stratux-updates@updates.stratux.me "touch queue/`git log -n 1 --pretty=%H`"
Clean gopath on each CircleCI build.
Clean gopath on each CircleCI build.
YAML
bsd-3-clause
cyoung/stratux,westphae/stratux,cyoung/stratux,cyoung/stratux,westphae/stratux,westphae/stratux,cyoung/stratux,cyoung/stratux,westphae/stratux,westphae/stratux,cyoung/stratux,westphae/stratux
ca5acaff689daf1a6776e7f0203d9e82a859bcda
circle.yml
circle.yml
## CircleCI build file. machine: python: version: 3.5.1 # Use 3.5.1 as the base version. dependencies: override: - pip install tox tox-pyenv codecov - pyenv local 3.5.1 test: post: - codecov
## CircleCI build file. machine: python: version: 3.5.2 # Use 3.5.1 as the base version. dependencies: override: - pip install tox tox-pyenv codecov - pyenv local 3.5.1 3.5.2 test: post: - codecov
Change to 3.5.2 as the default version.
Change to 3.5.2 as the default version.
YAML
mit
SunDwarf/Kyoukai
b72f1d7cee6c35a98bf7ecbd793fb6975f6cc51b
circle.yml
circle.yml
machine: node: version: 7 dependencies: cache_directories: - ~/.cache/yarn pre: - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 20 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 20 - curl -o- -L https://yarnpkg.com/install.sh | bash - yarn global add codecov override: - yarn --force test: pre: - yarn run lint - yarn run flow -- check override: - yarn test -- --coverage post: - codecov
machine: node: version: 8 dependencies: cache_directories: - ~/.cache/yarn pre: - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 20 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 20 - curl -o- -L https://yarnpkg.com/install.sh | bash - yarn global add codecov override: - yarn --force test: pre: - yarn run lint - yarn run flow -- check override: - yarn test -- --coverage post: - codecov
Use Node 8 for CI
[ci] Use Node 8 for CI
YAML
mit
ide/dash-button,ide/dash-button,ide/plasma-dash
0b6bf77730cc4dddd249f0cc5c51e785458a3604
circle.yml
circle.yml
machine: node: version: 7.10.1 dependencies: pre: - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc deployment: production: branch: master tag: /v[0-9]+(\.[0-9]+)*/ commands: - npm run deploy - npm publish || true - node utils/grafana.js workspace: branch: workspace commands: - npm run deploy grafana: branch: grafana commands: - node utils/grafana.js
machine: node: version: 7.10.1 dependencies: pre: - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc deployment: production: branch: master tag: /v[0-9]+(\.[0-9]+)*/ commands: - npm run deploy - npm publish || true - nodejs utils/grafana.js
Disable autodeploy of worksapce branch
Disable autodeploy of worksapce branch
YAML
agpl-3.0
Nevrdid/screeps,Nevrdid/screeps,Jirajha/screeps,stu43005/screeps,stu43005/screeps,TooAngel/screeps,TooAngel/screeps,Jirajha/screeps
bab0521d02b770ab320cc4997ba83302793da18b
circle.yml
circle.yml
machine: timezone: Asia/Tokyo environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" node: version: 8.0.0 dependencies: override: - yarn cache_directories: - ~/.cache/yarn compile: override: - yarn run build:develop test: override: - yarn pug-lint ./src - yarn eslint ./src/js deployment: staging: branch: master commands: - yarn deploy:production - yarn s3sync:staging develop: branch: /.*/ commands: - yarn install:develop - yarn s3sync:develop
machine: timezone: Asia/Tokyo environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" node: version: 8.0.0 dependencies: override: - yarn cache_directories: - ~/.cache/yarn compile: override: - yarn run build:develop test: override: - yarn pug-lint ./src - yarn eslint ./src/js deployment: staging: branch: master commands: - yarn install:production - yarn s3sync:staging develop: branch: /.*/ commands: - yarn install:develop - yarn s3sync:develop
Revert "CI: deploy production when pushed master."
Revert "CI: deploy production when pushed master." This reverts commit 87d86cb730eb520b07c23e4710a462e1bece50c2.
YAML
mit
AlisProject/welcome,AlisProject/welcome
eafd303a868e485803f11d5458e2b09a57c27431
circle.yml
circle.yml
# Example comment. version: 2 jobs: build: working_directory: ~/Area51 docker: - image: node:latest steps: - checkout - run: name: Install dependencies command: | yarn apt-get update apt-get install ocaml libelf-dev -y curl https://install.meteor.com/ | sh meteor --version - run: name: Prepare and lint code command: | meteor --version mkdir -p $CIRCLE_TEST_REPORTS/reports yarn run lint --- --format junit --output-file $CIRCLE_TEST_REPORTS/reports/eslint.xml - run: name: Test code and produce coverage command: | yarn test yarn run report-coverage
# Example comment. version: 2 jobs: build: working_directory: ~/Area51 docker: - image: node:latest steps: - checkout - run: name: Install dependencies command: | yarn apt-get update apt-get install ocaml libelf-dev -y curl https://install.meteor.com/ | sh meteor --version --allow-superuser - run: name: Prepare and lint code command: | meteor --version --allow-superuser mkdir -p $CIRCLE_TEST_REPORTS/reports yarn run lint --- --format junit --output-file $CIRCLE_TEST_REPORTS/reports/eslint.xml - run: name: Test code and produce coverage command: | yarn test yarn run report-coverage
Update CircleCI to fix Meteor issue.
Update CircleCI to fix Meteor issue.
YAML
apache-2.0
ibujs/Area51,retrixe/Area51,ibujs/Area51,retrixe/Area51
d1fb50436bf714036445c99745b6f01bb9f89927
metadata/com.example.deeplviewer.yml
metadata/com.example.deeplviewer.yml
AntiFeatures: - NonFreeNet Categories: - Reading - Science & Education License: MIT AuthorName: sakusaku3939 AuthorEmail: yuukiyuuki223@gmail.com AuthorWebSite: https://portfolio.sakusaku3939.com SourceCode: https://github.com/sakusaku3939/DeepLAndroid IssueTracker: https://github.com/sakusaku3939/DeepLAndroid/issues AutoName: DeepL RepoType: git Repo: https://github.com/sakusaku3939/DeepLAndroid Builds: - versionName: '3.3' versionCode: 9 commit: v3.3.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '3.3' CurrentVersionCode: 9
AntiFeatures: - NonFreeNet Categories: - Reading - Science & Education License: MIT AuthorName: sakusaku3939 AuthorEmail: yuukiyuuki223@gmail.com AuthorWebSite: https://portfolio.sakusaku3939.com SourceCode: https://github.com/sakusaku3939/DeepLAndroid IssueTracker: https://github.com/sakusaku3939/DeepLAndroid/issues AutoName: DeepL RepoType: git Repo: https://github.com/sakusaku3939/DeepLAndroid Builds: - versionName: '3.3' versionCode: 9 commit: v3.3.1 subdir: app gradle: - yes - versionName: '3.4' versionCode: 10 commit: v3.4 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '3.4' CurrentVersionCode: 10
Update DeepL to 3.4 (10)
Update DeepL to 3.4 (10)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
f31b2bd8e2230154209d7a9f6a72e9374e38b03f
metadata/com.lightning.walletapp.yml
metadata/com.lightning.walletapp.yml
AntiFeatures: - NonFreeNet Categories: - Money License: Apache-2.0 AuthorName: Anton Kumaigorodski WebSite: https://lightning-wallet.com SourceCode: https://github.com/btcontract/lnwallet IssueTracker: https://github.com/btcontract/lnwallet/issues Changelog: https://github.com/btcontract/lnwallet/releases RepoType: git Repo: https://github.com/btcontract/lnwallet Builds: - versionName: 0.4.1 versionCode: 147 commit: 0.4.1 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags
AntiFeatures: - NonFreeNet Categories: - Money License: Apache-2.0 AuthorName: Anton Kumaigorodski WebSite: https://lightning-wallet.com SourceCode: https://github.com/btcontract/lnwallet IssueTracker: https://github.com/btcontract/lnwallet/issues Changelog: https://github.com/btcontract/lnwallet/releases AutoName: BLW RepoType: git Repo: https://github.com/btcontract/lnwallet Builds: - versionName: 0.4.1 versionCode: 147 commit: 0.4.1 subdir: app gradle: - yes - versionName: 0.4.2 versionCode: 148 commit: 0.4.2 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 0.4.2 CurrentVersionCode: 148
Update BLW to 0.4.2 (148)
Update BLW to 0.4.2 (148)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
0b6d476896c092417dd11daaf66f33a7d8254b31
.expeditor/config.yml
.expeditor/config.yml
--- slack: notify_channel: chef-notify github: version_tag_format: "v{{version}}" minor_bump_labels: - "Version: Bump Minor" changelog: rollup_header: Changes not yet released to rubygems.org rubygems: - chef-zero merge_actions: - built_in:bump_version: ignore_labels: - "Version: Skip Bump" - "Expeditor: Skip All" - bash:.expeditor/update_version.sh: only_if: - built_in:bump_version - built_in:update_changelog: ignore_labels: - "Changelog: Skip Update" - "Expeditor: Skip All" - built_in:build_gem: only_if: - built_in:bump_version promote: actions: - built_in:rollover_changelog - built_in:publish_rubygems
# Documentation available at https://expeditor.chef.io/docs/getting-started/ --- # Slack channel in Chef Software slack to send notifications about build failures, etc slack: notify_channel: chef-notify # This publish is triggered by the `built_in:publish_rubygems` artifact_action. rubygems: - chef-zero github: # This deletes the GitHub PR branch after successfully merged into the release branch delete_branch_on_merge: true # The tag format to use (e.g. v1.0.0) version_tag_format: "v{{version}}" # allow bumping the minor release via label minor_bump_labels: - "Expeditor: Bump Minor Version" changelog: rollup_header: Changes not yet released to rubygems.org # These actions are taken, in order they are specified, anytime a Pull Request is merged. merge_actions: - built_in:bump_version: ignore_labels: - "Expeditor: Skip Version Bump" - "Expeditor: Skip All" - bash:.expeditor/update_version.sh: only_if: built_in:bump_version - built_in:update_changelog: ignore_labels: - "Expeditor: Exclude From Changelog" - "Expeditor: Skip All" - built_in:build_gem: only_if: built_in:bump_version promote: actions: - built_in:rollover_changelog - built_in:publish_rubygems
Update expeditor for standard labels
Update expeditor for standard labels Use our standard config Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
YAML
apache-2.0
chef/chef-zero,chef/chef-zero,chef/chef-zero
3ba60b5d15d611ee0f3eddca65bf3917d3099c79
metadata/org.billthefarmer.notes.yml
metadata/org.billthefarmer.notes.yml
Categories: - Writing License: GPL-3.0-only AuthorName: Bill Farmer AuthorWebSite: https://billthefarmer.github.io/ SourceCode: https://github.com/billthefarmer/notes IssueTracker: https://github.com/billthefarmer/notes/issues Changelog: https://github.com/billthefarmer/notes/releases AutoName: Notes RepoType: git Repo: https://github.com/billthefarmer/notes Builds: - versionName: '1.0' versionCode: 1 commit: v1.0 gradle: - yes - versionName: '1.01' versionCode: 101 commit: v1.01 gradle: - yes - versionName: '1.02' versionCode: 102 commit: v1.02 gradle: - yes - versionName: '1.03' versionCode: 103 commit: v1.03 gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.03' CurrentVersionCode: 103
Categories: - Writing License: GPL-3.0-only AuthorName: Bill Farmer AuthorWebSite: https://billthefarmer.github.io/ SourceCode: https://github.com/billthefarmer/notes IssueTracker: https://github.com/billthefarmer/notes/issues Changelog: https://github.com/billthefarmer/notes/releases AutoName: Notes RepoType: git Repo: https://github.com/billthefarmer/notes Builds: - versionName: '1.0' versionCode: 1 commit: v1.0 gradle: - yes - versionName: '1.01' versionCode: 101 commit: v1.01 gradle: - yes - versionName: '1.02' versionCode: 102 commit: v1.02 gradle: - yes - versionName: '1.03' versionCode: 103 commit: v1.03 gradle: - yes - versionName: '1.04' versionCode: 104 commit: v1.04 gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.04' CurrentVersionCode: 104
Update Notes to 1.04 (104)
Update Notes to 1.04 (104)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
be545d361dff010af0cb52ecf435ce2e4cb8db43
.circleci/config.yml
.circleci/config.yml
# If you only want circle to run on direct commits to master, you can uncomment this out # and uncomment the filters: *filter-only-master down below too # aliases: - &filter-only-master branches: only: - master version: 2 jobs: deploy-website: docker: # specify the version you desire here - image: circleci/node:8.11.1 steps: - checkout - run: name: Deploying to GitHub Pages command: | git config --global user.email "docusaurus-bot@users.noreply.github.com" git config --global user.name "Website Deployment Script" echo "machine github.com login docusaurus-bot password $GITHUB_TOKEN" > ~/.netrc echo "Deploying website..." cd website && yarn install && GIT_USER=docusaurus-bot USE_SSH=false yarn run publish-gh-pages workflows: version: 2 build_and_deploy: jobs: - deploy-website: filters: *filter-only-master
# If you only want circle to run on direct commits to master, you can uncomment this out # and uncomment the filters: *filter-only-master down below too # aliases: - &filter-only-master branches: only: - master version: 2 jobs: deploy-website: docker: - image: circleci/node:14.11.0 steps: - checkout - run: name: Deploying to GitHub Pages command: | git config --global user.email "docusaurus-bot@users.noreply.github.com" git config --global user.name "Website Deployment Script" echo "machine github.com login docusaurus-bot password $GITHUB_TOKEN" > ~/.netrc echo "Deploying website..." cd website && yarn install && GIT_USER=docusaurus-bot USE_SSH=false yarn run publish-gh-pages workflows: version: 2 build_and_deploy: jobs: - deploy-website: filters: *filter-only-master
Fix node version in website publish
Fix node version in website publish Summary: This is failing due to an out of date node version causing docusaurus to have a headache Images are listed here: https://circleci.com/docs/2.0/docker-image-tags.json Reviewed By: c-ryan747 Differential Revision: D23904750 fbshipit-source-id: d7255756a680e6653196cbd21d98f034563ff29a
YAML
mit
facebook/FBSimulatorControl,facebook/FBSimulatorControl,facebook/FBSimulatorControl,facebook/FBSimulatorControl,facebook/FBSimulatorControl
28789f4f7ec1f228ad9fb06f9775a7686dd968d4
config/database.yml
config/database.yml
# SQLite version 3.x # gem install sqlite3-ruby (not necessary on OS X Leopard) development: adapter: sqlite3 database: db/development.sqlite3 timeout: 5000 # Warning: The database defined as 'test' will be erased and # re-generated from your development database when you run 'rake'. # Do not set this db to the same as development or production. test: adapter: sqlite3 database: db/test.sqlite3 timeout: 5000 production: adapter: sqlite3 database: db/production.sqlite3 timeout: 5000
# SQLite version 3.x # gem install sqlite3-ruby (not necessary on OS X Leopard) development: adapter: mysql database: free_library_on_rails host: localhost username: flor password: flor_pass # Warning: The database defined as 'test' will be erased and # re-generated from your development database when you run 'rake'. # Do not set this db to the same as development or production. test: adapter: sqlite3 database: db/test.sqlite3 timeout: 5000 production: development
Use MySQL instead of SQL-lite
Use MySQL instead of SQL-lite
YAML
agpl-3.0
medwards/free-library-on-rails,medwards/free-library-on-rails,medwards/free-library-on-rails,medwards/free-library-on-rails
ac9f1d970ac12f6a1473df8f358cbeb5cbfb4e38
.circleci/config.yml
.circleci/config.yml
version: 2.1 defaults: &defaults working_directory: ~/repo orbs: node: circleci/node@1.1.6 jobs: build-and-test: <<: *defaults executor: name: node/default steps: - checkout - node/with-cache: steps: - run: yarn install - run: yarn test - persist_to_workspace: root: ~/repo paths: . deploy: <<: *defaults executor: name: node/default steps: - attach_workspace: at: ~/repo - run: name: Authenticate with registry command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/repo/.npmrc - run: name: Check ENV command: echo $NPM_TOKEN - run: name: Publish Package command: npm publish workflows: build-and-test: jobs: - build-and-test deploy: jobs: - build-and-test: filters: tags: only: /^v.*/ - deploy: requires: - build-and-test filters: tags: only: /^v.*/ branches: ignore: /.*/
version: 2.1 defaults: &defaults working_directory: ~/repo orbs: node: circleci/node@1.1.6 jobs: build-and-test: <<: *defaults executor: name: node/default steps: - checkout - node/with-cache: steps: - run: yarn install - run: yarn test - persist_to_workspace: root: ~/repo paths: . deploy: <<: *defaults executor: name: node/default steps: - attach_workspace: at: ~/repo - run: name: Authenticate with registry command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/repo/.npmrc - run: name: Check ENV command: echo $NPM_TOKEN - run: name: Publish Package command: npm publish workflows: build-and-test: jobs: - build-and-test deploy: jobs: - build-and-test: filters: tags: only: /^v.*/ branches: ignore: /.*/ - deploy: requires: - build-and-test filters: tags: only: /^v.*/ branches: ignore: /.*/
Improve filter for deploy job
Improve filter for deploy job
YAML
mit
mdedys/react-text-trimmer
bd78aa77b9e4a735e13c380a62e7cf096cadab6e
.circleci/config.yml
.circleci/config.yml
# CircleCI config for automated test builds triggered from Github. version: 2 jobs: build: docker: - image: postgres:latest environment: - PGHOST: "/tmp" steps: - checkout - run: name: Install command: apt update && apt install -y python g++ libpq-dev postgresql build-essential make autoconf dh-autoreconf autoconf-archive automake cppcheck - run: name: Prepare postgres command: | mkdir /tmp/db && chown postgres /tmp/db && su postgres -c '/usr/lib/postgresql/*/bin/initdb --pgdata /tmp/db --auth trust --nosync' - run: name: Run postgres command: (su postgres -c '/usr/lib/postgresql/*/bin/postgres -D /tmp/db -k /tmp' &) && sleep 5 - run: name: Create postgres user command: su postgres -c "createuser -w -d root" - run: name: Set up database command: createdb root - run: name: Autogen command: NOCONFIGURE=1 ./autogen.sh - run: name: Configure command: | ./configure \ CXXFLAGS='-std=c++17' \ --enable-maintainer-mode \ --enable-audit \ --enable-shared --disable-static - run: name: Make command: make - run: name: Test command: PGDATA=db/data make check
# CircleCI config for automated test builds triggered from Github. version: 2 jobs: build: docker: - image: postgres:latest environment: - PGHOST: "/tmp" steps: - checkout - run: name: Install command: apt update && apt install -y python g++ libpq-dev postgresql build-essential make autoconf dh-autoreconf autoconf-archive automake cppcheck - run: name: Prepare postgres command: | mkdir /tmp/db && chown postgres /tmp/db && su postgres -c '/usr/lib/postgresql/*/bin/initdb --pgdata /tmp/db --auth trust --nosync' - run: name: Run postgres command: (su postgres -c '/usr/lib/postgresql/*/bin/postgres -D /tmp/db -k /tmp' &) && sleep 5 - run: name: Create postgres user command: su postgres -c "createuser -w -d root" - run: name: Set up database command: createdb root - run: name: Autogen command: NOCONFIGURE=1 ./autogen.sh - run: name: Configure command: | ./configure \ CXXFLAGS='-std=c++17' \ --disable-documentation \ --enable-maintainer-mode \ --enable-audit \ --enable-shared --disable-static - run: name: Make command: make - run: name: Test command: PGDATA=db/data make check
Disable documentation in CircleCI build.
Disable documentation in CircleCI build. That was a step too far: to build documentation, you need a bunch of tools installed.
YAML
bsd-3-clause
jtv/libpqxx,jtv/libpqxx,jtv/libpqxx,jtv/libpqxx
7accda2c9a0e54e7d4d788a4887157f4a3512639
.github/workflows/draft-release.yml
.github/workflows/draft-release.yml
on: push: tags: - 'v*' name: Create Release Draft jobs: build: name: Create Release Asset runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@master - name: Check version tag run: | [[ \ `git tag --points-at` \ == \ v`jq -r '.["semantic-version"] + "-gnome" + .["shell-version"][-1]' sources/metadata.json` \ ]] - name: Build project run: | sudo apt-get install gettext make lint zip - name: Draft Release id: draft_release uses: actions/create-release@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} draft: true prerelease: false - name: Upload Package id: upload-package uses: actions/upload-release-asset@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.draft_release.outputs.upload_url }} asset_path: ./build/io.github.mreditor.gnome-shell-extensions.scroll-panel.zip asset_name: io.github.mreditor.gnome-shell-extensions.scroll-panel.zip asset_content_type: application/zip
on: push: tags: - 'v*' name: Create Release Draft jobs: build: name: Create Release Asset runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@master - name: Check version tag run: | [[ \ `git tag --points-at` \ == \ v`jq -r '.["semantic-version"] + "-gnome" + .["shell-version"][-1]' sources/metadata.json` \ ]] - name: Build project run: | sudo apt-get install gettext eslint make lint zip - name: Draft Release id: draft_release uses: actions/create-release@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} draft: true prerelease: false - name: Upload Package id: upload-package uses: actions/upload-release-asset@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.draft_release.outputs.upload_url }} asset_path: ./build/io.github.mreditor.gnome-shell-extensions.scroll-panel.zip asset_name: io.github.mreditor.gnome-shell-extensions.scroll-panel.zip asset_content_type: application/zip
Add eslint to github release action
Add eslint to github release action
YAML
mit
mrEDitor/gnome-shell-extension-scroll-panel
bcb8a7ecb68765802aa88bde813b335f40c95ecd
.github/workflows/draft-release.yml
.github/workflows/draft-release.yml
on: push: tags: - 'v*' name: Create Release Draft jobs: build: name: Create Release Asset runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@master - name: Check version tag run: | [[ \ `git tag --points-at` \ == \ v`jq -r '.["semantic-version"] + "-gnome" + .["shell-version"][-1]' sources/metadata.json` \ ]] - name: Build project run: | sudo apt-get install gettext eslint make lint zip - name: Draft Release id: draft_release uses: actions/create-release@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} draft: true prerelease: false - name: Upload Package id: upload-package uses: actions/upload-release-asset@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.draft_release.outputs.upload_url }} asset_path: ./build/io.github.mreditor.gnome-shell-extensions.scroll-panel.zip asset_name: io.github.mreditor.gnome-shell-extensions.scroll-panel.zip asset_content_type: application/zip
on: push: tags: - 'v*' name: Create Release Draft jobs: build: name: Create Release Asset runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@master - name: Check version tag run: | [[ \ `git tag --points-at` \ == \ v`jq -r '.["semantic-version"] + "-gnome" + .["shell-version"][-1]' sources/metadata.json` \ ]] - name: Build project run: | shopt -s expand_aliases alias eslint="npx eslint" sudo apt-get install gettext npm install eslint make lint zip - name: Draft Release id: draft_release uses: actions/create-release@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} draft: true prerelease: false - name: Upload Package id: upload-package uses: actions/upload-release-asset@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.draft_release.outputs.upload_url }} asset_path: ./build/io.github.mreditor.gnome-shell-extensions.scroll-panel.zip asset_name: io.github.mreditor.gnome-shell-extensions.scroll-panel.zip asset_content_type: application/zip
Use npx eslint in github release action
Use npx eslint in github release action
YAML
mit
mrEDitor/gnome-shell-extension-scroll-panel
45c0a78482dc420db58346e725204a00aa07fe88
.github/workflows/linux_mkspecs.yml
.github/workflows/linux_mkspecs.yml
name: Linux C++ make-specs on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: jobs: Linux-mkspecs: uses: steinwurf/linux-mkspecs-action/.github/workflows/action.yml@5.0.0 with: extra_resolve_options: ${{ github.events.inputs.extra_resolve_options }}
name: Linux C++ make-specs on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: jobs: Linux-mkspecs: uses: steinwurf/linux-mkspecs-action/.github/workflows/action.yml@6.0.0 with: extra_resolve_options: ${{ github.events.inputs.extra_resolve_options }}
Update Linux C++ make-specs to new version 6.0.0
Update Linux C++ make-specs to new version 6.0.0
YAML
bsd-3-clause
steinwurf/stub,steinwurf/stub
67a94b39124685819bb10c8342823dd96c6925a7
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: working_directory: ~/circleci-geogson docker: - image: circleci/openjdk:8-jdk-browsers steps: - checkout - restore_cache: key: circleci-geogson-{{ checksum "pom.xml" }} - run: mvn package - save_cache: paths: - ~/.m2 key: circleci-geogson-{{ checksum "pom.xml" }} - store_test_results: path: target/surefire-reports - deploy: name: Release master command: | if [ "${CIRCLE_BRANCH}" == "master" ]; then ./build/deploy.sh fi workflows: version: 2 build: jobs: - build: context: org-global
version: 2 jobs: build: working_directory: ~/circleci-geogson docker: - image: circleci/openjdk:8-jdk-browsers steps: - checkout - restore_cache: key: circleci-geogson-{{ checksum "pom.xml" }} - run: mvn package - save_cache: paths: - ~/.m2 key: circleci-geogson-{{ checksum "pom.xml" }} - store_test_results: path: target/surefire-reports - deploy: name: Release master command: | if [ "${CIRCLE_BRANCH}" == "master" ]; then git config user.email "sayhi@circleci.com" && git config user.name "Circle-CI" && ./build/deploy.sh fi workflows: version: 2 build: jobs: - build: context: org-global
Add git username for circleci
Add git username for circleci
YAML
apache-2.0
filosganga/geogson,filosganga/geogson
2f518b380149829649aa5b27c66332c6aa73652e
.github/workflows/gradle.yml
.github/workflows/gradle.yml
name: Jenetics Build on: push: branches: - master - releases/* - r7.0.0 - issues/* pull_request: branches: - master - releases/* - r7.0.0 jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest, macos-latest ] java-version: [ 17.0.1, 17, 18-ea ] steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java-version }} on ${{ matrix.os }} uses: actions/setup-java@v2 with: java-version: ${{ matrix.java-version }} distribution: 'zulu' - name: Build with Gradle run: ./gradlew build --stacktrace
name: Jenetics Build on: push: branches: - master - releases/* - r7.0.0 - issues/* pull_request: branches: - master - releases/* - r7.0.0 jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest, macos-latest ] java-version: [ 17.0.1, 17, 18-ea ] steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java-version }} on ${{ matrix.os }} uses: actions/setup-java@v2 with: java-version: ${{ matrix.java-version }} distribution: 'zulu' - name: Build with Gradle run: ./gradlew build --stacktrace --info
Add '--infos' to Gradle build command.
Add '--infos' to Gradle build command.
YAML
apache-2.0
jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics
2d1fcdc27647b40fa2d5c78d7bf4d1c3e3e37b79
.github/workflows/linter.yml
.github/workflows/linter.yml
--- name: Linter on: push: branches: [ develop ] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Update Bundler run: bundle update --bundler - name: Rubocop run: bundle exec rubocop - name: Reek run: bundle exec reek
--- name: Linter on: push: branches: [ develop ] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: Install bundler run: gem install --no-document bundler:2.2.16 - name: Rubocop run: bundle exec rubocop - name: Reek run: bundle exec reek
Install bundler 2.2.16 before exec lint
Install bundler 2.2.16 before exec lint
YAML
mit
Dev-Crea/evostream-event,Dev-Crea/evostream-event
ddf42d56f83df8cdb8f480ba813de72e331a5cbe
.circleci/config.yml
.circleci/config.yml
version: 2.1 orbs: haskell: haskell-works/haskell-build@1.6.0 github: haskell-works/github-release@1.2.1 hackage: haskell-works/hackage@1.0.0 workflows: multiple-ghc-build: jobs: - haskell/build: name: GHC 8.2.2 executor: haskell/ghc-8_2_2 - haskell/build: name: GHC 8.4.4 executor: haskell/ghc-8_4_4 - haskell/build: name: GHC 8.6.3 executor: haskell/ghc-8_6_3 - github/release-cabal: name: GitHub Release requires: - GHC 8.2.2 - GHC 8.4.4 - GHC 8.6.3 checkout: true filters: branches: only: master - hackage/upload: publish: true requires: - GitHub Release username: ${HACKAGE_USER} password: ${HACKAGE_PASS}
version: 2.1 orbs: haskell: haskell-works/haskell-build@1.6.2 github: haskell-works/github-release@1.2.1 hackage: haskell-works/hackage@1.0.0 workflows: multiple-ghc-build: jobs: - haskell/build: name: GHC 8.2.2 executor: haskell/ghc-8_2_2 - haskell/build: name: GHC 8.4.4 executor: haskell/ghc-8_4_4 - haskell/build: name: GHC 8.6.3 executor: haskell/ghc-8_6_3 - github/release-cabal: name: GitHub Release requires: - GHC 8.2.2 - GHC 8.4.4 - GHC 8.6.3 checkout: true filters: branches: only: master - hackage/upload: publish: true requires: - GitHub Release username: ${HACKAGE_USER} password: ${HACKAGE_PASS}
Upgrade circleci to use haskell/build 1.6.2
Upgrade circleci to use haskell/build 1.6.2
YAML
bsd-3-clause
haskell-works/hw-json
c177e1f24f89d96ba3f384f6936563439c8cb637
.github/workflows/nodejs.yml
.github/workflows/nodejs.yml
name: Test template output on: [push] jobs: test: name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: node_version: [8, 10, 12] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: npm install & test run: | npm install npm test env: CI: true
name: Test template output on: [push] jobs: test: name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: node_version: [9, 10, 11, 12] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node_version }} uses: actions/setup-node@v1 with: node_version: ${{ matrix.node_version }} - name: npm install & test run: | npm install npm test env: CI: true
Fix other node-version to node_version typo
Fix other node-version to node_version typo
YAML
mit
fadeit/responsive-html-email-signature,fadeit/responsive-html-email-signature
7bfe5b597512c6ef7b5a5387869b4f0142c62c3e
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/node:9@sha256:0ec3d7136ab6567ae4c9d13124ae3ae65bd8be3f026e3832836582b313b5ef90 - image: circleci/mongo:3@sha256:0c6436f8f925503028db4327db4baac2a626989a254dc15c4e5a94d2902d75ee steps: - checkout - run: yarn install --frozen-lockfile - run: yarn run lerna bootstrap - run: yarn test - run: yarn codecov
version: 2 jobs: build: docker: - image: circleci/node:9@sha256:0ec3d7136ab6567ae4c9d13124ae3ae65bd8be3f026e3832836582b313b5ef90 - image: circleci/mongo:3@sha256:11ecec4935a0c69f00eab5eef60290223a92f36eb2c91892bfb3e821c6decbd5 steps: - checkout - run: yarn install --frozen-lockfile - run: yarn run lerna bootstrap - run: yarn test - run: yarn codecov
Update circleci/mongo:3 Docker digest to 11ecec
Update circleci/mongo:3 Docker digest to 11ecec
YAML
mit
js-accounts/accounts
c9cb517f0e83c48841f645eb5d52938c02c8ebeb
.circleci/config.yml
.circleci/config.yml
# Golang CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-go/ for more details version: 2 jobs: build: docker: # specify the version - image: circleci/golang:1.9 # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ # - image: circleci/postgres:9.4 #### TEMPLATE_NOTE: go expects specific checkout path representing url #### expecting it in the form of #### /go/src/github.com/circleci/go-tool #### /go/src/bitbucket.org/circleci/go-tool working_directory: /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}} steps: - checkout # specify any bash command here prefixed with `run: ` - run: go get -v -t -d ./... - run: go test -v ./...
# Golang CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-go/ for more details version: 2 jobs: build: docker: # specify the version - image: circleci/golang:1.9 # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ # - image: circleci/postgres:9.4 #### TEMPLATE_NOTE: go expects specific checkout path representing url #### expecting it in the form of #### /go/src/github.com/circleci/go-tool #### /go/src/bitbucket.org/circleci/go-tool working_directory: /go/src/github.com/pradeepg26/sifuconf steps: - checkout # specify any bash command here prefixed with `run: ` - run: go get -v -t -d ./... - run: go test -v ./...
Replace template vars with actual values in circleci.yml
Replace template vars with actual values in circleci.yml
YAML
apache-2.0
pradeepg26/sifuconf,pradeepg26/sifuconf
a7f13ba510616b035f2dd9bbf9fa2f44567019f5
.circleci/config.yml
.circleci/config.yml
version: 2.1 orbs: python: circleci/python@0.2.1 jobs: build-and-test: executor: python/default steps: - checkout - python/load-cache - python/install-deps - python/save-cache - run: command: bash run_tests.sh name: Test workflows: main: jobs: - build-and-test
version: 2.1 orbs: python: circleci/python@1.2.1 jobs: build-and-test: executor: python/default steps: - checkout - python/load-cache - python/install-deps - python/save-cache - run: command: bash run_tests.sh name: Test workflows: main: jobs: - build-and-test
Update to current python orb.
Update to current python orb.
YAML
apache-2.0
conversationai/unintended-ml-bias-analysis,conversationai/unintended-ml-bias-analysis
b75551df711cbddaf952e3ff7281080d156d23af
changelogs/unreleased/33441-supplement_simplified_chinese_translation_of_i18n.yml
changelogs/unreleased/33441-supplement_simplified_chinese_translation_of_i18n.yml
--- title: Supplement Simplified Chinese translation of Project Page & Repository Page merge_request: 11994 author:Huang Tao
--- title: Supplement Simplified Chinese translation of Project Page & Repository Page merge_request: 11994 author: Huang Tao
Change the format in changelog
Change the format in changelog
YAML
mit
t-zuehlsdorff/gitlabhq,jirutka/gitlabhq,stoplightio/gitlabhq,iiet/iiet-git,axilleas/gitlabhq,iiet/iiet-git,stoplightio/gitlabhq,t-zuehlsdorff/gitlabhq,jirutka/gitlabhq,iiet/iiet-git,jirutka/gitlabhq,mmkassem/gitlabhq,axilleas/gitlabhq,dreampet/gitlab,mmkassem/gitlabhq,t-zuehlsdorff/gitlabhq,mmkassem/gitlabhq,iiet/iiet-git,jirutka/gitlabhq,axilleas/gitlabhq,dreampet/gitlab,mmkassem/gitlabhq,dplarson/gitlabhq,stoplightio/gitlabhq,t-zuehlsdorff/gitlabhq,dplarson/gitlabhq,dreampet/gitlab,axilleas/gitlabhq,dplarson/gitlabhq,stoplightio/gitlabhq,dplarson/gitlabhq,dreampet/gitlab
eff400d444d99bd323cff2833e2a76a0aebc338f
cfn/lib/NeutronPort.yaml
cfn/lib/NeutronPort.yaml
HeatTemplateFormatVersion: '2012-12-12' Description: NeutronPort Outputs: PortId: Description: Neutron Port ID Value: "Fn::GetAtt": [Interface, Outputs.PortId] Parameters: Name: Default: "" Description: Name for the port Type: String DefaultSecurityGroups: AllowedValues: ["True", "False"] Default: "True" Description: Use true to ignore passed Security Groups and just use the default for your network. Type: String SecurityGroups: Default: "[\"default\"]" Description: Security Groups to add to the instance Type: String BaseURL: Default: 'https://raw.github.com/EMSL-MSC/heat-templates/master/cfn/lib' Description: Base URL where other templates live. Type: String #Needed since security_groups: ["default"] is not the same thing as no security groups. If you are an admin, you may have access to multiple "default" security groups and the former fails. Mappings: PortTemplates: True: {URL: "/NeutronPort_Default.yaml"} False: {URL: "/NeutronPort_SecurityGroups.yaml"} Resources: Interface: Properties: Parameters: PrimaryNetworkId: {Ref: PrimaryNetworkId} SecurityGroups: {Ref: SecurityGroups} Name: {Ref: Name} TemplateURL: Fn::Join: - '' - - {Ref: BaseURL} - Fn::FindInMap: - PortTemplates - {Ref: PortType} - URL Type: AWS::CloudFormation::Stack
HeatTemplateFormatVersion: '2012-12-12' Description: NeutronPort Outputs: PortId: Description: Neutron Port ID Value: "Fn::GetAtt": [Interface, Outputs.PortId] Parameters: Name: Default: "" Description: Name for the port Type: String DefaultSecurityGroups: AllowedValues: ["True", "False"] Default: "True" Description: Use true to ignore passed Security Groups and just use the default for your network. Type: String SecurityGroups: Default: "[\"default\"]" Description: Security Groups to add to the instance Type: String BaseURL: Default: 'https://raw.github.com/EMSL-MSC/heat-templates/master/cfn/lib' Description: Base URL where other templates live. Type: String #Needed since security_groups: ["default"] is not the same thing as no security groups. If you are an admin, you may have access to multiple "default" security groups and the former fails. Mappings: PortTemplates: True: {URL: "/private/NeutronPort_Default.yaml"} False: {URL: "/private/NeutronPort_SecurityGroups.yaml"} Resources: Interface: Properties: Parameters: PrimaryNetworkId: {Ref: PrimaryNetworkId} SecurityGroups: {Ref: SecurityGroups} Name: {Ref: Name} TemplateURL: Fn::Join: - '' - - {Ref: BaseURL} - Fn::FindInMap: - PortTemplates - {Ref: PortType} - URL Type: AWS::CloudFormation::Stack
Move implementation specific templates into subdirectory to discurage their direct use.
Move implementation specific templates into subdirectory to discurage their direct use.
YAML
apache-2.0
EMSL-MSC/heat-templates
57a8c143ccc87ac1d561df4cde781a098e96b4e5
lib/generators/templates/heroku.yml
lib/generators/templates/heroku.yml
apps: # map the environments to your desired heroku app names # for example, # production: awesomeapp # would create the RACK_ENV=production # and deploy to http://awesomeapp.heroku.com production: awesomeapp staging: awesomeapp-staging legacy: awesomeapp-legacy stacks: # choose the stacks you want to use for each app. # the all: setting sets the default all: bamboo-mri-1.9.2 # override on a per environment basis legacy: bamboo-ree-1.8.7 config: # choose the configuration settings for all environments all: BUNDLE_WITHOUT: "test:development" CONFIG_VAR1: "config1" CONFIG_VAR2: "config2" # you can also override configuration settings for each environment production: CONFIG_VAR1: "config1-production" staging: CONFIG_VAR1: "config1-staging" collaborators: all: - "my-heroku-email@somedomain.com" - "another-heroku-email@somedomain.com" domains: production: - "awesomeapp.com" - "www.awesomeapp.com" addons: all: - custom_domains:basic # add any other addons here production: - ssl:piggyback - cron:daily # - newrelic:bronze # production env specific addons here
apps: # map the environments to your desired heroku app names # for example, # production: awesomeapp # would create the RACK_ENV=production # and deploy to http://awesomeapp.heroku.com production: awesomeapp staging: awesomeapp-staging legacy: awesomeapp-legacy stacks: # choose the stacks you want to use for each app. # the all: setting sets the default all: bamboo-mri-1.9.2 # override on a per environment basis legacy: bamboo-ree-1.8.7 config: # choose the configuration settings for all environments all: BUNDLE_WITHOUT: "test:development" CONFIG_VAR1: "config1" CONFIG_VAR2: "config2" # you can also override configuration settings for each environment production: CONFIG_VAR1: "config1-production" staging: CONFIG_VAR1: "config1-staging" collaborators: # Be sure to add yourself as a collaborator, otherwise your # access to the app will be revoked. all: - "my-heroku-email@somedomain.com" - "another-heroku-email@somedomain.com" domains: production: - "awesomeapp.com" - "www.awesomeapp.com" addons: all: - custom_domains:basic # add any other addons here production: - ssl:piggyback - cron:daily # - newrelic:bronze # production env specific addons here
Add comment about including yourself as a collaborator.
Add comment about including yourself as a collaborator.
YAML
mit
debreczeni/heroku-rails-saas,TerraCycleUS/heroku-rails-saas
b0abbea07fc9c9a84743aa63324c9b666bff89d0
metadata/com.secuso.torchlight2.yml
metadata/com.secuso.torchlight2.yml
Categories: - System License: GPL-3.0-only WebSite: https://www.secuso.informatik.tu-darmstadt.de/en/secuso-home/ SourceCode: https://github.com/SecUSo/privacy-friendly-torchlight IssueTracker: https://github.com/SecUSo/privacy-friendly-torchlight/issues AutoName: Torchlight Description: |- Simple application to use the phones flash light as a torchlight. It belongs to the group of Privacy Friendly Apps, developed at the University of Darmstadt, Germany. RepoType: git Repo: https://github.com/SecUSo/privacy-friendly-torchlight Builds: - versionName: '1.1' versionCode: 2 commit: c417d0ddff4c89640e41532cfce01414e0951db8 subdir: app gradle: - yes - versionName: '1.2' versionCode: 3 commit: v1.2 subdir: app gradle: - yes - versionName: '1.3' versionCode: 4 commit: v1.3 subdir: app gradle: - yes - versionName: 1.3.1 versionCode: 5 commit: v1.3.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.3.1 CurrentVersionCode: 5
Categories: - System License: GPL-3.0-only WebSite: https://www.secuso.informatik.tu-darmstadt.de/en/secuso-home/ SourceCode: https://github.com/SecUSo/privacy-friendly-torchlight IssueTracker: https://github.com/SecUSo/privacy-friendly-torchlight/issues AutoName: Torchlight Description: |- Simple application to use the phones flash light as a torchlight. It belongs to the group of Privacy Friendly Apps, developed at the University of Darmstadt, Germany. RepoType: git Repo: https://github.com/SecUSo/privacy-friendly-torchlight Builds: - versionName: '1.1' versionCode: 2 commit: c417d0ddff4c89640e41532cfce01414e0951db8 subdir: app gradle: - yes - versionName: '1.2' versionCode: 3 commit: v1.2 subdir: app gradle: - yes - versionName: '1.3' versionCode: 4 commit: v1.3 subdir: app gradle: - yes - versionName: 1.3.1 versionCode: 5 commit: v1.3.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.3' CurrentVersionCode: 4
Update CV of Torchlight to 1.3 (4)
Update CV of Torchlight to 1.3 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
ab31f55750274a0089ca2ec20036f280a0e509a6
config/snpp_sdr.yml
config/snpp_sdr.yml
configs: viirs: driver: viirs_sdr.sh options: "-z" rdr_glob: "RNSCA-RVIRS*.h5" atms: driver: atms_sdr.sh options: "-z" rdr_glob: "RATMS-RNSCA*.h5" cris: driver: cris_sdr.sh options: "-z" rdr_glob: "RCRIS-RNSC*.h5" limits: processor: 1 env: /opt/cspp/SDR_2_0/cspp_sdr_env.sh
configs: viirs: driver: viirs_sdr.sh options: "-z -e" rdr_glob: "RNSCA-RVIRS*.h5" atms: driver: atms_sdr.sh options: "-z" rdr_glob: "RATMS-RNSCA*.h5" cris: driver: cris_sdr.sh options: "-z" rdr_glob: "RCRIS-RNSC*.h5" limits: processor: 1 env: /opt/cspp/SDR_2_0/cspp_sdr_env.sh
Add -e flag to viirs_sdr processing
Add -e flag to viirs_sdr processing
YAML
apache-2.0
gina-alaska/sandy-utils,gina-alaska/sandy-utils,gina-alaska/sandy-utils
e999065cb8c95368e1ad9192b82f0749b57fc5c4
recipes/zen3geo/meta.yaml
recipes/zen3geo/meta.yaml
{% set name = "zen3geo" %} {% set version = "0.3.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/zen3geo-{{ version }}.tar.gz sha256: 09e84306809d03899155510f75dff83023e301c95bb0835b7bf5c34e58c72720 build: noarch: python script: {{ PYTHON }} -m pip install . -vv number: 0 requirements: host: - pip - python >=3.8,<3.12 run: - python >=3.8,<3.12 - rioxarray >=0.10.0 - torchdata >=0.4.0 test: imports: - zen3geo commands: - pip check requires: - pip about: home: None summary: The 🌏 data science library you've been waiting for~ license: LGPL-3.0 license_file: - LICENSE.md extra: recipe-maintainers: - weiji14
{% set name = "zen3geo" %} {% set version = "0.3.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/zen3geo-{{ version }}.tar.gz sha256: 09e84306809d03899155510f75dff83023e301c95bb0835b7bf5c34e58c72720 build: noarch: python script: {{ PYTHON }} -m pip install . -vv number: 0 requirements: host: - pip - python >=3.8,<3.12 run: - python >=3.8,<3.12 - rioxarray >=0.10.0 - torchdata >=0.4.0 test: imports: - zen3geo commands: - pip check requires: - pip about: home: None summary: The 🌏 data science library you've been waiting for~ license: LGPL-3.0-or-later license_file: - LICENSE.md extra: recipe-maintainers: - weiji14
Set license to LGPL-3.0-or-later for SPDX compatibility
Set license to LGPL-3.0-or-later for SPDX compatibility
YAML
bsd-3-clause
ocefpaf/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes
7ee6e5b18bafad5c758f6c692a0180dc903729d8
_data/_2021_members.yml
_data/_2021_members.yml
# -Example entry- # - If you don't want to add cetain information just omit the line - #- name: <Insert your name> # short_bio: <One or two sentance about yourself> # image_url: <Direct link to a photo of yourself, I suggest copying a image link from social media (Github, Twitter)> # github: <Your github username (without a @)> # website: <A link to your website>
# -Example entry- # - If you don't want to add cetain information just omit the line - #- name: <Insert your name> # short_bio: <One or two sentance about yourself> # image_url: <Direct link to a photo of yourself, I suggest copying a image link from social media (Github, Twitter)> # github: <Your github username (without a @)> # website: <A link to your website> name: Chris Messmer short_bio: I'm a CS major at UC, and I am a member of ACM@UC and the Robotics team. github: messmecp
Add Chris Messmer to members
Add Chris Messmer to members
YAML
mit
ACMatUC/acm-website,ACMatUC/acm-website,ACMatUC/acm-website
b9d2b54237182a2a30c338b5776901d9eb04425f
examples/aws/docker-compose.yml
examples/aws/docker-compose.yml
version: "2.4" services: buildviz: build: buildviz volumes: - ./data:/buildviz/data image: cburgmer/buildviz sync: build: buildviz command: schedule buildviz.teamcity.sync "https://guest@teamcity.jetbrains.com" --project TestNG --buildviz http://buildviz:3000 restart: always image: cburgmer/buildviz nginx: build: nginx ports: - "8080:8080" image: cburgmer/buildviz-nginx
version: "2.4" services: buildviz: build: buildviz volumes: - ./data:/buildviz/data image: cburgmer/buildviz sync: build: buildviz command: schedule buildviz.teamcity.sync "https://guest@teamcity.jetbrains.com" --project KotlinTools --buildviz http://buildviz:3000 restart: always image: cburgmer/buildviz nginx: build: nginx ports: - "8080:8080" image: cburgmer/buildviz-nginx
Switch to a nicer example
Switch to a nicer example
YAML
bsd-2-clause
cburgmer/buildviz,cburgmer/buildviz,cburgmer/buildviz
85b6ed0c4f6f71bcea8c161876ab49ba6cfc7c4b
config/metric_writer.yml
config/metric_writer.yml
# Cloud Foundry Java Buildpack # Copyright 2013-2019 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Metric Writer configuration --- version: 3.+ repository_root: "{default.repository.root}/metric-writer" enabled: true
# Cloud Foundry Java Buildpack # Copyright 2013-2019 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Metric Writer configuration --- version: 3.+ repository_root: "{default.repository.root}/metric-writer" enabled: false
Disable Metric Writer by Default
Disable Metric Writer by Default This change disables the metric writer by default. [resolves #748] Signed-off-by: Ben Hale <cf6bfba6a9cc3ab14105263f6e4be417b99c9860@pivotal.io>
YAML
apache-2.0
rakutentech/java-buildpack,cloudfoundry-community/jboss-buildpack,cloudfoundry/java-buildpack,rakutentech/java-buildpack,cloudfoundry-community/tomee-buildpack,cloudfoundry/java-buildpack,Appdynamics/java-buildpack,cloudfoundry-community/jboss-buildpack,cloudfoundry-community/tomee-buildpack,Appdynamics/java-buildpack
baa3da6c0226110404e71ddba8651134891d3bbf
.poggit.yml
.poggit.yml
--- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/diamond-gold/MiniBosses build-by-default: true branches: - master projects: MiniBosses: path: "" icon: icon.png ...
--- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/diamond-gold/MiniBosses build-by-default: true branches: - master projects: MiniBosses: path: "" icon: icon.png lint: phpstan: false ...
Disable phpstan, it is reporting non-existent problems???
Disable phpstan, it is reporting non-existent problems???
YAML
agpl-3.0
diamond-gold/MiniBosses
ef8a66fe9015de039fc0f06abe6473a0d0dc832d
.travis.yml
.travis.yml
language: ruby env: global: - RUBY_GC_MALLOC_LIMIT=90000000 - RUBY_FREE_MIN=200000 services: - redis addons: postgresql: 9.3 rvm: - jruby-19mode jdk: - oraclejdk7 - openjdk6 matrix: include: - rvm: 1.9.3 jdk: - rvm: 2.0.0 jdk: - rvm: rbx-2.1.1 jdk: allow_failures: - rvm: rbx-2.1.1 jdk: before_script: - sudo service mysql stop - redis-cli config set save "" - 'RAILS_ENV=test rake db:create db:structure:load --trace' script: - './build.sh' notifications: irc: "irc.freenode.org#travis"
language: ruby env: global: - RUBY_GC_MALLOC_LIMIT=90000000 - RUBY_FREE_MIN=200000 services: - redis addons: postgresql: 9.3 rvm: - jruby-19mode jdk: - oraclejdk7 - openjdk6 matrix: include: - rvm: 1.9.3 jdk: - rvm: 2.0.0 jdk: - rvm: 2.1.0 jdk: - rvm: rbx-2.1.1 jdk: allow_failures: - rvm: 2.1.0 jdk: - rvm: rbx-2.1.1 jdk: before_script: - sudo service mysql stop - redis-cli config set save "" - 'RAILS_ENV=test rake db:create db:structure:load --trace' script: - './build.sh' notifications: irc: "irc.freenode.org#travis"
Add MRI 2.1.0 to the mix
Add MRI 2.1.0 to the mix And allow it to fail (for now).
YAML
mit
developerfm/travis-core,Tiger66639/travis-core,GistIcon/travis-core,GistIcon/travis-core,GistIcon/travis-core,travis-ci/travis-core,final-ci/travis-core,jantman/travis-core,final-ci/travis-core,kidaa/travis-core,travis-ci/travis-core,kidaa/travis-core,Tiger66639/travis-core,Tiger66639/travis-core,kidaa/travis-core,developerfm/travis-core,final-ci/travis-core,travis-ci/travis-core,developerfm/travis-core,jantman/travis-core
25d25f314c61dd1b07651d18873f73b0d6b21ab5
.travis.yml
.travis.yml
language: python python: - "3.5" - "3.6-dev" install: - pip install tox coveralls script: - if [[ $TRAVIS_PYTHON_VERSION != 3.6-dev ]]; then tox; fi - if [[ $TRAVIS_PYTHON_VERSION == 3.6-dev ]]; then tox -e py36-pytest28,py36-pytest29,py36-pytest30; fi after_success: - coveralls deploy: provider: pypi user: nicoddemus password: secure: bB4adUZVIkt31cmNklskyIDNehujKToGnStnlunp7P8CBF6CGeNqkYU17emAPvfZbTb/ClUpiO9r6AD1ej32Uyr+I8qUyhuYtHG3JGp+WRR/tw+ytAZIJ9i+PMjBv1RAdyLENJ/Tx0LKHKsABr8dQIieLFqKZJuT77f/5ZkvI/U= on: tags: true distributions: sdist bdist_wheel repo: pytest-dev/pytest-mock condition: $TRAVIS_PYTHON_VERSION = 3.5
language: python python: - "3.6" install: - pip install tox coveralls script: - tox after_success: - coveralls deploy: provider: pypi user: nicoddemus password: secure: bB4adUZVIkt31cmNklskyIDNehujKToGnStnlunp7P8CBF6CGeNqkYU17emAPvfZbTb/ClUpiO9r6AD1ej32Uyr+I8qUyhuYtHG3JGp+WRR/tw+ytAZIJ9i+PMjBv1RAdyLENJ/Tx0LKHKsABr8dQIieLFqKZJuT77f/5ZkvI/U= on: tags: true distributions: sdist bdist_wheel repo: pytest-dev/pytest-mock condition: $TRAVIS_PYTHON_VERSION = 3.5
Remove special case for python 3.6-dev from Travis
Remove special case for python 3.6-dev from Travis
YAML
mit
pytest-dev/pytest-mock
0e6f3fa4f31e528ae7df464411daa154db06644b
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" env: - KRB5_PPAS="" # 1.10 - KRB5_PPAS="sssd/updates" # 1.12 - KRB5_PPAS="rharwood/krb5-1.13 sssd/updates" # 1.13 install: - "sudo sed -i '1i 127.0.0.1 test.box' /etc/hosts" - "sudo hostname test.box" - "for i in $KRB5_PPAS; do sudo apt-add-repository -y ppa:$i; done" - "sudo apt-get update -q" - "DEBIAN_FRONTEND=noninteractive sudo apt-get install -y krb5-user krb5-kdc krb5-admin-server libkrb5-dev krb5-multidev" - "pip install --install-option='--no-cython-compile' cython" - "pip install -r test-requirements.txt" script: sh .travis.sh
language: python python: - "2.7" - "3.4" env: - KRB5_PPAS="" # 1.10 - KRB5_PPAS="sssd/updates" # 1.12 - KRB5_PPAS="rharwood/krb5-1.13 sssd/updates" # 1.13 - KRB5_PPAS="rharwood/krb5-master sssd/updates" # master matrix: exclude: - python: "3.4" env: KRB5_PPAS="" # 1.10 include: - python: "3.3" env: KRB5_PPAS="sssd/updates" # 1.12 install: - "sudo sed -i '1i 127.0.0.1 test.box' /etc/hosts" - "sudo hostname test.box" - "for i in $KRB5_PPAS; do sudo apt-add-repository -y ppa:$i; done" - "sudo apt-get update -q" - "DEBIAN_FRONTEND=noninteractive sudo apt-get install -y krb5-user krb5-kdc krb5-admin-server libkrb5-dev krb5-multidev" - "pip install --install-option='--no-cython-compile' cython" - "pip install -r test-requirements.txt" script: sh .travis.sh
Add krb5-master target and pare down build matrix
Add krb5-master target and pare down build matrix Since 4x3 build jobs will take quite some time, reduce it to 4x2 (+2-2). This is a net reduction over the previous 3x3 but should not have significant loss in coverage.
YAML
isc
frozencemetery/python-gssapi,pythongssapi/python-gssapi,frozencemetery/python-gssapi,pythongssapi/python-gssapi,pythongssapi/python-gssapi,frozencemetery/python-gssapi
d42df14d00dc5f265d44fec84ca4215558059c27
.travis.yml
.travis.yml
language: python # Restrict testing to system native python versions. # This means that binary distributions can be used for the dependencies. # Travis runs on Ubuntu 12.04 LTS currently. :( python: - "2.7" - "3.2" # - "3.3" # - "pypy" # Build inside docker containers instead of virtual machines. These are # faster, start quicker and support caching. Only downside: sudo is not # supported. sudo: false # Dependencies can be installed as follows. This works only for packages # whitelisted on https://github.com/travis-ci/apt-package-whitelist: addons: apt: packages: - python-gobject - python3-gi - libkeyutils-dev # Inherit system site packages for use in virtualenv: virtualenv: system_site_packages: true # Setup (performed within virtualenv) install: # Check that package can be installed from source distribution: - pip install keyutils - python setup.py sdist - pip install $(ls ./dist/*.tar.gz | sort -rV | head -n1) # Actual tests: script: - nosetests
language: python # Restrict testing to system native python versions. # This means that binary distributions can be used for the dependencies. # Travis runs on Ubuntu 12.04 LTS currently. :( python: - "2.7" - "3.4" # trusty's native python3 version # - "pypy" # Build inside docker containers instead of virtual machines. These are # faster, start quicker and support caching. Only downside: sudo is not # supported. sudo: false # Dependencies can be installed as follows. This works only for packages # whitelisted on https://github.com/travis-ci/apt-package-whitelist: addons: apt: packages: - python-gobject - python3-gi - libkeyutils-dev # Inherit system site packages for use in virtualenv: virtualenv: system_site_packages: true # Setup (performed within virtualenv) install: # Check that package can be installed from source distribution: - pip install keyutils - python setup.py sdist - pip install $(ls ./dist/*.tar.gz | sort -rV | head -n1) # Actual tests: script: - nosetests
Update Travis config for build on trusty
Update Travis config for build on trusty
YAML
mit
coldfix/udiskie,pstray/udiskie,pstray/udiskie,coldfix/udiskie
dcc2f9a3b807ed70353fef16f281d77cab23cfc0
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "pypy" install: - sudo apt-get install zlib1g zlib1g-dev - sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/ - pip install PIL --use-mirrors ; true script: tests/alltests.py
language: python python: - "2.6" - "2.7" - "3.2" - "pypy" install: - sudo apt-get install zlib1g zlib1g-dev - sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/ - pip install pillow --use-mirrors ; true script: tests/alltests.py
Move from PIL to Pillow (PIL fork with Python 3 support).
Move from PIL to Pillow (PIL fork with Python 3 support).
YAML
mit
cburschka/NBT,twoolie/NBT,fwaggle/NBT,macfreek/NBT,devmario/NBT
8c861f9d61b096b818babfef2df306e145c8a1fb
metadata/com.winston69.simpill.yml
metadata/com.winston69.simpill.yml
Categories: - Sports & Health License: GPL-3.0-only AuthorName: Stephen AuthorEmail: simpilldev@gmail.com SourceCode: https://gitlab.com/Winston69/simpill IssueTracker: https://gitlab.com/Winston69/simpill/-/issues Bitcoin: bc1qy8avhvsmptrqkqyxw3w9kdc69p3dg4nky5u3gd AutoName: Simpill RepoType: git Repo: https://gitlab.com/Winston69/simpill Builds: - versionName: 1.0.2 versionCode: 2 commit: 1.0.2 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.0.2 CurrentVersionCode: 2
Categories: - Sports & Health License: GPL-3.0-only AuthorName: Stephen AuthorEmail: simpilldev@gmail.com SourceCode: https://gitlab.com/Winston69/simpill IssueTracker: https://gitlab.com/Winston69/simpill/-/issues Bitcoin: bc1qy8avhvsmptrqkqyxw3w9kdc69p3dg4nky5u3gd AutoName: Simpill RepoType: git Repo: https://gitlab.com/Winston69/simpill Builds: - versionName: 1.0.2 versionCode: 2 commit: 1.0.2 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - yes - versionName: 1.0.3.2 versionCode: 5 commit: bd9bae5d60f6cefd15c14ebafedd755228cbea9a subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.0.3.2 CurrentVersionCode: 5
Update Simpill to 1.0.3.2 (5)
Update Simpill to 1.0.3.2 (5)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
69580020783307be209f11e58f64d6eba0a57c04
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.0.0 - 1.9.3 - 1.9.2 - jruby-19mode - ruby-head - jruby-head
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" rvm: - 2.0.0 - 1.9.3 - 1.9.2 - jruby-19mode - ruby-head - jruby-head
Remove the CI flag for now
Remove the CI flag for now
YAML
mit
petervandenabeele/dbd
e9ee92142c5c7282673acea81d40b2c8901c78af
.travis.yml
.travis.yml
language: c sudo: false env: global: - LUAROCKS=2.2.2 matrix: - LUA=lua5.1 - LUA=lua5.2 - LUA=lua5.3 - LUA=luajit # latest stable version (2.0.3) - LUA=luajit2.0 # current head of 2.0 branch - LUA=luajit2.1 # current head of 2.1 branch branches: only: - master before_install: - source .ci/setenv_lua.sh - git clone https://github.com/libuv/libuv && cd libuv && sh autogen.sh && ./configure && make && make install && cd .. before_script: - luarocks install lluv - luarocks install busted - luarocks install luacov - luarocks install luacov-coveralls script: - busted -c -v - luarocks make rocks/lift-scm-0.rockspec - lift --help after_success: - luacov-coveralls -v
language: c sudo: false env: global: - LUAROCKS=2.2.2 matrix: - LUA=lua5.1 - LUA=lua5.2 - LUA=lua5.3 - LUA=luajit # latest stable version (2.0.3) - LUA=luajit2.0 # current head of 2.0 branch - LUA=luajit2.1 # current head of 2.1 branch branches: only: - master before_install: - source .ci/setenv_lua.sh - git clone https://github.com/libuv/libuv && cd libuv && sh autogen.sh && ./configure && make && cd .. before_script: - luarocks install lluv UV_DIR=libuv UV_LIBDIR=libuv/.libs - luarocks install busted - luarocks install luacov - luarocks install luacov-coveralls script: - busted -c -v - luarocks make rocks/lift-scm-0.rockspec - lift --help after_success: - luacov-coveralls -v
Fix libuv build on Travis
Fix libuv build on Travis
YAML
mit
tbastos/lift
9d227f327e725164c3266be74cf5c00678edad13
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx-18mode - rbx-19mode
Remove jruby from test matrix
Remove jruby from test matrix
YAML
mit
sosedoff/lxc-ruby
0ee0512a353922aa1cd44d9a1bc6081145c2d099
.travis.yml
.travis.yml
language: python os: - linux python: - '2.7' - '3.4' - '3.5' - '3.6' - nightly env: global: - VENV_ARGS="--system-site-packages" install: - pip install -U pip setuptools - pip install . - pip install PyYAML - pip install coverage - pip install coveralls script: - coverage run --source=exchangelib setup.py test after_success: coveralls before_install: - sudo apt-get -qq update - sudo apt-get install -y python-lxml python3-lxml - openssl aes-256-cbc -K $encrypted_e7f042a9cf96_key -iv $encrypted_e7f042a9cf96_iv -in settings.yml.enc -out settings.yml -d
language: python os: - linux python: - '2.7' - '3.4' - '3.5' - '3.6' - nightly install: - pip install -U pip setuptools - pip install cython - pip install git+ssh://git@github.com/lxml/lxml.git - pip install . - pip install PyYAML - pip install coverage - pip install coveralls script: - coverage run --source=exchangelib setup.py test after_success: coveralls before_install: - openssl aes-256-cbc -K $encrypted_e7f042a9cf96_key -iv $encrypted_e7f042a9cf96_iv -in settings.yml.enc -out settings.yml -d
Install lxml from GitHub instead of apt hack
Install lxml from GitHub instead of apt hack Supposedly there's a fix in 4.0.0 for python nightly (3.7-pre) builds.
YAML
bsd-2-clause
ecederstrand/exchangelib
9a66b76c9f70117ec7118e7e62c9785a47133534
.travis.yml
.travis.yml
language: common-lisp sudo: required env: matrix: - LISP=allegro - LISP=ccl - LISP=ccl32 - LISP=clisp - LISP=ecl - LISP=sbcl - LISP=sbcl32 install: # Install cl-travis - curl https://raw.githubusercontent.com/glv2/cl-travis/master/install.sh | bash script: - cl -l ironclad -l ironclad/tests -e '(setf *debugger-hook* (lambda (&rest ignorable) (declare (ignore ignorable)) (uiop:quit -1)))' -e '(unless (rt:do-tests) (uiop:quit -1))'
language: common-lisp sudo: required env: matrix: - LISP=allegro - LISP=ccl-bin - LISP=clisp - LISP=ecl - LISP=sbcl-bin matrix: allow_failures: - env: LISP=allegro - env: LISP=clisp install: - curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh | sh script: # Compiling and testing can fail on Allegro CL Express Free edition # because of the 50 MB heap size limitation, so let's try to split # the work in two as a possible workaround... - if [ "$LISP" = "allegro" ]; then ros -e '(setf *debugger-hook* (lambda (&rest ignorable) (declare (ignore ignorable)) (uiop:quit 0)))' -e '(ql:quickload "ironclad/tests")'; else true; fi - ros -e '(setf *debugger-hook* (lambda (&rest ignorable) (declare (ignore ignorable)) (uiop:quit -1)))' -e '(ql:quickload "ironclad/tests")' -e '(unless (rt:do-tests) (uiop:quit -1))'
Use Roswell with Travis CI
Use Roswell with Travis CI
YAML
bsd-3-clause
sharplispers/ironclad,eadmund/ironclad,glv2/ironclad
733678ee63b500064cd365b59402fe79c7ad7066
.travis.yml
.travis.yml
language: php matrix: include: - php: '5.5' env: PHP_VERSION_USED="5.5" - php: '5.6' env: PHP_VERSION_USED="5.6" - php: '7.0' env: PHP_VERSION_USED="7.0" - php: '7.1' env: PHP_VERSION_USED="7.1" - php: hhvm env: PHP_VERSION_USED="hhvm" before_script: - wget https://phar.phpunit.de/phpunit.phar - chmod a+x phpunit.phar - chmod 777 ./tests/travis/setup_arangodb.sh - ./tests/travis/setup_arangodb.sh script: - if [[ "${PHP_VERSION_USED}" == "5.5" ]]; then phpunit --configuration ./tests/phpunit.xml; fi - if [[ "${PHP_VERSION_USED}" == "5.6" ]]; then phpunit --configuration ./tests/phpunit.xml; fi - if [[ "${PHP_VERSION_USED}" == "7.0" ]]; then (cd tests && ../phpunit.phar . --colors=auto --verbose --bootstrap=bootstrap.php); fi - if [[ "${PHP_VERSION_USED}" == "hhvm" ]]; then phpunit --configuration ./tests/phpunit.xml; fi
language: php matrix: include: - php: '5.5' env: PHP_VERSION_USED="5.5" - php: '5.6' env: PHP_VERSION_USED="5.6" - php: '7.0' env: PHP_VERSION_USED="7.0" - php: '7.1' env: PHP_VERSION_USED="7.1" - php: hhvm env: PHP_VERSION_USED="hhvm" before_script: - wget https://phar.phpunit.de/phpunit.phar - chmod a+x phpunit.phar - chmod 777 ./tests/travis/setup_arangodb.sh - ./tests/travis/setup_arangodb.sh script: - if [[ "${PHP_VERSION_USED}" == "5.5" ]]; then phpunit --configuration ./tests/phpunit.xml; fi - if [[ "${PHP_VERSION_USED}" == "5.6" ]]; then phpunit --configuration ./tests/phpunit.xml; fi - if [[ "${PHP_VERSION_USED}" == "7.0" ]]; then (cd tests && ../phpunit.phar . --colors=auto --verbose --bootstrap=bootstrap.php); fi - if [[ "${PHP_VERSION_USED}" == "7.1" ]]; then (cd tests && ../phpunit.phar . --colors=auto --verbose --bootstrap=bootstrap.php); fi - if [[ "${PHP_VERSION_USED}" == "hhvm" ]]; then phpunit --configuration ./tests/phpunit.xml; fi
Fix tests not running under PHP 7.1
Fix tests not running under PHP 7.1
YAML
apache-2.0
arangodb/arangodb-php,diabl0/arangodb-php,arangodb/arangodb-php,diabl0/arangodb-php
f3ce8a389357f56cc0ff65c14fe4a0349027344c
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "4" - "5" install: - npm install script: - npm run check - npm run build - npm run validate - npm run integration-test after_success: - npm run coveralls
language: node_js node_js: - "0.12" - "4" - "5" - "6" install: - npm install script: - npm run check - npm run build - npm run validate - npm run integration-test after_success: - npm run coveralls
Add Node.js version 6 to Travis CI configuration
Add Node.js version 6 to Travis CI configuration
YAML
mit
ritterim/markdown-proofing
ed768d8df52d0d0786404406b2115d8f6913fa8b
config/worker.nodejs.yml
config/worker.nodejs.yml
queue: builds.nodejs shell: buffer: 2.0
queue: builds.nodejs shell: buffer: 2.0 timeouts: before_install: 240 install: 240 before_script: 240 script: 720
Use modest timeout values for node.js/php workers
Use modest timeout values for node.js/php workers Ruby workers require higher values because huge projects like Diaspora and RefineryCMS need more time running. We will adjust these timeouts over time if the need arises.
YAML
mit
ireznice/travis-worker,ireznice/travis-worker,gavioto/travis-worker,final-ci/travis-worker,travis-ci/travis-worker,final-ci/travis-worker,gavioto/travis-worker,travis-ci/travis-worker
ab82c977ecb0e5afde4e8f5b95aed21101756d1e
.travis.yml
.travis.yml
--- language: node_js node_js: - 4 - 5 sudo: false cache: directories: - node_modules script: - npm test - npm run lint
--- language: node_js node_js: - '4' - node sudo: false cache: directories: - node_modules script: - npm test - npm run lint
Configure Travis CI to test on Node.js 4 and current
Configure Travis CI to test on Node.js 4 and current
YAML
mit
kemitchell/reviewers-edition-compare.js
232dfe6f8925e7b3828052b5f015ab7a07524600
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - pypy - 3.2 - 3.3 - 3.4 install: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then pip install -r requirements.pip; fi - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install -r requirements.pypy; fi script: nosetests --with-coverage --cover-package=queries after_success: - coveralls
language: python python: - 2.6 - 2.7 - pypy - 3.2 - 3.3 - 3.4 install: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then pip install -r requirements.pip; fi - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install -r requirements.pypy; fi script: nosetests --with-coverage --cover-package=queries --verbose after_success: - coveralls
Add verbose flag to see where pypy is hanging
Add verbose flag to see where pypy is hanging (on travis)
YAML
bsd-3-clause
gmr/queries,gmr/queries
fe5f9c055c3684ed7679f6df3af10cedc017e9c7
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 - 0.12 # Use container-based Travis infrastructure. sudo: false branches: only: - master before_install: # GUI for real browsers. - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - npm run check-ci # Prune deps to just production and ensure we can still build - npm prune --production - npm install --production - npm run build
language: node_js node_js: - 0.10 - 0.12 - 4.2 # Use container-based Travis infrastructure. sudo: false branches: only: - master before_install: # GUI for real browsers. - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - npm run check-ci # Prune deps to just production and ensure we can still build - npm prune --production - npm install --production - npm run build
Add Node 4.2 to Travis build
Add Node 4.2 to Travis build
YAML
mit
FormidableLabs/ecology,aurelienshz/ecology,FormidableLabs/ecology,aurelienshz/ecology
4673f9834a194338202fa2986ba8cbc46452dc7a
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm before_script: - travis_retry composer self-update - travis_retry composer install --prefer-source --no-interaction script: - composer test
# Use Docker environment sudo: false # Setup build matrix language: php php: - 5.6 - 7.0 - hhvm env: matrix: - PREFER_LOWEST="--prefer-lowest" - PREFER_LOWEST="" # Dependencies before_install: - travis_retry composer self-update install: - travis_retry composer update --no-interaction --prefer-source $PREFER_LOWEST script: - composer test - composer lint -- --dry-run # Cache dependencies cache: directories: - $HOME/.composer/cache
Remove extra versions from Travis file
Remove extra versions from Travis file
YAML
mit
Anahkiasen/versioner
5ab1f2e8e22723e884e1e8c1a83d9ca1373ec87d
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 # Coverage report on Coveralls after_success: - mvn cobertura:cobertura coveralls:report # Coverity scan # Execute only for builds on branch coverity_scan env: global: - secure: "ifRt6xnHiBcwCBe7sJX+kUep8Vk4NAVlBcuCCPmFafZ8iHNKSvwqr8ajIIRuMEVHp1CyLUv5paPuGMAE+ivVEPLyHvhwbFQd5e89up7iXtaCgiXKfluNeTqiGIpqEsJ6vwvUaaKLFk4mZyvSo8MfOGmKq8wadOOjFFFE7L44Ibs=" addons: coverity_scan: project: name: "cyChop/property-mapper" description: "Build submitted via Travis CI" notification_email: cyrille.chopelet@mines-nancy.org build_command_prepend: "mvn clean" build_command: "mvn package" branch_pattern: coverity_scan
language: java sudo: false jdk: - oraclejdk7 # Coverage report on Coveralls after_success: - mvn cobertura:cobertura coveralls:report # Coverity scan # Execute only for builds on branch coverity_scan env: global: - secure: "ifRt6xnHiBcwCBe7sJX+kUep8Vk4NAVlBcuCCPmFafZ8iHNKSvwqr8ajIIRuMEVHp1CyLUv5paPuGMAE+ivVEPLyHvhwbFQd5e89up7iXtaCgiXKfluNeTqiGIpqEsJ6vwvUaaKLFk4mZyvSo8MfOGmKq8wadOOjFFFE7L44Ibs=" addons: coverity_scan: project: name: "cyChop/property-mapper" description: "Build submitted via Travis CI" notification_email: cyrille.chopelet@mines-nancy.org build_command_prepend: "mvn clean" build_command: "mvn package" branch_pattern: coverity_scan
Modify Travis config for non-legacy infrastructure
Modify Travis config for non-legacy infrastructure
YAML
mit
cyChop/property-mapper
6665b013e9a1be5654e80ab05b1b35371569eccf
.travis.yml
.travis.yml
language: erlang otp_release: - R15B01 - R14B04 script: make clean test branches: only: - master notifications: email: recipients: - zotonic-commits@googlegroups.com on_success: change #[always|never|change] # default: change on_failure: always #[always|never|change] # default: always
language: erlang otp_release: - 17.0 - R16B - R15B03 script: make clean test branches: only: - master notifications: email: recipients: - zotonic-commits@googlegroups.com on_success: change #[always|never|change] # default: change on_failure: always #[always|never|change] # default: always
Build R15B03 and up on Travis-CI
Build R15B03 and up on Travis-CI
YAML
apache-2.0
zotonic/z_stdlib
b28f8511bcc3f18e719e074f58fa15f65aa762fa
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.0 - 2.1.5 - 2.1.4 - 2.0.0 - 1.9.3 - ruby-head - jruby-1.7.18 - jruby-head - rbx-2 jdk: - oraclejdk8 sudo: false branches: only: - master matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: 1.9.3 script: "rake compile && bundle exec rspec --color --backtrace --tag ~unfinished --seed 1 ./spec"
language: ruby rvm: - 2.2.0 - 2.1.5 - 2.1.4 - 2.0.0 - 1.9.3 - ruby-head - jruby-1.7.18 - jruby-head - rbx-2 jdk: - oraclejdk8 sudo: false branches: only: - master matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: 1.9.3 script: "rake compile && bundle exec rspec --color --backtrace --tag ~unfinished --seed 1 --format documentation ./spec"
Set Travis test script back to documentation format.
Set Travis test script back to documentation format.
YAML
mit
MadBomber/concurrent-ruby,MadBomber/concurrent-ruby,hobodave/concurrent-ruby,rranelli/concurrent-ruby,hsavit1/concurrent-ruby,colinsurprenant/concurrent-ruby,hobodave/concurrent-ruby,philipmw/concurrent-ruby,philipmw/concurrent-ruby,colinsurprenant/concurrent-ruby,marshall-lee/concurrent-ruby,lucasallan/concurrent-ruby,MadBomber/concurrent-ruby,akihiro17/concurrent-ruby,hobodave/concurrent-ruby,MYOB-Technology/concurrent-ruby,ferdinandrosario/concurrent-ruby,ferdinandrosario/concurrent-ruby,deivid-rodriguez/concurrent-ruby,MYOB-Technology/concurrent-ruby,devigned/concurrent-ruby,rranelli/concurrent-ruby,benjamintanweihao/concurrent-ruby,hfenton/concurrent-ruby,iNecas/concurrent-ruby,lucasallan/concurrent-ruby,iNecas/concurrent-ruby,rranelli/concurrent-ruby,philipmw/concurrent-ruby,hsavit1/concurrent-ruby,MadBomber/concurrent-ruby,marshall-lee/concurrent-ruby,devigned/concurrent-ruby,deivid-rodriguez/concurrent-ruby,marshall-lee/concurrent-ruby,lucasallan/concurrent-ruby,iNecas/concurrent-ruby,hfenton/concurrent-ruby,benjamintanweihao/concurrent-ruby,akihiro17/concurrent-ruby,MYOB-Technology/concurrent-ruby,philipmw/concurrent-ruby,lucasallan/concurrent-ruby,ferdinandrosario/concurrent-ruby,hsavit1/concurrent-ruby,colinsurprenant/concurrent-ruby,ferdinandrosario/concurrent-ruby,hfenton/concurrent-ruby,benjamintanweihao/concurrent-ruby,devigned/concurrent-ruby,devigned/concurrent-ruby,akihiro17/concurrent-ruby,rranelli/concurrent-ruby,akihiro17/concurrent-ruby,hobodave/concurrent-ruby,hsavit1/concurrent-ruby,hfenton/concurrent-ruby,marshall-lee/concurrent-ruby,colinsurprenant/concurrent-ruby,iNecas/concurrent-ruby,deivid-rodriguez/concurrent-ruby,MYOB-Technology/concurrent-ruby,benjamintanweihao/concurrent-ruby,lucasallan/concurrent-ruby,deivid-rodriguez/concurrent-ruby
909a46a948fb36c607d761b114adcaf36779bd1f
.travis.yml
.travis.yml
language: node_js node_js: - "10" - "12" - "14" script: - npm test jobs: include: - stage: release node_js: lts/* deploy: provider: script skip_cleanup: true script: - npx semantic-release
language: node_js node_js: - '10' - '12' - '14' script: - npm test jobs: include: - stage: release node_js: lts/* deploy: provider: script skip_cleanup: true script: - npx semantic-release env: global: secure: cYzGRWo45pJAuZ46xwni1xpNYlmZfQpMNmfKjSppTTlEc4vLgNXvl6/npkU5m10putrgTutVKb2Ow6XHEc7md0s1Bw3zqxAiZ3hdyh0kL2dEPLjOGb7DjgIhLYNk0Cy8W3JcwvdDANXUd30znXhbw+aR+U0kyZqcKxQab42Zn92swfXzpAxwHu79fpy/Ya+O5kTC+osGX6qCxGyfKHIXrTl1lEy/5d5UzUJw50PfZU1YIXWXyMheeNc2JJs9o65mC7MhZB98UICt6QTAfKkgnkpEs92t+RcihGPHafyoNRDZbuf91dn8v+e+XpZxSPGH+gULj752xlfc17aA4BwwOMJ/rM5r7ABEvRMNHQclE3h6oB9nZ/FgXlYchj04QA32YQ1Ps4mmDaqFE85KDrKvNBrd/jiPbBnteYEwDtLb74T1fZLQ8Yu5vdHf1VHtD+8rmew3/AkgfiAICAKLS9H0VO+IPhx8u2mEaGwXp/7wHJJiGsEPy+BH3zaFXvEjpTP0w2Uu6o1JBSIATyvVJ+v9ZHxiPOZoBITzo3JX/bZF1Lh3r/HuNUqw1PV4LHYKh67QddTuLI8jIEw8f9H/TfdelEPSOp5vSOQUl37ZFmUWZTUZUW8wO15JUC5i1KMUVsTLoCHCf/aR+GGMBRug91uEJxKepukaJjIBXG9stxfaApo=
Add env var as encrypted string
chore: Add env var as encrypted string
YAML
mit
runk/node-geolite2,runk/node-geolite2
103d7b255e131f46a406a79ed0eb51b793944da8
.travis.yml
.travis.yml
script: make
# The project doesn't really use node.js, but we want npm language: node_js before_script: - npm install -g esprima script: make && esvalidate *.js
Add syntax validation in Travis
Add syntax validation in Travis
YAML
mit
LiquidFire/jisho-quick-radicals
8efd324645826b3613566b678d4cb9f06d4a2065
.travis.yml
.travis.yml
language: csharp solution: OpenGL.Net_Mono.sln addons: apt: packages: - xserver-xorg-video-dummy - xpra - mesa-utils install: - sudo nuget update -self - sudo nuget restore OpenGL.Net_Mono.sln - sudo nuget restore OpenGL.Net_VC14.sln before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 6 # give xvfb some time to start script: - mono --version - xbuild /p:Configuration=Release OpenGL.Net_Mono.sln - glxinfo - mono ./packages/NUnit.ConsoleRunner.3.7.0/tools/nunit3-console.exe --where="cat=Framework || cat=Math" ./OpenGL.Net.Test/bin/net461/Release/OpenGL.Net.Test.dll - mono ./packages/NUnit.ConsoleRunner.3.7.0/tools/nunit3-console.exe --where="cat=Framework || cat=Math" ./OpenGL.Net.Test/bin/net35/Release/OpenGL.Net.Test.dll
language: csharp solution: OpenGL.Net_Mono.sln addons: apt: packages: - xserver-xorg-video-dummy - xpra - mesa-utils install: - sudo nuget update -self - sudo nuget restore OpenGL.Net_Mono.sln - sudo nuget restore OpenGL.Net_VC14.sln before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 6 # give xvfb some time to start script: - mono --version - xbuild /p:Configuration=Release OpenGL.Net_Mono.sln - glxinfo - mono ./packages/NUnit.ConsoleRunner.3.7.0/tools/nunit3-console.exe --where="cat=Framework || cat=Math" ./OpenGL.Net.Test/bin/net461/Release/OpenGL.Net.Test.dll # - mono ./packages/NUnit.ConsoleRunner.3.7.0/tools/nunit3-console.exe --where="cat=Framework || cat=Math" ./OpenGL.Net.Test/bin/net35/Release/OpenGL.Net.Test.dll
Exclude .NET 3.5 test binaries.
Exclude .NET 3.5 test binaries.
YAML
mit
luca-piccioni/OpenGL.Net,luca-piccioni/OpenGL.Net
a89deab30c4c3b5724824b4308acaab15e0ec50b
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" before_install: npm install -g grunt-cli
language: node_js node_js: - "0.10" before_install: npm install -g grunt-cli
Remove Node 0.11 from Travis builds
Remove Node 0.11 from Travis builds
YAML
agpl-3.0
inspireteam/geogw,jdesboeufs/geogw
31ff8e6b6ebd8a87d9e95f8afc7ca79f996b4911
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler rvm: - 2.4.1 - 2.3.3 - 2.2.6 - jruby-1.7.20 - jruby-9.1.7.0 env: global: - JRUBY_OPTS="--debug" after_success: - bundle exec codeclimate-test-reporter
language: ruby sudo: false cache: bundler rvm: - 2.4.1 - 2.3.4 - 2.2.7 - jruby-1.7.20 - jruby-9.1.7.0 env: global: - JRUBY_OPTS="--debug" after_success: - bundle exec codeclimate-test-reporter
Test with latest Ruby versions
Test with latest Ruby versions
YAML
mit
jbox-web/job-database-manager