commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266 values | license stringclasses 13 values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
7a1f48ee1fc357692a8e2fb292b093480fdbd7b1 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
sudo: false
# command to install dependencies, e.g. pip install -r requirements.txt
# These packages only exist on Ubuntu 13.04 and newer:
# No dependencies currently unless using Python 2.6.
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6* ]]; then pip install -r requirements_py26.txt; fi
- python setup.py install
# command to run tests, e.g. python setup.py test
script:
# We might like to get out of the source directory before running tests to
# avoid PYTHONPATH confusion? As an example, see here:
# https://github.com/tornadoweb/tornado/blob/master/.travis.yml
- python setup.py test
| language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
sudo: false
# command to install dependencies, e.g. pip install -r requirements.txt
# These packages only exist on Ubuntu 13.04 and newer:
# No dependencies currently unless using Python 2.6.
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6* ]]; then pip install -r requirements_py26.txt; fi
- python setup.py install
# command to run tests, e.g. python setup.py test
script:
# We might like to get out of the source directory before running tests to
# avoid PYTHONPATH confusion? As an example, see here:
# https://github.com/tornadoweb/tornado/blob/master/.travis.yml
- python setup.py test
| Add 3.5, 3.6, 3.7 to CI tests | Add 3.5, 3.6, 3.7 to CI tests
| YAML | mit | PythonCharmers/python-future,PythonCharmers/python-future |
6358bbb14add44ba5f38413a8e9d7420c7f15df8 | .travis.yml | .travis.yml | sudo: true
language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
- ST=Squeak-4.5
- ST=Squeak-Trunk
# Boilerplate ... should be no reason to edit the install section
install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget -q -O builderCI.zip https://github.com/dalehenrich/builderCI/archive/master.zip
- unzip -q builderCI.zip
- cd builderCI*
- source build_env_vars
- ln -s $PROJECT_HOME $GIT_PATH
- ./build_image.sh
# use a different script if you want to customize how travis tests are run
# use verbose flag to dump transcript unconditionally
script: $BUILDER_CI_HOME/testTravisCI.sh # -verbose
| sudo: true
language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
- ST=Squeak-4.5
- ST=Squeak-4.6
# Boilerplate ... should be no reason to edit the install section
install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget -q -O builderCI.zip https://github.com/dalehenrich/builderCI/archive/master.zip
- unzip -q builderCI.zip
- cd builderCI*
- source build_env_vars
- ln -s $PROJECT_HOME $GIT_PATH
- ./build_image.sh
# use a different script if you want to customize how travis tests are run
# use verbose flag to dump transcript unconditionally
script: $BUILDER_CI_HOME/testTravisCI.sh # -verbose
| Use Squeak 4.6 instead of SqueakTrunk | Use Squeak 4.6 instead of SqueakTrunk | YAML | mit | HPI-SWA-Teaching/SWT15-Project-04 |
d6f592dd079aee742a653c5756cd2afafc177615 | .travis.yml | .travis.yml | rvm:
- "2.1"
- 2.0.0
- jruby
| before_install:
- gem update --system
- gem --version
rvm:
- "2.1"
- 2.0.0
- jruby
| Use latest version of rubygems and bundler. | Use latest version of rubygems and bundler.
| YAML | mit | aptible/aptible-billing-ruby,blakepettersson/aptible-billing-ruby |
d7bbc3a34d503d9ebaaafcb28fb1248fe112cb20 | .travis.yml | .travis.yml | language: python
cache: pip
env:
- PYTHONHASHSEED=0
install:
- make travis-setup
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
# PyPy versions
- "pypy"
- "pypy3"
script:
- make ci
jobs:
include:
- stage: coverage
python:
- "3.6"
script:
- make coverage
after_success:
- coveralls
| language: python
dist: bionic
cache: pip
env:
- PYTHONHASHSEED=0
install:
- make travis-setup
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
# PyPy versions
- "pypy"
- "pypy3"
script:
- make ci
jobs:
include:
- stage: coverage
python:
- "3.6"
script:
- make coverage
after_success:
- coveralls
| Switch CI to Ubuntu 18 | Switch CI to Ubuntu 18
| YAML | mit | pavdmyt/yaspin |
0155445a267ba06f236a753f9501383e1546756a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- "pip install -r requirements.txt"
script: "py.test"
deploy:
provider: "heroku"
api_key:
secure: "wYkuNGIT0OUdnV9FMUqpWhQQvaL+pOe1iQqviG85t5H1iSOlU0JPhytKPQv9Qmb+dmqBqbRgjo//pQybRkG7B3TiAcBCEZW+enPRMqgUYyf+h7GMxB6sUJUaeGqDS0WFK+P/sgL0+dQNDpdu09gd5RHbwtPjgg+QK/rTlx9YAAQ="
app: "pythoncz"
on:
branch: "new-pythoncz"
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- "pip install -r requirements.txt"
script: "py.test"
deploy:
provider: "heroku"
api_key:
secure: "wYkuNGIT0OUdnV9FMUqpWhQQvaL+pOe1iQqviG85t5H1iSOlU0JPhytKPQv9Qmb+dmqBqbRgjo//pQybRkG7B3TiAcBCEZW+enPRMqgUYyf+h7GMxB6sUJUaeGqDS0WFK+P/sgL0+dQNDpdu09gd5RHbwtPjgg+QK/rTlx9YAAQ="
app: "pythoncz"
on:
branch: "new-pythoncz"
python: "2.7"
repo: pyvec/python.cz
| Deploy only Python 2.7 version. | Deploy only Python 2.7 version.
| YAML | mit | honzajavorek/python.cz,honzajavorek/python.cz,honzajavorek/python.cz,honzajavorek/python.cz |
0b8b482198aa770a926d0912aafa3b0c327670e5 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: "2.7"
env: ENVLIST=readme,1.4.X,1.5.X,master
- python: "3.3"
env: ENVLIST=py33-1.5.X
install:
- "pip install . tox --use-mirrors"
script: tox -e $ENVLIST
| language: python
python:
- "2.7"
env: ENVLIST=readme,1.4.X,1.5.X,master
matrix:
include:
- python: "3.3"
env: ENVLIST=py33-1.5.X
install:
- "pip install . tox --use-mirrors"
script: tox -e $ENVLIST
| Fix the empty ENVLIST failure | Fix the empty ENVLIST failure
| YAML | mit | SmileyChris/django-navtag |
c94fd331408c33ccd0dd27830b765ed4c4698365 | config/jobs/kubernetes-sigs/cluster-api-provider-digitalocean/cluster-api-provider-digitalocean-presets.yaml | config/jobs/kubernetes-sigs/cluster-api-provider-digitalocean/cluster-api-provider-digitalocean-presets.yaml | presets:
# Credentials for using DigitalOcean test account. Used for cluster-api-provider-digitalocean tests.
- labels:
preset-do-credential: "true"
env:
- name: DIGITALOCEAN_ACCESS_TOKEN
valueFrom:
secretKeyRef:
name: cluster-api-provider-digitalocean-token
key: DIGITALOCEAN_ACCESS_TOKEN
| presets:
# Credentials for using DigitalOcean test account. Used for cluster-api-provider-digitalocean/kops tests.
- labels:
preset-do-credential: "true"
env:
- name: DIGITALOCEAN_ACCESS_TOKEN
valueFrom:
secretKeyRef:
name: cluster-api-provider-digitalocean-token
key: DIGITALOCEAN_ACCESS_TOKEN
- name: DO_S3_ACCESS_KEY_ID
valueFrom:
secretKeyRef:
name: spaces-digitalocean-s3
key: access-key
- name: DO_S3_SECRET_ACCESS_KEY
valueFrom:
secretKeyRef:
name: spaces-digitalocean-s3
key: secret-key
| Update presets to use DO spaces for kops e2e tests | Update presets to use DO spaces for kops e2e tests
| YAML | apache-2.0 | BenTheElder/test-infra,cblecker/test-infra,cblecker/test-infra,michelle192837/test-infra,jessfraz/test-infra,monopole/test-infra,BenTheElder/test-infra,cjwagner/test-infra,dims/test-infra,jessfraz/test-infra,kubernetes/test-infra,pwittrock/test-infra,fejta/test-infra,michelle192837/test-infra,pwittrock/test-infra,pwittrock/test-infra,cjwagner/test-infra,jessfraz/test-infra,kubernetes/test-infra,dims/test-infra,cblecker/test-infra,monopole/test-infra,fejta/test-infra,michelle192837/test-infra,BenTheElder/test-infra,fejta/test-infra,jessfraz/test-infra,fejta/test-infra,kubernetes/test-infra,cjwagner/test-infra,cjwagner/test-infra,kubernetes/test-infra,kubernetes/test-infra,cjwagner/test-infra,kubernetes/test-infra,BenTheElder/test-infra,michelle192837/test-infra,jessfraz/test-infra,cblecker/test-infra,dims/test-infra,dims/test-infra,monopole/test-infra,BenTheElder/test-infra,cblecker/test-infra,dims/test-infra,monopole/test-infra,monopole/test-infra,cjwagner/test-infra,monopole/test-infra,pwittrock/test-infra,dims/test-infra,fejta/test-infra,michelle192837/test-infra,BenTheElder/test-infra,fejta/test-infra,cblecker/test-infra,pwittrock/test-infra,michelle192837/test-infra,jessfraz/test-infra |
0b8faccaf2decc8628c376ba85e18f237bff6935 | data/class_groups/glance_all.yaml | data/class_groups/glance_all.yaml | classes:
- glance
- glance::api
- glance::registry
- "glance::backend::%{glance_backend}"
| classes:
- glance
- glance::api
- glance::registry
- "glance::backend::%{glance_backend}"
- glance::cache::pruner
| Add glance cache pruner job | Add glance cache pruner job
On nodes where we set up glance, we currently don't set up a
glance cache pruning job. This is a recommended practice as
it can allow glance images to take up more disk space than
they should be allowed to by the image_cache_max_size setting
(refer to http://docs.openstack.org/developer/glance/cache.html).
This patch adds glance::cache::pruner to the glance_all
class group so that a pruner job gets added to nodes running
glance.
Change-Id: I9cf46057f7cf436a54c121b5364a2d17ebc9fbb8
Implements: blueprint add-glance-cache-pruner
| YAML | apache-2.0 | CiscoSystems/puppet_openstack_builder,phchoic/puppet_openstack_builder,michaeltchapman/puppet_openstack_builder,michaeltchapman/puppet_openstack_builder,michaeltchapman/vagrant-consul,michaeltchapman/vagrant-consul,phchoic/puppet_openstack_builder,CiscoSystems/puppet_openstack_builder,michaeltchapman/puppet_openstack_builder,phchoic/puppet_openstack_builder |
0fbefbec4c141159a17164f1e2c02e0e2f0479d9 | webhooks/config.yaml | webhooks/config.yaml | # API entry point
jenkins: 'http://qa-s2:8080'
repos:
# pull requests
- repo: Wikia/app
branches_not:
- dev
jobs:
- unitTests_js_branches
- unitTests_php_branches
# pushes to dev
- repo: Wikia/app
branches:
- dev
jobs:
- jsIntegration_trunk
- jsUnit_trunkUnit
- phpUnit_trunkAllTests
| # API entry point
jenkins: 'http://qa-s2:8080'
repos:
# pull requests
- repo: Wikia/app
branches_not:
- dev
jobs:
- unitTests_js_branches
- unitTests_php_branches
# pushes to dev
- repo: Wikia/app
branches:
- dev
jobs:
- jsIntegration_trunk
- jsUnit_trunkUnit
- phpUnit_trunkIntegration
- phpUnit_trunkUnit
| Change the names of Jenkins builds | Change the names of Jenkins builds
| YAML | mit | Wikia/jenkins-webhooks |
b84009c4ca07db3b487c31aadfecc8c9a8cdbfa4 | config/sidekiq.yml | config/sidekiq.yml | :concurrency: 5
staging:
:concurrency: 10
production:
:concurrency: 25
:queues:
- default
- photos | :concurrency: 5
staging:
:concurrency: 10
production:
:concurrency: 10
:queues:
- default
- photos | Reduce Sidekiq concurrency to 10 | Reduce Sidekiq concurrency to 10
| YAML | apache-2.0 | GreaterGoodStudio/data-journal,GreaterGoodStudio/data-journal,GreaterGoodStudio/data-journal |
a59fa8bb59fc2d6831b8f5bcd2658d3f82f8924d | codeship-steps.yml | codeship-steps.yml | - name: test
service: web
command: whenavail db 3306 100 make test
| - name: test
service: web
command: whenavail db 3306 100 /data/run-tests.sh
| Correct use of make within docker container. | Correct use of make within docker container.
| YAML | mit | silinternational/simplesamlphp-module-silauth,silinternational/simplesamlphp-module-silauth |
697195841897f5aad0488da88efe3c296eb17c44 | .github/workflows/Test.yml | .github/workflows/Test.yml | name: Test
on: [push, pull_request]
jobs:
macOS:
runs-on: macOS-latest
steps:
- name: Show environments
run: |
sw_vers
xcodebuild -version
swift --version
- uses: actions/checkout@v1
- name: Checkout submodules
run: |
git submodule update --init
- name: Lint Swift
run: |
swiftlint
- name: Unit Test
run: |
set -o pipefail
xcodebuild test -workspace CotEditor.xcworkspace -scheme CotEditor CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c
- name: Unit Test for SyntaxMapBuilder
run: |
cd SyntaxMapBuilder
swift build
swift test 2>&1 | xcpretty -c
| name: Test
on: [push, pull_request]
jobs:
macOS:
runs-on: macos-11
steps:
- name: Show environments
run: |
sw_vers
xcodebuild -version
swift --version
- uses: actions/checkout@v1
- name: Checkout submodules
run: |
git submodule update --init
- name: Lint Swift
run: |
swiftlint
- name: Unit Test
run: |
set -o pipefail
xcodebuild test -workspace CotEditor.xcworkspace -scheme CotEditor CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c
- name: Unit Test for SyntaxMapBuilder
run: |
cd SyntaxMapBuilder
swift build
swift test 2>&1 | xcpretty -c
| Use macOS 11 for test ci | Use macOS 11 for test ci
| YAML | apache-2.0 | onevcat/CotEditor,onevcat/CotEditor,onevcat/CotEditor |
4836ec93f834e0635751bc3eb50800fee06fb12d | .github/workflows/main.yml | .github/workflows/main.yml | # This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggerthe work flow on new release tag
release:
branches: [ master ]
types: [ created ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Android Sign
uses: Tlaster/android-sign@v1.2.2
with:
# The directory to find your release to sign
releaseDirectory: |
app/build/outputs/apk/release
app/build/outputs/bundle/release
signingKeyBase64: ${{ secrets.SIGNINGKEYBASE64 }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEYSTOREPASSWORD }}
keyPassword: ${{ secrets.KEYPASSWORD }}
| name: BuildAndSignProdAPK
# Controls when the action will run.
on:
# Trigger the workflow on new release tag
release:
types: [published, created]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build_and_sign:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout code
- uses: actions/checkout@v2
- name: Build Android project
run: ./gradlew assembleProd
- name: Android Sign
uses: Tlaster/android-sign@v1.2.2
with:
# The directory to find your release to sign
releaseDirectory: |
app/build/outputs/apk/prod/release
signingKeyBase64: ${{ secrets.SIGNINGKEYBASE64 }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEYSTOREPASSWORD }}
keyPassword: ${{ secrets.KEYPASSWORD }} | Update the github workflow to build and sign | Update the github workflow to build and sign
| YAML | apache-2.0 | PowerInside/syncplayer,PowerInside/syncplayer |
34d3ff9a8d7818b8069bb9aeb346718859c4e6af | .github/workflows/mypy.yml | .github/workflows/mypy.yml | name: Python type check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Download submodules
run: git submodule update --init --recursive
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
- name: Lint with mypy
run: mypy -m lark || true
| name: Python type check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Download submodules
run: git submodule update --init --recursive
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
- name: Lint with mypy
run: mypy -m lark || true
| Use Python 3.8 for MyPy. | Use Python 3.8 for MyPy.
| YAML | mit | erezsh/lark,lark-parser/lark |
7524690d0160abdce8db95d59a0240d941a8fd43 | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
go:
- "1.15"
- "1.14"
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: restore cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ matrix.os }}-go-${{ matrix.go }}-${{ hashFiles('go.sum') }}
restore-keys: |
${{ matrix.os }}-go-${{ matrix.go }}-
- name: Test
run: go test -v ./...
| name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
go:
- "1.16"
- "1.15"
- "1.14"
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: restore cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ matrix.os }}-go-${{ matrix.go }}-${{ hashFiles('go.sum') }}
restore-keys: |
${{ matrix.os }}-go-${{ matrix.go }}-
- name: Test
run: go test -v ./...
| Add go 1.16 to CI | Add go 1.16 to CI
| YAML | mit | tkuchiki/alp |
defd23e9db9ed51b2a6613afe3869758c972d648 | .github/workflows/test.yml | .github/workflows/test.yml | name: Test on push
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set .env file
run: cp .env.example .env
- name: Warm up stack
run: docker-compose up -d mysql elasticsearch redis
- name: Pull current image for cache
run: docker pull slovaknationalgallery/webumenia:develop
- name: Test
run: docker-compose run php bash -c "npm run testing && vendor/bin/phpunit"
| name: Test on push
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set .env file
run: cp .env.example .env
- name: Warm up stack
run: docker-compose up -d mysql elasticsearch redis
- name: Test
run: docker-compose run php bash -c "npm run testing && vendor/bin/phpunit"
| Revert "Pull current image for cache" | Revert "Pull current image for cache"
This reverts commit 8fe3f0df5f4fc54e64ba06bcea8b0dbe0b99cf3e.
| YAML | mit | SlovakNationalGallery/web-umenia-2,SlovakNationalGallery/web-umenia-2,SlovakNationalGallery/web-umenia-2,SlovakNationalGallery/web-umenia-2 |
f72027d6dd885920949ced39d72540537ed16f6b | .github/workflows/test.yml | .github/workflows/test.yml | name: Run tests
on: [push, pull_request]
env:
PACKAGE: SublimeLinter
SUBLIME_TEXT_VERSION: 3
UNITTESTING_TAG: master
jobs:
linux:
runs-on: ubuntu-latest
container:
image: sublimetext/unittesting
options: --cap-add=NET_ADMIN
env:
TRAVIS_OS_NAME: linux
steps:
- uses: actions/checkout@v1
- run: sh -e /etc/init.d/xvfb start
- run: curl -OL https://raw.githubusercontent.com/SublimeText/UnitTesting/master/sbin/github.sh
- run: |
PATH="$HOME/.local/bin:$PATH"
sh github.sh bootstrap
sh github.sh install_package_control
sh github.sh run_tests --coverage
sh github.sh run_syntax_tests --coverage
- run: |
apt-get update
apt-get install python3-pip -y
pip3 install coverage==4.5.4 codecov==2.0.15
codecov
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
| name: Run tests
on: [push, pull_request]
env:
PACKAGE: SublimeLinter
SUBLIME_TEXT_VERSION: 3
UNITTESTING_TAG: master
TRAVIS_OS_NAME: linux
jobs:
linux:
runs-on: ubuntu-latest
container:
image: sublimetext/unittesting
options: --cap-add=NET_ADMIN
steps:
- uses: actions/checkout@v1
- run: sh -e /etc/init.d/xvfb start
- run: curl -OL https://raw.githubusercontent.com/SublimeText/UnitTesting/master/sbin/github.sh
- run: |
PATH="$HOME/.local/bin:$PATH"
sh github.sh bootstrap
sh github.sh install_package_control
sh github.sh run_tests --coverage
sh github.sh run_syntax_tests --coverage
- run: |
apt-get update
apt-get install python3-pip -y
pip3 install coverage==4.5.4 codecov==2.0.15
codecov
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
| Move env definition to global scope | Move env definition to global scope
| YAML | mit | SublimeLinter/SublimeLinter3,SublimeLinter/SublimeLinter3 |
4cd62feb48397645703d4d0637c818636deb459f | ansible/roles/network-interfaces/tasks/main.yml | ansible/roles/network-interfaces/tasks/main.yml | ---
- name: Stop NetworkManager
service: name=network-manager state=stopped enabled=no
- name: Remove NetworkManager
apt: pkg=network-manager
state=absent
- name: Configure network interfaces
template:
src: etc_network_interfaces.j2
dest: /etc/network/interfaces
owner: root
group: root
mode: 0644
notify: Restart network
| ---
- name: Check if NetworkManager package is installed
shell: dpkg -l network-manager
register: nm_installed_check
failed_when: nm_installed_check.rc > 1
- name: Stop NetworkManager
service: name=network-manager state=stopped enabled=no
when: nm_installed_check == 0
- name: Remove NetworkManager
apt: pkg=network-manager
state=absent
- name: Configure network interfaces
template:
src: etc_network_interfaces.j2
dest: /etc/network/interfaces
owner: root
group: root
mode: 0644
notify: Restart network
| Check whether or not NetworkManager is actually installed before trying to remove it | Check whether or not NetworkManager is actually installed before trying to remove it
| YAML | apache-2.0 | edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi |
09936bf3905ea8b3d01662e3bbb4f4d94abe7fc5 | roles/php/handlers/main.yml | roles/php/handlers/main.yml | ---
- name: restart php72-php-fpm
service:
name: php72-php-fpm
state: restarted
| ---
- name: restart php72-php-fpm
systemd:
name: php72-php-fpm
daemon_reload: yes
state: restarted
| Rewrite service handler to systemd handler,in order to facilitate systemd reloads | PHP: Rewrite service handler to systemd handler,in order to facilitate systemd reloads
| YAML | apache-2.0 | OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy |
5c9a15c8f29d51b5552912635c715f86d2d81e0c | metadata/rocks.poopjournal.todont.yml | metadata/rocks.poopjournal.todont.yml | Categories:
- Sports & Health
License: Apache-2.0
AuthorName: Crazy Marvin & Contributors
AuthorEmail: marvin@poopjournal.rocks
AuthorWebSite: https://crazymarvin.com/
WebSite: https://www.crazymarvin.com/todont
SourceCode: https://github.com/Crazy-Marvin/ToDont
IssueTracker: https://github.com/Crazy-Marvin/ToDont/issues
Translation: https://hosted.weblate.org/engage/todont/
Donate: https://poopjournal.rocks/blog/donate/
AutoName: To Don’t
RepoType: git
Repo: https://github.com/Crazy-Marvin/ToDont
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: '1.1'
versionCode: 2
commit: v1.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.1'
CurrentVersionCode: 2
| Categories:
- Sports & Health
License: Apache-2.0
AuthorName: Crazy Marvin & Contributors
AuthorEmail: marvin@poopjournal.rocks
AuthorWebSite: https://crazymarvin.com/
WebSite: https://www.crazymarvin.com/todont
SourceCode: https://github.com/Crazy-Marvin/ToDont
IssueTracker: https://github.com/Crazy-Marvin/ToDont/issues
Translation: https://hosted.weblate.org/engage/todont/
Donate: https://poopjournal.rocks/blog/donate/
AutoName: To Don’t
RepoType: git
Repo: https://github.com/Crazy-Marvin/ToDont
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: '1.1'
versionCode: 2
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 3
commit: 414c3f10e7d1f8bcb64981449a401e98bbcce3dd
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.2'
CurrentVersionCode: 3
| Update To Don’t to 1.2 (3) | Update To Don’t to 1.2 (3)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
2fb5e30cc394a460e2215113c6225d2cd8a38b49 | defaults/main.yml | defaults/main.yml | # the username that will run the ansible script
# # user will be created along a pair of ssh key
ansible_username: ansible_admin
# git repositories location, 2 repo will be created as
# private and public
git_repositories_dir: /srv/git_repos
# directory holding the fact cache
# currently using jsonfile, since that's the easiest to deploy
cache_folder: /var/cache/ansible/
# hour to run ansible run every day, by default at 4am in the morning
# this is fed directly to the cron module
ansible_run_hour: 4
| # the username that will run the ansible script
# # user will be created along a pair of ssh key
ansible_username: ansible_admin
# git repositories location, 2 repo will be created as
# private and public
git_repositories_dir: /srv/git_repos
# directory holding the fact cache
# currently using jsonfile, since that's the easiest to deploy
cache_folder: /var/cache/ansible/
# hour to run ansible run every day, by default at 4am in the morning
# this is fed directly to the cron module
ansible_run_hour: 4
# minute to run ansible.
ansible_run_minute: 0
| Set the minute to run cron, so ansible is not run every minute at 4. | Set the minute to run cron, so ansible is not run every minute at 4.
| YAML | mit | OSAS/ansible-role-ansible_bastion,mscherer/ansible-role-ansible_bastion,OSAS/ansible-role-ansible_bastion,mscherer/ansible-role-ansible_bastion |
c42b353672322d093674dfae1fcebaf1444a658a | config/default.yml | config/default.yml | server_port: 9001
service_map_backend: http://api.hel.fi/servicemap/v1
linkedevents_backend: http://api.hel.fi/linkedevents/v0.1
otp_backend: http://144.76.78.72/otp/routers/default/plan
static_path: /static/
livereload: true
url_prefix: /
# user_location_override: [60.171111, 24.943889]
# sentry_url: http://4e10e9d3f27a440180a5e851a0228754@83.136.249.107/sentry/2
debug_state: false
geocoder_url: http://dev.hel.fi/geocoder/v1
mobile_ui_breakpoint: 768 # Mobile UI is used below this screen width.
page_size: 1000
enable_statistics: true
open311_backend: https://asiointi.hel.fi/palautews/rest/v1
open311_write_backend: https://api.hel.fi/servicemap/open311
| server_port: 9001
service_map_backend: http://api.hel.fi/servicemap/v1
linkedevents_backend: http://api.hel.fi/linkedevents/v0.1
otp_backend: http://144.76.78.72/otp/routers/default/plan
static_path: /static/
livereload: true
url_prefix: /
# user_location_override: [60.171111, 24.943889]
# sentry_url: http://4e10e9d3f27a440180a5e851a0228754@83.136.249.107/sentry/2
debug_state: false
mobile_ui_breakpoint: 768 # Mobile UI is used below this screen width.
page_size: 1000
enable_statistics: true
open311_backend: https://asiointi.hel.fi/palautews/rest/v1
open311_write_backend: https://api.hel.fi/servicemap/open311
| Remove unused geocoder api url from config. | Remove unused geocoder api url from config.
| YAML | agpl-3.0 | City-of-Helsinki/servicemap,City-of-Helsinki/servicemap,City-of-Helsinki/servicemap,vaaralav/servicemap,vaaralav/servicemap,vaaralav/servicemap |
6db5a2ac6059983fd5e2fcd36eacef4f494c396b | project.yml | project.yml | name: dry-monads
codacy_id: f2eed41bf7f04b38b0a7691c2cf6e73c
gemspec:
authors: ["Nikita Shilnikov"]
email: ["fg@flashgordon.ru"]
summary: "Common monads for Ruby"
development_dependencies:
- bundler
- rake
- rspec
- [dry-types, ">= 0.1.2"]
runtime_dependencies:
- [concurrent-ruby, "~> 1.0"]
- dry-equalizer
- [dry-core, "~> 0.4", ">= 0.4.4"]
| name: dry-monads
codacy_id: f2eed41bf7f04b38b0a7691c2cf6e73c
gemspec:
authors: ["Nikita Shilnikov"]
email: ["fg@flashgordon.ru"]
summary: "Common monads for Ruby"
development_dependencies:
- bundler
- rake
- rspec
- [dry-types, ">= 0.1.2"]
runtime_dependencies:
- [concurrent-ruby, "~> 1.0"]
- [dry-core, "~> 0.5", ">= 0.5"]
| Update dry-core and remove dry-equalizer from runtime deps | Update dry-core and remove dry-equalizer from runtime deps
| YAML | mit | dry-rb/dry-monads,dry-rb/dry-monads,dry-rb/dry-monads |
af7729ef4d85f9deebc0a5687b48d8e87a3fb95c | repository.yaml | repository.yaml | digital-service: SCRS
| digital-service: SCRS
repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
| Enforce repo yaml privacy key. | PLATOPS-BAU: Enforce repo yaml privacy key.
| YAML | apache-2.0 | hmrc/vat-registration-frontend,hmrc/vat-registration-frontend,hmrc/vat-registration-frontend |
5140e438eeb56f7ab4f857f248b28618e0c475b9 | automation/early_riser.yaml | automation/early_riser.yaml | # If the current mode is sleeping and motion is detected in the master bathroom
# an hour before sunrise or later, turn off the alarm, transition to Morning
# mode, and message Jesse.
alias: Early Riser
trigger:
platform: state
entity_id: binary_sensor.master_bath_motion_37
from: 'off'
to: 'on'
condition:
condition: and
conditions:
- condition: sun
after: sunrise
after_offset: '-1:00:00'
- condition: template
value_template: '{{
states.input_select.mode.state != "Pause" and
states.input_boolean.guests.state == "off"
}}'
- condition: template
value_template: '{{ states.input_select.mode.state == "Sleeping" }}'
action:
- service: script.turn_on
entity_id: script.mode_morning
- service: notify.slack
data_template:
message: '@jnewland :sunrise:'
target: "#general"
| # If the current mode is sleeping and motion is detected in the master bathroom
# an hour before sunrise or later, turn off the alarm, transition to Morning
# mode, and message Jesse.
alias: Early Riser
trigger:
platform: state
entity_id: binary_sensor.master_bath_motion_37
from: 'off'
to: 'on'
condition:
condition: and
conditions:
- condition: time
after: '05:00:00'
- condition: template
value_template: '{{
states.input_select.mode.state != "Pause" and
states.input_boolean.guests.state == "off"
}}'
- condition: template
value_template: '{{ states.input_select.mode.state == "Sleeping" }}'
action:
- service: script.turn_on
entity_id: script.mode_morning
- service: notify.slack
data_template:
message: '@jnewland :sunrise:'
target: "#general"
| Use a more explicit time trigger | Use a more explicit time trigger
| YAML | mit | jnewland/ha-config,jnewland/ha-config,jnewland/ha-config |
06691871750cb3a5cfc5a5163695e38466b4bf6e | packages/pe/persistent-ratelimit.yaml | packages/pe/persistent-ratelimit.yaml | homepage: https://github.com/jprider63/persistent-ratelimit
changelog-type: ''
hash: b80a8423a3e35cf57c47fcc902e6a7e8fb4acf7199aedb0c1895bdf0ba8b4f7c
test-bench-deps: {}
maintainer: dev@jamesparker.me
synopsis: A library for rate limiting activities with a persistent backend.
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.9'
time: -any
yesod: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2.0.0'
author: James Parker
latest: '0.2.0.0'
description-type: haddock
description: This packages provides a library for rate limiting activities with a
persistent backend.
license-name: MIT
| homepage: https://github.com/jprider63/persistent-ratelimit
changelog-type: ''
hash: b194b336fc9c942c975f031f67f59c4dda0112c22419b34f31656500a8542707
test-bench-deps: {}
maintainer: dev@jamesparker.me
synopsis: A library for rate limiting activities with a persistent backend.
changelog: ''
basic-deps:
base: ! '>=4.6 && <5.0'
time: -any
yesod: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2.0.0'
- '0.3.0.0'
author: James Parker
latest: '0.3.0.0'
description-type: haddock
description: This packages provides a library for rate limiting activities with a
persistent backend.
license-name: MIT
| Update from Hackage at 2017-05-11T21:43:54Z | Update from Hackage at 2017-05-11T21:43:54Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
79ed4185ce933278789a11cf2af5e4fdc08e0b1d | config/mongoid.yml | config/mongoid.yml | defaults: &defaults
host: localhost
# slaves:
# - host: slave1.local
# port: 27018
# - host: slave2.local
# port: 27019
development:
<<: *defaults
database: datajam_development
test:
<<: *defaults
database: datajam_test
# set these environment variables on your prod server
production:
uri: <%= ENV['MONGOLAB_URI'] %>
| defaults: &defaults
host: localhost
# slaves:
# - host: slave1.local
# port: 27018
# - host: slave2.local
# port: 27019
development:
<<: *defaults
database: datajam_development
test:
<<: *defaults
database: datajam_test
# set these environment variables on your prod server
production:
uri: datajam_production
| Set production db to datajam_production | Set production db to datajam_production | YAML | bsd-3-clause | sunlightlabs/sunlightlive,sunlightlabs/sunlightlive |
871f296309dcbf05ad48fd0408b48b9268b24228 | roles/haskell/tasks/main.yml | roles/haskell/tasks/main.yml | ---
- name: Install Haskell packages
homebrew: name={{ item }} state=latest
with_items:
- cabal-install
- gcc
- ghc
- name: Update cabal
shell: 'cabal update'
tags: update
- name: Install packages
shell: 'cabal install {{ dotfiles.haskell.packages | join(" ")}}'
- name: Link dotfiles
file: src={{ item }} dest=~/.{{ item | basename }} state=link
with_fileglob:
- ./*
| ---
- name: Download GHC.app
mac_pkg: |
pkg_type=app
url=https://github.com/etrepum/ghc-dot-app/releases/download/v7.8.3-r1/ghc-7.8.3-r1.zip
archive_type=zip archive_path=ghc-7.8.3.app
- name: Update cabal
shell: 'cabal update'
tags: update
- name: Install packages
shell: 'cabal install {{ dotfiles.haskell.packages | join(" ")}}'
- name: Link dotfiles
file: src={{ item }} dest=~/.{{ item | basename }} state=link
with_fileglob:
- ./*
| Use GHC.app over brew installed Haskell | Use GHC.app over brew installed Haskell
| YAML | mit | jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles |
0dd5bf9336dc77cbf75e7a7c484e42482ba30854 | config/sidekiq.yml | config/sidekiq.yml |
:verbose: false
:concurrency: 5
:timeout: 8
staging:
:concurrency: 5
production:
:concurrency: 5
:queues:
- default
- mailers | :verbose: false
:concurrency: 5
:timeout: 8
staging:
:concurrency: 5
production:
:concurrency: 5
:queues:
- default
- mailers
- open_split_time_production_default | Add prefixed queue to list to clear it out | Add prefixed queue to list to clear it out
| YAML | mit | SplitTime/OpenSplitTime,SplitTime/OpenSplitTime,SplitTime/OpenSplitTime |
4b04a7214c293c1b5d49d282b3ca7ace60b84b82 | rockety.yml | rockety.yml | options:
livereloadPort: 35729
sources:
- src: src/front
dest: public/assets/front
css:
sourcemap: true
sourcemapLocation: ./
minify: false
autoprefixer:
browsers:
- last 2 versions
vendor:
- ./node_modules/bootstrap/dist/css/bootstrap.css
styles:
less: style.less
js:
sourcemap: true
sourcemapLocation: ./
minify: false
vendor:
- ./node_modules/jquery/dist/jquery.min.js
- ./node_modules/popper.js/dist/umd/popper.min.js
- ./node_modules/bootstrap/dist/js/bootstrap.bundle.js
scripts:
- scripts.js
svg:
inline: false
watch:
- public/**/*.html | options:
livereloadPort: 35729
sources:
- src: src/front
dest: public/assets/front
css:
sourcemap: true
sourcemapLocation: ./
minify: false
autoprefixer:
browsers:
- last 2 versions
vendor:
- ./node_modules/bootstrap/dist/css/bootstrap.css
styles:
sass: style.scss
js:
sourcemap: true
sourcemapLocation: ./
minify: false
vendor:
- ./node_modules/jquery/dist/jquery.min.js
- ./node_modules/popper.js/dist/umd/popper.min.js
- ./node_modules/bootstrap/dist/js/bootstrap.bundle.js
scripts:
- scripts.js
svg:
inline: false
watch:
- public/**/*.html | Revert back to sass. The change was an accident | Revert back to sass. The change was an accident
| YAML | mit | IvanDokov/grunt,ivandokov/rockety,ivandokov/rockety,IvanDokov/grunt |
78bb5490e6feaa353d4f09d8323730809fbb7a98 | meta/main.yml | meta/main.yml | ---
galaxy_info:
author: Ben Webber
description: Provision a vanilla Minecraft server
license: Apache 2.0
min_ansible_version: 1.2
platforms:
- name: Ubuntu
versions:
- trusty
- name: Debian
versions:
- wheezy
- jessie
categories:
- system
dependencies: []
| ---
galaxy_info:
author: Ben Webber
description: Provision a vanilla Minecraft server
license: Apache 2.0
min_ansible_version: 1.2
platforms:
- name: Ubuntu
versions:
- trusty
- name: Debian
versions:
- wheezy
- jessie
- name: EL
versions:
- 7
categories:
- system
dependencies: []
| Add RHEL/CentOS support to Ansible Galaxy meta | Add RHEL/CentOS support to Ansible Galaxy meta
| YAML | apache-2.0 | devops-coop/ansible-minecraft,devops-coop/ansible-minecraft,devops-coop/ansible-minecraft |
1d592b6bc9af19cee7d470c433a2863261cb4a67 | meta/main.yml | meta/main.yml | galaxy_info:
author: Marc Trudel <mtrudel@wizcorp.jp>
description: Installs statsd on a server
company: Wizcorp K.K.
license: MIT
min_ansible_version: 1.8.1
platforms:
- name: EL
versions:
- 6
- 7
- name: debian
versions:
- wheezy
- name: ubuntu
versions:
- all
categories:
- monitoring
dependencies:
- role: nodejs
- role: firewall
service_name: statsd
tags:
- statsd
| galaxy_info:
author: Marc Trudel <mtrudel@wizcorp.jp>
description: Installs statsd on a server
company: Wizcorp K.K.
license: MIT
min_ansible_version: 1.8.1
platforms:
- name: EL
versions:
- 6
- 7
- name: debian
versions:
- wheezy
- name: ubuntu
versions:
- all
categories:
- monitoring
dependencies:
- role: nodejs
- role: firewall
role_name: statsd
tags:
- statsd
| Replace service_name by role_name in the firewall role | Replace service_name by role_name in the firewall role
| YAML | mit | tokyowizard/ansible-statsd,AerisCloud/ansible-statsd |
cbf6e295e81fde05af1a5f9458b1edcf1fd0887e | docker-compose.yml | docker-compose.yml | version: '2'
services:
frontend:
image: webwurst/caddy
volumes:
- ./docker/Caddyfile:/etc/caddy/Caddyfile
- ./certs:/etc/caddy/certs
volumes_from:
- helpy:ro
ports:
- "80:80"
- "443:443"
networks:
- front
restart: always
depends_on:
- helpy
helpy:
image: helpy/helpy
restart: always
networks:
- front
- back
volumes:
- rails-assets:/helpy/public
env_file: docker/.env
#environment:
# - DO_NOT_PREPARE=true
depends_on:
- postgres
postgres:
image: postgres:9.4
restart: always
networks:
- back
env_file: docker/.env
volumes:
- ./postgres:/var/lib/postgresql/data
volumes:
rails-assets:
driver: local
networks:
front:
driver: bridge
back:
driver: bridge
| version: '2'
services:
frontend:
image: webwurst/caddy
volumes:
- ./docker/Caddyfile:/etc/caddy/Caddyfile
- ./certs:/etc/caddy/certs
volumes_from:
- helpy:ro
ports:
- "80:80"
- "443:443"
networks:
- front
restart: always
depends_on:
- helpy
helpy:
build: .
restart: always
networks:
- front
- back
volumes:
- rails-assets:/helpy/public
env_file: docker/.env
#environment:
# - DO_NOT_PREPARE=true
depends_on:
- postgres
postgres:
image: postgres:9.4
restart: always
networks:
- back
env_file: docker/.env
volumes:
- ./postgres:/var/lib/postgresql/data
volumes:
rails-assets:
driver: local
networks:
front:
driver: bridge
back:
driver: bridge
| Use local Dockerfile as source for the application | Use local Dockerfile as source for the application
This makes it a lot easier to do local development, as one doesn't now
need to modify any files to create their custom environments.
| YAML | mit | helpyio/helpy,scott/helpy__helpdesk_knowledgebase,helpyio/helpy,scott/helpy__helpdesk_knowledgebase,helpyio/helpy,helpyio/helpy,scott/helpy__helpdesk_knowledgebase |
5f1354dae0cd07b6d3a2e00ba5cb00f1f764abff | docker-compose.yml | docker-compose.yml | www:
build: .
volumes:
- "src:/usr/src/app/src"
- "test:/usr/src/app/test"
ports:
- "8080"
environment:
- NODE_ENV
- ALLOW_ORIGINS
- AWS_ACCESS_KEY_ID
- AWS_BUCKET_NAME
- AWS_BUCKET_PATH
- AWS_BUCKET_REGION
- AWS_SECRET_ACCESS_KEY
- LIBRATO_PREFIX
- LIBRATO_TOKEN
- LIBRATO_USER
- SENTRY_DNS
| www:
build: .
volumes:
- "src:/usr/src/app/src"
- "test:/usr/src/app/test"
ports:
- "8080"
environment:
- NODE_ENV
- ALLOW_ORIGINS
- AWS_ACCESS_KEY_ID
- AWS_BUCKET_NAME
- AWS_BUCKET_PATH
- AWS_BUCKET_REGION
- AWS_SECRET_ACCESS_KEY
- LIBRATO_PREFIX
- LIBRATO_TOKEN
- LIBRATO_USER
- SENTRY_DNS
restart: always
| Add restart policy to Docker Compose configuration | Add restart policy to Docker Compose configuration
| YAML | mit | Turistforeningen/Jotunheimr |
7fd92288ec58deee46a8db0e8fbd758b50a8411c | docker-compose.yml | docker-compose.yml | version: "2"
services:
crawler:
build: .
entrypoint: scrapy people_search
volumes:
- .:/opt/linkedin_scraper
links:
- splash
environment:
SPLASH_ADDR: http://splash:8050
splash:
image: scrapinghub/splash:2.1
| version: "2"
services:
crawler:
build: .
entrypoint: scrapy people_search
volumes:
- .:/opt/linkedin_scraper
links:
- splash
environment:
SPLASH_ADDR: http://splash:8050
splash:
image: scrapinghub/splash:2.3.1
| Use newer version of Splash server Docker image. | Use newer version of Splash server Docker image.
| YAML | mit | nihn/linkedin-scraper,nihn/linkedin-scraper |
368e609257583545e8a41b6cc15e88508487c036 | docker-compose.yml | docker-compose.yml | www:
build: public
links:
- turadmin
volumes:
- "public:/usr/share/nginx/public"
- "public/default.conf:/etc/nginx/conf.d/default.conf"
- "public/mime.types:/etc/nginx/mime.types"
ports:
- "8080"
environment:
- VIRTUAL_HOST=tur.app.dnt.privat
- VIRTUAL_PORT=8080
turadmin:
build: .
volumes:
- "app.js:/usr/src/app/app.js"
- "lib:/usr/src/app/lib"
- "routes:/usr/src/app/routes"
- "test:/usr/src/app/test"
- "views:/usr/src/app/views"
ports:
- "8080"
env_file: .env
environment:
- APP_PORT=8080
- APP_URL=http://tur.app.dnt.privat
- NEW_RELIC_APP_NAME=Turadmin
- NEW_RELIC_LOG=stdout
- NEW_RELIC_NO_CONFIG_FILE=true
- NODE_ENV=development
- NTB_API_ENV=dev
- NTB_API_URL=http://dev.nasjonalturbase.no
| www:
build: public
links:
- turadmin
volumes:
- "./public:/usr/share/nginx/public"
- "./public/default.conf:/etc/nginx/conf.d/default.conf"
- "./public/mime.types:/etc/nginx/mime.types"
ports:
- "8080"
environment:
- VIRTUAL_HOST=tur.app.dnt.privat
- VIRTUAL_PORT=8080
turadmin:
image: node:argon-slim
working_dir: /usr/src/app
volumes:
- ".:/usr/src/app"
ports:
- "8080"
env_file: .env
environment:
- APP_PORT=8080
- APP_URL=http://tur.app.dnt.privat
- NEW_RELIC_APP_NAME=Turadmin
- NEW_RELIC_LOG=stdout
- NEW_RELIC_NO_CONFIG_FILE=true
- NODE_ENV=development
- NTB_API_ENV=dev
- NTB_API_URL=http://dev.nasjonalturbase.no
command: npm start
| Use Node.js Image for local dev env | Use Node.js Image for local dev env
| YAML | mit | Turistforeningen/Turadmin,Turistforeningen/Turadmin,Turistforeningen/Turadmin,Turistforeningen/Turadmin |
4cf3d4cf04614f844c80a41a1764e74e7093c434 | docker-compose.yml | docker-compose.yml | # Follow guide at https://realpython.com/blog/python/dockerizing-flask-with-compose-and-machine-from-localhost-to-the-cloud/
version: '3'
services:
web:
build: .
ports:
- 5000:5000
command: gunicorn -b 0.0.0.0:5000 ocspdash.web.wsgi:app --log-level=DEBUG
depends_on:
- db
environment:
OCSPDASH_CONNECTION: postgresql://postgres:postgres@db:5432/postgres
OCSPDASH_SECRET_KEY: ${SECRET_KEY}
CENSYS_API_ID: ${CENSYS_API_ID}
CENSYS_API_SECRET: ${CENSYS_API_SECRET}
db:
image: postgres:latest
volumes:
- db_data:/var/lib/postgres
# db:
# image: mysql:5.7
# volumes:
# - db_data:/var/lib/mysql
# environment:
# MYSQL_USER: ocspd
# MYSQL_PASSWORD: ocspd
# MYSQL_DATABASE: ocsp
# MYSQL_ROOT_PASSWORD: root
# ports:
# - 3306:3306
# command: mysqld \
# --character-set-server=utf8 \
# --collation-server=utf8_unicode_ci \
# --init-connect='SET NAMES UTF8;' \
# --innodb-flush-log-at-trx-commit=0
volumes:
db_data:
| # Follow guide at https://realpython.com/blog/python/dockerizing-flask-with-compose-and-machine-from-localhost-to-the-cloud/
version: '3'
services:
web:
build: .
ports:
- 5000:5000
command: gunicorn -b 0.0.0.0:5000 ocspdash.web.wsgi:app --log-level=DEBUG
depends_on:
- db
environment:
OCSPDASH_CONNECTION: postgresql://postgres:postgres@db:5432/postgres
OCSPDASH_SECRET_KEY: ${SECRET_KEY}
CENSYS_API_ID: ${CENSYS_API_ID}
CENSYS_API_SECRET: ${CENSYS_API_SECRET}
db:
image: postgres:latest
volumes:
- db_data:/var/lib/postgres
volumes:
db_data:
| Remove junk from docker compose | Remove junk from docker compose
| YAML | mit | scolby33/OCSPdash,scolby33/OCSPdash,scolby33/OCSPdash |
6be1fda4c760e9d678d9652082e11a1d5acd192e | docker-compose.yml | docker-compose.yml | version: '3.1'
services:
db:
image: "postgres:alpine"
volumes:
- .db:/var/lib/postgresql/data
broker:
image: "rabbitmq:alpine"
result:
image: "redis:alpine"
frontend:
build:
dockerfile: frontend/Dockerfile
context: .
volumes:
- .:/app/
- /app/node_modules
ports:
- "3000:3000"
backend:
build:
dockerfile: backend/Dockerfile
context: .
ports:
- "8000:8000"
volumes:
- ./:/home/user/app/
env_file: backend/.env
depends_on:
- db
- broker
- result
- frontend
celery:
build:
dockerfile: backend/Dockerfile
context: .
command: python manage.py celery
volumes:
- ./backend/:/home/user/app/
env_file: backend/.env
depends_on:
- db
- broker
- result
mailhog:
image: mailhog/mailhog
ports:
- "39004:1025"
- "39005:8025"
| version: '3.1'
services:
db:
image: "postgres:alpine"
volumes:
- .db:/var/lib/postgresql/data
broker:
image: "rabbitmq:alpine"
result:
image: "redis:alpine"
frontend:
build:
dockerfile: frontend/Dockerfile
context: .
volumes:
- .:/app/
- /app/node_modules
ports:
- "3000:3000"
backend:
build:
dockerfile: backend/Dockerfile
context: .
ports:
- "8000:8000"
volumes:
- ./:/home/user/app/
env_file: backend/.env
depends_on:
- db
- broker
- result
- frontend
celery:
build:
dockerfile: backend/Dockerfile
context: .
command: python manage.py celery
volumes:
- ./backend/:/home/user/app/
env_file: backend/.env
depends_on:
- db
- broker
- result
mailhog: # service for faking a SMTP server
image: mailhog/mailhog
ports:
- '1025:1025' # smtp server
- '8025:8025' # web ui
| Change mailhog ports mapping for smtp and ui | Change mailhog ports mapping for smtp and ui
| YAML | mit | vintasoftware/django-react-boilerplate,vintasoftware/django-react-boilerplate,vintasoftware/django-react-boilerplate,vintasoftware/django-react-boilerplate |
0d0053f9d2f21191e6052ff69f3461fe22886563 | docker-compose.yml | docker-compose.yml | version: '3'
services:
db:
ports:
- "8001:3306"
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: wordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
web:
depends_on:
- db
build:
context: .
dockerfile: Dockerfile
args:
woocommerce_version: 4.0.1
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DEBUG: 1
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_CONFIG_EXTRA: |
define('WP_SITEURL', 'http://' . $$_SERVER['HTTP_HOST']);
define('WP_HOME', 'http://' . $$_SERVER['HTTP_HOST']);
volumes:
- .:/var/www/html/wp-content/plugins/komoju-woocommerce
volumes:
db_data:
| version: '3'
services:
db:
ports:
- "8001:3306"
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: wordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
web:
depends_on:
- db
build:
context: .
dockerfile: Dockerfile
args:
woocommerce_version: 4.0.1
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DEBUG: 1
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_CONFIG_EXTRA: |
define( 'WP_DEBUG_LOG', '/tmp/wp-errors.log');
define( 'WP_SITEURL', 'http://' . $$_SERVER['HTTP_HOST']);
define( 'WP_HOME', 'http://' . $$_SERVER['HTTP_HOST']);
volumes:
- .:/var/www/html/wp-content/plugins/komoju-woocommerce
volumes:
db_data:
| Add WP_DEBUG_LOG option to WP config | Add WP_DEBUG_LOG option to WP config
Because the webhook response is coming out of the regular user driven
flow of the website, we need to enable logging to file to be able to see
any PHP errors that occur processing the webhook request. Specifically
setting the log file to be the /tmp directory because the default
directory is wp-content, which is controlled by root and the WP user
doesn't have permissions to write there.
| YAML | mit | komoju/komoju-woocommerce,komoju/komoju-woocommerce |
1b4936172724462d5e7b764ace5254dfb82afcb4 | docker-compose.yml | docker-compose.yml | version: '2'
services:
postgres:
build: ./docker/postgres
volumes:
- ./data/postgres:/var/lib/postgresql/data
redis:
image: redis:latest
command: redis-server --appendonly yes
volumes:
- ./data/redis:/data
bot:
build: .
command: python dog.py --docker
volumes:
- .:/opt/dogbot
depends_on:
- postgres
- redis
| version: '2'
services:
postgres:
build: ./docker/postgres
volumes:
- ./data/postgres:/var/lib/postgresql/data
redis:
image: redis:latest
command: redis-server
volumes:
- ./data/redis:/data
bot:
build: .
command: python dog.py --docker
volumes:
- .:/opt/dogbot
depends_on:
- postgres
- redis
| Make Redis use RDB (hopefully) | Make Redis use RDB (hopefully)
| YAML | mit | slice/dogbot,slice/dogbot,sliceofcode/dogbot,slice/dogbot,sliceofcode/dogbot |
c841b2c8391132d4847f539a85d5f7b4cfd16f2a | docker-compose.yml | docker-compose.yml | version: "3.7"
services:
php-fpm:
volumes:
- spddata:/var/www/html/
build:
context: .
dockerfile: 'docker/php-fpm/Dockerfile'
networks:
- spdashboard
container_name: fpm
web:
build:
context: 'docker/httpd/'
depends_on:
- php-fpm
expose:
- "80"
networks:
- spdashboard
volumes:
- spddata:/var/www/html/:nocopy
container_name: web
networks:
spdashboard:
volumes:
spddata:
| version: "3.7"
services:
php-fpm:
volumes:
- spddata:/var/www/html/
build:
context: .
dockerfile: 'docker/php-fpm/Dockerfile'
networks:
- spdashboard
container_name: fpm
web:
build:
context: .
dockerfile: 'docker/httpd/Dockerfile'
depends_on:
- php-fpm
expose:
- "80"
networks:
- spdashboard
volumes:
- spddata:/var/www/html/:nocopy
container_name: web
networks:
spdashboard:
volumes:
spddata:
| Fix docker compose build context | Fix docker compose build context
| YAML | apache-2.0 | SURFnet/sp-dashboard,SURFnet/sp-dashboard,SURFnet/sp-dashboard,SURFnet/sp-dashboard,SURFnet/sp-dashboard |
5ca798fb84467661f497f6be2798a5beb0b9ebf0 | docker-compose.yml | docker-compose.yml | version: '3.8'
# docker compose up -d
# docker compose exec app bundle exec rake
services:
app:
build:
context: .
dockerfile: docker-app/Dockerfile
tty: true
volumes:
- .:/app
depends_on:
- db
admin:
build: docker-admin
ports:
- '8080:80'
volumes:
- ./docker-admin/config.local.php:/var/www/html/config.local.php
depends_on:
- db
# environment:
# - POSTFIXADMIN_DB_TYPE=mysqli
# - POSTFIXADMIN_DB_HOST=db
# - POSTFIXADMIN_DB_USER=postfix
# - POSTFIXADMIN_DB_PASSWORD=password
# - POSTFIXADMIN_DB_NAME=postfix
db:
image: mariadb:10
ports:
- "13306:3306"
volumes:
- db-data:/var/lib/mysql
- ./docker-db/postfix.v1841.sql:/docker-entrypoint-initdb.d/postfix.sql
# - ./docker-db/postfix.v740.sql:/docker-entrypoint-initdb.d/postfix.sql
# - ./docker-db/postfix.v352.sql:/docker-entrypoint-initdb.d/postfix.sql
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=yes
- MYSQL_USER=postfix
- MYSQL_PASSWORD=password
- MYSQL_DATABASE=postfix
volumes:
db-data:
| version: '3.8'
# docker compose up -d
# docker compose exec app bundle exec rake
services:
app:
build:
context: .
dockerfile: docker-app/Dockerfile
tty: true
volumes:
- .:/app
environment:
- DATABASE_URL=mysql2://postfix:password@db/postfix
depends_on:
- db
admin:
build: docker-admin
ports:
- '8080:80'
volumes:
- ./docker-admin/config.local.php:/var/www/html/config.local.php
depends_on:
- db
# environment:
# - POSTFIXADMIN_DB_TYPE=mysqli
# - POSTFIXADMIN_DB_HOST=db
# - POSTFIXADMIN_DB_USER=postfix
# - POSTFIXADMIN_DB_PASSWORD=password
# - POSTFIXADMIN_DB_NAME=postfix
db:
image: mariadb:10
ports:
- "13306:3306"
volumes:
- db-data:/var/lib/mysql
- ./docker-db/postfix.v1841.sql:/docker-entrypoint-initdb.d/postfix.sql
# - ./docker-db/postfix.v740.sql:/docker-entrypoint-initdb.d/postfix.sql
# - ./docker-db/postfix.v352.sql:/docker-entrypoint-initdb.d/postfix.sql
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=yes
- MYSQL_USER=postfix
- MYSQL_PASSWORD=password
- MYSQL_DATABASE=postfix
volumes:
db-data:
| Set up DATABASE_URL for service app | Set up DATABASE_URL for service app
| YAML | mit | krhitoshi/postfix_admin,krhitoshi/postfix_admin |
5ff694ee56c719ea1b9080b92530329bb9e5e549 | docker-compose.yml | docker-compose.yml | version: "3"
services:
mongo:
image: mongo:3.4.9
container_name: mongo
restart: always
volumes:
- ./ops/mongo.conf:/etc/mongo.conf
- /data/go-bookmarks/mongodb:/data/db
api:
build: .
container_name: api
restart: always
environment:
PORT: 4070
MONGO_URL: mongo/bookmarks
ports:
- "4070:4070"
depends_on:
- mongo | version: "3"
services:
mongo:
image: mongo:3.7.9
container_name: mongo
restart: always
volumes:
- ./ops/mongo.conf:/etc/mongo.conf
- /data/go-bookmarks/mongodb:/data/db
api:
build: .
container_name: api
restart: always
environment:
PORT: 4070
MONGO_URL: mongo/bookmarks
ports:
- "4070:4070"
depends_on:
- mongo | Update mongo Docker tag to v3.7.9 | Update mongo Docker tag to v3.7.9
| YAML | mit | batazor/Go-BookMarks |
15430868f73db0d0f388535c0cb6537326397d77 | docker-compose.yml | docker-compose.yml | version: '2'
services:
server:
build: .
environment:
- POSTGRES_PASSWORD=postgres
entrypoint: /entrypoint.sh
expose:
- "5432"
command: postgres -c config_file='/conf/postgresql.conf'
ports:
- "5432:5432"
volumes:
- ./data:/data
- ./conf:/conf:ro
- ./conf.d:/conf.d:ro
- ./initdb.d:/initdb.d:ro
- /net/bioaps01/srv/nfs4/solexa:/mnt/solexa:ro
| version: '3'
services:
server:
build: .
environment:
- POSTGRES_PASSWORD=postgres
entrypoint: /entrypoint.sh
expose:
- "5432"
command: postgres -c config_file='/conf/postgresql.conf'
ports:
- "5432:5432"
volumes:
- ./data:/data
- ./conf:/conf:ro
- ./conf.d:/conf.d:ro
- ./initdb.d:/initdb.d:ro
- solexa:/mnt/solexa:ro
volumes:
solexa:
driver: local
driver_opts:
{type: 'nfs', device: ':/srv/nfs4/solexa', o: 'addr=bioaps01,ro,resvport'}
| Add named volume for /mnt/solexa | Add named volume for /mnt/solexa
| YAML | mit | wjv/mypg |
fbc6802d690c5fb002506313ceba543b6b5ab511 | docker-compose.yml | docker-compose.yml | db:
environment:
MYSQL_ROOT_PASSWORD: root
hostname: exitus-mysql
image: centurylink/mysql
ports:
- 3306
volumes:
- .data:/var/lib/mysql
web:
build: docker/development_image/
command: cd /app/test/carnival-sample-application && bundle exec rails s --pid=/tmp/server.pid
environment:
BUNDLE_APP_CONFIG: /app/.bundle
VIRTUAL_HOST: web.carnival.dev
links:
- db
ports:
- 3000
volumes:
- .:/app
working_dir: /app
| db:
environment:
MYSQL_ROOT_PASSWORD: root
hostname: exitus-mysql
image: centurylink/mysql
ports:
- 3306
volumes:
- .data:/var/lib/mysql
web:
build: docker/development_image/
command: cd /app/spec/dummy/ && bundle exec rails s --pid=/tmp/server.pid
environment:
BUNDLE_APP_CONFIG: /app/.bundle
VIRTUAL_HOST: web.carnival.dev
links:
- db
ports:
- 3000
volumes:
- .:/app
working_dir: /app
| Fix docker run command on web container | Fix docker run command on web container
| YAML | mit | Vizir/carnival,Vizir/carnival,dsakuma/carnival,dsakuma/carnival,dsakuma/carnival,Vizir/carnival,dsakuma/carnival,cartolari/carnival,Vizir/carnival,cartolari/carnival,cartolari/carnival,cartolari/carnival,dsakuma/carnival,cartolari/carnival,Vizir/carnival |
b8961b9e699dad630bebc6f3d2afa66627bc01e6 | docker-compose.yml | docker-compose.yml | version: '2'
services:
website:
build: .
ports:
- "8000:8000"
volumes:
- '.:/isserviceup'
redis:
image: redis
command: redis-server --requirepass devpassword
volumes:
- 'redis:/var/lib/redis/data'
celery:
build: .
command: celery worker -B -l info -A isserviceup.celeryapp.app
volumes:
- '.:/isserviceup'
volumes:
redis: | version: '2'
services:
website:
build: .
ports:
- "8000:8000"
volumes:
- '.:/isserviceup'
command: gunicorn -c "isserviceup/config/gunicorn.py" isserviceup.app:app --reload
redis:
image: redis
command: redis-server --requirepass devpassword
volumes:
- 'redis:/var/lib/redis/data'
celery:
build: .
command: celery worker -B -l info -A isserviceup.celeryapp.app
volumes:
- '.:/isserviceup'
volumes:
redis: | Add reload flag when running gunicorn in development | Add reload flag when running gunicorn in development
| YAML | apache-2.0 | marcopaz/is-service-up,marcopaz/is-service-up,marcopaz/is-service-up |
a766cdaf57ee1fc43019b52fe2fcc3cf03158a78 | metadata/com.aurora.adroid.yml | metadata/com.aurora.adroid.yml | Categories:
- System
License: GPL-3.0-only
AuthorName: Rahul Kumar Patel
AuthorEmail: whyorean@gmail.com
WebSite: https://auroraoss.com
SourceCode: https://gitlab.com/AuroraOSS/auroradroid
IssueTracker: https://gitlab.com/AuroraOSS/auroradroid/issues
Changelog: https://gitlab.com/AuroraOSS/auroradroid/blob/HEAD/CHANGELOG
Donate: https://www.paypal.me/whyorean
AutoName: Aurora Droid
Description: |-
An alternative to the default F-Droid app with an intuitive UI and
multiple great features, such as
* Many repos listed and can be enabled
* Beautiful design - Follows latest Material Design guidelines
* Powerful download manager - Pause, resume and retry downloading apps
* Previous releases - Enables downloading old releases
* Lists architectures (arm, arm64 ...) and minimal Android versions
RepoType: git
Repo: https://gitlab.com/AuroraOSS/auroradroid.git
Builds:
- versionName: 1.0.3
versionCode: 3
commit: 1.0.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.0.3
CurrentVersionCode: 3
| Categories:
- System
License: GPL-3.0-only
AuthorName: Rahul Kumar Patel
AuthorEmail: whyorean@gmail.com
WebSite: https://auroraoss.com
SourceCode: https://gitlab.com/AuroraOSS/auroradroid
IssueTracker: https://gitlab.com/AuroraOSS/auroradroid/issues
Changelog: https://gitlab.com/AuroraOSS/auroradroid/blob/HEAD/CHANGELOG
Donate: https://www.paypal.me/whyorean
AutoName: Aurora Droid
Description: |-
An alternative to the default F-Droid app with an intuitive UI and
multiple great features, such as
* Many repos listed and can be enabled
* Beautiful design - Follows latest Material Design guidelines
* Powerful download manager - Pause, resume and retry downloading apps
* Previous releases - Enables downloading old releases
* Lists architectures (arm, arm64 ...) and minimal Android versions
RepoType: git
Repo: https://gitlab.com/AuroraOSS/auroradroid.git
Builds:
- versionName: 1.0.3
versionCode: 3
commit: 1.0.3
subdir: app
gradle:
- yes
- versionName: 1.0.4
versionCode: 4
commit: 1.0.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.0.4
CurrentVersionCode: 4
| Update Aurora Droid to 1.0.4 (4) | Update Aurora Droid to 1.0.4 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
2f8ec37c42d0df016f4cf405e9d12569a589c740 | .github/workflows/ci-build.yml | .github/workflows/ci-build.yml | name: Build
on:
workflow_dispatch:
create:
tags:
- v*;
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
# - name: Build with Gradle
# id: build
# run: ./gradlew build
- uses: eskatos/gradle-command-action@v1
with:
arguments: build
wrapper-cache-enabled: true
dependencies-cache-enabled: true
configuration-cache-enabled: true
- name: Assemble Release Bundle
run: |
./gradlew bundleRelease
- name: Sign Release
uses: r0adkll/sign-android-release@v1
with:
releaseDirectory: app/build/outputs/bundle/release
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
- name: Upload to Play Store
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
packageName: com.benny.pxerstudio
releaseFiles: app/build/outputs/bundle/release/*.aab
track: production
| name: Build
on:
workflow_dispatch:
create:
tags:
- v*;
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
# - name: Build with Gradle
# id: build
# run: ./gradlew build
- uses: eskatos/gradle-command-action@v1
with:
arguments: build
wrapper-cache-enabled: true
dependencies-cache-enabled: true
configuration-cache-enabled: true
- name: Assemble Release Bundle
run: |
./gradlew bundleRelease
- name: Sign Release
uses: r0adkll/sign-android-release@v1
with:
releaseDirectory: app/build/outputs/bundle/release
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
- name: Upload to Play Store
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
packageName: com.benny.pxerstudio
releaseFiles: app/build/outputs/bundle/release/*.aab
track: production
| Add gradle wrapper validation action | Add gradle wrapper validation action
| YAML | apache-2.0 | BennyKok/PxerStudio,BennyKok/PxerStudio |
436588156a08fc17ad5a651a727fae6a6f0a03a1 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Flow
email: prar@hawaii.edu
description: Flow makes your life easier.
baseurl: "/flow" # the subpath of your site, e.g. /blog
url: "https://flow.coe.hawaii.edu" # the base hostname & protocol for your site
# Social Media
#twitter_username: jekyllrb
#github_username: jekyll
# Build settings
markdown: kramdown
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Flow Tutorials
email: prar@hawaii.edu
description: Flow makes your life easier.
baseurl: "/flow" # the subpath of your site, e.g. /blog
url: "https://flow.coe.hawaii.edu" # the base hostname & protocol for your site
# Build settings
markdown: kramdown
| Change site title to make site more intuitive on individual pages. | Change site title to make site more intuitive on individual pages.
| YAML | apache-2.0 | uhm-coe/assist,uhm-coe/assist,uhm-coe/assist,uhm-coe/assist |
75d29f7a0a03c7f83bb9b74a008abe1479fdbc73 | _config.yml | _config.yml | ##The website title
name: Neeley Ops
##Markdown processor
markdown: kramdown
##syntax highlighter. change it to pygments
highlighter: pygments
gems: [jekyll-paginate]
##define base_url for valid usage in sitemap.xml and robots.txt
base_url: http://neeleyops.com
sass:
sass_dir: _sass
style: :compressed
paginate: 5
paginate_path: "page:num"
##The website description (to be used in meta tags)
description: The personal website of Dave Neeley. I share the projects I work on, and talk about stuff that matters to me. I don't expect anyone to read it.
##Some frequently used keywords on your website
keywords: development, operations, devops, DevOps, neeley, powershell, saltstack, continuous, integration
##define this for disqus comment support
#disqus: forumname
##set this to enable google analytics
#ga_id: analyticsID
#ga_domain: analyticsDomain
##Some commonly used links
links:
facebook: dave.neeley1
twitter: daveneeley
email: dave.neeley@gmail.com
github: daveneeley
##put desired image in img/ directory and set the value accordingly. If not defined, a placeholder image will be used.
about_image: MeAndTheWifey.jpg
##comment this if you want full width posts with no sidebar
sidebar: on
| ##The website title
name: Neeley Ops
##Markdown processor
markdown: kramdown
##syntax highlighter. change it to pygments
highlighter: rouge
gems: [jekyll-paginate]
##define base_url for valid usage in sitemap.xml and robots.txt
base_url: http://neeleyops.com
sass:
sass_dir: _sass
style: :compressed
paginate: 5
paginate_path: "page:num"
##The website description (to be used in meta tags)
description: The personal website of Dave Neeley. I share the projects I work on, and talk about stuff that matters to me. I don't expect anyone to read it.
##Some frequently used keywords on your website
keywords: development, operations, devops, DevOps, neeley, powershell, saltstack, continuous, integration
##define this for disqus comment support
#disqus: forumname
##set this to enable google analytics
#ga_id: analyticsID
#ga_domain: analyticsDomain
##Some commonly used links
links:
facebook: dave.neeley1
twitter: daveneeley
email: dave.neeley@gmail.com
github: daveneeley
##put desired image in img/ directory and set the value accordingly. If not defined, a placeholder image will be used.
about_image: MeAndTheWifey.jpg
##comment this if you want full width posts with no sidebar
sidebar: on
| Update to rouge per github support email | Update to rouge per github support email | YAML | mit | daveneeley/daveneeley.github.io,daveneeley/daveneeley.github.io |
340df04f13d859e22ebc3c34924521889243ae46 | _config.yml | _config.yml | name: pad - Guides, resources, notes, docs and knowledge for everything Oscar.
sass:
style: compressed
markdown: kramdown
kramdown:
toc_levels: 1..2
hard_wrap: true
auto_id_stripping: true
auto_ids: true
collections:
- resources
defaults:
-
scope:
path: ""
type: "pages"
values:
layout: "default"
-
scope:
path: ""
type: "resources"
values:
permalink: "/:basename"
| name: pad - Guides, resources, notes, docs and knowledge for everything Oscar.
sass:
style: compressed
markdown: kramdown
kramdown:
toc_levels: 1..2
hard_wrap: true
auto_id_stripping: true
auto_ids: true
collections:
- docs
defaults:
-
scope:
path: ""
type: "pages"
values:
layout: "default"
-
scope:
path: ""
type: "docs"
values:
permalink: "/:basename"
| Change from resources to docs | Change from resources to docs
As "site.resources" can be confusing and mixed up | YAML | mit | oscarb/pad,oscarb/pad,oscarb/pad |
19dee133108664959a21ea40875412d75647b22a | _config.yml | _config.yml | name: Made in Dublin
description: A collection of products and services crafted in Dublin.
keywords: dublin, ireland, startups, companies, tech, technology
exclude: [_less, _img, _css, _js, _icons, node_modules, s3_website.yml, package.json, README.md, GruntFile.js, Gemfile, Gemfile.lock]
safe: false
source: .
destination: ./_site
port: 3000 | name: Made in Dublin
description: A collection of products and services crafted in Dublin.
keywords: dublin, ireland, startups, companies, tech, technology
exclude: [_less, _img, _css, _js, _icons, node_modules, s3_website.yml, package.json, README.md, GruntFile.js, Gemfile, Gemfile.lock]
safe: false
source: .
destination: ./_site
port: 3000
markdown: kramdown
| Use kramdown markdown interpreter to make Github.io happy | Use kramdown markdown interpreter to make Github.io happy
| YAML | mit | madeindublin/madeindublin.github.io,madeindublin/madeindublin.github.io,madeindublin/madeindublin.github.io |
f50cb41d1f20352c0910f2f0108400f6f524d066 | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: pretty
relative_permalinks: true
# Setup
title: Hyde
tagline: 'A Jekyll theme'
description: 'A brazen two-column <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that pairs a prominent sidebar with uncomplicated content. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.'
url: http://hyde.getpoole.com
baseurl: /
author:
name: 'Mark Otto'
url: https://twitter.com/mdo
paginate: 5
# Custom vars
version: 2.1.0
github:
repo: https://github.com/poole/hyde
| # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: pretty
relative_permalinks: true
# Setup
title: Hyde
tagline: 'A Jekyll theme'
description: 'A brazen two-column <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that pairs a prominent sidebar with uncomplicated content. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.'
#url: http://hyde.getpoole.com
baseurl: http://rkujawa.github.io/blog/
author:
name: 'Radoslaw Kujawa'
url: https://c0ff33.net
paginate: 5
# Custom vars
version: 2.1.0
github:
repo: https://github.com/rkujawa/blog
| Reconfigure for my GitHub account. | Reconfigure for my GitHub account.
| YAML | mit | rkujawa/blog |
2ff351afa6af73ee38519bf17292152cad835a3b | _config.yml | _config.yml |
title: Home of Jakob Jarosch
email: dev@jakobjarosch.de
description: > # GitHub user page of Jakob Jarosch (@foxylion)
baseurl: ""
url: "https://foxylion.github.io"
repository: "https://github.com/foxylion/foxylion.github.io"
google_analytics: UA-2072722-6
permalink : /:categories/:year/:title/
markdown : kramdown
highlighter : pygments
source: .
destination: _site
sass:
sass_dir: _scss
style: compressed
# social footer
social:
github:
slug: github
link: http://github.com/foxylion
facebook:
slug: facebook
link: http://facebook.com/foxylion
twitter:
slug: twitter
link: http://twitter.com/foxylion
instagram:
slug: instagram
link: http://instagram.com/foxylion
linkedin:
slug: linkedin
link: http://linkedin.com/in/jakobjarosch
|
title: Home of Jakob Jarosch
email: dev@jakobjarosch.de
description: > # GitHub user page of Jakob Jarosch (@foxylion)
baseurl: ""
url: "https://foxylion.github.io"
repository: "https://github.com/foxylion/foxylion.github.io"
google_analytics: UA-2072722-5
permalink : /:categories/:year/:title/
markdown : kramdown
highlighter : pygments
source: .
destination: _site
sass:
sass_dir: _scss
style: compressed
# social footer
social:
github:
slug: github
link: http://github.com/foxylion
facebook:
slug: facebook
link: http://facebook.com/foxylion
twitter:
slug: twitter
link: http://twitter.com/foxylion
instagram:
slug: instagram
link: http://instagram.com/foxylion
linkedin:
slug: linkedin
link: http://linkedin.com/in/jakobjarosch
| Use correct Google Analytics tracking code | Use correct Google Analytics tracking code
| YAML | bsd-2-clause | foxylion/foxylion.github.io,foxylion/foxylion.github.io |
21873e77e1a4520bf5ae762472e20efbd0a5b54f | cookbooks/cumulus/.rubocop.yml | cookbooks/cumulus/.rubocop.yml | Metrics/LineLength:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Style/RedundantBegin:
Enabled: false
| Metrics/LineLength:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Style/RedundantBegin:
Enabled: false
Style/RegexpLiteral:
Enabled: false
| Disable RegexpLiteral as we know its safe | Disable RegexpLiteral as we know its safe
| YAML | apache-2.0 | Vanders/ifupdown2,Vanders/ifupdown2 |
590b8941fc93f625d2eaf6eae2e3f594db7b21a8 | packages/jv/jvm-streaming.yaml | packages/jv/jvm-streaming.yaml | homepage: http://github.com/tweag/inline-java/tree/master/jvm-streaming#readme
changelog-type: ''
hash: d8c788329e0eb7060a55a87217310262ade44762229fc74587c3c5277d1dc579
test-bench-deps:
streaming: -any
base: -any
hspec: -any
jvm: -any
jvm-streaming: -any
inline-java: -any
maintainer: m@tweag.io
synopsis: Expose Java iterators as streams from the streaming package.
changelog: ''
basic-deps:
streaming: ! '>=0.1.4'
base: ! '>=4.7 && <5'
jni: ! '>=0.3.0'
jvm: ! '>=0.2.0'
singletons: ! '>=2.2'
distributed-closure: ! '>=0.3'
inline-java: ! '>=0.6'
all-versions:
- '0.1'
- '0.2'
author: Tweag I/O
latest: '0.2'
description-type: markdown
description: ! '# jvm-streaming
Expose Java iterators as streams from the streaming package.
'
license-name: BSD3
| homepage: http://github.com/tweag/inline-java/tree/master/jvm-streaming#readme
changelog-type: ''
hash: 450b02c6a0b4125ed8afbabfaed7c05f8c07605bfea4cead10ebc1b6fe38e827
test-bench-deps:
streaming: -any
base: -any
hspec: -any
jvm: -any
jvm-streaming: -any
inline-java: -any
maintainer: m@tweag.io
synopsis: Expose Java iterators as streams from the streaming package.
changelog: ''
basic-deps:
streaming: ! '>=0.1.4'
base: ! '>=4.7 && <5'
jni: ! '>=0.4.0'
jvm: ! '>=0.3.0'
singletons: ! '>=2.2'
distributed-closure: ! '>=0.3'
inline-java: ! '>=0.7'
all-versions:
- '0.1'
- '0.2'
- '0.2.1'
author: Tweag I/O
latest: '0.2.1'
description-type: markdown
description: ! '# jvm-streaming
Expose Java iterators as streams from the streaming package.
'
license-name: BSD3
| Update from Hackage at 2017-08-31T14:59:57Z | Update from Hackage at 2017-08-31T14:59:57Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
50d2c7c66ac1769d9629542ab5769922681d1d62 | packages/nl/nlopt-haskell.yaml | packages/nl/nlopt-haskell.yaml | homepage: https://github.com/peddie/nlopt-haskell
changelog-type: markdown
hash: 829a4a9a63f6a3f45af99f7109c16f1d23c2b2e3ce786c8fa31a60c885a68dd1
test-bench-deps:
base: ! '>=4.9 && <4.10'
nlopt-haskell: -any
vector: ! '>=0.10'
maintainer: Matthew Peddie <mpeddie@gmail.com>
synopsis: Low-level bindings to the NLOPT optimization library
changelog: ! '# Revision history for haskell-nlopt
## 0.1.0.0 -- 2017-27-03
* First version, for NLOPT 2.4.2. The entire API is brought out.
'
basic-deps:
base: ! '>=4.9 && <4.10'
vector: ! '>=0.10'
all-versions:
- '0.1.0.0'
author: Matthew Peddie <mpeddie@gmail.com>
latest: '0.1.0.0'
description-type: haddock
description: ! 'This library provides low-level bindings to
<http://ab-initio.mit.edu/wiki/index.php/NLopt the NLOPT optimization library>.
You will need the NLOPT library and development headers installed.'
license-name: BSD3
| homepage: https://github.com/peddie/nlopt-haskell
changelog-type: markdown
hash: 3e436a5ae44a25ceceb03c3b334768b83c21ff93db1d8ac7bdf426d3f2db224e
test-bench-deps:
base: ! '>=4.9 && <4.11'
nlopt-haskell: -any
vector: ! '>=0.10'
maintainer: Matthew Peddie <mpeddie@gmail.com>
synopsis: Low-level bindings to the NLOPT optimization library
changelog: ! '# Revision history for haskell-nlopt
## 0.1.0.0 -- 2017-27-03
* First version, for NLOPT 2.4.2. The entire API is brought out.
'
basic-deps:
base: ! '>=4.9 && <4.11'
vector: ! '>=0.10'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
author: Matthew Peddie <mpeddie@gmail.com>
latest: '0.1.1.0'
description-type: haddock
description: ! 'This library provides low-level bindings to
<http://ab-initio.mit.edu/wiki/index.php/NLopt the NLOPT optimization library>.
You will need the NLOPT library and development headers installed.'
license-name: BSD3
| Update from Hackage at 2018-01-21T06:50:54Z | Update from Hackage at 2018-01-21T06:50:54Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3b4d8a8ff54bac413ab5f7d140cb06200899f9ba | testcluster.yaml | testcluster.yaml | apiVersion: "zalan.do/v1"
kind: "Spilo"
metadata:
name: testcluster
spec:
docker_image: registry.opensource.zalan.do/acid/spilo-9.6:1.2-p5
etcd_host: etcd-client.default.svc.cluster.local:2379
volume_size: 100 # GB
resource_cpu: 100m
resource_memory: 500Mi
number_of_instances: 3
postgres_configuration:
- param: "max_connections"
value: "10"
- param: "shared_buffers"
value: "500MB"
| apiVersion: "acid.zalan.do/v1"
kind: Spilo
metadata:
name: testcluster
spec:
docker_image: registry.opensource.zalan.do/acid/spilo-9.6:1.2-p9
etcd_host: etcd-client.default.svc.cluster.local:2379
volume_size: 100 # GB
resource_cpu: 100m
resource_memory: 500Mi
number_of_instances: 3
postgres_configuration:
- param: "max_connections"
value: "10"
- param: "shared_buffers"
value: "500MB"
| Fix the vendor name in API version and update the docker image. | Fix the vendor name in API version and update the docker image.
| YAML | mit | zalando-incubator/postgres-operator,zalando-incubator/postgres-operator |
f64649dcd914dfb25bab92d1ebd1983cd9b6e5fe | tests/tests.yaml | tests/tests.yaml | bootstrap: true
reset: true
virtualenv: true
makefile:
- lint
- test
sources:
- ppa:juju/stable
packages:
- amulet
- distro-info-data
- python-cinderclient
- python-distro-info
- python-glanceclient
- python-heatclient
- python-keystoneclient
- python-neutronclient
- python-novaclient
- python-pika
- python-swiftclient
| bootstrap: true
reset: false
virtualenv: true
makefile:
- lint
- test
sources:
- ppa:juju/stable
packages:
- amulet
- distro-info-data
- python-ceilometerclient
- python-cinderclient
- python-distro-info
- python-glanceclient
- python-heatclient
- python-keystoneclient
- python-neutronclient
- python-novaclient
- python-pika
- python-swiftclient
| Update bundletester testplan yaml file | Update bundletester testplan yaml file | YAML | apache-2.0 | coreycb/charm-keystone,coreycb/charm-keystone |
1646d11505834d569ff35fbc083ee0aa704f1879 | circle.yml | circle.yml | machine:
node:
version: 4.2.2
dependencies:
override:
- npm install -g codeclimate-test-reporter
- npm install -g snyk
general:
artifacts:
- coverage
test:
post:
- codeclimate-test-reporter < coverage/lcov.info | machine:
node:
version: 4.2.2
dependencies:
override:
- npm install -g codeclimate-test-reporter
- npm install -g snyk
- npm install -g jsdoc2md
general:
artifacts:
- coverage
test:
post:
- codeclimate-test-reporter < coverage/lcov.info | Install jsdoc2md globally on CI | Install jsdoc2md globally on CI
| YAML | mit | TechnologyAdvice/obey |
28ca408c3ec332af01a24142efdeccdec5e93335 | circle.yml | circle.yml | general:
artifacts:
- "tmp"
dependencies:
post:
- npm install -g accesslint-cli
- gem install accesslint-ci
compile:
override:
- bundle exec middleman build --verbose
test:
override:
- |
bundle exec middleman server --daemon --port=4567 --watcher-disable && \
accesslint-ci scan http://localhost:4567
| general:
artifacts:
- "tmp"
machine:
node:
version: 6.1.0
dependencies:
post:
- npm install -g accesslint-cli
- gem install accesslint-ci -v 0.2.5
compile:
override:
- bundle exec middleman build --verbose
test:
override:
- |
bundle exec middleman server --daemon --port=4567 --watcher-disable && \
accesslint-ci scan http://localhost:4567
| Update accesslint-ci dependency and config | Update accesslint-ci dependency and config
| YAML | mit | thoughtbot/bourbon.io,thoughtbot/bourbon.io,thoughtbot/bourbon.io,thoughtbot/bourbon.io |
37928b65af9d472e498c4f1360d8d1c9142df0d1 | circle.yml | circle.yml | notify:
webhooks:
- url: http://td-beda.herokuapp.com/circleci_callback
| test:
post:
- cp -af target/site/* $CIRCLE_ARTIFACTS
notify:
webhooks:
- url: http://td-beda.herokuapp.com/circleci_callback
| Copy jacoco result as a CircleCI artifact | Copy jacoco result as a CircleCI artifact
| YAML | apache-2.0 | treasure-data/td-jdbc |
f5346bd3e5849ef40da4dc2c805f974fffdf46b9 | circle.yml | circle.yml | machine:
java:
version: oraclejdk8
environment:
ANDROID_HOME: /usr/local/android-sdk-linux
dependencies:
cache_directories:
- /usr/local/android-sdk-linux/build-tools
- /usr/local/android-sdk-linux/platforms
- /usr/local/android-sdk-linux/system-images
pre:
- chmod +x gradlew
override:
- if [ ! -e $ANDROID_HOME/build-tools/25.0.2 ]; then echo y | android update sdk --no-ui --all --filter build-tools-25.0.2; fi
- if [ ! -e $ANDROID_HOME/platforms/android-25 ]; then echo y | android update sdk --no-ui --all --filter android-25; fi
- echo y | android update sdk --no-ui --all --filter tools,platform-tools,extra-android-m2repository,extra-android-support,extra-google-m2repository,extra-google-google_play_services
post:
- android list targets
test:
override:
- case $CIRCLE_NODE_INDEX in 0) (source scripts/ci-helpers.sh && generateTestReports) ;; 1) (source scripts/ci-helpers.sh && inspectCode) ;; esac;
parallel: true
timeout: 900
post:
- case $CIRCLE_NODE_INDEX in 0) (./gradlew adapters:install) ;; 1) (bash <(curl -s https://codecov.io/bash)) ;; esac;
parallel: true
| machine:
java:
version: oraclejdk8
environment:
ANDROID_HOME: /usr/local/android-sdk-linux
dependencies:
cache_directories:
- /usr/local/android-sdk-linux/build-tools
- /usr/local/android-sdk-linux/platforms
- /usr/local/android-sdk-linux/system-images
pre:
- chmod +x gradlew
override:
- if [ ! -e $ANDROID_HOME/build-tools/25.0.2 ]; then echo y | android update sdk --no-ui --all --filter build-tools-25.0.2; fi
- if [ ! -e $ANDROID_HOME/platforms/android-25 ]; then echo y | android update sdk --no-ui --all --filter android-25; fi
- echo y | android update sdk --no-ui --all --filter tools,platform-tools,extra-android-m2repository,extra-android-support,extra-google-m2repository,extra-google-google_play_services
post:
- android list targets
test:
override:
- case $CIRCLE_NODE_INDEX in 0) (source scripts/ci-helpers.sh && generateTestReports) ;; 1) (source scripts/ci-helpers.sh && inspectCode) ;; esac:
parallel: true
timeout: 900
post:
- case $CIRCLE_NODE_INDEX in 0) (./gradlew adapters:install) ;; 1) (bash <(curl -s https://codecov.io/bash)) ;; esac;
parallel: true
| Fix typo in CI build script | Fix typo in CI build script
| YAML | apache-2.0 | ayltai/mopub-nativead-adapters,ayltai/mopub-nativead-adapters |
c3a34b481a749fc8f361cc205fdec5181aad307b | circle.yml | circle.yml | # Circle.yml for testing python3 with Ubuntu 14.04
machine:
pre:
- cat /etc/*release
- pyenv global 2.7.11 3.5.1
#
# python:
# version: 3.5.1
#
test:
pre:
- which python
- python --version
- which python2
- python2 --version
- which python3
- python3 --version
override:
- python3 -c 'print("OK")'
| # Circle.yml for testing python3 with Ubuntu 14.04
machine:
pre:
- cat /etc/*release
- pyenv global 2.7.11 3.5.1
tlocalest:
pre:
- which python
- v=$(python --version 2>& 1); if [ "$v" == "Python 2.7.11" ]; then echo "$v OK"; else ! echo "$v ERR"; fi
- which python2
- v=$(python2 --version 2>& 1); if [ "$v" == "Python 2.7.11" ]; then echo "$v OK"; else ! echo "$v ERR"; fi
- which python3
- v=$(python3 --version 2>& 1); if [ "$v" == "Python 3.5.1" ]; then echo "$v OK"; else ! echo "$v ERR"; fi
override:
- python3 -c 'print("OK")'
| Add actual tests for expected python versions. | Add actual tests for expected python versions.
| YAML | apache-2.0 | winksaville/circleci-python3 |
4702a717e032e073f9815e21f30c5ea424ead1ba | circle.yml | circle.yml | machine:
node:
version: 6.9.5
environment:
YARN_VERSION: 0.20.3
PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
dependencies:
pre:
- |
if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then
echo "Download and install Yarn."
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION
else
echo "The correct version of Yarn is already installed."
fi
- npm install -g grunt-cli
- gem install sass
- google-chrome --version
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- sudo apt-get update
- sudo apt-get --only-upgrade install google-chrome-stable
- google-chrome --version
override:
- yarn install
cache_directories:
- ~/.yarn
- ~/.cache/yarn
test:
override:
- yarn lint
- yarn test
| machine:
node:
version: 6.9.5
environment:
YARN_VERSION: 0.20.3
PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
dependencies:
pre:
- |
if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then
echo "Download and install Yarn."
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION
else
echo "The correct version of Yarn is already installed."
fi
- npm install -g grunt-cli
- gem install sass
- google-chrome --version
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- sudo apt-get update
- sudo apt-get --only-upgrade install google-chrome-stable
- google-chrome --version
override:
- yarn install
cache_directories:
- ~/.yarn
- ~/.cache/yarn
test:
override:
- yarn test
| Remove lint step as it is already run by test | Remove lint step as it is already run by test
| YAML | agpl-3.0 | sgmap/impact,sgmap/impact |
0ea2569474f1623cdf67eb792fd2952bf8575be1 | circle.yml | circle.yml | machine:
java:
version: oraclejdk8
environment:
DOCKER_HOST: tcp://127.0.0.1:2376
DOCKER_TLS_VERIFY: 0
MAVEN_OPTS: -Xmx512m
_JAVA_OPTIONS: "-Xms512m -Xmx1024m"
dependencies:
override:
- "sudo docker -d -e lxc -s btrfs -H 0.0.0.0:2376 -H unix:///var/run/docker.sock --log-level=debug --debug=true":
background: true
- mvn install -DskipTests
notify:
webhooks:
- url: https://webhooks.gitter.im/e/1bf1c6aa3b2aa8408c5f | machine:
java:
version: oraclejdk8
environment:
DOCKER_HOST: tcp://127.0.0.1:2376
DOCKER_TLS_VERIFY: 0
MAVEN_OPTS: -Xmx512m
_JAVA_OPTIONS: "-Xms512m -Xmx1024m"
dependencies:
override:
- "sudo docker -d -e lxc -s btrfs -H 0.0.0.0:2376 -H unix:///var/run/docker.sock --log-level=debug --debug=true":
background: true
- mvn install -DskipTests
test:
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
notify:
webhooks:
- url: https://webhooks.gitter.im/e/1bf1c6aa3b2aa8408c5f | Add capture of JUnit reports for CircleCI | Add capture of JUnit reports for CircleCI
| YAML | mit | rnorth/test-containers,outofcoffee/testcontainers-java,gorelikov/testcontainers-java,gorelikov/testcontainers-java,testcontainers/testcontainers-java,gorelikov/testcontainers-java,barrycommins/testcontainers-java,barrycommins/testcontainers-java,rnorth/test-containers,testcontainers/testcontainers-java,outofcoffee/testcontainers-java,gorelikov/testcontainers-java,testcontainers/testcontainers-java,barrycommins/testcontainers-java,barrycommins/testcontainers-java,rnorth/test-containers,outofcoffee/testcontainers-java |
9fa5a418a91abbdb51241aa5edacb71ef1a9f8c2 | packages/fo/follow-file.yaml | packages/fo/follow-file.yaml | homepage: ''
changelog-type: ''
hash: 69d9adf92f248a63384fb969783acf140d516d80c8a2a9b05a48bfb4447a3c2c
test-bench-deps:
follow-file: -any
path: -any
base: -any
hinotify: -any
directory: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Be notified when a file gets appended, solely with what was added.
changelog: ''
basic-deps:
bytestring: -any
unix: -any
path: -any
base: ! '>=4.8 && <5'
utf8-string: -any
hinotify: -any
vector: -any
directory: -any
all-versions:
- '0.0.1'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.1'
description-type: haddock
description: See module for docs
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 65a5e36f6605993f8368f6e1ac8389dae26e9263a523342da84727ee4518ab3a
test-bench-deps: {}
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Be notified when a file gets appended, solely with what was added.
changelog: ''
basic-deps:
bytestring: -any
follow-file: -any
unix: -any
path: -any
base: ! '>=4.8 && <5'
text: -any
utf8-string: -any
hinotify: -any
attoparsec: -any
attoparsec-path: -any
vector: -any
directory: -any
all-versions:
- '0.0.1'
- '0.0.1.1'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.1.1'
description-type: haddock
description: See module for docs
license-name: BSD3
| Update from Hackage at 2017-10-15T23:23:32Z | Update from Hackage at 2017-10-15T23:23:32Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8e60de84f429b81bfc39b5ecfff38c1e303dbda3 | wercker.yml | wercker.yml | # This references the default golang container from
# the Docker Hub: https://registry.hub.docker.com/u/library/golang/
# If you want Google's container you would reference google/golang
# Read more about containers on our dev center
# http://devcenter.wercker.com/docs/containers/index.html
box: attilaolah/godep
build:
# The steps that will be executed on build
# Steps make up the actions in your pipeline
# Read more about steps on our dev center:
# http://devcenter.wercker.com/docs/steps/index.html
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace
# Gets the dependencies
# Build the project
- script:
name: godep go build
code: |
godep go build ./...
# Test the project
- script:
name: godep go test
code: |
godep go test ./...
| # This references the default golang container from
# the Docker Hub: https://registry.hub.docker.com/u/library/golang/
# If you want Google's container you would reference google/golang
# Read more about containers on our dev center
# http://devcenter.wercker.com/docs/containers/index.html
box: golang
build:
# The steps that will be executed on build
# Steps make up the actions in your pipeline
# Read more about steps on our dev center:
# http://devcenter.wercker.com/docs/steps/index.html
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace
# Gets the dependencies
# Build the project
- script:
name: godep go build
code: |
go get godep
godep go build ./...
# Test the project
- script:
name: godep go test
code: |
go get godep
godep go test ./...
| Update wreker to use godep | Update wreker to use godep
| YAML | apache-2.0 | krujos/watchman,krujos/watchman |
78ac699a7c5302cf614e49b05b6faf2851b53978 | packages/po/posix-timer.yaml | packages/po/posix-timer.yaml | homepage: https://github.com/mvv/posix-timer
changelog-type: ''
hash: 664a9c451589ef42cb121a19c23fd3ad2a43d6c9457f7e44c872d91bcfba8c1c
test-bench-deps: {}
maintainer: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
synopsis: Bindings to POSIX clock and timer functions.
changelog: ''
basic-deps:
unix: -any
base: <5
transformers-base: ! '>=0.3'
all-versions:
- '0.0.2'
- '0.0.3'
- '0.1'
- '0.2'
- '0.2.0.1'
- '0.3'
author: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
latest: '0.3'
description-type: haddock
description: This package provides bindings to POSIX clock and timer functions.
license-name: BSD3
| homepage: https://github.com/mvv/posix-timer
changelog-type: ''
hash: ca1a736ffb88a57106e0a09e8012f41332d933c80ef811ab6f86268562e4d264
test-bench-deps: {}
maintainer: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
synopsis: Bindings to POSIX clock and timer functions.
changelog: ''
basic-deps:
unix: -any
base: <5
transformers-base: ! '>=0.3'
all-versions:
- '0.0.2'
- '0.0.3'
- '0.1'
- '0.2'
- '0.2.0.1'
- '0.3'
- '0.3.0.1'
author: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
latest: '0.3.0.1'
description-type: haddock
description: This package provides bindings to POSIX clock and timer functions.
license-name: BSD3
| Update from Hackage at 2017-12-04T12:19:13Z | Update from Hackage at 2017-12-04T12:19:13Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
5e20fc97d7f8f3d83599970f10770dd871b3af7f | packages/te/text-binary.yaml | packages/te/text-binary.yaml | homepage: https://github.com/kawu/text-binary
changelog-type: ''
hash: 73815941abe470b6d0e2287c054995c5ec59524bed9d2f6bfef2411a4397c48d
test-bench-deps: {}
maintainer: waszczuk.kuba@gmail.com
synopsis: Binary instances for text types
changelog: ''
basic-deps:
base: ! '>=4 && <5'
text: <1.2.1.0
binary: -any
all-versions:
- '0.1.0'
author: Jakub Waszczuk
latest: '0.1.0'
description-type: haddock
description: The library provides binary instances for strict and lazy text types.
license-name: BSD3
| homepage: https://github.com/kawu/text-binary
changelog-type: ''
hash: 3524207f26b3df55c76ecb6c4b50e761dd1a9bec605aa9d696c706d989785119
test-bench-deps: {}
maintainer: waszczuk.kuba@gmail.com
synopsis: Binary instances for text types
changelog: ''
basic-deps:
base: ! '>=4 && <5'
text: <1.2.1.0
binary: -any
all-versions:
- '0.1.0'
author: Jakub Waszczuk
latest: '0.1.0'
description-type: haddock
description: ! 'OBSOLETE: text version 1.2.1 and higher provide Binary instances for
text types out of the box.
The library provides binary instances for strict and lazy text types.'
license-name: BSD3
| Update from Hackage at 2015-05-28T10:20:39+0000 | Update from Hackage at 2015-05-28T10:20:39+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
ac6aba7138652aafeb57eb72fdb4ea970da5f5cd | www/_config.yml | www/_config.yml | title: Shrine
description: File Attachment toolkit for Ruby applications
baseurl: ""
url: shrinerb.com
markdown: kramdown
destination: build
plugins:
- jemoji
exclude:
- Gemfile
- Gemfile.lock
defaults:
-
scope:
type: pages
values:
layout: default
| title: Shrine
description: File Attachment toolkit for Ruby applications
baseurl: ""
url: https://shrinerb.com
markdown: kramdown
destination: build
plugins:
- jemoji
exclude:
- Gemfile
- Gemfile.lock
defaults:
-
scope:
type: pages
values:
layout: default
| Fix RDoc links on the website | Fix RDoc links on the website
| YAML | mit | janko-m/shrine,janko-m/shrine |
42bda697047d46e8c90f6c8c7568f8c7159a4b88 | .github/workflows/arduino_library_manager_linter.yml | .github/workflows/arduino_library_manager_linter.yml | # This is a basic workflow that is manually triggered
name: Manual Arduino Library Manager Linter
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
name:
# Friendly description to be shown in the UI instead of 'name'
description: 'Person to greet'
# Default value if no value is explicitly provided
default: 'World'
# Input has to be provided for the workflow to run
required: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
compliance: strict
| # This is a basic workflow that is manually triggered
name: Manual Arduino Library Manager Linter
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
arduino-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
compliance: strict
| Remove workflow input from lib manager action | Remove workflow input from lib manager action
* Remove workflow input from lib manager action
* Change the job name to something better. | YAML | lgpl-2.1 | markszabo/IRremoteESP8266,markszabo/IRremoteESP8266,markszabo/IRremoteESP8266,markszabo/IRremoteESP8266 |
c01590af59639b2c75bac84aa9b25df8864b02cf | packages/se/semver-range.yaml | packages/se/semver-range.yaml | homepage: ''
changelog-type: ''
hash: aa7748d3f19f1e66e0562c87e0dcfac03bdcb820ce29dde1f97e5e2affb699a9
test-bench-deps: {}
maintainer: anelson@narrativescience.com
synopsis: An implementation of semver and semantic version ranges.
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
unordered-containers: -any
text: -any
parsec: -any
classy-prelude: <0.12.5
all-versions:
- '0.1.0'
- '0.1.1'
author: Allen Nelson
latest: '0.1.1'
description-type: haddock
description: ''
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 1854b5f247ed9b14228d37506df97f60bf7054272b035c321f3c4cf208b3b5a6
test-bench-deps:
base: -any
unordered-containers: -any
hspec: -any
text: -any
parsec: -any
classy-prelude: -any
QuickCheck: -any
maintainer: anelson@narrativescience.com
synopsis: An implementation of semver and semantic version ranges.
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
unordered-containers: -any
text: -any
parsec: -any
classy-prelude: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.2.2'
author: Allen Nelson
latest: '0.2.2'
description-type: haddock
description: ''
license-name: MIT
| Update from Hackage at 2016-09-01T02:00:25+0000 | Update from Hackage at 2016-09-01T02:00:25+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
e1b67d1b3209f21b3759c25fb96a9e62d6f465d5 | .binstar.yml | .binstar.yml | # not sure how to fix the cut-and-paste between Windows and Linux here.
# Effectively we have two separate config files.
# Linux config
package: anaconda_project
platform: linux-64
engine:
- python=3.5
- python=2.7
install:
- conda install -y -q pip
- pip install coverage flake8 pep257 pytest pytest-cov yapf==0.6.2 beautifulsoup4 tornado pytest-xdist
- conda install -y -q redis pycrypto bcrypt ipython-notebook bokeh libffi ruamel_yaml anaconda-client requests
test:
- LANG=en_US.UTF-8 python setup.py test
script:
- conda build conda.recipe
build_targets: [conda]
--- # Windows config starts here
package: anaconda_project
platform: win-64
engine:
- python=3.5
install:
- conda install -y -q pip
- pip install pep257 yapf==0.6.2 pytest-xdist flake8
- conda install -y -q pycrypto bcrypt ipython-notebook bokeh ruamel_yaml coverage beautifulsoup4 tornado pytest pytest-cov anaconda-client requests
test:
- python setup.py test
before_script:
- conda info
- python -V
script:
- conda build conda.recipe
---
platform: linux-64
engine: python=2.7
build_targets: /opt/miniconda/conda-bld/noarch/*.tar.bz2
iotimeout: 600
| # not sure how to fix the cut-and-paste between Windows and Linux here.
# Effectively we have two separate config files.
# Linux config
package: anaconda_project
platform: linux-64
engine:
- python=3.5
- python=2.7
install:
- conda install -y -q pip
- pip install coverage flake8 pep257 pytest pytest-cov yapf==0.6.2 beautifulsoup4 tornado pytest-xdist
- conda install -y -q redis pycrypto bcrypt ipython-notebook bokeh libffi ruamel_yaml anaconda-client requests
test:
- LANG=en_US.UTF-8 python setup.py test
script:
- conda build conda.recipe
build_targets: [conda]
--- # Windows config starts here
package: anaconda_project
platform:
- win-32
- win-64
engine:
- python=2.7
- python=3.5
install:
- conda install -y -q pip
- pip install pep257 yapf==0.6.2 pytest-xdist flake8
- conda install -y -q pycrypto bcrypt ipython-notebook bokeh ruamel_yaml coverage beautifulsoup4 tornado pytest pytest-cov anaconda-client requests
test:
- python setup.py test
before_script:
- conda info
- python -V
script:
- conda build conda.recipe
---
platform: linux-64
engine: python=2.7
build_targets: /opt/miniconda/conda-bld/noarch/*.tar.bz2
iotimeout: 600
| Add win32 and python2 on Windows | Add win32 and python2 on Windows
Over in anaconda-client land, these break
| YAML | bsd-3-clause | conda/kapsel,conda/kapsel |
0b3dfb30df207908400b84430caf558bc88e387a | .kitchen.yml | .kitchen.yml | ---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-12.04
driver_config:
box: opscode-ubuntu-12.04
box_url: https://opscode-vm-bento.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_provisionerless.box
suites:
- name: default
run_list:
- recipe[margarine::default]
- recipe[margarine::blend]
attributes: {}
| ---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-12.04
driver_config:
box: opscode-ubuntu-12.04
box_url: https://opscode-vm-bento.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_provisionerless.box
suites:
- name: default
run_list:
- recipe[chef-solo-search]
- recipe[apt]
- recipe[margarine]
attributes: {}
| Change run_list to include chef-solo-search & apt | Change run_list to include chef-solo-search & apt
Need these cookbooks as dependencies for chef-solo/test-kitchen runs
| YAML | mit | alunduil/margarine-chef,alunduil/margarine-chef |
d9c227bd613edd5f4ef495ad488da3c01c12d2fa | .mergify.yml | .mergify.yml | pull_request_rules:
- name: backport patches to 3.0 maint branch
conditions:
- base=master
- label=backport-to-3.0
actions:
backport:
branches:
- maint-3.0.x
- name: backport patches to 3.1 maint branch
conditions:
- base=master
- label=backport-to-3.1
actions:
backport:
branches:
- maint-3.1.x
- name: backport patches to 3.2 maint branch
conditions:
- base=master
- label=backport-to-3.2
actions:
backport:
branches:
- maint-3.2.x
- name: label PRs to 3.2 maint branch
conditions:
- base=maint-3.2.x
- -closed
actions:
label:
add: [3.2.x]
- name: backport patches to 2.11 maint branch
conditions:
- base=master
- label=backport-to-2.11
actions:
backport:
branches:
- release-2.11
| pull_request_rules:
# Backport to maint(version) branches
- name: backport patches to 3.0 maint branch
conditions:
- base=master
- label=backport-to-3.0
actions:
backport:
branches:
- maint-3.0.x
- name: backport patches to 3.1 maint branch
conditions:
- base=master
- label=backport-to-3.1
actions:
backport:
branches:
- maint-3.1.x
- name: backport patches to 3.2 maint branch
conditions:
- base=master
- label=backport-to-3.2
actions:
backport:
branches:
- maint-3.2.x
- name: backport patches to 2.11 maint branch
conditions:
- base=master
- label=backport-to-2.11
actions:
backport:
branches:
- release-2.11
# Add version labels to open PRs
- name: label PRs master with 3.3.x
conditions:
- base=master
- -closed
actions:
label:
add: [3.3.x]
- name: label PRs to 3.2 maint branch
conditions:
- base=maint-3.2.x
- -closed
actions:
label:
add: [3.2.x]
- name: label PRs to 3.1 maint branch
conditions:
- base=maint-3.1.x
- -closed
actions:
label:
add: [3.1.x] | Add auto-labeling for 3.3 and 3.1 | Add auto-labeling for 3.3 and 3.1
| YAML | apache-2.0 | rundeck/rundeck,variacode/rundeck,variacode/rundeck,rundeck/rundeck,rundeck/rundeck,variacode/rundeck,variacode/rundeck,variacode/rundeck,rundeck/rundeck,rundeck/rundeck |
5c46e62f88c0b3d3fa145055eab7e6b3ca696e24 | .rubocop.yml | .rubocop.yml | inherit_from: .rubocop_todo.yml
# Avoid single-line methods.
SingleLineMethods:
AllowIfMethodIsEmpty: true
StringLiterals:
Enabled: false
Style/SignalException:
EnforcedStyle: 'only_raise'
# Use trailing rather than leading dots on multi-line call chains
Style/DotPosition:
EnforcedStyle: trailing
Style/Documentation:
Enabled: false
Metrics/MethodLength:
Max: 15
Metrics/ClassLength:
Max: 152
| inherit_from: .rubocop_todo.yml
# Avoid single-line methods.
SingleLineMethods:
AllowIfMethodIsEmpty: true
StringLiterals:
Enabled: false
Style/SignalException:
EnforcedStyle: 'only_raise'
# Use trailing rather than leading dots on multi-line call chains
Style/DotPosition:
EnforcedStyle: trailing
Style/Documentation:
Enabled: false
| Enforce Rubocop defaults for class and method length | Enforce Rubocop defaults for class and method length
| YAML | mit | gocardless/creditsafe-ruby,invoicefinance/creditsafe-ruby |
9fba9f7ed4c8dd5ce11973bcca04d5e8d5b3e805 | .rubocop.yml | .rubocop.yml | Documentation:
Enabled: false
Metrics/LineLength:
Max: 120
Metrics/MethodLength:
Max: 15
Style/ClassAndModuleChildren:
Enabled: false
Style/CollectionMethods:
Enabled: false
Style/DotPosition:
EnforcedStyle: leading
Style/FormatString:
Enabled: false
Style/AndOr:
EnforcedStyle: conditionals
Style/Not:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/RaiseArgs:
Enabled: false
Style/RegexpLiteral:
Enabled: false
Style/StringLiterals:
EnforcedStyle: single_quotes
Lint/ShadowingOuterLocalVariable:
Enabled: false
AllCops:
RunRailsCops: true
Exclude:
- 'blog.gemspec'
| Documentation:
Enabled: false
Metrics/LineLength:
Max: 120
Metrics/MethodLength:
Max: 15
Style/ClassAndModuleChildren:
Enabled: false
Style/CollectionMethods:
Enabled: false
Style/DotPosition:
EnforcedStyle: leading
Style/FormatString:
Enabled: false
Style/AndOr:
EnforcedStyle: conditionals
Style/Not:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/RaiseArgs:
Enabled: false
Style/RegexpLiteral:
Enabled: false
Style/StringLiterals:
EnforcedStyle: single_quotes
Lint/ShadowingOuterLocalVariable:
Enabled: false
AllCops:
RunRailsCops: true
Include:
- 'app/**/*.rb'
Exclude:
- 'bin/**/*'
- 'Gemfile'
- 'Rakefile'
- 'blog.gemspec'
| Apply extra rules to Rubocop | Apply extra rules to Rubocop
| YAML | mit | moneyadviceservice/marketing-blog,moneyadviceservice/marketing-blog,moneyadviceservice/marketing-blog,moneyadviceservice/marketing-blog |
63ad121a359fa727ae23c5ab20219e8af8f6194d | .styleci.yml | .styleci.yml | preset: recommended
enabled:
- long_array_syntax
- concat_with_spaces
- no_blank_lines_before_namespace
- not_operator_with_space
disabled:
- short_array_syntax
- concat_without_spaces
- single_blank_line_before_namespace
| preset: recommended
enabled:
- concat_with_spaces
- no_blank_lines_before_namespace
- not_operator_with_space
disabled:
- concat_without_spaces
- single_blank_line_before_namespace
| Tweak StyleCI rules to allow short array syntax | Tweak StyleCI rules to allow short array syntax
| YAML | mit | rock-symphony/container |
8fe9fbb4b1a3a4b9c1f82685141b5b5dcf2b537a | .codeclimate.yml | .codeclimate.yml | version: '2' # required to adjust maintainability checks
plugins:
checkstyle:
enabled: true
config:
file: '.checkstyle.xml'
checks:
# We disable all the following CodeClimate checks: Checkstyle already checks for these things and has the advantage
# that the Checkstyle config can also be used in one's IDE.
argument-count:
enabled: false
complex-logic:
enabled: false
file-lines:
enabled: false
method-complexity:
enabled: false
method-count:
enabled: false
method-lines:
enabled: false
nested-control-flow:
enabled: false
return-statements:
enabled: false
# Let's give those last two a try since there's no Checkstyle equivalent
similar-code:
enabled: true
identical-code:
enabled: true
exclude_patterns: []
| version: '2' # required to adjust maintainability checks
plugins:
checkstyle:
enabled: true
config:
file: '.checkstyle.xml'
checks:
# We disable all the following CodeClimate checks: Checkstyle already checks for these things and has the advantage
# that the Checkstyle config can also be used in one's IDE.
argument-count:
enabled: false
complex-logic:
enabled: false
file-lines:
enabled: false
method-complexity:
enabled: false
method-count:
enabled: false
method-lines:
enabled: false
nested-control-flow:
enabled: false
return-statements:
enabled: false
# Let's give those last two a try since there's no Checkstyle equivalent
similar-code:
enabled: true
identical-code:
enabled: true
exclude_patterns:
# Don't check test scope
- 'src/test/java/**'
| Exclude test classes in code climate config | Exclude test classes in code climate config
| YAML | mit | AuthMe/ConfigMe |
3cedad9c04d0d8183ee91afbaf8d634ce4ac1b74 | environment.yml | environment.yml | name: symbiflow_arch_def_base
channels:
- defaults
- symbiflow
dependencies:
- symbiflow-yosys=0.8_6021_gd8b2d1a2=20200708_083630
- symbiflow-yosys-plugins=1.0.0.7_0159_g4243dae=20201002_094407
- symbiflow-vtr=8.0.0.rc2_5097_gf1a3bcc2a=20200916_072439
- zachjs-sv2v=0.0.5_0018_ga170536
- cmake
- make
- openocd
- flake8
- nodejs
- libiconv
- iverilog
- libxml2=2.9.10=20200629_180127
- icestorm
- capnproto-java
- pip
- pip:
- -r file:requirements.txt
# Ibex dependencies
- git+https://github.com/lowRISC/edalize.git@ot
- git+https://github.com/lowRISC/fusesoc.git@ot
- mako
| name: symbiflow_arch_def_base
channels:
- defaults
- symbiflow
dependencies:
- symbiflow-yosys=0.8_6021_gd8b2d1a2=20200708_083630
- symbiflow-yosys-plugins=1.0.0.7_0159_g4243dae=20201002_094407
- symbiflow-vtr=8.0.0.rc2_5097_gf1a3bcc2a=20200916_072439
- zachjs-sv2v=0.0.5_0018_ga170536
- cmake
- make
- openocd
- flake8
- nodejs
- libiconv
- iverilog
# libxml2 2.9.10 contains an integer overflow fix required for arch-defs.
- libxml2>=2.9.10
- icestorm
- capnproto-java
- pip
- pip:
- -r file:requirements.txt
# Ibex dependencies
- git+https://github.com/lowRISC/edalize.git@ot
- git+https://github.com/lowRISC/fusesoc.git@ot
- mako
| Generalize libxml2 package spec now that 2.9.10 is released. | Generalize libxml2 package spec now that 2.9.10 is released.
This allows using the libxml2 package from anaconda rather than from
symbiflow.
Signed-off-by: Keith Rothman <1bc19627a439baf17510dc2d0b2d250c96d445a5@users.noreply.github.com>
| YAML | isc | SymbiFlow/symbiflow-arch-defs,SymbiFlow/symbiflow-arch-defs |
4ef30b874c0476c707b6cfe171124b94889a05cb | environment.yml | environment.yml | name: devito
channels:
- defaults
- conda-forge
- omnia # pytest-ipynb
dependencies:
- numpy >=1.11
- sympy ==1.0
- matplotlib
- pytest
- pytest-ipynb
- flake8>=2.1.0
- cached-property
- py-cpuinfo
- psutil>=5.1.0
- sphinx
- sphinx_rtd_theme
- pip:
- "git+git://github.com/inducer/cgen"
- "git+git://github.com/inducer/codepy"
| name: devito
channels:
- defaults
dependencies:
- numpy >=1.11
- sympy ==1.0
- matplotlib
- pytest
- flake8>=2.1.0
- cached-property
- psutil>=5.1.0
- sphinx
- sphinx_rtd_theme
- pip:
- "git+git://github.com/inducer/cgen"
- "git+git://github.com/inducer/codepy"
- pytest-ipynb >=1.1
- py-cpuinfo
| Drop external conda channels and use pip instead | Travis: Drop external conda channels and use pip instead
| YAML | mit | opesci/devito,opesci/devito |
7ed5c5576d57a9a97f196d0bf2157b0b77d84d1f | azure-pipelines.yml | azure-pipelines.yml | # Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: "ubuntu-latest"
steps:
- task: Docker@2
displayName: Login
inputs:
command: login
containerRegistry: writhem
- task: Docker@2
displayName: Build and Push
inputs:
command: buildAndPush
containerRegistry: writhem
repository: vlt/marconi
tags: |
az-$(Build.BuildNumber)
$(Build.SourceBranchName)
| # Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
stages:
- stage: build
jobs:
- job: Build
pool:
vmImage: "ubuntu-latest"
steps:
- task: Docker@2
displayName: Login
inputs:
command: login
containerRegistry: writhem
- task: Docker@2
displayName: Build and Push
inputs:
command: buildAndPush
containerRegistry: writhem
repository: vlt/marconi
tags: |
az-$(Build.BuildNumber)
$(Build.SourceBranchName)
- stage: Deploy
jobs:
- job: Deploy
pool:
vmImage: "ubuntu-latest"
steps:
- task: Docker@2
inputs:
command: run
arguments: "--rm -e PLUGIN_URL=$RANCHER_URL -e PLUGIN_ACCESS_KEY=$RANCHER_ACCESS_KEY -e PLUGIN_SECRET_KEY=$PLUGIN_SECRET_KEY -e PLUGIN_SERVICE=marconi/${Build.SourceBranchName} -e PLUGIN_DOCKER_IMAGE=vlt/marconi:az-${Build.BuildNumber}-v $(pwd):$(pwd) -w $(pwd) peloton/drone-rancher"
| Move deployment setup to yaml | Move deployment setup to yaml | YAML | isc | WritheM/Marconi |
05389eda0561838375225fb3be1d5cedc6b43ead | recipes/mplcursors/meta.yaml | recipes/mplcursors/meta.yaml | {% set name = "mplcursors" %}
{% set version = "0.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/m/mplcursors/mplcursors-{{ version }}.tar.gz
sha256: 67fbbc5c7ea979c223baf01df55e3cab425f71d3fb96ed100686873ddf3ae786
build:
number: 0
noarch: python
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv"
requirements:
host:
- python >3.4
- pip
- setuptools_scm
run:
- python >3.4
- matplotlib >2.1
test:
imports:
- mplcursors
# Cannot run the pytest suite since it isn't installed with the package.
about:
home: https://github.com/anntzer/mplcursors
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: 'mplcursors provides interactive data selection cursors for Matplotlib. It is inspired from mpldatacursor, with a much simplified API.'
doc_url: https://mplcursors.readthedocs.io/
dev_url: https://github.com/anntzer/mplcursors
extra:
recipe-maintainers:
- hmaarrfk
| {% set name = "mplcursors" %}
{% set version = "0.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/m/mplcursors/mplcursors-{{ version }}.tar.gz
sha256: 67fbbc5c7ea979c223baf01df55e3cab425f71d3fb96ed100686873ddf3ae786
build:
number: 0
noarch: python
script:
# include the tests in the conda distribution
- mv tests mplcursors/.
- "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv"
requirements:
host:
- python >3.4
- pip
- setuptools_scm
run:
- python >3.4
- matplotlib >2.1
test:
requires:
- pytest
imports:
- mplcursors
commands:
- pytest --pyargs mplcursors
about:
home: https://github.com/anntzer/mplcursors
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: 'mplcursors provides interactive data selection cursors for Matplotlib. It is inspired from mpldatacursor, with a much simplified API.'
doc_url: https://mplcursors.readthedocs.io/
dev_url: https://github.com/anntzer/mplcursors
extra:
recipe-maintainers:
- hmaarrfk
| Include the tests and run them | Include the tests and run them
| YAML | bsd-3-clause | johanneskoester/staged-recipes,igortg/staged-recipes,dschreij/staged-recipes,isuruf/staged-recipes,mcs07/staged-recipes,isuruf/staged-recipes,SylvainCorlay/staged-recipes,jjhelmus/staged-recipes,mariusvniekerk/staged-recipes,rmcgibbo/staged-recipes,jakirkham/staged-recipes,cpaulik/staged-recipes,patricksnape/staged-recipes,dschreij/staged-recipes,rmcgibbo/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,chrisburr/staged-recipes,sodre/staged-recipes,ocefpaf/staged-recipes,ocefpaf/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,basnijholt/staged-recipes,goanpeca/staged-recipes,cpaulik/staged-recipes,johanneskoester/staged-recipes,ceholden/staged-recipes,SylvainCorlay/staged-recipes,shadowwalkersb/staged-recipes,Juanlu001/staged-recipes,birdsarah/staged-recipes,petrushy/staged-recipes,synapticarbors/staged-recipes,conda-forge/staged-recipes,sodre/staged-recipes,asmeurer/staged-recipes,hadim/staged-recipes,rvalieris/staged-recipes,asmeurer/staged-recipes,scopatz/staged-recipes,mariusvniekerk/staged-recipes,mcs07/staged-recipes,rvalieris/staged-recipes,jjhelmus/staged-recipes,scopatz/staged-recipes,ReimarBauer/staged-recipes,synapticarbors/staged-recipes,kwilcox/staged-recipes,petrushy/staged-recipes,jochym/staged-recipes,ceholden/staged-recipes,kwilcox/staged-recipes,birdsarah/staged-recipes,shadowwalkersb/staged-recipes,basnijholt/staged-recipes,stuertz/staged-recipes,sodre/staged-recipes,Juanlu001/staged-recipes,stuertz/staged-recipes |
ec78e9d84d13de60b54368dd751a338d8c9af73b | image-yaml/overcloud-images.yaml | image-yaml/overcloud-images.yaml | disk_images:
-
imagename: overcloud-full
arch: amd64
type: qcow2
elements:
- hosts
- baremetal
- dhcp-all-interfaces
- overcloud-agent
- overcloud-full
- overcloud-controller
- overcloud-compute
- overcloud-ceph-storage
- puppet-modules
- hiera
- os-net-config
- stable-interface-names
- grub2
- element-manifest
- dynamic-login
- enable-packages-install
- pip-and-virtualenv-override
packages:
- python-psutil
- python-debtcollector
- plotnetcfg
- sos
- python-UcsSdk
- device-mapper-multipath
- python-networking-bigswitch
- openstack-neutron-bigswitch-lldp
- openstack-neutron-bigswitch-agent
- python-heat-agent-puppet
- python-heat-agent-hiera
- python-heat-agent-apply-config
- python-heat-agent-ansible
options:
- "--min-tmpfs 5"
-
imagename: ironic-python-agent
arch: amd64
type: qcow2
elements:
- ironic-agent
- dynamic-login
- element-manifest
- network-gateway
- enable-packages-install
- pip-and-virtualenv-override
packages:
- python-hardware-detect
options:
- "--min-tmpfs=5"
| disk_images:
-
imagename: overcloud-full
arch: amd64
type: qcow2
elements:
- hosts
- baremetal
- dhcp-all-interfaces
- overcloud-agent
- overcloud-full
- overcloud-controller
- overcloud-compute
- overcloud-ceph-storage
- puppet-modules
- hiera
- os-net-config
- stable-interface-names
- grub2
- element-manifest
- dynamic-login
- enable-packages-install
- pip-and-virtualenv-override
packages:
- python-psutil
- python-debtcollector
- plotnetcfg
- sos
- device-mapper-multipath
- python-heat-agent-puppet
- python-heat-agent-hiera
- python-heat-agent-apply-config
- python-heat-agent-ansible
options:
- "--min-tmpfs 5"
-
imagename: ironic-python-agent
arch: amd64
type: qcow2
elements:
- ironic-agent
- dynamic-login
- element-manifest
- network-gateway
- enable-packages-install
- pip-and-virtualenv-override
packages:
- python-hardware-detect
options:
- "--min-tmpfs=5"
| Remove remaining vendor plugins from default image YAML | Remove remaining vendor plugins from default image YAML
Trunk is again broken by a vendor plugin not keeping up with
deprecations in neutron. This time it is the bigswitch plugin
that is using code from neutron that was moved to neutron-lib.
There is not really any reason to have these vendor plugins
installed in the default YAML. If the vendor wants to build images
for TripleO in their own CI, it is simply a matter of passing an
extra yaml with the packages key.
Change-Id: Ib7c10f2dbd692494bd1990c3a2988308096743e7
Closes-Bug: 1649284
| YAML | apache-2.0 | openstack/tripleo-common,openstack/tripleo-common |
8a2b4930d0c29acc2387bae98fe27247d65a941a | test-integration/commands.yml | test-integration/commands.yml | - params:
breaker: ../../../../../bin/breaker
- description: Command help should display help information
command: '{breaker} --help'
exitcode: 0
output: 'Usage: breaker'
- description: Command init should create sample Breaker hosts file
command: '{breaker} init'
exitcode: 0
output: 'Creating sample Breaker hosts file: .breaker.json'
- description: Command format clusterssh type should display formatted hosts info
command: '{breaker} --type clusterssh format'
exitcode: 0
output: 'clusters = all dev dev1 dev2 prod prod1'
- description: Command format ansible type should display formatted hosts info
command: '{breaker} --type ansible format'
exitcode: 0
output: '\[all\]\ndev1.com\ndev2.net\nprod1.org\n'
- description: Command format sshconfig type should display formatted hosts info
command: '{breaker} --type sshconfig format'
exitcode: 0
output: 'HostName dev1.com'
- description: Command ssh should fail due to invalid remote host
command: '{breaker} ssh "uname -a"'
exitcode: 0
output: 'ssh -i path/to/key1 user1@dev1.com:221 ''uname -a'''
| - params:
breaker: ../../../../../bin/breaker
- description: Command help should display help information
command: '{breaker} --help'
exitcode: 0
output: 'Usage: breaker'
- description: Command init should create sample Breaker hosts file
command: '{breaker} init'
exitcode: 0
output: 'Creating sample Breaker hosts file: .breaker.json'
- description: Command format clusterssh type should display formatted hosts info
command: '{breaker} --type clusterssh format'
exitcode: 0
output: 'clusters = all dev dev1 dev2 prod prod1'
- description: Command format ansible type should display formatted hosts info
command: '{breaker} --type ansible format'
exitcode: 0
output: '\[all\]\ndev1.com\ndev2.net\nprod1.org\n'
- description: Command format sshconfig type should display formatted hosts info
command: '{breaker} --type sshconfig format'
exitcode: 0
output: 'HostName dev1.com'
- description: Command ssh should fail due to invalid remote host and missing key
command: '{breaker} ssh "uname -a"'
exitcode: 0
output: 'ssh -i path/to/key1 -p 221 user1@dev1.com ''uname -a'''
| Fix integration test output check following port change. | Fix integration test output check following port change.
| YAML | mit | cliffano/breaker |
cba072451b6b4d39c753225bb5a9390e18fae76c | ansible/playbook.yml | ansible/playbook.yml | ---
- hosts : workstation
connection : local
vars_files:
- vars/apps.yml
- vars/system.yml
roles:
# init
- { role: common/init, tags: [ "install", "init" ] }
# get facts from shell
- { role: common/shell_facts, tags: [ "install" ] }
# apps
- { role: apps/backup, tags: [ "install", "apps" ] }
- { role: apps/install, tags: [ "install", "apps" ] }
- { role: apps/undo, tags: [ "undo", "apps" ] }
# system
- { role: system/backup, tags: [ "install", "system" ] }
- { role: system/install, tags: [ "install", "system" ] }
- { role: system/undo, tags: [ "undo", "system" ] }
# config
- { role: config/install, tags: [ "install", "config" ] }
# clean up
- { role: common/clean_up, tags: [ "install", "undo" ] }
- { role: common/space_cowboy, tags: [ "install", "undo" ] }
| ---
- hosts : workstation
connection : local
vars_files:
- vars/apps.yml
- vars/system.yml
roles:
# init
- { role: common/init, tags: [ "install", "init" ] }
# check sudo
- { role: common/check_sudo, tags: [ "install" ] }
# get facts from shell
- { role: common/shell_facts, tags: [ "install" ] }
# apps
- { role: apps/backup, tags: [ "install", "apps" ] }
- { role: apps/install, tags: [ "install", "apps" ] }
- { role: apps/undo, tags: [ "undo", "apps" ] }
# system
- { role: system/backup, tags: [ "install", "system" ] }
- { role: system/install, tags: [ "install", "system" ] }
- { role: system/undo, tags: [ "undo", "system" ] }
# config
- { role: config/install, tags: [ "install", "config" ] }
# clean up
- { role: common/clean_up, tags: [ "install", "undo" ] }
- { role: common/space_cowboy, tags: [ "install", "undo" ] }
| Move sudo check outside of init, so it doesn't break init | Move sudo check outside of init, so it doesn't break init | YAML | mit | d3v1an7/fresh |
5ccd6bf4e7ca94cce84435e281b31b36c5b3ea8e | codecov.yml | codecov.yml | coverage:
# Remember to change values in build.gradle.kts too
ignore:
- **/*Event.kt
- **/*State.kt
- **/*Configuration.kt
- **/*Runner.kt
- **/*Factory.kt
- **/*Sleeper.kt | coverage:
# Remember to change values in build.gradle.kts too
ignore:
- **/*Event.kt
- **/*State.kt
- **/*Configuration.kt
- **/*Runner.kt
- **/*Factory.kt
- **/*Sleeper.kt
status:
project: off
patch: off | Disable status setting for Codecov | Disable status setting for Codecov
| YAML | isc | CarrotCodes/Warren,CarrotCodes/Warren |
a5c40e361c4b6abf8b081fb64d92ed9abe521cca | puppet/hieradata/compute.yaml | puppet/hieradata/compute.yaml | # Hiera data here applies to all compute nodes
nova::notify_on_state_change: 'vm_and_task_state'
nova::compute::enabled: true
nova::compute::instance_usage_audit: true
nova::compute::instance_usage_audit_period: 'hour'
nova::compute::vnc_enabled: true
nova::compute::libvirt::vncserver_listen: '0.0.0.0'
nova::compute::libvirt::migration_support: true
nova::compute::rbd::libvirt_rbd_secret_uuid: "%{hiera('ceph::profile::params::fsid')}"
# Changing the default from 512MB. The current templates can not deploy
# overclouds with swap. On an idle compute node, we see ~1024MB of RAM
# used. 2048 is suggested to account for other possible operations for
# example openvswitch.
nova::compute::reserved_host_memory: 2048
ceilometer::agent::auth::auth_tenant_name: 'service'
ceilometer::agent::auth::auth_endpoint_type: 'internalURL'
compute_classes: []
| # Hiera data here applies to all compute nodes
nova::notify_on_state_change: 'vm_and_task_state'
nova::notification_driver: messagingv2
nova::compute::enabled: true
nova::compute::instance_usage_audit: true
nova::compute::instance_usage_audit_period: 'hour'
nova::compute::vnc_enabled: true
nova::compute::libvirt::vncserver_listen: '0.0.0.0'
nova::compute::libvirt::migration_support: true
nova::compute::rbd::libvirt_rbd_secret_uuid: "%{hiera('ceph::profile::params::fsid')}"
# Changing the default from 512MB. The current templates can not deploy
# overclouds with swap. On an idle compute node, we see ~1024MB of RAM
# used. 2048 is suggested to account for other possible operations for
# example openvswitch.
nova::compute::reserved_host_memory: 2048
ceilometer::agent::auth::auth_tenant_name: 'service'
ceilometer::agent::auth::auth_endpoint_type: 'internalURL'
compute_classes: []
| Set notification driver for nova to send | Set notification driver for nova to send
Currently since nova compute is not configured to
send notifications to ceilometer, tempest tests
fail on tempest.api.telemetry.test_telemetry_notification_api.
Change-Id: I763b7d246ae3f5955b6f555c8fd107d2cac89787
| YAML | apache-2.0 | bcrochet/tripleo-heat-templates,dprince/tripleo-heat-templates,trozet/opnfv-tht,bcrochet/tripleo-heat-templates,bcrochet/tripleo-heat-templates,trozet/opnfv-tht,openstack/tripleo-heat-templates,dprince/tripleo-heat-templates,trozet/opnfv-tht,openstack/tripleo-heat-templates |
44e7b59d4c759b24cca6b328c57c7748b9b19f46 | roles/dotfile/tasks/main.yml | roles/dotfile/tasks/main.yml | ---
#
- name: "Launcher | Add repository Synapse"
apt_repository: repo='ppa:noobslab/apps' state=present update_cache=yes
when: {{ ansible_distribution }} == 'Ubuntu' && {{ ansible_distribution_version }} != '14.04'
- name: "Launcher | Install Synapse"
apt: pkg={{ item }} state=installed
when: {{ ansible_distribution }} == 'Ubuntu' && {{ ansible_distribution_version }} != '14.04'
with_items:
- synapse
- indicator-synapse
notify:
- Start synapse
# Install PhpStorm
- name: "PhpStorm | Download application in zip"
sudo: false
get_url: url=http://www.jetbrains.com/phpstorm/download/download_thanks.jsp?os=linux dest=/home/{{ user }}/phpstorm.tar.gz
- name: "PhpStorm | Unarchive application and move into folder /opt"
unarchive: src=/home/{{ user }}/phpstorm.tar.gz dest=/opt/phpstorm
ignore_errors: true
#
- name: Clone dotfile repo
sudo: false
git: repo=git@github.com:lesmyrmidons/dotfiles.git dest=/home/{{ user }}/.dotfiles update=yes
| ---
#
- name: "Launcher | Add repository Synapse"
apt_repository: repo='ppa:noobslab/apps' state=present update_cache=yes
when: ansible_distribution == "Ubuntu" and {{ ansible_distribution_version | version_compare('14.04', '<') }}
- name: "Launcher | Install Synapse"
apt: pkg={{ item }} state=installed
when: ansible_distribution == "Ubuntu" and {{ ansible_distribution_version | version_compare('14.04', '<') }}
with_items:
- synapse
- indicator-synapse
notify:
- Start synapse
# Install PhpStorm
- name: "PhpStorm | Download application in zip"
sudo: false
get_url: url=http://www.jetbrains.com/phpstorm/download/download_thanks.jsp?os=linux dest=/home/{{ user }}/phpstorm.tar.gz
- name: "PhpStorm | Unarchive application and move into folder /opt"
unarchive: src=/home/{{ user }}/phpstorm.tar.gz dest=/opt/phpstorm
ignore_errors: true
#
- name: Clone dotfile repo
sudo: false
git: repo=git@github.com:lesmyrmidons/dotfiles.git dest=/home/{{ user }}/.dotfiles update=yes
| Fix bug : when test distibution | Fix bug : when test distibution
| YAML | mit | ericjsilva/ansible-desktop-ubuntu |
3ba555a0f9a944b452a5fdfa1d7e0ee8311f00ed | roles/mapping/tasks/main.yml | roles/mapping/tasks/main.yml | ---
- name: mapping service
docker:
name: mapping-service
image: deconst/mapping-service
pull: always
state: reloaded
env:
CONTROL_REPO_URL: "{{ control_repository_url }}"
CONTROL_REPO_BRANCH: "{{ control_repository_branch }}"
MAP_LOG_LEVEL: "{{ map_log_level }}"
ports:
- "{{ mapping_service_port }}:8080"
restart_policy: always
| ---
- name: mapping service
docker:
name: mapping-service
image: quay.io/deconst/mapping-service
pull: always
state: reloaded
env:
CONTROL_REPO_URL: "{{ control_repository_url }}"
CONTROL_REPO_BRANCH: "{{ control_repository_branch }}"
MAP_LOG_LEVEL: "{{ map_log_level }}"
ports:
- "{{ mapping_service_port }}:8080"
restart_policy: always
| Use quay for the mapping service. | Use quay for the mapping service.
| YAML | apache-2.0 | ktbartholomew/deploy,ktbartholomew/deploy,deconst/deploy,deconst/deploy |
af0350c0c85dca73b0ff6d337b7b252c2f4fe857 | recipes/sphinx-intl/meta.yaml | recipes/sphinx-intl/meta.yaml | {% set name = "sphinx-intl" %}
{% set version = "2.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/sphinx-intl-{{ version }}.tar.gz
sha256: b25a6ec169347909e8d983eefe2d8adecb3edc2f27760db79b965c69950638b4
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=3.5
run:
- babel
- click
- python >=3.5
- setuptools
- sphinx
test:
imports:
- sphinx_intl
commands:
- pip check
requires:
- pip
about:
home: https://github.com/sphinx-doc/sphinx-intl
summary: Sphinx utility that make it easy to translate and to apply translation.
license: BSD-2-Clause
license_file: LICENSE
extra:
recipe-maintainers:
- maresb
| {% set name = "sphinx-intl" %}
{% set version = "2.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/sphinx-intl-{{ version }}.tar.gz
sha256: b25a6ec169347909e8d983eefe2d8adecb3edc2f27760db79b965c69950638b4
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
entry_points:
- sphinx-intl = sphinx_intl.commands:main
requirements:
host:
- pip
- python >=3.5
run:
- babel
- click
- python >=3.5
- setuptools
- sphinx
test:
imports:
- sphinx_intl
commands:
- pip check
- sphinx-intl --help
requires:
- pip
about:
home: https://github.com/sphinx-doc/sphinx-intl
summary: Sphinx utility that make it easy to translate and to apply translation.
license: BSD-2-Clause
license_file: LICENSE
extra:
recipe-maintainers:
- maresb
| Add entrypoint and command line test | Add entrypoint and command line test
| YAML | bsd-3-clause | conda-forge/staged-recipes,johanneskoester/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,stuertz/staged-recipes,kwilcox/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,igortg/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,johanneskoester/staged-recipes |
70e905ccefd4d6fef1bd9dc407fdc325d8ca8d0d | shared-dotfiles/tmuxinator/system.yml | shared-dotfiles/tmuxinator/system.yml | # ~/.tmuxinator/system.yml
name: system
root: ~/
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window: rbenv shell 2.0.0-p247
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
windows:
- home:
- dotfiles: cd .dotfiles
- 1password-server:
root: ~/Dropbox/1Password/1Password.agilekeychain/
panes:
- python -m SimpleHTTPServer
| # ~/.tmuxinator/system.yml
name: system
root: ~/
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window: rbenv shell 2.0.0-p247
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
windows:
- home:
- dotfiles: cd .dotfiles
| Remove 1password server tab in tmux | Remove 1password server tab in tmux
| YAML | mit | owickstrom/dotfiles |
bcd601e537700ce196ee24abcc8e8deff474a1c5 | packages/si/siphon.yaml | packages/si/siphon.yaml | homepage: https://github.com/andrewthad/colonnade#readme
changelog-type: ''
hash: 23c2c2d39b48c8b951bfd47609b67bacebca04bb725e746979cf6d569fa12e7c
test-bench-deps:
test-framework-hunit: -any
either: -any
bytestring: -any
test-framework: -any
base: -any
text: -any
test-framework-quickcheck2: -any
HUnit: -any
pipes: -any
colonnade: -any
contravariant: -any
siphon: -any
QuickCheck: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Generic types and functions for columnar encoding and decoding
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
text: -any
pipes: -any
colonnade: -any
contravariant: -any
attoparsec: -any
vector: -any
all-versions:
- '0.1'
- '0.2'
author: Andrew Martin
latest: '0.2'
description-type: haddock
description: Please see README.md
license-name: BSD3
| homepage: https://github.com/andrewthad/colonnade#readme
changelog-type: ''
hash: 20e6a353bd75fd6a55b99a7dd0e3d4e63d33885d99fa7b3762f6bca8702e6ef8
test-bench-deps:
test-framework-hunit: -any
either: -any
bytestring: -any
test-framework: -any
base: -any
text: -any
test-framework-quickcheck2: -any
HUnit: -any
pipes: -any
colonnade: -any
contravariant: -any
siphon: -any
QuickCheck: -any
profunctors: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Encode and decode CSV files
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
text: -any
pipes: -any
colonnade: ! '>=1.1 && <1.2'
contravariant: -any
attoparsec: -any
vector: -any
all-versions:
- '0.1'
- '0.2'
- '0.6'
author: Andrew Martin
latest: '0.6'
description-type: haddock
description: Please see README.md
license-name: BSD3
| Update from Hackage at 2017-02-23T22:26:50Z | Update from Hackage at 2017-02-23T22:26:50Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
60d24502d761b53e55f8fb561f2ff6fedb6e090b | packages/hs/hspec-wai-json.yaml | packages/hs/hspec-wai-json.yaml | homepage: https://github.com/hspec/hspec-wai#readme
changelog-type: ''
hash: ecd6ea1436db21606320abd15accf9c1676703a1649fc5430d3a3f1cb2fc0269
test-bench-deps:
hspec-wai-json: -any
base: ==4.*
hspec: -any
hspec-wai: -any
maintainer: ! 'Fujimura Daisuke <me@fujimuradaisuke.com>,
Simon Hengel <sol@typeful.net>'
synopsis: Testing JSON APIs with hspec-wai
changelog: ''
basic-deps:
bytestring: -any
case-insensitive: -any
base: ==4.*
hspec-wai: ==0.9.0
aeson-qq: ! '>=0.7.3'
aeson: -any
template-haskell: -any
all-versions:
- 0.5.0
- 0.6.0
- 0.6.1
- 0.7.0
- 0.8.0
- 0.9.0
author: ! 'Fujimura Daisuke <me@fujimuradaisuke.com>,
Simon Hengel <sol@typeful.net>'
latest: 0.9.0
description-type: haddock
description: Testing JSON APIs with hspec-wai
license-name: MIT
| homepage: https://github.com/hspec/hspec-wai#readme
changelog-type: ''
hash: 6db20f19fc5693a2b24df3e2e26e4f6a4d728b3e5a32a22111d1ae384d3b1930
test-bench-deps:
hspec-wai-json: -any
base: ==4.*
hspec: -any
hspec-wai: -any
maintainer: ! 'Fujimura Daisuke <me@fujimuradaisuke.com>,
Simon Hengel <sol@typeful.net>'
synopsis: Testing JSON APIs with hspec-wai
changelog: ''
basic-deps:
bytestring: -any
case-insensitive: -any
base: ==4.*
hspec-wai: ==0.9.1
aeson-qq: ! '>=0.7.3'
aeson: -any
template-haskell: -any
all-versions:
- 0.5.0
- 0.6.0
- 0.6.1
- 0.7.0
- 0.8.0
- 0.9.0
- 0.9.1
author: ! 'Fujimura Daisuke <me@fujimuradaisuke.com>,
Simon Hengel <sol@typeful.net>'
latest: 0.9.1
description-type: haddock
description: Testing JSON APIs with hspec-wai
license-name: MIT
| Update from Hackage at 2018-12-26T00:34:57Z | Update from Hackage at 2018-12-26T00:34:57Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1a2eb9c1f8bebddbcc49c7c45e8e6395ab00c83b | packages/li/linear-grammar.yaml | packages/li/linear-grammar.yaml | homepage: ''
changelog-type: ''
hash: 72062a9b71d9754908398bb5830d593bf6c619496471d145aa364403bbacbf97
test-bench-deps:
base: -any
hspec: -any
quickcheck-instances: -any
QuickCheck: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: A simple grammar for building linear equations and inclusive inequalities.
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
all-versions:
- '0.0.0.1'
- '0.0.0.2'
- '0.0.0.3'
- '0.0.0.4'
- '0.0.0.5'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.0.5'
description-type: haddock
description: ''
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 3bc160c84052342b8983c8370c88885eb378ec0d4efdcf0bb9ec50601ac81d7f
test-bench-deps:
base: -any
hspec: -any
quickcheck-instances: -any
QuickCheck: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: A simple grammar for building linear equations and inclusive inequalities.
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
all-versions:
- '0.0.0.1'
- '0.0.0.2'
- '0.0.0.3'
- '0.0.0.4'
- '0.0.0.5'
- '0.0.0.6'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.0.6'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2015-06-11T15:23:54+0000 | Update from Hackage at 2015-06-11T15:23:54+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
8b77f1884bed00c3a4e62a2cc917b70d31b94ae7 | tests/App/config/config.yml | tests/App/config/config.yml | imports:
- { resource: models/shopping-cart/shopping-cart.yml }
framework:
secret: secret
test: ~
router: { resource: "%kernel.root_dir%/config/routing.yml" }
templating: { engines: ['twig'] }
assets: ~
doctrine:
dbal:
driver: pdo_sqlite
path: 'sqlite:///:memory:'
memory: true
orm: ~
services:
Tienvx\Bundle\MbtBundle\Service\ModelRegistry.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\ModelRegistry'
public: true
Tienvx\Bundle\MbtBundle\Service\TraversalFactory.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\TraversalFactory'
public: true
Tienvx\Bundle\MbtBundle\Service\GraphBuilder.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\GraphBuilder'
public: true
Tienvx\Bundle\MbtBundle\Service\PathRunner.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\PathRunner'
public: true
Tienvx\Bundle\MbtBundle\Service\PathReducer.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\PathReducer'
public: true
Tienvx\Bundle\MbtBundle\Tests\DataFixtures\TaskFixtures:
tags: [doctrine.fixture.orm]
Tienvx\Bundle\MbtBundle\Tests\DataFixtures\BugFixtures:
tags: [doctrine.fixture.orm]
| imports:
- { resource: models/shopping-cart/shopping-cart.yml }
framework:
secret: secret
test: ~
router: { resource: "%kernel.root_dir%/config/routing.yml" }
templating: { engines: ['twig'] }
assets: ~
doctrine:
dbal:
driver: pdo_sqlite
path: :memory:
memory: true
orm: ~
services:
Tienvx\Bundle\MbtBundle\Service\ModelRegistry.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\ModelRegistry'
public: true
Tienvx\Bundle\MbtBundle\Service\TraversalFactory.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\TraversalFactory'
public: true
Tienvx\Bundle\MbtBundle\Service\GraphBuilder.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\GraphBuilder'
public: true
Tienvx\Bundle\MbtBundle\Service\PathRunner.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\PathRunner'
public: true
Tienvx\Bundle\MbtBundle\Service\PathReducer.test:
alias: 'Tienvx\Bundle\MbtBundle\Service\PathReducer'
public: true
Tienvx\Bundle\MbtBundle\Tests\DataFixtures\TaskFixtures:
tags: [doctrine.fixture.orm]
Tienvx\Bundle\MbtBundle\Tests\DataFixtures\BugFixtures:
tags: [doctrine.fixture.orm]
| Fix unable to open database file | Fix unable to open database file
| YAML | mit | tienvx/mbt-bundle |
e9bd93dbd7209e5e590faea4ce0d19a1b258dfdd | appveyor.yml | appveyor.yml | ---
version: "{build}"
install:
- set PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem update --no-document --system 2.7.8
- gem install bundler --no-document --version="<2.0.0"
- bundle install --jobs 3 --retry 3
build: off
# We are intentionally starting Rake a few times here, because we have seen some
# encoding issues when all tasks are run in just one process (`rake default`).
test_script:
- bundle exec rake spec
- bundle exec rake ascii_spec
- bundle exec rake internal_investigation
environment:
matrix:
- ruby_version: '22'
- ruby_version: 22-x64
- ruby_version: '23'
- ruby_version: 23-x64
- ruby_version: '24'
- ruby_version: 24-x64
- ruby_version: '25'
- ruby_version: 25-x64
| ---
version: "{build}"
install:
- set PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem update --no-document --system
- gem install bundler --no-document
- bundle install --jobs 3 --retry 3
build: off
# We are intentionally starting Rake a few times here, because we have seen some
# encoding issues when all tasks are run in just one process (`rake default`).
test_script:
- bundle exec rake spec
- bundle exec rake ascii_spec
- bundle exec rake internal_investigation
environment:
matrix:
- ruby_version: '25'
- ruby_version: 25-x64
| Drop old Ruby version matrix from Appveyor CI | Drop old Ruby version matrix from Appveyor CI
Appveyor is very slow in the CI matrix.
Actually, Appveyor have not recently found a problem.
This PR proposes to drop old Ruby version matrix from Appveyor CI.
| YAML | mit | tejasbubane/rubocop,vergenzt/rubocop,meganemura/rubocop,bquorning/rubocop,bquorning/rubocop,deivid-rodriguez/rubocop,vergenzt/rubocop,jmks/rubocop,mikegee/rubocop,panthomakos/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,smakagon/rubocop,maxjacobson/rubocop,meganemura/rubocop,mikegee/rubocop,panthomakos/rubocop,bquorning/rubocop,tejasbubane/rubocop,jfelchner/rubocop,vergenzt/rubocop,maxjacobson/rubocop,panthomakos/rubocop,jfelchner/rubocop,jfelchner/rubocop,jmks/rubocop,tdeo/rubocop,tdeo/rubocop,jmks/rubocop,tdeo/rubocop,meganemura/rubocop,deivid-rodriguez/rubocop,mikegee/rubocop,bbatsov/rubocop,smakagon/rubocop,bbatsov/rubocop,maxjacobson/rubocop,rrosenblum/rubocop,deivid-rodriguez/rubocop,rrosenblum/rubocop |
527732f0f4a883cfe42a82a7002b366126cee972 | appveyor.yml | appveyor.yml | os: unstable
environment:
#GH_TOKEN:
# secure: Ga+40bO3lQTmQOxV/e8JwZyd0SukxC6SFRlDZ1B478dZ29qxXDsWzStTdDt0FXg3
matrix:
- nodejs_version: 7
cache:
- "%LOCALAPPDATA%/Yarn"
- node_modules -> package.json
- app/node_modules -> app/package.json
matrix:
fast_finish: true
build: off
version: '0.0.1-dev.{build}'
shallow_clone: true
clone_depth: 1
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- yarn
- cd src && yarn
test_script:
- node --version
- yarn lint
build_script:
- yarn package
artifacts:
- path: release\win-unpacked\
name: 'MovieCast Portable {version}'
type: Zip
- path: release\*.exe
| os: unstable
environment:
#GH_TOKEN:
# secure: Ga+40bO3lQTmQOxV/e8JwZyd0SukxC6SFRlDZ1B478dZ29qxXDsWzStTdDt0FXg3
matrix:
- nodejs_version: 7
cache:
- "%LOCALAPPDATA%/Yarn"
- node_modules -> package.json
- app/node_modules -> app/package.json
platform:
- x64
matrix:
fast_finish: true
build: off
version: '0.0.1-dev.{build}'
shallow_clone: true
clone_depth: 1
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- yarn
- cd src && yarn
test_script:
- node --version
- yarn lint
build_script:
- yarn package
artifacts:
- path: release\*.exe
| Allow x64 builds instead of x86 ones | Allow x64 builds instead of x86 ones | YAML | mit | MovieCast/moviecast-desktop,MovieCast/moviecast-desktop,MovieCast/desktop,MovieCast/desktop |
6e615be3d80ca2613bee222bae6db0879256c8c8 | metadata/com.serwylo.babydots.yml | metadata/com.serwylo.babydots.yml | Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/babydots/babydots
IssueTracker: https://github.com/babydots/babydots/issues
AutoName: Baby Dots
RepoType: git
Repo: https://github.com/babydots/babydots
Builds:
- versionName: 1.0.0
versionCode: 10000
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 10100
commit: v1.1.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.1.0
CurrentVersionCode: 10100
| Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/babydots/babydots
IssueTracker: https://github.com/babydots/babydots/issues
AutoName: Baby Dots
RepoType: git
Repo: https://github.com/babydots/babydots
Builds:
- versionName: 1.0.0
versionCode: 10000
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 10100
commit: v1.1.0
subdir: app
gradle:
- yes
- versionName: 1.2.0
versionCode: 10200
commit: v1.2.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.2.0
CurrentVersionCode: 10200
| Update Baby Dots to 1.2.0 (10200) | Update Baby Dots to 1.2.0 (10200)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.