commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
37601668d5c9926c63e8bcc6cd3f2ea02c0baf2d | .travis.yml | .travis.yml | language: d
d:
- dmd-2.073.2
- dmd-2.072.2
services:
- mongodb
sudo: false
| language: d
d:
- dmd-2.073.2
- dmd-2.072.2
services:
- mongodb
sudo: false
script:
- dub upgrade --missing-only # attempt to work around DUB build issue
- dub test
| Work around DUB build issue. | Work around DUB build issue.
| YAML | agpl-3.0 | rejectedsoftware/vibelog |
061dd911d1ce2db4e838514ffa1c768023530d54 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5 | language: php
php:
- 5.4
- 5.5
script: phpunit
script: phpunit -c phpunit.xml.compiled | Add phpunit test with compiled version | Add phpunit test with compiled version
| YAML | mit | leoht/Apricot |
e631ed271857528b8cec2e01b9a32c444faa3668 | .travis.yml | .travis.yml | # http://travis-ci.org/#!/jaraco/keyring
language: python
python:
- 2.6
- 2.7
- 3.2
script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then OPTS="build/lib"; fi
- python setup.py ptr --addopts="-rs -v $OPTS"
| # http://travis-ci.org/#!/jaraco/keyring
language: python
python:
- 2.5
- 2.6
- 2.7
- 3.2
- 3.3
script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then OPTS="build/lib"; fi
- python setup.py ptr --addopts="-rs -v $OPTS"
| Add Python 3.3 and 2.5 to the tested versions | Add Python 3.3 and 2.5 to the tested versions
| YAML | mit | jaraco/keyring |
31f8aba1b55e9a9e314894428bd8d7b6ae6505b2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
matrix:
allow_failures:
- node_js: "0.8"
branches:
except:
- gh-pages
script:
- npm test --cover
after_script:
- cat ./build/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
before_install:
- if [[ `node --version` == *v0.8... | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
matrix:
allow_failures:
- node_js: "0.8"
branches:
except:
- gh-pages
script:
- npm test --cover
after_script:
- if [[ `node --version` == *v0.10* ]]; then cat ./build/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi
befo... | Enable coveralls for node10 only | Enable coveralls for node10 only
| YAML | bsd-3-clause | asa-git/istanbul,RubaXa/babel-istanbul,kittens/istanbul,camsong/istanbul-flow,abstractj/istanbul,omsmith/istanbul,kpdecker/istanbul,gotwarlost/istanbul,alihalabyah/istanbul,douglasduteil/istanbul,gtanner/istanbul,joeegan/istanbul,rolka/istanbul,camsong/istanbul-flow,sterling/istanbul,kyroskoh/istanbul,kittens/istanbul,... |
58c0e84d9a6d2a910128ec870546ca907d71f880 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- "pip install SQLAlchemy"
script: nosetests
| language: python
python:
- "2.7"
install:
- "pip install SQLAlchemy"
- "pip install MySQL-python"
before_script:
- "mysqld"
script: nosetests
| Add MySQL database to Travis | Add MySQL database to Travis
| YAML | mit | Dallinger/Dallinger,Dallinger/Dallinger,jcpeterson/Dallinger,jcpeterson/Dallinger,Dallinger/Dallinger,berkeley-cocosci/Wallace,jcpeterson/Dallinger,suchow/Wallace,Dallinger/Dallinger,suchow/Wallace,jcpeterson/Dallinger,jcpeterson/Dallinger,berkeley-cocosci/Wallace,berkeley-cocosci/Wallace,suchow/Wallace,Dallinger/Dalli... |
9b4f1a0dd1eaae18c1a71af34bf644629ce6fc45 | .travis.yml | .travis.yml | before_script: source ./ci/jruby_download_commons_compress.sh
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-18mode
- rvm: rbx-19mode
- rvm: ruby-head
| before_script: source ./ci/jruby_download_commons_compress.sh
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4.0
- jruby-18mode
- jruby-19mode
- rbx-2.2
- ruby-head
matrix:
allow_failures:
- rvm: rbx-2.2
- rvm: ruby-head
| Use a current Rubinius version | Use a current Rubinius version
| YAML | bsd-3-clause | koraktor/rbzip2,koraktor/rbzip2 |
0f2733bc6b1a110aff933e236fb207201fcd1aa7 | .travis.yml | .travis.yml | language: cpp
compiler: clang
install:
- sudo apt-get install libqt4-dev qt4-qmake
- sudo apt-get install freeglut3-dev
script:
- qmake ArtGalleryProblem.pro
- make
| language: cpp
compiler: clang
install:
- sudo apt-get install libqt4-dev qt4-qmake
- sudo apt-get install freeglut3-dev
script:
- qmake -project LIBS+=-lGLU-lglut
- qmake
- make
| Add linker flags for opengl linux | Add linker flags for opengl linux
| YAML | mit | thejnich/ArtGalleryProblem,thejnich/ArtGalleryProblem |
1fe905ac8d72ecec98665a6811a9f9c621f2138d | .travis.yml | .travis.yml | language: ruby
services:
- docker
env:
global:
- DOCKER_REPOSITORY=$DOCKER_USERNAME/tutor
rvm:
- 2.5
before_install:
- gem update --system
- gem --version
- gem install bundler
after_install:
- bundle exec rake db:migrate RAILS_ENV=production
before_deploy: docker login --username $DOCKER_USERNA... | language: ruby
services:
- docker
env:
global:
- DOCKER_REPOSITORY=$DOCKER_USERNAME/tutor
rvm:
- 2.5
before_install:
- gem update --system
- gem --version
- gem install bundler
before_script:
- bundle exec rake db:migrate RAILS_ENV=production
before_deploy: docker login --username $DOCKER_USERNA... | Use proper setting for running migration | Use proper setting for running migration
| YAML | agpl-3.0 | harald-lang/tutor,harald-lang/tutor,harald-lang/tutor,harald-lang/tutor |
05b968ffc85836eca7b020a2f570ad7b09ff8c5e | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
- 0.9
matrix:
allow_failures:
- node_js: 0.9
| language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
matrix:
allow_failures:
- node_js: "0.11"
| Build for node 0.8, 0.10 and 0.11 on Travis | Build for node 0.8, 0.10 and 0.11 on Travis
| YAML | mit | bem/tpl-bem-command,arikon/tpl-cli |
9bd80b1facce9dedf6e6b10803442c7e4019436b | .travis.yml | .travis.yml | language: node_js
services:
- mongodb
node_js:
- "6.1"
- "4.4"
before_script:
- npm install
notifications:
email:
- victorparmar@gmail.com
after_script: istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm... | language: node_js
services:
- mongodb
node_js:
- "8"
- "6"
- "4"
before_script:
- npm install
notifications:
email:
- victorparmar@gmail.com
after_script: istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js &... | Update node major versions for CI | Update node major versions for CI
| YAML | mit | victorparmar/mongoose-field-encryption |
8ae80997170f5421999c3804ac72288dda4a157d | .travis.yml | .travis.yml | language: node_js
node_js:
- node
cache:
directories:
- node_modules
script:
- npm test
- npm run build | language: node_js
node_js:
- lts/*
cache:
directories:
- node_modules
script:
- npm test
- npm run build | Use latest LTS Node.js release | Use latest LTS Node.js release
| YAML | mit | joelgeorgev/file-hash-verifier,joelgeorgev/file-hash-verifier |
378231458570183badb58aac89dd9b684ab7a73e | .travis.yml | .travis.yml |
before_install:
- sudo add-apt-repository -y ppa:codegear/release
- sudo apt-get -qq update
- sudo apt-get install premake4
script:
- premake4 embed
- premake4 gmake
- make -j8
- bin/release/premake5 test
| os:
- linux
script:
- make -f Bootstrap.mak $TRAVIS_OS_NAME
- bin/release/premake5 test
| Change Travis CI to use bootstrap process | Change Travis CI to use bootstrap process
Adds both osx and linux as CI targets.
| YAML | bsd-3-clause | dcourtois/premake-core,bravnsgaard/premake-core,Yhgenomics/premake-core,martin-traverse/premake-core,LORgames/premake-core,felipeprov/premake-core,sleepingwit/premake-core,akaStiX/premake-core,kankaristo/premake-core,TurkeyMan/premake-core,saberhawk/premake-core,premake/premake-core,martin-traverse/premake-core,aleksij... |
77b281a0fd058a9c61c0609412983cdf445d3c75 | .travis.yml | .travis.yml | language: go
before_install:
- go get github.com/golang/lint/golint
before_script:
- go vet .
- golint . | xargs -r false
script:
- go get
- go test -v
- go build
| language: go
before_install:
- go get github.com/golang/lint/golint
before_script:
- go vet .
- golint . | xargs -r false
script:
- go get
- go test -v
- go build
before_deploy:
- go get -u github.com/laher/goxc
- mkdir -p $TRAVIS_BUILD_DIR/dist
- goxc -d=$TRAVIS_BUILD_DIR/dist -bc=linux -tasks=clean-destination,xc,arc... | Add build-and-release binary in TravisCI. | Add build-and-release binary in TravisCI.
| YAML | apache-2.0 | redhat-nfvpe/koko,s1061123/koko,redhat-nfvpe/koko |
02f7a3426f1540fed56dd6f54bda610b04fea265 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --dev
script:
- vendor/bin/phpcs --standard=psr2 ./src
- vendor/bin/phpunit --coverage-text --bootstrap vendor/autoloa... | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
matrix:
fast_finish: true
allow_failures:
- php: hhvm
include:
- php: hhvm
dist: trusty
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --dev
scri... | Use trusty for HHVM build | Use trusty for HHVM build
| YAML | mit | tuupola/slim-basic-auth |
0a37335747c997f93bb03fc69b048136da2faf4b | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.11"
before_script:
- "npm i -g typescript typings"
- "typings install"
script:
- "cd ./src/ && tsc && cd ../"
- "npm run travis"
after_script:
- "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" | language: node_js
node_js:
- "5.11"
before_script:
- "npm i -g typescript"
- "cd ./src/ && typings install && cd ../"
- "typings install"
script:
- "cd ./src/ && tsc && cd ../"
- "npm run travis"
after_script:
- "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" | Install the correct typings this time | Install the correct typings this time
| YAML | mit | ExoZoneDev/BeepBot-Common,ExoZoneDev/BeepBot-Common |
4bca5562ed8b8d4359acab3f7bb177eec9e4a671 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DB=mongodb
- DB=mysql
- DB=redis-server
before_script:
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE IF NOT EXISTS testdb;'; fi"
services:
- mongodb
- redis-server
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6'... | language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
env:
- DB=mongodb
- DB=mysql
- DB=redis-server
before_script:
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE IF NOT EXISTS testdb;'; fi"
services:
- mongodb
- redis-server
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; the... | Remove Python 3.2 from list of versions to test against | Remove Python 3.2 from list of versions to test against
| YAML | mit | CoolCloud/python-oauth2,candango/python-oauth2,mygola/python-oauth2,gcd0318/python-oauth2,mygola/python-oauth2,CoolCloud/python-oauth2,gcd0318/python-oauth2,mygola/python-oauth2,CoolCloud/python-oauth2,gcd0318/python-oauth2,candango/python-oauth2,wndhydrnt/python-oauth2,candango/python-oauth2,wndhydrnt/python-oauth2,wn... |
fa71664e92c3aa04af473d00ccecfe84c39ae2a3 | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| language: node_js
node_js:
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 8 on Travis CI. | Build with Node.js 8 on Travis CI.
| YAML | mit | bigeasy/assessment,bigeasy/assessment |
ff751e413a471d48030a9398440be0dfa96a4130 | .install.conf.yaml | .install.conf.yaml | - defaults:
link:
create: true
relink: true
- clean: ['~', '~/.config']
- link:
~/.agignore:
~/.aria2/aria2.conf:
~/.axelrc:
~/.bash:
~/.bash_profile:
~/.bashrc:
~/.dotfiles: ''
~/.emacs.d:
~/.emacs:
~/.gitconfig:
~/.gitignore_global:
~/.gnupg/gpg.conf:
... | - defaults:
link:
create: true
relink: true
- clean: ['~', '~/.config']
- link:
~/.agignore:
~/.aria2/aria2.conf:
~/.axelrc:
~/.bash:
~/.bash_profile:
~/.bashrc:
~/.dotfiles: ''
~/.emacs.d:
~/.emacs:
~/.gitconfig:
~/.gitignore_global:
~/.gnupg/gpg.conf:
... | Update install script to sync submodule URLs | Update install script to sync submodule URLs
| YAML | mit | anishathalye/dotfiles,anishathalye/dotfiles,anishathalye/dotfiles |
61de2d21a03c8b430e2157cbb01bbb095ab1c821 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
script: "vows --spec test/*-test.js; sudo vows --spec test/*-test-as-root.js"
before_script:
- "./test/hosts.sh"
| language: node_js
node_js:
- 0.8
script: "./node_modules/.bin/vows --spec test/*-test.js; sudo ./node_modules/.bin/vows --spec test/*-test-as-root.js"
before_script:
- "./test/hosts.sh"
| Use explicit path to vows | Use explicit path to vows
| YAML | apache-2.0 | stephensekula/pump.io,pump-io/pump.io,Acidburn0zzz/pump.io,detrout/pump.io,strugee/pump.io,Acidburn0zzz/pump.io,gabrielsr/pump.io,e14n/pump.io,profOnno/pump.io,stephensekula/pump.io,strugee/pump.io,gabrielsr/pump.io,e14n/pump.io,landsurveyorsunited/pump.io,OpenSocial/pump.io,pump-io/pump.io,grdryn/pump.io,detrout/pump.... |
385da909d0bdb85a1e5f5383a4cdcfa5456acd40 | .travis.yml | .travis.yml | sudo: required
language: generic
services:
- docker
env:
- DOCKER_IMAGE_NAME=dstacademy/server
script:
- docker build -t $DOCKER_IMAGE_NAME ./build
- ./test/run.sh
notifications:
slack: dst-academy:$TRAVIS_CI_TOKEN
| sudo: required
language: generic
services:
- docker
env:
global:
secure: Xbp2jfXoAoKZxZTyoUhh3b21QWhst+h4FWsS8/s7hLTR/C6oDBZxyuA3y6udvLb6z8YvPduLhjk6imjQ9vuwnzcazypbpz182XQsN/+t9z0IIij+EuWLULJOgEawG8j9q0/YerBH/Ia1Ctni970M0AZeq8nkuwJzwacqBnhaTFmkbk0m0JveqrWHs+ZfvM2rjQaqQ1QC1Uu1b1H2BiR9ND6L3/iUdytyEX4HoHPlzNqij... | Fix Slack notifications for Travis CI | Fix Slack notifications for Travis CI
| YAML | mit | dst-academy/server,dst-academy/docker-dontstarvetogether,BraisGabin/dst-server |
1b9cbef82a1bef77ae7d455eafb665271d38825c | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
env:
global:
- CORE_BRANCH=master
matrix:
- DB=sqlite
branches:
only:
- master
- /^stable\d+(\.\d+)?$/
before_install:
# - composer install
- wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh
-... | language: php
php:
- 5.6
- 7.0
env:
global:
- CORE_BRANCH=master
matrix:
- DB=sqlite
branches:
only:
- master
- /^stable\d+(\.\d+)?$/
before_install:
# - composer install
- wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh
- bash ./before... | Kill php 5.4 and 5.5 | Kill php 5.4 and 5.5 | YAML | agpl-3.0 | owncloud/search_lucene,owncloud/search_lucene,owncloud/search_lucene,owncloud/search_lucene |
4164d8a7608ab39d3f78b795a211eb5979844350 | .travis.yml | .travis.yml | ---
language: php
php: "7.1"
install: composer install
script:
- >-
vendor/bin/php-cs-fixer fix
--config=.php_cs.dist
--dry-run
--path-mode=intersection
--using-cache=no
--verbose
$(git diff --diff-filter=d --name-only $TRAVIS_COMMIT_RANGE)
- vendor/bin/phpunit
| ---
language: php
php:
- "7.1"
- nightly
install: composer install
script:
- >-
vendor/bin/php-cs-fixer fix
--config=.php_cs.dist
--dry-run
--path-mode=intersection
--using-cache=no
--verbose
$(git diff --diff-filter=d --name-only $TRAVIS_COMMIT_RANGE)
- vendor/bin/phpunit
| Add test against a recent PHP build | Add test against a recent PHP build
| YAML | mit | dmitrivereshchagin/sprout |
908f157ce766ed45b4e980fbc91449cc34a0094c | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.5
before_install:
- gem update --system
install: "bundle install"
branches:
only:
- master
| rvm:
- 1.9.3
- 2.0.0
- 2.1.5
before_install:
- gem update --system
install: "bundle install"
branches:
only:
- master
| Drop support for Ruby 1.9.2 | Drop support for Ruby 1.9.2
| YAML | mit | Teino1978-Corp/Teino1978-Corp-climate_control,thoughtbot/climate_control |
3c510f1be26793a7d4951127351949f401e6ba85 | .travis.yml | .travis.yml | language: node_js
node_js:
#- "6"
- "node"
env:
- JQUERY="jquery-1.7.0"
- JQUERY="jquery-1.12.4"
- JQUERY="jquery-2.0.3"
- JQUERY="jquery-2.2.4"
- JQUERY="jquery-3.0.0"
- JQUERY="jquery-3.1.1"
before_script:
- curl http://code.jquery.com/${JQUERY}.min.js >jquery.min.js
#- export DISPLAY=99.0
#-... | language: node_js
node_js:
#- "6"
- "node"
env:
- JQUERY="jquery-1.7.0"
- JQUERY="jquery-1.12.4"
- JQUERY="jquery-2.0.3"
- JQUERY="jquery-2.2.4"
- JQUERY="jquery-3.0.0"
- JQUERY="jquery-3.1.1"
- JQUERY="jquery-3.3.1"
before_script:
- curl http://code.jquery.com/${JQUERY}.min.js >jquery.min.js
#... | Test the latest version of jQuery (3.3.1) | Test the latest version of jQuery (3.3.1)
| YAML | mit | MessiJS/MessiJS,MessiJS/MessiJS |
efd9778255d7372177743745e19c5ffba49ab798 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.3"
- "3.2" # Mongo mock fails in 3.2
virtualenv:
system_site_packages: false
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-base-dev gfortran
- sudo apt-get build-dep -qq python3-numpy
- sudo ... | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.3"
# - "3.2"
virtualenv:
system_site_packages: false
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-base-dev gfortran
- sudo apt-get build-dep -qq python3-numpy
- sudo apt-get build-dep -qq pyt... | Remove version py3.2 from Travis test | Remove version py3.2 from Travis test
| YAML | bsd-3-clause | tunnell/wax,tunnell/wax,tunnell/wax |
38813816535ebc596fdd04a2e60f7934106f5795 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
env:
- MAGENTO_VERSION=magento-ce-1.9.0.1
- MAGENTO_VERSION=magento-ce-1.8.1.0
- MAGENTO_VERSION=magento-ce-1.8.0.0
- MAGENTO_VERSION=magento-ce-1.7.0.2
script:
- curl -sSL https://gist.githubuserc... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
env:
- MAGENTO_VERSION=magento-mirror-1.9.2.2
- MAGENTO_VERSION=magento-mirror-1.9.0.1
- MAGENTO_VERSION=magento-mirror-1.8.1.0
- MAGENTO_VERSION=magento-mirror-1.8.0.0
- MAGENTO_VERSION=magento-mi... | Update magerun to use magento mirror | Update magerun to use magento mirror | YAML | bsd-3-clause | StudioForty9/Recaptcha,StudioForty9/Recaptcha |
027d9f2d65d9bfec4e38f80606a41f1a87e21cb2 | .travis.yml | .travis.yml | language: go
sudo: required
dist: trusty
go:
- 1.8.x
go_import_path: github.com/kubernetes-incubator/cri-tools
services:
- docker
before_install:
- hack/install-docker.sh
- hack/install-kubelet.sh
install:
- make install.tools
script:
- make
- make lint
- make gofmt
- sudo env PATH=$PATH GOPATH... | language: go
sudo: required
dist: trusty
go:
- 1.8.x
go_import_path: github.com/kubernetes-incubator/cri-tools
services:
- docker
before_install:
- hack/install-docker.sh
- hack/install-kubelet.sh
install:
- make install.tools
jobs:
include:
- stage: Static check
script:
- make
... | Split Travis CI into multiple stages | Split Travis CI into multiple stages | YAML | apache-2.0 | feiskyer/cri-tools,feiskyer/cri-tools,feiskyer/cri-tools |
a99a7d9dfe7aebbbaf952bfad136fe240039c9c5 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | Replace Java 14 with 15. One Java 11 build. | Travis: Replace Java 14 with 15. One Java 11
build.
| YAML | apache-2.0 | apache/commons-text,apache/commons-text |
49f476db2b4de2bd871873a31859eebe15e99c79 | .travis.yml | .travis.yml | language: php
php:
- "5.5"
- "5.4"
- "5.3"
install:
- composer install
branches:
only:
- master
cache:
directories:
- vendor
- node_modules | language: php
php:
- "5.5"
- "5.4"
- "5.3"
install:
- composer install
branches:
only:
- master
cache:
directories:
- vendor
- node_modules
script: phpunit src/rmatil/cms/Tests | Add path for unit tests | Add path for unit tests
| YAML | mit | rmatil/angular-cms,rmatil/angular-cms |
03b52ec62b877c1c1af67528696841643e8763d2 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 0.12
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install && npm inst... | sudo: false
language: node_js
node_js:
- 4
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install && npm install... | Build on Travis CI with Node.js 4. | Build on Travis CI with Node.js 4.
| YAML | mit | bigeasy/edify,bigeasy/edify,bigeasy/edify |
193f4cdccdc336e0f33a33b200172753c4ccccc9 | .travis.yml | .travis.yml | # Travis CI Configuration File
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
# - 7.3
cache:
directories:
- $HOME/.composer/cache
script:
# With PHP 7 => Load Phpstan
- if [[ ${TRAVIS_PHP_VERSION:0:3} < "7.1" ]]; then composer remove phpstan/phpstan-shim --no-update --dev; f... | # Travis CI Configuration File
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
# - 7.3
cache:
directories:
- $HOME/.composer/cache
script:
# With PHP 7 => Load Phpstan
- if [[ ${TRAVIS_PHP_VERSION:0:3} < "7.1" ]]; then composer remove phpstan/phpstan-shim --no-update --dev; f... | Migrate to Splash Php Core V2 | Migrate to Splash Php Core V2 | YAML | mit | SplashSync/Php-Core,SplashSync/Php-Core |
e1ef65347c008c6f58465e5c096d299a84069860 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
cache:
directories:
- node_modules
notifications:
irc:
channels:
- "irc.freenode.net#powertip"
skip_join: true
| language: node_js
sudo: false
node_js:
- "node"
cache:
directories:
- node_modules
notifications:
irc:
channels:
- "irc.freenode.net#powertip"
skip_join: true
| Set sudo: false in Travis CI configuration file | Set sudo: false in Travis CI configuration file
This setting should tell travis that this project can be run in
their container based environment, which should be able to complete
the testing process faster than the sudo enabled environment.
| YAML | mit | stevenbenner/jquery-powertip,jasco/jquery-powertip,jasco/jquery-powertip,stevenbenner/jquery-powertip |
ae4e90d558b643a465b1dc759dbf72734cdca79a | .travis.yml | .travis.yml | language: php
dist: xenial
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
install:
- if [ $TRAVIS_PHP_VERSION = '7.0' ]; then composer require satooshi/php-coveralls '~1.0'; fi
- composer install --prefer-dist
matrix:
allow_failures:
- php: n... | language: php
dist: xenial
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- nightly
install:
- if [ $TRAVIS_PHP_VERSION = '7.0' ]; then composer require satooshi/php-coveralls '~1.0'; fi
- composer install --prefer-dist
matrix:
allow_failur... | Add PHP 7.4 to Travis matrix | Add PHP 7.4 to Travis matrix
| YAML | bsd-3-clause | nikic/PHP-Parser,nikic/PHP-Parser |
d276b7dd3c0dbeb483e359fa54b48a902bb253be | .travis.yml | .travis.yml | ---
dist: trusty
sudo: required
services: docker
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
cache:
apt: true
env:
matrix:
- INSTANCE=centos-7
- INSTANCE=ubuntu-1604
matrix:
fast_finish: true
allow_failures:
- env: INSTANCE=ubuntu-1604
before_install:
- ... | ---
dist: trusty
sudo: required
services: docker
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
cache:
apt: true
env:
global:
- KITCHEN_LOCAL_YAML=.kitchen.dokken.yml
matrix:
- INSTANCE=centos-7
- INSTANCE=ubuntu-1604
matrix:
fast_finish: true
allow_failures... | Make use of global env vars for Kitchen | Make use of global env vars for Kitchen
Also, avoid using an absolute path where unnecessary
| YAML | apache-2.0 | schubergphilis/letsencrypt |
08fd41d394ad36a9846a78a69a35232f72315a78 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk8
install:
- JAVA_HOME=$(jdk_switcher home openjdk8) ./gradlew classes testClasses
after_success:
- ./gradlew jacocoTestReport
- bash <(curl -s https://codecov.io/bash)
| dist: xenial
language: java
jdk:
- openjdk8
before_install:
- sudo apt-get -y install python2.7 python-pip
- python2 -m pip install --user google-apis-client-generator
install:
- JAVA_HOME=$(jdk_switcher home openjdk8) ./gradlew classes testClasses
after_success:
- ./gradlew jacocoTestReport
- bash <(curl -s... | Install dependencies for code generation | Install dependencies for code generation
- add python and the code generator for
the unit test of the API client code
generation
| YAML | apache-2.0 | AODocs/endpoints-java,AODocs/endpoints-java |
65c53edcbfedda379d18948fbb1f63e35b837013 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
cache: bundler
notifications:
email:
on_success: change
on_failure: always
| language: ruby
rvm:
- 2.0
- 2.1
- 2.2
cache: bundler
notifications:
email:
on_success: change
on_failure: always
| Change test matrix to include Ruby 2.0 through 2.2 | Change test matrix to include Ruby 2.0 through 2.2
| YAML | mit | IvyApp/ivy-serializers |
2a169ca8ab2c8e8526b4255d68576303f15dcfc7 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
script: 'bundle exec rake'
notifications:
email:
recipients:
- david.e.santoso@gmail.com
- marius.butuc@gmail.com
on_failure: change
on_success: never
| language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.1
script: 'bundle exec rake'
notifications:
email:
recipients:
- david.e.santoso@gmail.com
- marius.butuc@gmail.com
on_failure: change
on_success: never
| Stop Travis CI from testing 1.9.3 | Stop Travis CI from testing 1.9.3
| YAML | mit | davidsantoso/markety |
a4db703f258d4503193749c934357e932ee8d6a2 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- nightly
matrix:
allow_failures:
- php: nightly
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit --coverage-clover=clover.xml
- tests/lint.sh
after_succ... | language: php
php:
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit --coverage-clover=clover.xml
- tests/lint.sh
af... | Add support for PHP 7.2/7.3 | Add support for PHP 7.2/7.3
| YAML | apache-2.0 | duncan3dc/fork-helper |
a86d7ea199340870b29ae913ffc9cb90814fbdff | .travis.yml | .travis.yml | language: java
script: mvn clean package -P strict
after_success:
- mvn jacoco:report coveralls:report
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
branches:
only:
- master
sudo: false
cache:
directories:
- $HOME/.m2
| language: java
script: mvn clean package -P strict
after_success:
- mvn jacoco:report coveralls:report
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk11
branches:
only:
- master
sudo: false
cache:
directories:
- $HOME/.m2
| Change JDK 10 to 11 | Change JDK 10 to 11
| YAML | apache-2.0 | vbauer/jconditions |
fe7808118012c29dbd0d354054c809e02310eaa6 | .travis.yml | .travis.yml | sudo: false
language: "node_js"
node_js:
- "0.10"
- "0.12"
- "iojs"
before_script:
- npm install standard
- standard
script:
- npm install istanbul
- istanbul cover ./node_modules/.bin/jasmine --report lcovonly
after_script:
- npm install coveralls
- cat ./coverage/lcov.info | coveralls | sudo: false
language: "node_js"
node_js:
- "4.2"
- "5.0"
- "iojs"
before_script:
- npm install standard
- standard
script:
- npm install istanbul
- istanbul cover ./node_modules/.bin/jasmine --report lcovonly
after_script:
- npm install coveralls
- cat ./coverage/lcov.info | coveralls | Test only Node 4 and 5 and iojs | TravisCI: Test only Node 4 and 5 and iojs
| YAML | mit | nknapp/thoughtful-release,nknapp/thoughtful-release,nknapp/thoughtful-release |
b4859b42834e013ad61519965f744d4d94ab63d6 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 8 at Travis CI. | Build with Node.js 8 at Travis CI.
| YAML | mit | bigeasy/restrictor |
248ce4efdc17c8461f728dceacac460a0123cdcf | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install:
- pip install numpy==1.10.4 scipy==0.17.0
- pip install -r requirements.txt
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
before_install:
- pip install numpy==1.10.4 scipy==0.17.0
install:
- pip install -r requirements.txt
script: nosetests
| Change the order of installing libraries. | Change the order of installing libraries.
| YAML | mit | jeenalee/sklearn_pmml |
407835cc2a6fcde5c796087245dd4089ddd057f5 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm instal... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- ... | Test with Node.js 4.2 on Travis CI. | Test with Node.js 4.2 on Travis CI.
| YAML | mit | bigeasy/splice,bigeasy/splice |
a2943fa582fed77762950dc74c92dbe39b730770 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "pypy"
env:
- DJANGO="Django>=1.5,<1.6"
- DJANGO="Django>=1.4,<1.5"
- DJANGO="Django>=1.3,<1.4"
install:
- pip install $DJANGO
script: 'python setup.py test'
matrix:
exclude:
- python: "3.3"
env: DJANGO="Django>=1.4,<1.5"
- python: ... | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "pypy"
env:
- DJANGO="Django>=1.6,<1.7"
- DJANGO="Django>=1.5,<1.6"
- DJANGO="Django>=1.4,<1.5"
- DJANGO="Django>=1.3,<1.4"
install:
- pip install $DJANGO
script: 'python setup.py test'
matrix:
exclude:
- python: "3.3"
env: DJANGO="Dj... | Add support for Django>=1.6 in Travis build. | Add support for Django>=1.6 in Travis build.
| YAML | bsd-2-clause | TyMaszWeb/django-template-finder |
e82ab2cac0fcefcb46a046cdaa2b8166a129f364 | _config.yml | _config.yml | name: TurpIF's Notebook
pygments: true
paginate: 5
paginate_path: "/page:num"
url: http://turpif.github.io
markdown: kramdown
| name: TurpIF's Notebook
highlighter: rouge
paginate: 5
paginate_path: "/page:num"
url: http://turpif.github.io
markdown: kramdown
| Replace deprecated pygments by rouge | Replace deprecated pygments by rouge | YAML | mit | TurpIF/TurpIF.github.io |
b3bdfa5e4134cbc42ab81992b12a23015d6b7538 | www/.eslintrc.yml | www/.eslintrc.yml |
parserOptions:
ecmaVersion: 6
sourceType: module
rules:
# Best Practices
no-else-return: 1
# Strict Mode
strict: [1, never]
# Stylistic Issues
eol-last: [1, never]
#func-style: [2, expression]
indent: [1, 2]
quotes: [1, single, {avoidEscape: true}]
semi: [1, never]
#TODO: re-enable jsdoc r... |
parserOptions:
ecmaVersion: 6
sourceType: module
rules:
# Best Practices
no-else-return: 1
no-trailing-spaces: 1
# Strict Mode
strict: [1, never]
# Stylistic Issues
eol-last: [1, never]
#func-style: [2, expression]
indent: [1, 2]
quotes: [1, single, {avoidEscape: true}]
semi: [1, never]
... | Add no-trailing-spaces to eslint config. | Add no-trailing-spaces to eslint config.
| YAML | mit | wikimedia/apps-ios-wikipedia,julienbodet/wikipedia-ios,montehurd/apps-ios-wikipedia,montehurd/apps-ios-wikipedia,josve05a/wikipedia-ios,wikimedia/wikipedia-ios,julienbodet/wikipedia-ios,josve05a/wikipedia-ios,julienbodet/wikipedia-ios,montehurd/apps-ios-wikipedia,montehurd/apps-ios-wikipedia,montehurd/apps-ios-wikipedi... |
5ff1c08c7ba142684312885b372aac42e99165f0 | essentials.yml | essentials.yml | ---
ath:
useLocalSnapshots: false
athRevision: "d74f39e5ac369106876c20495031cd2499f3aa3a"
tests:
- '*'
| ---
ath:
useLocalSnapshots: false
athRevision: "418902d61f8ed920e18f6cfaa701d37afc92739e"
tests:
- '*'
| Update th ATH used for testing | Update th ATH used for testing
| YAML | mit | v1v/jenkins,kohsuke/hudson,sathiya-mit/jenkins,kohsuke/hudson,v1v/jenkins,MarkEWaite/jenkins,viqueen/jenkins,daniel-beck/jenkins,aldaris/jenkins,Vlatombe/jenkins,DanielWeber/jenkins,kohsuke/hudson,batmat/jenkins,andresrc/jenkins,viqueen/jenkins,sathiya-mit/jenkins,godfath3r/jenkins,patbos/jenkins,rsandell/jenkins,bkmen... |
68320981c1e9c71d6b800a8426f3992fa3888ce4 | roles/aws-disks/tasks/main.yml | roles/aws-disks/tasks/main.yml | - name: Provision storage disks
ec2_vol:
instance: "{{ item.id }}"
volume_type: "{{ ec2_storage_servers_disk_type }}"
volume_size: "{{ storage_servers_disk_size_gb }}"
# delete_on_termination: true # TODO: Added in Ansible 2.1
with_items: "{{ ec2.instances }}" | - name: Provision storage disks
ec2_vol:
instance: "{{ item.id }}"
volume_type: "{{ ec2_storage_servers_disk_type }}"
volume_size: "{{ storage_servers_disk_size_gb }}"
delete_on_termination: true
with_items: "{{ ec2.instances }}"
| Add the delete_on_termination flag to disk creation | Add the delete_on_termination flag to disk creation
| YAML | apache-2.0 | spohnan/gluster-ansible,spohnan/gluster-ansible |
6d53df48a3b78844fa4b5a074ef17149cb775441 | packages/at/attoparsec-uri.yaml | packages/at/attoparsec-uri.yaml | homepage: https://github.com/athanclark/attoparsec-uri#readme
changelog-type: ''
hash: dd8fd50b412bf7e5eafcb4aa3055c0b7b5669936e7d0fd4efb9c73a64ca01dbb
test-bench-deps: {}
maintainer: athan.clark@gmail.com
synopsis: URI parser / printer using attoparsec
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
text: -any
n... | homepage: https://github.com/athanclark/attoparsec-uri#readme
changelog-type: ''
hash: 9538094d918ef1a60e2e404c47cc21409aef2faa05d8a3bb77fe84ea1c7f30ec
test-bench-deps: {}
maintainer: athan.clark@gmail.com
synopsis: URI parser / printer using attoparsec
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
text: -any
s... | Update from Hackage at 2017-09-29T23:36:49Z | Update from Hackage at 2017-09-29T23:36:49Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
afaee83fe56feebf3c85054ed4602f962447c7a8 | remote/remotes.yaml | remote/remotes.yaml | - platform: harmony
name: Living Room TV
activity: 27367873 # Watch TV
scan_interval: 1
| - platform: harmony
name: Living Room TV
activity: 'Watch TV'
scan_interval: 1
| Change harmony remote to use activity name rather than ID | Change harmony remote to use activity name rather than ID
| YAML | unlicense | danrspencer/hass-config,danrspencer/hass-config |
ff8ebd51dfdda96fc74dfde46cfb2bc230e2362e | sync/language.types.yml | sync/language.types.yml | all:
- language_interface
- language_content
- language_url
configurable:
- language_interface
negotiation:
language_content:
enabled:
language-url: -20
method_weights:
language-url: -20
language-content-entity: -19
language-session: -18
language-user: -17
language-... | all:
- language_interface
- language_content
- language_url
configurable:
- language_interface
negotiation:
language_content:
enabled:
language-url: -20
method_weights:
language-url: -20
language-content-entity: -19
language-session: -18
language-user: -17
language-... | Add langage detection based upon browser | Add langage detection based upon browser
| YAML | agpl-3.0 | Futurolan/ga-website,Futurolan/ga-website,Futurolan/ga-website,Futurolan/ga-website |
e26eae8e198698b93952e1dffbbd499c132f3b3a | metadata/fr.smarquis.sleeptimer.yml | metadata/fr.smarquis.sleeptimer.yml | Categories:
- Time
License: Apache-2.0
AuthorName: Simon Marquis
AuthorEmail: contact@simon-marquis.fr
AuthorWebSite: https://simon-marquis.fr/
SourceCode: https://github.com/SimonMarquis/SleepTimer
IssueTracker: https://github.com/SimonMarquis/SleepTimer/issues
Changelog: https://github.com/SimonMarquis/SleepTimer/r... | Categories:
- Time
License: Apache-2.0
AuthorName: Simon Marquis
AuthorEmail: contact@simon-marquis.fr
AuthorWebSite: https://simon-marquis.fr/
SourceCode: https://github.com/SimonMarquis/SleepTimer
IssueTracker: https://github.com/SimonMarquis/SleepTimer/issues
Changelog: https://github.com/SimonMarquis/SleepTimer/r... | Update Sleep Timer to 1.1.0 (11000) | Update Sleep Timer to 1.1.0 (11000)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
77a7314aeff2df95ceaf2f2f7a3999cb06d96c55 | packages/li/list-t-libcurl.yaml | packages/li/list-t-libcurl.yaml | homepage: https://github.com/nikita-volkov/list-t-libcurl
changelog-type: ''
hash: 17ceacbd70abbedf7d9eeeb09f4c2e31e51aa3169cc63994ab55ab727547359d
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: A "libcurl"-based streaming HTTP client
changelog: ''
basic-deps:
either: ==4.*
bytest... | homepage: https://github.com/nikita-volkov/list-t-libcurl
changelog-type: ''
hash: 1a92883b998262715586f9f65f5161044121644edb31f65aadafd18415d3be99
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: A "libcurl"-based streaming HTTP client
changelog: ''
basic-deps:
either: ==4.*
bytest... | Update from Hackage at 2015-05-26T06:20:21+0000 | Update from Hackage at 2015-05-26T06:20:21+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
1bdc1cf18505237d557921b567fb184e218e2364 | serverless.yml | serverless.yml | name: iiro.fi
iiro.fi:
component: ./node_modules/@sls-next/serverless-component
inputs:
build:
env:
NODE_ENV: production
baseDir: ./
useV2Handler: true
nextConfigDir: ./site
bucketName: iiro.fi
bucketRegion: eu-north-1
... | name: iiro.fi
iiro.fi:
component: ./node_modules/@sls-next/serverless-component
inputs:
build:
cmd: npm
args: ['run', 'build']
cwd: ./site
env:
NODE_ENV: production
useV2Handler: true
nextConfigDir: ./site
bucke... | Revert "build: adjust @sls-next/component settings" | Revert "build: adjust @sls-next/component settings"
This reverts commit eee9cf8ce677390422a55a216d46652c677628a0.
| YAML | mit | iiroj/iiro.fi,iiroj/iiro.fi,iiroj/iiro.fi |
b94c0c9c362215895894990648978da33114bcc7 | templates/etc-configmap.yaml | templates/etc-configmap.yaml | apiVersion: v1
kind: ConfigMap
metadata:
name: manila-etc
labels:
system: openstack
type: configuration
component: manila
data:
manila.conf: |
{{ include "manila/templates/etc/_manila.conf.tpl" .| indent 4 }}
| apiVersion: v1
kind: ConfigMap
metadata:
name: manila-etc
labels:
system: openstack
type: configuration
component: manila
data:
manila.conf: |
{{ tuple "etc/_manila.conf.tpl" . | include "template" | indent 4 }}
| Update configmaps to use helper for dependent templates | Update configmaps to use helper for dependent templates
| YAML | apache-2.0 | sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts |
f60e52e3f9011fdf7267f8214884edf27267ab86 | config/mongoid.yml | config/mongoid.yml | development:
host: localhost
database: plan_characters_dev
test:
sessions:
default:
database: myapp_test
host: localhost
port: 27017
production:
uri: <%= ENV['MONGOHQ_URL'] %>
| development:
host: localhost
database: plan_characters_dev
test:
sessions:
default:
database: myapp_test
hosts:
- localhost:27017
production:
uri: <%= ENV['MONGOHQ_URL'] %>
| Configure the default test database *correctly* | Configure the default test database *correctly*
| YAML | mit | indentlabs/notebook,indentlabs/notebook,indentlabs/notebook |
995e3baddf82aac066239f6616f87e6d427d5612 | config/rubocop.yml | config/rubocop.yml | AllCops:
Exclude:
- 'db/schema.rb'
- 'vendor/bundle/**/*'
- 'bin/bundle'
- 'bin/rails'
- 'bin/rake'
# Missing top-level class documentation comment.
Style/Documentation:
Enabled: false
# Use only ascii symbols in comments.
Style/AsciiComments:
Enabled: false
Style/BlockDelimiters:
Enforce... | AllCops:
Exclude:
- 'db/schema.rb'
- 'vendor/bundle/**/*'
- 'bin/bundle'
- 'bin/rails'
- 'bin/rake'
# Missing top-level class documentation comment.
Style/Documentation:
Enabled: false
# Use only ascii symbols in comments.
Style/AsciiComments:
Enabled: false
Style/BlockDelimiters:
Enforce... | Allow braces for multi-line block without chain | Allow braces for multi-line block without chain
| YAML | mit | esminc/deka_eiwakun,esminc/deka_eiwakun |
ea755e704db27189116e6191cfb7b63050df18a0 | snapcraft.yaml | snapcraft.yaml | name: docker
version: 1.11.1-1
summary: Docker Linux container runtime
description: Docker complements kernel namespacing with a high-level API which operates at the process level. It runs unix processes with strong guarantees of isolation and repeatability across servers.
apps:
docker:
command: docker
# TOD... | name: docker
version: 1.11.1-1
summary: Docker Linux container runtime
description: Docker complements kernel namespacing with a high-level API which operates at the process level. It runs unix processes with strong guarantees of isolation and repeatability across servers.
apps:
docker:
command: docker
# TOD... | Use "patch -i" instead of "patch <" for better "set -x" output | Use "patch -i" instead of "patch <" for better "set -x" output
| YAML | mit | docker-snap/docker,infosiftr/snap-docker,docker-snap/docker |
dbb1f23ca554b0a30d07f1d52d35880bd02f2474 | config/sidekiq.yml | config/sidekiq.yml | :verbose: true
# We set concurrency to 1 because parts of the publishing pipeline
# are not threadsafe. Once we've removed instances of `I18n.with_locale`
# from the workers, we can increase this again.
:concurrency: 1
:logfile: ./log/sidekiq.json.log
:queues:
- [bulk_republishing, 1]
- [imports, 2]
- [router, 4]... | :verbose: true
# We set concurrency to 1 because parts of the publishing pipeline
# are not threadsafe. Once we've removed instances of `I18n.with_locale`
# from the workers, we can increase this again.
:concurrency: 1
:logfile: ./log/sidekiq.json.log
:queues:
- scheduled_publishing
- default
- publishing_api
-... | Fix configuration of listening queues for Sidekiq | Fix configuration of listening queues for Sidekiq
This is currently configured using weighted queues. In newer versions
of Sidekiq, queues can have absolute priorities. So from this change,
scheduled publishing would always be processed first, followed by the
`default` queue (currently things like link reports, govspe... | YAML | mit | alphagov/whitehall,alphagov/whitehall,alphagov/whitehall,alphagov/whitehall |
96071d521fa73967370391d60c4a19808bd0fa50 | playbooks/base.yml | playbooks/base.yml | ---
- hosts: all
remote_user: root
roles:
- { role: FGtatsuro.python-requirements }
- { role: FGtatsuro.ruby }
tasks:
- block:
- name: Install Bash
apk: name=bash update_cache=yes
become: yes
# TODO: This is hacky way
# root:x:0:0:root:/root:/bin/ash
- name: Mak... | ---
- hosts: all
remote_user: root
roles:
- role: FGtatsuro.python-requirements
tags:
- always
- role: FGtatsuro.ruby
tags:
- withruby
tasks:
- block:
- name: Install Bash
apk: name=bash update_cache=yes
become: yes
# TODO: This is hacky way
... | Add tag to build image including ruby. | Add tag to build image including ruby.
| YAML | mit | FGtatsuro/infra-bridgehead,FGtatsuro/infra-bridgehead |
a97eab815072da4e2cbf4bcdd303892f338128a8 | artifacts/example/deployment.yaml | artifacts/example/deployment.yaml | apiVersion: apps/v1
kind: Deployment
metadata:
name: wardle-server
namespace: wardle
labels:
apiserver: "true"
spec:
replicas: 1
selector:
matchLabels:
apiserver: "true"
template:
metadata:
labels:
apiserver: "true"
spec:
serviceAccountName: apiserver
containe... | apiVersion: apps/v1
kind: Deployment
metadata:
name: wardle-server
namespace: wardle
labels:
apiserver: "true"
spec:
replicas: 1
selector:
matchLabels:
apiserver: "true"
template:
metadata:
labels:
apiserver: "true"
spec:
serviceAccountName: apiserver
containe... | Update default etcd server to 3.4.7 | Update default etcd server to 3.4.7
Kubernetes-commit: 394df132bd41b3deb0dbeccfdd4a9df9e0c6729c
| YAML | apache-2.0 | kubernetes-nightly/sample-apiserver,kubernetes/sample-apiserver,kubernetes-nightly/sample-apiserver,kubernetes/sample-apiserver |
27b98a7210d8f9b103c3cdbd392163cf81911a87 | playbooks/edx-east/deployer.yml | playbooks/edx-east/deployer.yml | # ansible-playbook -c ssh -vvvv --user=ubuntu -i ec2.py deployer.yml -e "@gh_users.yml" -e "@/path/to/secure/ansible/vars/hotg.yml" -e "@/path/to/configuration-secure/ansible/vars/common/common.yml" --limit="tag_aws_cloudformation_stack-name_<admin_stack_name>"
# You will need to create a gh_users.yml that contains the... | # ansible-playbook -c ssh -vvvv --user=ubuntu -i ec2.py deployer.yml -e "@gh_users.yml" -e "@/path/to/secure/ansible/vars/hotg.yml" -e "@/path/to/configuration-secure/ansible/vars/common/common.yml" --limit="tag_aws_cloudformation_stack-name_<admin_stack_name>"
# You will need to create a gh_users.yml that contains the... | Use play instead of role. | Use play instead of role.
| YAML | agpl-3.0 | zhengjunwei/configuration,Carlos2005/configuration,hmcmooc/ec2-edx-configuration,hastexo/edx-configuration-old,stvstnfrd/configuration,antoviaque/configuration,edx/configuration,hastexo/edx-configuration,B-MOOC/configuration,marcore/configuration,antoviaque/configuration,louyihua/configuration,IONISx/edx-configuration,... |
36bb9d11677bcb54eee9ea784208e6c2e5c4534d | cloudbuild.yaml | cloudbuild.yaml | substitutions:
_REGION: us-central1
steps:
- name: 'gcr.io/k8s-skaffold/skaffold'
entrypoint: 'sh'
args:
- -xe
- -c
- |
# Build and push images
skaffold build --file-output=/workspace/artifacts.json \
--default-repo gcr.io/$PROJECT_ID \
--push=true
# Test i... | substitutions:
_REGION: us-central1
steps:
- name: 'gcr.io/k8s-skaffold/skaffold'
entrypoint: 'sh'
args:
- -xe
- -c
- |
# Build and push images
skaffold build --file-output=/workspace/artifacts.json \
--default-repo gcr.io/$PROJECT_ID \
--push=true
# Test i... | Use skaffold image for creating releases | Use skaffold image for creating releases
| YAML | apache-2.0 | google/golden-path-for-app-delivery,google/golden-path-for-app-delivery,google/golden-path-for-app-delivery |
f487da881a2b47b0d7a2c0a4c86e1c6bd1204eb1 | conda-forge.yml | conda-forge.yml | build_platform:
osx_arm64: osx_64
conda_forge_output_validation: true
provider:
linux: azure
linux_aarch64: azure
linux_ppc64le: azure
osx: azure
win: azure
test_on_native_only: true
| bot:
abi_migration_branches: [v3.3.x]
build_platform:
osx_arm64: osx_64
conda_forge_output_validation: true
provider:
linux: azure
linux_aarch64: azure
linux_ppc64le: azure
osx: azure
win: azure
test_on_native_only: true
| Add v3.3.x branch to abi_migration_branches | [skip ci] Add v3.3.x branch to abi_migration_branches
This way we won't have to manually update that branch.
| YAML | bsd-3-clause | conda-forge/gdal-feedstock,conda-forge/gdal-feedstock |
e3bdbec7c3e561ed72287477744394b5c9763658 | .pre-commit-config.yaml | .pre-commit-config.yaml | repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.7.2
hooks:
- id: pyupgrade
args: ["--py36-plus"]
- repo: https://github.com/python/black
rev: 20.8b1
hooks:
- id: black
language_version: python3
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
hooks:
- id: flake8
additional_d... | repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.7.2
hooks:
- id: pyupgrade
args: [--py36-plus]
- repo: https://github.com/python/black
rev: 20.8b1
hooks:
- id: black
language_version: python3
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
hooks:
- id: flake8
additional_dep... | Remove quotes in precommit config | Remove quotes in precommit config
Committed via https://github.com/asottile/all-repos
| YAML | mit | marshmallow-code/flask-marshmallow |
083a1e8acc5de0656b5a7716a0a80670b9ef9d92 | .pre-commit-config.yaml | .pre-commit-config.yaml | - repo: git@git.yelpcorp.com:mirrors/pre-commit/pre-commit-hooks
sha: 29bf11d13689a0a9a895c41eb3591c7e942d377d
hooks:
- id: check-added-large-files
language_version: python2.7
- id: check-merge-conflict
language_version: python2.7
- id: trailing-whitespace
language_ve... | - repo: https://github.com/pre-commit/pre-commit-hooks.git
sha: 29bf11d13689a0a9a895c41eb3591c7e942d377d
hooks:
- id: check-added-large-files
language_version: python2.7
- id: check-merge-conflict
language_version: python2.7
- id: trailing-whitespace
language_version:... | Use HTTPS for cloning pre-commit. | Use HTTPS for cloning pre-commit.
| YAML | apache-2.0 | Yelp/kafka-utils,Yelp/kafka-utils,anthonysandrin/kafka-utils,anthonysandrin/kafka-utils |
dfe9cda931dfdde804b2371d9b9e4241520f2eb3 | .pre-commit-config.yaml | .pre-commit-config.yaml | repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v2.1.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
exclude: .bumpversion.cfg
- id: check-merge-conflict
- id: check-added-large-files
- id: check-yaml
- id: check-json
- id: pretty-format-json
args:... | repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v2.1.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
exclude: .bumpversion.cfg
- id: check-merge-conflict
#- id: check-added-large-files
- id: check-yaml
- id: check-json
- id: pretty-format-json
args... | Disable pre-commit check for large files, failing in CI | Disable pre-commit check for large files, failing in CI
| YAML | apache-2.0 | LREN-CHUV/workflow,LREN-CHUV/workflow,HBPSP8Repo/workflow,HBPSP8Repo/workflow |
36244cb82dc9faf06482eeee792d437dac4c843a | config/project_categories.yml | config/project_categories.yml | ---
- vmdb
- migrations
- lib
- replication
- vmdb_metrics
- automation
| ---
- vmdb
- migrations
- lib
- replication
- vmdb_metrics
- automation
- brakeman
| Add brakeman to the UI | [cc_monitor] Add brakeman to the UI
| YAML | apache-2.0 | ManageIQ/cc_monitor,ManageIQ/cc_monitor |
d43290bb128ef85883757c4627bb9fa62d0aa7b4 | test/integration/ruby_uninstall/inspec.yml | test/integration/ruby_uninstall/inspec.yml | name: rbenv
title: rbenv profile
maintainer: Sous Chefs
copyright: Webb Agile Solutions Ltd.
license: Apache-2.0
summary: Verifies rbenv is installed correctly
version: 1.0.0
supports:
- os-family: linux
| name: rbenv
title: rbenv profile
maintainer: Sous Chefs
license: Apache-2.0
summary: Verifies that Rubies can be uninstalled
version: 1.0.0
supports:
- os-family: linux
| Remove copyright, provide better summary | Remove copyright, provide better summary
| YAML | apache-2.0 | sous-chefs/ruby_rbenv,sous-chefs/ruby_rbenv,chef-rbenv/ruby_rbenv,chef-rbenv/ruby_rbenv,chef-rbenv/ruby_rbenv |
47944bd12ebef90bb6e55726e906c842f8da26a3 | tests/kernel/lifo/lifo_usage/testcase.yaml | tests/kernel/lifo/lifo_usage/testcase.yaml | tests:
kernel.lifo.usage:
tags: kernel
# FIXME: Keeps failing sporadically in CI. See #26163
platform_exclude: qemu_arc_em qemu_arc_hs
| tests:
kernel.lifo.usage:
tags: kernel
# FIXME: Keeps failing sporadically in CI. See #26163
platform_exclude: qemu_arc_hs
| Revert "tests: kernel: lifo_usage: Exclude on qemu_arc_em" | Revert "tests: kernel: lifo_usage: Exclude on qemu_arc_em"
This reverts commit 27d42f060da1afe129ae2b66e15a09dc54e904cf.
With icount finally working in QEMU for ARC these tests start to
pass reliably, so no need to exclude them any longer.
Signed-off-by: Alexey Brodkin <1fa739873496c8c0c1b521f2061ee5fa4a0306e8@synop... | YAML | apache-2.0 | Vudentz/zephyr,nashif/zephyr,galak/zephyr,galak/zephyr,zephyrproject-rtos/zephyr,nashif/zephyr,zephyrproject-rtos/zephyr,zephyrproject-rtos/zephyr,Vudentz/zephyr,nashif/zephyr,galak/zephyr,finikorg/zephyr,finikorg/zephyr,Vudentz/zephyr,Vudentz/zephyr,nashif/zephyr,zephyrproject-rtos/zephyr,finikorg/zephyr,finikorg/zeph... |
25ddb4f59eff81622e8ff9a8b0aca4008860fa43 | modules/openstack_project/files/jenkins_job_builder/config/murano.yaml | modules/openstack_project/files/jenkins_job_builder/config/murano.yaml | - job:
name: gate-murano-devstack-dsvm
node: devstack-precise
wrappers:
- timeout:
timeout: 65
fail: true
- timestamps
builders:
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TI... | - job:
name: gate-murano-devstack-dsvm
node: devstack-precise
wrappers:
- timeout:
timeout: 65
fail: true
- timestamps
builders:
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TI... | Enable Tempest for Murano dvsm job | Enable Tempest for Murano dvsm job
Change-Id: Ibeb117b91ff0e3ed7cf447f34e772be5e7b37e70
| YAML | apache-2.0 | dongwenjuan/project-config,noorul/os-project-config,coolsvap/project-config,Tesora/tesora-project-config,citrix-openstack/project-config,noorul/os-project-config,openstack-infra/project-config,osrg/project-config,openstack-infra/project-config,Tesora/tesora-project-config,osrg/project-config,open-switch/infra_project-c... |
da5f001e9eca6c9355d681ffcb0033bfa7d006f5 | ansible/roles/rabbitmq/tasks/main.yml | ansible/roles/rabbitmq/tasks/main.yml | ---
- name: Install RabbitMQ
apt:
name: rabbitmq-server
become: true
- name: Get existing rabbitmq_vhosts
shell:
rabbitmqctl list_vhosts | grep "{{ rabbitmq_vhost }}" | wc -l
changed_when: false
register: rabbitmq_vhosts
become: true
- name: Create isic-archive rabbitmq_vhost
command:
rabb... | ---
- name: Install RabbitMQ
apt:
name: rabbitmq-server
become: true
- name: Create RabbitMQ virtual host
rabbitmq_vhost:
name: "{{ rabbitmq_vhost }}"
become: true
- name: Create RabbitMQ user
rabbitmq_user:
user: "{{ rabbitmq_username }}"
password: "{{ rabbitmq_password }}"
update_pass... | Use Ansible modules for RabbitMQ | Use Ansible modules for RabbitMQ
| YAML | apache-2.0 | ImageMarkup/isic-archive,ImageMarkup/isic-archive,ImageMarkup/isic-archive,ImageMarkup/isic-archive |
7a9152bf0d03b7d4020d58ecd5d23d82240b44e3 | packages/la/language-qux.yaml | packages/la/language-qux.yaml | homepage: https://github.com/qux-lang/language-qux
changelog-type: ''
hash: 1f91a83b15c56328d267955ca8e36ff5e383c07c2efb7d8c352667a293da2132
test-bench-deps: {}
maintainer: public@hjwylde.com
synopsis: Utilities for working with the Qux language
changelog: ''
basic-deps:
either: ==4.*
indents: ! '>=0.3.3 && <0.4'
... | homepage: https://github.com/qux-lang/language-qux
changelog-type: ''
hash: c777b2c1272ff76361955eaa9af082106276aee547b9067fcc586f574b4d1c6d
test-bench-deps: {}
maintainer: public@hjwylde.com
synopsis: Utilities for working with the Qux language
changelog: ''
basic-deps:
either: ==4.*
indents: ! '>=0.3.3 && <0.4'
... | Update from Hackage at 2015-10-10T06:37:15+0000 | Update from Hackage at 2015-10-10T06:37:15+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
0abf25ce28ff9ea8509eaf0be3c8619ce64b2c98 | packages/ma/mapquest-api.yaml | packages/ma/mapquest-api.yaml | homepage: https://github.com/ocramz/mapquest-api
changelog-type: ''
hash: 590fb85a380fc27d662cd2d139fb5ce3cb4273afbc9257147184c2bdfb47ef69
test-bench-deps: {}
maintainer: zocca.marco gmail
synopsis: Bindings to the MapQuest API
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
goggles: ! '>=0.3'
base:... | homepage: https://github.com/ocramz/mapquest-api
changelog-type: ''
hash: 590fb85a380fc27d662cd2d139fb5ce3cb4273afbc9257147184c2bdfb47ef69
test-bench-deps: {}
maintainer: zocca.marco gmail
synopsis: Bindings to the MapQuest API
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
goggles: ! '>=0.3'
base:... | Update from Hackage at 2018-02-17T11:16:23Z | Update from Hackage at 2018-02-17T11:16:23Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
47d7a84fc98986876087bcca2d111982edd81825 | _data/main_nav.yml | _data/main_nav.yml | links:
- title: Vision
url: /vision
- title: Community
url: /community
- title: FAQ
url: /faq
- title: Blog
url: /blog
- title: Documentation
url: https://docs.bisq.network/
target: _blank
- title: Markets
url: /markets
| links:
- title: Vision
url: /vision/
- title: Community
url: /community/
- title: FAQ
url: /faq/
- title: Blog
url: /blog/
- title: Documentation
url: https://docs.bisq.network/
target: _blank
- title: Markets
url: /markets/
| Add trailing slashes to url so we can detect active page | Add trailing slashes to url so we can detect active page
| YAML | agpl-3.0 | bitsquare/site,bitsquare/site,bitsquare/site |
dfaa43820aa2ec0f538d845fa29976f396829475 | _data/partners.yml | _data/partners.yml | -
group: ""
elements:
- { name: "iMasters", description: "", link: "https://www.imasters.com.br", imageUrl: "imasters.png" }
- { name: "Umbler", description: "", link: "https://www.umbler.com", imageUrl: "umbler.png" }
- { name: "Casa do Código", description: "", link: "https://www.casadocodigo.com.br... | -
group: "Apoio"
elements:
- { name: "iMasters", description: "", link: "https://www.imasters.com.br", imageUrl: "imasters.png" }
- { name: "Umbler", description: "", link: "https://www.umbler.com", imageUrl: "umbler.png" }
- { name: "Casa do Código", description: "", link: "https://www.casadocodigo.c... | Add o nome apoiadores do site | Add o nome apoiadores do site
| YAML | mit | PHPeste/salvador-2016-website,PHPeste/salvador-2016-website,PHPeste/salvador-2016-website,PHPeste/salvador-2016-website |
645e68ceb451226177fb4b1f1b03083b6d66c045 | .forestry/front_matter/templates/review.yml | .forestry/front_matter/templates/review.yml | ---
label: review
hide_body: false
is_partial: false
fields:
- type: text
name: title
label: Title
- type: include
name: date
label: date
template: partial-date
- name: attribution
label: Attribution
type: text
hidden: false
default: ''
- type: select
name: book
config:
source:
type: pag... | ---
label: review
hide_body: false
is_partial: false
fields:
- type: text
name: title
label: Title
default: on Before You Sleep
- type: datetime
name: date
label: Date
default: 1999-10-04 00:00:00 -0400
- name: attribution
label: Attribution
type: text
hidden: false
default: ''
- type: select
name... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | sonnetmedia/linnullmann,sonnetmedia/linnullmann,sonnetmedia/linnullmann |
77d619d13797def247f80543966ef633c7534f3b | .github/ISSUE_TEMPLATE/1_new_bug_report.yml | .github/ISSUE_TEMPLATE/1_new_bug_report.yml | name: Bug Report
description: "Issue with the Python extension, not supporting/sibling extensions (you may also use the `Python: Report Issue` command)"
labels: ["bug", "classify"]
body:
body:
- type: input
attributes:
label: VS Code version
description: "Can be found via the `Help: About` com... | name: Bug Report
description: "Issue with the Python extension, not supporting/sibling extensions (you may also use the `Python: Report Issue` command)"
labels: ["bug", "classify"]
body:
body:
- type: input
attributes:
label: VS Code version
description: "Can be found via the `Help: About` com... | Add another field to the bug report template | Add another field to the bug report template | YAML | mit | DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode,DonJayamanne/pythonVSCode |
d86e33e3a32f86416fcdd213ff53ba19b43a5026 | tasks/main.yml | tasks/main.yml | ---
# tasks file for installation of node.js on centos
- include: yum_owncloud.yml
- include: modify_php_config.yml
- include: add_database.yml
when: owncloud_db_add_on_mysql_enable
tags:
- database
- name: Check SELinux is installed (if not, occurring error is to be ignored)
shell: which getenforce
regis... | ---
# tasks file for installation of node.js on centos
- include: yum_owncloud.yml
- include: modify_php_config.yml
- include: add_database.yml
when: owncloud_db_add_on_mysql_enable
tags:
- database
- name: Check SELinux is installed (if not, occurring error is to be ignored)
shell: which getenforce
regis... | Add always run tu get getenforce binary | Add always run tu get getenforce binary
| YAML | mit | Ken24/ansible-role-owncloud,Ken24/ansible-role-owncloud |
1e301e96f369af6025fa3bc62f1f861efb807d4d | metadata/com.aurora.store.yml | metadata/com.aurora.store.yml | AntiFeatures:
- NonFreeNet
Categories:
- System
License: GPL-3.0-or-later
AuthorName: Rahul Kumar Patel
AuthorEmail: whyorean@gmail.com
WebSite: http://auroraoss.com
SourceCode: https://gitlab.com/AuroraOSS/AuroraStore
IssueTracker: https://gitlab.com/AuroraOSS/AuroraStore/issues
Translation: https://poeditor.com/j... | AntiFeatures:
- NonFreeNet
Categories:
- System
License: GPL-3.0-or-later
AuthorName: Rahul Kumar Patel
AuthorEmail: whyorean@gmail.com
WebSite: http://auroraoss.com
SourceCode: https://gitlab.com/AuroraOSS/AuroraStore
IssueTracker: https://gitlab.com/AuroraOSS/AuroraStore/issues
Translation: https://poeditor.com/j... | Update Aurora Store to 3.0.4 (4) | Update Aurora Store to 3.0.4 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
85b59f34f65adac49a7453199bf3689e6bd9e1cf | yaml/accounting-server-rc.yaml | yaml/accounting-server-rc.yaml | apiVersion: v1
kind: ReplicationController
metadata:
name: accounting-server-rc
spec:
replicas: 1
selector:
name: accounting-server-rc
template:
metadata:
labels:
name: accounting-server-rc
spec:
containers:
- name: accounting
image: gregcorbett/rest:deploy
... | apiVersion: v1
kind: ReplicationController
metadata:
name: accounting-server-rc
spec:
replicas: 1
selector:
name: accounting-server-rc
template:
metadata:
labels:
name: accounting-server-rc
spec:
containers:
- name: accounting
image: indigodatacloud/accounting:1.0.0... | Update yaml file to use 1.0.0-1 | Update yaml file to use 1.0.0-1
- in the indigo repo
| YAML | apache-2.0 | apel/rest,apel/rest |
8e9c4794ce9f8c017519785ee9851fb97ca363b4 | playbooks/run-lint-tests.yaml | playbooks/run-lint-tests.yaml | - hosts: all
tasks:
- shell:
cmd: |
if [ -f Modulefile -o -f metadata.json ]; then
if [ -f Modulefile ]; then
MODULE=$(awk '/^name/ {print $NF}' Modulefile |tr -d \"\')
elif [ -f metadata.json ]; then
MODULE=$(python -c 'import json;print json.... | - hosts: all
tasks:
- shell:
cmd: |
if [ -f Modulefile -o -f metadata.json ]; then
if [ -f Modulefile ]; then
MODULE=$(awk '/^name/ {print $NF}' Modulefile |tr -d \"\')
elif [ -f metadata.json ]; then
MODULE=$(python -c 'import json;print json.... | Add 3 retries when the installation fails for lint test | Add 3 retries when the installation fails for lint test
Change-Id: I9ae31a3934d10eb37509f9889381377cef94df0a
| YAML | apache-2.0 | openstack/puppet-openstack-integration,openstack/puppet-openstack-integration,openstack/puppet-openstack-integration |
bd00b1b97a4ef18ac9e97779df36e6362b1bff3b | .github/workflows/rich-navigation.yml | .github/workflows/rich-navigation.yml | name: "Rich Navigation Indexing"
on:
pull_request:
push:
branches:
- main
jobs:
richnav:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: caching-stage
name: Cache VS Code dependencies
with:
path: node_modules... | name: "Rich Navigation Indexing"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
richnav:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: caching-stage
name: Cache VS Code dependencies
with:
... | Support manual trigger for rich nav indexing | Support manual trigger for rich nav indexing
| YAML | mit | microsoft/vscode,eamodio/vscode,Microsoft/vscode,Microsoft/vscode,microsoft/vscode,eamodio/vscode,microsoft/vscode,eamodio/vscode,eamodio/vscode,eamodio/vscode,Microsoft/vscode,Microsoft/vscode,microsoft/vscode,eamodio/vscode,eamodio/vscode,Microsoft/vscode,Microsoft/vscode,microsoft/vscode,microsoft/vscode,microsoft/v... |
7cff92c4d66ccccfc3ba1ea5457d1978c6209559 | metadata/info.varden.hauk.yml | metadata/info.varden.hauk.yml | Categories:
- Navigation
License: Apache-2.0
AuthorName: Marius Lindvall
AuthorEmail: marius@varden.info
AuthorWebSite: https://varden.info/
SourceCode: https://github.com/bilde2910/Hauk
IssueTracker: https://github.com/bilde2910/Hauk/issues
AutoName: Hauk
RepoType: git
Repo: https://github.com/bilde2910/Hauk.git
... | Categories:
- Navigation
License: Apache-2.0
AuthorName: Marius Lindvall
AuthorEmail: marius@varden.info
AuthorWebSite: https://varden.info/
SourceCode: https://github.com/bilde2910/Hauk
IssueTracker: https://github.com/bilde2910/Hauk/issues
AutoName: Hauk
RepoType: git
Repo: https://github.com/bilde2910/Hauk.git
... | Update Hauk to 1.1 (3) | Update Hauk to 1.1 (3)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
bbcee7ba63193bbd95d091e6835a1acf271caca8 | .github/workflows/coverage.yaml | .github/workflows/coverage.yaml | name: Coverage
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Get codeclimate reporter
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 -o ./cc-test-reporter
... | name: Coverage
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Get codeclimate reporter
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 -o ./cc-test-reporter
... | Install package in develop mode | Install package in develop mode
| YAML | mit | var-sec/python-camellia,var-sec/python-camellia |
b3665f4073840cfd2649bfb2192cfe61b923cf9b | .github/workflows/unittests.yml | .github/workflows/unittests.yml | name: Unit tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set ... | name: Unit tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set ... | Install ffmpeg to run whisper in unit tests | Install ffmpeg to run whisper in unit tests | YAML | bsd-3-clause | Uberi/speech_recognition,Uberi/speech_recognition |
f6324d452a5bcaa2706bbea5082175c7b5884bd0 | install.conf.yaml | install.conf.yaml | - defaults:
link:
create: true
relink: true
- clean: ['~']
- link:
~/.dotfiles: ''
~/.vimrc: vimrc
~/.vimrc.bundles: vim/bundle.vim
~/.vimrc.map: vim/map.vim
~/.zshrc: zshrc
~/.zsh: zsh
~/.gitconfig: gitconfig
~/.oh-my-zsh: oh-my-zsh
~/.oh-my-zsh/custom/themes/power... | - defaults:
link:
create: true
relink: true
- clean: ['~']
- link:
~/.dotfiles: ''
~/.vimrc: vimrc
~/.vimrc.bundles: vim/bundle.vim
~/.vimrc.map: vim/map.vim
~/.zshrc: zshrc
~/.zsh: zsh
~/.gitconfig: gitconfig
~/.oh-my-zsh: oh-my-zsh
- shell:
- [git submodule update ... | Remove powerlevel theme from install | Remove powerlevel theme from install
| YAML | mit | captain-proton/dotfiles,captain-proton/dotfiles |
6069b6b9dfdd966df72f5356d403f231e30a8395 | nodes.yaml | nodes.yaml | defaults:
box: 'norcams/base'
autostart: false
primary: false
location: 'vagrant'
domain: 'himlar.local'
cpus: 2
memory: 2048
networks:
- mgmt
#
# Nodes configuration examples:
#
# -name 'compute'
#
# Configured FQDN: vagrant-compute-box.vagrant.local
#
# -name 'c1'
# role: compute... | defaults:
box: 'norcams/base'
autostart: false
primary: false
location: 'vagrant'
domain: 'himlar.local'
cpus: 2
memory: 2048
networks:
- mgmt
#
# Nodes configuration examples:
#
# -name 'compute'
#
# Configured FQDN: vagrant-compute-box.vagrant.local
#
# -name 'c1'
# role: compute... | Add transport network to Vagrant | Add transport network to Vagrant
| YAML | apache-2.0 | mikaeld66/himlar,eckhart/himlar,mikaeld66/himlar,norcams/himlar,raykrist/himlar,norcams/himlar,TorLdre/himlar,raykrist/himlar,raykrist/himlar,TorLdre/himlar,erlendbm/himlar,erlendbm/himlar,TorLdre/himlar,mikaeld66/himlar,TorLdre/himlar,tanzr/himlar,norcams/himlar,eckhart/himlar,tanzr/himlar,TorLdre/himlar,mikaeld66/him... |
a763ebf91fefd72fed2a49930d4165f908fc3dcf | properties.yml | properties.yml | default:
android:
# Path to the android sdk
androidsdkpath : "../android_sdk/"
# Target id. To get a list of all targets do "./android list targets".
# We want whatever matches android 4.0 (IceCreamSandwich API level 14)
#
# Note: Android WebDriver will not work on Gingerbread (SDK 2.3... | default:
android:
# Path to the android sdk
androidsdkpath : "../android_sdk/"
# Target id. To get a list of all targets do "./android list targets".
# We want whatever matches android 4.0 (IceCreamSandwich API level 14)
#
# Note: Android WebDriver will not work on Gingerbread (SDK 2.3... | Use name, rather than positional ID, for android target. If this causes problems for anyone, we can just set an environmental override | DanielWagnerHall: Use name, rather than positional ID, for android target. If this causes problems for anyone, we can just set an environmental override
git-svn-id: aa1aa1384423cb28c2b1e29129bb3a91de1d9196@14458 07704840-8298-11de-bf8c-fd130f914ac9
| YAML | apache-2.0 | yumingjuan/selenium,jmt4/Selenium2,jmt4/Selenium2,yumingjuan/selenium,jmt4/Selenium2,yumingjuan/selenium,yumingjuan/selenium,yumingjuan/selenium,jmt4/Selenium2,yumingjuan/selenium,jmt4/Selenium2,jmt4/Selenium2,yumingjuan/selenium,jmt4/Selenium2,yumingjuan/selenium,jmt4/Selenium2,yumingjuan/selenium,jmt4/Selenium2 |
9fc5157cc7172eea6cd875692a44e13cab1b8226 | ansible/roles/horizon/tasks/start.yml | ansible/roles/horizon/tasks/start.yml | ---
- name: Starting horizon container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ horizon_image_full }}"
name: "horizon"
environment:
ENABLE_CLOUDKITTY: "{{ 'yes' if enable_cloudkitty | bool else 'no' }}"
ENABLE_IRONIC: "{{ 'yes' if... | ---
- name: Starting horizon container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ horizon_image_full }}"
name: "horizon"
environment:
ENABLE_CLOUDKITTY: "{{ 'yes' if enable_cloudkitty | bool else 'no' }}"
ENABLE_IRONIC: "{{ 'yes' if... | Enable zaqar ui when zaqar enabled | Enable zaqar ui when zaqar enabled
Depends-On:I430340b38ff7642f46d76ec621ae65dcae8157c3
Change-Id: If669601691d1505049ba4196bd3c5856091ed921
Closes-Bug: #1647164
| YAML | apache-2.0 | dardelean/kolla-ansible,dardelean/kolla-ansible,dardelean/kolla-ansible |
c0e231cddf9c3f3113b29844cfbe0d52ca90ce54 | .zuul.yaml | .zuul.yaml | - job:
name: ironic-ui-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/ironic
- name: openstack/python-ironicclient
- name: openstack/ironic-ui
roles:
- zuul: openstack-infra/devstack
- zuul: openstack... | - job:
name: ironic-ui-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/ironic
- name: openstack/python-ironicclient
- name: openstack/ironic-ui
roles:
- zuul: openstack-infra/devstack
- zuul: openstack... | Add Python3 victoria unit tests | Add Python3 victoria unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for victoria.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I2ff6056c2c25112ec3324a6f921c9... | YAML | apache-2.0 | openstack/ironic-ui,openstack/ironic-ui,openstack/ironic-ui,openstack/ironic-ui |
caeeb51c70c7417811f69b916c38d2f41cc2f384 | .zuul.yaml | .zuul.yaml | - job:
name: ceilometermiddleware-integration
parent: telemetry-dsvm-integration
required-projects:
- openstack/ceilometermiddleware
- project:
templates:
- openstack-python3-victoria-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
-... | - job:
name: ceilometermiddleware-integration
parent: telemetry-dsvm-integration
required-projects:
- openstack/ceilometermiddleware
- project:
templates:
- openstack-python3-wallaby-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- ... | Add Python3 wallaby unit tests | Add Python3 wallaby unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for wallaby.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: Ia85123faaf1aadcd8cd1e3f0e816dc3... | YAML | apache-2.0 | openstack/ceilometermiddleware |
0849569507975870368a75b53fabbf7ecd470481 | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- openstack-python3-zed-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- openstack-python3-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
| Switch to 2023.1 Python3 unit tests and generic template name | Switch to 2023.1 Python3 unit tests and generic template name
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for antelope. Also,
updating the template name to generic one.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/refe... | YAML | apache-2.0 | openstack/python-tackerclient,openstack/python-tackerclient |
35b5b295d113999c07cc9f651815565496018837 | .github/workflows/CI.yml | .github/workflows/CI.yml | # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
# A workflow run is made up of one or more jobs ... | # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
defaults:
run:
working-directory: Bin
# A... | Use specified working dir for action | Use specified working dir for action
| YAML | mit | JamesBoer/Jinx,JamesBoer/Jinx,JamesBoer/Jinx,JamesBoer/Jinx |
0ee651ad64293633ff3b55d2b33a097e91a9ce6e | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9']
name: CI build on Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
... | name: CI build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
name: CI build on Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
w... | Use Python 3.10 on CI | Use Python 3.10 on CI
| YAML | mit | ahitrin/SiebenApp |
99b3fbfa259b39e27124bb6a881a8d73902e5931 | .github/workflows/ci.yml | .github/workflows/ci.yml | on: [push, pull_request]
jobs:
android-bin:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: seanmiddleditch/gha-setup-ninja@v3
- run: bazel build -c opt :encoder_main --config=android_arm64
- run: bazel build -c opt :decoder_main --config=android_arm64
android-app... | on: [push, pull_request]
jobs:
android-bin:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: seanmiddleditch/gha-setup-ninja@16b940825621068d98711680b6c3ff92201f8fc0
- run: bazel build -c opt :encoder_main --config=android_arm64
- run: bazel build -c opt :decoder_main... | Disable Android APK upload and deploy, pin Ninja setup | CI: Disable Android APK upload and deploy, pin Ninja setup
- Disables the Android APK upload to GitHub and the deploy function (for now)
- Pin the setup Ninja action | YAML | apache-2.0 | google/lyra,google/lyra |
3986b22bc9caf7b2e97d33bf8e50f8c4ef22617e | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Android
on: [push, pull_request]
jobs:
test:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build debug
run: bash ./gradlew build jacocoTestReport assembleAndroidTest
- name: run ... | name: Android
on: [push, pull_request]
jobs:
test:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build debug
run: bash ./gradlew build jacocoTestReport assembleAndroidTest
- name: run ... | Use the mac version of the uploader | Use the mac version of the uploader
| YAML | apache-2.0 | codecov/example-android |
81d48912700c643fc8f062e22cc8a2d24797c685 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push]
jobs:
moderate-modern:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
... | name: CI
on: [push]
jobs:
moderate-modern:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
... | Allow PHP 8.2 to break | Allow PHP 8.2 to break
| YAML | mit | paragonie/csp-builder |
7e08c641b3c9aeea51a0b676c35f003214cc88cd | .github/workflows/ci.yml | .github/workflows/ci.yml | name: tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
... | name: tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.4, 3.5, 3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/c... | Add Python ≥ 3.4 to test matrix | Add Python ≥ 3.4 to test matrix
| YAML | mit | bkircher/python-rpm-spec |
64de755b3e49488860da363ebd2bc9c2336d86ad | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Java CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ '8', '11', '12', '13', '14', '15' ]
steps:... | name: Java CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ '8', '11', '12', '13', '14', '15', '16' ]
... | Add JDK16; add "distribution: 'zulu'" | Add JDK16; add "distribution: 'zulu'" | YAML | mit | lukehutch/fast-classpath-scanner,lukehutch/fast-classpath-scanner,classgraph/classgraph |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.