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 |
|---|---|---|---|---|---|---|---|---|---|
6a5bcf7e36d74e05e606aab2c809d1ddfda4b4a9 | .travis.yml | .travis.yml | language: c
compiler:
- clang
- gcc
script: cd libpam && ./bootstrap.sh && ./configure && make && make check
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libpam0g-dev libqrencode3
| language: c
compiler:
- clang
- gcc
script: cd libpam && ./bootstrap.sh && ./configure && make && make check
sudo: false
addons:
apt:
packages:
- libpam0g-dev
- libqrencode3
| Swap to Travis CI's new container-based infrastructure | Swap to Travis CI's new container-based infrastructure
http://docs.travis-ci.com/user/migrating-from-legacy/
| YAML | apache-2.0 | google/google-authenticator,google/google-authenticator |
35e875a95556e2bb94da605355a0d91de6512ed2 | .travis.yml | .travis.yml | language: node_js
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
node_js:
- "0.11"
- "0.10"
| sudo: false
language: node_js
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
node_js:
- "0.11"
- "0.10"
| Use new Travis CI infrastructure | Use new Travis CI infrastructure
| YAML | mit | brettpostin/launchpad,ekryski/launchpad,ekryski/launchpad,brettpostin/launchpad |
9358ea1bd7548e4d9aed7cd6c89b9638d660cf2a | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
fast_finish: true
before_script:
- composer install -n
script:
- vendor/bin/phpunit
cache:
directories:
- vendor
| dist: trusty
sudo: false
language: php
php:
- 5.6
- 7.0
matrix:
fast_finish: true
before_script:
- composer install -n
script:
- vendor/bin/phpunit
cache:
directories:
- vendor
| Drop support of HHVM and PHP 5.5 | Drop support of HHVM and PHP 5.5 | YAML | mit | Kevinrob/guzzle-cache-middleware |
1cf1f02dd56c466029412329538ebb90e3e6801e | .travis.yml | .travis.yml | ---
os: osx
sudo: false
cache:
directories:
- .bundle/gems
language: ruby
rvm:
- 2.3.5
- 2.4.3
- ruby-head
env:
global: "NOCOV=true"
matrix:
- "LIBEDIT=true"
- "LIBEDIT=false"
before_install:
- brew update;
- brew install shellcheck clang-format@3.8;
- ln -s /usr/local/opt/clang-format@3.8/bin/clang-format /usr/local/bin/clang-format;
- if [ "$LIBEDIT" == "true" ]; then
brew install libedit;
fi
install:
- gem install bundler -v 1.16.1
- if [ "$LIBEDIT" == "true" ]; then
rvm reinstall "$TRAVIS_RUBY_VERSION" --configure --enable-libedit;
fi
before_script:
- git config --local user.email 'travis@travis.ci'
- git config --local user.name 'Travis CI'
script:
- bin/ci.sh
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
| ---
os: osx
sudo: false
cache:
directories:
- .bundle/gems
language: ruby
rvm:
- 2.3.5
- 2.4.3
- ruby-head
env:
global: "NOCOV=true"
matrix:
- "LIBEDIT=true"
- "LIBEDIT=false"
before_install:
- brew update;
- brew install shellcheck clang-format@3.8;
- ln -s /usr/local/opt/clang-format@3.8/bin/clang-format /usr/local/bin/clang-format;
- if [ "$LIBEDIT" == "true" ]; then
brew install libedit;
fi
install:
- gem install bundler -v 1.16.1
- if [ "$LIBEDIT" == "true" ]; then
rvm reinstall "$TRAVIS_RUBY_VERSION" --configure --enable-libedit;
fi
script:
- bin/ci.sh
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
| Remove now unnecessary stuff from TravisCI config | Remove now unnecessary stuff from TravisCI config
Another follow up to the removal of overcommit.
| YAML | bsd-2-clause | deivid-rodriguez/byebug,yui-knk/byebug,yui-knk/byebug,deivid-rodriguez/byebug,deivid-rodriguez/byebug,yui-knk/byebug |
dd2738b693a67155135b0d68e24ebdff31cdda81 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- "pip install -r requirements.txt"
script:
- script/test_python
- script/test_c
| language: python
python:
- "2.7"
- "3.5"
install:
- "pip install -r requirements.txt"
script:
# - script/test_python
- script/test_c
| Comment out python tests in ci. | Comment out python tests in ci.
| YAML | mit | hockeybuggy/sudoku_solver,hockeybuggy/sudoku_solver,hockeybuggy/sudoku_solver |
2a2bc509129aabcc900edfe2a51e10276f58ce89 | .travis.yml | .travis.yml | language: java
sudo: false
script: ./gradlew clean build -s && ./gradlew ciPerformRelease
matrix:
include:
- jdk: oraclejdk8
- jdk: oraclejdk9
env: SKIP_RELEASE=true
#don't build tags
branches:
except:
- /^v\d/
| language: java
sudo: false
script: ./gradlew clean build -s && ./gradlew ciPerformRelease
matrix:
include:
- jdk: oraclejdk8
- jdk: oraclejdk9
env: SKIP_RELEASE=true
- jdk: openjdk10
env: SKIP_RELEASE=true
- jdk: openjdk11
env: SKIP_RELEASE=true
#don't build tags
branches:
except:
- /^v\d/
| Add jdk 10 and 11 to Travis | Add jdk 10 and 11 to Travis
| YAML | mit | magx2/jSupla |
1ed5c806a977bbf3c27a5101c6dcb2be7d46ca41 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-py3.txt; else pip install -r requirements-py2.txt; fi
# command to run tests
script: nosetests tests
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-py3.txt; else pip install -r requirements-py2.txt; fi
# command to run tests
script: nosetests tests
sudo: false
| Use new Travis build farm. | Use new Travis build farm.
| YAML | mit | wireservice/agate-stats,onyxfish/agate-stats |
19956ea19505b96f8a2460d86b9b0fb47a42c13e | .travis.yml | .travis.yml | language: python
python:
- "3.5"
script: pylint -r n *.py extension_exporters/*.py && pycodestyle
| language: python
python:
- "3.5"
script: pylint -r n *.py extension_exporters/*.py && pycodestyle && python -m pytest
| Add current unit tests to CI | Add current unit tests to CI
| YAML | apache-2.0 | Kupoman/blendergltf |
5b55f71d9406aeeb98ca32f0f7003439ff063fba | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev
| Drop support of oldest PHP versions | Drop support of oldest PHP versions
Drop support of PHP 5.4 and 5.5 | YAML | mit | lahaxearnaud/laravel-u2f,lahaxearnaud/laravel-u2f,lahaxearnaud/laravel-u2f |
571bcdf08ce3170839390c44e8f7685e47b33528 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "6"
- "8"
- "10"
before_install:
- travis_retry npm install
script:
- npm test
notifications:
email:
- travis@nodejitsu.com
irc: "irc.freenode.org#nodejitsu"
| sudo: false
language: node_js
node_js:
- "10"
- "12"
- "14"
before_install:
- travis_retry npm install
script:
- npm test
notifications:
email:
- travis@nodejitsu.com
irc: "irc.freenode.org#nodejitsu"
| Update Travis Node versions; Node < 10 no longer maintained | Update Travis Node versions; Node < 10 no longer maintained
| YAML | mit | winstonjs/logform |
86362be56c3b223e34a61d5f2ba1c67abf8e8246 | .travis.yml | .travis.yml | osx_image: xcode8
language: generic
matrix:
include:
- os: osx
env: TYPE=xcode
language: objective-c
after_success: bash <(curl -s https://codecov.io/bash)
- os: osx
env:
- TYPE=spm
- SWIFT_VERSION=3.0
- os: linux
dist: trusty
sudo: required
env:
- TYPE=spm
- SWIFT_VERSION=3.0-preview-1
install: if [[ "$TYPE" == "spm" ]]; then eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"; fi
script: ./test $TYPE
| osx_image: xcode8
language: generic
matrix:
include:
- os: osx
env: TYPE=xcode
language: objective-c
after_success: bash <(curl -s https://codecov.io/bash)
- os: osx
env:
- TYPE=spm
- SWIFT_VERSION=3.0
- os: linux
dist: trusty
sudo: required
env:
- TYPE=spm
- SWIFT_VERSION=DEVELOPMENT-SNAPSHOT-2016-06-20-a
install: if [[ "$TYPE" == "spm" ]]; then eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"; fi
script: ./test $TYPE
| Use latest snapshot for linux build | Use latest snapshot for linux build
| YAML | mit | tomquist/ReverseJson,tomquist/ReverseJson |
cdc3b3fa9c4fda688a68b8b8ab2d0cf2b10a1172 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- DJANGO="Django>=1.6,<1.7"
- DJANGO="Django>=1.5,<1.6"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
install:
- python setup.py install
- pip install $DJANGO
- pip install psycopg2
script:
- createdb facebook_auth-test-database
- python runtests.py
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- DJANGO="Django>=1.7,<1.8"
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
install:
- python setup.py install
- pip install $DJANGO
- pip install psycopg2
script:
- createdb facebook_auth-test-database
- python runtests.py
| Drop support for django 1.5 and 1.6. | Drop support for django 1.5 and 1.6.
| YAML | mit | pozytywnie/django-facebook-auth,pozytywnie/django-facebook-auth |
6fb390f9e7c5af6e4f2c63d566e722c1f573f728 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3.4"
- "2.4.1"
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
| language: ruby
sudo: false
rvm:
- "2.3.8"
- "2.4.10"
- "2.5.8"
- "2.6.6"
- "2.7.1"
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
| Change Ruby versions to reflect current reality | Change Ruby versions to reflect current reality
| YAML | mit | ManageIQ/binary_struct |
c0085ae52fbdb2fdf26bb4eb969eb3069813de51 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- 2.7
- pypy
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install tox
# command to run tests, e.g. python setup.py test
script:
- tox
| # Config file for automatic testing at travis-ci.org
language: python
env:
- TOXENV=py27
- TOXENV=pypy
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install tox
# command to run tests, e.g. python setup.py test
script:
- tox
| Use env instead of python for testing envs | Use env instead of python for testing envs
This is the way tools like msabramo's python-panci do the generation of
travis YAMLs from tox.ini.
| YAML | mit | yola/teamsupport-python,zoidbergwill/teamsupport-python |
3c741c4628350357405001173521086494148ab2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Add 0.12 and iojs to CI run. | Add 0.12 and iojs to CI run.
| YAML | mit | cliffano/breaker |
ada54d78ed978fd13383a61c5d1fc175ac6cf544 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.2.3
bundler_args: "--without development:production:intercode1_import"
notifications:
slack:
secure: Fip6shy/5QPPqQc0qZvZnGGZeoc+ZObzQKeDKg46XsyBcAsiJO/f6GiALstWOY+Ne8Uo4V/FtzLEN3D/yV02FbJPAFh60JDcy15ltVBkQNZGeu9wQMIqdbuDkm+M7s9rp4f9/J3z39Yuas6EKzTk88Qt4EQyJTktqXDawKMKE+Q=
| language: ruby
sudo: false
rvm:
- 2.2.3
bundler_args: "--without development:production:intercode1_import"
before_script:
- cp config/database.yml.dev config/database.yml
- bin/rake db:create db:migrate RAILS_ENV=test
notifications:
slack:
secure: Fip6shy/5QPPqQc0qZvZnGGZeoc+ZObzQKeDKg46XsyBcAsiJO/f6GiALstWOY+Ne8Uo4V/FtzLEN3D/yV02FbJPAFh60JDcy15ltVBkQNZGeu9wQMIqdbuDkm+M7s9rp4f9/J3z39Yuas6EKzTk88Qt4EQyJTktqXDawKMKE+Q=
| Set up database in Travis | Set up database in Travis
| YAML | mit | neinteractiveliterature/intercode,neinteractiveliterature/intercode,neinteractiveliterature/intercode,neinteractiveliterature/intercode,neinteractiveliterature/intercode |
dc910107cfc4cb5332ddaabd9d295e4c36e88c85 | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
global:
- DOCKER_VERSION=1.12.1-0~trusty
before_install:
# list docker-engine versions
- apt-cache madison docker-engine
# upgrade docker-engine to specific version
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
- docker version
- docker info
- sudo add-apt-repository ppa:duggan/bats --yes
- sudo apt-get update -qq
- sudo apt-get install -qq bats
- make update-dependencies
script:
- make test
| sudo: required
services:
- docker
env:
global:
- DOCKER_VERSION=1.12.3-0~trusty
before_install:
# list docker-engine versions
- apt-cache madison docker-engine
# upgrade docker-engine to specific version
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y --allow-downgrades docker-engine=${DOCKER_VERSION}
- docker version
- docker info
- sudo add-apt-repository ppa:duggan/bats --yes
- sudo apt-get update -qq
- sudo apt-get install -qq bats
- make update-dependencies
script:
- make test
| Upgrade docker-engine and allow downgrades | Upgrade docker-engine and allow downgrades
| YAML | mit | pocket-playlab/nginx-proxy,krknopp/docker-nginx-proxy,pocket-playlab/nginx-proxy,adi90x/rancher-active-proxy,thomasleveil/nginx-proxy,kamermans/nginx-proxy,itsafire/nginx-proxy,jwilder/nginx-proxy,jwilder/nginx-proxy,adi90x/rancher-active-proxy,kamermans/nginx-proxy,dylangmiles/nginx-proxy,itsafire/nginx-proxy,krknopp/docker-nginx-proxy,thomasleveil/nginx-proxy,krknopp/docker-nginx-proxy,dylangmiles/nginx-proxy |
bdc07d2c7cc86449ea641fff72cb98443664def9 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
install:
- "gem install bundler"
- "bundle install --jobs=3 --retry=3"
env:
-
- RACK_VERSION=1.1.0
- RACK_VERSION=1.2.0
- RACK_VERSION=1.3.0
- RACK_VERSION=1.4.0
- RACK_VERSION=1.5.0
- RACK_VERSION=1.6.0
- RACK_VERSION=2.0.0
- RAILS_VERSION=3.2.0
- RAILS_VERSION=4.0.0
- RAILS_VERSION=4.1.0
- RAILS_VERSION=4.2.0
- RAILS_VERSION=5.0.0
- RAILS_VERSION=5.1.0
- I18N_VERSION=0.6.0
matrix:
allow_failures:
- rvm: 2.4.0
env: RAILS_VERSION=3.2.0
- rvm: 2.4.0
env: RAILS_VERSION=4.0.0
- rvm: 2.4.0
env: RAILS_VERSION=4.1.0
- rvm: 2.5.0
env: RAILS_VERSION=4.0.0
- rvm: 2.5.0
env: RAILS_VERSION=4.1.0
script: "bundle exec rake spec"
branches:
only:
- master
| language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
install:
- "gem install bundler"
- "bundle install --jobs=3 --retry=3"
env:
-
- RACK_VERSION=1.3.0
- RACK_VERSION=1.4.0
- RACK_VERSION=1.5.0
- RACK_VERSION=1.6.0
- RACK_VERSION=2.0.0
- RAILS_VERSION=3.2.0
- RAILS_VERSION=4.0.0
- RAILS_VERSION=4.1.0
- RAILS_VERSION=4.2.0
- RAILS_VERSION=5.0.0
- RAILS_VERSION=5.1.0
- I18N_VERSION=0.6.0
matrix:
allow_failures:
- rvm: 2.4.0
env: RAILS_VERSION=3.2.0
- rvm: 2.4.0
env: RAILS_VERSION=4.0.0
- rvm: 2.4.0
env: RAILS_VERSION=4.1.0
- rvm: 2.5.0
env: RAILS_VERSION=4.0.0
- rvm: 2.5.0
env: RAILS_VERSION=4.1.0
script: "bundle exec rake spec"
branches:
only:
- master
| Drop Rack 1.1 and 1.2 tests from CI | Drop Rack 1.1 and 1.2 tests from CI
| YAML | mit | dtaniwaki/rack-dev-mark |
c111361e19ca8b60e9e6d2de46765f87f9cfe76d | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
install: pip install --upgrade mypy flake8
script: ./test-all.sh
cache:
- cargo
- pip
| language: rust
rust:
- stable
- beta
- nightly
install: pip install --user --upgrade mypy flake8
script: ./test-all.sh
cache:
- cargo
- pip
| Install Python packages without Travis root user. | Install Python packages without Travis root user.
| YAML | apache-2.0 | sunfishcode/cretonne,sunfishcode/cretonne,stoklund/cretonne,stoklund/cretonne,stoklund/cretonne,sunfishcode/cretonne |
702cdfb0719132ce2640bc47bc990d2b47ab8c1a | .travis.yml | .travis.yml | language: ruby
rvm:
- jruby-head
- jruby-9.0.5.0
- jruby-9.0.4.0
- 2.3.1
- 2.2.5
- 2.1.8
- ruby-head
before_install: gem install bundler -v 1.11.2
env:
- JRUBY_OPTS="--dev --debug"
jdk:
- oraclejdk8
| language: ruby
rvm:
- jruby-head
- jruby-9.1.0.0
- 2.3.1
- 2.2.5
- 2.1.8
- ruby-head
before_install: gem install bundler
env:
- JRUBY_OPTS="--dev --debug"
jdk:
- oraclejdk8
| Test the latest JRuby stable release | Test the latest JRuby stable release
| YAML | mit | donv/capybara-screenshot-diff,donv/capybara-screenshot-diff |
8e27c8e5787a8261c00761767b4ed8c8388fac9e | .travis.yml | .travis.yml | language: node_js
services: mongodb
node_js:
- "0.11"
- "0.10"
- "0.8" | language: node_js
services: mongodb
node_js:
- "0.11"
- "0.10" | Remove node 0.8 CI since gulp plugin composition doesnt run atm on node v0.8 | Remove node 0.8 CI since gulp plugin composition doesnt run atm on node v0.8
| YAML | mit | bauhausjs/bauhausjs,bauhausjs/bauhausjs,bauhausjs/bauhausjs,bauhausjs/bauhausjs |
26a5024d069dd270d14745a651e7fd631dc4b9df | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
cache: bundler
notifications:
email: false
hipchat:
rooms:
secure: "Scevf1Onn0h3uNLsJUPx+dyBf878/iMVWW04+GZrThA5609BQwukk1yz7dKI2fOhlwziUo878nnp2UcJ8lxT+C+3g8QG+XYZp4hI4xnRqE38oO+mwLcAPzCTemQC3+6lYY+Yv9Ux9rGZo2WHcMFHNlCPoDhIArY8qm7+BKJu1pw="
on_success: never
on_failure: change
template: '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
| language: ruby
sudo: false
rvm:
- 2.2
cache: bundler
notifications:
email: false
hipchat:
rooms:
secure: "Scevf1Onn0h3uNLsJUPx+dyBf878/iMVWW04+GZrThA5609BQwukk1yz7dKI2fOhlwziUo878nnp2UcJ8lxT+C+3g8QG+XYZp4hI4xnRqE38oO+mwLcAPzCTemQC3+6lYY+Yv9Ux9rGZo2WHcMFHNlCPoDhIArY8qm7+BKJu1pw="
on_success: never
on_failure: change
template: '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
| Enable Travis CI container builds | Enable Travis CI container builds
| YAML | mit | twingly/twingly-url |
93090fcbbc373aaa7c40f7a016785a04a63daaf2 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.4
- 1.5
- 1.6
before_install:
- go get -u github.com/golang/lint/golint
- if [[ $TRAVIS_GO_VERSION == 1.5* ]]; then go get -u github.com/kisielk/errcheck; fi
before_script:
- '! gofmt -s -l . | read'
- golint ./...
- echo $TRAVIS_GO_VERSION
- if [[ $TRAVIS_GO_VERSION == 1.5* ]]; then errcheck ./...; fi
| language: go
go:
- 1.3
- 1.4
- 1.5
- 1.6
before_install:
- go get -u github.com/golang/lint/golint
- if [[ $TRAVIS_GO_VERSION == 1.5* ]]; then go get -u github.com/kisielk/errcheck; fi
- go get -u golang.org/x/tools/cmd/vet
before_script:
- '! gofmt -s -l . | read'
- golint ./...
- echo $TRAVIS_GO_VERSION
- if [[ $TRAVIS_GO_VERSION == 1.5* ]]; then errcheck ./...; fi
- go vet .
| Add `go vet` to Travis CI | Add `go vet` to Travis CI
| YAML | apache-2.0 | soheilhy/cmux,ekle/cmux |
d287ca75bc75d8617351ac2989dad6dae6547907 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
cache:
pip: true
directories:
- $HOME/.ccache
env:
global:
- PATH="/usr/lib/ccache:$PATH"
install:
- "pip install -U pip 'setuptools!=26.*'"
- "pip install ."
- "pip install -r test_requirements.txt"
- "pip install flake8"
before_script: "flake8 --max-complexity 10 src/brotli test"
script:
- >
if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then
py.test test/
else
py.test --cov brotli test/
fi
| sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy-5.3.1"
cache:
pip: true
directories:
- $HOME/.ccache
env:
global:
- PATH="/usr/lib/ccache:$PATH"
install:
- "pip install -U pip 'setuptools!=26.*'"
- "pip install ."
- "pip install -r test_requirements.txt"
- "pip install flake8"
before_script: "flake8 --max-complexity 10 src/brotli test"
script:
- >
if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then
py.test test/
else
py.test --cov brotli test/
fi
| Test with modern PyPy take 2 | Test with modern PyPy take 2
This version of PyPy should be supported in Travis. I've seen it elsewhere. | YAML | mit | python-hyper/brotlipy |
2590cb9666c6fdb126f9e6de6b05c31e7855e211 | .travis.yml | .travis.yml | language: java
before_install:
- sudo apt-get install jq
- wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url)
jdk:
- openjdk7
- oraclejdk8
after_success:
- mvn jacoco:report coveralls:report
- java -cp ~/codacy-coverage-reporter-assembly-latest.jar com.codacy.CodacyCoverageReporter -l Java -r target/site/jacoco/jacoco.xml
| language: java
before_install:
- sudo apt-get install jq
- wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url)
jdk:
- openjdk7
- oraclejdk8
after_success:
- mvn jacoco:report coveralls:report
- jdk_switcher use oraclejdk8
- java -cp ~/codacy-coverage-reporter-assembly-latest.jar com.codacy.CodacyCoverageReporter -l Java -r target/site/jacoco/jacoco.xml
| Use Java8 for Codacy code coverage publishing | Use Java8 for Codacy code coverage publishing | YAML | mit | codecentric/jbehave-junit-runner,valfirst/jbehave-junit-runner |
246db82380812fd624e89c971eb9441bead0829c | .travis.yml | .travis.yml | sudo: false
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "nightly"
- "pypy3.5"
matrix:
allow_failures:
- python: "nightly"
include:
- { python: "3.7", dist: xenial, sudo: true }
install:
- pip install --upgrade coveralls pytest "pytest-cov>=2.5.1" dataclasses
# mypy can't be installed on pypy
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then pip install mypy ; fi
# Black is Python 3.6+-only
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then pip install black ; fi
script:
- py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then mypy injector ; fi
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then black --check . ; fi
after_success:
- coveralls
| sudo: false
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "nightly"
- "pypy3.5"
- "pypy3"
matrix:
allow_failures:
- python: "nightly"
include:
- { python: "3.7", dist: xenial, sudo: true }
install:
- pip install --upgrade coveralls pytest "pytest-cov>=2.5.1" dataclasses
# mypy can't be installed on pypy
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then pip install mypy ; fi
# Black is Python 3.6+-only
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then pip install black ; fi
script:
- py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then mypy injector ; fi
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then black --check . ; fi
after_success:
- coveralls
| Use latest PyPy3 in CI | Use latest PyPy3 in CI
This makes sure we test with their Python 3.6 implementation right now.
| YAML | bsd-3-clause | alecthomas/injector |
86ba30d457049bfc7bab36497e443f9d23d678f7 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.0
- hhvm
before_script:
- pip install --user codecov
- composer self-update && composer install --dev
script:
- docker build -t matthiasmullie/php-api .
- docker run -d -p 80:80 matthiasmullie/php-api
- ./vendor/bin/phpunit
after_success:
- vendor/bin/cauditor
- codecov
| language: php
php:
- 7.1
- 7.0
- hhvm
before_script:
- pip install --user codecov
- composer self-update && composer install --dev
script:
- sudo kill -9 `sudo lsof -t -i:80`
- docker build -t matthiasmullie/php-api .
- docker run -d -p 80:80 matthiasmullie/php-api
- ./vendor/bin/phpunit
after_success:
- vendor/bin/cauditor
- codecov
| Make sure nothing is running on port 80 | Make sure nothing is running on port 80
| YAML | mit | matthiasmullie/php-api |
877d3975ad08a99fd27c109bc5c63ba3eafcf563 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "4"
- "6"
- "7"
- "8"
notifications:
email: false
| language: node_js
sudo: false
node_js:
- "8"
notifications:
email: false
| Drop support for node versions < 8 | Drop support for node versions < 8
| YAML | mit | holidaycheck/eslint-config-holidaycheck |
4e7a4418daf7e5e61894a2559a174fa326f3a26f | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
services:
- elasticsearch
before_install:
- curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.4.3.deb && sudo dpkg -i --force-confnew elasticsearch-5.4.3.deb && sudo service elasticsearch restart
before_script:
- sleep 10
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: java
jdk:
- oraclejdk8
services:
- docker
after_success:
- bash <(curl -s https://codecov.io/bash)
| Use docker instead of manually installing ElasticSearch on TravisCI | Use docker instead of manually installing ElasticSearch on TravisCI
| YAML | apache-2.0 | magrossi/es-log4j2-appender |
043421606583de4f3f1b78e92728c185511a2e73 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
install:
- composer install
script: phpunit --coverage-text
before_script:
- composer install
notifications:
email:
- github@crazedsanity.com
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
install:
- composer install
script: phpunit --coverage-text
before_script:
- composer install
notifications:
email:
- github@crazedsanity.com
| Add PHP 7.x versions to Travis builds | Add PHP 7.x versions to Travis builds
| YAML | mit | crazedsanity/template |
5ea1a63f95492e9fb255322cdb004d23edb02752 | .travis.yml | .travis.yml | language: python
python:
- 3.4
- 3.5
- pypy3
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
script:
- nosetests -v -l DEBUG --logging-level=DEBUG --with-coverage --cover-package=flask_webapi
after_success:
- codecov
| language: python
python:
- pypy3
- 3.4
- 3.5
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
script:
- nosetests -v -l DEBUG --logging-level=DEBUG --with-coverage --cover-package=flask_webapi
after_success:
- codecov
| Put pypy on first place to avoid problem with coverage | Put pypy on first place to avoid problem with coverage
| YAML | mit | viniciuschiele/flask-webapi |
5b08aac15331338d045d2e4736d1a00fd4e816f7 | .travis.yml | .travis.yml | language: python
services:
- memcached
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
install: python setup.py install
before_script:
- pip install nose
script: python bin/runtests.py
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- LIBMEMCACHED_VERSION='0.44'
- LIBMEMCACHED_VERSION='0.53'
- LIBMEMCACHED_VERSION='1.0.8'
before_install:
# Default travis-ci libmemcached is 0.44 (ubuntu precise). If we need a
# higher version, add in the appropriate ppa. The newer package will upgrade
# the desired revision when we do a `apt-get install libmemcached-dev`.
- sh -c "if [ $LIBMEMCACHED_VERSION = '1.0.8' ] ; then sudo add-apt-repository ppa:plewis-m/ppa-libmemcached -y; fi"
- sh -c "if [ $LIBMEMCACHED_VERSION = '0.53' ] ; then sudo add-apt-repository ppa:plewis-m/libmemcached0.5x -y; fi"
- sudo apt-get update -qq
- sudo apt-get install memcached
- sudo service memcached start
- echo "stats settings" | nc localhost 11211
- sudo apt-get install libmemcached-dev
install: python setup.py install
before_script:
- pip install nose
script: python bin/runtests.py
| Add a 5x3 test matrix for Travis CI | Add a 5x3 test matrix for Travis CI
python 2.6, 2.7, 3.2, 3.3, 3.4
libmemcached 0.44, 0.53, 1.0.8
| YAML | bsd-3-clause | lericson/pylibmc,lericson/pylibmc,lericson/pylibmc |
20bd5f469a2bea9b185eeeb01cd6d44133daf7d1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
- "0.12"
| language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
| Remove CI for node 0.8 | Remove CI for node 0.8
Our testbed is incompatible with node 0.8 due to dependencies, so
it makes no sense to have a failing CI on every PR.
| YAML | mit | baalexander/node-xmlrpc,patricklodder/node-xmlrpc |
a8991298af2e9933baa8f3e25cab12a20fb5abcf | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
matrix:
fast_finish: true
script: npm test --coverage
after_script: codeclimate < coverage/lcov.info
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- 'nodejs'
matrix:
fast_finish: true
script: npm test --coverage
after_script: codeclimate < coverage/lcov.info
| Test against latest Node version | Test against latest Node version
| YAML | mit | timkurvers/byte-buffer |
8a97b454365415c71608718b6406c6212b8a36e8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| language: ruby
rvm:
- 2.0.0
- 2.1.1
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| Delete ruby 1.8.7, 1.9.2 and 1.9.3 from Travis | Delete ruby 1.8.7, 1.9.2 and 1.9.3 from Travis
| YAML | mit | juno/rack-heroku_env |
42e13a2198dc2e5fe06620d080a46131f9d003ba | .travis.yml | .travis.yml | language: python
sudo: enabled
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# command to run tests
script: coverage run --branch --source=opensauce --omit=opensauce/textgrid.py -m unittest test
install:
- sudo apt-get -qq update
- sudo apt-get install -y tk8.4 libsnack2
- wget http://www.fon.hum.uva.nl/praat/praat6029_linux64barren.tar.gz -O /tmp/praat.tar.gz
- tar -xzvf /tmp/praat.tar.gz
- sudo cp praat /usr/bin/praat
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install coverage codecov
after_success:
- codecov
notifications:
email:
recipients:
- teryu@alum.mit.edu
on_success: always
on_failure: always
| language: python
sudo: enabled
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# command to run tests
script: coverage run --branch --source=opensauce --omit=opensauce/textgrid.py -m unittest test
install:
- sudo apt-get -qq update
- sudo apt-get install -y tk8.4 libsnack2
- wget http://www.fon.hum.uva.nl/praat/praat6035_linux64barren.tar.gz -O /tmp/praat.tar.gz
- tar -xzvf /tmp/praat.tar.gz
- sudo cp praat_barren /usr/bin/praat
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy==0.19.1
- pip install coverage codecov
after_success:
- codecov
notifications:
email:
recipients:
- teryu@alum.mit.edu
on_success: always
on_failure: always
| Update Praat & SciPy versions to use in Travis build | Update Praat & SciPy versions to use in Travis build
| YAML | apache-2.0 | voicesauce/opensauce-python,voicesauce/opensauce-python,voicesauce/opensauce-python |
fde725e375550f1e454a1ec8b84cd7b64c642107 | .travis.yml | .travis.yml | sudo: false
addons:
apt:
sources:
- sourceline: 'ppa:git-core/ppa'
packages:
- git
language: go
go:
- 1.5
branches:
only:
- master
| sudo: false
addons:
apt:
sources:
- sourceline: 'ppa:git-core/ppa'
packages:
- git
language: go
go:
- 1.8.x
- master
branches:
only:
- master
matrix:
allow_failures:
- go: master
| Test against a less ancient version of Go | Test against a less ancient version of Go
| YAML | mpl-2.0 | missedone/go-getter,hashicorp/go-getter |
3112682d573edf8b4fd369cf609da7d1cf329d1f | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
install:
- pip install -e .
- pip list
script:
- python pep8.py --testsuite testsuite
- python pep8.py --statistics pep8.py
- python pep8.py --doctest
- python setup.py test
matrix:
allow_failures:
- python: pypy
notifications:
email:
- IanLee1521@gmail.com
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
- pypy3
install:
- pip install -e .
- pip list
script:
- python pep8.py --testsuite testsuite
- python pep8.py --statistics pep8.py
- python pep8.py --doctest
- python setup.py test
matrix:
allow_failures:
- python: pypy
- python: pypy3
notifications:
email:
- IanLee1521@gmail.com
| Add tests on PyPy 3 for Travis-CI | Add tests on PyPy 3 for Travis-CI
| YAML | mit | pedros/pep8,doismellburning/pep8,zevnux/pep8,PyCQA/pep8,codeclimate/pep8,jayvdb/pep8,ojengwa/pep8,ABaldwinHunter/pep8-clone-classic,ABaldwinHunter/pep8,asandyz/pep8,pandeesh/pep8,MeteorAdminz/pep8,jayvdb/pep8 |
b0368239d16d05d803fb04037a0b5ee8e0b67b30 | .travis.yml | .travis.yml | # Travis CI
## I prefer to explicitly send my builds to the container-based infrastructure
sudo: false
## The programmming language that I use
language: python
## Choosing Python versions to test against
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
## Command to install dependencies
install: "./.travis/install.sh"
## Command to run tests
script: nosetests
## Disallow notifications
notifications:
email: false
## Run tests only for this git branches
branches:
only:
- master
| # Travis CI
## I prefer to explicitly send my builds to the container-based infrastructure
sudo: false
## The programmming language that I use
language: python
## Choosing Python versions to test against
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
## Command to install dependencies before
before_script:
- chmod +x ./.travis/install.sh
- ./.travis/install.sh
## Command to run tests
script: nosetests
## Disallow notifications
notifications:
email: false
## Run tests only for this git branches
branches:
only:
- master
| Use before_script instead of install | Use before_script instead of install | YAML | apache-2.0 | SuriyaaKudoIsc/keylogger,SuriyaaKudoIsc/keylogger |
f62ce9dfbf15df8ef62cf4326928be5e6fe5d055 | .travis.yml | .travis.yml | os: osx
env:
- NODE_VERSION="0.10"
- NODE_VERSION="0.12"
- NODE_VERSION="stable"
install:
- rm -rf ~/.nvm
- git clone https://github.com/creationix/nvm.git ~/.nvm
- source ~/.nvm/nvm.sh
- nvm install $NODE_VERSION
- node --version
- npm install
script:
- npm test
| os: osx
env:
- NODE_VERSION="0.10"
- NODE_VERSION="0.12"
- NODE_VERSION="4"
- NODE_VERSION="stable"
install:
- rm -rf ~/.nvm
- git clone https://github.com/creationix/nvm.git ~/.nvm
- source ~/.nvm/nvm.sh
- nvm install $NODE_VERSION
- node --version
- npm install
script:
- npm test
| Add node v4 to Travis CI | Add node v4 to Travis CI
| YAML | mit | mischah/itunes-remote |
e09632138219e21f166a49af28932baa4edcf4f1 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directory:
- $HOME/.composer/cache
php:
- 5.6
- 7.0
- hhvm
before_script:
- composer --prefer-source install
script:
- ./vendor/bin/phpunit
| language: php
sudo: false
cache:
directory:
- $HOME/.composer/cache
php:
- 5.6
- 7.0
- 7.1
- hhvm
before_script:
- composer --prefer-source install
script:
- ./vendor/bin/phpunit
| Enable PHP 7.1 on Travis | Enable PHP 7.1 on Travis
| YAML | mit | doctrine/common,TomasVotruba/common |
2c074f5df25013058de285cb8df4944c52b2d02f | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '8'
- '9'
script: 'npm run ci'
| language: node_js
node_js:
- '8'
- '9'
script: 'npm run ci'
| Drop node.js 6 support so we can use the new eslint-plugin-node (semver-major) | Drop node.js 6 support so we can use the new eslint-plugin-node (semver-major)
| YAML | bsd-3-clause | unexpectedjs/unexpected-stream |
f6d88a94bc2ccc16d770dc47337c8f0044b95348 | .travis.yml | .travis.yml | language:
- python
python:
- '3.4.3'
install:
- pip install -e .
- pip install coveralls
before_script:
- psql -c "CREATE DATABASE loadstone;" -U postgres
script:
- coverage run -m py.test
after_success:
- coveralls
cache:
directories:
- $HOME/.cache/pip
notifications:
email:
recipients:
- s.elahmadie@gmail.com
on_success: change
on_failure: always | language:
- python
python:
- '3.4.3'
- '3.5'
- 'pypy3'
install:
- pip install -e .
- pip install coveralls
before_script:
- psql -c "CREATE DATABASE loadstone;" -U postgres
env:
- DATABASE_URL=sqlite://
- DATABASE_URL=postgresql://postgres@localhost:5432/loadstone
script:
- coverage run -m py.test
after_success:
- coveralls
cache:
directories:
- $HOME/.cache/pip
notifications:
email:
recipients:
- s.elahmadie@gmail.com
on_success: change
on_failure: always | Add python3.5, pyp3 and test with sqlite memory, postgres | Add python3.5, pyp3 and test with sqlite memory, postgres
| YAML | mit | Demotivated/loadstone |
685e6d7268a15821d390290ac3d3d8dc38f76980 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- "2.1"
- "2.2"
- ruby-head
- jruby-19mode
- jruby-head
| language: ruby
rvm:
- 2.0.0
- "2.1"
- "2.2"
- ruby-head
- jruby-head
| Remove support for ruby 1.9 | Remove support for ruby 1.9 | YAML | mit | mateusdelbianco/smart_polling |
c245a602a708e512d29c5681cfb81affe3878fd3 | .travis.yml | .travis.yml | language: python
python:
- "pypy"
- 2.6
- 2.7
- 3.3
- 3.4
matrix:
include:
- python: "3.2"
install:
- pip install jsonschema==2.3.0
script:
- python setup.py test
install:
- pip install coveralls
script:
- coverage run --source=jsonmerge setup.py test
after_success:
- coveralls
| language: python
python:
- "pypy"
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
matrix:
include:
- python: "3.2"
install:
- pip install jsonschema==2.3.0
script:
- python setup.py test
install:
- pip install coveralls
script:
- coverage run --source=jsonmerge setup.py test
after_success:
- coveralls
| Add Python 3.5 and 3.6 to Travis. | Add Python 3.5 and 3.6 to Travis.
| YAML | mit | avian2/jsonmerge |
46effd879a54d0d421c98186ec145dc08830869e | .travis.yml | .travis.yml | language: objective-c
script:
- xctool -scheme 'UINavigationItem+Margin' -sdk iphonesimulator7.1 CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO test
- xctool -scheme 'UINavigationItem+Margin' -sdk iphonesimulator8.1 CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO test
| language: objective-c
osx_image: xcode8.3
sudo: false
env:
global:
- PROJECT="UINavigationItem+Margin.xcodeproj"
- IOS_SDK="iphonesimulator10.3"
- IOS_DESTINATION="platform=iOS Simulator,name=iPhone 7,OS=10.3"
matrix:
- SCHEME="UINavigationItem+Margin" SDK="$IOS_SDK" ACTION="test"
script:
- set -o pipefail && xcodebuild clean $ACTION -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$IOS_DESTINATION" -configuration Debug CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c
| Use Xcode 8.3 in Travis | Use Xcode 8.3 in Travis
| YAML | mit | devxoul/UINavigationItem-Margin,devxoul/UINavigationItem-Margin |
64ff44f434b85629a4e6f318fd4919a0347405dd | .travis.yml | .travis.yml | language: node_js
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
node_js:
- "4"
- "5"
- "6"
- "7"
before_install:
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
| language: node_js
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
node_js:
- "4"
- "6"
- "7"
before_install:
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
| Remove Node.js v5 from CI testing | Remove Node.js v5 from CI testing
Versions 4, 6, and 7 are the currently-supported releases:
https://github.com/nodejs/LTS/tree/1a10c515de897ea3ad73f6c2d7e4d145be0b27c5
| YAML | mit | btmills/queue |
3b7cd04968af4e3037c124df53d81e5c709bce14 | src/main/resources/config/application.yml | src/main/resources/config/application.yml | swagger:
title: Sample API
description: Sample API!
version: 0.0.1
termsOfServiceUrl: http://google.com/
contact:
license: Apache 2.0
licenseUrl: http://www.apache.org/licenses/LICENSE-2.0.html
server:
tomcat:
basedir: tomcat
max-threads: 200
access-log-enabled: true
access-log-pattern: "%h %{X-Forwarded-For}i %l %u %t %r %s %b %D"
security:
basic:
enabled: false | swagger:
title: Sample API
description: Sample API!
version: 0.0.1
termsOfServiceUrl: http://google.com/
contact:
license: Apache 2.0
licenseUrl: http://www.apache.org/licenses/LICENSE-2.0.html
server:
tomcat:
basedir: tomcat
max-threads: 200
access-log-enabled: true
access-log-pattern: "%h %{X-Forwarded-For}i %l %u %t %r %s %b %D"
security:
basic:
enabled: false
spring:
application:
name: app # Prevents the leaking of information in response header X-Application-Context
index: 0 # Prevents the leaking of information in response headers X-Application-Context | Remove sensitive info from X-Application-Context header | Remove sensitive info from X-Application-Context header
| YAML | mit | reecefenwick/spring-boot-template,reecefenwick/spring-boot-template,reecefenwick/conversion-api,reecefenwick/conversion-api |
a248ffe6240ac01443ecd0ed5fd3da50dfad84e7 | metadata/com.github.cetoolbox.yml | metadata/com.github.cetoolbox.yml | Categories:
- Science & Education
License: Apache-2.0
WebSite: https://cetoolbox.github.io
SourceCode: https://github.com/cetoolbox/cetoolbox
IssueTracker: https://github.com/cetoolbox/cetoolbox/issues
AutoName: CEToolbox
Description: |-
The CEToolbox project aims to provide a convenient tool for computing Capillary
Electrophoresis parameters.
RepoType: git
Repo: https://github.com/cetoolbox/cetoolbox.git
Builds:
- versionName: '1.3'
versionCode: 5
commit: v1.3.0
subdir: app
gradle:
- yes
- versionName: 1.3.2
versionCode: 7
commit: v1.3.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.3.2
CurrentVersionCode: 7
| Categories:
- Science & Education
License: Apache-2.0
WebSite: https://cetoolbox.github.io
SourceCode: https://github.com/cetoolbox/cetoolbox
IssueTracker: https://github.com/cetoolbox/cetoolbox/issues
AutoName: CEToolbox
Description: |-
The CEToolbox project aims to provide a convenient tool for computing Capillary
Electrophoresis parameters.
RepoType: git
Repo: https://github.com/cetoolbox/cetoolbox.git
Builds:
- versionName: '1.3'
versionCode: 5
commit: v1.3.0
subdir: app
gradle:
- yes
- versionName: 1.3.2
versionCode: 7
commit: v1.3.2
subdir: app
gradle:
- yes
- versionName: 1.4.0
versionCode: 8
commit: v1.4.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.4.0
CurrentVersionCode: 8
| Update CEToolbox to 1.4.0 (8) | Update CEToolbox to 1.4.0 (8)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
a7c29ac341eaeaba48beb3d389fea22474b06619 | metadata/de.wellenvogel.bonjourbrowser.yml | metadata/de.wellenvogel.bonjourbrowser.yml | Categories:
- Internet
License: MIT
AuthorName: Andreas Vogel
AuthorEmail: andreas@wellenvogel.net
AuthorWebSite: https://www.wellenvogel.de/
SourceCode: https://github.com/wellenvogel/BonjourBrowser
IssueTracker: https://github.com/wellenvogel/BonjourBrowser/issues
AutoName: BonjourBrowser
RepoType: git
Repo: https://github.com/wellenvogel/BonjourBrowser
Builds:
- versionName: '1.6'
versionCode: 106
commit: release-106
subdir: app
gradle:
- yes
- versionName: '1.7'
versionCode: 107
commit: release-107
subdir: app
gradle:
- yes
- versionName: '1.9'
versionCode: 109
commit: release-109
subdir: app
gradle:
- yes
- versionName: '1.11'
versionCode: 111
commit: release-111
subdir: app
gradle:
- yes
AutoUpdateMode: Version release-%c
UpdateCheckMode: Tags
CurrentVersion: '1.11'
CurrentVersionCode: 111
| Categories:
- Internet
License: MIT
AuthorName: Andreas Vogel
AuthorEmail: andreas@wellenvogel.net
AuthorWebSite: https://www.wellenvogel.de/
SourceCode: https://github.com/wellenvogel/BonjourBrowser
IssueTracker: https://github.com/wellenvogel/BonjourBrowser/issues
AutoName: BonjourBrowser
RepoType: git
Repo: https://github.com/wellenvogel/BonjourBrowser
Builds:
- versionName: '1.6'
versionCode: 106
commit: release-106
subdir: app
gradle:
- yes
- versionName: '1.7'
versionCode: 107
commit: release-107
subdir: app
gradle:
- yes
- versionName: '1.9'
versionCode: 109
commit: release-109
subdir: app
gradle:
- yes
- versionName: '1.11'
versionCode: 111
commit: release-111
subdir: app
gradle:
- yes
- versionName: '1.12'
versionCode: 112
commit: 73ab55bd1d8338c8960912e67e7a143c92991023
subdir: app
gradle:
- yes
AutoUpdateMode: Version release-%c
UpdateCheckMode: Tags
CurrentVersion: '1.12'
CurrentVersionCode: 112
| Update BonjourBrowser to 1.12 (112) | Update BonjourBrowser to 1.12 (112)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
08e906092aa021aaae6f2fac927ed7dd685e2bd0 | playbooks/oauth_client_setup.yml | playbooks/oauth_client_setup.yml | - name: Configure OAuth2 clients
hosts: all
become: True
gather_facts: True
vars_files:
- "roles/common_vars/defaults/main.yml"
- "roles/edxapp/defaults/main.yml"
- "roles/insights/defaults/main.yml"
- "roles/ecommerce/defaults/main.yml"
- "roles/credentials/defaults/main.yml"
- "roles/discovery/defaults/main.yml"
- "roles/journals/defaults/main.yml"
- "roles/veda_web_frontend/defaults/main.yml"
roles:
- oauth_client_setup
| - name: Configure OAuth2 clients
hosts: all
become: True
gather_facts: True
vars_files:
- "roles/common_vars/defaults/main.yml"
- "roles/edxapp/defaults/main.yml"
- "roles/insights/defaults/main.yml"
- "roles/ecommerce/defaults/main.yml"
- "roles/credentials/defaults/main.yml"
- "roles/discovery/defaults/main.yml"
- "roles/journals/defaults/main.yml"
- "roles/veda_web_frontend/defaults/main.yml"
- "roles/registrar/defaults/main.yml"
- "roles/designer/defaults/main.yml"
roles:
- oauth_client_setup
| Include Registrar & Designer defaults in OAuth2 role | Include Registrar & Designer defaults in OAuth2 role
| YAML | agpl-3.0 | stvstnfrd/configuration,arbrandes/edx-configuration,mitodl/configuration,arbrandes/edx-configuration,EDUlib/configuration,mitodl/configuration,edx/configuration,EDUlib/configuration,arbrandes/edx-configuration,edx/configuration,arbrandes/edx-configuration,mitodl/configuration,EDUlib/configuration,EDUlib/configuration,stvstnfrd/configuration,edx/configuration,stvstnfrd/configuration,appsembler/configuration,edx/configuration,stvstnfrd/configuration,appsembler/configuration,EDUlib/configuration,appsembler/configuration,stvstnfrd/configuration,mitodl/configuration,arbrandes/edx-configuration,appsembler/configuration |
45d844882b8a26be0f23c98ebbaeae0439d3408b | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: /PySyft
docker:
- image: docker:latest
steps:
- checkout
- setup_remote_docker
- run:
name: Build application Docker image
command: |
docker build -t pysyft .
- run:
name: Run tests
command: |
docker run --rm pysyft pytest
docker run --rm pysyft pytest --flake8
- deploy:
name: Push application Docker image
command: |
if [ "${CIRCLE_BRANCH}" == "develop" ]; then
docker login -u "${DOCKERHUB_USER}" -p "${DOCKERHUB_PASS}"
docker tag pysyft "${DOCKERHUB_REPO}:edge"
docker push "${DOCKERHUB_REPO}:edge"
elif [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u "${DOCKERHUB_USER}" -p "${DOCKERHUB_PASS}"
docker tag pysyft "${DOCKERHUB_REPO}:latest"
docker push "${DOCKERHUB_REPO}:latest"
fi
| version: 2
jobs:
build:
working_directory: /PySyft
docker:
- image: docker:latest
steps:
# Ensure your image has git, otherwise the checkout step will fail
- run: apt-get -qq update; apt-get -y install git
- checkout
- setup_remote_docker
- run:
name: Build application Docker image
command: |
docker build -t pysyft .
- run:
name: Run tests
command: |
docker run --rm pysyft pytest
docker run --rm pysyft pytest --flake8
- deploy:
name: Push application Docker image
command: |
if [ "${CIRCLE_BRANCH}" == "develop" ]; then
docker login -u "${DOCKERHUB_USER}" -p "${DOCKERHUB_PASS}"
docker tag pysyft "${DOCKERHUB_REPO}:edge"
docker push "${DOCKERHUB_REPO}:edge"
elif [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u "${DOCKERHUB_USER}" -p "${DOCKERHUB_PASS}"
docker tag pysyft "${DOCKERHUB_REPO}:latest"
docker push "${DOCKERHUB_REPO}:latest"
fi
| Add git to circle image | Add git to circle image
| YAML | apache-2.0 | OpenMined/PySyft,dipanshunagar/PySyft,OpenMined/PySyft,sajalsubodh22/PySyft,dipanshunagar/PySyft,joewie/PySyft,aradhyamathur/PySyft,sajalsubodh22/PySyft,joewie/PySyft,OpenMined/PySyft,aradhyamathur/PySyft,OpenMined/PySyft |
44ada655eee1eb8187f9e3e205bcd5550430cd62 | .circleci/config.yml | .circleci/config.yml | version: 2
workflows:
version: 2
test:
jobs:
- test-3.6
- test-3.5
- test-2.7
jobs:
test-3.6: &test-template
docker:
image: circleci/python:3.6
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "setup.py" }}
- v1-dependencies-
- run:
name: Install dependencies
command: |
pip install virtualenv
virtualenv venv
. venv/bin/activate
pip install -e .[dev]
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "setup.py" }}
- run:
name: Run tests
command: |
. venv/bin/activate
pytest
test-3.5:
<<: *test-template
docker:
image: circleci/python:3.5
test-2.7:
<<: *test-template
docker:
image: circleci/python:2.7
| version: 2
workflows:
version: 2
test:
jobs:
- test-3.6
- test-3.5
- test-2.7
jobs:
test-3.6: &test-template
docker:
- image: circleci/python:3.6
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "setup.py" }}
- v1-dependencies-
- run:
name: Install dependencies
command: |
pip install virtualenv
virtualenv venv
. venv/bin/activate
pip install -e .[dev]
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "setup.py" }}
- run:
name: Run tests
command: |
. venv/bin/activate
pytest
test-3.5:
<<: *test-template
docker:
- image: circleci/python:3.5
test-2.7:
<<: *test-template
docker:
- image: circleci/python:2.7
| Fix CircleCI YAML Docker declaration | Fix CircleCI YAML Docker declaration
| YAML | mit | adambrenecki/virtualfish,adambrenecki/virtualfish |
f4cc105f93e9846685b078ecf07786d1d13d7966 | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
haskell: haskell-works/haskell-build-2@1.6.17
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
context: haskell-ci
- haskell/build:
name: GHC 8.4.4
executor: haskell/ghc-8_4_4
context: haskell-ci
- haskell/build:
name: GHC 8.6.4
executor: haskell/ghc-8_6_4
context: haskell-ci
- github/release-cabal:
name: GitHub Release
context: haskell-ci
requires:
- GHC 8.2.2
- GHC 8.4.4
- GHC 8.6.4
checkout: true
filters:
branches:
only: master
- hackage/upload:
context: haskell-ci
publish: true
requires:
- GitHub Release
username: ${HACKAGE_USER}
password: ${HACKAGE_PASS}
| version: 2.1
orbs:
haskell: haskell-works/haskell-build-2@1.6.17
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
context: haskell-ci
binary-cache-uri: ${BINARY_CACHE_URI-"http://hw-binary-cache-us-west-2-a.s3-website-us-west-2.amazonaws.com/archive"}
- haskell/build:
name: GHC 8.4.4
executor: haskell/ghc-8_4_4
context: haskell-ci
binary-cache-uri: ${BINARY_CACHE_URI-"http://hw-binary-cache-us-west-2-a.s3-website-us-west-2.amazonaws.com/archive"}
- haskell/build:
name: GHC 8.6.4
executor: haskell/ghc-8_6_4
context: haskell-ci
binary-cache-uri: ${BINARY_CACHE_URI-"http://hw-binary-cache-us-west-2-a.s3-website-us-west-2.amazonaws.com/archive"}
- github/release-cabal:
name: GitHub Release
context: haskell-ci
requires:
- GHC 8.2.2
- GHC 8.4.4
- GHC 8.6.4
checkout: true
filters:
branches:
only: master
- hackage/upload:
context: haskell-ci
publish: true
requires:
- GitHub Release
username: ${HACKAGE_USER}
password: ${HACKAGE_PASS}
| Add fallback binary cache uri | Add fallback binary cache uri
| YAML | bsd-3-clause | haskell-works/hw-prim |
d623235d6a9c89585476ec5d5f830ea69f1330b3 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/camerakit-android
docker:
- image: circleci/android:api-25-alpha
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "camerakit/build.gradle" }}
- run:
name: Download Dependencies
command: ./gradlew androidDependencies
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "camerakit/build.gradle" }}
- run:
name: Run Tests
command: ./gradlew lint test
- store_artifacts:
path: app/build/reports
destination: reports
- store_test_results:
path: app/build/test-results
- deploy:
name: Deploy Snapshot to Bintray
command: bash ./deploy.sh
| version: 2
jobs:
build:
working_directory: ~/camerakit-android
docker:
- image: mwangijames/android-26-alpha-ndk
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "camerakit/build.gradle" }}
- run:
name: Download Dependencies
command: ./gradlew androidDependencies
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "camerakit/build.gradle" }}
- run:
name: Run Tests
command: ./gradlew lint test
- store_artifacts:
path: app/build/reports
destination: reports
- store_test_results:
path: app/build/test-results
- deploy:
name: Deploy Snapshot to Bintray
command: bash ./deploy.sh
| Update circle docker to 3rd party with ndk support | Update circle docker to 3rd party with ndk support
| YAML | mit | wonderkiln/CameraKit-Android,gogopop/CameraKit-Android,wonderkiln/CameraKit-Android,wonderkiln/CameraKit-Android,wonderkiln/CameraKit-Android,flurgle/CameraKit-Android |
09f65badd7908a535bc82724f4d1b94ce363bfca | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0-stretch-node-browsers
steps:
- checkout
- run:
name: Install miniconda
command: |
wget -q https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh;
chmod +x ~/miniconda.sh;
~/miniconda.sh -b -p ~/miniconda;
echo "export PATH=~/miniconda/bin:$PATH" >> $BASH_ENV;
- run:
name: Setup Python environment
command: |
conda update --yes --quiet conda;
pip install matplotlib Pillow
pip install sphinx sphinx-gallery sphinx_bootstrap_theme
pip install cython scipy
pip install --upgrade mne
pip install scikit-learn
pip install scikit-optimize
pip install numpydoc
pip install nipype
python setup.py develop
- run:
name: Build the documentation
command: |
cd doc
make html
- store_artifacts:
path: doc/_build/html/
destination: html
| version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0-stretch-node-browsers
steps:
- checkout
- run:
name: Install miniconda
command: |
wget -q https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh;
chmod +x ~/miniconda.sh;
~/miniconda.sh -b -p ~/miniconda;
echo "export PATH=~/miniconda/bin:$PATH" >> $BASH_ENV;
- run:
name: Setup Python environment
command: |
conda update --yes --quiet conda;
pip install matplotlib Pillow
pip install sphinx sphinx-gallery sphinx_bootstrap_theme
pip install cython scipy
pip install --upgrade mne
pip install scikit-learn
pip install scikit-optimize
pip install numpydoc
pip install nipype
conda install graphviz pydot
python setup.py develop
- run:
name: Build the documentation
command: |
cd doc
make html
- store_artifacts:
path: doc/_build/html/
destination: html
| FIX graphviz for viz of workflow | FIX graphviz for viz of workflow
| YAML | bsd-3-clause | neuropycon/ephypype |
7c76b7df25454cd2ca4dfe6c3920bbc956dfe8d6 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/danger
docker:
- image: ruby:2.3
environment:
- RAILS_ENV=test
- RACK_ENV=test
steps:
- checkout
- run: gem update --system 2.4.8
- run: gem install bundler
- restore_cache:
key: gem-cache-{{ .Branch }}-{{ checksum "Gemfile" }}
- run: bundle install --path vendor/bundle
- save_cache:
key: gem-cache-{{ .Branch }}-{{ checksum "Gemfile" }}
paths:
- vendor/bundle
- run: git config --global user.email "danger@example.com"
- run: git config --global user.name "Danger McShane"
- run: bundle exec rake specs
- run: '[ ! -z $DANGER_GITHUB_API_TOKEN ] && bundle exec danger || echo "Skipping Danger for External Contributor"'
- run: bundle exec danger init --mousey --impatient
| version: 2
jobs:
build:
working_directory: ~/danger
docker:
- image: ruby:2.3
environment:
- RAILS_ENV=test
- RACK_ENV=test
steps:
- checkout
- run: gem update --system 2.4.8
- run: gem install bundler -v '1.17.3'
- restore_cache:
key: gem-cache-{{ .Branch }}-{{ checksum "Gemfile" }}
- run: bundle install --path vendor/bundle
- save_cache:
key: gem-cache-{{ .Branch }}-{{ checksum "Gemfile" }}
paths:
- vendor/bundle
- run: git config --global user.email "danger@example.com"
- run: git config --global user.name "Danger McShane"
- run: bundle exec rake specs
- run: '[ ! -z $DANGER_GITHUB_API_TOKEN ] && bundle exec danger || echo "Skipping Danger for External Contributor"'
- run: bundle exec danger init --mousey --impatient
| Update bundler version for CircleCI | Update bundler version for CircleCI
| YAML | mit | danger/danger,KrauseFx/danger,danger/danger,KrauseFx/danger,danger/danger |
9cb9f4c317ebbc7c17aaf28487b14d6a6ff0d2d2 | .circleci/config.yml | .circleci/config.yml | defaults: &defaults
working_directory: ~/project
docker:
- image: node:latest
version: 2
jobs:
install:
<<: *defaults
steps:
- restore_cache:
key: stylelint-application
- checkout
- run:
name: Install stylelint
command: |
npm install --global stylelint
npm install stylelint-config-standard
- save_cache:
paths:
- /usr/local/bin/stylelint
- /usr/local/lib/node_modules
key: stylelint-application-{{ checksum "/usr/local/lib/node_modules/stylelint/package.json" }}
- persist_to_workspace:
root: /usr/local/bin
paths:
- stylelint
- persist_to_workspace:
root: /usr/local/lib
paths:
- node_modules
- persist_to_workspace:
root: ~/
paths:
- project
version:
<<: *defaults
steps:
- attach_workspace:
at: /usr/local/bin
- attach_workspace:
at: /usr/local/lib
- run:
name: System information
command: uname -a
- run:
name: Node.js version
command: node --version
- run:
name: stylelint version
command: stylelint --version
lint:
<<: *defaults
steps:
- attach_workspace:
at: /usr/local/bin
- attach_workspace:
at: /usr/local/lib
- attach_workspace:
at: ~/
- run:
name: Run stylelint
command: stylelint ./*.css
workflows:
version: 2
stylelint:
jobs:
- install
- version:
requires:
- install
- lint:
requires:
- install
| defaults: &defaults
working_directory: ~/project
docker:
- image: node:latest
version: 2
jobs:
install:
<<: *defaults
steps:
- checkout
- restore_cache:
key: stylelint-application
- run:
name: Install stylelint
command: npm install stylelint stylelint-config-standard
- save_cache:
paths:
- ./node_modules
- ./package-lock.json
key: stylelint-application-{{ checksum "./package-lock.json" }}
- persist_to_workspace:
root: ~/
paths:
- project
version:
<<: *defaults
steps:
- attach_workspace:
at: ~/
- run:
name: System information
command: uname -a
- run:
name: Node.js version
command: node --version
- run:
name: stylelint version
command: ./node_modules/.bin/stylelint --version
lint:
<<: *defaults
steps:
- attach_workspace:
at: ~/
- run:
name: Run stylelint
command: ./node_modules/.bin/stylelint -- ./*.css
workflows:
version: 2
stylelint:
jobs:
- install
- version:
requires:
- install
- lint:
requires:
- install
| Install stylelint into local directory | Install stylelint into local directory
By default, npm is installed in /usr/local/lib/node_modules.
Caching /usr/local/lib/node_modules reverts version of npm to older one.
| YAML | unlicense | curipha/userstyles |
ed717f96ed27583b09004888c807260ec44e2a01 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:9@sha256:1632bcfcebea3d44a3835d0c53c0d58f1153f4742e77fc313cebfe5b31ecc074
- image: circleci/mongo:3@sha256:0ac35bbb9d95ae30faab813014ee90eebc083cb0c301f2a539a42115ada1aff9
- image: redis:4@sha256:fc13b47aca9b5b53f625efe91bcd5cc44c637e80a81e5b223d5a98a6eac7ceb2
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:1632bcfcebea3d44a3835d0c53c0d58f1153f4742e77fc313cebfe5b31ecc074
- image: circleci/mongo:3@sha256:36180754020ffa6fefb84a67fe46aa65e7d2ac12f6d20c89eec139ec2540469a
- image: redis:4@sha256:fc13b47aca9b5b53f625efe91bcd5cc44c637e80a81e5b223d5a98a6eac7ceb2
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 361807 | Update circleci/mongo:3 Docker digest to 361807 | YAML | mit | js-accounts/accounts |
57646689f3595c39d1e8b61ae8ac784119ea2cf3 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/codelabs
docker:
- image: circleci/node:8.1.2
steps:
- checkout
- run:
name: install yarn
command: 'yarn install'
- run:
name: lint
command: yarn lint
- run:
name: test
command: yarn test
| version: 2
jobs:
build-node8:
working_directory: ~/codelabs
docker:
- image: circleci/node:8
steps:
- checkout
- run:
name: install yarn
command: 'yarn install'
- run:
name: lint
command: yarn lint
- run:
name: test
command: yarn test
build-node9:
working_directory: ~/codelabs
docker:
- image: circleci/node:9
steps:
- checkout
- run:
name: install yarn
command: 'yarn install'
- run:
name: lint
command: yarn lint
- run:
name: test
command: yarn test
| Add supported node version in circleci | Add supported node version in circleci
| YAML | mit | eleven-labs/codelabs,eleven-labs/codelabs |
35fa705642b0307ec3f9011883c131d243cefdf9 | .circleci/config.yml | .circleci/config.yml | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10
# 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/mongo:3.4.4
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn global add npm
- run: npm i -g elm
- run: npm i -g snyk
- run: npm i -g elm-test
- run: npm install
- run: elm-package install --yes
- run: snyk test
- save_cache:
paths:
- node_modules
- elm-stuff
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: npm run build
- run: npm test | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10
# 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/mongo:3.4.4
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm i -g elm
- run: npm i -g snyk
- run: npm i -g elm-test
- run: npm install
- run: elm-package install --yes
- run: snyk test
- save_cache:
paths:
- node_modules
- elm-stuff
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: npm run build
- run: npm test | Remove unauthorized npm update command | ci(circleci):: Remove unauthorized npm update command
| YAML | mit | OzTK/elm-express-typescript-webpack-boilerplate,OzTK/elm-express-boilerplate,OzTK/elm-express-boilerplate,OzTK/elm-express-typescript-webpack-boilerplate,OzTK/elm-express-boilerplate,OzTK/elm-express-typescript-webpack-boilerplate |
0f36983c926a169a37fa8cb000903e29fbd8e43e | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: '/:title.html'
relative_permalinks: true
# Setup
title: "Adriaan's blog"
tagline: "Adriaan's coding blog"
description: 'Just learnings, no bullshit'
url: https://blog.adriaan.io
baseurl: /
disqus_shortname: demaandvanadriaan
author:
name: 'Adriaan van Rossum'
url: https://twitter.com/harianus
paginate: 20
defaults:
-
scope:
path: "" # an empty string here means all files in the project
type: "posts" # previously `post` in Jekyll 2.2.
values:
layout: "post"
is_post: true
| # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: '/:title.html'
# Setup
title: "Adriaan's blog"
tagline: "Adriaan's coding blog"
description: 'Just learnings, no bullshit'
url: https://blog.adriaan.io
baseurl: /
disqus_shortname: demaandvanadriaan
author:
name: 'Adriaan van Rossum'
url: https://twitter.com/harianus
paginate: 20
defaults:
-
scope:
path: "" # an empty string here means all files in the project
type: "posts" # previously `post` in Jekyll 2.2.
values:
layout: "post"
is_post: true
| Remove relative permalinks because GitHubs has deprecated it | Remove relative permalinks because GitHubs has deprecated it
See more: https://help.github.com/articles/removing-relative-permalinks/ | YAML | mit | harianus/blog.adriaan.io |
c5cc01245278d496990cbca93abd8f8acbbc3c7a | _config.yml | _config.yml | safe: true
lsi: false
pygments: true
permalink: /posts/:title
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "strikethrough", "superscript", "with_toc_data", "tables"]
name: Corey Haines
url: http://coreyhaines.github.com/stagingcoreyhaines.github.io
description: Corey's Ramblings
usernames:
twitter: coreyhaines
github: coreyhaines
gravatar_url: http://www.gravatar.com/avatar/3d7807bb66e1a0c68c73ab2daaa77d8f
| safe: true
lsi: false
pygments: true
permalink: /posts/:title
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "strikethrough", "superscript", "with_toc_data", "tables"]
name: Corey Haines
url: http://coreyhaines.github.io/stagingblog
description: Corey's Ramblings
usernames:
twitter: coreyhaines
github: coreyhaines
gravatar_url: http://www.gravatar.com/avatar/3d7807bb66e1a0c68c73ab2daaa77d8f
| Update config to be correct url for staging | Update config to be correct url for staging
| YAML | mit | coreyhaines/staging-blog |
04bc841ad9483c3bfe4d09f7f27f447004e237b2 | _config.yml | _config.yml | markdown: kramdown
highlighter: pygments
permalink: /news/:year/:month/:day/:title/
excerpt_separator: ""
google_analytics_id: UA-46880695-1
organization_url: https://github.com/frida
repository: https://github.com/frida/frida
timezone: Europe/Oslo
collections:
docs:
output: true
name: Frida • A world-class dynamic instrumentation framework
description: Inject JavaScript to explore native apps on Windows, macOS, Linux, iOS, Android, and QNX
url: http://www.frida.re
twitter:
username: fridadotre
exclude: ["COPYING", "README.md"]
plugins:
- jekyll-feed
- jekyll-redirect-from
- jemoji
- jekyll-sitemap
- jekyll-seo-tag
- jekyll-avatar
- jekyll-gist
| markdown: kramdown
highlighter: pygments
permalink: /news/:year/:month/:day/:title/
excerpt_separator: ""
google_analytics_id: UA-46880695-1
organization_url: https://github.com/frida
repository: https://github.com/frida/frida
timezone: Europe/Oslo
collections:
docs:
output: true
name: Frida • A world-class dynamic instrumentation framework
description: Inject JavaScript to explore native apps on Windows, macOS, Linux, iOS, Android, and QNX
url: http://www.frida.re
twitter:
username: fridadotre
exclude: ["COPYING", "README.md"]
gems:
- jekyll-feed
- jekyll-redirect-from
- jemoji
- jekyll-sitemap
- jekyll-seo-tag
- jekyll-avatar
- jekyll-gist
| Revert "Update to the new Jekyll configuration format" | Revert "Update to the new Jekyll configuration format"
Too lazy to update the CI right now.
| YAML | mit | frida/frida-website,frida/frida-website,frida/frida-website |
bd0efaf1402d34f806726165adffdb724804049c | _config.yml | _config.yml | lang: en
title: Jürgen's Dev Blog
author: Jürgen Ratzenböck
description: Hi, I am Jürgen. I am a Software Developer and passionate about full-stack web technologies.
baseurl: "/jratzenboeck-blog" # the subpath of your site, e.g. /blog
url: "https://ratzi199.github.io" # the base hostname & protocol for your site, e.g. http://example.com
email: juergen.ratzenboeck@gmail.com
github_account: https://github.com/ratzi199
facebook_account: https://facebook.com/jurgen.ratzenbock
xing_account: https://www.xing.com/profile/Juergen_Ratzenboeck
# Post settings
excerpt_separator: <!--more-->
# Build settings
markdown: kramdown
exclude:
- Gemfile
- Gemfile.lock
sass:
style: compressed
gems:
- jekyll-feed | lang: en
title: Jürgen's Dev Blog
author: Jürgen Ratzenböck
description: Hi, I am Jürgen. I am a Software Developer and passionate about full-stack web technologies.
baseurl: "/" # the subpath of your site, e.g. /blog
url: "https://ratzi199.github.io" # the base hostname & protocol for your site, e.g. http://example.com
email: juergen.ratzenboeck@gmail.com
github_account: https://github.com/ratzi199
facebook_account: https://facebook.com/jurgen.ratzenbock
xing_account: https://www.xing.com/profile/Juergen_Ratzenboeck
# Post settings
excerpt_separator: <!--more-->
# Build settings
markdown: kramdown
exclude:
- Gemfile
- Gemfile.lock
sass:
style: compressed
gems:
- jekyll-feed | Change baseurl for customer domain | Change baseurl for customer domain
| YAML | mit | ratzi199/jratzenboeck-blog,ratzi199/jratzenboeck-blog,ratzi199/jratzenboeck-blog |
bcc86062d0cb02dae9ae22ec770f7c9b377de85f | _config.yml | _config.yml | # Site settings
title: Clean Blog
email: your-email@yourdomain.com
description: "Write your site description here. It will be used as your sites meta description as well!"
baseurl: "/startbootstrap-clean-blog-jekyll"
url: "http://yourdomain.com"
twitter_username: SBootstrap
github_username: davidtmiller
facebook_username: IronSummitMedia
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 5
exclude: ["node_modules"]
| # Site settings
title: Clean Blog
email: your-email@yourdomain.com
description: "Write your site description here. It will be used as your sites meta description as well!"
baseurl: "/startbootstrap-clean-blog-jekyll"
url: "http://yourdomain.com"
twitter_username: SBootstrap
github_username: davidtmiller
facebook_username: IronSummitMedia
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 5
exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"]
| Exclude source folders and files unnecessary for deployment. | Exclude source folders and files unnecessary for deployment.
Exclude the "less" folder, and "Gruntfile.js", "package.json", and "README.md" files from being copied to the "_site" destination folder as they are unnecessary for deployment of the site. | YAML | apache-2.0 | nupurshah91/nupurshah91.github.io,eddyhutchins/threeguysandawhine,jpace121/portfolio,dainiuxt/30dienu,muscly/muscly.github.io.raw,theneedytoday/theneedytoday.github.io,wasi/wasi.github.io,zhangzuoqiang/blog,raesian/SeattleLungProject,arikan/mulksuzlestirme,theneedytoday/theneedytoday.github.io,carinaboo/carinaboo.github.io,Rafeh01/data-science,guillaumev/mindthegap,zhangzuoqiang/blog,eluleci/clean-blog,dainiuxt/30dienu,daodaoliang/startbootstrap-clean-blog-jekyll,jncurrie/jncurrie.github.io,JimGeek/JimGeek.github.io,carinaboo/carinaboo.github.io,mihaigiurgeanu/cigarsxp,IronSummitMedia/startbootstrap-clean-blog-jekyll,muscly/muscly.github.io.raw,timeu/around-the-world,danrobinson/startbootstrap-clean-blog-jekyll,SotiriosVrachas/vegan.fat.gr,Ulysse33/startbootstrap-clean-blog-jekyll,dindinet/template-bootstrap-jekyl,NicolasBEAU/NicolasBEAU.github.io,LAmurals/murals,behcet-li/dolmus,daveaingram/daveaingram.github.io,frankolson/frankolson.github.io,ateneorees/ateneorees.github.io,cjexposed/site,rjw57/richwareham.com-static,shagunsodhani/shagunsodhani.github.io.old,yukiisoya23/startbootstrap-clean-blog-jekyll,ToungeInGeeknews/satire,adamingwersen/blog,raystudioco/raystudiophoto,yms9654/yms9654.github.io,ccdle12/blog,cacophonyapp/cacophonyapp.github.io,hillisjd/hillisjd.github.io,clinthoward/clinthoward.github.io,dam13n/dam13n.github.io,ceduliocezar/ceduliocezar.github.io,k3yavi/blog,boylinshan/boylinshan.github.io,davclark/reallygoodmoving.com,temetski/temetski.github.io,imsingh/blog,navnag/cleanjekyll,davidtmiller/davidtmiller-website,denisastan/denisastan.github.io,bhaveshpandey/bhaveshpandey.github.io,MilanAryal/startbootstrap-clean-blog-jekyll,kevinwchiang/kevinwchiang.github.io,jose-reyes-9/wshs-amplified,gopher-labs/gopher-labs.github.io,mihaigiurgeanu/cigarsxp,caseman72/startbootstrap-clean-blog-jekyll,eklavyamirani/eklavyamirani.github.com,RylanGraham/rylangraham.github.io,frankolson/frankolson.github.io,bhaveshpandey/bhaveshpandey.github.io,zycczy/blog,libm-ev/libm-ev.github.io,carlosmaxdev/carlosmaxdev.github.io,adamingwersen/blog,gold3bear/startbootstrap-clean-blog-jekyll,behcet/dolmus,lhf-leo/lhf-leo.github.io,eklavyamirani/eklavyamirani.github.com,ddtalk/blog,liberale-maenner/kfuchs333.github.io,caseman72/startbootstrap-clean-blog-jekyll,jassmith/jassmith.github.com,samneirinck/samneirinck.github.io,Akurada/blog,cjexposed/site,nikos-et-linette/nikos-et-linette.github.io,yukiisoya23/startbootstrap-clean-blog-jekyll,givinggarden/giving-garden-blog,BlackrockDigital/startbootstrap-clean-blog-jekyll,Akurada/blog,techstonia/startbootstrap-clean-blog-jekyll,fieldsofview/fieldsofview.github.io,anchietajunior/startbootstrap-clean-blog-jekyll,IraKorshunova/IraKorshunova.github.io,jose-reyes-9/wshs-amplified,bcheung92/bcheung92.github.io,yoshdog/yoshdog.github.io,lizlove/liz_blog,adamingwersen/blog,guillaumev/mindthegap,ateneorees/ateneorees.github.io,lhf-leo/lhf-leo.github.io,daohui/daohui.github.io,zycczy/blog,samneirinck/samneirinck.github.io,jhamman/jhamman.github.io,hupfen/hupfen.github.io,k3yavi/blog,cyfung/startbootstrap-clean-blog-jekyll,RylanGraham/rylangraham.github.io,givinggarden/giving-garden-blog,fieldsofview/fieldsofview.github.io,ajschumacher/seanabu.github.io,Miouge1/root314,sebbrochet/sebbrochet.github.io,pezholio/train-beers,bbutton/bbutton.github.io,andrewgy8/andrewgy8.github.io,jose-reyes-9/wshs-amplified,LAmurals/murals,christiannwamba/christiannwamba.github.io,caseman72/startbootstrap-clean-blog-jekyll,theneedytoday/theneedytoday.github.io,yoshdog/yoshdog.github.io,addi90/personal-blog,stenbln/stenbln.github.io,boylinshan/boylinshan.github.io,pawelnguyen/pawelnguyen.github.io,nicksrandall/nicksrandall.github.io,daohui/daohui.github.io,cjexposed/site,wei294597950/wei294597950.github.com,Miouge1/root314,sjs1178/sjs1178.github.io,joshstorz/joshstorz.github.io,ian-cuc/startbootstrap-clean-blog-jekyll,HeroXLabs/startbootstrap-clean-blog-jekyll,jonathanslima/jonathanslima.github.io,digitechsystem/TwilioSEITboot,daodaoliang/startbootstrap-clean-blog-jekyll,bcheung92/bcheung92.github.io,mariosant/mariosant.github.io,arthurbarros/arthurbarros.github.io,Rafeh01/data-science,openinfrastructure/openinfrastructure.github.io,jhamman/startbootstrap-clean-blog-jekyll,ddtalk/blog,joshstorz/joshstorz.github.io,pauloancheta/pauloancheta.github.io,mitchbox/blog,NicolasBEAU/NicolasBEAU.github.io,DaveDiehl/davediehl.github.io,philippeowagner/startbootstrap-clean-blog-jekyll,andrewgy8/andrewgy8.github.io,clinthoward/clinthoward.github.io,digitechsystem/TwilioSEITboot,dam13n/dam13n.github.io,SlideSolo/slide-blog,anouarattn/anouarattn.github.io,mariosant/mariosant.github.io,samwize/just2me.com,PurpIeHaze/startbootstrap-clean-blog-jekyll,Ulysse33/startbootstrap-clean-blog-jekyll,dindi-jekyll/startbootstrap-clean-blog-jekyll,addi90/personal-blog,iinkky/thatveterinaryguy.co.uk,mcanoy/mcanoy.github.io,zjshen/zjshen.github.io,jonathanslima/jonathanslima.github.io,yoshdog/yoshdog.github.io,zhangzuoqiang/blog,hellfish2/startbootstrap-clean-blog-jekyll,mikelui/mikelui.github.io,hsuresh/hsuresh.github.io,RyanNSJ/ryannsj.github.io,gold3bear/startbootstrap-clean-blog-jekyll,joyhuang-web/startbootstrap-clean-blog-jekyll,danrobinson/startbootstrap-clean-blog-jekyll,jncurrie/jncurrie.github.io,felipedaraujo/brunasantos,mitchbox/blog,smaret/smaret.github.io,yms9654/yms9654.github.io,Rafeh01/data-science,uhhuhyeah/uhhuhyeah.github.io,andrewgy8/andrewgy8.github.io,ddtalk/blog,behcet-li/dolmus,zjshen/zjshen.github.io,pikesley/train-beers,mqtlam/mqtlam.github.io,mqtlam/mqtlam.github.io,kurtinlane/kurtinlane.github.io,Gargamel1989/Travels,fallacymania/blog,mikelui/mikelui.github.io,simonmulser/sgs,emanuel/mercearia-local,felipedaraujo/brunasantos,dainiuxt/30dienu,edcamity/blog,NickolasHu/NickolasHu.github.io,raystudioco/raystudioco.github.io,eluleci/clean-blog,jpgcc/jpgcc.github.io,openinfrastructure/openinfrastructure.github.io,PurpIeHaze/startbootstrap-clean-blog-jekyll,SotiriosVrachas/vegan.fat.gr,nicksrandall/nicksrandall.github.io,pikesley/train-beers,GilbertoNeto/jaguaribetech,bhaveshpandey/bhaveshpandey.github.io,pangeo-data/pangeo-data.github.io,Gargamel1989/Travels,ccdle12/blog,mitchbox/blog,adrianmoisey/adrianmoisey.github.io,friends298/friends1,joyhuang-web/startbootstrap-clean-blog-jekyll,valleyrain-org/www-old,ateneorees/ateneorees.github.io,billymeinke/ltec-647c-blog-jekyll,cmrberry/cmrberry.github.io,matbaj/matbaj.github.com,addi90/personal-blog,MuralCartographies/muralsofTEMPLATE,shivasena/cleanblog,pezholio/train-beers,davclark/reallygoodmoving.com,ian-cuc/startbootstrap-clean-blog-jekyll,samwize/just2me.com,jassmith/jassmith.github.com,carlosmaxdev/carlosmaxdev.github.io,navnag/cleanjekyll,sjs1178/sjs1178.github.io,sunrainchy/sunrainchy,hellfish2/startbootstrap-clean-blog-jekyll,ToungeInGeeknews/satire,jassmith/jassmith.github.com,dankeder/dankeder.github.io,katat/katat.github.io,timeu/around-the-world,behcet/dolmus,yms9654/yms9654.github.io,jeffbayes/jeffbayes.github.io,adrianmoisey/adrianmoisey.github.io,nicksrandall/nicksrandall.github.io,fieldsofview/fieldsofview.github.io,jonmathews/jonmathews.github.io,dindinet/template-bootstrap-jekyl,ajkl/ajkl.github.io,muscly/muscly.github.io.raw,libm-ev/libm-ev.github.io,pfzenke/startbootstrap-clean-blog-jekyll,wei294597950/wei294597950.github.com,appleparan/mediviewsoft-landing,jeffbayes/jeffbayes.github.io,qqzhao/qqzhao.github.io,SlideSolo/slide-blog,eklavyamirani/eklavyamirani.github.com,jiewenli/blog,muscly/muscly.github.io.raw,sohailmamdani/sohailmamdani.github.io,MuralCartographies/muralsofTEMPLATE,ajkl/ajkl.github.io,IronSummitMedia/startbootstrap-clean-blog-jekyll,jiewenli/blog,lizlove/liz_blog,shinki95/shinki95.github.io,evaldosantos/startbootstrap-clean-blog-jekyll,cacophonyapp/cacophonyapp.github.io,Miouge1/root314,yms9654/yms9654.github.io,sunrainchy/sunrainchy,uhhuhyeah/uhhuhyeah.github.io,fallacymania/blog,PurpIeHaze/startbootstrap-clean-blog-jekyll,guydavis/guydavis.github.io,horsekitlin/startbootstrap-clean-blog-jekyll,davclark/reallygoodmoving.com,BlackrockDigital/startbootstrap-clean-blog-jekyll,stenbln/stenbln.github.io,ajschumacher/seanabu.github.io,katat/katat.github.io,douglasvlopes/douglasvlopes.github.io,adrianmoisey/adrianmoisey.github.io,shivasena/cleanblog,carlosmaxdev/carlosmaxdev.github.io,pfzenke/startbootstrap-clean-blog-jekyll,abbothzhang/albert,abbothzhang/albert,bfxy/clean-blog,cyfung/startbootstrap-clean-blog-jekyll,zjshen/zjshen.github.io,foffocd/foffocd.github.io,teamyappl/teamyappl.github.io,IronSummitMedia/startbootstrap-clean-blog-jekyll,nupurshah91/nupurshah91.github.io,NicolasBEAU/NicolasBEAU.github.io,samneirinck/samneirinck.github.io,douglasvlopes/douglasvlopes.github.io,kevinwchiang/kevinwchiang.github.io,horsekitlin/startbootstrap-clean-blog-jekyll,davidtmiller/davidtmiller-website,eddyhutchins/threeguysandawhine,stenbln/stenbln.github.io,kurtinlane/kurtinlane.github.io,317070/317070.github.io,gaijinsonatrain/gaijinsonatrain.github.io,sergiolimajr/startbootstrap-clean-blog-jekyll,jassmith/jassmith.github.com,NickolasHu/NickolasHu.github.io,bbutton/bbutton.github.io,317070/317070.github.io,gold3bear/startbootstrap-clean-blog-jekyll,rnduja/rnduja.github.io,timeu/around-the-world,abbothzhang/albert,terencekwt/terencekwt.github.io,SlideSolo/slide-blog,digitechsystem/TwilioSEITboot,anouarattn/anouarattn.github.io,lhf-leo/lhf-leo.github.io,LNITH/LNITH.github.io,matbaj/matbaj.github.com,rnduja/rnduja.github.io,joshstorz/joshstorz.github.io,boylinshan/boylinshan.github.io,mkster/mkster.github.io,ifpb/jaguaribetech,anchietajunior/startbootstrap-clean-blog-jekyll,philippeowagner/startbootstrap-clean-blog-jekyll,arthurbarros/arthurbarros.github.io,hsuresh/hsuresh.github.io,pauloancheta/pauloancheta.github.io,317070/317070.github.io,danrobinson/startbootstrap-clean-blog-jekyll,chezou/rubyist.club,yukiisoya23/startbootstrap-clean-blog-jekyll,wei294597950/wei294597950.github.com,gopher-labs/gopher-labs.github.io,ctmalloy/ctmalloy.github.io,MilanAryal/startbootstrap-clean-blog-jekyll,dindi-jekyll/startbootstrap-clean-blog-jekyll,ctmalloy/ctmalloy.github.io,pangeo-data/pangeo-data.github.io,christiannwamba/christiannwamba.github.io,mkster/mkster.github.io,libm-ev/libm-ev.github.io,JimGeek/JimGeek.github.io,cmrberry/cmrberry.github.io,raystudioco/raystudiophoto,ctmalloy/ctmalloy.github.io,cyfung/startbootstrap-clean-blog-jekyll,jhamman/jhamman.github.io,cacophonyapp/cacophonyapp.github.io,HeroXLabs/startbootstrap-clean-blog-jekyll,andrewgy8/andrewgy8.github.io,mkster/mkster.github.io,bbutton/bbutton.github.io,adamingwersen/blog,hillisjd/hillisjd.github.io,chezou/rubyist.club,IronSummitMedia/startbootstrap-clean-blog-jekyll,Kryptikko/kryptikko.github.io,foffocd/foffocd.github.io,jhamman/jhamman.github.io,nupurshah91/nupurshah91.github.io,italoclone/tatubola,temetski/temetski.github.io,RyanNSJ/ryannsj.github.io,qqzhao/qqzhao.github.io,shinki95/shinki95.github.io,ccdle12/blog,jhamman/jhamman.github.io,simonmulser/sgs,hcarver/hcarver.github.io,wasi/wasi.github.io,imsingh/blog,duncand0nuts/startbootstrap-clean-blog-jekyll,GilbertoNeto/jaguaribetech,appleparan/mediviewsoft-landing,friends298/friends1,smaret/smaret.github.io,Gargamel1989/Travels,givinggarden/giving-garden-blog,iinkky/thatveterinaryguy.co.uk,iinkky/thatveterinaryguy.co.uk,sohailmamdani/sohailmamdani.github.io,bfxy/clean-blog,BlackrockDigital/startbootstrap-clean-blog-jekyll,thalitar/thalitar2.github.io,MuralCartographies/muralsofTEMPLATE,pkofod/pkofod.github.io,techstonia/startbootstrap-clean-blog-jekyll,simonmulser/sgs,hillisjd/hillisjd.github.io,manthasriram/startbootstrap-clean-blog-jekyll,cmrberry/cmrberry.github.io,stenbln/stenbln.github.io,sohailmamdani/sohailmamdani.github.io,bfxy/clean-blog,fieldsofview/fieldsofview.github.io,boylinshan/boylinshan.github.io,ceduliocezar/ceduliocezar.github.io,raystudioco/raystudioco.github.io,muscly/muscly.github.io.raw,yukiisoya23/startbootstrap-clean-blog-jekyll,dankeder/dankeder.github.io,mitchbox/blog,MuralCartographies/muralsofTEMPLATE,terencekwt/terencekwt.github.io,IraKorshunova/IraKorshunova.github.io,eklavyamirani/eklavyamirani.github.com,uhhuhyeah/uhhuhyeah.github.io,chezou/rubyist.club,jpace121/portfolio,gaijinsonatrain/gaijinsonatrain.github.io,samwize/just2me.com,manthasriram/startbootstrap-clean-blog-jekyll,rjw57/richwareham.com-static,jncurrie/jncurrie.github.io,nikos-et-linette/nikos-et-linette.github.io,gaijinsonatrain/gaijinsonatrain.github.io,uhhuhyeah/uhhuhyeah.github.io,nicksrandall/nicksrandall.github.io,pauldo/startbootstrap-clean-blog-jekyll,raystudioco/raystudioco.github.io,thalitar/thalitar2.github.io,JosonJuPrivate/JosonJu.github.io,317070/317070.github.io,LNITH/LNITH.github.io,bcheung92/bcheung92.github.io,philippeowagner/startbootstrap-clean-blog-jekyll,mikelui/mikelui.github.io,giorgiop/nips15workshop,pauldo/startbootstrap-clean-blog-jekyll,arthurbarros/arthurbarros.github.io,Gargamel1989/Travels,foffocd/foffocd.github.io,douglasvlopes/douglasvlopes.github.io,Carrigan/carrigan.github.io,kurtinlane/kurtinlane.github.io,sjs1178/sjs1178.github.io,anouarattn/anouarattn.github.io,joyhuang-web/startbootstrap-clean-blog-jekyll,ifpb/jaguaribetech,timeu/around-the-world,kurtinlane/kurtinlane.github.io,shinki95/shinki95.github.io,libm-ev/libm-ev.github.io,pezholio/train-beers,wei294597950/wei294597950.github.com,enriquezm/midnight_sesh,rightpeter/startbootstrap-clean-blog-jekyll,Akurada/blog,duncand0nuts/startbootstrap-clean-blog-jekyll,ateneorees/ateneorees.github.io,billymeinke/ltec-647c-blog-jekyll,sunrainchy/sunrainchy,horsekitlin/startbootstrap-clean-blog-jekyll,rnduja/rnduja.github.io,pikesley/train-beers,Gargamel1989/Travels,mkster/mkster.github.io,shagunsodhani/shagunsodhani.github.io.old,eluleci/clean-blog,adamingwersen/blog,ccmolik/ccmo.me,RyanNSJ/ryannsj.github.io,guydavis/guydavis.github.io,evaldosantos/startbootstrap-clean-blog-jekyll,openinfrastructure/openinfrastructure.github.io,DaveDiehl/davediehl.github.io,ccmolik/ccmo.me,mcanoy/mcanoy.github.io,italoclone/tatubola,ccmolik/ccmo.me,chezou/rubyist.club,Rafeh01/data-science,behcet/dolmus,olympum/olympum.github.io,italoclone/tatubola,rjw57/richwareham.com-static,christiannwamba/christiannwamba.github.io,mihaigiurgeanu/cigarsxp,jhamman/startbootstrap-clean-blog-jekyll,abbothzhang/albert,sergiolimajr/startbootstrap-clean-blog-jekyll,temetski/temetski.github.io,jonmathews/jonmathews.github.io,DaveDiehl/davediehl.github.io,sohailmamdani/sohailmamdani.github.io,rjw57/richwareham.com-static,davidtmiller/davidtmiller-website,behcet/dolmus,theneedytoday/theneedytoday.github.io,guydavis/guydavis.github.io,carinaboo/carinaboo.github.io,anchietajunior/startbootstrap-clean-blog-jekyll,enriquezm/midnight_sesh,clinthoward/clinthoward.github.io,pawelnguyen/pawelnguyen.github.io,qqzhao/qqzhao.github.io,wasi/wasi.github.io,ccdle12/blog,gopher-labs/gopher-labs.github.io,openinfrastructure/openinfrastructure.github.io,Rafeh01/data-science,pauldo/startbootstrap-clean-blog-jekyll,eddyhutchins/threeguysandawhine,teamyappl/teamyappl.github.io,behcet-li/dolmus,jonmathews/jonmathews.github.io,sjs1178/sjs1178.github.io,jonathanslima/jonathanslima.github.io,pkofod/pkofod.github.io,liberale-maenner/kfuchs333.github.io,hsuresh/hsuresh.github.io,ccmolik/ccmo.me,pauloancheta/pauloancheta.github.io,olympum/olympum.github.io,trongthanh/startbootstrap-clean-blog-jekyll,RylanGraham/rylangraham.github.io,arikan/mulksuzlestirme,cacophonyapp/cacophonyapp.github.io,jhamman/startbootstrap-clean-blog-jekyll,IraKorshunova/IraKorshunova.github.io,gaijinsonatrain/gaijinsonatrain.github.io,pezholio/train-beers,emanuel/mercearia-local,Ulysse33/startbootstrap-clean-blog-jekyll,dindinet/template-bootstrap-jekyl,edcamity/blog,carlosmaxdev/carlosmaxdev.github.io,adrianmoisey/adrianmoisey.github.io,friends298/friends1,hupfen/hupfen.github.io,mcanoy/mcanoy.github.io,hellfish2/startbootstrap-clean-blog-jekyll,eddyhutchins/threeguysandawhine,behcet-li/dolmus,jpgcc/jpgcc.github.io,daodaoliang/startbootstrap-clean-blog-jekyll,Carrigan/carrigan.github.io,frankolson/frankolson.github.io,dam13n/dam13n.github.io,lhf-leo/lhf-leo.github.io,pikesley/train-beers,k3yavi/blog,lizlove/liz_blog,LNITH/LNITH.github.io,ajschumacher/seanabu.github.io,sebbrochet/sebbrochet.github.io,shagunsodhani/shagunsodhani.github.io.old,JosonJuPrivate/JosonJu.github.io,trongthanh/startbootstrap-clean-blog-jekyll,liberale-maenner/kfuchs333.github.io,pangeo-data/pangeo-data.github.io,ian-cuc/startbootstrap-clean-blog-jekyll,pfzenke/startbootstrap-clean-blog-jekyll,enriquezm/midnight_sesh,guydavis/guydavis.github.io,sergiolimajr/startbootstrap-clean-blog-jekyll,emanuel/mercearia-local,teamyappl/teamyappl.github.io,navnag/cleanjekyll,appleparan/mediviewsoft-landing,aitiba/blog,LAmurals/murals,ToungeInGeeknews/satire,k3yavi/blog,givinggarden/giving-garden-blog,hcarver/hcarver.github.io,bhaveshpandey/bhaveshpandey.github.io,joshstorz/joshstorz.github.io,jpgcc/jpgcc.github.io,liberale-maenner/kfuchs333.github.io,ceduliocezar/ceduliocezar.github.io,fallacymania/blog,dindi-jekyll/startbootstrap-clean-blog-jekyll,eluleci/clean-blog,pauldo/startbootstrap-clean-blog-jekyll,pkofod/pkofod.github.io,edcamity/blog,JosonJuPrivate/JosonJu.github.io,fallacymania/blog,mcanoy/mcanoy.github.io,LAmurals/murals,appleparan/mediviewsoft-landing,aitiba/blog,billymeinke/ltec-647c-blog-jekyll,dankeder/dankeder.github.io,ajkl/ajkl.github.io,zycczy/blog,zycczy/blog,Miouge1/root314,shinki95/shinki95.github.io,zycczy/blog,yms9654/yms9654.github.io,mqtlam/mqtlam.github.io,rightpeter/startbootstrap-clean-blog-jekyll,imsingh/blog,denisastan/denisastan.github.io,digitechsystem/TwilioSEITboot,ToungeInGeeknews/satire,arikan/mulksuzlestirme,raesian/SeattleLungProject,daveaingram/daveaingram.github.io,pauloancheta/pauloancheta.github.io,terencekwt/terencekwt.github.io,JimGeek/JimGeek.github.io,trongthanh/startbootstrap-clean-blog-jekyll,pangeo-data/pangeo-data.github.io,trongthanh/startbootstrap-clean-blog-jekyll,jiewenli/blog,SlideSolo/slide-blog,davclark/reallygoodmoving.com,foffocd/foffocd.github.io,christiannwamba/christiannwamba.github.io,HeroXLabs/startbootstrap-clean-blog-jekyll,felipedaraujo/brunasantos,ifpb/jaguaribetech,raystudioco/raystudiophoto,evaldosantos/startbootstrap-clean-blog-jekyll,guillaumev/mindthegap,aitiba/blog,hcarver/hcarver.github.io,terencekwt/terencekwt.github.io,Carrigan/carrigan.github.io,jpace121/portfolio,rightpeter/startbootstrap-clean-blog-jekyll,jiewenli/blog,giorgiop/nips15workshop,Kryptikko/kryptikko.github.io,RyanNSJ/ryannsj.github.io,mcanoy/mcanoy.github.io,mqtlam/mqtlam.github.io,olympum/olympum.github.io,thalitar/thalitar2.github.io,clinthoward/clinthoward.github.io,rjw57/richwareham.com-static,cmrberry/cmrberry.github.io,kevinwchiang/kevinwchiang.github.io,yoshdog/yoshdog.github.io,terencekwt/terencekwt.github.io,yoshdog/yoshdog.github.io,techstonia/startbootstrap-clean-blog-jekyll,katat/katat.github.io,jncurrie/jncurrie.github.io,katat/katat.github.io,duncand0nuts/startbootstrap-clean-blog-jekyll,NickolasHu/NickolasHu.github.io,sebbrochet/sebbrochet.github.io,DaveDiehl/davediehl.github.io,ceduliocezar/ceduliocezar.github.io,GilbertoNeto/jaguaribetech,friends298/friends1,aitiba/blog,manthasriram/startbootstrap-clean-blog-jekyll |
4ff9bcf1e1725e172d03fc4811aab2cee2590573 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: akkomar.github.io
email:
description: > # this means to ignore newlines until "baseurl:"
Software, JVM, Scala, Cassandra
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://akkomar.github.io" # the base hostname & protocol for your site
twitter_username: jekyllrb
github_username: jekyll
# Build settings
markdown: kramdown
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: akkomar.github.io
email:
description: > # this means to ignore newlines until "baseurl:"
Software, JVM, Scala, Cassandra
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://akkomar.github.io" # the base hostname & protocol for your site
twitter_username: akomarzewski
github_username: akkomar
# Build settings
markdown: kramdown
| Update twitter & github handles | Update twitter & github handles | YAML | mit | akkomar/akkomar.github.io |
d45a3bd3291e1f3eaa68926d82d78232c6163fc0 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Cyber Threat Intelligence Technical Committee
description: > # this means to ignore newlines until "baseurl:"
The OASIS Cyber Threat Intelligence (CTI) TC supports automated information
sharing for cybersecurity situational awareness, real-time network defense,
and sophisticated threat analysis.
baseurl: "/cti-documentation" # the subpath of your site, e.g. /blog
url: "https://oasis-open.github.io" # the base hostname & protocol for your site
# DO NOT MODIFY THE `last_updated` date. It should be updated automatically
# by the git pre-push hook.
last_updated: "Wed Jul 13 19:21:01 UTC 2022"
copyright: "Copyright © 2017-2022, OASIS Open"
# Build settings
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
smart_quotes: ["apos", "apos", "ldquo", "rdquo"]
exclude: ['hooks/README.md']
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Cyber Threat Intelligence Technical Committee
description: > # this means to ignore newlines until "baseurl:"
The OASIS Cyber Threat Intelligence (CTI) TC supports automated information
sharing for cybersecurity situational awareness, real-time network defense,
and sophisticated threat analysis.
baseurl: "/cti-documentation" # the subpath of your site, e.g. /blog
url: "https://oasis-open.github.io" # the base hostname & protocol for your site
# DO NOT MODIFY THE `last_updated` date. It should be updated automatically
# by the git pre-push hook.
last_updated: "Tue Aug 2 22:18:01 UTC 2022"
copyright: "Copyright © 2017-2022, OASIS Open"
# Build settings
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
smart_quotes: ["apos", "apos", "ldquo", "rdquo"]
exclude: ['hooks/README.md']
| Fix to add interoperability documents | Fix to add interoperability documents
| YAML | bsd-3-clause | oasis-open/cti-documentation,oasis-open/cti-documentation,oasis-open/cti-documentation,oasis-open/cti-documentation,oasis-open/cti-documentation |
da036e328dc92f09eafd8ad494a116084b504eb0 | _config.yml | _config.yml | # Permalinks
permalink: pretty
relative_permalinks: true
# Setup
title: Hawk Weisman
url: https://hawkweisman.me
paginate: 1
baseurl: /
author:
name: Hawk Weisman
url: https://hawkweisman.me
email: hawk@hawkweisman.me
kramdown:
input: GFM | # Permalinks
permalink: pretty
relative_permalinks: true
# Setup
title: Hawk Weisman
url: https://hawkweisman.me
paginate: 1
baseurl: /
author:
name: Hawk Weisman
url: https://hawkweisman.me
email: hawk@hawkweisman.me
exclude: ["website.sublime-project", "website.sublime-workspace", "*.log", "*.fdb_latexmk", "*.synctex.gz", "*.aux"]
defaults:
-
scope:
path: ""
type: "pages"
values:
layout: main"
-
scope:
path: "notebook"
type: "posts"
values:
layout: "post"
author: "Hawk Weisman"
kramdown:
input: GFM | Exclude project files, LaTeX aux files from Jekyll | Exclude project files, LaTeX aux files from Jekyll
| YAML | mit | hawkw/hawkw.github.io,hawkw/hawkw.github.io,hawkw/hawkw.github.io |
0c3885eb996e45c79ecbd9274ebae59d93b4781b | _config.yml | _config.yml | ########################### EDIT YOUR SETTINGS HERE
# Site settings
title: Brume # give your site a title
email: you@example.com # put your email address in here; optional
# edit your site description; keep it brief
description: > # this just means to ignore newlines until "baseurl:"
Brume is simple. It's easy to use. It's a Jekyll theme.
baseurl: # the subpath of your site, e.g. /blog/; if unsure, leave this blank
url: http://[username].github.io # replace [username] with your github username (no brackets)
github_username: github_username # replace with your github username
########################## DO NOT EDIT BELOW HERE UNLESS YOU'RE STOKED TO HACK
# build settings
markdown: kramdown
# highlighter: rouge # for local testing
highlighter: pygments # for deployment to github pages
permalink: /blog/:year-:month-:day/:title.html
kramdown:
input: GFM
sass:
sass_dir: public/css
style: :compressed
| ########################### EDIT YOUR SETTINGS HERE
# Site settings
title: Noah McMullen's Cool Blog for Adults # give your site a title
email: noahmcmlln@gmail.com # put your email address in here; optional
# edit your site description; keep it brief
description: > # this just means to ignore newlines until "baseurl:"
The adventures of a theory boy who's kind of afraid to code but will do it anyway.
baseurl: # the subpath of your site, e.g. /blog/; if unsure, leave this blank
url: http://noahmcmlln.github.io # replace [username] with your github username (no brackets)
github_username: noahmcmlln # replace with your github username
########################## DO NOT EDIT BELOW HERE UNLESS YOU'RE STOKED TO HACK
# build settings
markdown: kramdown
# highlighter: rouge # for local testing
highlighter: pygments # for deployment to github pages
permalink: /blog/:year-:month-:day/:title.html
kramdown:
input: GFM
sass:
sass_dir: public/css
style: :compressed
| Edit config.yml for initial site. | Edit config.yml for initial site.
Edited config.yml with personal information for the purpose of making a
new GitHub site.
| YAML | mit | noahmcmlln/noahmcmlln.github.io,noahmcmlln/noahmcmlln.github.io |
f2a992dc6943d13de15ef24842b1161b6aad386d | tasks/main.yml | tasks/main.yml | # Install Node.js using packages crafted by NodeSource
---
- name: Ensure the system can use the HTTPS transport for APT
stat:
path: /usr/lib/apt/methods/https
register: apt_https_transport
- name: Install HTTPS transport for APT
apt:
pkg: apt-transport-https
state: installed
when: not apt_https_transport.stat.exists
- name: Import the NodeSource GPG key into apt
apt_key:
url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key
state: present
- name: Add NodeSource deb repository
apt_repository:
repo: 'deb https://deb.nodesource.com/node_{{ debian_repo_version }} {{ ansible_distribution_release }} main'
state: present
- name: Add NodeSource deb-src repository
apt_repository:
repo: 'deb-src https://deb.nodesource.com/node_{{ debian_repo_version }} {{ ansible_distribution_release }} main'
state: present
- name: Add NodeSource repository preferences
template:
src: etc/apt/preferences.d/deb_nodesource_com_node.pref.2
dest: /etc/apt/preferences.d/deb_nodesource_com_node.pref
- name: Install Node.js
apt:
pkg:
- nodejs={{ nodejs_version }}*
state: installed
update_cache: yes
| # Install Node.js using packages crafted by NodeSource
---
- name: Ensure the system can use the HTTPS transport for APT
stat:
path: /usr/lib/apt/methods/https
register: apt_https_transport
- name: Install HTTPS transport for APT
apt:
pkg: apt-transport-https
state: installed
when: not apt_https_transport.stat.exists
- name: Import the NodeSource GPG key into apt
apt_key:
url: https://keyserver.ubuntu.com/pks/lookup?op=get&fingerprint=on&search=0x1655A0AB68576280
id: "68576280"
state: present
- name: Add NodeSource deb repository
apt_repository:
repo: 'deb https://deb.nodesource.com/node_{{ debian_repo_version }} {{ ansible_distribution_release }} main'
state: present
- name: Add NodeSource deb-src repository
apt_repository:
repo: 'deb-src https://deb.nodesource.com/node_{{ debian_repo_version }} {{ ansible_distribution_release }} main'
state: present
- name: Add NodeSource repository preferences
template:
src: etc/apt/preferences.d/deb_nodesource_com_node.pref.2
dest: /etc/apt/preferences.d/deb_nodesource_com_node.pref
- name: Install Node.js
apt:
pkg:
- nodejs={{ nodejs_version }}*
state: installed
update_cache: yes
| Install GPG key from keyserver.ubuntu.com | Install GPG key from keyserver.ubuntu.com
deb.nodesource.com is now in CloudFront, and older versions of Python
(such as than installed in Ubuntu 12.04 and 14.04) can no longer install
the GPG key from that server. Instead, install the key from
keyserver.ubuntu.com, and include an ID so that downloading can be
skipped if the key is already installed. Fixes #33.
| YAML | mit | nodesource/ansible-nodejs-role |
0626bcf73993fc96773064394881a4279daa960e | recipes/distro/meta.yaml | recipes/distro/meta.yaml | {% set name = "distro" %}
{% set version = "1.1.0" %}
{% set sha256 = "722054925f339a39ca411a8c7079f390a41d42c422697bedf228f1a9c46ac1ee" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: '{{ sha256 }}'
build:
skip: True # [not linux]
number: 0
entry_points:
- distro = distro:main
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
host:
- python
- setuptools
run:
- python
test:
commands:
- distro --help
imports:
- distro
about:
home: https://github.com/nir0s/distro
license: Apache-2.0
license_file: LICENSE
summary: Linux Distribution - a Linux OS platform information API
doc_url: http://distro.readthedocs.io/en/latest/
dev_url: https://github.com/nir0s/distro
extra:
recipe-maintainers:
- windelbouwman
- windelbouwmanbosch
| {% set name = "distro" %}
{% set version = "1.1.0" %}
{% set sha256 = "722054925f339a39ca411a8c7079f390a41d42c422697bedf228f1a9c46ac1ee" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: '{{ sha256 }}'
build:
skip: True # [not linux]
number: 0
entry_points:
- distro = distro:main
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
commands:
- distro --help
imports:
- distro
about:
home: https://github.com/nir0s/distro
license: Apache-2.0
license_file: LICENSE
summary: Linux Distribution - a Linux OS platform information API
doc_url: http://distro.readthedocs.io/en/latest/
dev_url: https://github.com/nir0s/distro
extra:
recipe-maintainers:
- windelbouwman
- windelbouwmanbosch
| Fix script by changing host into build. | Fix script by changing host into build.
| YAML | bsd-3-clause | rvalieris/staged-recipes,jakirkham/staged-recipes,asmeurer/staged-recipes,ReimarBauer/staged-recipes,glemaitre/staged-recipes,scopatz/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,conda-forge/staged-recipes,NOAA-ORR-ERD/staged-recipes,SylvainCorlay/staged-recipes,barkls/staged-recipes,Cashalow/staged-recipes,NOAA-ORR-ERD/staged-recipes,stuertz/staged-recipes,isuruf/staged-recipes,Juanlu001/staged-recipes,mariusvniekerk/staged-recipes,Juanlu001/staged-recipes,petrushy/staged-recipes,chrisburr/staged-recipes,hadim/staged-recipes,sodre/staged-recipes,cpaulik/staged-recipes,ceholden/staged-recipes,basnijholt/staged-recipes,rvalieris/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,ReimarBauer/staged-recipes,asmeurer/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,scopatz/staged-recipes,shadowwalkersb/staged-recipes,jochym/staged-recipes,jochym/staged-recipes,shadowwalkersb/staged-recipes,mcs07/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,jjhelmus/staged-recipes,stuertz/staged-recipes,barkls/staged-recipes,isuruf/staged-recipes,petrushy/staged-recipes,synapticarbors/staged-recipes,johanneskoester/staged-recipes,dschreij/staged-recipes,basnijholt/staged-recipes,ceholden/staged-recipes,johanneskoester/staged-recipes,birdsarah/staged-recipes,pmlandwehr/staged-recipes,synapticarbors/staged-recipes,pmlandwehr/staged-recipes,conda-forge/staged-recipes,jjhelmus/staged-recipes,dschreij/staged-recipes,guillochon/staged-recipes,Cashalow/staged-recipes,goanpeca/staged-recipes,SylvainCorlay/staged-recipes,sodre/staged-recipes,glemaitre/staged-recipes,rmcgibbo/staged-recipes,guillochon/staged-recipes,cpaulik/staged-recipes,chrisburr/staged-recipes,mcs07/staged-recipes,ocefpaf/staged-recipes,patricksnape/staged-recipes,igortg/staged-recipes,ocefpaf/staged-recipes,sodre/staged-recipes,rmcgibbo/staged-recipes |
8f2e7f3125dafb67c680f89d2d3dc4b921ac1181 | metadata/com.github.cetoolbox.yml | metadata/com.github.cetoolbox.yml | Categories:
- Science & Education
License: Apache-2.0
WebSite: https://cetoolbox.github.io
SourceCode: https://github.com/cetoolbox/cetoolbox
IssueTracker: https://github.com/cetoolbox/cetoolbox/issues
AutoName: CEToolbox
Description: |-
The CEToolbox project aims to provide a convenient tool for computing Capillary
Electrophoresis parameters.
RepoType: git
Repo: https://github.com/cetoolbox/cetoolbox.git
Builds:
- versionName: '1.3'
versionCode: 5
commit: v1.3.0
subdir: app
gradle:
- yes
- versionName: 1.3.2
versionCode: 7
commit: v1.3.2
subdir: app
gradle:
- yes
- versionName: 1.4.0
versionCode: 8
commit: v1.4.0
subdir: app
gradle:
- yes
- versionName: 1.4.1
versionCode: 9
commit: v1.4.1
subdir: app
gradle:
- yes
- versionName: 1.4.2
versionCode: 10
commit: v1.4.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.4.2
CurrentVersionCode: 10
| Categories:
- Science & Education
License: Apache-2.0
WebSite: https://cetoolbox.github.io
SourceCode: https://github.com/cetoolbox/cetoolbox
IssueTracker: https://github.com/cetoolbox/cetoolbox/issues
AutoName: CEToolbox
Description: |-
The CEToolbox project aims to provide a convenient tool for computing Capillary
Electrophoresis parameters.
RepoType: git
Repo: https://github.com/cetoolbox/cetoolbox.git
Builds:
- versionName: '1.3'
versionCode: 5
commit: v1.3.0
subdir: app
gradle:
- yes
- versionName: 1.4.2
versionCode: 10
commit: 1.4.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.4.2
CurrentVersionCode: 10
| Change AUM, change last tag and remove previous failed buids in CEToolbox | Change AUM, change last tag and remove previous failed buids in CEToolbox
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
78a0b96e95f460c00f1b06a6a79c8030aa9624bc | metadata/net.xisberto.timerpx.yml | metadata/net.xisberto.timerpx.yml | Categories:
- Time
License: Apache-2.0
AuthorName: Humberto Fraga
AuthorEmail: humberto.fraga+fdroid512@gmail.com
SourceCode: https://gitlab.com/humbertofraga/timerx
IssueTracker: https://gitlab.com/humbertofraga/timerx/issues
AutoName: Timer +X
RepoType: git
Repo: https://gitlab.com/humbertofraga/timerx.git
Builds:
- versionName: '1.1'
versionCode: 3
commit: v1.1
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 5
commit: b92b15d92200bc472fc99b901e3aeb467bb1cd24
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.2.1
CurrentVersionCode: 5
| Categories:
- Time
License: Apache-2.0
AuthorName: Humberto Fraga
AuthorEmail: humberto.fraga+fdroid512@gmail.com
SourceCode: https://gitlab.com/humbertofraga/timerx
IssueTracker: https://gitlab.com/humbertofraga/timerx/issues
AutoName: Timer +X
RepoType: git
Repo: https://gitlab.com/humbertofraga/timerx.git
Builds:
- versionName: '1.1'
versionCode: 3
commit: v1.1
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 5
commit: b92b15d92200bc472fc99b901e3aeb467bb1cd24
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
- versionName: 1.2.2
versionCode: 6
commit: f0d3744ef65847f56281cfc5d75961d6c79ac139
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.2.2
CurrentVersionCode: 6
| Update Timer +X to 1.2.2 (6) | Update Timer +X to 1.2.2 (6)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
6fd234bfebd4cc991f0b16fcd4204953ed3e9418 | vars/common.yml | vars/common.yml | ---
aws_region: eu-west-1
internal_root_domain: dmdev
user_ips:
- 0.0.0.0/0
dev_user_ips:
- 127.0.0.1/32
api:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
search_api:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
admin_frontend:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
buyer_frontend:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
supplier_frontend:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
database:
port: 5432
user: "digitalmarketplace"
name: "digitalmarketplace_api"
instance_type: db.t2.micro
allocated_storage: 5
elasticsearch:
port: 9200
instance_type: t2.micro
instance_count: 3
instance_image: ami-2999f65e
nginx:
instance_type: t2.micro
instance_count: 2
instance_image: ami-36f6a541
| ---
aws_region: eu-west-1
internal_root_domain: dmdev
user_ips:
- 0.0.0.0/0
dev_user_ips:
- 127.0.0.1/32
api:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
search_api:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
admin_frontend:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
buyer_frontend:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
supplier_frontend:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
database:
port: 5432
user: "digitalmarketplace"
name: "digitalmarketplace_api"
instance_type: db.t2.micro
allocated_storage: 5
elasticsearch:
port: 9200
instance_type: t2.micro
instance_count: 3
instance_image: ami-2999f65e
nginx:
instance_type: t2.micro
instance_count: 2
instance_image: ami-1e2d7469
| Bump Nginx image to ami-1e2d7469 | Bump Nginx image to ami-1e2d7469
| YAML | mit | alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws |
7cbdb4a20a0b676ee8ae4fc8d2c9a803426a5586 | examples/taskruns/dind-sidecar.yaml | examples/taskruns/dind-sidecar.yaml | apiVersion: tekton.dev/v1alpha1
kind: TaskRun
metadata:
generateName: dind-sidecar-
spec:
taskSpec:
steps:
- image: docker
name: client
script: |
#!/usr/bin/env sh
# Run a Docker container.
docker run busybox echo hello
# Write a Dockerfile and `docker build` it.
cat > Dockerfile << EOF
FROM ubuntu
RUN apt-get update
ENTRYPOINT ["echo", "hello"]
EOF
docker build -t hello . && docker run hello
docker images
# ...then run it!
docker run hello
volumeMounts:
- mountPath: /var/run/
name: dind-socket
sidecars:
# 18.09-dind seems to be the latest version of the image that works with
# this example. The next released image, 19.03-dind doesn't work.
- image: docker:18.09-dind
name: server
securityContext:
privileged: true
volumeMounts:
- mountPath: /var/run/
name: dind-socket
volumes:
- name: dind-socket
emptyDir: {}
| apiVersion: tekton.dev/v1alpha1
kind: TaskRun
metadata:
generateName: dind-sidecar-
spec:
taskSpec:
steps:
- image: docker
name: client
env:
# Connect to the sidecar over TCP without TLS.
- name: DOCKER_HOST
value: tcp://localhost:2375
script: |
#!/usr/bin/env sh
# Run a Docker container.
docker run busybox echo hello
# Write a Dockerfile and `docker build` it.
cat > Dockerfile << EOF
FROM ubuntu
RUN apt-get update
ENTRYPOINT ["echo", "hello"]
EOF
docker build -t hello . && docker run hello
docker images
# ...then run it!
docker run hello
volumeMounts:
- mountPath: /var/run/
name: dind-socket
sidecars:
- image: docker:dind
name: server
securityContext:
privileged: true
env:
# This disables TLS for TCP connections between the sidecar and client step.
- name: DOCKER_TLS_CERTDIR
value: ''
volumeMounts:
- mountPath: /var/run/
name: dind-socket
volumes:
- name: dind-socket
emptyDir: {}
| Update the dind sidecar example to use a recent dind image | Update the dind sidecar example to use a recent dind image
Some time after 18.09, Docker stopped communicating with its daemon
using the socket, and instead uses TCP. This example now uses TCP
accordingly, without TLS.
| YAML | apache-2.0 | tektoncd/pipeline,tektoncd/pipeline |
5cd1491e258e5deb8f1d20802c3126e5b33c2441 | packages/pi/pipes-interleave.yaml | packages/pi/pipes-interleave.yaml | homepage: http://github.com/bgamari/pipes-interleave
changelog-type: ''
hash: 73e87ec94f696e10bbd992efcbbb40bea0c781bda4d42c834bb0f25373ce2268
test-bench-deps: {}
maintainer: bgamari.foss@gmail.com
synopsis: Interleave and merge streams of elements
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.10'
containers: ! '>=0.5 && <0.6'
pipes: ! '>=4.0 && <4.2'
all-versions:
- '0.1'
- '0.2'
- '0.2.1'
- '0.2.2'
author: Ben Gamari
latest: '0.2.2'
description-type: haddock
description: Interleave and merge streams of elements
license-name: BSD3
| homepage: http://github.com/bgamari/pipes-interleave
changelog-type: ''
hash: eb4ea7100d33970a2ca3e00a54d03dd9ebe6fb0e09f0cd54320bb66a488c7005
test-bench-deps: {}
maintainer: bgamari.foss@gmail.com
synopsis: Interleave and merge streams of elements
changelog: ''
basic-deps:
heaps: ! '>=0.3 && <0.4'
base: ! '>=4.6 && <4.10'
containers: ! '>=0.5 && <0.6'
pipes: ! '>=4.0 && <4.2'
all-versions:
- '0.1'
- '0.2'
- '0.2.1'
- '0.2.2'
- '1.0.0'
author: Ben Gamari
latest: '1.0.0'
description-type: haddock
description: Interleave and merge streams of elements
license-name: BSD3
| Update from Hackage at 2016-10-26T04:08:07Z | Update from Hackage at 2016-10-26T04:08:07Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e37046a86eb87d0946b7f4421111b2cc04411e02 | google-cloud-debugger/.rubocop.yml | google-cloud-debugger/.rubocop.yml | AllCops:
Exclude:
- "acceptance/**/*"
- "integration/**/*"
- "google-cloud-debugger.gemspec"
- "lib/google/devtools/**/*"
# GAPIC client has too many violations. Exclude for now.
- "lib/google/cloud/debugger/v2/**/*"
- "lib/google/cloud/debugger/v2.rb"
- "Rakefile"
- "support/**/*"
- "test/**/*"
- "tmp/**/*"
Documentation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/MethodDefParentheses:
EnforcedStyle: require_no_parentheses
Style/NumericLiterals:
Enabled: false
Metrics/CyclomaticComplexity:
Max: 10
Metrics/PerceivedComplexity:
Max: 10
Metrics/AbcSize:
Max: 25
Metrics/BlockLength:
Exclude:
- "lib/google-cloud-debugger.rb"
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Max: 25
Metrics/ParameterLists:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Layout/EmptyLines: # for the extra line between copyright and code
Enabled: false
Naming/FileName:
Exclude:
- "lib/google-cloud-debugger.rb"
Lint/UnifiedInteger:
Exclude:
- "lib/google/cloud/debugger/breakpoint/evaluator.rb"
| AllCops:
Exclude:
- "acceptance/**/*"
- "integration/**/*"
- "google-cloud-debugger.gemspec"
- "lib/google/devtools/**/*"
# GAPIC client has too many violations. Exclude for now.
- "lib/google/cloud/debugger/v2/**/*"
- "lib/google/cloud/debugger/v2.rb"
- "Rakefile"
- "support/**/*"
- "test/**/*"
- "tmp/**/*"
Documentation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/MethodDefParentheses:
EnforcedStyle: require_no_parentheses
Style/NumericLiterals:
Enabled: false
Metrics/CyclomaticComplexity:
Max: 10
Metrics/PerceivedComplexity:
Max: 10
Metrics/AbcSize:
Max: 25
Metrics/BlockLength:
Exclude:
- "lib/google-cloud-debugger.rb"
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Max: 25
Metrics/ParameterLists:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Layout/EmptyLines: # for the extra line between copyright and code
Enabled: false
Naming/FileName:
Exclude:
- "lib/google-cloud-debugger.rb"
Lint/UnifiedInteger:
Exclude:
- "lib/google/cloud/debugger/breakpoint/evaluator.rb"
Lint/InheritException:
Exclude:
- "lib/google/cloud/debugger/breakpoint/evaluator.rb"
| Add exception for Debugger mutation detection | Add exception for Debugger mutation detection
| YAML | apache-2.0 | CloudVLab/google-cloud-ruby,landrito/google-cloud-ruby,googleapis/google-cloud-ruby,landrito/google-cloud-ruby,landrito/google-cloud-ruby,landrito/google-cloud-ruby,blowmage/gcloud-ruby,googleapis/google-cloud-ruby,CloudVLab/google-cloud-ruby,CloudVLab/google-cloud-ruby,googleapis/google-cloud-ruby,quartzmo/google-cloud-ruby,quartzmo/google-cloud-ruby,quartzmo/google-cloud-ruby,dazuma/google-cloud-ruby,googleapis/google-cloud-ruby,landrito/google-cloud-ruby,CloudVLab/google-cloud-ruby,quartzmo/google-cloud-ruby,dazuma/google-cloud-ruby,googleapis/google-cloud-ruby,dazuma/google-cloud-ruby,quartzmo/google-cloud-ruby,quartzmo/gcloud-ruby,googleapis/google-cloud-ruby,CloudVLab/google-cloud-ruby,dazuma/google-cloud-ruby,quartzmo/google-cloud-ruby,dazuma/google-cloud-ruby,dazuma/google-cloud-ruby |
ed22de79897b991653e2d52d097c7f3bb09619f1 | Resources/config/routing/customer.yml | Resources/config/routing/customer.yml | sylius_admin_customer:
resource: |
alias: sylius.customer
section: admin
templates: SyliusAdminBundle:Crud
except: ['show']
redirect: update
grid: sylius_admin_customer
permission: true
vars:
all:
subheader: sylius.ui.manage_your_customers
templates:
form: SyliusAdminBundle:Customer:_form.html.twig
index:
icon: users
type: sylius.resource
| sylius_admin_customer:
resource: |
alias: sylius.customer
section: admin
templates: SyliusAdminBundle:Crud
except: ['show']
redirect: update
grid: sylius_admin_customer
permission: true
vars:
all:
subheader: sylius.ui.manage_your_customers
templates:
form: SyliusAdminBundle:Customer:_form.html.twig
index:
icon: users
type: sylius.resource
sylius_admin_customer_show:
path: /customers/{id}
defaults:
_controller: sylius.controller.customer:showAction
_sylius:
section: admin
template: SyliusAdminBundle:Customer:show.html.twig
| Implement basic steps for scenario | [Behat][Admin] Implement basic steps for scenario
| YAML | mit | Sylius/SyliusAdminBundle,Sylius/SyliusAdminBundle |
51f23ece914b9ddaa999815a95c37626b2a8a2f4 | vars/mesos.yml | vars/mesos.yml | ---
mesos_version: 0.22.0
marathon_version: 0.8.1
chronos_version: 2.3.2
zookeeper_version: 3.4.6
| ---
mesos_version: 0.22.1
marathon_version: 0.8.2
chronos_version: 2.3.4
zookeeper_version: 3.4.6
| Update to the latest schedulers | Update to the latest schedulers
| YAML | mit | smarthall/ansible-mesos,diceone/ansible-mesos |
2b25ba0b0be753b40b7e508edf81b3f94b829dcd | hieradata/nodes/trd-foreman-01.yaml | hieradata/nodes/trd-foreman-01.yaml | ---
netcf_if:
eth0:
ensure: present
definition: '
<interface type="ethernet" name="eth0">
<start mode="onboot"/>
<mtu size="1500"/>
<protocol family="ipv4">
<ip address="10.171.91.5" prefix="24"/>
<route gateway="10.171.91.1"/>
</protocol>
</interface>'
| ---
network::interfaces_hash:
'eth0':
onboot: 'yes'
mtu: '1500'
ipaddress: '10.171.91.5'
netmask: '255.255.255.0'
gateway: '10.171.91.1'
defroute: 'yes'
| Update nodefile for trd foreman 01 | Update nodefile for trd foreman 01
| YAML | apache-2.0 | tanzr/himlar,eckhart/himlar,TorLdre/himlar,tanzr/himlar,mikaeld66/himlar,norcams/himlar,norcams/himlar,raykrist/himlar,TorLdre/himlar,raykrist/himlar,mikaeld66/himlar,raykrist/himlar,tanzr/himlar,norcams/himlar,eckhart/himlar,tanzr/himlar,raykrist/himlar,TorLdre/himlar,norcams/himlar,mikaeld66/himlar,eckhart/himlar,mikaeld66/himlar,mikaeld66/himlar,eckhart/himlar,norcams/himlar,tanzr/himlar,TorLdre/himlar,TorLdre/himlar,raykrist/himlar |
8e8991896adf6c58a0c4aadb2262cb7133bee215 | .github/workflows/params-version-mongo.yml | .github/workflows/params-version-mongo.yml | ---
# -------------------------------------------------------------------------------------------------
# Job Name
# -------------------------------------------------------------------------------------------------
name: params
# -------------------------------------------------------------------------------------------------
# Custom Variables
# -------------------------------------------------------------------------------------------------
env:
# CI for Mongo 2.8 and Mongo 3.0 removed due to segfault
# https://github.com/docker-library/mongo/issues/251
MATRIX: >-
[
{"MONGO_SERVER": "Mongo 3.2"},
{"MONGO_SERVER": "Mongo 3.4"},
{"MONGO_SERVER": "Mongo 3.6"},
{"MONGO_SERVER": "Mongo 4.0"},
{"MONGO_SERVER": "Mongo 4.2"},
{"MONGO_SERVER": "Mongo 4.4"},
{"MONGO_SERVER": "Mongo 5.0"},
{"MONGO_SERVER": "Mongo latest"}
]
# -------------------------------------------------------------------------------------------------
# When to run
# -------------------------------------------------------------------------------------------------
on:
workflow_call:
outputs:
matrix:
description: "The determined version matrix"
value: ${{ jobs.params.outputs.matrix }}
jobs:
params:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: "[Set-Output] Matrix"
id: set-matrix
run: |
echo "::set-output name=matrix::$( echo '${{ env.MATRIX }}' | jq -M -c )"
- name: "[DEBUG] Show settings'"
run: |
echo 'Matrix'
echo '--------------------'
echo '${{ steps.set-matrix.outputs.matrix }}'
echo
| ---
# -------------------------------------------------------------------------------------------------
# Job Name
# -------------------------------------------------------------------------------------------------
name: params
# -------------------------------------------------------------------------------------------------
# Custom Variables
# -------------------------------------------------------------------------------------------------
env:
# CI for Mongo 2.8 and Mongo 3.0 removed due to local segfault and non-segfault, but error in CI
# https://github.com/docker-library/mongo/issues/251
#
# CI for Mongo 3.2 and 3.4 removed due to non-reproducible error in CI
MATRIX: >-
[
{"MONGO_SERVER": "Mongo 3.6"},
{"MONGO_SERVER": "Mongo 4.0"},
{"MONGO_SERVER": "Mongo 4.2"},
{"MONGO_SERVER": "Mongo 4.4"},
{"MONGO_SERVER": "Mongo 5.0"},
{"MONGO_SERVER": "Mongo latest"}
]
# -------------------------------------------------------------------------------------------------
# When to run
# -------------------------------------------------------------------------------------------------
on:
workflow_call:
outputs:
matrix:
description: "The determined version matrix"
value: ${{ jobs.params.outputs.matrix }}
jobs:
params:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: "[Set-Output] Matrix"
id: set-matrix
run: |
echo "::set-output name=matrix::$( echo '${{ env.MATRIX }}' | jq -M -c )"
- name: "[DEBUG] Show settings'"
run: |
echo 'Matrix'
echo '--------------------'
echo '${{ steps.set-matrix.outputs.matrix }}'
echo
| Remove failing services in CI | Remove failing services in CI
| YAML | mit | cytopia/devilbox,cytopia/devilbox,cytopia/devilbox |
f647df7529e06df7692fa16fa1e1f9bbe21d3e4b | api/serverless.yml | api/serverless.yml | service: ticker
frameworkVersion: ">=1.1.0"
custom:
bucket: ${env:STELLARTERM_S3_BUCKET}
provider:
name: aws
runtime: nodejs6.10
stage: dev
region: us-west-2
iamRoleStatements:
- Effect: Allow
Action:
- s3:*
Resource: "arn:aws:s3:::${self:custom.bucket}/*"
functions:
ticker:
handler: handler.ticker
environment:
BUCKET: ${self:custom.bucket}
cronTicker:
handler: handler.ticker
events:
# Invoke Lambda function every minute
- schedule: rate(1 minute)
environment:
BUCKET: ${self:custom.bucket}
| service: ticker
frameworkVersion: ">=1.1.0"
custom:
bucket: ${env:STELLARTERM_S3_BUCKET}
provider:
name: aws
runtime: nodejs6.10
stage: dev
region: us-west-2
timeout: 30
iamRoleStatements:
- Effect: Allow
Action:
- s3:*
Resource: "arn:aws:s3:::${self:custom.bucket}/*"
functions:
ticker:
handler: handler.ticker
environment:
BUCKET: ${self:custom.bucket}
cronTicker:
handler: handler.ticker
events:
# Invoke Lambda function every minute
- schedule: rate(5 minutes)
environment:
BUCKET: ${self:custom.bucket}
| Extend AWS Lambda timeout to accomodate newer longer task | Extend AWS Lambda timeout to accomodate newer longer task
| YAML | apache-2.0 | irisli/stellarterm,irisli/stellarterm,irisli/stellarterm |
d1896db5fccbd79c971556d688783da097776f0a | app.yaml | app.yaml | application: hn-archive
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /tasks/.*
script: hn-archive.cron_app
login: admin
- url: /.*
script: hn-archive.app
- url: /_ah/queue/deferred
script: google.appengine.ext.deferred.deferred.application
login: admin
builtins:
- deferred: on
- remote_api: on
libraries:
- name: webapp2
version: latest
- name: jinja2
version: latest
| application: hn-archive
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /tasks/.*
script: hn-archive.cron_app
login: admin
- url: /.*
script: hn-archive.app
- url: /_ah/queue/deferred
script: google.appengine.ext.deferred.deferred.application
login: admin
builtins:
- deferred: on
libraries:
- name: webapp2
version: latest
- name: jinja2
version: latest
| Disable remote API since we're not using it for data extraction | Disable remote API since we're not using it for data extraction
| YAML | agpl-3.0 | gpanther/hn-archive,gpanther/hn-archive,codevlabs/hn-archive,codevlabs/hn-archive |
f87a2a4612c07d52fb77eb2a1b8fd0e68ab17b97 | configs/logging_config.yaml | configs/logging_config.yaml | version: 1
formatters:
simple:
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
colored:
(): colorlog.ColoredFormatter
format: '%(bg_black)s%(log_color)s%(levelname)-8s%(reset)s %(bg_blue)s[%(pathname)s : lineno %(lineno)s]%(reset)s %(bg_cyan)s %(asctime)s %(reset)s %(bg_black)s%(log_color)s%(message)s%(reset)s'
datefmt: '%m-%d %H:%M:%S'
log_colors:
DEBUG: green
INFO: white
WARNING: yellow
ERROR: red
CRITICAL: purple
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: colored
stream: ext://sys.stdout
info:
backupCount: 20
class: logging.handlers.RotatingFileHandler
encoding: utf-8
filename: info.log
formatter: colored
level: INFO
maxBytes: 10485760
error:
backupCount: 20
class: logging.handlers.RotatingFileHandler
encoding: utf-8
filename: errors.log
formatter: colored
level: ERROR
maxBytes: 10485760
loggers:
CF:
level: INFO
handlers: [console, info, error]
root:
level: INFO
handlers: []
| version: 1
formatters:
simple:
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
colored:
(): colorlog.ColoredFormatter
format: '%(bg_black)s%(log_color)s%(levelname)-8s%(reset)s %(bg_blue)s[%(pathname)s : lineno %(lineno)s]%(reset)s %(bg_cyan)s %(asctime)s %(reset)s %(bg_black)s%(log_color)s%(message)s%(reset)s'
datefmt: '%m-%d %H:%M:%S'
log_colors:
DEBUG: green
INFO: white
WARNING: yellow
ERROR: red
CRITICAL: purple
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: colored
stream: ext://sys.stdout
info:
backupCount: 20
class: logging.handlers.RotatingFileHandler
encoding: utf-8
filename: info.log
formatter: colored
level: INFO
maxBytes: 10485760
error:
backupCount: 20
class: logging.handlers.RotatingFileHandler
encoding: utf-8
filename: errors.log
formatter: colored
level: ERROR
maxBytes: 10485760
loggers:
CF:
level: INFO
handlers: [console, info, error]
paramiko.transport:
level: INFO
handlers: [console, info, error]
root:
level: INFO
handlers: []
| Add handlers for logger 'paramiko.transport' | [SAIC-791] Add handlers for logger 'paramiko.transport'
| YAML | apache-2.0 | MirantisWorkloadMobility/CloudFerry,mgrygoriev/CloudFerry,SVilgelm/CloudFerry,MirantisWorkloadMobility/CloudFerry,SVilgelm/CloudFerry,MirantisWorkloadMobility/CloudFerry,mgrygoriev/CloudFerry,MirantisWorkloadMobility/CloudFerry,mgrygoriev/CloudFerry,SVilgelm/CloudFerry,mgrygoriev/CloudFerry,SVilgelm/CloudFerry |
c52f51a6d285285346c3e2341ec5a2975bd37479 | hieradata/role/st2express.yaml | hieradata/role/st2express.yaml | ---
classes:
- 'role::st2express'
npm::proxy: false
puppet::masterless::cron: disable
st2::version: 0.14dev
st2::revision: 114
st2::autoupdate: false
st2::mistral_git_branch: master
| ---
classes:
- 'role::st2express'
npm::proxy: false
puppet::masterless::cron: disable
st2::version: 0.14dev
st2::revision: 148
st2::autoupdate: false
st2::mistral_git_branch: master
| Use latest debs (148) for st2 | Use latest debs (148) for st2
| YAML | apache-2.0 | StackStorm/st2workroom,StackStorm/st2workroom,lattwood/st2workroom,lattwood/st2workroom,lattwood/st2workroom,StackStorm/st2workroom |
2e2d234444358fac776b7e7099c5179173a621be | examples/v1alpha2/http-routing/bar-httproute.yaml | examples/v1alpha2/http-routing/bar-httproute.yaml | apiVersion: gateway.networking.k8s.io/v1alpha2
kind: HTTPRoute
metadata:
name: bar-route
spec:
parentRefs:
- name: example-gateway
hostnames:
- "bar.example.com"
rules:
- matches:
- headers:
- type: Exact
name: env
value: canary
backendRefs:
- name: bar-svc-canary
port: 8080
- name: bar-svc
port: 8080
| apiVersion: gateway.networking.k8s.io/v1alpha2
kind: HTTPRoute
metadata:
name: bar-route
spec:
parentRefs:
- name: example-gateway
hostnames:
- "bar.example.com"
rules:
- matches:
- headers:
- type: Exact
name: env
value: canary
backendRefs:
- name: bar-svc-canary
port: 8080
- backendRefs:
- name: bar-svc
port: 8080
| Fix v1alpha2 "HTTP routing" example | Fix v1alpha2 "HTTP routing" example
The "bar-route" HTTPRoute had a bug where both backendRefs belonged to
the same rule so traffic will either match the header in which case it
will be split 50/50 between bar-svc-canary and bar-svc, or it won't
match the header in which case I'm not sure what happens.
This PR adds a second HTTPRouteRule to the bar-route HTTPRoute so the
yaml manifest matches the descriptive text.
https://kubernetes.slack.com/archives/CR0H13KGA/p1642527563035400
| YAML | apache-2.0 | istio/gateway-api,istio/gateway-api,istio/gateway-api |
55b5bed298f2650cf804027fbf0ea6fdf39eb957 | ansible/roles/openzfs-jenkins-public/meta/main.yml | ansible/roles/openzfs-jenkins-public/meta/main.yml | ---
dependencies:
- { role: geerlingguy.jenkins }
| ---
dependencies:
- { role: geerlingguy.security }
- { role: geerlingguy.jenkins }
| Use 'geerlingguy.security' on master instances | Use 'geerlingguy.security' on master instances
This is a simple change to use the 'geerlingguy.security' role on the
Jenkins master instances, which will install fail2ban and do some other
security related configuration.
| YAML | apache-2.0 | openzfs/openzfs-build,openzfs/openzfs-build |
2219b4057225a2ffca6f2ff8bfc1654d7c51b428 | docker-compose.yml | docker-compose.yml | version: '2.1'
services:
elasticsearch:
container_name: elasticsearch
environment:
- cluster.name=run-and-fun
- node.name=run-and-fun-1
- bootstrap.memory_lock=true
- ES_JAVA_OPTS=-Xms512m -Xmx512m
- discovery.type=single-node
healthcheck:
test: wget --spider --quiet --tries=1 http://localhost:9200 || exit 0
image: docker.elastic.co/elasticsearch/elasticsearch:6.8.5
mem_limit: 2g
ports:
- 9200:9200
restart: unless-stopped
volumes:
- esdata-dev:/usr/share/elasticsearch/data
volumes:
esdata-dev:
driver: local
| version: '2.1'
services:
elasticsearch:
container_name: elasticsearch
environment:
- cluster.name=run-and-fun
- node.name=run-and-fun-1
- bootstrap.memory_lock=true
- ES_JAVA_OPTS=-Xms512m -Xmx512m
- discovery.type=single-node
healthcheck:
test: wget --spider --quiet --tries=1 http://localhost:9200 || exit 1
mem_limit: 2g
ports:
- 9200:9200
restart: unless-stopped
volumes:
- esdata-dev:/usr/share/elasticsearch/data
volumes:
esdata-dev:
driver: local
| Use exit 1 instead of exit 0 | Use exit 1 instead of exit 0
| YAML | mit | inpercima/run-and-fun,inpercima/run-and-fun,inpercima/run-and-fun,inpercima/run-and-fun,inpercima/run-and-fun |
e0219407205816590a88c61e0856092868ffa83b | docker-compose.yml | docker-compose.yml | version: "3"
volumes:
dbdata:
services:
db:
image: postgres:9.4
ports:
- "5432:5432"
volumes:
- dbdata:/var/lib/postgresq
environment:
- POSTGRES_USER=timed
- POSTGRES_PASSWORD=timed
backend:
build: .
ports:
- "8000:80"
depends_on:
- db
environment:
- DJANGO_DATABASE_HOST=db
- ENV=docker
- STATIC_ROOT=/var/www/static
| version: "3"
volumes:
dbdata:
services:
db:
image: postgres:9.4
ports:
- "5432:5432"
volumes:
- dbdata:/var/lib/postgresql/data
environment:
- POSTGRES_USER=timed
- POSTGRES_PASSWORD=timed
backend:
build: .
ports:
- "8000:80"
depends_on:
- db
environment:
- DJANGO_DATABASE_HOST=db
- ENV=docker
- STATIC_ROOT=/var/www/static
| Use correct pg data volume mount point | Use correct pg data volume mount point
| YAML | agpl-3.0 | adfinis-sygroup/timed-backend,adfinis-sygroup/timed-backend,adfinis-sygroup/timed-backend |
496c18f357fa30ccd7f7c6c5dae3ea6aa77c0552 | docker-compose.yml | docker-compose.yml | server:
build: .
ports:
- "8000:8000"
volumes:
- .:/app/
| server:
build: .
ports:
- "8000:8000"
volumes:
- .:/app/
links:
- db
db:
image: mongo:3.2
volumes:
- volumes/db:/data/db | Add mongodb to docker compose | Add mongodb to docker compose
| YAML | mit | beeworking/voyant,beeworking/voyant,beeworking/voyant,beeworking/voyant |
b45a58aff32292d1030483474b7778b9cf96cf81 | docker-compose.yml | docker-compose.yml | version: '2'
services:
postgresql:
image: postgres:9.4
expose:
- "5432"
elasticsearch:
image: elasticsearch:1.7
expose:
- "9200"
- "9300"
redis:
image: redis:3.0
expose:
- "6379"
site:
build:
context: site
args:
MB_OAUTH_CLIENT_ID: MBOAuthClientID
MB_OAUTH_CLIENT_SECRET: MBOAuthClientSecret
MB_OAUTH_CALLBACK_URL: http:\/\/localhost:9099\/cb
SESSION_SECRET: SessionSecret
volumes:
- "./dumps:/dumps"
links:
- "postgresql:db"
- "redis:redis"
- "elasticsearch:es"
ports:
- "9099:9099"
| version: '2'
services:
postgresql:
image: postgres:9.4
expose:
- "5432"
elasticsearch:
image: elasticsearch:1.7
expose:
- "9200"
- "9300"
redis:
image: redis:3.0
expose:
- "6379"
site:
build:
context: site
args:
MB_OAUTH_CLIENT_ID: MBOAuthClientID
MB_OAUTH_CLIENT_SECRET: MBOAuthClientSecret
MB_OAUTH_CALLBACK_URL: http:\/\/localhost:9099\/cb
SESSION_SECRET: SessionSecret
volumes:
- "./dumps:/dumps"
ports:
- "9099:9099"
site-dev:
extends: site
links:
- "postgresql:db"
- "redis:redis"
- "elasticsearch:es"
site-prod:
extends: site
command: /Start.sh
links:
- "postgresql:db"
- "redis:redis"
- "elasticsearch:es"
| Add site-dev and site-prod services which extend site service | Add site-dev and site-prod services which extend site service
| YAML | unlicense | bookbrainz/bookbrainz-docker |
371e019dd00a55b662cfd6aaccb2e2e75123e9c0 | jenkins/jobs/zun.yaml | jenkins/jobs/zun.yaml | - job:
name: 'gate-zun-devstack-dsvm'
node: ubuntu-xenial
wrappers:
- build-timeout:
timeout: 70
- timestamps
builders:
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TEMPEST=0
export DEVSTACK_GATE_NEUTRON=1
# Enable tempest for tempest plugin
export ENABLED_SERVICES=tempest
export PROJECTS="openstack/zun $PROJECTS"
export PROJECTS="openstack/python-zunclient $PROJECTS"
export DEVSTACK_LOCAL_CONFIG="enable_plugin zun git://git.openstack.org/openstack/zun"
# Keep localrc to be able to set some vars in post_test_hook
export KEEP_LOCALRC=1
function gate_hook {
cd /opt/stack/new/zun/
./devstack/gate_hook.sh
}
export -f gate_hook
function post_test_hook {
source $BASE/new/devstack/accrc/admin/admin
cd /opt/stack/new/higgins/
./zun/tests/contrib/post_test_hook.sh
}
export -f post_test_hook
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
./safe-devstack-vm-gate-wrap.sh
publishers:
- devstack-logs
- console-log
| - job:
name: 'gate-zun-devstack-dsvm'
node: ubuntu-xenial
wrappers:
- build-timeout:
timeout: 70
- timestamps
builders:
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TEMPEST=0
export DEVSTACK_GATE_NEUTRON=1
# Enable tempest for tempest plugin
export ENABLED_SERVICES=tempest
export PROJECTS="openstack/zun $PROJECTS"
export PROJECTS="openstack/python-zunclient $PROJECTS"
export DEVSTACK_LOCAL_CONFIG="enable_plugin zun git://git.openstack.org/openstack/zun"
# Keep localrc to be able to set some vars in post_test_hook
export KEEP_LOCALRC=1
function gate_hook {
cd /opt/stack/new/zun/
./devstack/gate_hook.sh
}
export -f gate_hook
function post_test_hook {
source $BASE/new/devstack/accrc/admin/admin
cd /opt/stack/new/zun/
./zun/tests/contrib/post_test_hook.sh
}
export -f post_test_hook
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
./safe-devstack-vm-gate-wrap.sh
publishers:
- devstack-logs
- console-log
| Correct the directory path for Zun | Correct the directory path for Zun
The project has been renamed so the path needs to be updated.
Change-Id: I9694745e82c6ef1fd6c061c032ed25f2da74a23d
| YAML | apache-2.0 | Tesora/tesora-project-config,Tesora/tesora-project-config,openstack-infra/project-config,openstack-infra/project-config |
5abbee5fefeb18b4e68bb4d68e74db6183fbfba9 | .ci/appveyor.yml | .ci/appveyor.yml | version: 0.0.1.{build}-test
shallow_clone: true
environment:
LUAROCKS_VER: 2.2.2
matrix:
- LUA_VER: 5.1.5
# - LUA_VER: 5.2.4 # Lua 5.2.4 with compatibility flags enabled (DLUA_COMPAT_ALL).
- LUA_VER: 5.2.4 # Lua 5.2.4 with compatibility flags disabled.
NOCOMPAT: true
# - LUA_VER: 5.3.1 # Lua 5.3.1 with compatibility flags enabled (DLUA_COMPAT_5_2).
- LUA_VER: 5.3.1 # Lua 5.3.1 with compatibility flags disabled.
NOCOMPAT: true
- LJ_VER: 2.0.4
- LJ_VER: 2.1
platform:
- x86
- x64
configuration:
- 2015
matrix:
fast_finish: true
cache:
- c:\lua -> .ci\appveyor.yml
- c:\external -> .ci\appveyor.yml
install:
- call .ci\set_compiler_env.bat
- call .ci\install.bat
build_script:
- luarocks install lluv
- luarocks install busted
- busted -v
- luarocks make rocks/lift-scm-0.rockspec
- lift --help
after_build:
- luarocks remove lift
test: off
| version: 0.0.1.{build}-test
shallow_clone: true
environment:
LUAROCKS_VER: 2.2.2
matrix:
- LUA_VER: 5.1.5
# - LUA_VER: 5.2.4 # Lua 5.2.4 with compatibility flags enabled (DLUA_COMPAT_ALL).
- LUA_VER: 5.2.4 # Lua 5.2.4 with compatibility flags disabled.
NOCOMPAT: true
# - LUA_VER: 5.3.1 # Lua 5.3.1 with compatibility flags enabled (DLUA_COMPAT_5_2).
- LUA_VER: 5.3.1 # Lua 5.3.1 with compatibility flags disabled.
NOCOMPAT: true
- LJ_VER: 2.0.4
- LJ_VER: 2.1
platform:
- x86
- x64
configuration:
- 2015
matrix:
fast_finish: true
cache:
- c:\lua -> .ci\appveyor.yml
- c:\external -> .ci\appveyor.yml
install:
- call .ci\set_compiler_env.bat
- call .ci\install.bat
build_script:
- luarocks install luv
- luarocks install busted
- busted -v
- luarocks make rocks/lift-scm-0.rockspec
- lift --help
after_build:
- luarocks remove lift
test: off
| Test whether luv builds properly on AppVeyor | Test whether luv builds properly on AppVeyor | YAML | mit | tbastos/lift |
a869273f9935d8e0e7a4723db8b2aacd26872e7f | .codeclimate.yml | .codeclimate.yml | languages:
PHP: true
JavaScript: true
exclude_paths:
- "tests/*"
- "*/uw-brand/*" | languages:
PHP: true
JavaScript: true
exclude_paths:
- "tests/*"
- "bin/*"
- "*/uw-brand/*" | Exclude bin from code climate. | Exclude bin from code climate.
| YAML | mit | AthensFramework/core,AthensFramework/core,AthensFramework/core,AthensFramework/core |
3de756f361c96960d038cc47fed1384c50854823 | .scrutinizer.yml | .scrutinizer.yml | imports:
- javascript
- php
filter:
excluded_paths: [3rdparty/*, js/vendor/*, js/public/app.js, tests/]
tools:
external_code_coverage:
timeout: 600 # Timeout in seconds. 10 minutes
runs: 2 # Scrutinizer waits for the first 2 coverage submissions (unit & integration)
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run
| imports:
- javascript
- php
filter:
excluded_paths: [3rdparty/*, js/vendor/*, js/public/app.js, tests/]
dependency_paths:
- vendor/christophwurst/nextcloud
tools:
external_code_coverage:
timeout: 300 # Timeout in seconds, 5 minutes
runs: 2 # Scrutinizer waits for the first 2 coverage submissions (unit & integration)
build:
nodes:
analysis:
dependencies:
before:
- composer require --dev "christophwurst/nextcloud ^12.0.0"
tests:
override:
- php-scrutinizer-run
| Install core dependencies when Scrutinizer is run | Install core dependencies when Scrutinizer is run
This will make the Scrutinizer results greatly more useful, as we get
rid of the vast amount of false positives on "type not found" which
got reported every time we import some class from the Nextcloud/ownCloud
core.
Also, timeout the wait for code coverage data already after 5 minutes.
This should speed up the process on the private clone of owncloud/music
repository where there is no-one posting the coverage data.
| YAML | agpl-3.0 | paulijar/music,owncloud/music,owncloud/music,paulijar/music,paulijar/music,paulijar/music,owncloud/music,owncloud/music,paulijar/music,owncloud/music |
a3fa5e40227c3dcf49f5fc663b0614f0b3eedb6f | .scrutinizer.yml | .scrutinizer.yml | tools:
external_code_coverage:
timeout: 2000
filter:
excluded_paths:
- 'tests'
- 'sam.php'
| tools:
external_code_coverage:
timeout: 2000
runs: 8
filter:
excluded_paths:
- 'tests'
- 'sam.php'
| Add run options in the CI configuration | Add run options in the CI configuration
| YAML | mit | larriereguichet/AdminBundle,larriereguichet/AdminBundle,larriereguichet/AdminBundle |
ecd8d97740d2ae1955c72d041a37d1fd6302ebed | metadata/com.github.jameshnsears.quoteunquote.yml | metadata/com.github.jameshnsears.quoteunquote.yml | Categories:
- Reading
License: Apache-2.0
AuthorName: James HN Sears
AuthorEmail: james.hn.sears@gmail.com
SourceCode: https://github.com/jameshnsears/QuoteUnquote
IssueTracker: https://github.com/jameshnsears/QuoteUnquote/issues
AutoName: Quote… Unquote
RepoType: git
Repo: https://github.com/jameshnsears/QuoteUnquote
Builds:
- versionName: 2.0.0-fdroid
versionCode: 43
commit: 2.0.0-fdroid
subdir: app
submodules: true
gradle:
- fdroid
- versionName: 2.0.1-fdroid
versionCode: 45
commit: 2.0.1-fdroid
subdir: app
submodules: true
gradle:
- fdroid
AutoUpdateMode: Version %v
UpdateCheckMode: Tags .*-fdroid$
CurrentVersion: 2.0.1-fdroid
CurrentVersionCode: 45
| Categories:
- Reading
License: Apache-2.0
AuthorName: James HN Sears
AuthorEmail: james.hn.sears@gmail.com
SourceCode: https://github.com/jameshnsears/QuoteUnquote
IssueTracker: https://github.com/jameshnsears/QuoteUnquote/issues
AutoName: Quote… Unquote
RepoType: git
Repo: https://github.com/jameshnsears/QuoteUnquote
Builds:
- versionName: 2.0.0-fdroid
versionCode: 43
commit: 2.0.0-fdroid
subdir: app
submodules: true
gradle:
- fdroid
- versionName: 2.0.1-fdroid
versionCode: 45
commit: 2.0.1-fdroid
subdir: app
submodules: true
gradle:
- fdroid
- versionName: 2.1.0-fdroid
versionCode: 48
commit: 2.1.0-fdroid
subdir: app
submodules: true
gradle:
- fdroid
AutoUpdateMode: Version %v
UpdateCheckMode: Tags .*-fdroid$
CurrentVersion: 2.1.0-fdroid
CurrentVersionCode: 48
| Update Quote… Unquote to 2.1.0-fdroid (48) | Update Quote… Unquote to 2.1.0-fdroid (48)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
3feed29824eec33c3d516b56237e1a23d59a41ba | appveyor.yml | appveyor.yml | version: 1.0.{build}
environment:
BrowserStack_UserName:
secure: 1pPava/umi31t0fUJWpcaw==
BrowserStack_AccessKey:
secure: kTuv757nz0qovSIwBwGIIFeb2X3PXJuci0mJjGMJuIk=
assembly_info:
patch: true
file: AssemblyVersion.cs
assembly_version: "1.0.0.0"
assembly_file_version: "{version}.0"
assembly_informational_version: "{version}.0"
build:
project: src\MartinCostello.BrowserStack.Automate.msbuild
verbosity: minimal
after_build:
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- pip install codecov
- codecov -f "src\BuildOutput\MartinCostello.BrowserStack.Automate_coverage.xml"
artifacts:
- path: src\BuildOutput\*.nupkg
nuget:
disable_publish_on_pr: true
skip_tags: false
test: off
| version: 1.0.{build}
environment:
BrowserStack_UserName:
secure: 1pPava/umi31t0fUJWpcaw==
BrowserStack_AccessKey:
secure: kTuv757nz0qovSIwBwGIIFeb2X3PXJuci0mJjGMJuIk=
assembly_info:
patch: true
file: AssemblyVersion.cs
assembly_version: "1.0.0.0"
assembly_file_version: "{version}.0"
assembly_informational_version: "{version}.0"
build:
project: src\MartinCostello.BrowserStack.Automate.msbuild
verbosity: minimal
after_build:
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- pip install codecov
- codecov -f "src\BuildOutput\MartinCostello.BrowserStack.Automate_coverage.xml"
artifacts:
- path: src\BuildOutput\*.nupkg
nuget:
disable_publish_on_pr: true
skip_tags: false
test: off
deploy:
- provider: NuGet
api_key:
secure: 7xiMOBgPvPg3LrtOPUFfhJJqcCU/fKHWG9WHVDgPnBI74dAd3lgeh1VxL7qjM5R0
artifact: /.*\.nupkg/
skip_symbols: false
| Deploy packages to NuGet from AppVeyor CI | Deploy packages to NuGet from AppVeyor CI
| YAML | apache-2.0 | martincostello/browserstack-automate |
b117d399d7906a15d0885e56fd85adb1220f68bf | appveyor.yml | appveyor.yml | version: 1.0.{build}
branches:
only:
- master
before_build:
- ps: nuget restore PhotoLife\PhotoLife.sln
build:
project: PhotoLife\PhotoLife.sln
verbosity: minimal
after_test:
- PhotoLife\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"PhotoLife\packages\NUnit.ConsoleRunner.3.6.1\tools\nunit3-console.exe" -targetargs:"/domain:single PhotoLife\PhotoLife.Data.Tests\bin\Debug\PhotoLife.Data.Tests.dll PhotoLife\PhotoLife.Services.Tests\bin\Debug\PhotoLife.Services.Tests.dll PhotoLife\PhotoLife.Web.Tests\bin\Debug\PhotoLife.Web.Tests.dll PhotoLife\PhotoLife.Models.Tests\bin\Debug\PhotoLife.Models.Tests.dll" -output:coverage.xml
- PhotoLife\packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover coverage.xml
| version: 1.0.{build}
branches:
only:
- master
before_build:
- ps: nuget restore PhotoLife\PhotoLife.sln
build:
project: PhotoLife\PhotoLife.sln
verbosity: minimal
after_test:
- PhotoLife\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"PhotoLife\packages\NUnit.ConsoleRunner.3.6.1\tools\nunit3-console.exe" -targetargs:"/domain:single PhotoLife\PhotoLife.Data.Tests\bin\Debug\PhotoLife.Data.Tests.dll PhotoLife\PhotoLife.Services.Tests\bin\Debug\PhotoLife.Services.Tests.dll PhotoLife\PhotoLife.Web.Tests\bin\Debug\PhotoLife.Web.Tests.dll PhotoLife\PhotoLife.Models.Tests\bin\Debug\PhotoLife.Models.Tests.dll PhotoLife\PhotoLife.Authentication.Tests\bin\Debug\PhotoLife.Authentication.Tests.dll" -output:coverage.xml
- PhotoLife\packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover coverage.xml
| Add reference to Auth Tests for coveralls | Add reference to Auth Tests for coveralls | YAML | mit | Branimir123/PhotoLife,Branimir123/PhotoLife,Branimir123/PhotoLife |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.