commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
fba5ccfd32ffcf3dc24b28a78dec57fafc5b2382 | .travis.yml | .travis.yml | language: ruby
branches:
only:
- travistest
rvm:
- 1.8.7
before_install:
- git submodule update --init --recursive
- sudo apt-get update
- export DEBIAN_FRONTEND=noninteractive
- sudo apt-get -y install exim4-daemon-light
- sudo apt-get -y install `cut -d " " -f 1 config/packages | egrep -v "(^#|wkhtml|bundler)"`
before_script:
- psql -c 'create database foi_test template template0 encoding sql_ascii;' -U postgres
- co database.yml database.yml-test
| language: ruby
branches:
only:
- travistest
rvm:
- 1.8.7
before_install:
- git submodule update --init --recursive
- sudo apt-get update
- export DEBIAN_FRONTEND=noninteractive
- sudo apt-get -y install exim4-daemon-light
- sudo apt-get -y install `cut -d " " -f 1 config/packages | egrep -v "(^#|wkhtml|bundler)"`
before_script:
- cp database.yml database.yml-test
| Fix typo and remove postgres line (rake spec should create the test database anyway) | Fix typo and remove postgres line (rake spec should create the test database anyway)
| YAML | agpl-3.0 | TEDICpy/QueremoSaber,hasadna/alaveteli,4bic/alaveteli,petterreinholdtsen/alaveteli,sarhane/alaveteli-test,obshtestvo/alaveteli-bulgaria,Br3nda/alaveteli,nzherald/alaveteli,andreicristianpetcu/alaveteli_old,petterreinholdtsen/alaveteli,sarhane/alaveteli-test,andreicristianpetcu/alaveteli,sarhane/alaveteli-test,TEDICpy/QueremoSaber,obshtestvo/alaveteli-bulgaria,andreicristianpetcu/alaveteli,nzherald/alaveteli,10layer/alaveteli,petterreinholdtsen/alaveteli,andreicristianpetcu/alaveteli_old,4bic/alaveteli,codeforcroatia/alaveteli,nzherald/alaveteli,andreicristianpetcu/alaveteli,10layer/alaveteli,hasadna/alaveteli,Br3nda/alaveteli,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli,4bic/alaveteli,TEDICpy/QueremoSaber,hasadna/alaveteli,TEDICpy/QueremoSaber,datauy/alaveteli,10layer/alaveteli,nzherald/alaveteli,obshtestvo/alaveteli-bulgaria,datauy/alaveteli,hasadna/alaveteli,Br3nda/alaveteli,obshtestvo/alaveteli-bulgaria,nzherald/alaveteli,4bic/alaveteli,andreicristianpetcu/alaveteli,codeforcroatia/alaveteli,andreicristianpetcu/alaveteli_old,petterreinholdtsen/alaveteli,Br3nda/alaveteli,andreicristianpetcu/alaveteli_old,codeforcroatia/alaveteli,sarhane/alaveteli-test,Br3nda/alaveteli,petterreinholdtsen/alaveteli,obshtestvo/alaveteli-bulgaria,4bic/alaveteli,hasadna/alaveteli,andreicristianpetcu/alaveteli_old,hasadna/alaveteli,datauy/alaveteli,TEDICpy/QueremoSaber |
4aa55884f111807b550bb81589c3c105a0c435f5 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
include:
- php: 5.5
env:
- COLLECT_COVERAGE=true
- php: 5.6
env:
- COLLECT_COVERAGE=true
- EXECUTE_CS_CHECK=true
- php: 7.0
- php: hhvm
allow_failures:
- php: 7.0
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --prefer-dist
script:
- if [ "$COLLECT_COVERAGE" != "true" ]; then phpunit; fi
- if [ "$COLLECT_COVERAGE" == "true" ]; then phpunit --coverage-text --coverage-clover=coverage.clover; fi
- if [ "$EXECUTE_CS_CHECK" == "true" ]; then vendor/bin/php-cs-fixer fix -v --diff --dry-run; fi
after_script:
- if [ "$COLLECT_COVERAGE" == "true" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$COLLECT_COVERAGE" == "true" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
| language: php
sudo: false
matrix:
include:
- php: 5.5
env:
- COLLECT_COVERAGE=true
- php: 5.6
env:
- COLLECT_COVERAGE=true
- EXECUTE_CS_CHECK=true
- php: 7.0
- php: hhvm
allow_failures:
- php: 7.0
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --prefer-dist
script:
- if [ "$COLLECT_COVERAGE" != "true" ]; then vendor/bin/phpunit; fi
- if [ "$COLLECT_COVERAGE" == "true" ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi
- if [ "$EXECUTE_CS_CHECK" == "true" ]; then vendor/bin/php-cs-fixer fix -v --diff --dry-run; fi
after_script:
- if [ "$COLLECT_COVERAGE" == "true" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$COLLECT_COVERAGE" == "true" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
| Use phpunit as installed with Composer | Fix: Use phpunit as installed with Composer
| YAML | mit | thephpleague/uri,thephpleague/uri-components |
789431888c3ae3c1771efcf070379311c08faf3f | .travis.yml | .travis.yml | os: osx
language: node_js
cache:
- node_modules
node_js:
- lts/*
branches:
only:
- gh-pages
script:
- npm test
matrix:
include:
- name: "Chrome Stable"
env: BROWSER=chrome
addons:
chrome: stable
- name: "Chrome Beta"
env: BROWSER=chrome
addons:
chrome: beta
- name: "Firefox ESR"
env: BROWSER=firefox
addons:
firefox: latest-esr
- name: "Firefox Stable"
env: BROWSER=firefox
addons:
firefox: latest
- name: "Firefox Beta"
env: BROWSER=firefox
addons:
firefox: latest-beta
notifications:
email:
recipients:
forward-webrtc-github@webrtc.org
on_success: change
on_failure: always
| os: osx
language: node_js
cache:
- node_modules
node_js:
- lts/*
branches:
only:
- gh-pages
script:
- npm test
matrix:
include:
- name: "Chrome Stable"
env: BROWSER=chrome
addons:
chrome: stable
- name: "Chrome Beta"
env: BROWSER=chrome
addons:
chrome: beta
# - name: "Firefox ESR"
# env: BROWSER=firefox
# addons:
# firefox: latest-esr
# - name: "Firefox Stable"
# env: BROWSER=firefox
# addons:
# firefox: latest
# - name: "Firefox Beta"
# env: BROWSER=firefox
# addons:
# firefox: latest-beta
notifications:
email:
recipients:
forward-webrtc-github@webrtc.org
on_success: change
on_failure: always
| Disable firefox testing due to webdriver issues. | Disable firefox testing due to webdriver issues.
| YAML | bsd-3-clause | webrtc/samples,fippo/webrtc,webrtc/samples,fippo/webrtc |
406dc18b34f6f98cfcf8a55711f6dfc467d0ee3f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "iojs"
- "iojs-v1.0.0"
before_install:
- sudo apt-get update
install:
- sudo apt-get install rpm
| language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "iojs"
- "iojs-v1.0.0"
before_install:
- sudo apt-get update
install:
- sudo apt-get install rpm
- npm install
| Add `npm install` to Travis config | Add `npm install` to Travis config
Travis CI was supposed to run `npm install` by default
but somehow is not doing it.
| YAML | mit | rictorres/node-rpm-builder |
e60cf4302565dc95d26ceda7e8dd6ee59d39d53a | .travis.yml | .travis.yml | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
before_script: ./bin/ci/before_build.sh
rvm:
- 1.8.7
- 1.8.7-p174
- 1.8.7-p249
- ree
- rbx
- 1.9.2
- jruby
- ruby-head
gemfile:
- Gemfile
- gemfiles/eventmachine-pre
notifications:
recipients:
- jakub@rabbitmq.com
- michael@novemberain.com
- markizko@gmail.com
| # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
before_script: ./bin/ci/before_build.sh
rvm:
- 1.8.7
- 1.8.7-p174
- 1.8.7-p249
- ree
- rbx
- 1.9.2
- jruby
- ruby-head
gemfile:
- Gemfile
- gemfiles/eventmachine-pre
notifications:
recipients:
- jakub@rabbitmq.com
- michaelklishin@me.com
- markizko@gmail.com
| Update email address CI will be using | Update email address CI will be using
| YAML | mit | ruby-amqp/amq-client,ruby-amqp/amq-client |
2dbdcdfb15237017174637b69341b644eabd051f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
before_script:
- cd test/dummy/ && rake db:create db:migrate db:test:prepare && cd ~-
| language: ruby
rvm:
- 1.9.3
- 2.0.0
before_script:
- cd test/dummy/ && rake db:create db:migrate db:test:prepare && cd ~-
| Remove support for Ruby 1.9.2. | Remove support for Ruby 1.9.2.
| YAML | mit | MitinPavel/current_user,MitinPavel/current_user |
bd2892f4f24902a10ce744a1159a045400bb4ca1 | .travis.yml | .travis.yml | env:
matrix:
- TRAVIS_PYTHON_VERSION="2.7"
os:
- linux
- osx
sudo: required
before_install:
- echo "Build on $TRAVIS_OS_NAME"
- if [[ "$TRAVIS_TAG" == v* ]]; then export BUILD_STR=""; else export BUILD_STR="dev"; fi
- source .ci/travis/install_python.sh
- conda info -a
- conda build -q -c csdms .conda
- pip install coveralls
- source .ci/travis/install_dakota.sh
- dakota --version
install:
- conda install -q -c csdms csdms-dakota --use-local
script:
- nosetests --with-doctest --with-coverage --cover-package=csdms.dakota
after_success:
- coveralls --verbose
| env:
matrix:
- TRAVIS_PYTHON_VERSION="2.7"
os:
- linux
- osx
sudo: required
before_install:
- echo "Build on $TRAVIS_OS_NAME"
- if [[ "$TRAVIS_TAG" == v* ]]; then export BUILD_STR=""; else export BUILD_STR="dev"; fi
- source .ci/travis/install_python.sh
- conda info -a
- conda build -q -c csdms .conda
- pip install coveralls
- source .ci/travis/install_dakota.sh
- dakota --version
- conda install -q -c csdms hydrotrend
install:
- conda install -q -c csdms csdms-dakota --use-local
script:
- nosetests --with-doctest --with-coverage --cover-package=csdms.dakota
after_success:
- coveralls --verbose
| Install HydroTrend from CSDMS conda package | Install HydroTrend from CSDMS conda package
| YAML | mit | csdms/dakota,csdms/dakota |
bd6d3201dd9ddb8f82d95eb85e4832b12dc5dc39 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 1.9.3
- 2.2.0
script: "bundle exec rake spec"
| sudo: false
language: ruby
rvm:
- 1.9.3
- 2.2.0
- 2.3.0
script: "bundle exec rake spec"
| Add Ruby 2.3.x to CI | Add Ruby 2.3.x to CI
| YAML | mit | douglasr/metar-parser,douglasr/metar-parser,joeyates/metar-parser,joeyates/metar-parser |
92af9e4e33b58e1d7a400841cf4a30b47aec0f13 | .travis.yml | .travis.yml | sudo: true
language: python
sudo: required
python:
- 3.6
env:
global:
- AWS_DEFAULT_REGION=eu-west-1
- AWS_DEFAULT_OUTPUT=json
matrix:
- DRIFT_CONFIG_URL=s3://relib-test/directive-games
cache: pip
addons:
apt:
packages:
- nginx
before_install:
- sudo chown $(whoami) /usr/share/nginx
- sudo chown $(whoami) /etc/nginx/nginx.conf
- export BOTO_CONFIG=/dev/null
install:
- pip install pipenv==2018.10.13
- pipenv install --dev --deploy
script:
- pytest --cov
after_success:
- codecov
- coverage report
- pip install -e "git+https://github.com/dgnorth/drift.git#egg=drift[aws]"
- drift-admin ami bake --skipcopy
- drift-admin ami run
| sudo: true
language: python
sudo: required
python:
- 3.6
env:
global:
- AWS_DEFAULT_REGION=eu-west-1
- AWS_DEFAULT_OUTPUT=json
- DRIFT_TIER=DEVNORTH
matrix:
- DRIFT_CONFIG_URL=s3://relib-test/directive-games
cache: pip
addons:
apt:
packages:
- nginx
before_install:
- sudo chown $(whoami) /usr/share/nginx
- sudo chown $(whoami) /etc/nginx/nginx.conf
- export BOTO_CONFIG=/dev/null
install:
- pip install pipenv==2018.10.13
- pipenv install --dev --deploy
script:
- pytest --cov
after_success:
- codecov
- coverage report
- pip install -e "git+https://github.com/dgnorth/drift.git#egg=drift[aws]"
- drift-admin ami bake --skipcopy
- drift-admin ami run
| Add tier environment variable for 'ami run' command | Add tier environment variable for 'ami run' command
| YAML | mit | dgnorth/drift-apirouter,dgnorth/drift-apirouter,dgnorth/drift-apirouter |
4f7fe7af6c78ba37ad73bc3c5016b424cd68d923 | .travis.yml | .travis.yml | # Disabling sudo moves build to the Container Based Infrastructure on Travis CI
sudo: false
language: java
jdk: oraclejdk8
script:
- sh ci.sh
notifications:
email: false
| # Disabling sudo moves build to the Container Based Infrastructure on Travis CI
sudo: false
language: java
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
script:
- sh ci.sh
notifications:
email: false
| Test on Oracle JDK 7 and 8 and Open JDK 7 | Test on Oracle JDK 7 and 8 and Open JDK 7
| YAML | apache-2.0 | pushtorefresh/java-private-constructor-checker,pushtorefresh/java-private-constructor-checker |
f7f66e335f2ed91f5a83512295b400ca006f186b | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
env:
- DJANGO="django>=1.3,<1.4"
- DJANGO="django>=1.4,<1.5"
- DJANGO="https://github.com/django/django/tarball/master"
matrix:
allow_failures:
- env: DJANGO="https://github.com/django/django/tarball/master"
install:
- pip install $DJANGO argparse --use-mirrors
script:
- ./runtests.py
| language: python
python:
- 2.7
env:
- DJANGO="django>=1.3,<1.4"
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5,<1.6"
- DJANGO="django>=1.7,<1.8"
- DJANGO="https://github.com/django/django/archive/master.zip"
matrix:
allow_failures:
- env: DJANGO="django>=1.5,<1.6"
- env: DJANGO="django>=1.7,<1.8"
- env: DJANGO="https://github.com/django/django/archive/master.zip"
install:
- pip install $DJANGO --use-mirrors
script:
- ./runtests.py
| Test against recent versions of Django. | Test against recent versions of Django.
| YAML | mit | charettes/django-dynamic-choices,charettes/django-dynamic-choices,charettes/django-dynamic-choices |
1e9eacc0a7024ba5b3c9cc4dc699613f10d8a51d | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- jruby-19mode
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "bundle exec rake test_with_coveralls"
| sudo: false
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.2.3
- jruby-19mode
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "bundle exec rake test_with_coveralls"
| Add Ruby 2.2.3 to Travis CI | Add Ruby 2.2.3 to Travis CI
| YAML | mit | jkotests/page-object,drodriguezaltimetrik/page-object,titusfortner/page-object,drodriguezaltimetrik/page-object,irfanah/page-object,cheezy/page-object,Donavan/page-object,vveliev/page-object,irfanah/page-object,morozgrafix/page-object,vveliev/page-object,cheezy/page-object,jkotests/page-object,ducthanh/page-object,titusfortner/page-object,morozgrafix/page-object,ducthanh/page-object,Donavan/page-object |
bba8e14ceba0c1d23dbc6fecb5e82419a981dd50 | .travis.yml | .travis.yml | os:
- linux
- osx
dist: trusty
sudo: required
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install sdl2 sdl2_image sdl2_mixer; fi
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
| os:
- linux
- osx
dist: trusty
sudo: required
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install sdl2 sdl2_image; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install sdl2_mixer --with-libvorbis; fi
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/ebdb56bb4da002ad1293
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
| Add gitter webhook for Travis and update command. | Add gitter webhook for Travis and update command. | YAML | apache-2.0 | nitro-devs/nitro-game-engine |
22a8a61e0e7c0636673232d2b94b0fe5ea89a086 | .travis.yml | .travis.yml | # https://travis-ci.org/mre/kafka-influxdb
sudo: false
os:
- linux
language: python
python:
- "2.7"
- pypy
- 3.3
- 3.4
- 3.5
- pypy3
install:
- pip install python-coveralls
- pip install coverage
- pip install nose
- pip install -r requirements.txt
script:
- python setup.py install
- nosetests --with-coverage
after_success:
- coveralls
- if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then coveralls; fi
| # https://travis-ci.org/mre/kafka-influxdb
sudo: false
os:
- linux
language: python
python:
- "2.7"
- "pypy"
- "3.3"
- "3.4"
- "3.5"
- "pypy3"
- "3.5-dev"
- "nightly"
matrix:
allow-failures:
- python: "3.5-dev"
- python: "nightly"
fast_finish: true
install:
- pip install python-coveralls
- pip install coverage
- pip install nose
- pip install -r requirements.txt
script:
- python setup.py install
- nosetests --with-coverage
after_success:
- coveralls
- if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then coveralls; fi
| Add dev and nightly builds. Quote python versions | Add dev and nightly builds. Quote python versions
| YAML | apache-2.0 | mre/kafka-influxdb,mre/kafka-influxdb |
5e1b1c439593bb2e88b7bb58b259e10e2fc0d3b0 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build with Node.js 8 on Travis CI. | Build with Node.js 8 on Travis CI.
| YAML | mit | bigeasy/semblance |
3b4caba88f2e25c4efde40ed2ede8c1239ad4db6 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.3
- 2.0.0
gemfile:
- gemfiles/active_record_3.gemfile
- gemfiles/active_record_4.gemfile
- gemfiles/mongoid_3.gemfile
- gemfiles/mongoid_4.gemfile
services:
- mongodb
| language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.1
gemfile:
- gemfiles/active_record_3.gemfile
- gemfiles/active_record_4.gemfile
- gemfiles/mongoid_3.gemfile
- gemfiles/mongoid_4.gemfile
services:
- mongodb
| Add newer ruby versions to Travis config | Add newer ruby versions to Travis config
| YAML | mit | vigetlabs/sprig,ericbrooke/sprig |
408a3cb0f2b4bef652a3e1301cad3cbac3017223 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
| language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3
# - 2.4
| Remove Ruby 2.4 while Travis is not ready. | Remove Ruby 2.4 while Travis is not ready.
| YAML | mit | floere/phony,dwilkie/phony |
2c89dd227fbd9a1c27f973afb7cc0f87038306b9 | .travis.yml | .travis.yml | #
# Copyright © 2015 Cask Data, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
#
language: ruby
rvm:
- 1.9.3
cache: bundler
sudo: false
bundler_args: --jobs 7 --without docs integration
script: bundle exec rake
| #
# Copyright © 2015 Cask Data, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
#
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.4
cache: bundler
sudo: false
bundler_args: --jobs 7 --without docs integration
script: bundle exec rake
| Test Ruby 2.0.0 and 2.1.4 (shipped w/ OSX Mavericks/Yosemite, respectively) | Test Ruby 2.0.0 and 2.1.4 (shipped w/ OSX Mavericks/Yosemite, respectively)
| YAML | apache-2.0 | caskdata/coopr-provisioner,caskdata/coopr-provisioner,caskdata/coopr-provisioner,cdapio/coopr-provisioner,cdapio/coopr-provisioner,cdapio/coopr-provisioner,caskdata/coopr-provisioner,cdapio/coopr-provisioner,caskdata/coopr-provisioner,cdapio/coopr-provisioner,caskdata/coopr-provisioner,cdapio/coopr-provisioner |
ada9566c159fe540c7869278cc493a9b76e75ee5 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- pip install -r requirements.txt --use-mirrors
- pip install coveralls --use-mirrors
script:
coverage run manage.py test
after_success:
- coveralls
| language: python
python:
- "2.7"
install:
- pip install -r requirements.txt --use-mirrors
- pip install coveralls --use-mirrors
before_script:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
script:
coverage run manage.py test
after_success:
- coveralls
| Disable SSH key check for github in Travis CI. | Disable SSH key check for github in Travis CI.
| YAML | mit | zsiciarz/variablestars.net,zsiciarz/variablestars.net,zsiciarz/variablestars.net |
dc1d205eb24c2dde4294400dd0977d8176706158 | .github/workflows/build-image.yml | .github/workflows/build-image.yml | name: Resto Docker Image Builder
env:
IMAGE: resto
NAME: jjrom
REPO: resto
on:
push:
paths:
- 'resto/app/**'
- 'resto/build/**'
- '.github/workflows/**'
release:
types: [created, edited]
jobs:
build:
runs-on: ubuntu-latest
steps:
# defaults to shallow checkout
- uses: actions/checkout@v2
- name: Print values of all environment variables
run: printenv
- name: Login to DockerHub Registry
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
- name: Build the tagged Docker image
run: docker build . --file ./build/resto/Dockerfile --tag ${NAME}/${IMAGE}:latest
- name: Prep and tag images (master branch or tagged release only)
if: ${{ startsWith(github.ref, 'refs/heads/master') || github.event_name == 'release' }}
run: |
# convert a shallow repository to a complete one
git fetch --prune --unshallow 2> /dev/null || true
# figure out extra tag
tag=$(git describe --tags)
# Creates or updates an environment variable for any actions running next in a job.
echo "::set-env name=prod_tag::${tag}"
# tag and push images
docker tag ${NAME}/${IMAGE}:latest ${NAME}/${IMAGE}:${tag}
- name: Push to DockerHub (master branch or tagged release only)
if: ${{ startsWith(github.ref, 'refs/heads/master') || github.event_name == 'release' }}
run: |
docker push ${NAME}/${IMAGE}
docker push ${NAME}/${IMAGE}:${prod_tag}
| name: Resto Docker Image Builder
env:
IMAGE: resto
NAME: jjrom
REPO: resto
on:
push:
paths:
- 'app/**'
- 'build/**'
- '.github/workflows/**'
release:
types: [created, edited]
jobs:
build:
runs-on: ubuntu-latest
steps:
# defaults to shallow checkout
- uses: actions/checkout@v2
- name: Print values of all environment variables
run: printenv
- name: Login to DockerHub Registry
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
- name: Build the tagged Docker image
run: docker build . --file ./build/resto/Dockerfile --tag ${NAME}/${IMAGE}:latest
- name: Unshallow repository
run: git fetch --prune --unshallow 2> /dev/null || true
- name: Tag master branch and push to repository
if: ${{ startsWith(github.ref, 'refs/heads/master') }}
run: |
# Tag latest image
docker tag ${NAME}/${IMAGE}:latest
# Push image
docker push ${NAME}/${IMAGE}
- name: Tag latest release and push to repository
if: ${{ github.event_name == 'release' }}
run: |
# Get latest release tag
tag=$(git describe --tags --abbrev=0)
# Tag image
docker tag ${NAME}/${IMAGE}:${tag}
# Push release
docker push ${NAME}/${IMAGE}:${tag}
| Update docker workflow to build release | Update docker workflow to build release
| YAML | apache-2.0 | jjrom/resto,jjrom/resto |
ad0522bc919aacb40c9ba1a3baea8fba4b15e948 | .github/workflows/cherry-pick.yml | .github/workflows/cherry-pick.yml | name: Cherry pick commit(s)
on:
workflow_dispatch:
inputs:
commit:
description: 'Commit to cherrypick'
required: true
branch:
description: 'Branch to cherry pick to'
required: true
default: 'v5-09-XX'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Decide which branch to use
run: |
cat << EOF
::set-output name=branch::$(echo ${{ github.event.inputs.tag }}-patches | sed -e's/[a-z][a-z]*-patches$/-patches/')
EOF
id: decide_release_branch
- uses: actions/checkout@v2
with:
ref: "${{ steps.decide_release_branch.outputs.branch }}"
- name: Update the branch
run: |
set -e
git checkout ${{ steps.decide_release_branch.outputs.branch }}
git cherry-pick ${{ github.event.inputs.commit }}
git config --global user.email "alibuild@cern.ch"
git config --global user.name "ALICE Action Bot"
git push
| name: Cherry pick commit(s)
on:
workflow_dispatch:
inputs:
commit:
description: 'Commit to cherrypick'
required: true
branch:
description: 'Branch to cherry pick to'
required: true
default: 'v5-09-XX'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Decide which branch to use
run: |
cat << EOF
::set-output name=branch::$(echo ${{ github.event.inputs.branch }}-patches | sed -e's/[a-z][a-z]*-patches$/-patches/')
EOF
id: decide_release_branch
- uses: actions/checkout@v2
with:
ref: "${{ steps.decide_release_branch.outputs.branch }}"
- name: Update the branch
run: |
set -e
git checkout ${{ steps.decide_release_branch.outputs.branch }}
git cherry-pick ${{ github.event.inputs.commit }}
git config --global user.email "alibuild@cern.ch"
git config --global user.name "ALICE Action Bot"
git push
| Add workflow to do cherrypicks | Add workflow to do cherrypicks
| YAML | bsd-3-clause | miranov25/AliRoot,miranov25/AliRoot,miranov25/AliRoot,alisw/AliRoot,coppedis/AliRoot,miranov25/AliRoot,coppedis/AliRoot,coppedis/AliRoot,coppedis/AliRoot,alisw/AliRoot,coppedis/AliRoot,coppedis/AliRoot,alisw/AliRoot,miranov25/AliRoot,alisw/AliRoot,miranov25/AliRoot,alisw/AliRoot,miranov25/AliRoot,alisw/AliRoot,alisw/AliRoot,coppedis/AliRoot,alisw/AliRoot,miranov25/AliRoot,coppedis/AliRoot |
11874d6f0345564a6322465e3f08238d575f8e92 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.3
script: rubocop && rspec
| sudo: false
language: ruby
rvm:
- 2.2.3
script: rubocop && rspec
| Use new Travis container infrastructure. | Use new Travis container infrastructure.
Update `.travis.yml` to use new Travis container infrastructure by disabling `sudo`. | YAML | mit | nathankleyn/gem_scaffold |
1b8bc073b9a5e263983d6174fcb0a32eb5027380 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: python setup.py test
| # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.5"
- "3.4"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: python setup.py test
| Remove testing on Python2.6 and PyPY | Remove testing on Python2.6 and PyPY | YAML | bsd-3-clause | chrisdev/django-foundation-formtags,chrisdev/django-foundation-formtags |
72379c22e1a85f22f3291d00cddbe75033c9cbbb | .github/workflows/release-tag.yml | .github/workflows/release-tag.yml | name: Release Tagged Builds
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Set release version
run: echo "::set-env name=RELEASE_VERSION::${GITHUB_REF##*/}"
- name: Build with JCompilo
run: ./jcompilo.sh
env:
BUILD_NUMBER: "$RELEASE_VERSION"
- name: Publish to Bintray
run: bin/publish "$RELEASE_VERSION" "$BINTRAY_USERNAME" "$BINTRAY_PASSWORD"
env:
BINTRAY_USERNAME: ${{ secrets.BINTRAY_USERNAME }}
BINTRAY_PASSWORD: ${{ secrets.BINTRAY_PASSWORD }}
| name: Release Tagged Builds
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Set release version
run: echo "::set-output name=RELEASE_VERSION::${GITHUB_REF##*/}"
- name: Build with JCompilo
run: ./jcompilo.sh
env:
BUILD_NUMBER: ${{ outputs.RELEASE_VERSION }}
- name: Publish to Bintray
run: bin/publish "$RELEASE_VERSION" "$BINTRAY_USERNAME" "$BINTRAY_PASSWORD"
env:
RELEASE_VERSION: ${{ outputs.RELEASE_VERSION }}
BINTRAY_USERNAME: ${{ secrets.BINTRAY_USERNAME }}
BINTRAY_PASSWORD: ${{ secrets.BINTRAY_PASSWORD }}
| Change release flow to set build number via an output, as the reuse of the env var seems dodgy | Change release flow to set build number via an output, as the reuse of the env var seems dodgy
| YAML | apache-2.0 | bodar/totallylazy,bodar/totallylazy,bodar/totallylazy |
f7bfaf7c10057bf59f29fc37fbf1d69af73f0488 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
env:
global:
- DJANGO_SECRET_KEY=my-secret-key-for-testing
matrix:
- TOXENV=py27
- TOXENV=py33
- DJANGO="django==1.6"
- DJANGO="django==1.5.5"
- DJANGO="django==1.4.10"
- DJANGO="django==1.3.7"
install:
- pip install tox --use-mirrors
script:
- tox
matrix:
exclude:
- env: TOXENV=py27
- env: TOXENV=py33
| language: python
python:
- '2.7'
- '3.3'
env:
global:
- DJANGO_SECRET_KEY=my-secret-key-for-testing
matrix:
- TOXENV=py27
- TOXENV=py33
- DJANGO="django==1.6"
- DJANGO="django==1.5.5"
- DJANGO="django==1.4.10"
- DJANGO="django==1.3.7"
install:
- pip install tox --use-mirrors
script:
- tox
matrix:
exclude:
- env: TOXENV=py27
- env: TOXENV=py33
notifications:
email:
on_success: change
on_failure: change
hipchat:
rooms:
secure: oHinMi1k33ZF/oSXF3o0Whi8rOohcvj+SkiFEgOrmlSR1wQBhlg03ETgZtKPaI000EVxMwBQCzXMweqO7F49Z2ofm/DTPD2aPRG/BAUetg67b/VmZkYhoDpUBV2ovdWa4jSAOd73kkstWqZRU5cQh5RV1OsLBXda/MubrIS1p90=
| Add HipChat and tweak email notifications | Add HipChat and tweak email notifications | YAML | agpl-3.0 | jessamynsmith/boards-backend,jessamynsmith/boards-backend,GetBlimp/boards-backend |
7a5749145114c36bee1fa0d3ff4ea15667b462dd | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.12'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build on Travis CI without `sudo`. | Build on Travis CI without `sudo`.
| YAML | mit | bigeasy/operation |
cbfca920444c5da5bddd3990f89ca61e5bcc0006 | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
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.1.5
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.6.0"
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.7.0"
notifications:
email: false
| ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
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.1.5
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.6.0"
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.7.0"
allow_failures:
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
notifications:
email: false
| Add ability to unittest puppet 4 | Add ability to unittest puppet 4
| YAML | apache-2.0 | puppetlabs/puppetlabs-firewall,ianand0204/puppetlabs-firewall,jaakkosipari/puppetlabs-firewall |
68016bd3f2df385d78486c90bb255ca41c75a350 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.4"
before_install:
- npm install -g --production yarn
install:
- yarn install
script:
- yarn run grunt build
- yarn run grunt tslint
- yarn run grunt unit_test_nobuild
sudo: false
cache:
directories:
- node_modules
| language: node_js
node_js:
- "4.4"
before_install:
- npm install -g --production yarn
- yarn clean
install:
- yarn install
script:
- yarn run grunt build
- yarn run grunt tslint
- yarn run grunt unit_test_nobuild
sudo: false
cache:
directories:
- node_modules
| Make sure folder is clean | Make sure folder is clean
| YAML | apache-2.0 | uProxy/uproxy,uProxy/uproxy,uProxy/uproxy,uProxy/uproxy,uProxy/uproxy |
b080118a2d04b9184c23cd069400ec1206ca8dc7 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0
- 2.1
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sudo apt-get -qq -y install fontconfig libxrender1"
- "wget http://download.gna.org/wkhtmltopdf/0.12/0.12.1/wkhtmltox-0.12.1_linux-precise-amd64.deb"
- "sudo dpkg -i wkhtmltox-0.12.1_linux-precise-amd64.deb"
| rvm:
- 1.9.2
- 1.9.3
- 2.0
- 2.1
before_install:
- gem update --system
- gem update bundler
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sudo apt-get -qq -y install fontconfig libxrender1"
- "wget http://download.gna.org/wkhtmltopdf/0.12/0.12.1/wkhtmltox-0.12.1_linux-precise-amd64.deb"
- "sudo dpkg -i wkhtmltox-0.12.1_linux-precise-amd64.deb"
| Address Travis issues with Bundler failures | Address Travis issues with Bundler failures
- This issue: https://github.com/bundler/bundler/issues/3558
- PASS: Gem version 2.5.1 & Bundler 1.11.1
- FAIL: Gem version 2.5.1 & Bundler 1.7.6
- PASS: Gem version 2.4.3 & Bundler 1.7.6
| YAML | mit | pdfkit/pdfkit,ContinuityControl/pdfkit,dimko/pdfkit |
ea12398de74fc11530f76892f9126334323403e0 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
- npm run test-node
| ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try:one $EMBER_TRY_SCENARIO --- ember test
- npm run test-node
| Use `ember try:one` instead of `ember try`. | Use `ember try:one` instead of `ember try`.
| YAML | mit | rwjblue/ember-cli-template-lint,rwjblue/ember-cli-template-lint |
6c2e016745f411c5e9f66094165762f638d0596b | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
before_script:
- "unzip ipadic/sysdic.zip"
script:
- "python -m unittest discover -s tests" | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
before_script:
- "unzip ipadic/sysdic.zip"
script:
- "python -m unittest discover -s tests" | Delete 3.2 from supported python version. | Delete 3.2 from supported python version.
| YAML | apache-2.0 | mocobeta/janome,mocobeta/janome,nakagami/janome,nakagami/janome |
c418fb90c9c4094032b814587ea16ed1fb251125 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
before_script:
- curl -s http://getcomposer.org/installer | php
- COMPOSER_ROOT_VERSION=dev-master php composer.phar install --dev
script:
- bin/atoum
notifications:
email:
- ci@verylastroom.com
| language: php
dist: trusty
sudo: false
php:
- 5.5
- 5.6
before_install:
- |
# php.ini configuration
INI=~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
phpenv config-rm xdebug.ini || echo "xdebug not available"
echo date.timezone = Europe/Paris >> $INI
echo memory_limit = -1 >> $INI
echo session.gc_probability = 0 >> $INI
echo opcache.enable_cli = 1 >> $INI
before_script:
- composer install --dev
script:
- bin/atoum
notifications:
email:
- ci@verylastroom.com
| Remove xdebug ext if loaded | Remove xdebug ext if loaded
And deal with currently bringed composer version
| YAML | mit | rezzza/PaymentBe2billBundle |
c839e7c32feb12c6581334dc9685dab117fbc55e | .travis.yml | .travis.yml | dist: bionic
language: c
sudo: require
install:
- sudo add-apt-repository -y ppa:webkit-team/ppa
- sudo apt-get update
- sudo apt-get install -y libgtk-3-dev
- sudo apt-get install -y libwebkit2gtk-4.0-dev
- sudo apt-get install -y xvfb
- sudo apt-get install -y metacity
- sudo apt-get install -y x11-apps
- sudo apt-get install -y imagemagick
script:
- make
- ./test.sh
| dist: bionic
language: c
sudo: require
script:
- make
- ./test.sh
addons:
apt:
update: true
sources:
- ppa:webkit-team/ppa
packages:
- libwegkit2gtk-4.0-dev
- libgtk-3-dev
- xvfb
- metacity
- x11-apps # → xwd
- imagemagick # → convert
| Add third-party APT repository for WebKit | Travis: Add third-party APT repository for WebKit
Unlike previous release images, you have to specify these separately:
https://docs.travis-ci.com/user/reference/bionic/#differences-from-the-previous-release-images
I hope I did this correctly. I have few ways to know but try it.
| YAML | isc | anko/hudkit,anko/hudkit,anko/hudkit |
624605b882b6ef90df0f3628c19e029bd63e97e3 | .travis.yml | .travis.yml | language: go
script: go test -race -cpu 1,2,4 -v -timeout 2m ./...
sudo: false
| language: go
script: go test -race -cpu 1,2,4 -v -timeout 2m ./...
sudo: false
go:
- 1.3
- 1.4
- tip
matrix:
allow_failures:
- go: tip
| Build against multiple go versions, allow tip to fail | Build against multiple go versions, allow tip to fail
| YAML | apache-2.0 | lytics/metafora,schmichael/metafora,schmichael/metafora,lytics/metafora |
61f5f3bde23b8410511e74e479708889c722b058 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: bash
script:
# Install LXD / LXC
- sudo apt update
- sudo apt install snapd -y
- sudo snap install lxd
- sudo lxd init --auto;
- sudo usermod -a -G lxd travis;
- sudo su travis -c 'lxc network create lxdbr0';
- sudo su travis -c 'lxc network attach-profile lxdbr0 default eth0';
# Build all images
- sudo su travis -c 'sh build-all.sh'; | sudo: required
dist: trusty
language: bash
script:
# Install LXD / LXC
- sudo apt update
- sudo apt install snapd -y
- sudo snap install lxd
- sudo . /etc/profile.d/apps-bin-path.sh
- sudo lxd init --auto;
- sudo usermod -a -G lxd travis;
- sudo su travis -c 'lxc network create lxdbr0';
- sudo su travis -c 'lxc network attach-profile lxdbr0 default eth0';
# Build all images
- sudo su travis -c 'sh build-all.sh'; | Update path after LXD installation | Update path after LXD installation
| YAML | mit | drubb/lxd-images |
32e4d82e8748053a2ec878991d68561360351773 | .travis.yml | .travis.yml | language: php
php:
- 7.2
- 7.3
- 7.4snapshot
before_script:
- echo "extension = mongodb.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- travis_retry composer self-update
- travis_retry composer update --no-interaction --prefer-source
| language: php
php:
- 7.2
- 7.3
- 7.4
before_script:
- echo "extension = mongodb.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- travis_retry composer self-update
- travis_retry composer update --no-interaction --prefer-source
| Test against latest version of php 7.4 | Test against latest version of php 7.4
| YAML | mit | johanderuijter/uuid-doctrine-odm |
3ab5031003a4a20a422469250ea1064f7aa64244 | C/ops/roles/common/tasks/main.yml | C/ops/roles/common/tasks/main.yml | ---
- name: Update apt cache and upgrade system
apt: upgrade=dist update-cache=yes
sudo: yes
tags:
- common
- update
- upgrade
- name: Install language-pack-en
apt: pkg=language-pack-en
sudo: yes
tags:
- common
- packages
- language
- name: Update locale to {{ locale }}
command: /usr/sbin/update-locale LANG={{ locale }} LC_ALL={{ locale }}
sudo: yes
tags:
- common
- language
- name: Update localtime to {{ timezone }}
command: /bin/cp /usr/share/zoneinfo/{{ timezone }} /etc/localtime
sudo: yes
tags:
- common
- localtime
- name: Update timezone to {{ timezone }}
template: src=default-timezone.j2 dest=/etc/timezone
sudo: yes
tags:
- common
- timezone
- name: Update tzdata
command: /usr/sbin/dpkg-reconfigure --frontend noninteractive tzdata
sudo: yes
tags:
- common
- tzdata
| ---
- name: Update apt cache and upgrade system
apt: upgrade=dist update-cache=yes
sudo: yes
tags:
- common
- update
- upgrade
- name: Install language-pack-en
apt: pkg=language-pack-en
sudo: yes
tags:
- common
- packages
- language
- name: Update locale to {{ locale }}
command: /usr/sbin/update-locale LANG={{ locale }} LC_ALL={{ locale }}
sudo: yes
tags:
- common
- language
- name: Update localtime to {{ timezone }}
command: /bin/cp /usr/share/zoneinfo/{{ timezone }} /etc/localtime
sudo: yes
tags:
- common
- localtime
- name: Update timezone to {{ timezone }}
template: src=default-timezone.j2 dest=/etc/timezone
sudo: yes
tags:
- common
- timezone
- name: Update tzdata
command: /usr/sbin/dpkg-reconfigure --frontend noninteractive tzdata
sudo: yes
tags:
- common
- tzdata
- name: Disable IPv6
command: sysctl net.ipv6.conf.all.disable_ipv6=1
sudo: yes
tags:
- common
- ipv6
| Disable IPv6 - error with apt-get install :( | Disable IPv6 - error with apt-get install :(
| YAML | mit | katcipis/mise.en.place,katcipis/workbench |
b43dd6c9e5f53ea8722803b112ba1d15449ffdda | .github/workflows/ci.yml | .github/workflows/ci.yml | name: 'Integrate'
on:
- push
- pull_request
jobs:
ci:
name: 'CI'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- stable
- nightly
steps:
- name: 'Install Linux dependencies'
if: ${{ runner.os == 'Linux' }}
run: sudo apt install attr e2fsprogs libfuse-dev
- name: 'Checkout the repository'
uses: actions/checkout@v2
with:
submodules: true
- name: 'Install the Rust toolchain'
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: 'Build RRG executable'
uses: actions-rs/cargo@v1
with:
command: build
- name: 'Run RRG tests'
uses: actions-rs/cargo@v1
with:
command: test
args: >
--workspace
--features 'test-chattr test-setfattr'
- name: 'Print RRG version'
uses: actions-rs/cargo@v1
with:
command: run
args: -- --version
| name: 'Integrate'
on:
- push
- pull_request
jobs:
ci:
name: 'CI'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- stable
- nightly
steps:
- name: 'Install Linux dependencies'
if: ${{ runner.os == 'Linux' }}
run: sudo apt install attr e2fsprogs libfuse-dev
- name: 'Checkout the repository'
uses: actions/checkout@v2
with:
submodules: true
- name: 'Install the Rust toolchain'
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: 'Build RRG executable'
uses: actions-rs/cargo@v1
with:
command: build
# TODO: Add a step that runs tests with all action features disabled.
- name: 'Run RRG tests'
uses: actions-rs/cargo@v1
with:
command: test
args: >
--workspace
--features 'test-chattr test-setfattr'
- name: 'Print RRG version'
uses: actions-rs/cargo@v1
with:
command: run
args: -- --version
| Add a TODO comment about a CI extension. | Add a TODO comment about a CI extension.
| YAML | mit | google/rrg |
735af1e691a4154ff6595e215a376608d1f290d0 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: ci
on:
push:
pull_request:
schedule:
- cron: '0 3 * * 6' # 3am Saturday
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ghc: ['9.0', '8.10', '8.8']
include:
- os: windows-latest
- os: macOS-latest
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal new-install apply-refact --install-method=copy
- run: cabal v2-freeze --enable-tests
- uses: actions/cache@v2
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-
- uses: ndmitchell/neil@master
with:
hlint-arguments: src
| name: ci
on:
push:
pull_request:
schedule:
- cron: '0 3 * * 6' # 3am Saturday
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ghc: ['9.0', '8.10', '8.8']
include:
- os: windows-latest
- os: macOS-latest
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal v2-freeze --enable-tests
- uses: actions/cache@v2
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: ${{ runner.os }}-${{ matrix.ghc }}-
- run: cabal new-install apply-refact --install-method=copy
- uses: ndmitchell/neil@master
with:
hlint-arguments: src
| Move building apply-refact after the cache, since it seems to be breaking the cache | Move building apply-refact after the cache, since it seems to be breaking the cache | YAML | bsd-3-clause | ndmitchell/hlint,ndmitchell/hlint |
358c5866c15f59593b3b64d0f79a88f96ad4f9d7 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push]
jobs:
build:
name: Module imports on all platforms
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Perform the import
shell: pwsh
run: Import-Module ./dbatools.psd1 -ErrorAction Stop; (Get-DbaManagementObject).LoadTemplate -ne $null
| name: CI
on: [pull_request]
jobs:
build:
name: Module imports on all platforms
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Perform the import
shell: pwsh
run: Import-Module ./dbatools.psd1 -ErrorAction Stop; (Get-DbaManagementObject).LoadTemplate -ne $null
| Set CI to only run on pull_request | Set CI to only run on pull_request | YAML | mit | alevyinroc/dbatools |
64529b1e844d48e3ec20658624356e724206f01b | prometheus/src/main/fabric8/deployment.yml | prometheus/src/main/fabric8/deployment.yml | spec:
replicas: 1
template:
spec:
serviceAccountName: metrics
containers:
- name: prometheus
image: prom/prometheus:v1.3.0
ports:
- name: http
containerPort: 9090
volumeMounts:
- name: config-volume
mountPath: /etc/prometheus
- name: data-volume
mountPath: /prometheus
livenessProbe:
httpGet:
port: http
initialDelaySeconds: 1
readinessProbe:
httpGet:
port: http
initialDelaySeconds: 1
- name: configmap-reload
image: jimmidyson/configmap-reload:v0.1
args:
- -volume-dir
- /etc/prometheus
- -webhook-url
- http://localhost:9090/-/reload
volumeMounts:
- name: config-volume
mountPath: /etc/prometheus/config
volumes:
- name: config-volume
configMap:
name: prometheus
- name: data-volume
persistentVolumeClaim:
claimName: prometheus-data
| spec:
replicas: 1
template:
spec:
serviceAccountName: metrics
containers:
- name: prometheus
image: prom/prometheus:v1.3.0
ports:
- name: http
containerPort: 9090
volumeMounts:
- name: config-volume
mountPath: /etc/prometheus
- name: data-volume
mountPath: /prometheus
livenessProbe:
httpGet:
port: http
initialDelaySeconds: 1
readinessProbe:
httpGet:
port: http
initialDelaySeconds: 1
- name: configmap-reload
image: jimmidyson/configmap-reload:v0.1
args:
- -volume-dir
- /etc/prometheus
- -webhook-url
- http://localhost:9090/-/reload
volumeMounts:
- name: config-volume
mountPath: /etc/prometheus
volumes:
- name: config-volume
configMap:
name: prometheus
- name: data-volume
persistentVolumeClaim:
claimName: prometheus-data
| Fix config reload mount path | Fix config reload mount path
| YAML | apache-2.0 | KurtStam/fabric8-devops,KurtStam/fabric8-devops,KurtStam/fabric8-devops |
9f426db2ddc3612390155e7c41ea56b0bf198ed1 | .codeclimate.yml | .codeclimate.yml | ---
engines:
brakeman:
enabled: true
bundler-audit:
enabled: true
csslint:
enabled: true
coffeelint:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
eslint:
enabled: true
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- Gemfile.lock
- "**.erb"
- "**.haml"
- "**.rb"
- "**.rhtml"
- "**.slim"
- "**.css"
- "**.coffee"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
- "**.php"
- "**.py"
exclude_paths:
- config/
- db/
- spec/
- vendor/
- coverage/
- bin/
| ---
engines:
brakeman:
enabled: true
bundler-audit:
enabled: true
csslint:
enabled: true
coffeelint:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
eslint:
enabled: true
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- Gemfile.lock
- "**.erb"
- "**.haml"
- "**.rb"
- "**.rhtml"
- "**.slim"
- "**.css"
- "**.coffee"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
- "**.php"
- "**.py"
exclude_patterns:
- config/
- db/
- spec/
- vendor/
- coverage/
- bin/
- babel.config.js
| Exclude babel.config.js from code climate | Exclude babel.config.js from code climate
And change to newer `execlude_patterns` syntax
| YAML | mit | BLSQ/orbf2,BLSQ/orbf2,BLSQ/orbf2,BLSQ/orbf2 |
d00977048a69b0c562700d3702d4c71903504fb9 | .codeclimate.yml | .codeclimate.yml | languages:
Ruby: false
JavaScript: true
PHP: false
Python: false
exclude_paths:
- "*.md"
- "*.png"
- "*.json"
- "test/*"
| languages:
Ruby: false
JavaScript: true
PHP: false
Python: false
exclude_paths:
- "*.md"
- "*.png"
- "*.json"
- "config/*"
- "test/*"
- "test/helpers/*"
| Exclude config, test/helpers from CodeClimate | Exclude config, test/helpers from CodeClimate
| YAML | isc | mbland/hubot-slack-github-issues |
f299016abfe78f2a7b3257c4eec48c79307c11ee | .codeclimate.yml | .codeclimate.yml | languages:
JavaScript: true
exclude_paths:
- "cli.js"
- "utils.js"
- "build/*"
- "commands/*"
- "templates/*"
- "script/lib/*"
- "script/tests/*" | languages:
JavaScript: true
exclude_paths:
- "templates/*"
- "script/lib/*"
- "script/tests/*" | Add back certain paths to ClodeClimate testing | Add back certain paths to ClodeClimate testing
| YAML | apache-2.0 | weepower/wee-core |
31e51752882600d0743b871748521deb4a108c83 | docker-compose.yml | docker-compose.yml | version: '2'
services:
nginx:
image: nginx:alpine
ports:
- "80:80"
volumes:
- ${PWD}/app:/data/www:ro
- ${PWD}/nginx.conf:/etc/nginx/nginx.conf:ro
| version: '2'
services:
nginx:
image: nginx:alpine
ports:
- "8080:80"
volumes:
- ${PWD}/app:/data/www:ro
- ${PWD}/nginx.conf:/etc/nginx/nginx.conf:ro
| Move nginx server to port 8080 | Move nginx server to port 8080
| YAML | mit | rhussmann/instagram-photo-picker,rhussmann/instagram-photo-picker,rhussmann/instagram-photo-picker |
e692aa8b056172ad309e9d493ce4a417eb70437c | docker-compose.yml | docker-compose.yml | version: '3'
services:
db:
image: postgres:9.6
web:
build: .
command: bundle exec rails s -p 3000 -b '0.0.0.0'
volumes:
- .:/myapp
ports:
- "3000:3000"
depends_on:
- db
| version: '3'
services:
db:
image: postgres:9.6
volumes:
- postgresql-data:/var/lib/postgresql/data
web:
build: .
command: bundle exec rails s -p 3000 -b '0.0.0.0'
environment:
RAILS_ENV: development
volumes:
- .:/myapp
ports:
- "3000:3000"
depends_on:
- db
volumes:
postgresql-data:
driver: local
| Use docker volume for postgresql | Use docker volume for postgresql
| YAML | mit | Kesin11/docker_rails_sample,Kesin11/docker_rails_sample,Kesin11/docker_rails_sample,Kesin11/docker_rails_sample |
100079427e29b66dfd9217f015df982981068635 | azure-pipelines.yml | azure-pipelines.yml | queue: Hosted VS2017
steps:
- checkout: self
clean: true
- task: MSBuild@1
displayName: Restore
inputs:
solution: src/Moq.sln
msbuildArguments: /t:Restore /p:Configuration=Release /m
- task: MSBuild@1
displayName: Version
inputs:
solution: src/Moq/Moq.Package/Moq.Package.csproj
msbuildArguments: /t:Version /bl:"$(Build.ArtifactStagingDirectory)\version.binlog"
- task: MSBuild@1
displayName: Build
inputs:
solution: src/Moq.sln
msbuildArguments: /bl:"$(Build.ArtifactStagingDirectory)\build.binlog" /p:PackOnBuild=true /p:PackageOutputPath=$(Build.ArtifactStagingDirectory) /p:Configuration=Release
- task: VSTest@2
displayName: Test
inputs:
testAssemblyVer2: src\*\*\bin\*\*.Tests.dll
runInParallel: 'true'
codeCoverageEnabled: 'true'
publishRunAttachments: 'true'
rerunFailedTests: true
- task: PublishBuildArtifacts@1
displayName: Publish Artifact
inputs:
PathtoPublish: $(Build.ArtifactStagingDirectory)
ArtifactName: out
ArtifactType: Container
condition: always() | queue: Hosted VS2017
steps:
- checkout: self
clean: true
- task: MSBuild@1
displayName: Restore
inputs:
solution: src/Moq.sln
msbuildArguments: /t:Restore /p:Configuration=Release /m
- task: MSBuild@1
displayName: Version
inputs:
solution: src/Moq/Moq.Package/Moq.Package.csproj
msbuildArguments: /t:Version /bl:"$(Build.ArtifactStagingDirectory)\version.binlog"
- task: MSBuild@1
displayName: Build
inputs:
solution: src/Moq.sln
msbuildArguments: /bl:"$(Build.ArtifactStagingDirectory)\build.binlog" /p:PackOnBuild=true /p:PackageOutputPath=$(Build.ArtifactStagingDirectory) /p:Configuration=Release
- task: VSTest@2
displayName: Test
inputs:
testAssemblyVer2: src\*\*\bin\*\*.Tests.dll
runInParallel: 'true'
codeCoverageEnabled: 'true'
publishRunAttachments: 'true'
diagnosticsEnabled: false
rerunFailedTests: true
- task: PublishBuildArtifacts@1
displayName: Publish Artifact
inputs:
PathtoPublish: $(Build.ArtifactStagingDirectory)
ArtifactName: out
ArtifactType: Container
condition: always() | Disable advanced diagnostics to avoid build warning | Disable advanced diagnostics to avoid build warning
With the setting in its default enabled state, we get the
following warning:
##[warning]Advanced diagnostics data collection requires test platform version 15.9 or higher.
| YAML | apache-2.0 | Moq/moq |
f7752ec9953c56e0153188f7249f039b9e1367af | azure-pipelines.yml | azure-pipelines.yml | # Maven
# Build your Java project and run tests with Apache Maven.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger:
- master
pool:
vmImage: 'Ubuntu-16.04'
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: false
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
| # Maven
# Build your Java project and run tests with Apache Maven.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
jobs:
- job: Linux
pool:
vmImage: 'Ubuntu-16.04'
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: false
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
options: '-Dmaven.test.skip=true'
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: false
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
options: '-Dmaven.test.skip=true'
- job: Mac
pool:
vmImage: 'macOS-10.13'
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: false
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
options: '-Dmaven.test.skip=true'
| Build on Windows, macOS, and Linux. Disable tests which take too long. | Build on Windows, macOS, and Linux. Disable tests
which take too long.
[Build]
| YAML | mit | lemmy/tlaplus,tlaplus/tlaplus,lemmy/tlaplus,tlaplus/tlaplus,tlaplus/tlaplus,lemmy/tlaplus,lemmy/tlaplus,tlaplus/tlaplus |
08e2743fa3f16faa6111399da081b3d8592c6c7a | src/CompetitionPlatform/docker-compose.yml | src/CompetitionPlatform/docker-compose.yml | version: '2'
services:
competitionplatform:
image: competitionplatform
environment:
- SettingsUrl=${SettingsUrl}
ports:
- "80:80"
| version: '2'
services:
competitionplatform:
image: lykkex/competitionplatform
environment:
- SettingsUrl=${SettingsUrl}
ports:
- "80:80"
| Fix image in docker compose. | Fix image in docker compose.
| YAML | mit | LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform,LykkeCity/CompetitionPlatform |
1c2d278565c8696e75d09618e3dc4c17a5db931f | example_config.yml | example_config.yml | ---
Name: app
After: framework/routes#coreroutes
---
Email:
admin_email: example@example.com
i18n:
default_locale: en_NZ
ShopConfig:
base_currency: 'NZD'
email_from: sales@myshop.com
receipt_subject: "Thank you for your order at www.myshop.com - Order #%d"
ShopCurrency:
decimal_delimiter: '.'
thousand_delimiter: ','
Product:
global_allow_purchase: false
# length_unit: 'M'
# weight_unit: 'Pounds'
# Change the dimensions of product thumbnails
Product_Image:
thumbnail_width: 140
thumbnail_height: 100
content_image_width: 200
large_image_width: 200
ProductCategory:
include_child_groups: true
must_have_price: true
sort_options:
'Title' : 'Alphabetical'
'Price' : 'Lowest Price'
# Redirect to the cart page after manipulating the shopping cart
ShoppingCart_Controller:
direct_to_cart_page: true
CheckoutConfig:
member_creation_enabled: true
membership_required: true
Order:
modifiers:
- 'FlatTaxModifier'
- 'SimpleShippingModifier'
cancel_before_payment: false
cancel_before_processing: false
cancel_before_sending: false
cancel_before_sending: false
cancel_after_sending: false
OrderManipulation:
allow_cancelling: true
allow_paying: true
| ---
Name: app
After: shop/config#shopconfig
---
Email:
admin_email: example@example.com
i18n:
default_locale: en_NZ
ShopConfig:
base_currency: 'NZD'
email_from: sales@myshop.com
receipt_subject: "Thank you for your order at www.myshop.com - Order #%d"
ShopCurrency:
decimal_delimiter: '.'
thousand_delimiter: ','
Product:
global_allow_purchase: false
# length_unit: 'M'
# weight_unit: 'Pounds'
# Change the dimensions of product thumbnails
Product_Image:
thumbnail_width: 140
thumbnail_height: 100
content_image_width: 200
large_image_width: 200
ProductCategory:
include_child_groups: true
must_have_price: true
sort_options:
'Title' : 'Alphabetical'
'Price' : 'Lowest Price'
# Redirect to the cart page after manipulating the shopping cart
ShoppingCart_Controller:
direct_to_cart_page: true
CheckoutConfig:
member_creation_enabled: true
membership_required: true
Order:
modifiers:
- 'FlatTaxModifier'
- 'SimpleShippingModifier'
cancel_before_payment: false
cancel_before_processing: false
cancel_before_sending: false
cancel_before_sending: false
cancel_after_sending: false
OrderManipulation:
allow_cancelling: true
allow_paying: true
| Make example config overwrite shop/config.yml | Make example config overwrite shop/config.yml
Changed the After so changes in this file will actually overwrite any config settings in the shop/config.yml | YAML | bsd-2-clause | silvershop/silvershop-core,burnbright/silverstripe-shop,webtorque7/silverstripe-shop,webtorque7/silverstripe-shop,burnbright/silverstripe-shop,burnbright/silverstripe-shop,webtorque7/silverstripe-shop,hpeide/silverstripe-shop |
1096ce43aaba860b09a03d1173a35890c1c9ada0 | src/modules/core/producer_consumer.yml | src/modules/core/producer_consumer.yml | schema_version: 0.1
type: producer
identifier: consumer
title: Consumer as Producer
version: 2
copyright: Ushodaya Enterprises Limited
creator: Dan Dennedy
license: LGPLv2.1
language: en
tags:
- Audio
- Video
parameters:
- identifier: argument
title: File/URL
type: string
description: A file name, URL, or producer name.
required: yes
- identifier: profile
title: Profile
type: string
description: >
The name of a MLT profile with which to load the resource. This defaults
to the composition's profile, but could be overridden by the profile
in MLT XML. Also, the value "auto" triggers profile detection.
- identifier: autoprofile
title: Auto-profile
type: integer
description: Generate a new, custom profile from the encapsulated resource.
minimum: 0
maximum: 1
default: 0
| schema_version: 0.1
type: producer
identifier: consumer
title: Consumer as Producer
version: 2
copyright: Ushodaya Enterprises Limited
creator: Dan Dennedy
license: LGPLv2.1
language: en
tags:
- Audio
- Video
parameters:
- identifier: argument
title: File/URL
type: string
description: A file name, URL, or producer name.
required: yes
- identifier: profile
title: Profile
type: string
description: >
The name of a MLT profile with which to load the resource. This defaults
to the composition's profile, but could be overridden by the profile
in MLT XML. Also, the value "auto" triggers profile detection.
- identifier: autoprofile
title: Auto-profile
type: integer
description: Generate a new, custom profile from the encapsulated resource.
minimum: 0
maximum: 1
default: 0
- identifier: producer.*
title: Producer properties
description: A property and its value to apply to the encapsulated producer.
type: properties
mutable: yes
- identifier: consumer.*
title: Consumer properties
description: A property and its value to apply to the encapsulated consumer.
type: properties
mutable: yes
| Document new producer.* and consumer.* properties. | Document new producer.* and consumer.* properties.
| YAML | lgpl-2.1 | j-b-m/mlt,xzhavilla/mlt,wideioltd/mlt,j-b-m/mlt,j-b-m/mlt,j-b-m/mlt,mltframework/mlt,mltframework/mlt,wideioltd/mlt,anba8005/mlt,j-b-m/mlt,j-b-m/mlt,wideioltd/mlt,siddharudh/mlt,anba8005/mlt,zzhhui/mlt,xzhavilla/mlt,xzhavilla/mlt,anba8005/mlt,anba8005/mlt,j-b-m/mlt,zzhhui/mlt,wideioltd/mlt,wideioltd/mlt,wideioltd/mlt,mltframework/mlt,j-b-m/mlt,wideioltd/mlt,j-b-m/mlt,xzhavilla/mlt,siddharudh/mlt,siddharudh/mlt,wideioltd/mlt,mltframework/mlt,zzhhui/mlt,mltframework/mlt,mltframework/mlt,anba8005/mlt,zzhhui/mlt,siddharudh/mlt,anba8005/mlt,mltframework/mlt,xzhavilla/mlt,zzhhui/mlt,siddharudh/mlt,mltframework/mlt,wideioltd/mlt,zzhhui/mlt,zzhhui/mlt,siddharudh/mlt,zzhhui/mlt,xzhavilla/mlt,j-b-m/mlt,anba8005/mlt,mltframework/mlt,zzhhui/mlt,mltframework/mlt,siddharudh/mlt,siddharudh/mlt,xzhavilla/mlt,anba8005/mlt,xzhavilla/mlt,xzhavilla/mlt,anba8005/mlt,siddharudh/mlt |
a2b94c686bec0cb90692769cd606b41819fdeffe | modules/openstack_project/files/jenkins_job_builder/config/release.yaml | modules/openstack_project/files/jenkins_job_builder/config/release.yaml | - job:
name: common-bump-milestone
concurrent: false
node: master
properties:
- authorization:
openstack-release:
- job-build
ttx:
- job-build
parameters:
- choice:
name: PROJECT
description: On what project to run?
choices:
- nova
- glance
- keystone
- horizon
- quantum
- melange
- cinder
- ceilometer
- python-ceilometerclient
- python-cinderclient
- python-novaclient
- python-openstackclient
- python-glanceclient
- python-keystoneclient
- python-quantumclient
- python-swiftclient
- choice:
name: BRANCH
description: The branch to update.
choices:
- master
- milestone-proposed
- string:
name: VALUE
description: 'The milestone value to set for this branch. E.g., "e4" or "rc1".'
builders:
- shell: "/usr/local/jenkins/slave_scripts/bump-milestone.sh"
| - job:
name: common-bump-milestone
concurrent: false
node: master
properties:
- authorization:
openstack-release:
- job-build
ttx:
- job-build
parameters:
- choice:
name: PROJECT
description: On what project to run?
choices:
- nova
- glance
- keystone
- horizon
- quantum
- cinder
- ceilometer
- heat
- choice:
name: BRANCH
description: The branch to update.
choices:
- master
- milestone-proposed
- string:
name: VALUE
description: 'The milestone value to set for this branch. E.g., "e4" or "rc1".'
builders:
- shell: "/usr/local/jenkins/slave_scripts/bump-milestone.sh"
| Add Heat to common-bump-milestone job | Add Heat to common-bump-milestone job
Update the list of projects in the common-bump-milestone job parameters:
- Add Heat. Should hopefully allow us (once seeded) to generate
properly-versioned artefacts from heat-tarball job.
- Remove Python client projects and Melange, which do not use this job
anymore.
Change-Id: I9dfa7c793a55385bb496823d0285c8f721d1eed7
Reviewed-on: https://review.openstack.org/18323
Reviewed-by: Monty Taylor <37c07a49ee3d5191376d758eb1d8298b34456b8e@inaugust.com>
Approved: Jeremy Stanley <98883b97e35b7bb1ac282bb863f2e9d917db0454@yuggoth.org>
Reviewed-by: Jeremy Stanley <98883b97e35b7bb1ac282bb863f2e9d917db0454@yuggoth.org>
Tested-by: Jenkins
| YAML | apache-2.0 | citrix-openstack/project-config,openstack-infra/project-config,dongwenjuan/project-config,anbangr/osci-project-config,open-switch/infra_project-config,noorul/os-project-config,anbangr/osci-project-config,noorul/os-project-config,coolsvap/project-config,osrg/project-config,Tesora/tesora-project-config,openstack-infra/project-config,dongwenjuan/project-config,osrg/project-config,coolsvap/project-config,open-switch/infra_project-config,Tesora/tesora-project-config,citrix-openstack/project-config |
9ba68e2776c24c3bdc08b3515070dc525ed26fbd | data/transition-sites/dclg_planning.yml | data/transition-sites/dclg_planning.yml | ---
site: dclg_planning
whitehall_slug: department-for-communities-and-local-government
homepage: https://www.gov.uk/government/collections/planning-practice-guidance
tna_timestamp: 20140724121321
host: planningguidance.planningportal.gov.uk
homepage_furl: www.gov.uk/dclg
options: --query-string p
aliases:
- planningguidance.communities.gov.uk
| ---
site: dclg_planning
whitehall_slug: department-for-communities-and-local-government
homepage: https://www.gov.uk/government/collections/planning-practice-guidance
homepage_title: Planning guidance
tna_timestamp: 20140724121321
host: planningguidance.planningportal.gov.uk
options: --query-string p
aliases:
- planningguidance.communities.gov.uk
| Update configuration for DCL Planning | Update configuration for DCL Planning
This commit is a follow up on https://github.com/alphagov/transition-config/pull/1209
To address @jennyd comment https://github.com/alphagov/transition-config/pull/1209#issuecomment-270613121 | YAML | mit | alphagov/transition-config,alphagov/transition-config |
91b860fe5c878e63502a8ee7addaa7faf9ea0250 | db/seeds/prisons/NSI-north-sea-camp.yml | db/seeds/prisons/NSI-north-sea-camp.yml | ---
name: North Sea Camp
nomis_id: NSI
address: |-
Freiston
postcode: PE22 0QX
email_address: socialvisits.northseacamp@hmps.gsi.gov.uk
phone_no: 01205 769 368
enabled: true
private: false
closed: false
recurring:
sat:
- 0900-1130
- 1330-1545
sun:
- 0900-1130
- 1330-1545
wed:
- 1330-1545
unbookable:
- 2019-12-25
- 2020-01-01
anomalous:
2019-12-27:
- 1330-1530
2019-12-30:
- 1330-1530
| ---
name: North Sea Camp
nomis_id: NSI
address: |-
Freiston
postcode: PE22 0QX
email_address: socialvisits.northseacamp@hmps.gsi.gov.uk
phone_no: 01205 769 368
enabled: true
private: false
closed: false
recurring:
sat:
- 0900-1130
- 1330-1545
sun:
- 0900-1130
- 1330-1545
wed:
- 1330-1545
unbookable:
- 2019-12-25
- 2020-01-01
anomalous:
2019-12-27:
- 1330-1530
2019-12-30:
- 1330-1530
| Fix indentation in yaml file | Fix indentation in yaml file
| YAML | mit | ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2 |
52fac9389e7b7cc80571c200c461d6e924373386 | src/translations/es/sharp/repeat.yml | src/translations/es/sharp/repeat.yml | command: Comando a repetir (dejar en blanco para enviar el último comando en el historial):
description: Repite un comando x veces
empty_times: No se especificó el número de repeticiones.
invalid_times: El valor no es un número válido.
times: Número de veces que el comando se repetirá:
| command: "Comando a repetir (dejar en blanco para enviar el último comando en el historial):"
description: Repite un comando x veces
empty_times: No se especificó el número de repeticiones.
invalid_times: El valor no es un número válido.
times: "Número de veces que el comando se repetirá:" | Fix minor errors on the Spanish translation | Fix minor errors on the Spanish translation
| YAML | bsd-3-clause | vlegoff/cocomud |
de91e0de8a04b6cc7fe9ac03e3640f83560f7684 | azure-pipelines-job.yml | azure-pipelines-job.yml | parameters:
name: ''
formula: ''
head: false
jobs:
- job: ${{ parameters.name }}
pool:
vmImage: macOS-10.13
steps:
- script: sudo xcode-select --switch /Applications/Xcode_10.1.app/Contents/Developer
- ${{ if eq(parameters.head, true) }}:
- script: brew install --verbose --HEAD ./${{ parameters.formula }}.rb
- ${{ if eq(parameters.head, false) }}:
- script: brew install --verbose ./${{ parameters.formula }}.rb
| parameters:
name: ''
formula: ''
head: false
jobs:
- job: ${{ parameters.name }}
strategy:
matrix:
HighSierra:
VM_IMAGE: macOS-10.13
XCODE_VERSION: '10.1'
Mojave:
VM_IMAGE: macOS-10.14
XCODE_VERSION: '10.2'
pool:
vmImage: $(VM_IMAGE)
steps:
- script: sudo xcode-select --switch /Applications/Xcode_$(XCODE_VERSION).app/Contents/Developer
- ${{ if eq(parameters.head, true) }}:
- script: brew install --verbose --HEAD ./${{ parameters.formula }}.rb
- ${{ if eq(parameters.head, false) }}:
- script: brew install --verbose ./${{ parameters.formula }}.rb
| Set up Azure Pipelines to build on Mojave too | Set up Azure Pipelines to build on Mojave too
| YAML | bsd-2-clause | fernandotcl/homebrew-fernandotcl |
b86286f56b65c27de5261910b0611f23e67c8aba | .forestry/front_matter/templates/pages-coders-md.yml | .forestry/front_matter/templates/pages-coders-md.yml | ---
pages:
- coders.md
hide_body: false
is_partial: false
fields:
- name: title
label: Title
type: text
hidden: false
default: ''
- name: date
label: Date
type: datetime
hidden: false
default: ''
- name: display_title
label: Display title
type: text
hidden: false
default:
- name: subtitle
label: Subtitle
type: text
hidden: false
default:
- name: hero
label: Hero
type: field_group
fields:
- name: image
label: Image
type: file
hidden: false
default: ''
- name: color
label: Color
type: text
hidden: false
default: ''
hidden: false
default:
- name: call_to_action
label: Call to action
type: field_group
fields:
- name: title
label: Title
type: text
hidden: false
default: ''
- name: url
label: Url
type: text
hidden: false
default: ''
- name: body
label: Body
type: text
hidden: false
default: ''
hidden: false
default:
- name: sections
label: Sections
type: list
hidden: false
default:
-
- name: collection
label: Collection
type: text
hidden: false
default: coders
| ---
pages:
- coders.md
hide_body: false
is_partial: false
fields:
- name: title
label: Title
type: text
hidden: false
default: ''
- name: date
label: Date
type: datetime
hidden: true
default: ''
- name: display_title
label: Display title
type: text
hidden: false
default:
- name: subtitle
label: Subtitle
type: text
hidden: false
default:
- name: hero
label: Hero
type: field_group
fields:
- name: image
label: Image
type: file
hidden: false
default: ''
- name: color
label: Color
type: text
hidden: false
default: ''
hidden: false
default:
- name: call_to_action
label: Call to action
type: field_group
fields:
- name: title
label: Title
type: text
hidden: false
default: ''
- name: url
label: Url
type: text
hidden: false
default: ''
- name: body
label: Body
type: text
hidden: false
default: ''
hidden: false
default:
- name: sections
label: Sections
type: list
hidden: false
default:
-
- name: collection
label: Collection
type: text
hidden: false
default: coders
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | truecodersio/truecoders.io,truecodersio/truecoders.io,truecodersio/truecoders.io |
963189ee4b24543e2eb32a72b994a67d319ad7f7 | ansible/roles/java/tasks/main.yml | ansible/roles/java/tasks/main.yml | ---
- name: Install java
become: yes
apt: name=default-jdk
- name: Install IntelliJ IDEA
unarchive:
src: https://download-cf.jetbrains.com/idea/ideaIU-2017.2.4-no-jdk.tar.gz
dest: "{{ home_dir }}/opt/"
remote_src: yes
creates: "{{ home_dir }}/opt/idea-IU-172.4155.36/bin/idea.sh"
| ---
- name: Install java
become: yes
apt: name=default-jdk
- stat: path="{{ home_dir }}/opt/idea-IU-172.4155.36/bin/idea.sh"
register: idea_sh_file
# Work around https://github.com/ansible/ansible/issues/23864
- name: Download IntelliJ IDEA
get_url:
url: https://download-cf.jetbrains.com/idea/ideaIU-2017.2.4-no-jdk.tar.gz
dest: /tmp/ideaIU-2017.2.4-no-jdk.tar.gz
checksum: sha1:3a4159c9074d740371da602c08500a173be982f7
timeout: 300
when: idea_sh_file.stat.exists == False
- name: Install IntelliJ IDEA
unarchive:
src: /tmp/ideaIU-2017.2.4-no-jdk.tar.gz
dest: "{{ home_dir }}/opt/"
creates: "{{ home_dir }}/opt/idea-IU-172.4155.36/bin/idea.sh"
| Work around timeout downloading IDEA | Work around timeout downloading IDEA
| YAML | mit | fernandoacorreia/homefiles,fernandoacorreia/homefiles |
91032efcf1f891ec774a7de67e9704824e6f0954 | playbooks/inventory/group_vars/ceilometer_all.yml | playbooks/inventory/group_vars/ceilometer_all.yml | ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
ceilometer_service_publicuri: "{{ openstack_service_publicuri_proto|default(ceilometer_service_proto) }}://{{ external_lb_vip_address }}:{{ ceilometer_service_port }}"
ceilometer_service_adminurl: "{{ ceilometer_service_adminuri }}/"
ceilometer_service_region: "{{ service_region }}"
ceilometer_service_in_ldap: "{{ service_ldap_backend_enabled }}"
ceilometer_aodh_enabled: groups['aodh_all'] is defined and groups['aodh_all'] | length > 0
ceilometer_gnocchi_enabled: groups['gnocchi_all'] is defined and groups['gnocchi_all'] | length > 0
# Ensure that the package state matches the global setting
ceilometer_package_state: "{{ package_state }}"
| ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
ceilometer_service_publicuri: "{{ openstack_service_publicuri_proto|default(ceilometer_service_proto) }}://{{ external_lb_vip_address }}:{{ ceilometer_service_port }}"
ceilometer_service_adminurl: "{{ ceilometer_service_adminuri }}/"
ceilometer_service_region: "{{ service_region }}"
ceilometer_service_in_ldap: "{{ service_ldap_backend_enabled }}"
ceilometer_aodh_enabled: "{{ groups['aodh_all'] is defined and groups['aodh_all'] | length > 0 }}"
ceilometer_gnocchi_enabled: "{{ groups['gnocchi_all'] is defined and groups['gnocchi_all'] | length > 0 }}"
# Ensure that the package state matches the global setting
ceilometer_package_state: "{{ package_state }}"
| Enable Gnocchi and Aodh when inv groups non-empty | Enable Gnocchi and Aodh when inv groups non-empty
This variable was not evaluating to True in any case because it was
set to the value of a complex expression as a string without
evaluation, causing Ceilometer to behave as if these services were
never available.
Change-Id: I273e3007b1f8f8a6f5c8518318fbec9aca088621
| YAML | apache-2.0 | cloudnull/os-ansible-deployment,BjoernT/os-ansible-deployment,BjoernT/os-ansible-deployment,weezer/openstack-ansible,Logan2211/openstack-ansible,yanyao/openstack-ansible,stackforge/os-ansible-deployment,bunchc/openstack-ansible,BjoernT/openstack-ansible,BjoernT/openstack-ansible,os-cloud/os-ansible-deployment,robb-romans/openstack-ansible,yanyao/newton,os-cloud/os-ansible-deployment,yanyao/openstack-ansible,stackforge/os-ansible-deployment,openstack/openstack-ansible,BjoernT/os-ansible-deployment,openstack/openstack-ansible,bunchc/openstack-ansible,Logan2211/openstack-ansible,cfarquhar/openstack-ansible,robb-romans/openstack-ansible,weezer/openstack-ansible,yanyao/newton,cfarquhar/openstack-ansible,cloudnull/os-ansible-deployment |
49a8371ae77f7d993142c813f384c694cef52829 | api/Resources/config/config.yml | api/Resources/config/config.yml | imports:
- { resource: services.yml }
# The secret is only required to sign fragment URLs which is not used
framework:
secret: ''
default_locale: en
security:
providers:
contao_manager_user_provider:
id: contao_manager.security.user_provider
encoders:
Symfony\Component\Security\Core\User\UserInterface: bcrypt
firewalls:
api:
stateless: true
guard:
authenticators:
- Contao\ManagerApi\Security\JwtAuthenticator
- Contao\ManagerApi\Security\TokenAuthenticator
entry_point: Contao\ManagerApi\Security\JwtAuthenticator
anonymous: ~
access_control:
- { path: ^/api/session$, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/api, roles: IS_AUTHENTICATED_FULLY }
| imports:
- { resource: services.yml }
# The secret is only required to sign fragment URLs which is not used
framework:
secret: ''
default_locale: en
security:
providers:
contao_manager_user_provider:
id: contao_manager.security.user_provider
encoders:
Symfony\Component\Security\Core\User\UserInterface: auto
firewalls:
api:
stateless: true
guard:
authenticators:
- Contao\ManagerApi\Security\JwtAuthenticator
- Contao\ManagerApi\Security\TokenAuthenticator
entry_point: Contao\ManagerApi\Security\JwtAuthenticator
anonymous: ~
access_control:
- { path: ^/api/session$, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/api, roles: IS_AUTHENTICATED_FULLY }
| Use the *auto* password encoder in Symfony | Use the *auto* password encoder in Symfony
fixes #512
| YAML | mit | contao/package-manager |
86095735434fd8cec38c94cd3f4146a2258e85c6 | test/fixtures/goldberg_system_settings.yml | test/fixtures/goldberg_system_settings.yml | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
first:
site_name: "Goldberg"
site_subtitle: "A website development tool for Ruby on Rails"
public_role_id: <%= Fixtures.identify(:Student_role) %>
session_timeout: 7200
default_markup_style_id: <%= Fixtures.identify(:markup_style1) %>
site_default_page_id: <%= Fixtures.identify(:content_home) %>
not_found_page_id: <%= Fixtures.identify(:content_notfound) %>
permission_denied_page_id: <%= Fixtures.identify(:content_denied) %>
session_expired_page_id: <%= Fixtures.identify(:content_expired) %>
menu_depth: 3
start_path: "http://localhost:3000/"
site_url_prefix: 0
self_reg_enabled: "null"
self_reg_role_id: 0
self_reg_confirmation_required: 11
self_reg_confirmation_error_page_id: 0
| # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
first:
site_name: "Goldberg"
site_subtitle: "A website development tool for Ruby on Rails"
public_role_id: <%= Fixtures.identify(:Student_role) %>
session_timeout: 7200
default_markup_style_id: <%= Fixtures.identify(:markup_style1) %>
site_default_page_id: <%= Fixtures.identify(:content_home) %>
not_found_page_id: <%= Fixtures.identify(:content_notfound) %>
permission_denied_page_id: <%= Fixtures.identify(:content_denied) %>
session_expired_page_id: <%= Fixtures.identify(:content_expired) %>
menu_depth: 3
start_path: "http://localhost:3000/"
site_url_prefix: 0
self_reg_enabled: null
self_reg_role_id: 0
self_reg_confirmation_required: 11
self_reg_confirmation_error_page_id: 0
| Change to fixture file for tests. | E09: Change to fixture file for tests.
git-svn-id: ec6d1a7668f11232d01c7bd193c3f208c491d15b@1236 392d7b7b-3f31-0410-9dc3-c95a9635ea79
| YAML | mit | rmmaily/expertiza,expertiza/expertiza,sid5788/expertiza,akshayjain114/expertiza,joshio1/expertiza,akshayjain114/expertiza,ApertureScienceInnovators/expertiza,expertiza/expertiza,michaelamoran/expertiza,ApertureScienceInnovators/expertiza,KunmiaoYang/expertiza,urmilparikh95/expertiza,rmmaily/expertiza,KunmiaoYang/expertiza,rmmaily/expertiza,expertiza/expertiza,redsock88/expertiza,ApertureScienceInnovators/expertiza,KunmiaoYang/expertiza,michaelamoran/expertiza,kira0992/expertiza,akshayjain114/expertiza,mhhassan/expertiza,michaelamoran/expertiza,mhhassan/expertiza,arpitashekhar/expertiza,kira0992/expertiza,sid5788/expertiza,kira0992/expertiza,arpitashekhar/expertiza,kira0992/expertiza,mhhassan/expertiza,rmmaily/expertiza,michaelamoran/expertiza,urmilparikh95/expertiza,joshio1/expertiza,redsock88/expertiza,redsock88/expertiza,urmilparikh95/expertiza,sid5788/expertiza,KunmiaoYang/expertiza,ApertureScienceInnovators/expertiza,redsock88/expertiza,arpitashekhar/expertiza,joshio1/expertiza,expertiza/expertiza,sid5788/expertiza,akshayjain114/expertiza,mhhassan/expertiza,urmilparikh95/expertiza,arpitashekhar/expertiza,joshio1/expertiza |
6fa111f9ef88b42a9a7ea502742499814eac8795 | .github/workflows/checkForNextStable.yaml | .github/workflows/checkForNextStable.yaml | name: Check for NVDA-2020.4
on:
push:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 * * * *'
jobs:
update-release-link:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Update release
run: |
import re
import urllib
url = "https://github.com/nvaccess/nvda/releases/latest"
response = urllib.urlopen(url)
text = response.read()
def hasReleaseUpdate():
if "2020.4" in text:
return True
return False
if hasReleaseUpdate():
with open("_layouts/default.html", 'r+') as f:
text = f.read()
text = re.sub(".3", ".4", text)
f.seek(0)
f.write(text)
f.truncate()
else:
print("Release not updated yet")
shell: python
- name: Push changes
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Update release link"
git push
| name: Check for NVDA-2020.4
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 * * * *'
jobs:
update-release-link:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Update release
run: |
import re
import urllib
url = "https://github.com/nvaccess/nvda/releases/latest"
response = urllib.urlopen(url)
text = response.read()
def hasReleaseUpdate():
if "2020.4" in text:
return True
return False
if hasReleaseUpdate():
with open("_layouts/default.html", 'r+') as f:
text = f.read()
text = re.sub(".3", ".4", text)
f.seek(0)
f.write(text)
f.truncate()
else:
print("Release not updated yet")
shell: python
- name: Push changes
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Update release link"
git push
| Remove push event after debugging | Remove push event after debugging
| YAML | mit | nvdaes/nvdaes.github.io,nvdaes/nvdaes.github.io |
1d946d90f26ff50b65a6726832112db4b277cafa | tests/data/automated/run_info-scrnaseq.yaml | tests/data/automated/run_info-scrnaseq.yaml | upload:
dir: upload
details:
- analysis: scRNA-seq
algorithm:
umi_type: harvard-indrop
singlecell_quantifier: kallisto
minimum_barcode_depth: 500
description: Test1
files:
- ../data/Harvard-inDrop/r1.fq.gz
- ../data/Harvard-inDrop/r2.fq.gz
genome_build: mm9
| upload:
dir: upload
details:
- analysis: scRNA-seq
algorithm:
umi_type: harvard-indrop
singlecell_quantifier: rapmap
minimum_barcode_depth: 500
description: Test1
files:
- ../data/Harvard-inDrop/r1.fq.gz
- ../data/Harvard-inDrop/r2.fq.gz
genome_build: mm9
| Switch single-cell test to use Rapmap. | Switch single-cell test to use Rapmap.
kallisto support works but requires a manual intervention to get
going.
Addresses an issue in #1524.
| YAML | mit | a113n/bcbio-nextgen,brainstorm/bcbio-nextgen,vladsaveliev/bcbio-nextgen,chapmanb/bcbio-nextgen,brainstorm/bcbio-nextgen,biocyberman/bcbio-nextgen,biocyberman/bcbio-nextgen,biocyberman/bcbio-nextgen,vladsaveliev/bcbio-nextgen,lbeltrame/bcbio-nextgen,vladsaveliev/bcbio-nextgen,chapmanb/bcbio-nextgen,chapmanb/bcbio-nextgen,lbeltrame/bcbio-nextgen,a113n/bcbio-nextgen,brainstorm/bcbio-nextgen,a113n/bcbio-nextgen,lbeltrame/bcbio-nextgen |
e110f9e7806bf1287cbcd31e2efe1d188622ad79 | local-services/docker/docker-compose.yml | local-services/docker/docker-compose.yml | version: "3"
services:
majavashakki-mongo:
image: mongo
restart: always
volumes:
- majavashakki-data:/data/db
ports:
- 27017:27017
majavashakki-mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
volumes:
majavashakki-data: | version: "3"
services:
majavashakki-mongo:
image: mongo
restart: always
volumes:
- majavashakki-data:/data/db
ports:
- 27017:27017
majavashakki-mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_SERVER: majavashakki-mongo
volumes:
majavashakki-data: | Fix mongo-express not finding mongo running on docker | Fix mongo-express not finding mongo running on docker
The mongo-express image defaults to looking for hostname mongo but our
mongo container is configured to have hostname majavashakki-mongo.
| YAML | mit | Majavapaja/Mursushakki,Majavapaja/Mursushakki,Majavapaja/Mursushakki,Majavapaja/Mursushakki,Majavapaja/Mursushakki,Majavapaja/Mursushakki |
36818a8959f1bbf574252e78a1d4778e65997834 | .rubocop.yml | .rubocop.yml | AllCops:
Exclude:
- db/schema.rb
LineLength:
Max: 130
MethodLength:
Max: 20
AsciiComments:
Enabled: false
Documentation:
Enabled: false
| AllCops:
Exclude:
- db/schema.rb
- node_modules/**/*
- public/js/ext/**/*
LineLength:
Max: 130
MethodLength:
Max: 20
AsciiComments:
Enabled: false
Documentation:
Enabled: false
| Fix format of exclude directories to newer format | Fix format of exclude directories to newer format
| YAML | apache-2.0 | cloudconductor/cloud_conductor,cloudconductor/cloud_conductor,cloudconductor/cloud_conductor |
abecc4e0fd79b8e8da776754fe4f9018bedebfe8 | metadata/com.donnnno.arcticons.light.yml | metadata/com.donnnno.arcticons.light.yml | Categories:
- Theming
License: GPL-3.0-only
AuthorName: Donno
AuthorEmail: info@onnno.nl
SourceCode: https://github.com/Donnnno/Arcticons
IssueTracker: https://github.com/Donnnno/Arcticons/issues
Changelog: https://github.com/Donnnno/Arcticons/blob/main/CHANGELOG.md
Donate: https://paypal.me/onnovdd
Liberapay: Donno
AutoName: Arcticons Light
RepoType: git
Repo: https://github.com/Donnnno/Arcticons
Builds:
- versionName: 2.0.0
versionCode: 64
commit: 2.0.0
subdir: app
gradle:
- light
- versionName: 2.0.5
versionCode: 65
commit: 5d0410f91e6f095ab9b42afc152315ebc16d51c3
subdir: app
gradle:
- light
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
UpdateCheckName: com.donnnno.arcticons
CurrentVersion: 2.0.5
CurrentVersionCode: 65
| Categories:
- Theming
License: GPL-3.0-only
AuthorName: Donno
AuthorEmail: info@onnno.nl
SourceCode: https://github.com/Donnnno/Arcticons
IssueTracker: https://github.com/Donnnno/Arcticons/issues
Changelog: https://github.com/Donnnno/Arcticons/blob/main/CHANGELOG.md
Donate: https://paypal.me/onnovdd
Liberapay: Donno
AutoName: Arcticons Light
RepoType: git
Repo: https://github.com/Donnnno/Arcticons
Builds:
- versionName: 2.0.0
versionCode: 64
commit: 2.0.0
subdir: app
gradle:
- light
- versionName: 2.0.5
versionCode: 65
commit: 5d0410f91e6f095ab9b42afc152315ebc16d51c3
subdir: app
gradle:
- light
- versionName: 2.1.0
versionCode: 66
commit: 4612c60580e0f0df78187016090b8a2de4dab2a3
subdir: app
gradle:
- light
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
UpdateCheckName: com.donnnno.arcticons
CurrentVersion: 2.1.0
CurrentVersionCode: 66
| Update Arcticons Light to 2.1.0 (66) | Update Arcticons Light to 2.1.0 (66)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
dfdf647815c08130248a43a29e4d944b6998fc19 | metadata/io.kuenzler.whatsappwebtogo.yml | metadata/io.kuenzler.whatsappwebtogo.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: MIT
SourceCode: https://github.com/92lleo/WhatsappWebToGo
IssueTracker: https://github.com/92lleo/WhatsappWebToGo/issues
Changelog: https://github.com/92lleo/WhatsappWebToGo/releases
AutoName: WhatsApp Web To Go
Description: |-
''WhatsappWeb'' lets you access WhatsApp Web on your mobile phone or
tablet. It has full support for sending audio and pictures / video. With a
clean and easy interface it's fun to use - it even shows up as running on
an Android phone on the phone where WhatsApp is installed!
This app is in no way affiliated with WhatsApp Inc. The rights for WhatsApp
and WhatsApp Web belong to WhatsApp Inc. This app is a private project to
enable the use of WhatsApp Web on Android Devices.
RepoType: git
Repo: https://github.com/92lleo/WhatsappWebToGo
Builds:
- versionName: 1.5.3
versionCode: 28
commit: v1.5.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.5.3
CurrentVersionCode: 28
| AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: MIT
SourceCode: https://github.com/92lleo/WhatsappWebToGo
IssueTracker: https://github.com/92lleo/WhatsappWebToGo/issues
Changelog: https://github.com/92lleo/WhatsappWebToGo/releases
AutoName: WhatsApp Web To Go
Description: |-
''WhatsappWeb'' lets you access WhatsApp Web on your mobile phone or
tablet. It has full support for sending audio and pictures / video. With a
clean and easy interface it's fun to use - it even shows up as running on
an Android phone on the phone where WhatsApp is installed!
This app is in no way affiliated with WhatsApp Inc. The rights for WhatsApp
and WhatsApp Web belong to WhatsApp Inc. This app is a private project to
enable the use of WhatsApp Web on Android Devices.
RepoType: git
Repo: https://github.com/92lleo/WhatsappWebToGo
Builds:
- versionName: 1.5.3
versionCode: 28
commit: v1.5.3
subdir: app
gradle:
- yes
- versionName: 1.6.0
versionCode: 29
commit: v1.6.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.6.0
CurrentVersionCode: 29
| Update WhatsApp Web To Go to 1.6.0 (29) | Update WhatsApp Web To Go to 1.6.0 (29)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
3d33b4e1f396120f5c719e3a2e02da305fc9c075 | metadata/de.k3b.android.calef.yml | metadata/de.k3b.android.calef.yml | Categories:
- Time
- System
License: GPL-3.0-or-later
AuthorName: k3b
SourceCode: https://github.com/k3b/CalEF
IssueTracker: https://github.com/k3b/CalEF/issues
Changelog: https://github.com/k3b/CalEF/releases
Donate: https://f-droid.org/donate
AutoName: 'CalEF: Calendar Entry Formatter'
RepoType: git
Repo: https://github.com/k3b/CalEF
Builds:
- versionName: 1.0.1
versionCode: 2
commit: b0d5b59fb20d13b42d27c55e7d3bf09578ed8fa9
subdir: app
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 1.0.1
CurrentVersionCode: 2
| Categories:
- Time
- System
License: GPL-3.0-or-later
AuthorName: k3b
SourceCode: https://github.com/k3b/CalEF
IssueTracker: https://github.com/k3b/CalEF/issues
Changelog: https://github.com/k3b/CalEF/releases
Donate: https://f-droid.org/donate
AutoName: 'CalEF: Calendar Entry Formatter'
RepoType: git
Repo: https://github.com/k3b/CalEF
Builds:
- versionName: 1.0.1
versionCode: 2
commit: b0d5b59fb20d13b42d27c55e7d3bf09578ed8fa9
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 3
commit: cc34092e41bf6ee15f985c61ff3641eb0e00ee3f
subdir: app
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 1.1.0
CurrentVersionCode: 3
| Update CalEF: Calendar Entry Formatter to 1.1.0 (3) | Update CalEF: Calendar Entry Formatter to 1.1.0 (3)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
30ec9c7c58b5829a28a8b6a5cda4743bf19653c2 | metadata/de.markusfisch.android.libra.yml | metadata/de.markusfisch.android.libra.yml | Categories:
- Sports & Health
License: MIT
AuthorName: Markus Fisch
AuthorEmail: mf@markusfisch.de
AuthorWebSite: https://www.markusfisch.de
SourceCode: https://github.com/markusfisch/Libra
IssueTracker: https://github.com/markusfisch/Libra/issues
Changelog: https://github.com/markusfisch/Libra/releases
AutoName: Decisions
RepoType: git
Repo: https://github.com/markusfisch/Libra
Builds:
- versionName: 1.10.0
versionCode: 14
commit: 1.10.0
subdir: app
gradle:
- yes
- versionName: 1.12.0
versionCode: 16
commit: 1.12.0
subdir: app
gradle:
- yes
- versionName: 1.12.1
versionCode: 17
commit: 1.12.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.12.1
CurrentVersionCode: 17
| Categories:
- Sports & Health
License: MIT
AuthorName: Markus Fisch
AuthorEmail: mf@markusfisch.de
AuthorWebSite: https://www.markusfisch.de
SourceCode: https://github.com/markusfisch/Libra
IssueTracker: https://github.com/markusfisch/Libra/issues
Changelog: https://github.com/markusfisch/Libra/releases
AutoName: Decisions
RepoType: git
Repo: https://github.com/markusfisch/Libra
Builds:
- versionName: 1.10.0
versionCode: 14
commit: 1.10.0
subdir: app
gradle:
- yes
- versionName: 1.12.0
versionCode: 16
commit: 1.12.0
subdir: app
gradle:
- yes
- versionName: 1.12.1
versionCode: 17
commit: 1.12.1
subdir: app
gradle:
- yes
- versionName: 1.12.2
versionCode: 18
commit: e2fcee03b8ead10b592280d4f5ccffedcb4c49b7
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.12.2
CurrentVersionCode: 18
| Update Decisions to 1.12.2 (18) | Update Decisions to 1.12.2 (18)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
87022a28f5c859e0a992267e781ff351a2a37b3c | server/src/main/resources/config/application.yml | server/src/main/resources/config/application.yml | rfs:
version:
id: '@project.groupId@'
short: '@project.version@'
full: '@project.version@ (@git.commit.id.describe@)'
| rfs:
version:
id: '@project.groupId@'
short: '@project.version@'
full: '@project.version@ (@git.commit.id.describe@, built on @git.build.time@)'
| Include build time in full version | Include build time in full version
| YAML | mit | izstas/RFS |
b4304d4606fae01287b255f24dbdcc5402c35ea4 | metadata/de.kaffeemitkoffein.tinyweatherforecastgermany.yml | metadata/de.kaffeemitkoffein.tinyweatherforecastgermany.yml | Categories:
- Internet
License: GPL-3.0-or-later
AuthorName: Pawel Dube
SourceCode: https://codeberg.org/Starfish/TinyWeatherForecastGermany
IssueTracker: https://codeberg.org/Starfish/TinyWeatherForecastGermany/issues
AutoName: Tiny Weather Forecast Germany
RepoType: git
Repo: https://codeberg.org/Starfish/TinyWeatherForecastGermany
Builds:
- versionName: '0.51'
versionCode: 12
commit: '0.51'
subdir: app
gradle:
- yes
- versionName: '0.52'
versionCode: 13
commit: '0.52'
subdir: app
gradle:
- yes
- versionName: 0.52.1
versionCode: 14
commit: 0.52.1
subdir: app
gradle:
- yes
- versionName: 0.52.2
versionCode: 15
commit: 0.52.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.52.2
CurrentVersionCode: 15
| Categories:
- Internet
License: GPL-3.0-or-later
AuthorName: Pawel Dube
SourceCode: https://codeberg.org/Starfish/TinyWeatherForecastGermany
IssueTracker: https://codeberg.org/Starfish/TinyWeatherForecastGermany/issues
AutoName: Tiny Weather Forecast Germany
RepoType: git
Repo: https://codeberg.org/Starfish/TinyWeatherForecastGermany
Builds:
- versionName: '0.51'
versionCode: 12
commit: '0.51'
subdir: app
gradle:
- yes
- versionName: '0.52'
versionCode: 13
commit: '0.52'
subdir: app
gradle:
- yes
- versionName: 0.52.1
versionCode: 14
commit: 0.52.1
subdir: app
gradle:
- yes
- versionName: 0.52.2
versionCode: 15
commit: 0.52.2
subdir: app
gradle:
- yes
- versionName: 0.52.3
versionCode: 16
commit: 0.52.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.52.3
CurrentVersionCode: 16
| Update Tiny Weather Forecast Germany to 0.52.3 (16) | Update Tiny Weather Forecast Germany to 0.52.3 (16)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
cea4fe6d50b509303b37156c74f2c6e19a1258f7 | packages/hu/human-readable-duration.yaml | packages/hu/human-readable-duration.yaml | homepage: http://github.com/yogsototh/human-readable-duration#readme
changelog-type: ''
hash: df9d93b9f2abffbd257677f0b7fc6069bc22cba800c4be0375cd41ea518aa4ed
test-bench-deps: {}
maintainer: yann.esposito@gmail.com
synopsis: Provide duration helper
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
- '0.1.0.0'
author: Yann Esposito
latest: '0.1.0.0'
description-type: haddock
description: ! 'This is a minimal Haskell library to display duration.
> let duration = 2 * ms + 3 * oneSecond + 2 * minute + 33*day + 2*year
> humanReadableDuration duration
> -- will return: "2 years 33 days 2 min 3s 32ms"
> getYears duration
> -- will return 2
> getDays duration
> -- will return 730
> getMs duration
> -- will return 730'
license-name: BSD3
| homepage: http://github.com/yogsototh/human-readable-duration#readme
changelog-type: ''
hash: 2e9b71270fa2d9665ffab64e284248eb8f62899b672b7a41713923aeefd1a45f
test-bench-deps: {}
maintainer: yann.esposito@gmail.com
synopsis: Provide duration helper
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: ! '>=1.0'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
author: Yann Esposito
latest: '0.1.1.0'
description-type: haddock
description: ! 'This is a minimal Haskell library to display duration.
> let duration = 2 * ms + 3 * oneSecond + 2 * minute + 33*day + 2*year
> humanReadableDuration duration
> -- will return: "2 years 33 days 2 min 3s 2ms"
> getYears duration
> -- will return 2
> getDays duration
> -- will return 763
> getMs duration
> -- will return 65923323002'
license-name: BSD3
| Update from Hackage at 2016-01-12T09:16:00+0000 | Update from Hackage at 2016-01-12T09:16:00+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
d9b828a8214ed06d2a505b96418fdb28e81d92c0 | util/ansible/roles/composer/tasks/main.yml | util/ansible/roles/composer/tasks/main.yml | ---
- name: Install Composer
shell: curl -fsSL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer
args:
warn: no
- name: Ensure vendor folder exists
file: path="{{ item }}" state=directory owner=azuracast group=www-data mode=0744
with_items:
- "{{ www_base }}/vendor"
- name: Install Composer Dependencies (Development)
become: true
become_user: azuracast
shell: composer install
args:
chdir: "{{ www_base }}"
when: app_env == "development"
- name: Install Composer Dependencies (Production)
become: true
become_user: azuracast
shell: composer install --no-dev --optimize-autoloader
args:
chdir: "{{ www_base }}"
when: app_env == "production"
| ---
- name: Install Composer
shell: curl -fsSL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer
args:
warn: no
- name: Ensure vendor folder exists
file: path="{{ item }}" state=directory owner=azuracast group=www-data mode=0744
with_items:
- "{{ www_base }}/vendor"
- "{{ www_base }}/composer.lock"
- name: Install Composer Dependencies (Development)
become: true
become_user: azuracast
shell: composer install
args:
chdir: "{{ www_base }}"
when: app_env == "development"
- name: Install Composer Dependencies (Production)
become: true
become_user: azuracast
shell: composer install --no-dev --optimize-autoloader
args:
chdir: "{{ www_base }}"
when: app_env == "production"
| Allow Ansible to override composer.lock from composer merge plugin. | Allow Ansible to override composer.lock from composer merge plugin.
| YAML | agpl-3.0 | AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast |
9e1e6a7c5c24fe4e70e97efa8627b8e002d84b4b | metadata/ml.docilealligator.infinityforreddit.yml | metadata/ml.docilealligator.infinityforreddit.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Reading
- Multimedia
License: AGPL-3.0-only
WebSite: https://www.reddit.com/r/Infinity_For_Reddit/
SourceCode: https://github.com/Docile-Alligator/Infinity-For-Reddit
IssueTracker: https://github.com/Docile-Alligator/Infinity-For-Reddit/issues/
Translation: https://poeditor.com/join/project?hash=b2IRyfaJv6
Changelog: https://github.com/Docile-Alligator/Infinity-For-Reddit/releases
AutoName: Infinity
RepoType: git
Repo: https://github.com/Docile-Alligator/Infinity-For-Reddit.git
Builds:
- versionName: 4.0.7
versionCode: 43
commit: v4.0.7
subdir: app
gradle:
- yes
- versionName: 4.1.0
versionCode: 50
commit: v4.1.0
subdir: app
gradle:
- yes
- versionName: 4.1.1
versionCode: 52
commit: v4.1.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags ^v[0-9.]+$
CurrentVersion: 4.1.1
CurrentVersionCode: 52
| AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Reading
- Multimedia
License: AGPL-3.0-only
WebSite: https://www.reddit.com/r/Infinity_For_Reddit/
SourceCode: https://github.com/Docile-Alligator/Infinity-For-Reddit
IssueTracker: https://github.com/Docile-Alligator/Infinity-For-Reddit/issues/
Translation: https://poeditor.com/join/project?hash=b2IRyfaJv6
Changelog: https://github.com/Docile-Alligator/Infinity-For-Reddit/releases
AutoName: Infinity
RepoType: git
Repo: https://github.com/Docile-Alligator/Infinity-For-Reddit.git
Builds:
- versionName: 4.0.7
versionCode: 43
commit: v4.0.7
subdir: app
gradle:
- yes
- versionName: 4.1.0
versionCode: 50
commit: v4.1.0
subdir: app
gradle:
- yes
- versionName: 4.1.1
versionCode: 52
commit: v4.1.1
subdir: app
gradle:
- yes
- versionName: 4.2.0
versionCode: 55
commit: v4.2.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags ^v[0-9.]+$
CurrentVersion: 4.2.0
CurrentVersionCode: 55
| Update Infinity to 4.2.0 (55) | Update Infinity to 4.2.0 (55)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
eda0038770be9fe5b30edd99f3dfafe9459bf004 | .github/workflows/pr-build-scan-comment.yml | .github/workflows/pr-build-scan-comment.yml | name: Add a build scan comment to PR
on: pull_request
jobs:
gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: ./
- id: gradle
working-directory: __tests__/samples/kotlin-dsl
run: ./gradlew help
- name: "Comment build scan url"
uses: actions/github-script@v3
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Dummy comment for PR: ${{ steps.gradle.outputs.build-scan-url }}'
})
| name: Add a build scan comment to PR
on:
pull_request:
types: [assigned, review_requested]
jobs:
gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: ./
- id: gradle
working-directory: __tests__/samples/kotlin-dsl
run: ./gradlew help
- name: "Comment build scan url"
uses: actions/github-script@v3
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'PR ready for review: ${{ steps.gradle.outputs.build-scan-url }}'
})
| Reduce the number of automated comments left on PR | Reduce the number of automated comments left on PR
| YAML | mit | eskatos/gradle-command-action,eskatos/gradle-command-action,eskatos/gradle-command-action |
b6a43f0a1269fa4c48769cb63cb52d9bb8577435 | osa/dbaas/dbimage-builder/playbooks/tasks/init-deployer.yml | osa/dbaas/dbimage-builder/playbooks/tasks/init-deployer.yml | ---
# This task is invoked during the invocation of the playbook below:
#
# ansible-playbook -i host_file dbimage-make.yml -u ubuntu -c ssh
#
# This is invoked on the deployer node AKA localhost as root
- debug: var=deployment_environment
- name: Create directories
file:
path: "{{ item }}"
state: directory
mode: 0755
with_items:
- "{{ baseDir }}/etc/ssh"
- "{{ baseDir }}/etc/trove"
- name: Clean environment
file:
path: "{{ item }}"
state: absent
with_items:
- "{{ baseDir }}/etc/ssh/"
- "{{ baseDir }}/etc/trove/trove-guestagent.conf"
- name: Update apt cache
apt:
update_cache: yes
cache_valid_time: 600
register: apt_update
until: apt_update|success
retries: 5
delay: 60
- name: Install apt packages
apt:
pkg: "{{ item }}"
state: present
register: install_packages
until: install_packages|success
with_items: "{{ dbimage_apt_packages }}"
retries: 5
delay: 20
when: "{{ dbimage_apt_packages }}"
- name: Install pip packages
pip:
name: "{{ dbimage_pip_packages | join(' ') }}"
state: present
register: install_packages
until: install_packages|success
retries: 5
delay: 20
when: "{{ dbimage_pip_packages }}"
| ---
# This task is invoked during the invocation of the playbook below:
#
# ansible-playbook -i host_file dbimage-make.yml -u ubuntu -c ssh
#
# This is invoked on the deployer node AKA localhost as root
- debug: var=deployment_environment
- name: Create directories
file:
path: "{{ item }}"
state: directory
mode: 0755
with_items:
- "{{ baseDir }}/etc/ssh"
- "{{ baseDir }}/etc/trove"
- name: Clean environment
file:
path: "{{ item }}"
state: absent
with_items:
- "{{ baseDir }}/etc/ssh/"
- "{{ baseDir }}/etc/trove/trove-guestagent.conf"
- "{{ baseDir }}/etc/inventory.yml"
- "{{ baseDir }}/etc/inventory-simulated"
- name: Update apt cache
apt:
update_cache: yes
cache_valid_time: 600
register: apt_update
until: apt_update|success
retries: 5
delay: 60
- name: Install apt packages
apt:
pkg: "{{ item }}"
state: present
register: install_packages
until: install_packages|success
with_items: "{{ dbimage_apt_packages }}"
retries: 5
delay: 20
when: "{{ dbimage_apt_packages }}"
- name: Install pip packages
pip:
name: "{{ dbimage_pip_packages | join(' ') }}"
state: present
register: install_packages
until: install_packages|success
retries: 5
delay: 20
when: "{{ dbimage_pip_packages }}"
| Clean inventory files that were added for proxy support | Clean inventory files that were added for proxy support
This guards against the simulated inventory file from carrying
over from one installation to the next
Change-Id: Ic8b3e2e00e2cf7bc5d574f60e04a48cc4ebee4d3
| YAML | apache-2.0 | open-power-ref-design/os-services,open-power-ref-design/os-services,open-power-ref-design-toolkit/os-services,open-power-ref-design-toolkit/os-services,open-power-ref-design-toolkit/os-services |
16ea86942ea2ce0abfc8e443334b598b3fe741e6 | .github/workflows/linux_mkspecs.yml | .github/workflows/linux_mkspecs.yml | name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/action.yml@4.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
| name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/action.yml@5.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
| Update Linux C++ make-specs to new version 5.0.0 | Update Linux C++ make-specs to new version 5.0.0 | YAML | bsd-3-clause | steinwurf/endian,steinwurf/endian |
2874f08f81db1cabacfd73ff57298621dbd29d58 | .github/workflows/slack-message.yml | .github/workflows/slack-message.yml | name: slack-notification
on:
pull_request:
types: [opened]
pull_request_review:
types: [submitted]
pull_request_review_comment:
types: [created]
issues:
types: [opened]
issue_comment:
types: [created]
jobs:
slack-notification:
runs-on: ubuntu-latest
name: Sends a message to Slack when a pull request or an issue is made
steps:
- name: Send message to Slack API
uses: archive/github-actions-slack@master
with:
slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }}
slack-channel: ${{ secrets.SLACK_BOT_CHANNEL }}
slack-text: A new <https://github.com/${{ github.repository }}|${{ github.event_name }}> was made in *${{ github.repository }}*.
slack-optional-icon_emoji: ":robot_face:"
- name: Result from "Send Message"
run: echo "The result was ${{ steps.notify.outputs.slack-result }}"
| name: slack-notification
on:
pull_request:
types: [opened]
pull_request_review:
types: [submitted]
pull_request_review_comment:
types: [created]
issues:
types: [opened]
issue_comment:
types: [created]
jobs:
slack-notification:
runs-on: ubuntu-latest
name: Sends a message to Slack when a pull request or an issue is made
steps:
- name: Send message to Slack API
# if: github.event_name == 'pull_request'
uses: archive/github-actions-slack@master
with:
slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }}
slack-channel: ${{ secrets.SLACK_BOT_CHANNEL }}
slack-text: A new <https://github.com/${{ github.repository }}|Pull Request> was made in *${{ github.repository }}*.
slack-optional-blocks: fromJSON([
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "A new ${{ github.event_name }} was made in *${{ github.repository }}*"
},
"accessory": {
"type": "button",
"text": {
"type": "plain_text",
"text": "View on GitHub"
},
"url": "https://github.com/${{ github.repository }}"
}
}
])
- name: Debug event
run echo ${{toJSON(github.event)}}
- name: Result from "Send Message"
run: echo "The result was ${{ steps.notify.outputs.slack-result }}"
| Add slack block to message | Add slack block to message
| YAML | mit | auth0/angular2-jwt,auth0/angular2-jwt,auth0/angular2-jwt |
0097e45d6a3689cce196d0fbcd85b275f9ccc2f0 | cloudml_deploy.yaml | cloudml_deploy.yaml | trainingInput:
args: [
"--root_feature_path", "gs://alex-dataflow-scratch/features-scratch/20160925T101632Z",
"--training_output_path", "gs://alex-dataflow-scratch/cloudml/full-data-2012-2016-fixed-chief"]
packageUris: gs://world-fishing-827-ml/alex_vessel_classification/alex_vessel_classification-1.0.tar.gz
pythonModule: models.run_training
scaleTier: CUSTOM
masterType: "standard"
parameterServerType: "standard"
workerType: "large_model"
workerCount: 25
parameterServerCount: 1
region: us-central1
| trainingInput:
args: [
"--root_feature_path", "gs://alex-dataflow-scratch/features-scratch/20160925T101632Z",
"--training_output_path", "gs://alex-dataflow-scratch/cloudml/full-data-2012-2016-fixed-chief"]
packageUris: gs://world-fishing-827-ml/alex_vessel_classification/alex_vessel_classification-1.0.tar.gz
pythonModule: models.run_training
scaleTier: CUSTOM
masterType: "standard"
parameterServerType: "standard"
workerType: "large_model"
workerCount: 5
parameterServerCount: 1
region: us-central1
| Drop worker count back down. | Drop worker count back down.
| YAML | apache-2.0 | GlobalFishingWatch/vessel-classification,GlobalFishingWatch/vessel-classification,GlobalFishingWatch/vessel-classification |
6daf9f45bb7cae52717ccd8556e93abe1d01dda3 | _data/config.yml | _data/config.yml | grpc_release_branch: release-0_13
milestones_link: https://github.com/grpc/grpc/milestones
| grpc_release_branch: release-0_14
milestones_link: https://github.com/grpc/grpc/milestones
| Change links to release 0_14 | Change links to release 0_14 | YAML | bsd-3-clause | avx2/avx2.github.io,wildebeestdev/grpc.github.io,wildebeestdev/grpc.github.io,wildebeestdev/grpc.github.io,avx2/avx2.github.io,avx2/avx2.github.io |
8066b1d6012a6a95e2afef7413de5a38fecf00b7 | packages/al/alg.yaml | packages/al/alg.yaml | homepage: ''
changelog-type: ''
hash: 8a521a794789ca325db53267e076ac2c5e9233a98bdd483762dbff2bf300b3a1
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Algebraic structures
changelog: ''
basic-deps:
base: ! '>=4.11 && <5'
util: ! '>=0.1.9 && <0.2'
dual: ! '>=0.1 && <0.2'
all-versions:
- 0.2.0.0
- 0.2.1.0
- 0.2.2.0
- 0.2.2.1
- 0.2.3.0
- 0.2.4.1
- 0.2.4.2
- 0.2.5.0
- 0.2.6.0
- 0.2.7.0
- 0.2.8.0
- 0.2.9.0
- 0.2.10.0
- 0.2.11.0
- 0.2.12.0
- 0.2.13.0
author: M Farkas-Dyck
latest: 0.2.13.0
description-type: haddock
description: ''
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: e9362b68e2943b644b4e07a3b03de8fb73dd80448a2d51db327e7f87a18a774b
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Algebraic structures
changelog: ''
basic-deps:
base: ! '>=4.11 && <5'
util: ! '>=0.1.9 && <0.2'
dual: ! '>=0.1 && <0.2'
all-versions:
- 0.2.0.0
- 0.2.1.0
- 0.2.2.0
- 0.2.2.1
- 0.2.3.0
- 0.2.4.1
- 0.2.4.2
- 0.2.5.0
- 0.2.6.0
- 0.2.7.0
- 0.2.8.0
- 0.2.9.0
- 0.2.10.0
- 0.2.11.0
- 0.2.12.0
- 0.2.13.0
- 0.2.13.1
author: M Farkas-Dyck
latest: 0.2.13.1
description-type: haddock
description: ''
license-name: BSD-3-Clause
| Update from Hackage at 2019-12-24T16:02:25Z | Update from Hackage at 2019-12-24T16:02:25Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c501d2195d32f7939d9909f1b9483c815f5dd191 | appveyor.yml | appveyor.yml | version: 0.0.{build}
image:
- Visual Studio 2017
- Ubuntu
shallow_clone: true
init:
- ps: if ($env:APPVEYOR_REPO_TAG_NAME) { Update-AppveyorBuild -Version $env:APPVEYOR_REPO_TAG_NAME.Substring(1) }
platform:
- Any CPU
configuration:
- Release
matrix:
fast_finish: true
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
before_build:
- ps: dotnet --version
- ps: dotnet restore Vsxmd.sln
- ps: ./Vsxmd/Test.ps1 -Prepare
test_script:
- ps: ./Vsxmd/Test.ps1 -Run
artifacts:
- path: 'Vsxmd\**\*.nupkg'
deploy:
- release: v$(APPVEYOR_BUILD_VERSION)
provider: GitHub
draft: false
prerelease: false
auth_token:
secure: cApkFZuYfz7loLotMfbhb53ZIfjjfbY7dr46eu6Q9+yAV+KuSGYGcVTG8Bgx8wka
on:
appveyor_repo_tag: true
| version: 0.0.{build}
image:
- Visual Studio 2017
- Ubuntu
shallow_clone: true
init:
- ps: if ($env:APPVEYOR_REPO_TAG_NAME) { Update-AppveyorBuild -Version $env:APPVEYOR_REPO_TAG_NAME.Substring(1) }
platform:
- Any CPU
configuration:
- Release
matrix:
fast_finish: true
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: "{version}"
package_version: "{version}"
assembly_version: "{version}"
file_version: "{version}"
informational_version: "{version}"
before_build:
- ps: msbuild -t:restore
- ps: ./Vsxmd/Test.ps1 -Prepare
test_script:
- ps: ./Vsxmd/Test.ps1 -Run
artifacts:
- path: 'Vsxmd\**\*.nupkg'
deploy:
- release: v$(APPVEYOR_BUILD_VERSION)
provider: GitHub
draft: false
prerelease: false
auth_token:
secure: cApkFZuYfz7loLotMfbhb53ZIfjjfbY7dr46eu6Q9+yAV+KuSGYGcVTG8Bgx8wka
on:
appveyor_repo_tag: true
| Leverage MSBuild to restore NuGet package. | Leverage MSBuild to restore NuGet package.
| YAML | mit | lijunle/Vsxmd |
785550f6c86f7e7e299f976894c7a37084ca6a8e | appveyor.yml | appveyor.yml | platform:
- x64
environment:
global:
MSYS2_BASEVER: 20150512
matrix:
- MSYS2_ARCH: x86_64
install:
- ps: |
$url = "http://sourceforge.net/projects/mingw-w64/files/"
$url += "Toolchains%20targetting%20Win64/Personal%20Builds/"
$url += "mingw-builds/4.9.2/threads-win32/seh/"
$url += "x86_64-4.9.2-release-win32-seh-rt_v3-rev0.7z/download"
Invoke-WebRequest -UserAgent wget -Uri $url -OutFile x86_64-4.9.2-release-win32-seh-rt_v3-rev0.7z
&7z x -oC:\ x86_64-4.9.2-release-win32-seh-rt_v3-rev0.7z > $null
- set PATH=C:\mingw64\bin;%PATH%
- gcc --version
- ps: Start-FileDownload 'http://static.rust-lang.org/dist/rust-1.0.0-x86_64-pc-windows-gnu.exe'
- rust-1.0.0-x86_64-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- rustc --version
- cargo --version
build: false
test_script:
- cargo test --verbose
- cargo build --release
- target\release\hs.exe -v
| platform:
- x64
install:
- ps: Start-FileDownload 'http://static.rust-lang.org/dist/rust-1.0.0-x86_64-pc-windows-gnu.exe'
- rust-1.0.0-x86_64-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- rustc --version
- cargo --version
build: false
test_script:
- cargo test --verbose
- cargo build --release
- target\release\hs.exe -v
| Remove MinGW from AppVeyor build | Remove MinGW from AppVeyor build
| YAML | mit | rschmitt/heatseeker,rschmitt/heatseeker |
3bfa531cc3cc8928962592e0b4f65dfd4d2fdcfc | .zuul.yml | .zuul.yml | ui: mocha-bdd
browserify:
- transform: babelify
browsers:
- name: firefox
version: 37..latest
platform: Mac 10.10
- name: opera
version: latest
platform: Mac 10.10
- name: chrome
version: 36..latest
- name: safari
version: 7..latest
- name: ie
version: 9..latest
- name: android
version: '4.4..latest'
- name: iphone
version: '6.0..latest'
- name: ipad
version: '6.0..latest'
| ui: mocha-bdd
browserify:
- transform: babelify
browsers:
- name: firefox
version: 37..latest
platform: Mac 10.10
- name: opera
version: latest
platform: Mac 10.10
- name: chrome
version: 36..latest
- name: safari
version: 7..latest
- name: ie
version: 9..latest
- name: android
version: '4.4..latest'
- name: iphone
version: '6.0..latest'
| Remove iPad from list of platforms to test on sauce labs | Remove iPad from list of platforms to test on sauce labs
It's really unnecessary given iPhone is also on the list.
| YAML | mit | Frikki/cycle-dom,cyclejs/cycle-web,cyclejs/cycle-dom,WorldMaker/cycle-dom,WorldMaker/cycle-dom,cyclejs/cycle-dom,cyclejs/cycle-web,Frikki/cycle-dom |
91d695aecd43e4c86059557b9ab8f389bd3e89f4 | .github/workflows/analyze-and-build.yml | .github/workflows/analyze-and-build.yml | name: Analyze and build the source
on: push
jobs:
js:
name: js
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: yarn install
- name: Bundle data, then run flow
run: |
yarn run bundle-data
yarn run flow check
| name: Analyze and build the source
on: push
jobs:
js:
name: js
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: yarn install
- run: yarn run bundle-data
- run: yarn run flow check
| Switch to two simpler steps | Switch to two simpler steps
These are two logically different things, so they should be in different
steps.
Signed-off-by: Kristofer Rye <1ed31cfd0b53bc3d1689a6fee6dbfc9507dffd22@gmail.com>
| YAML | agpl-3.0 | StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native |
199ccd15de2cc1eacfa031f5bb9a9335e2d983f6 | playbooks/common.yml | playbooks/common.yml | ---
- hosts: all
gather_facts: false
connection: ssh
sudo: yes
tasks:
- include: common/tasks/fireball.yml
- action: fireball
- hosts: all
connection: fireball
tasks:
- include: common/tasks/main.yml
| ---
- hosts: all
gather_facts: false
connection: ssh
tasks:
- name: update dpkg index
apt: update_cache=yes
- hosts: all
gather_facts: false
connection: ssh
tasks:
- include: common/tasks/fireball.yml
- action: fireball
- hosts: all
connection: fireball
tasks:
- include: common/tasks/main.yml
| Add an apt-get update before even fireball. | Add an apt-get update before even fireball.
Fireball's dependencies can't be installed if the package
cache is out of date, causing failures on spanking-new machines.
| YAML | mit | ddaskal/ursula,MaheshIBM/ursula,nirajdp76/ursula,knandya/ursula,MaheshIBM/ursula,edtubillara/ursula,davidcusatis/ursula,blueboxgroup/ursula,rongzhus/ursula,ddaskal/ursula,edtubillara/ursula,blueboxjesse/ursula,zrs233/ursula,blueboxjesse/ursula,knandya/ursula,panxia6679/ursula,lihkin213/ursula,sivakom/ursula,EricCrosson/ursula,fancyhe/ursula,ryshah/ursula,EricCrosson/ursula,lihkin213/ursula,wupeiran/ursula,j2sol/ursula,retr0h/ursula,jwaibel/ursula,ddaskal/ursula,persistent-ursula/ursula,channus/ursula,pgraziano/ursula,greghaynes/ursula,dlundquist/ursula,greghaynes/ursula,jwaibel/ursula,dlundquist/ursula,channus/ursula,edtubillara/ursula,fancyhe/ursula,fancyhe/ursula,aldevigi/ursula,panxia6679/ursula,rongzhus/ursula,andrewrothstein/ursula,paulczar/ursula,twaldrop/ursula,persistent-ursula/ursula,edtubillara/ursula,davidcusatis/ursula,blueboxgroup/ursula,msambol/ursula,pgraziano/ursula,nirajdp76/ursula,retr0h/ursula,aldevigi/ursula,pbannister/ursula,pbannister/ursula,davidcusatis/ursula,knandya/ursula,msambol/ursula,narengan/ursula,nirajdp76/ursula,pgraziano/ursula,sivakom/ursula,msambol/ursula,masteinhauser/ursula,jwaibel/ursula,j2sol/ursula,zrs233/ursula,allomov/ursula,masteinhauser/ursula,kennjason/ursula,MaheshIBM/ursula,blueboxgroup/ursula,greghaynes/ursula,pgraziano/ursula,blueboxjesse/ursula,blueboxgroup/ursula,channus/ursula,persistent-ursula/ursula,zrs233/ursula,persistent-ursula/ursula,twaldrop/ursula,lihkin213/ursula,ddaskal/ursula,ryshah/ursula,lihkin213/ursula,blueboxjesse/ursula,sivakom/ursula,wupeiran/ursula,rongzhus/ursula,twaldrop/ursula,j2sol/ursula,knandya/ursula,twaldrop/ursula,nirajdp76/ursula,andrewrothstein/ursula,channus/ursula,retr0h/ursula,narengan/ursula,allomov/ursula,wupeiran/ursula,ryshah/ursula,narengan/ursula,fancyhe/ursula,andrewrothstein/ursula,dlundquist/ursula,rongzhus/ursula,ryshah/ursula,paulczar/ursula,zrs233/ursula,panxia6679/ursula,allomov/ursula,mjbrewer/ursula,kennjason/ursula,narengan/ursula,mjbrewer/ursula,aldevigi/ursula,paulczar/ursula,mjbrewer/ursula,masteinhauser/ursula,EricCrosson/ursula,j2sol/ursula,panxia6679/ursula,wupeiran/ursula,pbannister/ursula,masteinhauser/ursula,kennjason/ursula |
b3a6f6cadb952456db51b41c1614f908825825d8 | config/browsers.yml | config/browsers.yml | minimums:
Chrome: 66
Safari: 11
Firefox: 64
Internet Explorer: 11
| minimums:
Chrome: 66
Safari: 11
Firefox: 60
Internet Explorer: 11
| Change browser.yml back to Firefox 60 | Change browser.yml back to Firefox 60
ESR users are seeing the warning banner
and would like to see it removed; the
only way to do that is to lower the Firefox
version to 60 from 64. Firefox 60 is the
top-level ESR offered by Firefox.
Chrome Enterprise allows admins to pin
at any version, so we will not adjust
the Chrome browser number.
Closes: DOC-1047
Test plan:
- specs pass
Change-Id: I8723093637b8df297210538abdf459b0b1e584d8
Reviewed-on: https://gerrit.instructure.com/190491
Tested-by: Jenkins
QA-Review: Rob Orton <7e09c9d3e96378bf549fc283fd6e1e5b7014cc33@instructure.com>
Product-Review: Rob Orton <7e09c9d3e96378bf549fc283fd6e1e5b7014cc33@instructure.com>
Reviewed-by: Rob Orton <7e09c9d3e96378bf549fc283fd6e1e5b7014cc33@instructure.com>
| YAML | agpl-3.0 | djbender/canvas-lms,sfu/canvas-lms,djbender/canvas-lms,sfu/canvas-lms,djbender/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,djbender/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,sfu/canvas-lms |
73f3be77d28d453d2733f4e423b0d1ce45c9c216 | config/cucumber.yml | config/cucumber.yml | ##
# Separate iOS and Android profiles to require platform specific page objects
##
<% iosdevice =
"DEVICE_TARGET=''
BUNDLE_ID='com.blocksolid.example'
DEVICE_ENDPOINT='http://0.0.0.0:37265'
CODE_SIGN_IDENTITY=''"
%>
<% iossimulator =
"DEVICE_TARGET='4F3865CE-4711-47DF-9545-D0DC417EF2C6'
APP='build/example.app'"
%>
android: PLATFORM=android -r features/support -r features/support/android -r features/step_definitions -e features/support/ios
ios: PLATFORM=ios <%= iossimulator %> -r features/support -r features/support/ios -r features/step_definitions -e features/support/android
| ##
# Separate iOS and Android profiles to require platform specific page objects
##
<% iosdevice =
"DEVICE_TARGET=''
BUNDLE_ID='com.blocksolid.example'
DEVICE_ENDPOINT='http://0.0.0.0:37265'
CODE_SIGN_IDENTITY=''"
%>
<% iossimulator =
"DEVICE_TARGET='3510B964-24B2-44BC-B34C-A766D1EE3075'
APP='build/example.app'"
%>
android: PLATFORM=android -r features/support -r features/support/android -r features/step_definitions -e features/support/ios
ios: PLATFORM=ios <%= iossimulator %> -r features/support -r features/support/ios -r features/step_definitions -e features/support/android
| Change default config device simulator to iPhone 7 on iOS 10 | Change default config device simulator to iPhone 7 on iOS 10
| YAML | unlicense | danbuckland/ios-android-cucumber-boilerplate |
c51971817cbb32c5443cce69c00f61196ce76752 | ansible/site.yml | ansible/site.yml | # site.yml
---
- hosts: srv001
sudo: true
roles: []
- hosts: srv002
sudo: true
roles: []
| # site.yml
---
- hosts: srv001
become: true
roles: []
- hosts: srv002
become: true
roles: []
| Fix Ansible 2.0 deprecation warning for ‘sudo:’ directive | Fix Ansible 2.0 deprecation warning for ‘sudo:’ directive
| YAML | mit | bertvv/ansible-skeleton,bertvv/ansible-skeleton |
79f51a8d790acb2b8a634774a6af98b784676e75 | packages/tr/tree-sitter-java.yaml | packages/tr/tree-sitter-java.yaml | homepage: https://github.com/tree-sitter/tree-sitter-go#readme
changelog-type: ''
hash: ae93fb106defce8698b78de75f5b159bae0888ce21f501dfb0fe17cd84cf6b26
test-bench-deps: {}
maintainer: tclem@github.com
synopsis: Tree-sitter grammar/parser for Java
changelog: ''
basic-deps:
base: ! '>=4.12 && <5'
tree-sitter-java-internal: -any
tree-sitter: ! '>=0.3 && <1'
template-haskell: ! '>=2.12.0.0 && <2.15.0.0'
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.2.0.1
author: Ayman Nadeem, Max Brunsfeld, Tim Clem, Rob Rix, Josh Vera, Rick Winfrey
latest: 0.2.0.1
description-type: haddock
description: This package provides a parser for Java suitable for use with the tree-sitter
package.
license-name: BSD-3-Clause
| homepage: https://github.com/tree-sitter/tree-sitter-go#readme
changelog-type: markdown
hash: 82490699dc20bc1fe450d9edca6f88404c2755c4286f7116984306094b9ced97
test-bench-deps: {}
maintainer: tclem@github.com
synopsis: Tree-sitter grammar/parser for Java
changelog: |
# v0.3.0.0
* Adds AST datatypes in `TreeSitter.Java.AST` which you can use with `TreeSitter.Unmarshal`.
basic-deps:
base: ! '>=4.12 && <5'
tree-sitter-java-internal: -any
tree-sitter: ^>=0.4
template-haskell: ! '>=2.12.0.0 && <2.15.0.0'
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.2.0.1
- 0.3.0.0
author: Ayman Nadeem, Max Brunsfeld, Tim Clem, Rob Rix, Josh Vera, Rick Winfrey
latest: 0.3.0.0
description-type: haddock
description: This package provides a parser for Java suitable for use with the tree-sitter
package.
license-name: BSD-3-Clause
| Update from Hackage at 2019-10-03T00:50:20Z | Update from Hackage at 2019-10-03T00:50:20Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d5a42d52150e71803982ceb9bd03514cd6a5e160 | .github/workflows/npm-build-and-deploy-develop.yml | .github/workflows/npm-build-and-deploy-develop.yml | # This workflow will do a clean install of node dependencies, build the source code and push the binaries to the deployment repository.
name: Continuous Delivery and Deployment
on:
push:
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build-hash
- name: Create CNAME file
uses: finnp/create-file-action@master
env:
FILE_NAME: build/dist/CNAME
FILE_DATA: develop.bitshares.org
- name: Deploy
uses: s0/git-publish-subdir-action@master
env:
REPO: git@github.com:bitshares/develop.bitshares.org.git
BRANCH: master
FOLDER: build/dist
SSH_PRIVATE_KEY: ${{ secrets.AUTOMATION_UI_DEPLOYMENT_KEY }}
| # This workflow will do a clean install of node dependencies, build the source code and push the binaries to the deployment repository.
name: Continuous Delivery and Deployment
on:
push:
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build-hash
- name: Create CNAME file
uses: finnp/create-file-action@master
env:
FILE_NAME: build/hash-history/CNAME
FILE_DATA: develop.bitshares.org
- name: Deploy
uses: s0/git-publish-subdir-action@master
env:
REPO: git@github.com:bitshares/develop.bitshares.org.git
BRANCH: master
FOLDER: build/hash-history
SSH_PRIVATE_KEY: ${{ secrets.AUTOMATION_UI_DEPLOYMENT_KEY }}
| Fix automated deployment due to path change | Fix automated deployment due to path change | YAML | mit | bitshares/bitshares-ui,bitshares/bitshares-ui,bitshares/bitshares-ui,bitshares/bitshares-ui |
18eefa119c2206a386cbe9fee3acaf3dcaaa10b2 | packages/pr/preamble.yaml | packages/pr/preamble.yaml | homepage: https://github.com/swift-nav/preamble
changelog-type: ''
hash: 011ab09a701ef20e941f41b5e923b03d1777576c1e703cdc52d1dce4f250f9a2
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Yet another prelude.
changelog: ''
basic-deps:
exceptions: -any
base: ==4.8.*
time: -any
shakers: -any
unordered-containers: -any
text: -any
basic-prelude: -any
monad-control: -any
fast-logger: -any
lens: -any
text-manipulate: -any
mtl: -any
transformers-base: -any
monad-logger: -any
resourcet: -any
aeson: -any
template-haskell: -any
safe: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
author: Swift Navigation Inc.
latest: '0.0.6'
description-type: haddock
description: A prelude built on basic-prelude.
license-name: MIT
| homepage: https://github.com/swift-nav/preamble
changelog-type: ''
hash: 618d8ae25f0ab537afd9b6074661e6610f78095ef7f1a3b26d0a41cb2206ec53
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Yet another prelude.
changelog: ''
basic-deps:
exceptions: -any
base: ==4.8.*
time: -any
shakers: -any
unordered-containers: -any
text: -any
basic-prelude: -any
monad-control: -any
fast-logger: -any
lens: -any
text-manipulate: -any
mtl: -any
transformers-base: -any
monad-logger: -any
resourcet: -any
aeson: -any
template-haskell: -any
safe: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
- '0.0.7'
author: Swift Navigation Inc.
latest: '0.0.7'
description-type: haddock
description: A prelude built on basic-prelude.
license-name: MIT
| Update from Hackage at 2016-12-23T22:18:54Z | Update from Hackage at 2016-12-23T22:18:54Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
398708f222b391aa92b382944cb98b40eebeb959 | mi/platform/rsn/node_config_files/WinchController_SC01B.yml | mi/platform/rsn/node_config_files/WinchController_SC01B.yml | node_meta_data:
description: Winch Controller Endurance
location: Endurance
node_id_name: SN0121-SC01B
node_type: WinchController
oms_sample_rate: 5
reference_designator: CE04OSPS-SC01B
serial_number: SN0121
read_only_mode: True
node_streams:
secondary_node_port_eng_data:
- port_type: Instrument
port_num: 1
name: BRAKE-IP2
- port_type: Expansion
port_num: 0
name: 04-EP1
- port_type: Instrument
port_num: 0
name: 05-IP1
- port_type: Expansion
port_num: 1
name: VFD-EP2
secondary_node_eng_data:
- name: 00-ENG
shallow_profiler_winch_eng_data:
- name: 00-WINCH
| node_meta_data:
description: Winch Controller Endurance
location: Endurance
node_id_name: SN0124-SC01B
node_type: WinchController
oms_sample_rate: 5
reference_designator: CE04OSPS-SC01B
serial_number: SN0121
read_only_mode: True
node_streams:
secondary_node_port_eng_data:
- port_type: Instrument
port_num: 1
name: BRAKE-IP2
- port_type: Expansion
port_num: 0
name: 04-EP1
- port_type: Instrument
port_num: 0
name: 05-IP1
- port_type: Expansion
port_num: 1
name: VFD-EP2
secondary_node_eng_data:
- name: 00-ENG
shallow_profiler_winch_eng_data:
- name: 00-WINCH
| Update serial number for 2019 deployment | Update serial number for 2019 deployment | YAML | bsd-2-clause | oceanobservatories/mi-instrument,oceanobservatories/mi-instrument |
162ec96025c796738ab7f7161345d06cce84387a | containers/dev/docker-compose.yml | containers/dev/docker-compose.yml | redis-dev:
image: redis
ports:
- "6379:6379"
elasticsearch-dev:
image: elasticsearch:5.1
environment:
- cluster.name=elasticsearch
ports:
- "9200:9200"
- "9300:9300"
kibana-dev:
image: kibana:5.1
ports:
- "5601:5601"
environment:
- ELASTICSEARCH_URL=http://elasticsearch-dev:9200
links:
- elasticsearch-dev
| version: '2'
services:
redis-dev:
image: redis
ports:
- "6379:6379"
elasticsearch-dev:
image: elasticsearch:5.1
environment:
- cluster.name=elasticsearch
ports:
- "9200:9200"
- "9300:9300"
kibana-dev:
image: kibana:5.1
ports:
- "5601:5601"
environment:
- ELASTICSEARCH_URL=http://elasticsearch-dev:9200
links:
- elasticsearch-dev
zookeeper:
image: wurstmeister/zookeeper
ports:
- "2181:2181"
kafka:
image: wurstmeister/kafka
# build: .
ports:
- "9092:9092"
environment:
KAFKA_ADVERTISED_HOST_NAME: 127.0.0.1
KAFKA_CREATE_TOPICS: test:1:1"
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
volumes:
- /var/run/docker.sock:/var/run/docker.sock
| Add single broker kafka cluster | Add single broker kafka cluster
| YAML | epl-1.0 | yogsototh/ctia,quoll/ctia,yogsototh/ctia,quoll/ctia,saintx/ctia,yogsototh/ctia,polygloton/ctia,threatgrid/ctia,threatgrid/ctia,quoll/ctia,threatgrid/ctia,saintx/ctia,saintx/ctia,threatgrid/ctia,polygloton/ctia,polygloton/ctia |
d150e371d8edc5324bdb45cc540de215f9e92bd3 | recipes/opuslib/meta.yaml | recipes/opuslib/meta.yaml | {% set name = "opuslib" %}
{% set version = "3.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/opuslib-{{ version }}.tar.gz
sha256: 2cb045e5b03e7fc50dfefe431e3404dddddbd8f5961c10c51e32dfb69a044c97
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python
run:
- python
test:
imports:
- opuslib
- opuslib.api
requires:
- opuslib
about:
home: https://github.com/onbeep/opuslib
summary: Python bindings to the libopus, IETF low-delay audio codec
license: BSD-3-Clause
license_file: LICENSE
extra:
recipe-maintainers:
- JennaLipscomb
- oblute
| {% set name = "opuslib" %}
{% set version = "3.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/opuslib-{{ version }}.tar.gz
sha256: 2cb045e5b03e7fc50dfefe431e3404dddddbd8f5961c10c51e32dfb69a044c97
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python == 2.7
run:
- python == 2.7
test:
imports:
- opuslib
- opuslib.api
requires:
- opuslib
about:
home: https://github.com/onbeep/opuslib
summary: Python bindings to the libopus, IETF low-delay audio codec
license: BSD-3-Clause
license_file: LICENSE
extra:
recipe-maintainers:
- JennaLipscomb
- oblute
| Add python pinning to 2.7 | Add python pinning to 2.7
| YAML | bsd-3-clause | hadim/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes,jochym/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes |
45a2f3c6247881217aefddb382d705f8cf9c5a45 | recipes/spefile/meta.yaml | recipes/spefile/meta.yaml | {% set version = "1.6" %}
package:
name: spefile
version: {{ version }}
source:
path: src
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- numpy
test:
# Python imports
imports:
- spefile
about:
home: https://pythonhosted.org/pyspec/
license: GPL v3.0
summary: >
Reader for SPE files part of pyspec a set of python routines for data
analysis of x-ray scattering experiments
extra:
recipe-maintainers:
- dgursoy
- decarlof
- ericdill
- licode
- ravescovi
- tacaswell
| {% set version = "1.6" %}
package:
name: spefile
version: {{ version }}
source:
path: src
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- numpy
test:
imports:
- spefile
about:
# Long term goal is to have the src/ folder in this recipe as a stand-alone
# project on github.
home: https://pythonhosted.org/pyspec/
license: GPL v3.0
summary: >
Reader for SPE files part of pyspec a set of python routines for data
analysis of x-ray scattering experiments
extra:
recipe-maintainers:
- dgursoy
- decarlof
- ericdill
- licode
- ravescovi
- tacaswell
| Add note about moving the src/ folder into its own project on github | Add note about moving the src/ folder into its own project on github
| YAML | bsd-3-clause | tylere/staged-recipes,patricksnape/staged-recipes,sannykr/staged-recipes,chohner/staged-recipes,sodre/staged-recipes,JohnGreeley/staged-recipes,data-exp-lab/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,ocefpaf/staged-recipes,rvalieris/staged-recipes,kwilcox/staged-recipes,richardotis/staged-recipes,igortg/staged-recipes,gqmelo/staged-recipes,SylvainCorlay/staged-recipes,sannykr/staged-recipes,hadim/staged-recipes,rmcgibbo/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,richardotis/staged-recipes,hajapy/staged-recipes,jochym/staged-recipes,asmeurer/staged-recipes,isuruf/staged-recipes,jakirkham/staged-recipes,sodre/staged-recipes,guillochon/staged-recipes,grlee77/staged-recipes,benvandyke/staged-recipes,stuertz/staged-recipes,jjhelmus/staged-recipes,glemaitre/staged-recipes,birdsarah/staged-recipes,jakirkham/staged-recipes,larray-project/staged-recipes,petrushy/staged-recipes,larray-project/staged-recipes,vamega/staged-recipes,jochym/staged-recipes,goanpeca/staged-recipes,Juanlu001/staged-recipes,chrisburr/staged-recipes,synapticarbors/staged-recipes,grlee77/staged-recipes,OpenPIV/staged-recipes,valgur/staged-recipes,bmabey/staged-recipes,jcb91/staged-recipes,atedstone/staged-recipes,ReimarBauer/staged-recipes,scopatz/staged-recipes,stuertz/staged-recipes,blowekamp/staged-recipes,mcs07/staged-recipes,dfroger/staged-recipes,basnijholt/staged-recipes,sodre/staged-recipes,hbredin/staged-recipes,caspervdw/staged-recipes,khallock/staged-recipes,mcs07/staged-recipes,valgur/staged-recipes,ceholden/staged-recipes,Cashalow/staged-recipes,rvalieris/staged-recipes,dharhas/staged-recipes,pmlandwehr/staged-recipes,kwilcox/staged-recipes,SylvainCorlay/staged-recipes,ocefpaf/staged-recipes,mcernak/staged-recipes,Savvysherpa/staged-recipes,cpaulik/staged-recipes,NOAA-ORR-ERD/staged-recipes,conda-forge/staged-recipes,pstjohn/staged-recipes,basnijholt/staged-recipes,cpaulik/staged-recipes,data-exp-lab/staged-recipes,bmabey/staged-recipes,jerowe/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,isuruf/staged-recipes,nicoddemus/staged-recipes,johanneskoester/staged-recipes,caspervdw/staged-recipes,blowekamp/staged-recipes,dharhas/staged-recipes,birdsarah/staged-recipes,OpenPIV/staged-recipes,planetarypy/staged-recipes,rolando-contrib/staged-recipes,hajapy/staged-recipes,NOAA-ORR-ERD/staged-recipes,shadowwalkersb/staged-recipes,pstjohn/staged-recipes,synapticarbors/staged-recipes,benvandyke/staged-recipes,planetarypy/staged-recipes,goanpeca/staged-recipes,johannesring/staged-recipes,nicoddemus/staged-recipes,patricksnape/staged-recipes,shadowwalkersb/staged-recipes,jjhelmus/staged-recipes,koverholt/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes,jerowe/staged-recipes,rolando-contrib/staged-recipes,barkls/staged-recipes,Cashalow/staged-recipes,mariusvniekerk/staged-recipes,mcernak/staged-recipes,vamega/staged-recipes,asmeurer/staged-recipes,ceholden/staged-recipes,johanneskoester/staged-recipes,atedstone/staged-recipes,pmlandwehr/staged-recipes,tylere/staged-recipes,khallock/staged-recipes,jcb91/staged-recipes,johannesring/staged-recipes,gqmelo/staged-recipes,barkls/staged-recipes,rmcgibbo/staged-recipes,chohner/staged-recipes,glemaitre/staged-recipes,ReimarBauer/staged-recipes,guillochon/staged-recipes,JohnGreeley/staged-recipes,Juanlu001/staged-recipes,dschreij/staged-recipes,hbredin/staged-recipes,koverholt/staged-recipes,dfroger/staged-recipes,Savvysherpa/staged-recipes |
fb84d2c1d80c7e71521b2d8117aba8f84799869c | packages/ht/html-presentation-text.yaml | packages/ht/html-presentation-text.yaml | homepage: ''
changelog-type: markdown
hash: d663336a29bdddf54d3015d187ec53f310f1529efb65fa2108ba4791f2a1de7a
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Simple tool to create html presentation for text.
changelog: |
# Revision history for html-presentation-text
## 0.1.0.0 -- 2022-01-18
* First version. Released on an unsuspecting world.
basic-deps:
lists-flines: '>=0.1.1 && <1'
base: '>=4.8 && <5'
cli-arguments: '>=0.6 && <1'
all-versions:
- 0.1.0.0
author: OleksandrZhabenko
latest: 0.1.0.0
description-type: haddock
description: The html and css template is taken from different tutorials in the Internet
(with changes). The idea is to post some text on the background partially transparent
image.
license-name: MIT
| homepage: ''
changelog-type: markdown
hash: 0e0069cb74ee0718966f563507fe0055c9446f958e41197ae5f49a0e970e945b
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Simple tool to create html presentation for text.
changelog: "# Revision history for html-presentation-text\n\n## 0.1.0.0 -- 2022-01-18\n\n*
First version. Released on an unsuspecting world.\n\n## 0.2.0.0 -- 2022-01-18\n\n*
Second version. Removed the unneeded material because of the license non-compliance
with one of the tutorials used. \nSwitched to the author's css and html model.\n\n\n"
basic-deps:
lists-flines: '>=0.1.1 && <1'
base: '>=4.8 && <5'
cli-arguments: '>=0.6 && <1'
all-versions:
- 0.2.0.0
author: OleksandrZhabenko
latest: 0.2.0.0
description-type: haddock
description: The idea is to post some colored text on the background.
license-name: MIT
| Update from Hackage at 2022-01-18T21:05:47Z | Update from Hackage at 2022-01-18T21:05:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6267ffe7454ea2de0793f62754e88c059ef966f4 | roles/uninstall/tasks/selinux.yml | roles/uninstall/tasks/selinux.yml | - name: Check killinuxfloor SELinux policy module status
shell:
cmd: semodule --list | grep killinuxfloor
failed_when: no
changed_when: no
register: klf_selinux
- name: Disable SELinux policy module
command:
cmd: semodule --remove=killinuxfloor
when: klf_selinux.rc == 0
- name: Delete SELinux policy module
file:
path: "{{ semodule_dir }}/killinuxfloor.cil"
state: absent
| - name: Check killinuxfloor SELinux policy module status
shell:
cmd: semodule --list | grep killinuxfloor
failed_when: no
changed_when: no
register: klf_selinux
- name: Disable SELinux policy module
command:
cmd: semodule --remove=killinuxfloor
when: klf_selinux.rc == 0
- name: Delete SELinux policy module
file:
path: "{{ item }}"
state: absent
loop:
- "{{ steam_home }}/selinux"
- "{{ semodule_dir }}/killinuxfloor.cil"
| Remove old path for SELinux module too | Remove old path for SELinux module too
| YAML | mit | bviktor/kf2-centos |
b285c26861bb0475e5e6a5b1b308249204ae1236 | environments/openshift.yaml | environments/openshift.yaml | resource_registry:
OS::TripleO::Services::Docker: ../deployment/deprecated/docker/docker-baremetal-ansible.yaml
OS::TripleO::Services::HAproxy: ../deployment/haproxy/haproxy-container-puppet.yaml
OS::TripleO::Services::Keepalived: ../deployment/keepalived/keepalived-container-puppet.yaml
OS::TripleO::Services::OpenShift::Infra: ../extraconfig/services/openshift-infra.yaml
OS::TripleO::Services::OpenShift::Master: ../extraconfig/services/openshift-master.yaml
OS::TripleO::Services::OpenShift::Worker: ../extraconfig/services/openshift-worker.yaml
| resource_registry:
OS::TripleO::Services::HAproxy: ../deployment/haproxy/haproxy-container-puppet.yaml
OS::TripleO::Services::Keepalived: ../deployment/keepalived/keepalived-container-puppet.yaml
OS::TripleO::Services::OpenShift::Infra: ../extraconfig/services/openshift-infra.yaml
OS::TripleO::Services::OpenShift::Master: ../extraconfig/services/openshift-master.yaml
OS::TripleO::Services::OpenShift::Worker: ../extraconfig/services/openshift-worker.yaml
OS::TripleO::Services::Podman: ../deployment/podman/podman-baremetal-ansible.yaml
| Switch OpenShift nodes to use Podman | Switch OpenShift nodes to use Podman
Have TripleO use podman instead of docker to manage containers. This
follows the general direction taken by TripleO and allows to deploy on
RHEL8 based nodes.
Closes-Bug: #1821363
Change-Id: I0f1c0478cf424a7ea2314226a27685b02d5e7ce0
| YAML | apache-2.0 | dprince/tripleo-heat-templates,dprince/tripleo-heat-templates,openstack/tripleo-heat-templates,openstack/tripleo-heat-templates |
9e7b9c737f0f63aef7962af1396ef9408125624a | config/jobs/kubernetes/org/kubernetes-org-jobs.yaml | config/jobs/kubernetes/org/kubernetes-org-jobs.yaml | presubmits:
kubernetes/org:
- name: pull-org-test-all
always_run: true
decorate: true
spec:
containers:
- image: launcher.gcr.io/google/bazel:0.28.1
command:
- bazel
args:
- test
- //...
annotations:
testgrid-num-columns-recent: '30'
testgrid-create-test-group: 'true'
- name: pull-org-verify-all
always_run: true
decorate: true
spec:
containers:
- image: launcher.gcr.io/google/bazel:0.28.1
command:
- ./hack/verify-all.sh
annotations:
testgrid-num-columns-recent: '30'
testgrid-create-test-group: 'true'
| presubmits:
kubernetes/org:
- name: pull-org-test-all
always_run: true
decorate: true
spec:
containers:
- image: launcher.gcr.io/google/bazel:0.29.1
command:
- bazel
args:
- test
- //...
annotations:
testgrid-num-columns-recent: '30'
testgrid-create-test-group: 'true'
- name: pull-org-verify-all
always_run: true
decorate: true
spec:
containers:
- image: launcher.gcr.io/google/bazel:0.29.1
command:
- ./hack/verify-all.sh
annotations:
testgrid-num-columns-recent: '30'
testgrid-create-test-group: 'true'
| Update org jobs to bazel 0.29.1 | Update org jobs to bazel 0.29.1
| YAML | apache-2.0 | cjwagner/test-infra,monopole/test-infra,BenTheElder/test-infra,jessfraz/test-infra,pwittrock/test-infra,BenTheElder/test-infra,kubernetes/test-infra,kubernetes/test-infra,brahmaroutu/test-infra,brahmaroutu/test-infra,pwittrock/test-infra,ixdy/kubernetes-test-infra,cjwagner/test-infra,pwittrock/test-infra,cblecker/test-infra,cjwagner/test-infra,michelle192837/test-infra,pwittrock/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,monopole/test-infra,cblecker/test-infra,BenTheElder/test-infra,ixdy/kubernetes-test-infra,cjwagner/test-infra,cjwagner/test-infra,michelle192837/test-infra,dims/test-infra,fejta/test-infra,michelle192837/test-infra,jessfraz/test-infra,monopole/test-infra,jessfraz/test-infra,kubernetes/test-infra,BenTheElder/test-infra,kubernetes/test-infra,fejta/test-infra,pwittrock/test-infra,cjwagner/test-infra,jessfraz/test-infra,brahmaroutu/test-infra,ixdy/kubernetes-test-infra,cblecker/test-infra,dims/test-infra,kubernetes/test-infra,fejta/test-infra,monopole/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,michelle192837/test-infra,brahmaroutu/test-infra,monopole/test-infra,fejta/test-infra,fejta/test-infra,dims/test-infra,jessfraz/test-infra,fejta/test-infra,michelle192837/test-infra,ixdy/kubernetes-test-infra,ixdy/kubernetes-test-infra,dims/test-infra,cblecker/test-infra,brahmaroutu/test-infra,dims/test-infra,cblecker/test-infra,cblecker/test-infra,michelle192837/test-infra,monopole/test-infra,dims/test-infra,jessfraz/test-infra |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.