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 |
|---|---|---|---|---|---|---|---|---|---|
f21bbeefe5c1703a12ff6555f51f8a46d4e87bce | .travis.yml | .travis.yml | language: c
install:
- wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script:
- bash -ex .travis-opam.sh
sudo: required
env:
global:
- OCAML_VERSION=4.06
- PACKAGE=message-switch
- PINS="message-switch-async:. message-switch-cli:. message-switch-core:. message-switch:. message-switch-lwt:. message-switch-unix:."
matrix:
- BASE_REMOTE="https://github.com/xapi-project/xs-opam.git"
matrix:
fast_finish: true
| language: c
sudo: required
service: docker
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-docker.sh
script: bash -ex .travis-docker.sh
env:
global:
- PACKAGE=message-switch
- PINS="message-switch-async:. message-switch-cli:. message-switch-core:. message-switch:. message-switch-lwt:. message-switch-unix:."
- BASE_REMOTE="https://github.com/xapi-project/xs-opam.git"
matrix:
- DISTRO="debian-9-ocaml-4.06"
| Use a container that has 4.06 in it already | Use a container that has 4.06 in it already
Signed-off-by: Edwin Török <c8d178016cbaf8a6ef23c2cbc9db96123c48b7dc@citrix.com>
| YAML | isc | xapi-project/message-switch,xapi-project/message-switch,xapi-project/message-switch |
ea49bf96a30d257203284e55f3df0caca5408e38 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
before_install:
- pip install codecov
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
before_script:
- pip install -r test_requirements.txt
- pip install coveralls
# command to run tests, e.g. python setup.py test
script:
- coverage run --source esis setup.py test
after_success:
- coveralls
- codecov
| # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt -r test_requirements.txt codecov coveralls
# command to run tests, e.g. python setup.py test
script:
- coverage run --source esis setup.py test
after_success:
- codecov
- coveralls
| Install all dependencies in a single command | Install all dependencies in a single command
This should speed up builds a little bit
| YAML | mit | jcollado/esis |
28c685b32c1a4656d30cac23c51e6ba9e9f23e11 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
- jruby-18mode
- jruby-19mode
- jruby-head
- ree
- ruby-head
| sudo: false
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
- jruby-18mode
- jruby-19mode
- ree
- ruby-head
| Remove broken jruby-head from Travis | Remove broken jruby-head from Travis
A bundler bug prevents this from installing anything.
| YAML | mit | customerio/customerio-ruby |
15f4ab9aaf3ffddbe801b2422dd52cee15549f64 | .travis.yml | .travis.yml | language: go
| language: go
matrix:
include:
- go: "tip"
- go: "1.x"
- go: "1.10"
- go: "1.9"
- go: "1.8"
allow_failures:
- go: tip
| Update Travis CI config to test against multiple Go versions | Update Travis CI config to test against multiple Go versions
| YAML | mit | jordic/goics |
0fbd4572013525ec8fc4f2bc4f7d82482d4bcfe2 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.8.18
- DJANGO_VERSION=1.9.13
- DJANGO_VERSION=1.10.7
- DJANGO_VERSION=1.11
matrix:
exclude:
- python: "3.6"
env: DJANGO_VERSION=1.8.18
- python: "3.3"
env: DJANGO_VERSION=1.9.13
- python: "3.6"
env: DJANGO_VERSION=1.9.13
- python: "3.3"
env: DJANGO_VERSION=1.10.7
- python: "3.6"
env: DJANGO_VERSION=1.10.7
- python: "3.3"
env: DJANGO_VERSION=1.11
before_install:
- export DJANGO_SETTINGS_MODULE="podcast.tests.settings"
install:
- pip install -q Django==$DJANGO_VERSION
- python setup.py -q install
- django-admin migrate
script:
- django-admin test podcast.tests | language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.8.18
- DJANGO_VERSION=1.9.13
- DJANGO_VERSION=1.10.7
- DJANGO_VERSION=1.11
matrix:
exclude:
- python: "3.6"
env: DJANGO_VERSION=1.8.18
- python: "3.3"
env: DJANGO_VERSION=1.9.13
- python: "3.6"
env: DJANGO_VERSION=1.9.13
- python: "3.3"
env: DJANGO_VERSION=1.10.7
- python: "3.6"
env: DJANGO_VERSION=1.10.7
- python: "3.3"
env: DJANGO_VERSION=1.11
before_install:
- export DJANGO_SETTINGS_MODULE="podcast.tests.settings"
- if [ $TRAVIS_PYTHON_VERSION = 3.3 ] && [ $DJANGO_VERSION = 1.8.18 ]; then pip uninstall --yes setuptools; pip install setuptools; fi
install:
- pip install -q Django==$DJANGO_VERSION
- python setup.py -q install
- django-admin migrate
script:
- django-admin test podcast.tests
| Fix incorrect version of setuptools | Fix incorrect version of setuptools
| YAML | bsd-3-clause | richardcornish/django-applepodcast,richardcornish/django-applepodcast,richardcornish/django-itunespodcast,richardcornish/django-itunespodcast |
2d8f20acc9f65f0b23e5687758834c5b5b299a5a | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script: ./gradlew build jacocoTestReport
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script: ./gradlew testRelease assembleRelease
| Delete Codecov and Jacoco jobs | Delete Codecov and Jacoco jobs
| YAML | apache-2.0 | dkhmelenko/TravisClient-Android,dkhmelenko/Varis-Android,dkhmelenko/Varis-Android,dkhmelenko/TravisClient-Android,dkhmelenko/Varis-Android,brave-warrior/TravisClient-Android,brave-warrior/TravisClient-Android,brave-warrior/TravisClient_Android,DreierF/TravisClient-Android,DreierF/TravisClient-Android,brave-warrior/TravisClient_Android |
ea404226e3c44c60aebb12927ddf327aad1f6566 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g grunt-cli
- npm install
- wget -P test/lib/angular/ http://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js
script:
- grunt travis-ci
| language: node_js
node_js:
- 0.8
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g grunt-cli
- npm install
- wget -P test/lib/angular/ http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js
script:
- grunt travis-ci
| Update angular.js to 1.2.13 for CI | Update angular.js to 1.2.13 for CI
| YAML | mit | cvn/angular-shims-placeholder,akkunchoi/angular-shims-placeholder,akkunchoi/angular-shims-placeholder,radotzki/angular-shims-placeholder,cvn/angular-shims-placeholder,radotzki/angular-shims-placeholder |
abe91918a8c4bd152770106cf739c7677afc10f2 | .travis.yml | .travis.yml | language: node_js
node_js:
- 7.10
- 7
sudo: required
env:
- GREMLINSERVER_VERSION="3.2.4"
install:
# install Oracle JDK8
- sh -c ./build/jdk8-install.sh
# install gremlin-server
- sh -c ./build/gremlin-server/install.sh
# install dependencies
- npm install
before_script:
- npm run build
script: npm run test:node
after_script:
- npm run coverage:travis
| language: node_js
node_js:
- 7.10
- 7
sudo: required
env:
- GREMLINSERVER_VERSION="3.2.4"
cache:
yarn: true
install:
# install Oracle JDK8
- sh -c ./build/jdk8-install.sh
# install gremlin-server
- sh -c ./build/gremlin-server/install.sh
# install dependencies
- yarn
before_script:
- yarn build
script: yarn test
after_script:
- yarn coverage:travis
| Use yarn instead of npm | Use yarn instead of npm
| YAML | mit | jbmusso/gremlin-javascript,jbmusso/gremlin-client,jbmusso/gremlin-javascript |
361055138e32da8aaf30fd9cfbe7ddbcaa5fc6c3 | .travis.yml | .travis.yml | language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
install:
- pip install tox
script:
- tox
notifications:
slack:
secure: bGN/7RcHM9oHzKRW/NSDna95Syf0Kq/ZvaC4hf7k20Jc0U49uyvCIV58RQQgu/e21yNnthMGAXfbcHL9ovFTdKD3sdAmFg296DexGCV56MPxeLOcCF8AnLKBd5pXIb06VRfc82CPr6b4aqSPt1Xxj7sUSRD7GylvAxO8FaMAb0M=
| language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- python: 2.7 # these are just to make travis's UI a bit prettier
env: TOXENV=py27
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: pypy
env: TOXENV=pypy
install:
- pip install tox
script:
- tox
notifications:
slack:
secure: bGN/7RcHM9oHzKRW/NSDna95Syf0Kq/ZvaC4hf7k20Jc0U49uyvCIV58RQQgu/e21yNnthMGAXfbcHL9ovFTdKD3sdAmFg296DexGCV56MPxeLOcCF8AnLKBd5pXIb06VRfc82CPr6b4aqSPt1Xxj7sUSRD7GylvAxO8FaMAb0M=
| Set python and toxenv vars | Set python and toxenv vars
We were sort of abusing the fact that all Travis containers had python
interpreters for Python2.7, 3.3, and 3.4. They don't have Python 3.5
installed at the moment, so hopefully this more explicit matrix will
solve it.
| YAML | mit | zoidbergwill/teamsupport-python,yola/teamsupport-python |
68f5eba41d312d9f91bddcc9517f90e64b01d7ae | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
notifications:
irc:
channels:
- "irc.mozilla.org#talkilla"
use_notice: false
skip_join: false
email:
- talkilla-travis-results@mozilla.com
before_install:
- export DISPLAY=:99.0
- export PATH=$PATH:$HOME/.local/bin
- sh -e /etc/init.d/xvfb start
- pip install --install-option="--prefix=$HOME/.local" -r require.pip --use-mirrors
# The /check url below will check to see if the repository is updated and deploy
# if necessary.
after_success:
- if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then
echo "This is a pull request, not requesting deployment";
exit 0;
fi
- if [[ "$TRAVIS_BRANCH" != "master" ]]; then
echo "Non-master branch, not requesting deployment";
exit 0;
fi
- echo "Requesting deployment"
- curl --data '' http://talkilla-deployer.mozillalabs.com/check
| language: node_js
node_js:
- "0.8"
notifications:
irc:
channels:
- "irc.mozilla.org#talkilla"
use_notice: false
skip_join: true
on_success: change
on_failure: always
template:
- "%{repository} (%{branch} - %{commit}: %{author}): %{message} %{build_url}
email:
- talkilla-travis-results@mozilla.com
- on_success: change
- on_failure: change
before_install:
- export DISPLAY=:99.0
- export PATH=$PATH:$HOME/.local/bin
- sh -e /etc/init.d/xvfb start
- pip install --install-option="--prefix=$HOME/.local" -r require.pip --use-mirrors
# The /check url below will check to see if the repository is updated and deploy
# if necessary.
after_success:
- if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then
echo "This is a pull request, not requesting deployment";
exit 0;
fi
- if [[ "$TRAVIS_BRANCH" != "master" ]]; then
echo "Non-master branch, not requesting deployment";
exit 0;
fi
- echo "Requesting deployment"
- curl --data '' http://talkilla-deployer.mozillalabs.com/check
| Adjust Travis reporting settings now that Travis reports to irc as well. rs=Florian | Adjust Travis reporting settings now that Travis reports to irc as well. rs=Florian
| YAML | mpl-2.0 | mozilla/talkilla,mozilla/talkilla,mozilla/talkilla |
50c4203f67b98575c2968452e30dad5035eb9390 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.0.0"
- "2.1.1"
script: RUBY=$(which ruby) && bundle exec rspec
| language: ruby
rvm:
- "2.0.0"
- "2.1.1"
script: RUBY=$(which ruby) && bundle exec rspec
sudo: false
| Use the new beta build env on Travis | Use the new beta build env on Travis
* faster vm boot times
* more cpus
* more ram
* better network
| YAML | mit | mrageh/duolingo,Adam89/duolingo,Diego5529/duolingo |
9f5112bc5b868349e9913321f7a524b00bf194c0 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- nightly
- hhvm
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
| Add PHP 7.0 on Travis | Add PHP 7.0 on Travis
| YAML | mit | timoh6/GenPhrase |
3b1a215ab646006f7870d0c96dcfc6efa4e8f346 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
env:
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5,<1.6"
- DJANGO="django>=1.6,<1.7"
- DJANGO="https://github.com/django/django/archive/master.tar.gz"
matrix:
exclude:
- python: 2.6
env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
allow_failures:
- env: DJANGO="https://github.com/django/django/archive/master.tar.gz"
install:
- pip install $DJANGO selenium coveralls
before_script:
- "export DISPLAY=:99.0"
- "export DJANGO_SELENIUM_TESTS=1"
- "sh -e /etc/init.d/xvfb start"
script:
- python -Wonce `which coverage` run `which django-admin.py` test admin_enhancer --settings=test_settings --pythonpath=`pwd` -v2
after_success:
- coverage report -m
- coveralls
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5,<1.6"
- DJANGO="django>=1.6,<1.7"
- DJANGO="django>=1.7,<1.8"
matrix:
exclude:
- python: 2.6
env: DJANGO="django>=1.7,<1.8"
allow_failures:
- python: 3.2
- python: 3.3
- python: 3.4
install:
- pip install $DJANGO selenium coveralls
before_script:
- "export DISPLAY=:99.0"
- "export DJANGO_SELENIUM_TESTS=1"
- "sh -e /etc/init.d/xvfb start"
script:
- python -Wonce `which coverage` run `which django-admin.py` test admin_enhancer --settings=test_settings --pythonpath=`pwd` -v2
after_success:
- coverage report -m
- coveralls
| Test against Django 1.7 and Python3. | Test against Django 1.7 and Python3.
| YAML | mit | charettes/django-admin-enhancer,DjangoAdminHackers/django-admin-enhancer,charettes/django-admin-enhancer,DjangoAdminHackers/django-admin-enhancer,charettes/django-admin-enhancer,DjangoAdminHackers/django-admin-enhancer |
3be821e9caccc73f612f5610c85571675d1cd715 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
install:
- pip install --upgrade setuptools --use-mirrors
- pip install nose
- pip install django==1.5.5
before_script:
- npm install
script:
- python setup.py test
- grunt travis --verbose
notifications:
hipchat:
rooms:
secure: A7SQlgtz1wTbt5wSpP5inxXAB7Gxmss6KIjnV0RdcU1jzKbf/umrAWgLIb/M6vr/zO/YwZCa60SkYm7yn0fGEU3fVjA7rWy5w1yllMEgxxEUy4E2DF1pL/0vryI4GwgcNzre0XA1o/Lx5/8cq6FB1fZ0V5yDyIl8xxMdWFb++X4=
template:
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
| language: python
python:
- '2.7'
env:
- DJANGO_SETTINGS_MODULE='bluebottle.settings.testing'
install:
- pip install --upgrade setuptools --use-mirrors
- pip install -q nose
- pip install -q django==1.5.5
before_script:
- npm install
script:
- python setup.py test
- grunt travis --verbose
notifications:
hipchat:
rooms:
secure: A7SQlgtz1wTbt5wSpP5inxXAB7Gxmss6KIjnV0RdcU1jzKbf/umrAWgLIb/M6vr/zO/YwZCa60SkYm7yn0fGEU3fVjA7rWy5w1yllMEgxxEUy4E2DF1pL/0vryI4GwgcNzre0XA1o/Lx5/8cq6FB1fZ0V5yDyIl8xxMdWFb++X4=
template:
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
| Add django env setting for use by parse_templates py script in grunt | Add django env setting for use by parse_templates py script in grunt | YAML | bsd-3-clause | onepercentclub/bluebottle,onepercentclub/bluebottle,onepercentclub/bluebottle,jfterpstra/bluebottle,jfterpstra/bluebottle,onepercentclub/bluebottle,jfterpstra/bluebottle,onepercentclub/bluebottle,jfterpstra/bluebottle |
99c9fd45fd81329c924fc03bfebd10df34ab6403 | .travis.yml | .travis.yml | os:
- linux
language: perl6
perl6:
- latest
install:
- rakudobrew build-zef
- zef --debug --depsonly --/test install .
script:
- zef build .
- PERL6LIB=$PWD/lib prove -e perl6 -vr t/
sudo: false
| os:
- linux
language: perl6
perl6:
- latest
install:
- rakudobrew build-zef
- zef --debug --depsonly --/test install .
script:
- PERL6LIB=$PWD/lib zef build .
- PERL6LIB=$PWD/lib prove -e perl6 -vr t/
sudo: false
| Enable zef to search lib dir | Enable zef to search lib dir | YAML | mit | titsuki/p6-Algorithm-LibSVM,titsuki/p6-Algorithm-LibSVM,titsuki/p6-Algorithm-LibSVM |
265b6d5e2a2be5fee7ffd062b012dd05f3de2b8d | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
install:
- travis_wait mvn install -Pdistribution -DskipTests=true -B -V -q
script:
- mvn test -B
- mvn -file testsuite/integration-arquillian test -B
sudo: false
| language: java
jdk:
- oraclejdk8
install:
- travis_wait mvn install -Pdistribution -DskipTests=true -B -V -q
script:
- mvn test -B
- mvn -file testsuite/integration-arquillian test -B -Pno-console
sudo: false
| Exclude admin console tests from Travis due to stability issues | Exclude admin console tests from Travis due to stability issues
| YAML | apache-2.0 | ahus1/keycloak,thomasdarimont/keycloak,jean-merelis/keycloak,mbaluch/keycloak,srose/keycloak,keycloak/keycloak,hmlnarik/keycloak,keycloak/keycloak,manuel-palacio/keycloak,ahus1/keycloak,manuel-palacio/keycloak,wildfly-security-incubator/keycloak,chameleon82/keycloak,dbarentine/keycloak,pedroigor/keycloak,brat000012001/keycloak,ewjmulder/keycloak,lkubik/keycloak,gregjones60/keycloak,mposolda/keycloak,mbaluch/keycloak,mposolda/keycloak,brat000012001/keycloak,raehalme/keycloak,keycloak/keycloak,jpkrohling/keycloak,ahus1/keycloak,lkubik/keycloak,pedroigor/keycloak,thomasdarimont/keycloak,didiez/keycloak,iperdomo/keycloak,vmuzikar/keycloak,agolPL/keycloak,mhajas/keycloak,srose/keycloak,jean-merelis/keycloak,ppolavar/keycloak,raehalme/keycloak,dbarentine/keycloak,didiez/keycloak,hmlnarik/keycloak,ahus1/keycloak,ssilvert/keycloak,raehalme/keycloak,abstractj/keycloak,agolPL/keycloak,thomasdarimont/keycloak,gregjones60/keycloak,vmuzikar/keycloak,iperdomo/keycloak,cfsnyder/keycloak,cfsnyder/keycloak,lkubik/keycloak,mposolda/keycloak,reneploetz/keycloak,ssilvert/keycloak,AOEpeople/keycloak,mbaluch/keycloak,vmuzikar/keycloak,ssilvert/keycloak,hmlnarik/keycloak,thomasdarimont/keycloak,abstractj/keycloak,hmlnarik/keycloak,brat000012001/keycloak,girirajsharma/keycloak,ppolavar/keycloak,manuel-palacio/keycloak,mposolda/keycloak,raehalme/keycloak,iperdomo/keycloak,thomasdarimont/keycloak,hmlnarik/keycloak,darranl/keycloak,ppolavar/keycloak,iperdomo/keycloak,agolPL/keycloak,girirajsharma/keycloak,lkubik/keycloak,reneploetz/keycloak,gregjones60/keycloak,reneploetz/keycloak,abstractj/keycloak,brat000012001/keycloak,vmuzikar/keycloak,pedroigor/keycloak,manuel-palacio/keycloak,darranl/keycloak,vmuzikar/keycloak,pedroigor/keycloak,ssilvert/keycloak,srose/keycloak,raehalme/keycloak,ahus1/keycloak,cfsnyder/keycloak,pedroigor/keycloak,AOEpeople/keycloak,stianst/keycloak,mhajas/keycloak,jpkrohling/keycloak,stianst/keycloak,almighty/keycloak,wildfly-security-incubator/keycloak,darranl/keycloak,gregjones60/keycloak,almighty/keycloak,raehalme/keycloak,ewjmulder/keycloak,girirajsharma/keycloak,ewjmulder/keycloak,vmuzikar/keycloak,ahus1/keycloak,didiez/keycloak,AOEpeople/keycloak,abstractj/keycloak,darranl/keycloak,stianst/keycloak,ssilvert/keycloak,agolPL/keycloak,thomasdarimont/keycloak,mhajas/keycloak,reneploetz/keycloak,stianst/keycloak,dbarentine/keycloak,jean-merelis/keycloak,hmlnarik/keycloak,almighty/keycloak,abstractj/keycloak,mbaluch/keycloak,almighty/keycloak,jpkrohling/keycloak,chameleon82/keycloak,jean-merelis/keycloak,reneploetz/keycloak,didiez/keycloak,mposolda/keycloak,cfsnyder/keycloak,dbarentine/keycloak,chameleon82/keycloak,chameleon82/keycloak,srose/keycloak,mhajas/keycloak,stianst/keycloak,jpkrohling/keycloak,ewjmulder/keycloak,AOEpeople/keycloak,girirajsharma/keycloak,jpkrohling/keycloak,wildfly-security-incubator/keycloak,pedroigor/keycloak,ppolavar/keycloak,mposolda/keycloak,wildfly-security-incubator/keycloak,brat000012001/keycloak,mhajas/keycloak,keycloak/keycloak,keycloak/keycloak,srose/keycloak |
9291e3f6ce4b110f7a37735038a203bf55e18886 | .travis.yml | .travis.yml | script: rake ci
rvm:
- 1.9.3
- ruby-head
- jruby-19mode
- rbx-19mode
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
irc: "irc.freenode.org#celluloid"
| script: rake ci
rvm:
- 1.9.3
- ruby-head
- jruby-19mode
- rbx-19mode
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-19mode
notifications:
irc: "irc.freenode.org#celluloid"
| Build is erroring on rbx | Build is erroring on rbx
| YAML | mit | celluloid/celluloid-io,marshall-lee/celluloid-io,dilumn/celluloid-io,ioquatix/celluloid-io,kenichi/celluloid-io |
b2c691157c508c6a5c929993f35509d5155c80fc | .travis.yml | .travis.yml | language: go
go:
- 1.3
before_install:
- sudo apt-get -qq remove -y libmemcached-dev
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ utopic main"
- sudo apt-get -qq update
- sudo apt-get install -y libmemcached-dev
install:
- make
script:
- make simplepush
before_deploy:
- mkdir -p build/server
- gzip simplepush
- cp simplepush.gz build/server/simplepush-linux-$TRAVIS_BUILD_NUMBER-$TRAVIS_COMMIT.gz
deploy:
provider: s3
access_key_id: AKIAJPJ3YT7MAF55UGDA
secret_access_key:
secure: Iyc3eLG0H/pFot1eNdsgulF0A8SB2ih4gc+FjhxQNE/cOX5Vy7r0ARNkUHLkqi/HkUkP2Dz27OqTmhpcRQ/71rQp/k9IXJaB3EF3VNDnNo7vw6S+wIXG19a0KQC9YGsjDWvCefFkKvOlkviHU/eS7p09Q2dRMNUNL5jUKd/SoKM=
bucket: travis-binary-uploading
skip_cleanup: true
local-dir: build/server
upload-dir: simplepush-server
on:
all_branches: true
| language: go
go:
- 1.3
before_install:
- sudo apt-get -qq remove -y libmemcached-dev
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ utopic main"
- sudo apt-get -qq update
- sudo apt-get install -y libmemcached-dev
install:
- make
script:
- make simplepush
before_deploy:
- mkdir -p build/server
- gzip simplepush
- cp simplepush.gz build/server/simplepush-linux-$TRAVIS_BUILD_NUMBER-$TRAVIS_COMMIT.gz
deploy:
provider: s3
access_key_id: AKIAJPJ3YT7MAF55UGDA
secret_access_key:
secure: Iyc3eLG0H/pFot1eNdsgulF0A8SB2ih4gc+FjhxQNE/cOX5Vy7r0ARNkUHLkqi/HkUkP2Dz27OqTmhpcRQ/71rQp/k9IXJaB3EF3VNDnNo7vw6S+wIXG19a0KQC9YGsjDWvCefFkKvOlkviHU/eS7p09Q2dRMNUNL5jUKd/SoKM=
bucket: travis-binary-uploading
skip_cleanup: true
local-dir: build/server
upload-dir: simplepush-server
on:
branch: dev
branch: master
| Reduce which branches are uploaded. | Reduce which branches are uploaded.
| YAML | mpl-2.0 | jrconlin/pushgo,mozilla-services/pushgo,jrconlin/pushgo,mozilla-services/pushgo |
ec9a7cdd832bc19dbff3e3001cd42dc4e14d5b14 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install
script:
- vendor/bin/atoum
| language: php
php:
- 5.3
- 5.4
before_script:
- echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- wget http://getcomposer.org/composer.phar
- php composer.phar install
script:
- vendor/bin/atoum
| Add memcache module to Travis config | Add memcache module to Travis config | YAML | mit | KuiKui/MemcacheServiceProvider |
8b1124c53700c443a4c455d6095724db54e1a836 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
notifications:
irc: "irc.freenode.org#molajo"
email:
- amystephen@gmail.com
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev
script:
- phpunit -c .dev/phpunit.xml --coverage-clover=coverage.clover
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
notifications:
irc: "irc.freenode.org#molajo"
email:
- amystephen@gmail.com
before_script:
- composer self-update
- composer install
script:
- phpunit -c .dev/phpunit.xml --coverage-clover=coverage.clover
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| Remove 5.3, change Composer to not fail w hhvm | Remove 5.3, change Composer to not fail w hhvm
| YAML | mit | Molajo/Molajito,Molajo/Molajito |
1644bba66e6fd81eb817a053cd7b974a1c45ee9e | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g bower
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
| Remove bower install for Travis script. | Remove bower install for Travis script.
| YAML | apache-2.0 | mozilla/vtt.js,mozilla/vtt.js,gkatsev/vtt.js,gkatsev/vtt.js |
a572eb0a2e0e2fa63871f77993748b0a81d9d6c0 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get -qq update
- cd ..
- git clone http://git.sv.gnu.org/r/autoconf.git
- cd autoconf
- ls
- aclocal -I m4
- automake
- autoconf
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone https://github.com/ImageMagick/ImageMagick
- cd ImageMagick
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
install:
- sudo apt-get -qq install rake bison git gperf libmagick++-dev libossp-uuid-dev
before_script:
- cd ../
- git clone https://github.com/mruby/mruby.git
- cd mruby
- cp -fp ../mruby-mrmagick/.travis_build_config.rb build_config.rb
script:
- make all test
| language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get -qq update
- cd ..
- git clone http://git.sv.gnu.org/r/autoconf.git
- cd autoconf
- ls
- aclocal -I m4
- automake -a
- autoconf
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone https://github.com/ImageMagick/ImageMagick
- cd ImageMagick
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
install:
- sudo apt-get -qq install rake bison git gperf libmagick++-dev libossp-uuid-dev
before_script:
- cd ../
- git clone https://github.com/mruby/mruby.git
- cd mruby
- cp -fp ../mruby-mrmagick/.travis_build_config.rb build_config.rb
script:
- make all test
| Fix install own autoconf on Travis-CI | Fix install own autoconf on Travis-CI
| YAML | mit | kjunichi/mruby-mrmagick,kjunichi/mruby-mrmagick,kjunichi/mruby-mrmagick |
75795e81e3b2d49a465a27c078377e5333d67c53 | .travis.yml | .travis.yml | language: go
go:
- tip
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- tip
sudo: required
install:
sudo apt-get install libpcap-dev
github.com/google/gopacket
go get github.com/go-ini/ini
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| Update yml file for build | Update yml file for build
| YAML | mit | logzer0/godash |
d923c85417ddaa8bd50a55f6f2e99cdd4d3dd56c | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
services:
- elasticsearch
- postgresql
env:
global:
- DJANGO_DEBUG=1
- UPLOADCARE_DISABLED=1
- ROLLBAR_DISABLED=1
- DJANGO_SECRET_KEY=foo
- DATABASE_URL=postgres://travis@127.0.0.1/travis_ci_test
- HOSTNAMES=localhost
install:
- pip install -r requirements.txt
before_script:
- psql -c 'CREATE DATABASE travis_ci_test;' -U postgres
script:
- python manage.py test pylinks
| language: python
python:
- "2.7"
services:
- elasticsearch
- postgresql
env:
global:
- DJANGO_DEBUG=1
- UPLOADCARE_DISABLED=1
- ROLLBAR_DISABLED=1
- DJANGO_SECRET_KEY=foo
- DATABASE_URL=postgres://travis@127.0.0.1/travis_ci_test
- HOSTNAMES=localhost
install:
- pip install -r requirements.txt
before_script:
- psql -c 'CREATE DATABASE travis_ci_test;' -U postgres
script:
- python manage.py test pylinks
| Stop testing with Python 2.6 | Stop testing with Python 2.6
| YAML | mit | michaelmior/pylinks,michaelmior/pylinks,michaelmior/pylinks |
511089677e221813f628902fb5033c0f661a2f08 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
before_install:
- gem update bundler
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2"
- "2.3.3"
- "2.4.0"
- "jruby-19mode"
- "rbx"
script: bundle exec rspec
| language: ruby
bundler_args: --without development
before_install:
- gem update bundler
rvm:
- 2.4.1
- jruby-9.1.8.0
- 2.3.4
- 2.2.7
- 2.1.9
- 2.0.0
- 1.9.3
- jruby-9.0.5.0
- jruby-1.7.26
- ruby-head
- jruby-head
- rbx
jdk:
- oraclejdk8
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: 1.9.3
- rvm: rbx
env:
global:
- JAVA_OPTS=-Xmx1024m
script: RUBYOPT=-w bundle exec rspec
| Test on same ruby versions as concurrent-ruby | Test on same ruby versions as concurrent-ruby
| YAML | mit | sheerun/dataloader |
fdb023de959ba71525a2a272df640b3d310f40e5 | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
bundler_args: --without guard metrics
script: "bundle exec rake spec"
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
- ruby-head
notifications:
email:
- piotr.solnica@gmail.com
- dan.kubb@gmail.com
| language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake spec"
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
- ruby-head
notifications:
email:
- piotr.solnica@gmail.com
- dan.kubb@gmail.com
| Add yard group to the list of Gemfile groups bundler should skip | Add yard group to the list of Gemfile groups bundler should skip
| YAML | mit | XescuGC/virtus,macressler/virtus,baojjeu/virtus,mallikarjunayaddala/virtus,hapiben/virtus,reevoo/virtus,faucct/virtus,dslh/virtus,artemeff/virtus,JustMikey/virtus,solnic/virtus |
f46fd48ef2f04ab8910f2a67c47514291cdcfca4 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2.2
branches:
only:
- master
script:
- bundle exec rake travis:script
after_success:
- bundle exec rake travis:after_success
| language: ruby
cache: bundler
rvm:
- 2.2.2
branches:
only:
- master
script:
- bundle exec rake travis:script
after_success:
- bundle exec rake travis:after_success
notifications:
email: false
| Disable email notifications from Travis | Disable email notifications from Travis
| YAML | mit | unboxed/ubxd_web_refresh,unboxed/unboxed.co,unboxed/ubxd_web_refresh,unboxed/unboxed.co,unboxed/ubxd_web_refresh,unboxed/unboxed.co |
16d93808376fedde9bed04166498e0770b551d00 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| Test on recent Ruby releases | Test on recent Ruby releases | YAML | mit | 1st8/blather,1st8/blather |
3659be81a3fa665042a6e16594ecfb5d980d7078 | .travis.yml | .travis.yml | before_install:
- sudo apt-get update > /dev/null
- sudo apt-get -y install lighttpd libfcgi-dev libmemcache-dev memcached
install:
- gem env version | grep '^\(2\|1.\(8\|9\|[0-9][0-9]\)\)' || gem update --system
- bundle install --jobs=3 --retry=3
script: bundle exec rake ci
rvm:
- 2.2.3
- 2.3.0
- ruby-head
- rbx-2
- jruby
- jruby-9.0.4.0
- jruby-head
notifications:
email: false
irc: "irc.freenode.org#rack"
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-2
| before_install:
- sudo apt-get update > /dev/null
- sudo apt-get -y install lighttpd libfcgi-dev libmemcache-dev memcached
install:
- gem env version | grep '^\(2\|1.\(8\|9\|[0-9][0-9]\)\)' || gem update --system
- bundle install --jobs=3 --retry=3
script: bundle exec rake ci
rvm:
- 2.2.4
- 2.3.0
- ruby-head
- rbx-2
- jruby
- jruby-9.0.4.0
- jruby-head
notifications:
email: false
irc: "irc.freenode.org#rack"
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-2
| Test against Ruby 2.2.4 on Travis. | Test against Ruby 2.2.4 on Travis.
| YAML | mit | Eric-Guo/rack,rwz/rack,ngpestelos/rack,imtayadeway/rack,Eric-Guo/rack,wjordan/rack,gfvcastro/rack,ngpestelos/rack,rwz/rack,imtayadeway/rack,ngpestelos/rack,rwz/rack,gfvcastro/rack,gioele/rack,Eric-Guo/rack,imtayadeway/rack,gioele/rack,gioele/rack,gfvcastro/rack,wjordan/rack,wjordan/rack |
1ba89ae7f9d0ac1f470acefaa965a20f384bb4ad | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
before_install:
- curl -sL https://github.com/jpm4j/jpm4j.installers/raw/master/dist/biz.aQute.jpm.run.jar >jpm4j.jar
- java -jar jpm4j.jar -u init
- ~/jpm/bin/jpm install com.codacy:codacy-coverage-reporter:assembly
android:
components:
- tools
- platform-tools
- tools
- build-tools-25.0.0
- android-25
- extra-android-m2repository
- extra-google-m2repository
- extra-android-support
- extra-google-google_play_services
script:
- ./gradlew build test
after_success:
- bash <(curl -s https://codecov.io/bash)
- ~/jpm/bin/codacy-coverage-reporter -l Java -r cinder/build/reports/jacoco/jacocoTestDebugUnitTestReport/jacocoTestDebugUnitTestReport.xml | language: android
jdk:
- oraclejdk8
before_install:
- curl -sL https://github.com/jpm4j/jpm4j.installers/raw/master/dist/biz.aQute.jpm.run.jar >jpm4j.jar
- java -jar jpm4j.jar -u init
- ~/jpm/bin/jpm install com.codacy:codacy-coverage-reporter:assembly
android:
components:
- tools
- platform-tools
- tools
- build-tools-25.0.0
- android-25
- extra-android-m2repository
- extra-google-m2repository
- extra-android-support
- extra-google-google_play_services
- sys-img-armeabi-v7a-android-22
script:
- ./gradlew build test
- ./gradlew createDebugCoverageReport
after_success:
- bash <(curl -s https://codecov.io/bash)
- ~/jpm/bin/codacy-coverage-reporter -l Java -r cinder/build/reports/jacoco/jacocoTestDebugUnitTestReport/jacocoTestDebugUnitTestReport.xml | Make Travis script generate coverage reports. | Make Travis script generate coverage reports.
| YAML | mit | akiraspeirs/Cinder |
b84b75568b51f312fe38c875398a3edc857e0c87 | .travis.yml | .travis.yml | language: node_js
deploy:
provider: openshift
user: umiiro.hacker@gmail.com
password:
secure: g6qrrgnsEfl3wEZRwLHgOLwWg6foIaeMRXRYxhGUOd2gptoCFTd4LAcCTTibV8sOz1drcVYUKDrDYzSR/D/d09chQsSloUOjJp2u6vjWgRM/tmqhAa8/y93DdCALtuIt8m67VpkJBRVgfhPk/boSwREHtVCiHx8uMBoeLomsJUs=
app: client-collab
domain: clientcollab-umireon.rhcloud.com
on:
repo: umireon/client-collab
branch: feature/travisci
| language: node_js
deploy:
provider: openshift
user: umiiro.hacker@gmail.com
password:
secure: g6qrrgnsEfl3wEZRwLHgOLwWg6foIaeMRXRYxhGUOd2gptoCFTd4LAcCTTibV8sOz1drcVYUKDrDYzSR/D/d09chQsSloUOjJp2u6vjWgRM/tmqhAa8/y93DdCALtuIt8m67VpkJBRVgfhPk/boSwREHtVCiHx8uMBoeLomsJUs=
app: client-collab
domain: umireon
on:
repo: umireon/client-collab
branch: feature/travisci
| Change the domain to the namespace. | Change the domain to the namespace.
| YAML | mit | umireon/client-collab,umireon/client-collab |
20f519eebdc0126b206f7a25a2c6beda353a7a16 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
sudo: false
install:
- cp phpunit.xml.dist phpunit.xml
- cp config/autoload/local.php.travis config/autoload/local.php
- mysql -u root -e 'create database things;'
- composer self-update
- composer install --no-interaction
- ./vendor/bin/doctrine-module orm:schema-tool:create
script:
- vendor/bin/phpcs --standard=phpcs.xml -n
- vendor/bin/phpcpd --exclude vendor ./
- vendor/bin/phpunit
| language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
sudo: false
install:
- cp phpunit.xml.dist phpunit.xml
- cp config/autoload/local.php.travis config/autoload/local.php
- mysql -u root -e 'create database things;'
- composer self-update
- composer install --no-interaction
- ./vendor/bin/doctrine-module orm:schema-tool:create
script:
- vendor/bin/phpcs --standard=phpcs.xml -n
- vendor/bin/phpcpd --exclude vendor ./
- vendor/bin/phpunit
| Add nightly build of php in versions | Add nightly build of php in versions
| YAML | mit | aiolos/sodaq-one-tracker-mapping,aiolos/sodaq-one-tracker-mapping |
ae9346082ca3146737fc247c6452b667227ed974 | .travis.yml | .travis.yml | # Travis-CI configuration for Bioconductor packages
#
# See also:
# - https://docs.travis-ci.com/user/languages/r
# - https://docs.travis-ci.com/user/environment-variables/
# - https://github.com/travis-ci/travis-build/blob/master/lib/travis/build/script/r.rb
# - https://jef.works/blog/2019/02/17/automate-testing-of-your-R-package/
script: true
language: r
cache: packages
matrix:
include:
- os: linux
r: bioc-release
- os: linux
r: bioc-devel
- os: osx
r: bioc-release
allow_failures:
- os: osx
- r: bioc-devel
fast_finish: true
branches:
only:
- master
env:
global:
- LINTR_COMMENT_BOT=true
r_packages:
- covr
bioc_packages:
- BiocCheck
r_github_packages:
- acidgenomics/lintr
after_success:
- R CMD BiocCheck .
- Rscript -e 'lintr::lint_package()'
- Rscript -e 'covr::codecov()'
notifications:
email:
recipients:
- mike@steinbaugh.com
on_success: change
on_failure: change
| # Travis-CI configuration for Bioconductor packages
#
# See also:
# - https://docs.travis-ci.com/user/languages/r
# - https://docs.travis-ci.com/user/environment-variables/
# - https://github.com/travis-ci/travis-build/blob/master/lib/travis/build/script/r.rb
# - https://jef.works/blog/2019/02/17/automate-testing-of-your-R-package/
script: true
language: r
cache: packages
bioc_required: true
bioc_check: true
use_devtools: true
matrix:
include:
- os: linux
r: bioc-release
- os: linux
r: bioc-devel
- os: osx
r: bioc-release
allow_failures:
- os: osx
- r: bioc-devel
fast_finish: true
branches:
only:
- master
env:
global:
- LINTR_COMMENT_BOT=true
r_packages:
- covr
r_github_packages:
- acidgenomics/lintr
after_success:
- Rscript -e 'lintr::lint_package()'
- Rscript -e 'covr::codecov()'
notifications:
email:
recipients:
- mike@steinbaugh.com
on_success: change
on_failure: change
| Improve Travis config [skip appveyor] | Improve Travis config [skip appveyor] | YAML | mit | steinbaugh/basejump,seqcloud/seqcloudR,steinbaugh/seqcloudr |
b948e1893834e3e38b8e3de0b3dffc3df263bedc | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist --no-suggest;
script: vendor/bin/phpunit | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist --no-suggest;
script: vendor/bin/phpunit | Allow for HHVM to fail, its just to see if this works anyway | :construction_worker: Allow for HHVM to fail, its just to see if this works anyway
| YAML | mit | tapestry-cloud/tapestry,carbontwelve/tapestry,carbontwelve/tapestry,carbontwelve/tapestry,tapestry-cloud/tapestry,tapestry-cloud/tapestry,tapestry-cloud/tapestry,carbontwelve/tapestry |
cc322b3bb4055ef79224f91bc9b3dd8b44876668 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-multilib libavcodec-dev:i386 libavutil-dev:i386 libavformat-dev:i386 libswscale-dev:i386
install: rustup target add i686-unknown-linux-gnu
script: RUST_BACKTRACE=1 PKG_CONFIG_ALLOW_CROSS=1 cargo build --verbose
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
- RUST_BACKTRACE=1
- PKG_CONFIG_PATH=/usr/lib32/pkgconfig
- PKG_CONFIG_ALLOW_CROSS=1
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-multilib libavcodec-dev:i386 libavutil-dev:i386 libavformat-dev:i386 libswscale-dev:i386
install: rustup target add i686-unknown-linux-gnu
| Set a custom pkg-config path | Set a custom pkg-config path
| YAML | mit | YaLTeR/hl-capture,YaLTeR/hl-capture,YaLTeR/hl-capture,YaLTeR/hl-capture |
38f24ad7dac5baaca67e3c13d9940d79a90068b3 | .travis.yml | .travis.yml | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7
- php: hhvm
before_install:
- composer self-update
- composer require --no-update squizlabs/php_codesniffer:dev-master
install:
- travis_retry composer install --no-interaction --prefer-source
script:
- ./bin/phpcs
| sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
include:
- php: 5.5
- php: 5.6
- php: 7
- php: hhvm
before_install:
- composer self-update
- composer require --no-update squizlabs/php_codesniffer:dev-master
install:
- travis_retry composer install --no-interaction --prefer-source
script:
- ./bin/phpcs
| Remove tests on PHP5.4 (dependency on 5.5 because of Zend libs | Remove tests on PHP5.4 (dependency on 5.5 because of Zend libs
| YAML | mit | engineor/bsb-flysystem-runabove |
38e3c8282ac9c9c23760fb9dc45a21d5f6b0329f | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
before_script:
- npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev
- mysql -u root -e "CREATE DATABASE rhymix"
- mysql -u root -e "SET PASSWORD FOR 'travis'@'localhost' = PASSWORD('travis')"
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then php -S localhost:8000 & fi
- wget http://codeception.com/releases/2.1.11/codecept.phar
script:
- php codecept.phar build
- if [[ $TRAVIS_PHP_VERSION == "hhvm" ]]; then php codecept.phar run -d --fail-fast --env travis --skip install; fi
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then php codecept.phar run -d --fail-fast --env travis; fi
- grunt lint
notifications:
email: false
| language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
sudo: false
before_script:
- npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev
- mysql -u root -e "CREATE DATABASE rhymix"
- mysql -u root -e "SET PASSWORD FOR 'travis'@'localhost' = PASSWORD('travis')"
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then php -S localhost:8000 & fi
- wget http://codeception.com/releases/2.1.11/codecept.phar
script:
- php codecept.phar build
- if [[ $TRAVIS_PHP_VERSION == "hhvm" ]]; then php codecept.phar run -d --fail-fast --env travis --skip install; fi
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then php codecept.phar run -d --fail-fast --env travis; fi
- grunt lint
notifications:
email: false
| Allow HHVM errors in Travis configuration | Allow HHVM errors in Travis configuration
| YAML | lgpl-2.1 | xetown/xe-core,xetown/xe-core,xetown/xe-core |
e435b3c46afd529aa9df0293fdf42b835a6ac2b7 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_install:
- git fetch --unshallow
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| language: java
jdk:
- openjdk8
before_install:
- git fetch --unshallow
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Use openjdk8 to build on jenkins. Maybe this is caused by oracle licensing? | Use openjdk8 to build on jenkins.
Maybe this is caused by oracle licensing?
| YAML | apache-2.0 | killjoy1221/TabbyChat-2 |
7201625e4c4bb5c2fc3d5f6da653e2c1b01b02af | .travis.yml | .travis.yml | ---
dist: trusty
sudo: required
language: ruby
install:
# Install Ansible
- sudo apt-get install -y python-pip
- pip install ansible
# Install Test Kitchen
- gem install test-kitchen kitchen-docker kitchen-ansible
# install testinfra
- pip install testinfra
# Check Test Kitchen version
- kitchen --version
script:
# Basic role syntax check
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
# Test each system using Test Kitchen
- kitchen test
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
| ---
dist: trusty
sudo: required
language: ruby
install:
# Install Ansible
- sudo apt-get install -y python-pip
- pip install ansible
# Install Test Kitchen
- gem install test-kitchen kitchen-docker kitchen-ansible
# install testinfra
- pip install testinfra
# Check versions
- kitchen --version
- ansible --version
- testinfra --version
script:
# Basic role syntax check
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
# Test each system using Test Kitchen
- kitchen test
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
| Print versions of ansible, test kitchen and testinfra | CI: Print versions of ansible, test kitchen and testinfra
Signed-off-by: Tomas Hozza <2152b765a3a51268598a4503265cd77ce732fa8c@gmail.com>
| YAML | mit | thozza/ansible-gitlab-runner |
e94e11f0891cd23eb48b99b0259ed9acc3bf58fa | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: python
cache:
pip: true
directories:
- node_modules
python:
- 3.5
- 3.6
env:
- DJANGO_SETTINGS_MODULE="babybuddy.settings.travis"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 8
- npm install -g gulp-cli && npm install
- pip install pipenv && pipenv install --dev
before_script:
- gulp lint
script:
- gulp coverage
after_success:
- pipenv run coveralls
notifications:
email: false
| sudo: false
dist: xenial
language: python
cache:
pip: true
directories:
- node_modules
python:
- 3.5
- 3.6
env:
- DJANGO_SETTINGS_MODULE="babybuddy.settings.travis"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 8
- npm install -g gulp-cli && npm install
- pip install pipenv && pipenv install --dev
before_script:
- gulp lint
script:
- gulp coverage
after_success:
- pipenv run coveralls
notifications:
email: false
| Update Travis CI dist to support SQLite > 3.8.2. | Update Travis CI dist to support SQLite > 3.8.2.
| YAML | bsd-2-clause | cdubz/babybuddy,cdubz/babybuddy,cdubz/babybuddy |
f340a959555928e17c040d3e189f5e6abe31dd87 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: hhvm
dist: trusty
allow_failures:
- php: hhvm
install: travis_retry composer update --no-interaction
script: vendor/bin/phpunit
before_deploy: bin/package -v $TRAVIS_TAG
deploy:
provider: releases
api_key:
secure: LL8koDM1xDqzF9t0URHvmMPyWjojyd4PeZ7IW7XYgyvD6n1H6GYrVAeKCh5wfUKFbwHoa9s5AAn6pLzra00bODVkPTmUH+FSMWz9JKLw9ODAn8HvN7C+IooxmeClGHFZc0TfHfya8/D1E9C1iXtGGEoE/GqtaYq/z0C1DLpO0OU=
file_glob: true
file: dist/psysh-*.tar.gz
skip_cleanup: true
on:
tags: true
repo: bobthecow/psysh
condition: ($TRAVIS_PHP_VERSION = 5.3* || $TRAVIS_PHP_VERSION = 7.1*)
| language: php
sudo: false
matrix:
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: hhvm
dist: trusty
allow_failures:
- php: hhvm
install: travis_retry composer update --no-interaction
script: vendor/bin/phpunit --verbose
before_deploy: bin/package -v $TRAVIS_TAG
deploy:
provider: releases
api_key:
secure: LL8koDM1xDqzF9t0URHvmMPyWjojyd4PeZ7IW7XYgyvD6n1H6GYrVAeKCh5wfUKFbwHoa9s5AAn6pLzra00bODVkPTmUH+FSMWz9JKLw9ODAn8HvN7C+IooxmeClGHFZc0TfHfya8/D1E9C1iXtGGEoE/GqtaYq/z0C1DLpO0OU=
file_glob: true
file: dist/psysh-*.tar.gz
skip_cleanup: true
on:
tags: true
repo: bobthecow/psysh
condition: ($TRAVIS_PHP_VERSION = 5.3* || $TRAVIS_PHP_VERSION = 7.1*)
| Enable verbose mode on phpunit on travos | Enable verbose mode on phpunit on travos | YAML | mit | bobthecow/psysh,bobthecow/psysh |
737d7c3281cec29e3773d237b2fb6f59d7bb1f68 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
script:
- npm run build
deploy:
provider: pages
skip_cleanup: true
local_dir: public
github-token:
secure: "Mqf24XwTwIVm61Fz5MkKRH0C1XrUbadpNGc3+Zyxzp/IiC7wJ3bDaPBSu7H7SbkJWatcyP7aBZ2Z10wdnEIPHXh4CuVRJfkHAA2miOQ/TfkJcsWWkW3NXdo0Tl6063wPLQXUEUBCEL4VrkZS0m0GU8RA53LV/KygQUZ5r6t/ekE="
on:
branch: master
| language: node_js
node_js:
- "7"
script:
- npm run build
deploy:
provider: surge
skip_cleanup: true
project: ./public/
on:
branch: master
| Deploy to surge.sh instead of github pages | Deploy to surge.sh instead of github pages
| YAML | mit | CodeForPhilly/philly-ward-leaders,CodeForPhilly/philly-ward-leaders,CodeForPhilly/philly-ward-leaders,CodeForPhilly/philly-ward-leaders |
b670f198e16efc1a7b3bdfebef9f605ab6fe3840 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
- ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: jruby-19mode
notifications:
irc: "irc.freenode.org#adhearsion"
| Allow CI failure on Rubinius and JRuby while dependencies are fixed on those platforms | [CS] Allow CI failure on Rubinius and JRuby while dependencies are fixed on those platforms | YAML | mit | adhearsion/punchblock,kares/punchblock,cloudvox/punchblock,system123/punchblock |
73aa54d7c40c4cd6fd9f162989ab770b0c0f1947 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk7
- oraclejdk7
- openjdk8
services:
- redis-server
after_success:
- mvn cobertura:cobertura coveralls:cobertura
| language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
services:
- redis-server
after_success:
- mvn cobertura:cobertura coveralls:cobertura
| Fix the JDK 8 string | Fix the JDK 8 string | YAML | apache-2.0 | gresrun/jesque,shrayasr/jesque,lerencao/jesque,argvk/jesque,pencilkill/jesque |
2634e15510b06ace2a241244494cad99b8cf3cf0 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
addons:
firefox: "latest"
before_install:
- sudo apt-get install lcov
- nvm install $(python -c "import json; print(json.loads(open('./assets/package.json').read())['engines']['node'])")
install:
- make env
- gem install coveralls-lcov
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- mkdir coverage
script:
- make test coveralls
| language: python
python:
- "3.6"
addons:
firefox: "latest"
before_install:
- sudo apt-get install lcov
- nvm install $(python -c "import json; print(json.loads(open('./assets/package.json').read())['engines']['node'])")
install:
- make env
- gem install coveralls-lcov
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- mkdir coverage
script:
- make test coveralls
| Use Python 3.6 on TravisCI | Use Python 3.6 on TravisCI
| YAML | unlicense | mbucknell/PubsWarehouse_UI,USGS-CIDA/PubsWarehouse_UI,ayan-usgs/PubsWarehouse_UI,USGS-CIDA/PubsWarehouse_UI,ayan-usgs/PubsWarehouse_UI,jkreft-usgs/PubsWarehouse_UI,ayan-usgs/PubsWarehouse_UI,USGS-CIDA/PubsWarehouse_UI,mbucknell/PubsWarehouse_UI,USGS-CIDA/PubsWarehouse_UI,jkreft-usgs/PubsWarehouse_UI,ayan-usgs/PubsWarehouse_UI,jkreft-usgs/PubsWarehouse_UI,mbucknell/PubsWarehouse_UI,jkreft-usgs/PubsWarehouse_UI,mbucknell/PubsWarehouse_UI |
8b5a1a954fb37f5ee60f9aea60f4af3fbf27855b | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
- "10"
- "11"
- "12"
install:
- yarn install
script:
- yarn run lint
- yarn run compile
- yarn run test
jobs:
include:
- stage: after_success
script:
- yarn install
- yarn run test-coverage
- yarn run send-coveralls
- yarn add -D codacy-coverage
- yarn run send-codacy
node_js: 10
| language: node_js
node_js:
- "8"
- "10"
- "11"
- "12"
install:
- yarn install
script:
- yarn run lint
- yarn run compile
- yarn run test
jobs:
include:
- stage: after_success
script:
- yarn install
- yarn run test-coverage
# - yarn run send-coveralls
- yarn add -D codacy-coverage
- yarn run send-codacy
node_js: 10
| Disable sending coverage to coveralls, coveralls is down | Disable sending coverage to coveralls, coveralls is down
| YAML | mit | Borewit/music-metadata,Borewit/music-metadata |
66fe4c269e2e79fd8a33a473ca5e6dda29df8016 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
# - "pypy"
install:
- pip install cython
- python setup.py install
script:
- ./update_c.sh
- py.test
| language: python
python:
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
# - "pypy"
install:
- pip install cython
- python setup.py install
script:
- ./update_c.sh
- py.test
| Add Python 3.5 to Travis-CI | Add Python 3.5 to Travis-CI
| YAML | mit | kmike/hat-trie,kmike/hat-trie,kmike/hat-trie,kmike/hat-trie |
0f4631f2e174b19069afd181a5d0104a7e810e57 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
env:
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=2.8.*
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=3.1.*@dev
- php: 7.0
env: SYMFONY_VERSION=3.1.*@dev
- php: 7.1
env: SYMFONY_VERSION=3.1.*@dev
before_install:
- composer self-update
- composer require symfony/symfony:${SYMFONY_VERSION} --no-update
install: composer update --prefer-source
script:
- mkdir -p build/logs
- composer validate
- phpunit --coverage-clover build/logs/clover.xml
after_script: php vendor/bin/coveralls -v
notifications:
email:
- hello@lennerd.com
| language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
env:
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=2.8.*
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=3.1.*@dev
- php: 7.0
env: SYMFONY_VERSION=3.1.*@dev
- php: 7.1
env: SYMFONY_VERSION=3.1.*@dev
before_install:
- composer validate
- composer self-update
- composer require symfony/symfony:${SYMFONY_VERSION} --no-update
install: composer update --prefer-source
script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml
after_script: php vendor/bin/coveralls -v
notifications:
email:
- hello@lennerd.com
| Fix composer validation to take place before installation. | Fix composer validation to take place before installation.
| YAML | mit | lennerd/vipx-bot-detect |
d467da4093cd1be7dc56b06bd26262663f4cf284 | .travis.yml | .travis.yml | language: scala
services:
- rabbitmq
scala:
- 2.11.4
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
| language: scala
services:
- rabbitmq
scala:
- 2.10.4
- 2.11.4
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
| Add Scala 2.10.4 to Travis configuration | Add Scala 2.10.4 to Travis configuration
| YAML | apache-2.0 | ScalaConsultants/reactive-rabbit,davidwrpayne/reactive-rabbit |
5b96fc806a2b07cc30b56587731fda26edf9e524 | .travis.yml | .travis.yml | sudo: required
language: java
services:
- docker
env:
global:
- APP=iou
- REPO=staticvoiduk/$APP
- COMMIT=${TRAVIS_COMMIT::8}
after_success:
- docker build -t $REPO:$COMMIT . --build-arg JAR_FILE=./build/libs/$APP-0.0.1-SNAPSHOT.jar
- scripts/push-to-repo.sh
| sudo: required
language: java
services:
- docker
env:
global:
- APP=iou
- REPO=staticvoiduk/$APP
- COMMIT=${TRAVIS_COMMIT::8}
after_success:
- docker build -t $REPO:$COMMIT . --build-arg JAR_FILE=./build/libs/$APP-0.0.1-SNAPSHOT.jar
- scripts/push-to-repo.sh
notifications:
slack:
rooms:
secure: nrMqvp0IWjDgNALRl25QIkI7gJQDiMVX0fdR2XFHrKZiVJp1eLI0XEYkg158Le67nXTVjPOs6ZXnHUsEaDjMMjpqU+kpO63ch6rXdHlmoYkHsh2v+enfjl9BiCxxz/UV2oVWKJJ5lLP2nZb5SXcVDWIS/FCEAqJtrkFm0/vBuNep5yo+4RWhahI6Ym09mnImRzds+zsezIAODqa9pakLM4Geh1CyH8l8d+SyhybKz8OywWz2DunUecO0fLduEQffBXJEfbF1SHFNQuUANlP+4l9GG5eGuUG72UFpB5HT7CX+akeDNIggdjcTkD7cI/m7zT6oJugnPhbRBV5HbTSxj+kGTyEouUiGKtT015XRdcVKStMjWLtqpqwZgD+h+Dxv1p6BZ8xkg3o6wl/osQmfNGMsfbOy1l029470z9oJeO24+AiEVn+N8I+KZn+s2nsJ7wLIGQ5/vO2m21yX7GLSbWz0V2OSaUI46vSYE71vCnxYtsnftgHr+FgVa3cIH4pt1U8GD/DjBXP19aPEzIw7kiUeVCrdS4iKnSC2wlFCLOn/9BvCGdFYQLOzxnZ27UCy28Pb6txFwRZ0B+dXcFDjeQTqseLiiyVVTwTRh7dYT4H6d5a5+Knqp+lWhkrdd4TXsgjt68qJfnwNrmqEz3nL9iHw8Gciw4YZP/RBY2YEwP0=
on_success: always
on_failure: always
| Add Travis-CI notifications on build | Add Travis-CI notifications on build
| YAML | mit | nathancashmore/iou,nathancashmore/iou |
af07c3bd687ddcde8e3f67c1d3c2a379f137e13c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0
- jruby-18mode
- jruby-19mode
- rbx-2
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby-18mode
- jruby-19mode
- rbx-2
before_install:
- gem install bundler
| Upgrade Travis to newer bundler. | Upgrade Travis to newer bundler.
Necessary because of https://github.com/bundler/bundler/issues/3558.
| YAML | mit | whitequark/ast |
caa47fd56af1f8ff88017c88ad607415db1ef69e | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
- travis_retry phpenv rehash
script:
- ./vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
| language: php
php:
- 5.6
- 7.0
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
- travis_retry phpenv rehash
script:
- ./vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
| Drop support for PHP 5.5 & HHVM | Drop support for PHP 5.5 & HHVM
| YAML | mit | WiderFunnel-Labs/OAuth2-Optimizely |
88ab951febda0ba35531b16cbf3534d09a851d25 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
before_install:
- gem update --system
- gem install --pre sass
| language: node_js
node_js:
- '0.10'
before_install:
- gem update --system
- gem install sass
| Use the stable version of Sass for testing | Use the stable version of Sass for testing
Sourcemaps and all the other new good stuff is in Sass 3.3.8, so no need to use
an unstable prerease anymore.
| YAML | mit | mathiasbynens/gulp-ruby-sass,froucher/gulp-ruby-sass,sindresorhus/gulp-ruby-sass |
7319a8a088461b2424d95bd622e969015096fd55 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
["git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-releng", ".forge-releng/publish"]
env:
global:
- PUBLISHER_LOGIN=camptocamp
- secure: "C+OKnZMb/hQj7f3C4D+rrRRqZRPkfWCEo/HTD5iGDBwyTGVHcEOR+NCDBplLzgiGlsrSX1w0FdG0byetHq0D8Ldx+hry7S3g15aCRQotO6JzHkDMUZSnS8OvxBC5d/+SE1TuXezh9aojiAlJqPNHFFkH7gxP+gQ2nIA5SUJ+/d4="
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7"
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0"
notifications:
email: false
| ---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
["git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-releng", ".forge-releng/publish"]
env:
global:
- PUBLISHER_LOGIN=camptocamp
- secure: "C+OKnZMb/hQj7f3C4D+rrRRqZRPkfWCEo/HTD5iGDBwyTGVHcEOR+NCDBplLzgiGlsrSX1w0FdG0byetHq0D8Ldx+hry7S3g15aCRQotO6JzHkDMUZSnS8OvxBC5d/+SE1TuXezh9aojiAlJqPNHFFkH7gxP+gQ2nIA5SUJ+/d4="
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0"
notifications:
email: false
| Use modulesync to manage meta files | Use modulesync to manage meta files
| YAML | apache-2.0 | camptocamp/puppet-buildenv |
9171e3e01288b3a18cd3602d27f7f9bf366ea095 | .travis.yml | .travis.yml | sudo: false
language: node_js
notifications:
email: false
node_js:
- '4.2'
- 'stable'
before_script:
- npm install -g istanbul
- npm run-script pretest
script:
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
| sudo: false
language: node_js
notifications:
email: false
node_js:
- '4.2'
- 'stable'
before_script:
- npm install -g istanbul
- npm run-script pretest
script:
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly --
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
| Move coverage reporting to after_script | Move coverage reporting to after_script
| YAML | mit | jmversteeg/nectar |
c38c4e898e42f4b5263d670230dc4f871eb7ee3d | .travis.yml | .travis.yml | language: objective-c
notifications:
email:
on_success: never
on_failure: change
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
| language: objective-c
notifications:
email:
on_success: never
on_failure: change
install: brew install emscripten
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
| Use Homebrew to install Emscripten on Travis. | Use Homebrew to install Emscripten on Travis.
| YAML | mit | k2b6s9j/linter-emscripten,k2b6s9j/linter-emscripten,k2b6s9j/linter-emscripten |
154d80ae3ab3879ba3534a7ed04d85929ae48799 | .travis.yml | .travis.yml | language: go
go:
- 1.11.x
- master
sudo: false
# safelist branch to build
branches:
only:
- master
script:
- go get github.com/streadway/amqp
- make jenkins
notifications:
email:
- bifer@alea-soluciones.com
| language: go
go:
- 1.11.x
- 1.17.x
sudo: false
# safelist branch to build
branches:
only:
- master
script:
- go get github.com/streadway/amqp
- make jenkins
notifications:
email:
- bifer@alea-soluciones.com
| Fix latest version compatible 1.17.X | [FIX] Fix latest version compatible 1.17.X
| YAML | mit | aleasoluciones/gosnmpquerier,aleasoluciones/gosnmpquerier |
0badfbafd72c78d3c6c0a4f2eaf8ab612e14675d | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: go
go:
- 1.6
- tip
env:
global:
- BACKEND="$HOME/gopath/src/github.com/seadsystem/Backend"
- API="$BACKEND/DB/api"
- LZONE="$BACKEND/DB/landingzone"
addons:
apt:
packages:
- libpq-dev
- python3-numpy
- python3-coverage
- python3-psycopg2
install:
- go get github.com/olt/libpq
- go get github.com/DATA-DOG/go-sqlmock
- go get golang.org/x/tools/cmd/cover
- go get github.com/codecov/example-go
- python3 -V
- sudo apt-get install -y python3-pip
- sudo -H pip3 install -U matplotlib
- pip3 install --user coveralls
before_script:
- cd "$LZONE"; go install
script:
- go vet "$LZONE/..."
- "$GOPATH/src/github.com/codecov/example-go/go.test.sh"
- cd "$API"; python3-coverage run --include="$API/*.py" -m unittest discover
after_success:
- bash <(curl -s https://codecov.io/bash)
- coveralls
| sudo: required
dist: trusty
language: go
go:
- 1.6
- tip
env:
global:
- BACKEND="$HOME/gopath/src/github.com/seadsystem/Backend"
- API="$BACKEND/DB/api"
- LZONE="$BACKEND/DB/landingzone"
addons:
apt:
packages:
- libpq-dev
- python3-numpy
- python3-psycopg2
install:
- go get github.com/olt/libpq
- go get github.com/DATA-DOG/go-sqlmock
- go get golang.org/x/tools/cmd/cover
- go get github.com/codecov/example-go
- python3 -V
- sudo apt-get install -y python3-pip
- sudo -H pip3 install -U matplotlib
- sudo -H pip3 install coveralls
before_script:
- cd "$LZONE"; go install
script:
- go vet "$LZONE/..."
- "$GOPATH/src/github.com/codecov/example-go/go.test.sh"
- cd "$API"; coverage run --include="$API/*.py" -m unittest discover
after_success:
- bash <(curl -s https://codecov.io/bash)
- coveralls
| Switch to using python2 coverage to be compatible with coveralls. | Switch to using python2 coverage to be compatible with coveralls.
| YAML | mit | seadsystem/Backend,seadsystem/Backend,seadsystem/Backend,seadsystem/Backend |
01c69d4579766fe96954cbfaff348eeb54200fe2 | .travis.yml | .travis.yml | # Enable C++ support
language: cpp
# OS
sudo: required
dist: trusty
# Compiler selection
compiler:
- clang
- gcc
# Build steps
script: ./make-ci.sh
| # Enable C++ support
language: cpp
cache: ccache
# OS
sudo: required
dist: trusty
# Compiler selection
compiler:
- clang
- gcc
# Build steps
script: ./make-ci.sh
| Enable ccache for faster builds. | Enable ccache for faster builds. | YAML | apache-2.0 | hmartiro/redox,hmartiro/redox |
6d956721f1f287301b480c4ced370ccab68c2370 | apps/elekto/deployment.yaml | apps/elekto/deployment.yaml | apiVersion: apps/v1
kind: Deployment
metadata:
name: elekto
namespace: elekto
labels:
app: elekto
spec:
replicas: 1
selector:
matchLabels:
app: elekto
strategy:
type: Recreate
template:
metadata:
labels:
app: elekto
spec:
containers:
- image: ghcr.io/elekto-io/elekto:sha-83523b4
imagePullPolicy: Always
name: elekto
ports:
- containerPort: 8080
protocol: TCP
readinessProbe:
failureThreshold: 5
httpGet:
path: /health
port: 8080
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 60
timeoutSeconds: 5
resources:
limits:
memory: 1500M
securityContext:
allowPrivilegeEscalation: false
privileged: false
envFrom:
- configMapRef:
name: elekto-config
- secretRef:
name: elekto-secret
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
restartPolicy: Always
terminationGracePeriodSeconds: 30
| apiVersion: apps/v1
kind: Deployment
metadata:
name: elekto
namespace: elekto
labels:
app: elekto
spec:
replicas: 1
selector:
matchLabels:
app: elekto
strategy:
type: Recreate
template:
metadata:
labels:
app: elekto
spec:
containers:
- image: ghcr.io/elekto-io/elekto:sha-c25fc16
imagePullPolicy: Always
name: elekto
ports:
- containerPort: 8080
protocol: TCP
readinessProbe:
failureThreshold: 5
httpGet:
path: /health
port: 8080
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 60
timeoutSeconds: 5
resources:
limits:
memory: 1500M
securityContext:
allowPrivilegeEscalation: false
privileged: false
envFrom:
- configMapRef:
name: elekto-config
- secretRef:
name: elekto-secret
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
restartPolicy: Always
terminationGracePeriodSeconds: 30
| Deploy updated version of Elekto. | Deploy updated version of Elekto.
New version fixes display of employer affiliation in the UI.
Signed-off-by: Josh Berkus <c028c213ed5efcf30c3f4fc7361dbde0c893c5b7@agliodbs.com>
| YAML | apache-2.0 | kubernetes/k8s.io,kubernetes/k8s.io,kubernetes/k8s.io,kubernetes/k8s.io |
8389bcabf303f2bde77eb045579f9146a89fb7e6 | metadata/com.kolloware.hypezigapp.yml | metadata/com.kolloware.hypezigapp.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: GPL-3.0-or-later
AuthorName: Markus Kollotzek
AuthorEmail: markus.kollotzek@posteo.de
WebSite: https://gitlab.com/intergalacticsuperhero/hypezig
SourceCode: https://gitlab.com/intergalacticsuperhero/hypezig/tree/HEAD
IssueTracker: https://gitlab.com/intergalacticsuperhero/hypezig/issues
AutoName: Hypezig
RepoType: git
Repo: https://gitlab.com/intergalacticsuperhero/hypezig.git
Builds:
- versionName: '1.1'
versionCode: 11
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 12
commit: v1.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+(\.\d+)?
CurrentVersion: '1.2'
CurrentVersionCode: 12
| AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: GPL-3.0-or-later
AuthorName: Markus Kollotzek
AuthorEmail: markus.kollotzek@posteo.de
WebSite: https://gitlab.com/intergalacticsuperhero/hypezig
SourceCode: https://gitlab.com/intergalacticsuperhero/hypezig/tree/HEAD
IssueTracker: https://gitlab.com/intergalacticsuperhero/hypezig/issues
AutoName: Hypezig
RepoType: git
Repo: https://gitlab.com/intergalacticsuperhero/hypezig.git
Builds:
- versionName: '1.1'
versionCode: 11
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 12
commit: v1.2
subdir: app
gradle:
- yes
- versionName: '1.5'
versionCode: 14
commit: v1.5
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+(\.\d+)?
CurrentVersion: '1.5'
CurrentVersionCode: 14
| Update Hypezig to 1.5 (14) | Update Hypezig to 1.5 (14)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
2c4092c4a14f5bd0266bdebfc7ba5443e802e670 | packages/mb/mbox-utility.yaml | packages/mb/mbox-utility.yaml | homepage: ''
changelog-type: ''
hash: 5f564289ace1aba40fa3ead60b9b6b84ef83cd64d98fa58f96faad3e92501352
test-bench-deps: {}
maintainer: haskell@henning-thielemann.de
synopsis: List contents of an mbox file containing e-mails
changelog: ''
basic-deps:
bytestring: ! '>=0.9.1 && <0.11'
base: ! '>=4.2 && <5'
spreadsheet: ! '>=0.1.3 && <0.2'
parsec: ! '>=2.1 && <4'
utility-ht: ! '>=0.0.7 && <0.1'
non-empty: ! '>=0.0 && <0.4'
old-time: ! '>=1.0 && <1.2'
hsemail: ! '>=2 && <2.1'
all-versions:
- '0.0'
- 0.0.1
author: Henning Thielemann
latest: 0.0.1
description-type: haddock
description: |-
List contents of an mbox file containing e-mails.
This is intended for post-processing by the @cutter@ command.
See <http://hackage.haskell.org/package/cutter>.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: 0df8c80bffbddc768039eb1a716a7caa8af7d53c4b5b52ef273fc4f6a0f5266b
test-bench-deps: {}
maintainer: haskell@henning-thielemann.de
synopsis: List contents of an mbox file containing e-mails
changelog: ''
basic-deps:
bytestring: ! '>=0.9.1 && <0.11'
base: ! '>=4.2 && <5'
time: ! '>=1.5 && <1.10'
spreadsheet: ! '>=0.1.3 && <0.2'
parsec: ! '>=2.1 && <4'
utility-ht: ! '>=0.0.7 && <0.1'
non-empty: ! '>=0.0 && <0.4'
hsemail: ! '>=2.1 && <2.2'
all-versions:
- '0.0'
- 0.0.1
- 0.0.3
author: Henning Thielemann
latest: 0.0.3
description-type: haddock
description: |-
List contents of an mbox file containing e-mails.
This is intended for post-processing by the @cutter@ command.
See <http://hackage.haskell.org/package/cutter>.
license-name: BSD-3-Clause
| Update from Hackage at 2019-06-26T09:04:21Z | Update from Hackage at 2019-06-26T09:04:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
4f98785e2ec990dfecc24291cfb333a55dee4b09 | packages/nt/ntrip-client.yaml | packages/nt/ntrip-client.yaml | homepage: ''
changelog-type: ''
hash: 9ba34730b79731d59baf064da404f9180b10272453ba2b512f620d178f61089e
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: NTRIP client.
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
optparse-generic: -any
case-insensitive: -any
base: ! '>=4.7 && <5'
base64-bytestring: -any
basic-prelude: -any
monad-control: -any
conduit: -any
conduit-extra: -any
uri-bytestring: -any
lens: -any
ntrip-client: -any
lifted-async: -any
attoparsec: -any
http-types: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
author: Swift Navigation Inc.
latest: '0.1.3'
description-type: haddock
description: Networked Transport of RTCM via Internet Protocol client.
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 98f6b563e5792b6748edfc89e1221e12fd187889747345650b836053739ca040
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: NTRIP client.
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
optparse-generic: -any
case-insensitive: -any
base: ! '>=4.7 && <5'
base64-bytestring: -any
basic-prelude: -any
monad-control: -any
conduit: -any
conduit-extra: -any
uri-bytestring: -any
lens: -any
ntrip-client: -any
lifted-async: -any
attoparsec: -any
http-types: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
author: Swift Navigation Inc.
latest: '0.1.4'
description-type: haddock
description: Networked Transport of RTCM via Internet Protocol client.
license-name: BSD3
| Update from Hackage at 2016-11-04T01:01:11Z | Update from Hackage at 2016-11-04T01:01:11Z | YAML | mit | commercialhaskell/all-cabal-metadata |
2d1b17d100abc636f2b38c24e760d15ceee4a68f | resources/linux/snap/snapcraft.yaml | resources/linux/snap/snapcraft.yaml | name: @@NAME@@
version: @@VERSION@@
summary: Code editing. Redefined.
description: |
Visual Studio Code is a new choice of tool that combines the
simplicity of a code editor with what developers need for the core
edit-build-debug cycle.
grade: stable
confinement: classic
parts:
code:
plugin: dump
source: .
stage-packages:
- libasound2
- libgconf2-4
- libnotify4
- libnspr4
- libnss3
- libpcre3
- libpulse0
- libxss1
- libxtst6
# desktop-gtk2 deps below
- libgtk2.0-0
- libappindicator1
prime:
- -usr/share/dh-python
electron-launch:
plugin: dump
source: .
organize:
electron-launch: bin/electron-launch
apps:
@@NAME@@:
command: bin/electron-launch ${SNAP}/usr/share/@@NAME@@/bin/@@NAME@@
desktop: usr/share/applications/@@NAME@@.desktop | name: @@NAME@@
version: @@VERSION@@
summary: Code editing. Redefined.
description: |
Visual Studio Code is a new choice of tool that combines the
simplicity of a code editor with what developers need for the core
edit-build-debug cycle.
grade: stable
confinement: classic
parts:
code:
plugin: dump
source: .
stage-packages:
- libasound2
- libgconf2-4
- libnotify4
- libnspr4
- libnss3
- libpcre3
- libpulse0
- libxss1
- libxtst6
# desktop-gtk2 deps below
- libxkbcommon0
- libgtk2.0-0
- libgdk-pixbuf2.0-0
- libglib2.0-bin
- libgtk2.0-bin
- unity-gtk2-module
- libappindicator1
- xdg-user-dirs
prime:
- -usr/share/dh-python
electron-launch:
plugin: dump
source: .
organize:
electron-launch: bin/electron-launch
apps:
@@NAME@@:
command: bin/electron-launch ${SNAP}/usr/share/@@NAME@@/bin/@@NAME@@
desktop: usr/share/applications/@@NAME@@.desktop | Include more stage packages in snap | Include more stage packages in snap
| YAML | mit | landonepps/vscode,joaomoreno/vscode,cleidigh/vscode,the-ress/vscode,eamodio/vscode,hoovercj/vscode,joaomoreno/vscode,mjbvz/vscode,DustinCampbell/vscode,cleidigh/vscode,Krzysztof-Cieslak/vscode,landonepps/vscode,Krzysztof-Cieslak/vscode,the-ress/vscode,mjbvz/vscode,DustinCampbell/vscode,the-ress/vscode,microsoft/vscode,mjbvz/vscode,Krzysztof-Cieslak/vscode,the-ress/vscode,microsoft/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,cleidigh/vscode,hoovercj/vscode,microlv/vscode,cleidigh/vscode,eamodio/vscode,eamodio/vscode,hoovercj/vscode,microsoft/vscode,microlv/vscode,mjbvz/vscode,Krzysztof-Cieslak/vscode,mjbvz/vscode,the-ress/vscode,cleidigh/vscode,Krzysztof-Cieslak/vscode,mjbvz/vscode,microsoft/vscode,DustinCampbell/vscode,landonepps/vscode,the-ress/vscode,eamodio/vscode,eamodio/vscode,microlv/vscode,microlv/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,eamodio/vscode,mjbvz/vscode,joaomoreno/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,Microsoft/vscode,joaomoreno/vscode,cleidigh/vscode,landonepps/vscode,hoovercj/vscode,Microsoft/vscode,the-ress/vscode,the-ress/vscode,landonepps/vscode,microsoft/vscode,joaomoreno/vscode,mjbvz/vscode,landonepps/vscode,microlv/vscode,mjbvz/vscode,eamodio/vscode,joaomoreno/vscode,DustinCampbell/vscode,DustinCampbell/vscode,Krzysztof-Cieslak/vscode,DustinCampbell/vscode,Krzysztof-Cieslak/vscode,the-ress/vscode,Krzysztof-Cieslak/vscode,cleidigh/vscode,DustinCampbell/vscode,hoovercj/vscode,landonepps/vscode,hoovercj/vscode,the-ress/vscode,DustinCampbell/vscode,microlv/vscode,Microsoft/vscode,microsoft/vscode,DustinCampbell/vscode,cleidigh/vscode,Microsoft/vscode,microsoft/vscode,mjbvz/vscode,eamodio/vscode,hoovercj/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,landonepps/vscode,the-ress/vscode,joaomoreno/vscode,landonepps/vscode,microlv/vscode,Microsoft/vscode,DustinCampbell/vscode,hoovercj/vscode,hoovercj/vscode,eamodio/vscode,Microsoft/vscode,landonepps/vscode,microlv/vscode,cleidigh/vscode,microsoft/vscode,hoovercj/vscode,cleidigh/vscode,microsoft/vscode,cleidigh/vscode,microsoft/vscode,the-ress/vscode,cleidigh/vscode,microsoft/vscode,joaomoreno/vscode,microlv/vscode,landonepps/vscode,hoovercj/vscode,the-ress/vscode,cleidigh/vscode,Microsoft/vscode,eamodio/vscode,DustinCampbell/vscode,Microsoft/vscode,joaomoreno/vscode,Krzysztof-Cieslak/vscode,cleidigh/vscode,landonepps/vscode,joaomoreno/vscode,eamodio/vscode,microlv/vscode,mjbvz/vscode,mjbvz/vscode,Microsoft/vscode,microlv/vscode,Microsoft/vscode,joaomoreno/vscode,mjbvz/vscode,microsoft/vscode,eamodio/vscode,microlv/vscode,microsoft/vscode,microlv/vscode,joaomoreno/vscode,Microsoft/vscode,DustinCampbell/vscode,eamodio/vscode,Microsoft/vscode,mjbvz/vscode,landonepps/vscode,microsoft/vscode,joaomoreno/vscode,eamodio/vscode,mjbvz/vscode,DustinCampbell/vscode,DustinCampbell/vscode,mjbvz/vscode,hoovercj/vscode,cleidigh/vscode,the-ress/vscode,microlv/vscode,the-ress/vscode,Microsoft/vscode,joaomoreno/vscode,microsoft/vscode,Krzysztof-Cieslak/vscode,microlv/vscode,cleidigh/vscode,the-ress/vscode,joaomoreno/vscode,Krzysztof-Cieslak/vscode,hoovercj/vscode,Microsoft/vscode,landonepps/vscode,joaomoreno/vscode,hoovercj/vscode,microlv/vscode,DustinCampbell/vscode,landonepps/vscode,hoovercj/vscode,Microsoft/vscode,mjbvz/vscode,DustinCampbell/vscode,Microsoft/vscode,hoovercj/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,DustinCampbell/vscode,Krzysztof-Cieslak/vscode,landonepps/vscode,hoovercj/vscode,cleidigh/vscode,microlv/vscode,Microsoft/vscode,landonepps/vscode,joaomoreno/vscode |
3361d138c4fb2da309c126fb7ae7a065fd36dd4d | roles/installer/ospd/images/tasks/rpm.yml | roles/installer/ospd/images/tasks/rpm.yml | ---
- name: install the RPM with the pre-built overcloud images
become: yes
yum:
name: "rhosp-director-images"
state: present
- name: move images (sym link) to home dir
become: yes
shell: "cp /usr/share/rhosp-director-images/{{ item }} ~/{{ item }}"
with_items: "{{ tar_images }}"
- name: untar the images
become: yes
unarchive:
src: "~/{{ item }}"
dest: "~/"
copy: "no"
owner: "{{ installer.user.name }}"
group: "{{ installer.user.name }}"
with_items: "{{ tar_images }}"
| ---
# todo(yfried): block + become
- name: install the RPM with the pre-built overcloud images
become: yes
become_method: sudo
yum:
name: "rhosp-director-images"
state: present
- name: move images (sym link) to home dir
become: yes
become_method: sudo
shell: "cp /usr/share/rhosp-director-images/{{ item }} ~/{{ item }}"
with_items: "{{ tar_images }}"
- name: untar the images
become: yes
become_method: sudo
unarchive:
src: "~/{{ item }}"
dest: "~/"
copy: "no"
owner: "{{ installer.user.name }}"
group: "{{ installer.user.name }}"
with_items: "{{ tar_images }}"
| Use sudo for image RPM | Use sudo for image RPM
Change-Id: Ic15c90137f7b76bee2ba318291fbbf3d5d1a1ec0
| YAML | apache-2.0 | okolisny/InfraRed,okolisny/InfraRed,okolisny/InfraRed,redhat-openstack/infrared,redhat-openstack/infrared,redhat-openstack/infrared |
5c60b1e561eff385a4ea3a52f3fdbf31c3940e18 | goreleaser.yml | goreleaser.yml | build:
goos:
- linux
- darwin
goarch:
- 386
- amd64
- arm
- arm64
archive:
name_template: '{{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
replacements:
darwin: Darwin
linux: Linux
386: i386
amd64: x86_64
brew:
github:
owner: getantibody
name: homebrew-tap
caveats: To start using antibody, you need to add `source <(antibody init)` to your `~/.zshrc`.
folder: Formula
homepage: http://getantibody.github.io
description: The fastest shell plugin manager
dependencies:
- git
nfpm:
homepage: http://getantibody.github.io
description: The fastest shell plugin manager
maintainer: Carlos Alexandro Becker <root@carlosbecker.com>
license: MIT
vendor: Antibody
formats:
- deb
dependencies:
- git
| build:
goos:
- linux
- darwin
- freebsd
goarch:
- 386
- amd64
- arm
- arm64
archive:
name_template: '{{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
replacements:
darwin: Darwin
linux: Linux
386: i386
amd64: x86_64
brew:
github:
owner: getantibody
name: homebrew-tap
caveats: To start using antibody, you need to add `source <(antibody init)` to your `~/.zshrc`.
folder: Formula
homepage: http://getantibody.github.io
description: The fastest shell plugin manager
dependencies:
- git
nfpm:
homepage: http://getantibody.github.io
description: The fastest shell plugin manager
maintainer: Carlos Alexandro Becker <root@carlosbecker.com>
license: MIT
vendor: Antibody
formats:
- deb
dependencies:
- git
| Revert "Revert "chore: release to freebsd as well"" | Revert "Revert "chore: release to freebsd as well""
This reverts commit ce93cd2fc5c58f9c63cc6edaf538f9ce3af08199.
| YAML | mit | caarlos0/antibody,getantibody/antibody,getantibody/antibody,caarlos0/antibody |
8ae3d9abfe6abb2f7820821d4c90b3a0f73693b0 | packages/ph/phonetic-languages-common.yaml | packages/ph/phonetic-languages-common.yaml | homepage: https://hackage.haskell.org/package/phonetic-languages-common
changelog-type: markdown
hash: d785540f330ddae74e022ca68b717f45eb20778486833124fddb58fcf0c53e71
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: A generalization of the uniqueness-periods-vector-common package.
changelog: |+
# Revision history for phonetic-languages-common
## 0.1.0.0 -- 2020-10-30
* First version. Released on an unsuspecting world.
## 0.1.1.0 -- 2020-10-30
* First version revised A. Fixed issue with being not compiled for GHC-7.10* series.
basic-deps:
base: '>=4.7 && <4.15'
subG: '>=0.1.1.1 && <1'
vector: '>=0.11 && <0.14'
all-versions:
- 0.1.1.0
author: OleksandrZhabenko
latest: 0.1.1.0
description-type: haddock
description: Is intended to use more Data.Vector, Data.Foldable and Data.Monoid functionality.
license-name: MIT
| homepage: https://hackage.haskell.org/package/phonetic-languages-common
changelog-type: markdown
hash: 63de1ab8f4b16f4e23e6e7a3ad5caceed2880a1d1f9de44fc904494a0ba27ea0
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: A generalization of the uniqueness-periods-vector-common package.
changelog: |
# Revision history for phonetic-languages-common
## 0.1.0.0 -- 2020-10-30
* First version. Released on an unsuspecting world.
## 0.1.1.0 -- 2020-10-30
* First version revised A. Fixed issue with being not compiled for GHC-7.10* series.
## 0.1.2.0 -- 2020-11-26
* First version revised B. Switched to the subG-instances interface for instances.
basic-deps:
subG-instances: '>=0.1 && <1'
base: '>=4.8 && <4.15'
subG: '>=0.4.2 && <1'
vector: '>=0.11 && <0.14'
all-versions:
- 0.1.1.0
- 0.1.2.0
author: OleksandrZhabenko
latest: 0.1.2.0
description-type: haddock
description: Is intended to use more Data.Vector, Data.Foldable and Data.Monoid functionality.
license-name: MIT
| Update from Hackage at 2020-11-26T23:21:33Z | Update from Hackage at 2020-11-26T23:21:33Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d30afd700528035a02dbe3cb9f9a2701e6df4814 | test/rql_test/src/regression/2710.yaml | test/rql_test/src/regression/2710.yaml | desc: Test pseudo literal strings in JSON.
tests:
- js: r.expr({"a":{"b":1, "c":2}}).merge(r.json('{"a":{"$reql_'+'type$":"LITERAL", "value":{"b":2}}}'))
py: r.expr({"a":{"b":1, "c":2}}).merge(r.json('{"a":{"$reql_type$":"LITERAL", "value":{"b":2}}}'))
rb: r.expr({:a => {:b => 1, :c => 2}}).merge(r.json('{"a":{"$reql_type$":"LITERAL", "value":{"b":2}}}'))
ot: ({"a":{"b":2}})
| desc: Test pseudo literal strings in JSON.
tests:
- js: r.expr({"a":{"b":1, "c":2}}).merge(r.json('{"a":{"$reql_'+'type$":"LITERAL", "value":{"b":2}}}'))
py: r.expr({"a":{"b":1, "c":2}}).merge(r.json('{"a":{"$reql_type$":"LITERAL", "value":{"b":2}}}'))
rb: r.expr({:a => {:b => 1, :c => 2}}).merge(r.json('{"a":{"$reql_type$":"LITERAL", "value":{"b":2}}}'))
ot: ({'a':{'b':2}})
| Handle embarassing Ruby test failure | Handle embarassing Ruby test failure
| YAML | agpl-3.0 | niieani/rethinkdb,bchavez/rethinkdb,RubenKelevra/rethinkdb,wojons/rethinkdb,bpradipt/rethinkdb,mbroadst/rethinkdb,Qinusty/rethinkdb,spblightadv/rethinkdb,losywee/rethinkdb,grandquista/rethinkdb,pap/rethinkdb,jesseditson/rethinkdb,yakovenkodenis/rethinkdb,losywee/rethinkdb,matthaywardwebdesign/rethinkdb,sbusso/rethinkdb,ajose01/rethinkdb,ajose01/rethinkdb,mquandalle/rethinkdb,eliangidoni/rethinkdb,wkennington/rethinkdb,KSanthanam/rethinkdb,greyhwndz/rethinkdb,JackieXie168/rethinkdb,gavioto/rethinkdb,dparnell/rethinkdb,marshall007/rethinkdb,scripni/rethinkdb,wkennington/rethinkdb,sontek/rethinkdb,robertjpayne/rethinkdb,losywee/rethinkdb,niieani/rethinkdb,captainpete/rethinkdb,alash3al/rethinkdb,victorbriz/rethinkdb,wojons/rethinkdb,4talesa/rethinkdb,dparnell/rethinkdb,scripni/rethinkdb,matthaywardwebdesign/rethinkdb,grandquista/rethinkdb,scripni/rethinkdb,urandu/rethinkdb,wujf/rethinkdb,4talesa/rethinkdb,marshall007/rethinkdb,mbroadst/rethinkdb,dparnell/rethinkdb,AntouanK/rethinkdb,wkennington/rethinkdb,robertjpayne/rethinkdb,elkingtonmcb/rethinkdb,alash3al/rethinkdb,mbroadst/rethinkdb,bpradipt/rethinkdb,catroot/rethinkdb,sontek/rethinkdb,eliangidoni/rethinkdb,4talesa/rethinkdb,Wilbeibi/rethinkdb,gavioto/rethinkdb,jesseditson/rethinkdb,tempbottle/rethinkdb,matthaywardwebdesign/rethinkdb,Wilbeibi/rethinkdb,wojons/rethinkdb,gdi2290/rethinkdb,scripni/rethinkdb,sbusso/rethinkdb,jmptrader/rethinkdb,captainpete/rethinkdb,marshall007/rethinkdb,captainpete/rethinkdb,sontek/rethinkdb,bpradipt/rethinkdb,dparnell/rethinkdb,sebadiaz/rethinkdb,spblightadv/rethinkdb,JackieXie168/rethinkdb,yakovenkodenis/rethinkdb,ayumilong/rethinkdb,yaolinz/rethinkdb,gavioto/rethinkdb,mcanthony/rethinkdb,matthaywardwebdesign/rethinkdb,KSanthanam/rethinkdb,sebadiaz/rethinkdb,catroot/rethinkdb,gavioto/rethinkdb,catroot/rethinkdb,mbroadst/rethinkdb,KSanthanam/rethinkdb,JackieXie168/rethinkdb,sebadiaz/rethinkdb,wkennington/rethinkdb,pap/rethinkdb,Qinusty/rethinkdb,urandu/rethinkdb,rrampage/rethinkdb,JackieXie168/rethinkdb,spblightadv/rethinkdb,wojons/rethinkdb,robertjpayne/rethinkdb,dparnell/rethinkdb,catroot/rethinkdb,4talesa/rethinkdb,pap/rethinkdb,AntouanK/rethinkdb,rrampage/rethinkdb,gdi2290/rethinkdb,matthaywardwebdesign/rethinkdb,eliangidoni/rethinkdb,sebadiaz/rethinkdb,grandquista/rethinkdb,mquandalle/rethinkdb,lenstr/rethinkdb,jesseditson/rethinkdb,eliangidoni/rethinkdb,tempbottle/rethinkdb,bpradipt/rethinkdb,Qinusty/rethinkdb,pap/rethinkdb,greyhwndz/rethinkdb,mbroadst/rethinkdb,bchavez/rethinkdb,Qinusty/rethinkdb,greyhwndz/rethinkdb,mcanthony/rethinkdb,bchavez/rethinkdb,gdi2290/rethinkdb,greyhwndz/rethinkdb,mbroadst/rethinkdb,bchavez/rethinkdb,mcanthony/rethinkdb,sontek/rethinkdb,yaolinz/rethinkdb,lenstr/rethinkdb,yaolinz/rethinkdb,RubenKelevra/rethinkdb,victorbriz/rethinkdb,urandu/rethinkdb,yaolinz/rethinkdb,wojons/rethinkdb,JackieXie168/rethinkdb,sbusso/rethinkdb,Wilbeibi/rethinkdb,wujf/rethinkdb,sbusso/rethinkdb,wujf/rethinkdb,scripni/rethinkdb,urandu/rethinkdb,wojons/rethinkdb,jmptrader/rethinkdb,sbusso/rethinkdb,jmptrader/rethinkdb,tempbottle/rethinkdb,KSanthanam/rethinkdb,jmptrader/rethinkdb,catroot/rethinkdb,tempbottle/rethinkdb,bchavez/rethinkdb,Qinusty/rethinkdb,Wilbeibi/rethinkdb,RubenKelevra/rethinkdb,eliangidoni/rethinkdb,elkingtonmcb/rethinkdb,jmptrader/rethinkdb,alash3al/rethinkdb,losywee/rethinkdb,niieani/rethinkdb,grandquista/rethinkdb,mquandalle/rethinkdb,robertjpayne/rethinkdb,RubenKelevra/rethinkdb,wkennington/rethinkdb,4talesa/rethinkdb,gdi2290/rethinkdb,alash3al/rethinkdb,wkennington/rethinkdb,RubenKelevra/rethinkdb,JackieXie168/rethinkdb,wkennington/rethinkdb,Wilbeibi/rethinkdb,mcanthony/rethinkdb,lenstr/rethinkdb,jesseditson/rethinkdb,sbusso/rethinkdb,ajose01/rethinkdb,scripni/rethinkdb,ayumilong/rethinkdb,victorbriz/rethinkdb,dparnell/rethinkdb,JackieXie168/rethinkdb,jesseditson/rethinkdb,gavioto/rethinkdb,pap/rethinkdb,mcanthony/rethinkdb,mbroadst/rethinkdb,bchavez/rethinkdb,losywee/rethinkdb,victorbriz/rethinkdb,urandu/rethinkdb,grandquista/rethinkdb,Wilbeibi/rethinkdb,captainpete/rethinkdb,ayumilong/rethinkdb,victorbriz/rethinkdb,ajose01/rethinkdb,wujf/rethinkdb,gdi2290/rethinkdb,marshall007/rethinkdb,Wilbeibi/rethinkdb,jmptrader/rethinkdb,victorbriz/rethinkdb,matthaywardwebdesign/rethinkdb,Qinusty/rethinkdb,4talesa/rethinkdb,marshall007/rethinkdb,sebadiaz/rethinkdb,sbusso/rethinkdb,Qinusty/rethinkdb,ayumilong/rethinkdb,mquandalle/rethinkdb,eliangidoni/rethinkdb,losywee/rethinkdb,lenstr/rethinkdb,alash3al/rethinkdb,yakovenkodenis/rethinkdb,ajose01/rethinkdb,victorbriz/rethinkdb,ayumilong/rethinkdb,yakovenkodenis/rethinkdb,mcanthony/rethinkdb,ajose01/rethinkdb,losywee/rethinkdb,AntouanK/rethinkdb,grandquista/rethinkdb,urandu/rethinkdb,catroot/rethinkdb,jesseditson/rethinkdb,mquandalle/rethinkdb,bpradipt/rethinkdb,tempbottle/rethinkdb,JackieXie168/rethinkdb,bpradipt/rethinkdb,wojons/rethinkdb,rrampage/rethinkdb,spblightadv/rethinkdb,bpradipt/rethinkdb,alash3al/rethinkdb,mquandalle/rethinkdb,bpradipt/rethinkdb,tempbottle/rethinkdb,urandu/rethinkdb,rrampage/rethinkdb,catroot/rethinkdb,scripni/rethinkdb,niieani/rethinkdb,yaolinz/rethinkdb,Qinusty/rethinkdb,AntouanK/rethinkdb,robertjpayne/rethinkdb,alash3al/rethinkdb,yakovenkodenis/rethinkdb,RubenKelevra/rethinkdb,sebadiaz/rethinkdb,yakovenkodenis/rethinkdb,wujf/rethinkdb,sontek/rethinkdb,gavioto/rethinkdb,mcanthony/rethinkdb,niieani/rethinkdb,mbroadst/rethinkdb,robertjpayne/rethinkdb,matthaywardwebdesign/rethinkdb,dparnell/rethinkdb,victorbriz/rethinkdb,ayumilong/rethinkdb,sontek/rethinkdb,captainpete/rethinkdb,jesseditson/rethinkdb,dparnell/rethinkdb,elkingtonmcb/rethinkdb,spblightadv/rethinkdb,KSanthanam/rethinkdb,ayumilong/rethinkdb,tempbottle/rethinkdb,wojons/rethinkdb,JackieXie168/rethinkdb,yakovenkodenis/rethinkdb,sebadiaz/rethinkdb,urandu/rethinkdb,spblightadv/rethinkdb,AntouanK/rethinkdb,4talesa/rethinkdb,elkingtonmcb/rethinkdb,captainpete/rethinkdb,4talesa/rethinkdb,niieani/rethinkdb,mcanthony/rethinkdb,eliangidoni/rethinkdb,mquandalle/rethinkdb,robertjpayne/rethinkdb,yaolinz/rethinkdb,KSanthanam/rethinkdb,sebadiaz/rethinkdb,alash3al/rethinkdb,lenstr/rethinkdb,Wilbeibi/rethinkdb,grandquista/rethinkdb,captainpete/rethinkdb,yakovenkodenis/rethinkdb,gavioto/rethinkdb,catroot/rethinkdb,scripni/rethinkdb,losywee/rethinkdb,pap/rethinkdb,ayumilong/rethinkdb,bchavez/rethinkdb,pap/rethinkdb,AntouanK/rethinkdb,jmptrader/rethinkdb,marshall007/rethinkdb,lenstr/rethinkdb,rrampage/rethinkdb,eliangidoni/rethinkdb,matthaywardwebdesign/rethinkdb,ajose01/rethinkdb,greyhwndz/rethinkdb,bchavez/rethinkdb,gdi2290/rethinkdb,dparnell/rethinkdb,marshall007/rethinkdb,sontek/rethinkdb,gdi2290/rethinkdb,KSanthanam/rethinkdb,AntouanK/rethinkdb,greyhwndz/rethinkdb,eliangidoni/rethinkdb,AntouanK/rethinkdb,KSanthanam/rethinkdb,sontek/rethinkdb,mbroadst/rethinkdb,elkingtonmcb/rethinkdb,niieani/rethinkdb,robertjpayne/rethinkdb,ajose01/rethinkdb,rrampage/rethinkdb,yaolinz/rethinkdb,greyhwndz/rethinkdb,gavioto/rethinkdb,RubenKelevra/rethinkdb,captainpete/rethinkdb,elkingtonmcb/rethinkdb,jesseditson/rethinkdb,elkingtonmcb/rethinkdb,jmptrader/rethinkdb,spblightadv/rethinkdb,grandquista/rethinkdb,pap/rethinkdb,elkingtonmcb/rethinkdb,spblightadv/rethinkdb,tempbottle/rethinkdb,marshall007/rethinkdb,Qinusty/rethinkdb,greyhwndz/rethinkdb,wujf/rethinkdb,lenstr/rethinkdb,wujf/rethinkdb,wkennington/rethinkdb,rrampage/rethinkdb,bpradipt/rethinkdb,mquandalle/rethinkdb,robertjpayne/rethinkdb,rrampage/rethinkdb,bchavez/rethinkdb,lenstr/rethinkdb,niieani/rethinkdb,yaolinz/rethinkdb,RubenKelevra/rethinkdb,grandquista/rethinkdb,sbusso/rethinkdb |
ad1345eb948895e73360937e9a037811a2d1573b | g3doc/_toc.yaml | g3doc/_toc.yaml | toc:
- title: "Improving Model Quality"
path: /tfx/guide/tfma
- title: "Install"
path: /tfx/model_analysis/install
- title: "Get started"
path: /tfx/model_analysis/get_started
- title: "Setup"
path: /tfx/model_analysis/setup
- title: "Metrics and Plots"
path: /tfx/model_analysis/metrics
- title: "Visualizations"
path: /tfx/model_analysis/visualizations
- title: "Model Validations"
path: /tfx/model_analysis/model_validations
- title: "Using Fairness Indicators"
path: /tfx/guide/fairness_indicators
- title: "Using Fairness Indicators with Pandas DataFrames"
path: /tfx/fairness_indicators/examples/Fairness_Indicators_Pandas_Case_Study
- title: "Architecture"
path: /tfx/model_analysis/architecture
- title: "FAQ"
path: /tfx/model_analysis/faq
| toc:
- title: "Improving Model Quality"
path: /tfx/guide/tfma
- title: "Install"
path: /tfx/model_analysis/install
- title: "Get started"
path: /tfx/model_analysis/get_started
- title: "Setup"
path: /tfx/model_analysis/setup
- title: "Metrics and Plots"
path: /tfx/model_analysis/metrics
- title: "Visualizations"
path: /tfx/model_analysis/visualizations
- title: "Model Validations"
path: /tfx/model_analysis/model_validations
- title: "Using Fairness Indicators"
path: /tfx/guide/fairness_indicators
- title: "Using Fairness Indicators with Pandas DataFrames"
path: /responsible_ai/fairness_indicators/tutorials/Fairness_Indicators_Pandas_Case_Study
- title: "Architecture"
path: /tfx/model_analysis/architecture
- title: "FAQ"
path: /tfx/model_analysis/faq
| Fix paths to Pandas case study | Fix paths to Pandas case study
PiperOrigin-RevId: 367696749
| YAML | apache-2.0 | tensorflow/model-analysis,tensorflow/model-analysis,tensorflow/model-analysis,tensorflow/model-analysis |
021cad45bacd6d7e969e87d5ce0f53e2f497b957 | python/google-knowledge-graph/deployment/deployment.yaml | python/google-knowledge-graph/deployment/deployment.yaml | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: py-helloworld
spec:
replicas: 1
template:
metadata:
labels:
run: py-helloworld
spec:
containers:
- name: jarvis-kube-py-helloworld
image: lahsivjar/jarvis-google-knowledge-graph:latest
env:
- name: GOOG_KNOWLEDGE_GRAPH_API_KEY
value: {{ google_knowledge_graph_api_key }}
ports:
- containerPort: 8080
| apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: py-helloworld
spec:
replicas: 2
template:
metadata:
labels:
run: py-helloworld
spec:
containers:
- name: jarvis-kube-py-helloworld
image: lahsivjar/jarvis-google-knowledge-graph:latest
env:
- name: GOOG_KNOWLEDGE_GRAPH_API_KEY
value: {{ google_knowledge_graph_api_key }}
ports:
- containerPort: 8080
| Increase the replica count to 2. | Increase the replica count to 2.
| YAML | mit | lahsivjar/jarvis-kube |
78a67daae66b6f64055fe86eb1db67f5423db988 | playbooks/init.yml | playbooks/init.yml | ---
- hosts: kv:index:n1ql
tasks:
- yum: state=latest name=epel-release
- yum: state=latest name={{item}}
with_items:
- atop
- gdb
- htop
- iptraf
- numactl
- rsync
- sysstat
- tree
- vim
- wget
- hosts: kv:index:n1ql
tasks:
- shell: iptables -F
- hosts: kv:index:n1ql
tasks:
- group: name=couchbase
- user: name=couchbase group=couchbase
- hosts: kv:index:n1ql
tasks:
- file: path=/data owner=couchbase group=couchbase
- hosts: kv
tasks:
- file: path=/index owner=couchbase group=couchbase
| ---
- hosts: kv:index:n1ql
tasks:
- yum: state=latest name=epel-release
- yum: state=latest name={{item}}
with_items:
- atop
- gdb
- htop
- iptraf
- numactl
- psmisc
- rsync
- sysstat
- tree
- vim
- wget
- hosts: kv:index:n1ql
tasks:
- shell: iptables -F
- hosts: kv:index:n1ql
tasks:
- group: name=couchbase
- user: name=couchbase group=couchbase
- hosts: kv:index:n1ql
tasks:
- file: path=/data owner=couchbase group=couchbase
- hosts: kv
tasks:
- file: path=/index owner=couchbase group=couchbase
| Add psmisc to server dependencies | Add psmisc to server dependencies
Change-Id: I211169566e8a65a40f11f20e0efed8864df870b5
Reviewed-on: http://review.couchbase.org/65631
Reviewed-by: Pavel Paulau <dd88eded64e90046a680e3a6c0828ceb8fe8a0e7@gmail.com>
Tested-by: Pavel Paulau <dd88eded64e90046a680e3a6c0828ceb8fe8a0e7@gmail.com>
| YAML | apache-2.0 | pavel-paulau/perfrunner,couchbase/perfrunner,couchbase/perfrunner,pavel-paulau/perfrunner,couchbase/perfrunner,pavel-paulau/perfrunner,couchbase/perfrunner,pavel-paulau/perfrunner,couchbase/perfrunner,couchbase/perfrunner,pavel-paulau/perfrunner |
69726ad938c00e0fb5faa75e043597341e9bd3f6 | _config.yml | _config.yml | plugins:
- jekyll-redirect-from
- jekyll-seo-tag
markdown: kramdown
collections:
book:
output: true
qs:
output: true
tutorial_base:
output: true
tutorial_rsa:
output: true
tutorial_iot:
output: true
tutorial_wrap:
output: true
tutorial_eval:
output: true
tutorial_maven:
output: true
services:
output: true
trains:
output: true
videos:
output: true
appnotes:
output: true
doc:
output: true
faq:
output: true
defaults:
-
scope:
path: ""
values:
layout: default
twitter:
username: OSGiAlliance
google_analytics: UA-801425-1
exclude:
- 'Gemfile'
- 'Gemfile.lock'
- 'README.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
- 'run.sh'
- '.travis.yml'
- '/vendor'
| plugins:
- jekyll-redirect-from
- jekyll-seo-tag
- jekyll-sitemap
markdown: kramdown
collections:
book:
output: true
qs:
output: true
tutorial_base:
output: true
tutorial_rsa:
output: true
tutorial_iot:
output: true
tutorial_wrap:
output: true
tutorial_eval:
output: true
tutorial_maven:
output: true
services:
output: true
trains:
output: true
videos:
output: true
appnotes:
output: true
doc:
output: true
faq:
output: true
defaults:
-
scope:
path: ""
values:
layout: default
twitter:
username: OSGiAlliance
google_analytics: UA-801425-1
exclude:
- 'Gemfile'
- 'Gemfile.lock'
- 'README.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
- 'run.sh'
- '.travis.yml'
- '/vendor'
| Add sitemap.xml file to website | sitemap: Add sitemap.xml file to website
Signed-off-by: BJ Hargrave <3d26bb3930946e3370762d769a073cece444c2d8@bjhargrave.com>
| YAML | apache-2.0 | osgi/osgi.enroute.site,osgi/osgi.enroute.site,osgi/osgi.enroute.site |
f1965a7adefc9457837d36970485749d1f8526e0 | _config.yml | _config.yml | # Site settings
title: Pablo Lerma
email: me@plerma.com
author: Pablo Lerma
description: "Pequeño blog sobre desarrollo iOS"
baseurl: ""
url: "http://www.plerma.com"
# Google analytics
google_analytics: UA-55026146-2
# Optional features
animated: false
show_related_posts: false
show_post_footers: true
# Disqus post comments
disqus_shortname: pablolerma
# Social icons
show_social_icons: true
github_username: PabloLerma
stackoverflow_id:
twitter_username: pablo_lerma
google_plus_id:
linkedin_username: pablolerma
bitcoin_url:
paypal_url:
flattr_button:
# Post sharing icons
show_sharing_icons: false
share_text: 'Share this post!'
# Change to 'true' to enable individual icons
share_facebook: false
share_twitter: false
share_googleplus: false
share_linkedin: false
share_digg: false
share_tumblr: false
share_reddit: false
share_stumbleupon: false
# Build settings
gems: [jekyll-paginate]
markdown: redcarpet
redcarpet:
extensions: ['smart', 'tables', 'with_toc_data']
permalink: pretty
paginate: 3
sass:
compressed: true
| # Site settings
title: Pablo Lerma
email: me@plerma.com
author: Pablo Lerma
description: "Pequeño blog sobre desarrollo iOS"
baseurl: ""
url: "http://www.plerma.com"
# Google analytics
google_analytics: UA-55026146-2
# Optional features
animated: false
show_related_posts: false
show_post_footers: true
# Disqus post comments
disqus_shortname: pablolerma
# Social icons
show_social_icons: true
github_username: PabloLerma
stackoverflow_id:
twitter_username: pablo_lerma
google_plus_id:
linkedin_username: pablolerma
bitcoin_url:
paypal_url:
flattr_button:
# Post sharing icons
show_sharing_icons: false
share_text: 'Share this post!'
# Change to 'true' to enable individual icons
share_facebook: false
share_twitter: false
share_googleplus: false
share_linkedin: false
share_digg: false
share_tumblr: false
share_reddit: false
share_stumbleupon: false
# Build settings
gems: [jekyll-paginate]
markdown: kramdown
kramdown:
auto_ids: true
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
smart_quotes: lsquo,rsquo,ldquo,rdquo
enable_coderay: false
permalink: pretty
paginate: 3
sass:
compressed: true
| Update markdown engine from red carpet to kramdown | Update markdown engine from red carpet to kramdown
| YAML | mit | PabloLerma/PabloLerma.github.io,PabloLerma/PabloLerma.github.io |
935fd93b802c43d2e858a822b8ce4dd73ea60961 | _config.yml | _config.yml | # Site settings
name: Kevin Plattret
email: kevin@plattret.me
url: "http://kevinplattret.me"
baseurl: ""
twitter_username: kplattret
github_username: kplattret
# Build settings
markdown: kramdown
exclude:
- README.md
- LICENCE.md
- CNAME
- assets/css/main.scss
permalink: /:title
relative_permalinks: false
# Plugin settings
gems:
- jekyll-redirect-from
| # Site settings
name: Kevin Plattret
email: kevin@plattret.me
url: "http://kevinplattret.me"
baseurl: ""
twitter_username: kplattret
github_username: kplattret
# Build settings
markdown: kramdown
exclude:
- README.md
- LICENCE.md
- CNAME
- assets/css/main.scss
permalink: /note/:title
relative_permalinks: false
# Plugin settings
gems:
- jekyll-redirect-from
| Add '/note' to post URLs for clarity. | Add '/note' to post URLs for clarity.
| YAML | mit | kplattret/kplattret.github.io,kplattret/kplattret.github.io |
f324629f2a56d7fbb1edb56de6765d68030a6ef3 | _config.yml | _config.yml | # Site settings
title: Hangaroa
email: ccoroom@gmail.com
author: Sung Ahn Kim
description: "idle :)"
baseurl: ""
url: "http://hangaroa.net"
# Google analytics
google_analytics:
# Optional features
animated: false
show_related_posts: false
show_post_footers: false
# Disqus post comments
# (leave blank to disable Disqus)
disqus_shortname:
# Social icons
show_social_icons: false
github_username:
stackoverflow_id:
twitter_username:
google_plus_id:
linkedin_username:
angellist_username:
bitcoin_url:
paypal_url:
flattr_button:
# Post sharing icons
show_sharing_icons: false
share_text: 'Share this post!'
# Change to 'true' to enable individual icons
share_facebook: false
share_twitter: false
share_googleplus: false
share_linkedin: false
share_digg: false
share_tumblr: false
share_reddit: false
share_stumbleupon: false
share_hackernews: false
# Build settings
markdown: kramdown
redcarpet:
extensions: ['smart', 'tables', 'with_toc_data']
permalink: pretty
paginate: 3
sass:
compressed: true
| # Site settings
title: Hangaroa
email: ccoroom@gmail.com
author: Sung Ahn Kim
description: "idle :)"
baseurl: ""
url: "http://hangaroa.net"
# Google analytics
google_analytics: UA-42740592-1
# Optional features
animated: false
show_related_posts: false
show_post_footers: false
# Disqus post comments
# (leave blank to disable Disqus)
disqus_shortname: hangaroa
# Social icons
show_social_icons: false
github_username:
stackoverflow_id:
twitter_username:
google_plus_id:
linkedin_username:
angellist_username:
bitcoin_url:
paypal_url:
flattr_button:
# Post sharing icons
show_sharing_icons: false
share_text: 'Share this post!'
# Change to 'true' to enable individual icons
share_facebook: false
share_twitter: false
share_googleplus: false
share_linkedin: false
share_digg: false
share_tumblr: false
share_reddit: false
share_stumbleupon: false
share_hackernews: false
# Build settings
markdown: kramdown
redcarpet:
extensions: ['smart', 'tables', 'with_toc_data']
permalink: pretty
paginate: 3
sass:
compressed: true
| Add disqus short name and google analytics. | Add disqus short name and google analytics.
| YAML | mit | sakim/sakim.github.com |
36ff8efffc663ebe69fabfd6cecb48a5e37b9605 | _config.yml | _config.yml | # Site settings
title: "Gophercon Dubai 2016"
email: "ecosystem@squarecircletech.com"
url: "https://gophercon.ae"
description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
# Color settings (hex-codes without the leading hash-tag)
color:
primary-dark: '#000000'
links: '#219ab3'
brand: '#ffd73d'
# Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.)
social:
- title: twitter
url: https://twitter.com/gopherconae
- title: facebook
url: https://www.facebook.com/GopherConAE/
register_url:
# Build settings
markdown: kramdown
permalink: pretty
font-family: Lato, Roboto, Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif
| # Site settings
title: "Gophercon Dubai 2016"
email: "ecosystem@squarecircletech.com"
url: "https://gophercon.ae"
description: "The Go language is taking the world by storm! At the conference you will get to meet, interact and learn from Go experts coming from across the globe."
# Color settings (hex-codes without the leading hash-tag)
color:
primary-dark: '#000000'
links: '#219ab3'
brand: '#ffd73d'
# Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.)
social:
- title: twitter
url: https://twitter.com/gopherconae
- title: facebook
url: https://www.facebook.com/GopherConAE/
register_url: "https://www.eventbrite.com/e/gophercon-dubai-2016-tickets-19951951825"
# Build settings
markdown: kramdown
permalink: pretty
font-family: Lato, Roboto, Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif
| Fix missing link Facebook google and twitter meta tags | Fix missing link
Facebook google and twitter meta tags
| YAML | apache-2.0 | h0lyalg0rithm/gophercon.ae,GopherconDubai/GopherconDubai.github.io,GopherconDubai/GopherconDubai.github.io,h0lyalg0rithm/gophercon.ae,GopherconDubai/GopherconDubai.github.io,h0lyalg0rithm/gophercon.ae |
a456629b80382f93084c3a1b4e0ac55a1ca1dabc | _config.yml | _config.yml | # top level stuff you probably don't need to touch
rdiscount:
extensions: [smart]
permalink: /:title.html
paginate: 5
# edit here to achieve your personal greatness
url: https://www.johnpitchko.com
theme: sustain4-theme
title: John Pitchko
author: John Pitchko
description: Personal blog and resume
avatar: john-pitchko-400x400.jpg
email: john@johnpitchko.com
github: johnpitchko # username
twitter: johnpitchko
linkedin: johnpitchko
# stackoverflow: username #e.g: users/2735833/proton1h1
#Comment out if you don't want disqus
disqus: johnpitchko
google_analytics: UA-79849295-1
# needed for travis-ci build
exclude: [vendor]
# Collections
collections:
media:
output: true
books2:
output: true
| # top level stuff you probably don't need to touch
rdiscount:
extensions: [smart]
permalink: /:title.html
paginate: 5
# edit here to achieve your personal greatness
url: https://www.johnpitchko.com
theme: sustain4-theme
title: John Pitchko
author: John Pitchko
description: Personal blog and resume
avatar: john-pitchko-400x400.jpg
email: john@johnpitchko.com
github: johnpitchko # username
twitter: johnpitchko
linkedin: johnpitchko
# stackoverflow: username #e.g: users/2735833/proton1h1
#Comment out if you don't want disqus
disqus: johnpitchko
google_analytics: UA-79849295-1
# needed for travis-ci build
exclude: [vendor]
# Collections
collections:
media:
output: true
books2:
output: true
permalink: /:collection/:name.html
| Fix issue with permalinks for book summaries collection | Fix issue with permalinks for book summaries collection
| YAML | mit | johnpitchko/johnpitchko.github.io,johnpitchko/johnpitchko.github.io,johnpitchko/johnpitchko.github.io |
0264012fc867cde1330cf1b584895cd825875908 | _config.yml | _config.yml | # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings
paginate: 10 # pagination based on number of posts
paginate_path: "page:num"
exclude: ["README.md"] # files to exclude
highlighter: pygments
markdown: kramdown
disqus: dbyll
google_analytics: dbyll
plugins: [jekyll-paginate]
baseurl: "" # the subpath of your site, e.g. /blog
# url: "http://groovyghoul.github.io" # the base hostname & protocol for your site
url: "https://bytemares.com"
enforce_ssl: bytemares.com
defaults:
-
scope:
path: "" # empty string for all files
values:
title: bytemares - now with nudity
description: ranting of a sane person
author:
name: richard
email: richard@bytemares.com
github: groovyghoul
twitter: richard_oneil
#pinterest: asd123
#linkedin: asd123
#bio: Your stylish, minimalist theme!
email_md5: 931279b475440ddd113a5f92f6de18c7
rss_path: feed.xml
categories_path: categories.html
tags_path: tags.html
#future: true
BASE_PATH:
| # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings
paginate: 10 # pagination based on number of posts
paginate_path: "page:num"
exclude: ["README.md"] # files to exclude
highlighter: rouge
markdown: kramdown
disqus: dbyll
google_analytics: dbyll
plugins: [jekyll-paginate]
baseurl: "" # the subpath of your site, e.g. /blog
# url: "http://groovyghoul.github.io" # the base hostname & protocol for your site
url: "https://bytemares.com"
enforce_ssl: bytemares.com
defaults:
-
scope:
path: "" # empty string for all files
values:
title: bytemares - now with nudity
description: ranting of a sane person
author:
name: richard
email: richard@bytemares.com
github: groovyghoul
twitter: richard_oneil
#pinterest: asd123
#linkedin: asd123
#bio: Your stylish, minimalist theme!
email_md5: 931279b475440ddd113a5f92f6de18c7
rss_path: feed.xml
categories_path: categories.html
tags_path: tags.html
#future: true
BASE_PATH:
| Update highlighter to use 'rouge' | Update highlighter to use 'rouge'
| YAML | mit | groovyghoul/groovyghoul.github.io,groovyghoul/groovyghoul.github.io,groovyghoul/groovyghoul.github.io |
979adbcf5941e4d955791512a50e0335e13f5dce | .github/workflows/ci.yaml | .github/workflows/ci.yaml | name: Build and publish to ECR
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-publish-image-to-ecr:
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_GOVUK_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_GOVUK_ECR_ACCESS_KEY_ID }}
AWS_GOVUK_ECR_SECRET_ACCESS_KEY: ${{ secrets.AWS_GOVUK_ECR_SECRET_ACCESS_KEY }}
| name: CI
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-and-publish-image:
name: Build and publish image
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_GOVUK_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_GOVUK_ECR_ACCESS_KEY_ID }}
AWS_GOVUK_ECR_SECRET_ACCESS_KEY: ${{ secrets.AWS_GOVUK_ECR_SECRET_ACCESS_KEY }}
trigger-deploy-to-integration:
name: Trigger deploy to integration
needs: build-and-publish-image
uses: alphagov/govuk-infrastructure/.github/workflows/deploy.yaml@main
secrets:
GOVUK_CI_GITHUB_API_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
| Update CI workflow to trigger deploy to integration | Update CI workflow to trigger deploy to integration
This adds an additional job to the CI workflow to run a reusable
workflow that writes the newly built image tag to helm charts file.
This triggers ArgoCD to deploy the integration.
| YAML | mit | alphagov/router |
7a1d3e1b48867fcc43f3d50a976be0fd1f981357 | _config.yml | _config.yml | # Site settings
title: Ayush's Blog
description: ""#Tech posts from Ayush
baseurl: "/" # the subpath of your site, e.g. /blog/
url: "https://ayushgoel.github.io" # the base hostname & protocol for your site
author:
name: Ayush Goel
email: ayushgoel111@gmail.com
twitter: named_none
github: ayushgoel
linkedIn:
country: in
username: ayushgoel
stackoverflowID: 1685709
# include pages folder for generation
include: ['_pages']
liquid:
error_mode: warn
# Build settings
kramdown:
syntax_highlighter_opts:
block:
line_numbers: true
# Pagination
paginate: 5
paginate_path: /page:num/
#Defaults
defaults:
-
scope:
path: "" # an empty string here means all files in the project
type: "posts"
values:
layout: "post"
-
scope:
path: "" # an empty string here means all files in the project
type: "pages"
values:
layout: "page"
author: "Ayush Goel"
gems: [
'jekyll-paginate',
'jekyll-gist'
]
| # Site settings
title: Ayush's Blog
description: ""#Tech posts from Ayush
url: "https://ayushgoel.github.io" # the base hostname & protocol for your site
author:
name: Ayush Goel
email: ayushgoel111@gmail.com
twitter: named_none
github: ayushgoel
linkedIn:
country: in
username: ayushgoel
stackoverflowID: 1685709
# include pages folder for generation
include: ['_pages']
liquid:
error_mode: warn
# Build settings
kramdown:
syntax_highlighter_opts:
block:
line_numbers: true
# Pagination
paginate: 5
paginate_path: /page:num/
#Defaults
defaults:
-
scope:
path: "" # an empty string here means all files in the project
type: "posts"
values:
layout: "post"
-
scope:
path: "" # an empty string here means all files in the project
type: "pages"
values:
layout: "page"
author: "Ayush Goel"
gems: [
'jekyll-paginate',
'jekyll-gist'
]
| Remove baseurl property from config | Remove baseurl property from config
| YAML | mit | ayushgoel/ayushgoel.github.io,ayushgoel/ayushgoel.github.io,ayushgoel/ayushgoel.github.io |
a1bb0800490fa179a680ec69a93a146f7b3d64b6 | .gitlab-ci.yml | .gitlab-ci.yml | image: node:current-alpine
include:
- template: SAST.gitlab-ci.yml
stages:
- test
- publish
code quality:
stage: test
script:
- npm ci
- npm run lint
npm outdated:
stage: test
script:
- npm ci
- npm outdated
allow_failure: true
security scan:
stage: test
script:
- npm audit --production
test on nodejs lts:
stage: test
image: node:lts-alpine
script:
- npm it
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
test & coverage:
stage: test
script:
- npm it
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
artifacts:
paths:
- coverage/
pages:
stage: publish
dependencies:
- test & coverage
script:
- mv coverage/lcov-report/ public/
artifacts:
paths:
- public
only:
- master
environment:
name: coverage report
url: https://vuedoc.gitlab.io/parser
package:
stage: publish
script:
- npm pack
artifacts:
paths:
- ./*.tgz
publish:
stage: publish
only:
- tags
- triggers
script:
- echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc
- npm publish
environment:
name: npm
url: https://www.npmjs.com/package/@vuedoc/parser
| image: node:lts-alpine
include:
- template: SAST.gitlab-ci.yml
stages:
- test
- publish
code quality:
stage: test
script:
- npm ci
- npm run lint
npm outdated:
stage: test
script:
- npm ci
- npm outdated
allow_failure: true
security scan:
stage: test
script:
- npm audit --production
test on nodejs lts:
stage: test
image: node:lts-alpine
script:
- npm it
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
test & coverage:
stage: test
script:
- npm it
coverage: '/All files[^|]*\|[^|]*\s+([\d\.]+)/'
artifacts:
paths:
- coverage/
pages:
stage: publish
dependencies:
- test & coverage
script:
- mv coverage/lcov-report/ public/
artifacts:
paths:
- public
only:
- master
environment:
name: coverage report
url: https://vuedoc.gitlab.io/parser
package:
stage: publish
script:
- npm pack
artifacts:
paths:
- ./*.tgz
publish:
stage: publish
only:
- tags
- triggers
script:
- echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc
- npm publish
environment:
name: npm
url: https://www.npmjs.com/package/@vuedoc/parser
| Use LTS version of Node.js on CI | Use LTS version of Node.js on CI
| YAML | mit | vuedoc/parser,vuedoc/parser,vuedoc/parser |
c43163c2658e9ceb68bdb20add3d9f6a62730f43 | .gitlab-ci.yml | .gitlab-ci.yml | test-py27:
stage: test
image: python:2.7
script:
- pip install tox
- tox -e py27
test-py35:
stage: test
image: python:3.5
script:
- pip install tox
- tox -e py35
test-py36:
stage: test
image: python:3.6
script:
- pip install tox
- tox -e py36
test-py37:
stage: test
image: python:3.7
script:
- pip install tox
- tox -e py37
# only tagged releases
publish:
stage: deploy
only:
- /^v\d+\.\d+\.\d+$/ # eg. "v1.2.3", "v1.0.12" etc.
except:
- branches
environment:
name: pypi
script:
- pip install twine
- python setup.py sdist bdist_wheel
- twine upload dist/*
| test-py27:
stage: test
image: python:2.7
script:
- python setup.py test
test-py35:
stage: test
image: python:3.5
script:
- python setup.py test
test-py36:
stage: test
image: python:3.6
script:
- python setup.py test
test-py37:
stage: test
image: python:3.7
script:
- python setup.py test
# only tagged releases
publish:
stage: deploy
only:
- /^v\d+\.\d+\.\d+$/ # eg. "v1.2.3", "v1.0.12" etc.
except:
- branches
environment:
name: pypi
script:
- pip install twine
- python setup.py sdist bdist_wheel
- twine upload dist/*
| Stop using tox in pipelines | Stop using tox in pipelines
| YAML | mit | inirudebwoy/bamp |
db849205b3680219782278202ed0b20c95121629 | releasenotes/notes/add-show-quota-details-api-to-network-quotas-client-3fffd302cc5d335f.yaml | releasenotes/notes/add-show-quota-details-api-to-network-quotas-client-3fffd302cc5d335f.yaml | ---
features:
- |
Add extension API show quota details to network quotas_client library.
This feature enables the possibility to show a quota set for a specified
project that includes the quota’s used, limit and reserved counts for per
resource
| ---
features:
- |
Add extension API show quota details to network quotas_client library.
This feature enables the possibility to show a quota set for a specified
project that includes the quota's used, limit and reserved counts for per
resource
| Replace Chinese quotes with English quotes | Replace Chinese quotes with English quotes
Change-Id: I57a0be85b0da8dd13dd36b419b9be8feec151d88
| YAML | apache-2.0 | openstack/tempest,openstack/tempest,cisco-openstack/tempest,cisco-openstack/tempest,masayukig/tempest,masayukig/tempest |
bd92d3c6cf49a5f756d0868d3a2526db2fa633a5 | gubernator/github/app.yaml | gubernator/github/app.yaml | service: github
runtime: python27
api_version: 1
threadsafe: yes
instance_class: F2
handlers:
- url: /_ah/warmup
script: main.app
login: admin
- url: /digest
script: admin.app
- url: /admin.*
script: admin.app
login: admin
- url: .*
script: main.app
libraries:
- name: webapp2
version: "latest"
builtins:
- deferred: on
| service: github
runtime: python27
api_version: 1
threadsafe: yes
instance_class: F2
inbound_services:
- warmup
handlers:
- url: /_ah/warmup
script: main.app
login: admin
- url: /digest
script: admin.app
- url: /admin.*
script: admin.app
login: admin
- url: .*
script: main.app
libraries:
- name: webapp2
version: "latest"
builtins:
- deferred: on
| Add warmup for github service | Add warmup for github service
| YAML | apache-2.0 | abgworrall/test-infra,piosz/test-infra,monopole/test-infra,krzyzacy/test-infra,rmmh/kubernetes-test-infra,fejta/test-infra,kargakis/test-infra,monopole/test-infra,dims/test-infra,michelle192837/test-infra,grodrigues3/test-infra,spxtr/test-infra,foxish/test-infra,mindprince/test-infra,monopole/test-infra,lavalamp/test-infra,brahmaroutu/test-infra,BenTheElder/test-infra,krzyzacy/test-infra,brahmaroutu/test-infra,cjwagner/test-infra,BenTheElder/test-infra,monopole/test-infra,jessfraz/test-infra,BenTheElder/test-infra,kargakis/test-infra,shyamjvs/test-infra,spxtr/test-infra,krousey/test-infra,piosz/test-infra,jlowdermilk/test-infra,foxish/test-infra,kubernetes/test-infra,brahmaroutu/test-infra,shashidharatd/test-infra,kubernetes/test-infra,foxish/test-infra,cjwagner/test-infra,shyamjvs/test-infra,dims/test-infra,monopole/test-infra,BenTheElder/test-infra,jlowdermilk/test-infra,lavalamp/test-infra,cjwagner/test-infra,pwittrock/test-infra,shyamjvs/test-infra,krzyzacy/test-infra,jessfraz/test-infra,krousey/test-infra,fejta/test-infra,abgworrall/test-infra,fejta/test-infra,piosz/test-infra,krzyzacy/test-infra,kubernetes/test-infra,shyamjvs/test-infra,jlowdermilk/test-infra,cblecker/test-infra,dims/test-infra,pwittrock/test-infra,abgworrall/test-infra,lavalamp/test-infra,rmmh/kubernetes-test-infra,BenTheElder/test-infra,mindprince/test-infra,brahmaroutu/test-infra,michelle192837/test-infra,rmmh/kubernetes-test-infra,cblecker/test-infra,foxish/test-infra,brahmaroutu/test-infra,lavalamp/test-infra,shashidharatd/test-infra,kargakis/test-infra,rmmh/kubernetes-test-infra,mindprince/test-infra,fejta/test-infra,jessfraz/test-infra,michelle192837/test-infra,piosz/test-infra,abgworrall/test-infra,spxtr/test-infra,fejta/test-infra,ixdy/kubernetes-test-infra,ixdy/kubernetes-test-infra,grodrigues3/test-infra,cjwagner/test-infra,dims/test-infra,krzyzacy/test-infra,foxish/test-infra,lavalamp/test-infra,jlowdermilk/test-infra,spxtr/test-infra,kargakis/test-infra,brahmaroutu/test-infra,monopole/test-infra,cblecker/test-infra,rmmh/kubernetes-test-infra,krousey/test-infra,kubernetes/test-infra,pwittrock/test-infra,shyamjvs/test-infra,jessfraz/test-infra,spxtr/test-infra,kubernetes/test-infra,jessfraz/test-infra,kargakis/test-infra,mindprince/test-infra,ixdy/kubernetes-test-infra,krousey/test-infra,shashidharatd/test-infra,grodrigues3/test-infra,shyamjvs/test-infra,grodrigues3/test-infra,ixdy/kubernetes-test-infra,dims/test-infra,cjwagner/test-infra,cblecker/test-infra,BenTheElder/test-infra,michelle192837/test-infra,michelle192837/test-infra,fejta/test-infra,ixdy/kubernetes-test-infra,dims/test-infra,michelle192837/test-infra,shashidharatd/test-infra,cjwagner/test-infra,lavalamp/test-infra,piosz/test-infra,krousey/test-infra,kargakis/test-infra,cblecker/test-infra,abgworrall/test-infra,jlowdermilk/test-infra,pwittrock/test-infra,krzyzacy/test-infra,cblecker/test-infra,mindprince/test-infra,kubernetes/test-infra,shashidharatd/test-infra,jessfraz/test-infra,pwittrock/test-infra,jlowdermilk/test-infra,grodrigues3/test-infra |
7f60cc01bfa840945fbc10ebe8bab562d4ff53bc | service/ingest/src/main/resources/application.yaml | service/ingest/src/main/resources/application.yaml | osdu:
delfi:
filePortal:
url: https://signed-url-dot-p4d-ddl-eu-services.appspot.com/
portal:
appkey: PtVguojl2DUr0qimhDclNMwZAeAJwK1T
url: https://api.evq.csp.slb.com/
gcp:
storage:
tempLocationBucket: osdu-gcp-temp-location | osdu:
delfi:
filePortal:
url: https://signed-url-dot-p4d-ddl-eu-services.appspot.com/
portal:
appkey: PtVguojl2DUr0qimhDclNMwZAeAJwK1T
url: https://api.evq.csp.slb.com/
gcp:
storage:
tempLocationBucket: osdu-gcp-temp-location
feign:
client:
config:
default:
connectTimeout: 60000
readTimeout: 60000 | Increase feign client timeout timely for debug. | Increase feign client timeout timely for debug.
| YAML | apache-2.0 | google/framework-for-osdu,google/framework-for-osdu,google/framework-for-osdu |
bd5b7bac2492c7fc7d9a5cd8862a9f42eb129aef | locales/en.yml | locales/en.yml | en:
lita:
handlers:
digitalocean:
credentials_missing: >-
client_id and api_key must be set in Lita's configuration to
use the DigitalOcean commands.
error: "DigitalOcean API error: %{message}"
format: Format
help:
ssh_keys:
add_key: do ssh keys add NAME PUBLIC_KEY
add_value: Adds a new SSH key.
edit_key: "do ssh keys edit ID [name=NAME] [public_key=PUBLIC_KEY]"
edit_value: Change the NAME or PUBLIC_KEY of the SSH key with the given ID.
list_key: do ssh keys list
list_value: Lists all SSH keys.
show_key: do ssh keys show ID
show_value: Shows the public key for SSH key with the given ID.
ssh_keys:
add:
created: "Created new SSH key: %{message}"
edit:
updated: "Updated SSH key: %{message}"
list:
empty: No SSH keys have been added yet.
| en:
lita:
handlers:
digitalocean:
credentials_missing: >-
client_id and api_key must be set in Lita's configuration to
use the DigitalOcean commands.
error: "DigitalOcean API error: %{message}"
format: Format
help:
ssh_keys:
add_key: do ssh keys add NAME PUBLIC_KEY
add_value: Adds a new SSH key.
edit_key: "do ssh keys edit ID [name=NAME] [public_key=PUBLIC_KEY]"
edit_value: Change the NAME and/or PUBLIC_KEY of the SSH key with the given ID.
list_key: do ssh keys list
list_value: Lists all SSH keys.
show_key: do ssh keys show ID
show_value: Shows the public key for SSH key with the given ID.
ssh_keys:
add:
created: "Created new SSH key: %{message}"
edit:
updated: "Updated SSH key: %{message}"
list:
empty: No SSH keys have been added yet.
| Improve ssh keys edit help. | Improve ssh keys edit help.
| YAML | mit | jimmycuadra/lita-digitalocean |
c7ccd7210e80b3d003287d3caba888e29c956c31 | .swiftlint.yml | .swiftlint.yml | excluded:
- DerivedData
- Pods
- "EurofurenceModel/Public/Default Dependency Implementations/Core Data Store/Model Adaptation/*.swift"
disabled_rules:
- identifier_name
- type_name
- weak_delegate
- trailing_whitespace
- class_delegate_protocol
- todo
opt_in_rules:
- force_unwrapping
line_length:
warning: 180
ignores_comments: true
type_body_length:
warning: 400
| excluded:
- DerivedData
- Pods
- "EurofurenceModel/Public/Default Dependency Implementations/Core Data Store/Model Adaptation/*.swift"
disabled_rules:
- identifier_name
- type_name
- weak_delegate
- trailing_whitespace
- class_delegate_protocol
- todo
opt_in_rules:
- force_unwrapping
force_try:
severity: error
force_unwrapping:
severity: error
line_length:
warning: 180
ignores_comments: true
type_body_length:
warning: 400
| Make force unwrap and force try cause compilation errors | Make force unwrap and force try cause compilation errors
| YAML | mit | eurofurence/ef-app_ios,Fenrikur/ef-app_ios,eurofurence/ef-app_ios,Fenrikur/ef-app_ios |
6c3260c682c2c8a15a9db6dfd1a529fdcdb29371 | metadata/fr.corenting.convertisseureurofranc.yml | metadata/fr.corenting.convertisseureurofranc.yml | Categories:
- Money
License: MIT
AuthorName: corenting
AuthorEmail: corenting@gmail.com
SourceCode: https://github.com/corenting/InflationCalculator
IssueTracker: https://github.com/corenting/InflationCalculator/issues
Changelog: https://github.com/corenting/InflationCalculator/releases
AutoName: Inflation Calculator
RepoType: git
Repo: https://github.com/corenting/InflationCalculator.git
Builds:
- versionName: '2.3'
versionCode: 12
commit: v2.3
subdir: app
gradle:
- yes
- versionName: '2.5'
versionCode: 14
commit: v2.5
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '2.5'
CurrentVersionCode: 14
| Categories:
- Money
License: MIT
AuthorName: corenting
AuthorEmail: corenting@gmail.com
SourceCode: https://github.com/corenting/InflationCalculator
IssueTracker: https://github.com/corenting/InflationCalculator/issues
Changelog: https://github.com/corenting/InflationCalculator/releases
AutoName: Inflation Calculator
RepoType: git
Repo: https://github.com/corenting/InflationCalculator.git
Builds:
- versionName: '2.3'
versionCode: 12
commit: v2.3
subdir: app
gradle:
- yes
- versionName: '2.5'
versionCode: 14
commit: v2.5
subdir: app
gradle:
- yes
- versionName: '2.6'
versionCode: 15
commit: v2.6
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '2.6'
CurrentVersionCode: 15
| Update Inflation Calculator to 2.6 (15) | Update Inflation Calculator to 2.6 (15)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
4bfd19c93b0ec52af2dc4c522057d518f92210d2 | Scripts/SaneDocReport/SaneDocReport.yml | Scripts/SaneDocReport/SaneDocReport.yml | args:
- default: true
description: sane report json file contents base64
isArray: false
name: "sane_docx_report_base64"
required: true
secret: false
comment: Parse Sane-json-reports and export them as docx files (used internally).
commonfields:
id: SaneDocReports
version: -1
enabled: true
name: SaneDocReports
script: ''
system: false
tags:
- sane-doc-reports
- sane-reports
- docx
timeout: '0'
type: python
dockerimage: devdemisto/sane-doc-report
runas: DBotWeakRole
runonce: false
deprecated: true
subtype: python3
tests:
- No Test | args:
- default: true
description: sane report json file contents base64
isArray: false
name: "sane_docx_report_base64"
required: true
secret: false
comment: Parse Sane-json-reports and export them as docx files (used internally).
commonfields:
id: SaneDocReports
version: -1
enabled: true
name: SaneDocReports
script: ''
system: false
tags:
- sane-doc-reports
- sane-reports
- docx
timeout: '0'
type: python
dockerimage: devdemisto/sane-doc-reports:1.0.0.347
runas: DBotWeakRole
runonce: false
deprecated: true
subtype: python3
tests:
- No Test | Fix the docker image tag | Fix the docker image tag
| YAML | mit | demisto/content,demisto/content,VirusTotal/content,VirusTotal/content,VirusTotal/content,VirusTotal/content,demisto/content,demisto/content |
b2ea9c47b733437ff3993bd790a08dd8eead17e0 | metadata/io.github.deweyreed.clipboardcleaner.yml | metadata/io.github.deweyreed.clipboardcleaner.yml | Categories:
- System
License: MIT
SourceCode: https://github.com/DeweyReed/ClipboardCleaner
IssueTracker: https://github.com/DeweyReed/ClipboardCleaner/issues
Changelog: https://github.com/DeweyReed/ClipboardCleaner/releases
AutoName: ClipboardCleaner
Description: |-
As you may know, Android clipboard content and its changes can be accessed by
any app, which is a security hole if you care about it. Any app can get your copied password, credit card numbers
and more.
However, ClipboardCleaner can't protect your passwords from being accessed by
any app. But it gives you some ways to
check and clean your clipboard.
RepoType: git
Repo: https://github.com/DeweyReed/ClipboardCleaner
Builds:
- versionName: 1.2.1
versionCode: 31
commit: 1.2.1
subdir: app
gradle:
- yes
- versionName: 1.3.0
versionCode: 130
commit: 1.3.0
subdir: app
gradle:
- yes
- versionName: 1.4.1
versionCode: 141
commit: 1.4.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.4.1
CurrentVersionCode: 141
| Categories:
- System
License: MIT
SourceCode: https://github.com/DeweyReed/ClipboardCleaner
IssueTracker: https://github.com/DeweyReed/ClipboardCleaner/issues
Changelog: https://github.com/DeweyReed/ClipboardCleaner/releases
AutoName: ClipboardCleaner
Description: |-
As you may know, Android clipboard content and its changes can be accessed by
any app, which is a security hole if you care about it. Any app can get your copied password, credit card numbers
and more.
However, ClipboardCleaner can't protect your passwords from being accessed by
any app. But it gives you some ways to
check and clean your clipboard.
RepoType: git
Repo: https://github.com/DeweyReed/ClipboardCleaner
Builds:
- versionName: 1.2.1
versionCode: 31
commit: 1.2.1
subdir: app
gradle:
- yes
- versionName: 1.3.0
versionCode: 130
commit: 1.3.0
subdir: app
gradle:
- yes
- versionName: 1.4.1
versionCode: 141
commit: 1.4.1
subdir: app
gradle:
- yes
- versionName: 1.4.2
versionCode: 142
commit: 1.4.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.4.2
CurrentVersionCode: 142
| Update ClipboardCleaner to 1.4.2 (142) | Update ClipboardCleaner to 1.4.2 (142)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
9e13a3fa59fb80c0ad9aa70cbba607c9b1f20222 | config/settings.example.yml | config/settings.example.yml | production:
host: dinesafe.to
google_maps_browser_api_key:
app_store_link: # http://...
app_store_id: # 9-digit app store ID
development:
host: dinesafe.dev
google_maps_browser_api_key:
app_store_link: # http://...
app_store_id: # 9-digit app store ID
test:
host:
google_maps_browser_api_key:
app_store_link:
app_store_id:
| production:
host: dinesafe.to
google_maps_browser_api_key:
app_store_link: # http://...
app_store_id: # 9-digit app store ID
newrelic_license_key:
development:
host: dinesafe.dev
google_maps_browser_api_key:
app_store_link: # http://...
app_store_id: # 9-digit app store ID
newrelic_license_key:
test:
host:
google_maps_browser_api_key:
app_store_link:
app_store_id:
newrelic_license_key:
| Move newrelic license key to settings.yml | Move newrelic license key to settings.yml
| YAML | mit | nomatteus/dinesafe,jbinto/dinesafe-chrome-backend,jbinto/dinesafe,nomatteus/dinesafe,jbinto/dinesafe-chrome-backend,nomatteus/dinesafe,jbinto/dinesafe,nomatteus/dinesafe,jbinto/dinesafe-chrome-backend,jbinto/dinesafe,jbinto/dinesafe-chrome-backend,jbinto/dinesafe |
757516b94710b4331c9cb03753b940cb0c198745 | images/bazel/variants.yaml | images/bazel/variants.yaml | variants:
kubernetes:
CONFIG: kubernetes-master # Used by the kubernetes repo master branch
NEW_VERSION: 2.2.0
OLD_VERSION: 0.25.2
org:
CONFIG: org # Used by org repo
NEW_VERSION: 3.0.0
OLD_VERSION: 0.29.1
test-infra:
CONFIG: test-infra # Used by test-infra repo
NEW_VERSION: 3.1.0
OLD_VERSION: 3.0.0
testgrid:
CONFIG: testgrid # Used by testgrid repo
NEW_VERSION: 2.2.0
OLD_VERSION: 2.1.0
| variants:
kubernetes:
CONFIG: kubernetes-master # Used by the kubernetes repo master branch
NEW_VERSION: 2.2.0
OLD_VERSION: 0.25.2
org:
CONFIG: org # Used by org repo
NEW_VERSION: 3.0.0
OLD_VERSION: 0.29.1
test-infra:
CONFIG: test-infra # Used by test-infra repo
NEW_VERSION: 3.1.0
OLD_VERSION: 3.0.0
testgrid:
CONFIG: testgrid # Used by testgrid repo
NEW_VERSION: 3.0.0
OLD_VERSION: 2.1.0
| Update testgrid bazel image to support 2.1.0->3.0.0 | Update testgrid bazel image to support 2.1.0->3.0.0
This tested fine locally
| YAML | apache-2.0 | fejta/test-infra,dims/test-infra,michelle192837/test-infra,dims/test-infra,monopole/test-infra,dims/test-infra,michelle192837/test-infra,pwittrock/test-infra,kubernetes/test-infra,jessfraz/test-infra,monopole/test-infra,dims/test-infra,michelle192837/test-infra,brahmaroutu/test-infra,cjwagner/test-infra,jessfraz/test-infra,michelle192837/test-infra,pwittrock/test-infra,pwittrock/test-infra,BenTheElder/test-infra,cjwagner/test-infra,jessfraz/test-infra,monopole/test-infra,cjwagner/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,BenTheElder/test-infra,fejta/test-infra,BenTheElder/test-infra,michelle192837/test-infra,BenTheElder/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,pwittrock/test-infra,dims/test-infra,cjwagner/test-infra,cblecker/test-infra,monopole/test-infra,brahmaroutu/test-infra,cblecker/test-infra,cblecker/test-infra,monopole/test-infra,monopole/test-infra,fejta/test-infra,jessfraz/test-infra,jessfraz/test-infra,cjwagner/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,kubernetes/test-infra,fejta/test-infra,brahmaroutu/test-infra,cblecker/test-infra,michelle192837/test-infra,jessfraz/test-infra,dims/test-infra,cjwagner/test-infra,cblecker/test-infra,fejta/test-infra,kubernetes/test-infra,cblecker/test-infra,pwittrock/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,fejta/test-infra |
33cded2440d09da647023964e6857a283d3712a5 | config/database.vagrant.yml | config/database.vagrant.yml | development:
adapter: postgresql
database: ohana-api_development
template: template0
encoding: utf8
host: localhost
port: 5432
pool: 5
timeout: 5000
username: ohana_api
password: ohanatest
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
adapter: postgresql
database: ohana_api_test
template: template0
encoding: utf8
host: localhost
port: 5432
pool: 5
timeout: 5000
username: ohana_api
password: ohanatest
| development:
adapter: postgresql
database: ohana_api_development
template: template0
encoding: utf8
host: localhost
port: 5432
pool: 5
timeout: 5000
username: ohana_api
password: ohanatest
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
adapter: postgresql
database: ohana_api_test
template: template0
encoding: utf8
host: localhost
port: 5432
pool: 5
timeout: 5000
username: ohana_api
password: ohanatest
| Use underscores in Vagrant DB name | Use underscores in Vagrant DB name
| YAML | bsd-3-clause | codeforamerica/ohana-api,volkanunsal/nyc-prepared,code4sac/ohana-api,cderenburger/win211-ohana-api,appropriate/ohana-api-la,folklabs/ohana-api,120photo/ohana-api,volkanunsal/nyc-prepared,code4sac/ohana-api,monfresh/ohana-api-dc,volkanunsal/nyc-prepared,pmackay/ohana-api,bkerley/ohana-api,pmackay/ohana-api,cderenburger/ohana-api,120photo/ohana-api,hackforla/ohana-api-la,Code-for-Miami/ohana-api,CodeforBirmingham/ohana-api,CodeforBirmingham/ohana-api,beherca/ohana-api,sfbrigade/ohana-api,pmackay/ohana-api,cderenburger/win211-ohana-api,appropriate/ohana-api-la,codeforamerica/ohana-api,monfresh/ohana-api-dc,sfbrigade/ohana-api,volkanunsal/nyc-prepared,folklabs/ohana-api,appropriate/ohana-api,hackforla/ohana-api-la,beherca/ohana-api,devinbalkind/nyc-prepared,tannerj/ohana-api,code4sac/ohana-api,Code-for-Miami/ohana-api,hackforla/ohana-api-la,codeforamerica/ohana-api,CodeforBirmingham/ohana-api,CodeforBirmingham/ohana-api,bkerley/ohana-api,bkerley/ohana-api,devinbalkind/nyc-prepared,smcgov/ohana-api-smc,cderenburger/ohana-api,devinbalkind/nyc-prepared,appropriate/ohana-api,sfbrigade/ohana-api,appropriate/ohana-api-la,beherca/ohana-api,cderenburger/win211-ohana-api,codeforamerica/ohana-api,code4sac/ohana-api,monfresh/ohana-api-dc,folklabs/ohana-api,120photo/ohana-api,appropriate/ohana-api,tannerj/ohana-api,smcgov/ohana-api-smc,pmackay/ohana-api,folklabs/ohana-api,hackforla/ohana-api-la,beherca/ohana-api,tannerj/ohana-api,sfbrigade/ohana-api,120photo/ohana-api,smcgov/ohana-api-smc,bkerley/ohana-api,cderenburger/ohana-api,cderenburger/ohana-api,appropriate/ohana-api,Code-for-Miami/ohana-api,cderenburger/win211-ohana-api,Code-for-Miami/ohana-api,devinbalkind/nyc-prepared,appropriate/ohana-api-la,tannerj/ohana-api,smcgov/ohana-api-smc |
767160ad404951a66505512e3b304e7bf51db20f | examples/aws/templates/diego/property-overrides.yml | examples/aws/templates/diego/property-overrides.yml | property_overrides:
bbs:
active_key_label: REPLACE_WITH_ACTIVE_KEY_LABEL
encryption_keys:
- label: REPLACE_WITH_ACTIVE_KEY_LABEL
passphrase: REPLACE_WITH_A_SECURE_PASSPHRASE
require_ssl: true
# If bbs.require_ssl is set to false, the following certs and keys must be set
# to nil.
ca_cert: (( merge ))
client_cert: (( merge ))
client_key: (( merge ))
server_cert: (( merge ))
server_key: (( merge ))
log_level: debug
nsync:
log_level: debug
converger:
log_level: debug
auctioneer:
log_level: debug
cc_uploader:
log_level: debug
file_server:
log_level: debug
executor:
log_level: debug
tps:
log_level: debug
route_emitter:
log_level: debug
stager:
log_level: debug
rep:
ca_cert: (( merge ))
client_cert: (( merge ))
client_key: (( merge ))
log_level: debug
require_tls: true
server_cert: (( merge ))
server_key: (( merge ))
garden:
log_level: debug
skip_cert_verify: true
ssh_proxy:
enable_cf_auth: true
host_key: (( merge ))
| property_overrides:
bbs:
active_key_label: REPLACE_WITH_ACTIVE_KEY_LABEL
encryption_keys:
- label: REPLACE_WITH_ACTIVE_KEY_LABEL
passphrase: REPLACE_WITH_A_SECURE_PASSPHRASE
require_ssl: true
# If bbs.require_ssl is set to false, the following certs and keys must be set
# to nil.
ca_cert: (( merge ))
client_cert: (( merge ))
client_key: (( merge ))
server_cert: (( merge ))
server_key: (( merge ))
log_level: debug
nsync:
log_level: debug
converger:
log_level: debug
auctioneer:
ca_cert: (( merge ))
client_cert: (( merge ))
client_key: (( merge ))
server_cert: (( merge ))
server_key: (( merge ))
log_level: debug
cc_uploader:
log_level: debug
file_server:
log_level: debug
executor:
log_level: debug
tps:
log_level: debug
route_emitter:
log_level: debug
stager:
log_level: debug
rep:
ca_cert: (( merge ))
client_cert: (( merge ))
client_key: (( merge ))
log_level: debug
require_tls: true
server_cert: (( merge ))
server_key: (( merge ))
garden:
log_level: debug
skip_cert_verify: true
ssh_proxy:
enable_cf_auth: true
host_key: (( merge ))
| Add slots for auctioneer creds in AWS templates | Add slots for auctioneer creds in AWS templates
[#135654141]
| YAML | apache-2.0 | cloudfoundry-incubator/diego-release,cloudfoundry-incubator/diego-release,cloudfoundry-incubator/diego-release,cloudfoundry-incubator/diego-release |
9b501bcf31606f75c15cba4ede3e6c1dd4314a3f | provisioning/roles/php/tasks/main.yml | provisioning/roles/php/tasks/main.yml | ---
- name: "install php"
apt: name={{ item }} state=present
with_items: php_apt_packages
notify:
- restart webserver
- name: "Install pecl libraries"
shell: pecl install igbinary
- name: "copy PHP-FPM conf"
copy: src=fpm/ dest=/etc/php5/fpm/ directory_mode=yes
- name: "service run php5-fpm"
service: name=php5-fpm state=started enabled=yes
- name: "copy info.php"
copy: src=info.php dest=/var/www/html/info.php
| ---
- name: "install php"
apt: name={{ item }} state=present
with_items: php_apt_packages
notify:
- restart webserver
- name: "Install pecl libraries"
shell: pecl install igbinary
register: pecl_result
changed_when: "'already installed' not in pecl_result.stdout"
failed_when: "pecl_result.stderr"
- name: "copy PHP-FPM conf"
copy: src=fpm/ dest=/etc/php5/fpm/ directory_mode=yes
- name: "service run php5-fpm"
service: name=php5-fpm state=started enabled=yes
- name: "copy info.php"
copy: src=info.php dest=/var/www/html/info.php
| Check for pecl before installing | Check for pecl before installing
| YAML | mit | NBCUTechnology/pubstack,ericduran/pubstack,ericduran/pubstack,dsilambarasan/stack_dev,aliaksei-yakhnenka/pubstack,aliaksei-yakhnenka/pubstack,dsilambarasan/stack_dev,NBCUTechnology/pubstack |
2507834afc4ae60aefb1bcbd203992fedb703aef | recipes/boto3-stubs/meta.yaml | recipes/boto3-stubs/meta.yaml | {% set name = "boto3-stubs" %}
{% set version = "1.17.54.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/boto3-stubs-{{ version }}.tar.gz
sha256: e23ff6f89eae740c8bf3447d70c54c60201aaf235e12345616166bb6cad0c316
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=3.6
run:
- python >=3.6
- boto3
- typing-extensions
test:
commands:
# I need to use importlib due to the - character in the package name.
- python -c 'import importlib; importlib.import_module("boto3-stubs")'
- pip check
requires:
- pip
about:
home: https://github.com/vemel/mypy_boto3_builder
summary: Type annotations for boto3 1.17.54, generated by mypy-boto3-buider 4.6.0
dev_url: https://github.com/vemel/mypy_boto3_builder
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- maresb
| {% set name = "boto3-stubs" %}
{% set version = "1.17.54.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/boto3-stubs-{{ version }}.tar.gz
sha256: e23ff6f89eae740c8bf3447d70c54c60201aaf235e12345616166bb6cad0c316
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=3.6
run:
- python >=3.6
- boto3
- typing-extensions
test:
commands:
- python test_import.py
- pip check
requires:
- pip
files:
- test_import.py
about:
home: https://github.com/vemel/mypy_boto3_builder
summary: Type annotations for boto3 1.17.54, generated by mypy-boto3-buider 4.6.0
dev_url: https://github.com/vemel/mypy_boto3_builder
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- maresb
| Make separate test_import.py because Windows | Make separate test_import.py because Windows
| YAML | bsd-3-clause | ReimarBauer/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,jochym/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,igortg/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes |
5a78c3c168321a2986765fe36af87cb4f5342b9b | recipes/accessible-pygments/meta.yaml | recipes/accessible-pygments/meta.yaml | {% set name = "accessible-pygments" %}
{% set version = "0.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: bc9ae73e8884bb8d5c26146c10a0ae8158f589e65eb6dc293db959d93574903a
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- python >=3.6
- pip
run:
- pygments
test:
imports:
- accessible_pygments.a11y_light.Theme
- accessible_pygments.a11y_dark.Theme
about:
home: https://github.com/Quansight-Labs/accessible-pygments
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: 'A collection of accessible pygments styles'
description: |
A collection of accessible pygments styles
dev_url: https://github.com/Quansight-Labs/accessible-pygments
extra:
recipe-maintainers:
- steff456
| {% set name = "accessible-pygments" %}
{% set version = "0.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: bc9ae73e8884bb8d5c26146c10a0ae8158f589e65eb6dc293db959d93574903a
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
- pygments
test:
imports:
- accessible_pygments.a11y_light.Theme
- accessible_pygments.a11y_dark.Theme
about:
home: https://github.com/Quansight-Labs/accessible-pygments
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: 'A collection of accessible pygments styles'
description: |
A collection of accessible pygments styles
dev_url: https://github.com/Quansight-Labs/accessible-pygments
extra:
recipe-maintainers:
- steff456
| Add python to run section | Add python to run section
| YAML | bsd-3-clause | ocefpaf/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes |
551ac53aa83d7bcf0f5e22d404de5bef778e22f2 | kube/deployment.yml | kube/deployment.yml | kind: Deployment
apiVersion: extensions/v1beta1
metadata:
labels:
app: blograph
version: 2017-03-10
name: blograph
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: blograph
version: 2017-03-10
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
template:
metadata:
name: blograph
labels:
app: blograph
version: 2017-03-10
spec:
terminationGracePeriodSeconds: 30
restartPolicy: Always
containers:
- env:
- name: BLOGRAPH_REPO
value: https://github.com/passcod/blograph-posts
image: gcr.io/passcod-services/github-passcod-blograph:2017-03-10
imagePullPolicy: IfNotPresent
name: blograph
resources: {}
readinessProbe:
timeoutSeconds: 3
initialDelaySeconds: 3
httpGet:
path: "/2015/apr/29/hold"
port: 5000
livenessProbe:
timeoutSeconds: 3
initialDelaySeconds: 30
httpGet:
path: "/2015/apr/29/hold"
port: 5000
| kind: Deployment
apiVersion: extensions/v1beta1
metadata:
labels:
app: blograph
name: blograph
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: blograph
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
template:
metadata:
name: blograph
labels:
app: blograph
spec:
terminationGracePeriodSeconds: 30
restartPolicy: Always
containers:
- env:
- name: BLOGRAPH_REPO
value: https://github.com/passcod/blograph-posts
image: gcr.io/passcod-services/github-passcod-blograph:v1.0.0
imagePullPolicy: IfNotPresent
name: blograph
resources: {}
readinessProbe:
timeoutSeconds: 3
initialDelaySeconds: 3
httpGet:
path: "/2015/apr/29/hold"
port: 5000
livenessProbe:
timeoutSeconds: 3
initialDelaySeconds: 30
httpGet:
path: "/2015/apr/29/hold"
port: 5000
| Remove version from kube metadata | Remove version from kube metadata
| YAML | artistic-2.0 | passcod/blograph,passcod/blograph,passcod/blograph |
e8e7a483178d8480a4c8f8129a85e326a545f84a | packages/cl/clit.yaml | packages/cl/clit.yaml | homepage: https://github.com/vmchale/command-line-tweeter#readme
changelog-type: ''
hash: a00ced1d7dcc50bae6eae37b415f304271ee08bec06b3d15f7ec60fe927bdad8
test-bench-deps: {}
maintainer: tmchale@wisc.edu
synopsis: Post tweets from stdin
changelog: ''
basic-deps:
http-client: ! '>=0.4.31.2 && <0.5'
bytestring: ! '>=0.10.6 && <0.11'
split: ! '>=0.2.3.1 && <0.3'
base: ! '>=4.8 && <5'
authenticate-oauth: ! '>=1.5.1.2 && <1.6'
clit: -any
http-client-tls: ! '>=0.2.4.1 && <0.3'
optparse-applicative: ! '>=0.12.1.0 && <0.13'
http-types: ! '>=0.9.1 && <0.10'
aeson: ! '>=0.11.2.1 && <0.12'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.1.1'
- '0.1.1.2'
author: Vanessa McHale
latest: '0.1.1.2'
description-type: haddock
description: a Command Line Interface Tweeter
license-name: BSD3
| homepage: https://github.com/vmchale/command-line-tweeter#readme
changelog-type: ''
hash: 7c3225555542309b25cd0e2c95079e17c0f4c5c0df75c2c7ece64e9bb251f551
test-bench-deps: {}
maintainer: tmchale@wisc.edu
synopsis: Post tweets from stdin
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
split: -any
base: ! '>=4.7 && <5'
data-default: -any
lens: -any
authenticate-oauth: -any
clit: -any
http-client-tls: -any
optparse-applicative: <0.13.0.0
http-types: -any
aeson: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.1.1'
- '0.1.1.2'
- '0.2.0.0'
author: Vanessa McHale
latest: '0.2.0.0'
description-type: haddock
description: a Command Line Interface Tweeter
license-name: BSD3
| Update from Hackage at 2016-12-28T19:55:39Z | Update from Hackage at 2016-12-28T19:55:39Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c9628958b96a5b47a5de66a3bfc81df56e9b62c7 | packages/ge/geos.yaml | packages/ge/geos.yaml | homepage: ''
changelog-type: ''
hash: fed9b6ed7accd81c441a236b230d50bdbc046cdb25de92c13050b895b05e9746
test-bench-deps:
bytestring: -any
base: <=5
hspec: -any
geos: -any
cassava: -any
mtl: -any
transformers: -any
vector: -any
maintainer: pfrance@gmail.com
synopsis: Bindings for GEOS.
changelog: ''
basic-deps:
bytestring: -any
base: <=5
mtl: -any
transformers: -any
vector: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.1.0
- 0.1.1.1
- 0.1.1.2
- 0.2.1
- 0.2.2
- 0.3.0
author: Peter France
latest: 0.3.0
description-type: haddock
description: This is a Haskell binding to Geos, the open-source geometry library,
which includes geometry types, predicate functions and other operations, spatially
indexed geometries, and parsers for WKB and WKT formats.
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 5a2fdcca4d0005a2a23dc59fe0950fe0b7d2a0430a8618fffffd322cf91c2016
test-bench-deps:
bytestring: -any
base: <=5
hspec: -any
geos: -any
cassava: -any
mtl: -any
transformers: -any
vector: -any
maintainer: pfrance@gmail.com
synopsis: Bindings for GEOS.
changelog: ''
basic-deps:
bytestring: -any
base: <=5
mtl: -any
transformers: -any
vector: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.1.0
- 0.1.1.1
- 0.1.1.2
- 0.2.1
- 0.2.2
- 0.3.0
- 0.4.0
author: Peter France
latest: 0.4.0
description-type: haddock
description: This is a Haskell binding to Geos, the open-source geometry library,
which includes geometry types, predicate functions and other operations, spatially
indexed geometries, and parsers for WKB and WKT formats.
license-name: MIT
| Update from Hackage at 2020-12-03T18:19:29Z | Update from Hackage at 2020-12-03T18:19:29Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.