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 |
|---|---|---|---|---|---|---|---|---|---|
8747c0cdc9b9617e4ae94703aa2dd69e5bd93b9e | zuul.d/project.yaml | zuul.d/project.yaml | ---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- project:
name: openstack/openstack-ansible-apt_package_pinning
check:
jobs:
- openstack-ansible-linters
- openstack-ansible-functional-ubuntu-xenial
gate:
jobs:
- openstack-ansible-linters
- openstack-ansible-functional-ubuntu-xenial
| ---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- project:
name: openstack/openstack-ansible-apt_package_pinning
check:
jobs:
- openstack-ansible-linters
- openstack-ansible-functional-ubuntu-xenial
experimental:
jobs:
- openstack-ansible-integrated-deploy-aio
gate:
jobs:
- openstack-ansible-linters
- openstack-ansible-functional-ubuntu-xenial
| Allow the experimental trigger of the integrated repo | Allow the experimental trigger of the integrated repo
This would allow someone to test its change with an AIO.
Change-Id: I9739923f6743cab01f1e534a3641f7956f296ce0
| YAML | apache-2.0 | openstack/openstack-ansible-apt_package_pinning,openstack/openstack-ansible-apt_package_pinning |
96c96e28715e7f489d0497eda6e8de49ffa8ad8e | .github/workflows/clang-format.yml | .github/workflows/clang-format.yml | name: Clang-Format
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Clang-Format:
uses: steinwurf/clang-format-action/.github/workflows/action.yml@2.0.0
| name: Clang-Format
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Clang-Format:
uses: steinwurf/clang-format-action/.github/workflows/action.yml@3.0.0
| Update Clang-Format to new version 3.0.0 | Update Clang-Format to new version 3.0.0 | YAML | bsd-3-clause | steinwurf/endian,steinwurf/endian |
8f2ff461a56338ccf02e9f76c45acffa9ac50612 | .github/workflows/publish-docs.yml | .github/workflows/publish-docs.yml | name: Publish Docs
on:
push:
branches:
- master
jobs:
publish:
name: Publish
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Publish Jazzy Docs
uses: Steven0351/publish-jazzy-docs@v1.1.2
with:
personal_access_token: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}
| name: Publish Docs
on:
push:
branches:
- master
jobs:
publish:
name: Publish
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Publish Jazzy Docs
uses: Steven0351/publish-jazzy-docs@v1.1.2
with:
personal_access_token: ${{ secrets.PAT }}
| Use PAT for publishing docs | Use PAT for publishing docs | YAML | mit | Bouke/HAP,Bouke/HAP,Bouke/HAP |
465030a88bcb04d1ebeeb8a646746cd81978e239 | .github/workflows/stale-issues.yml | .github/workflows/stale-issues.yml | name: "Stale issues"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been marked stale and will be closed soon without further activity. To keep the issue open, please respond to the comment to keep the discussion going."
close-issue-message: "This issue has been automatically closed due to inactivity. Please feel free to re-open it if the issue persists."
stale-issue-label: "stale"
stale-pr-message: "This pull request has been marked stale and will be closed soon without further activity. Please update the PR or respond to this comment if you're still interested in working on this."
close-pr-message: "This pull request has been automatically closed due to inactivity. Please feel free to re-open it if you still want to work on it."
stale-pr-label: "stale"
days-before-issue-stale: 730
days-before-issue-close: 15
days-before-pr-stale: 30
days-before-pr-close: 15
remove-issue-stale-when-updated: true
remove-pr-stale-when-updated: true
operations-per-run: 1000 # turn down when debug only is turned off
debug-only: true
| name: "Stale issues"
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been marked stale and will be closed soon without further activity. To keep the issue open, please respond to the comment to keep the discussion going."
close-issue-message: "This issue has been automatically closed due to inactivity. Please feel free to re-open it if the issue persists."
stale-issue-label: "stale"
stale-pr-message: "This pull request has been marked stale and will be closed soon without further activity. Please update the PR or respond to this comment if you're still interested in working on this."
close-pr-message: "This pull request has been automatically closed due to inactivity. Please feel free to re-open it if you still want to work on it."
stale-pr-label: "stale"
days-before-issue-stale: 730
days-before-issue-close: 15
days-before-pr-stale: 30
days-before-pr-close: 15
remove-issue-stale-when-updated: true
remove-pr-stale-when-updated: true
operations-per-run: 1000 # turn down when debug only is turned off
debug-only: true
| Enable running stale issues manually (i think) | Enable running stale issues manually (i think)
| YAML | agpl-3.0 | online-go/online-go.com,online-go/online-go.com,online-go/online-go.com,online-go/online-go.com,online-go/online-go.com |
2516bd9408d836b9b6fe4c8913de029a73e993a5 | .github/workflows/test-package.yml | .github/workflows/test-package.yml | name: Test package
on:
push:
branches:
- master
paths:
- 'gel/*'
- 'tests/*'
- '.github/workflows/test-package.yml'
- 'pyproject.toml'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7]
fail-fast: false
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
- name: Install dependencies
run: |
$HOME/.poetry/bin/poetry install --no-dev -E 'test'
$HOME/.poetry/bin/poetry run pip install torch
- name: Run tests
run: $HOME/.poetry/bin/poetry run python -m unittest
| name: Test package
on:
push:
branches:
- master
paths:
- 'gel/*'
- 'tests/*'
- '.github/workflows/test-package.yml'
- 'pyproject.toml'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
fail-fast: false
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
- name: Install dependencies
run: |
$HOME/.poetry/bin/poetry install --no-dev -E 'test'
$HOME/.poetry/bin/poetry run pip install torch
- name: Run tests
run: $HOME/.poetry/bin/poetry run python -m unittest
| Add python 3.8 to test matrix | Add python 3.8 to test matrix | YAML | mit | jayanthkoushik/torch-gel,jayanthkoushik/torch-gel |
153a030c1fc04fd2a144108680dbf7bb1d5b9cc9 | .github/ISSUE_TEMPLATE/config.yml | .github/ISSUE_TEMPLATE/config.yml | blank_issues_enabled: false
contact_links:
- name: discord.js discord server
url: https://discord.gg/bRCvFy9
about: Please use this Discord Server to ask questions and get support. We don't typically answer questions here and they will likely be closed and redirected to the Discord server.
| blank_issues_enabled: false
contact_links:
- name: Discord server
url: https://discord.gg/bRCvFy9
about: Have questions or need support? Please go to the Discord server, as issues that are just support-related will be closed and redirected there.
| Improve text for Discord server link in issues | Improve text for Discord server link in issues | YAML | apache-2.0 | SpaceEEC/discord.js,SpaceEEC/discord.js,SpaceEEC/discord.js |
8d760dda75a733d381ff1e0eda87c97b6f69c11d | .github/workflows/ci-workflow.yml | .github/workflows/ci-workflow.yml | name: Python CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, pypy3]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip twine
pip install poetry
poetry install
- name: Configure Git user/email
run: |
git config --global user.email user@example.com
git config --global user.name "Example User"
- name: Run test suite
run: |
poetry run py.test -v --cov=PyGitUp
- name: Verify dist package format
run: |
poetry build
twine check dist/*
if: matrix.os != 'windows-latest'
- name: Upload coverage result
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
poetry run coveralls
| name: Python CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, pypy3]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip twine
pip install poetry
poetry install
- name: Configure Git user/email
run: |
git config --global user.email user@example.com
git config --global user.name "Example User"
- name: Run test suite
run: |
poetry run py.test -v --cov=PyGitUp
shell: bash
- name: Verify dist package format
run: |
poetry build
twine check dist/*
if: matrix.os != 'windows-latest'
- name: Upload coverage result
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
poetry run coveralls
| Use bash for test execution | CI: Use bash for test execution
| YAML | mit | msiemens/PyGitUp |
2acb1d9f6b6ea87a0952729942e11a43acab455e | .github/workflows/linux_cmake.yml | .github/workflows/linux_cmake.yml | name: Linux Cmake
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
env:
EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }}
jobs:
Linux-cmake:
name: Linux Cmake
uses: steinwurf/linux-cmake-action/.github/workflows/action.yml@1.0.0
with:
extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
| name: Linux Cmake
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
env:
EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }}
jobs:
Linux-cmake:
name: Linux Cmake
uses: steinwurf/linux-cmake-action/.github/workflows/action.yml@2.0.0
with:
extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
| Update Linux Cmake to new version 2.0.0 | Update Linux Cmake to new version 2.0.0 | YAML | bsd-3-clause | steinwurf/endian,steinwurf/endian |
09be90f7a8c129b3d054fe19aa2ed5c41cbfd7e7 | metadata/ltd.evilcorp.atox.yml | metadata/ltd.evilcorp.atox.yml | Categories:
- Internet
License: GPL-3.0-or-later
SourceCode: https://github.com/evilcorpltd/aTox
IssueTracker: https://github.com/evilcorpltd/aTox/issues
Changelog: https://github.com/evilcorpltd/aTox/releases
AutoName: aTox
RepoType: git
Repo: https://github.com/evilcorpltd/aTox.git
Builds:
- versionName: 0.5.1
versionCode: 8
commit: v0.5.1
subdir: atox
gradle:
- yes
- versionName: 0.6.0
versionCode: 9
commit: v0.6.0
subdir: atox
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.6.0
CurrentVersionCode: 9
| Categories:
- Internet
License: GPL-3.0-or-later
SourceCode: https://github.com/evilcorpltd/aTox
IssueTracker: https://github.com/evilcorpltd/aTox/issues
Changelog: https://github.com/evilcorpltd/aTox/releases
AutoName: aTox
RepoType: git
Repo: https://github.com/evilcorpltd/aTox.git
Builds:
- versionName: 0.5.1
versionCode: 8
commit: v0.5.1
subdir: atox
gradle:
- yes
- versionName: 0.6.0
versionCode: 9
commit: v0.6.0
subdir: atox
gradle:
- yes
- versionName: 0.7.0
versionCode: 10
commit: 5934fe8e0a2a31cab742d80522d1c3abd31c3b92
subdir: atox
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.7.0
CurrentVersionCode: 10
| Update aTox to 0.7.0 (10) | Update aTox to 0.7.0 (10)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
2cdc7014f39157705419e6378c97decf3813b2fd | packages/se/seqid-streams.yaml | packages/se/seqid-streams.yaml | homepage: https://github.com/bitnomial/seqid-streams
changelog-type: ''
hash: 14392136928bc05c447640d7511413caccdcb32987042bece3384a9b2ed11a54
test-bench-deps: {}
maintainer: luke@bitnomial.com
synopsis: Sequence ID IO-Streams
changelog: ''
basic-deps:
seqid: ! '>=0.6 && <0.7'
base: ! '>=4.7 && <4.12'
io-streams: ! '>=1.2 && <1.6'
all-versions:
- 0.1.0
- 0.2.0
- 0.3.0
- 0.3.1
- 0.3.2
- 0.3.3
- 0.4.0
- 0.4.1
- 0.5.0
- 0.6.0
- 0.6.1
- 0.6.2
- 0.6.3
- 0.7.0
author: Luke Hoersten
latest: 0.7.0
description-type: haddock
description: Uniquely identify elements in a sequenced stream
license-name: BSD-3-Clause
| homepage: https://github.com/bitnomial/seqid-streams
changelog-type: ''
hash: 219507f935dceefe583f6b783c20af156cb4a988e7aeee1742613c1ecf180deb
test-bench-deps: {}
maintainer: luke@bitnomial.com
synopsis: Sequence ID IO-Streams
changelog: ''
basic-deps:
seqid: ! '>=0.6 && <0.7'
base: ! '>=4.7 && <4.14'
io-streams: ! '>=1.2 && <1.6'
all-versions:
- 0.1.0
- 0.2.0
- 0.3.0
- 0.3.1
- 0.3.2
- 0.3.3
- 0.4.0
- 0.4.1
- 0.5.0
- 0.6.0
- 0.6.1
- 0.6.2
- 0.6.3
- 0.7.0
- 0.7.1
author: Luke Hoersten
latest: 0.7.1
description-type: haddock
description: Uniquely identify elements in a sequenced stream
license-name: BSD-3-Clause
| Update from Hackage at 2019-11-07T18:11:24Z | Update from Hackage at 2019-11-07T18:11:24Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
243bc99675b50108564f3da71e42475a66320a32 | packages/sp/SpaceInvaders.yaml | packages/sp/SpaceInvaders.yaml | homepage: http://www.haskell.org/yampa/
changelog-type: ''
hash: 20c312c7bde9982ca0bae76b09c2975a97f82936c370d09779da43f9045055a4
test-bench-deps: {}
maintainer: Ivan Perez <ivan.perez@keera.co.uk>
synopsis: Video game
changelog: ''
basic-deps:
Yampa: ! '>=0.9.2'
base: ! '>=3 && <5'
HGL: -any
array: -any
random: -any
all-versions:
- '0.4.1'
- '0.4.2'
- '0.4.4'
- '0.4.5'
author: Henrik Nilsson, Antony Courtney
latest: '0.4.5'
description-type: haddock
description: ! 'Video game implemented in Yampa.
<<https://github.com/ivanperez-keera/SpaceInvaders/blob/develop/screenshots/gameplay.gif?raw=true>>'
license-name: BSD3
| homepage: http://www.haskell.org/yampa/
changelog-type: ''
hash: fe95a563db0e5ea0601a698a5801b57a9f23d764079b86ab22e39c6b758a4168
test-bench-deps: {}
maintainer: Ivan Perez <ivan.perez@keera.co.uk>
synopsis: Video game
changelog: ''
basic-deps:
Yampa: ! '>=0.9.2'
base: ! '>=3 && <5'
HGL: -any
array: -any
random: -any
all-versions:
- '0.4.1'
- '0.4.2'
- '0.4.4'
- '0.4.5'
author: Henrik Nilsson, Antony Courtney
latest: '0.4.5'
description-type: haddock
description: ! 'Video game implemented in Yampa.
<<https://github.com/ivanperez-keera/SpaceInvaders/blob/develop/screenshots/gameplay.gif?raw=true>>'
license-name: BSD3
| Update from Hackage at 2017-11-07T16:06:53Z | Update from Hackage at 2017-11-07T16:06:53Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3bba9da472d25ce7d7096ececc822c8bac9eed54 | packages/un/unliftio-pool.yaml | packages/un/unliftio-pool.yaml | homepage: ''
changelog-type: ''
hash: c822807443ddcc21f4fd233e642f2e8c89b67842268844bddf9d04df86585df9
test-bench-deps: {}
maintainer: Bardur Arantsson <bardur@scientician.net>
synopsis: Data.Pool generalized to MonadUnliftIO.
changelog: ''
basic-deps:
base: ! '>=4.10 && <4.11'
time: ! '>=1.8 && <2'
resource-pool: ! '>=0.2.3.2 && <0.3'
unliftio-core: ! '>=0.1.1 && <0.2'
transformers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Bardur Arantsson
latest: '0.1.0.1'
description-type: haddock
description: This is a generalization of Data.Pool to MonadUnliftIO.
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: b796c4da3b44c7dbf23820cd761783880fe1e6e56258c731762b420871b31f26
test-bench-deps: {}
maintainer: Bardur Arantsson <bardur@scientician.net>
synopsis: Data.Pool generalized to MonadUnliftIO.
changelog: ''
basic-deps:
base: ! '>=4.10 && <4.11'
time: ! '>=1.8 && <2'
resource-pool: ! '>=0.2.3.2 && <0.3'
unliftio-core: ! '>=0.1.1 && <0.2'
transformers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2.0.0'
author: Bardur Arantsson
latest: '0.2.0.0'
description-type: haddock
description: This is a generalization of Data.Pool to MonadUnliftIO.
license-name: BSD3
| Update from Hackage at 2018-04-23T18:27:01Z | Update from Hackage at 2018-04-23T18:27:01Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
57c6216f1ddd2f8030518335c1cb373b71889457 | skolo/win/ansible/intel-graphics-driver-broadwell.yml | skolo/win/ansible/intel-graphics-driver-broadwell.yml | ---
# Install Intel Graphics Driver for Broadwell and earlier GPUs; applies only to group "broadwell".
- hosts: broadwell
tasks:
- name: Create Temp
win_file:
path: c:\Temp
state: directory
# The Intel driver uses the same product_id for multiple versions, so win_package doesn't work.
- name: Copy the Intel Graphics Driver EXE to the host
win_copy:
src: "{{ win_package_src }}/Intel Graphics Broadwell win64_154036.4703.exe"
dest: c:\Temp\intel_gfx.exe
- name: Install Intel Graphics Driver for Broadwell and earlier
# See https://www.intel.com/content/www/us/en/support/articles/000006773/graphics-drivers.html
# The "-overwrite" option allows downgrading the driver if a newer one is already installed for
# some reason (e.g. Windows Update).
win_command: c:\Temp\intel_gfx.exe -s -A -overwrite -s
- name: Cleanup
win_file:
path: c:\Temp\intel_gfx.exe
state: absent
| ---
# Install Intel Graphics Driver for Broadwell and earlier GPUs; applies only to group "broadwell".
- hosts: broadwell
tasks:
- name: Create Temp
win_file:
path: c:\Temp
state: directory
# The Intel driver uses the same product_id for multiple versions, so win_package doesn't work.
- name: Copy the Intel Graphics Driver EXE to the host
win_copy:
src: "{{ win_package_src }}/Intel Graphics Broadwell win64_154037.4835.exe"
dest: c:\Temp\intel_gfx.exe
- name: Install Intel Graphics Driver for Broadwell and earlier
# See https://www.intel.com/content/www/us/en/support/articles/000006773/graphics-drivers.html
# The "-overwrite" option allows downgrading the driver if a newer one is already installed for
# some reason (e.g. Windows Update).
win_command: c:\Temp\intel_gfx.exe -s -A -overwrite -s
- name: Cleanup
win_file:
path: c:\Temp\intel_gfx.exe
state: absent
| Switch Win Ansible Broadwell script to newer drivers. | Switch Win Ansible Broadwell script to newer drivers.
This partially reverts
https://skia-review.googlesource.com/c/buildbot/+/109803
Change-Id: Ib7fb23a425e596216a4a089b0189585dfbdac92a
Reviewed-on: https://skia-review.googlesource.com/110560
Reviewed-by: Kevin Lubick <7cdab2cfab351f23814786ba39716e90eed69047@google.com>
Commit-Queue: Ben Wagner <3ef7217be91069877d94f7907ce5479000772cd3@google.com>
| YAML | bsd-3-clause | google/skia-buildbot,google/skia-buildbot,google/skia-buildbot,google/skia-buildbot,google/skia-buildbot,google/skia-buildbot,google/skia-buildbot,google/skia-buildbot |
9095a0a008a9ffadca7681516cacdf63a8383236 | .github/workflows/chores.yaml | .github/workflows/chores.yaml | name: Chores
on:
workflow_dispatch:
repository_dispatch:
types:
- chores
schedule:
- cron: '26 15 * * 5'
jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump job context
env:
JOB_CONTEXT: ${{ toJSON(job) }}
run: echo "$JOB_CONTEXT"
- name: Dump steps context
env:
STEPS_CONTEXT: ${{ toJSON(steps) }}
run: echo "$STEPS_CONTEXT"
- name: Dump runner context
env:
RUNNER_CONTEXT: ${{ toJSON(runner) }}
run: echo "$RUNNER_CONTEXT"
- name: Dump strategy context
env:
STRATEGY_CONTEXT: ${{ toJSON(strategy) }}
run: echo "$STRATEGY_CONTEXT"
- name: Dump matrix context
env:
MATRIX_CONTEXT: ${{ toJSON(matrix) }}
run: echo "$MATRIX_CONTEXT"
chores:
name: Chores
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2.4.0
- name: Chores
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/ArloL/chorito/HEAD/run-latest.sh)"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3.11.0
| name: Chores
on:
workflow_dispatch:
repository_dispatch:
types:
- chores
schedule:
- cron: '26 15 * * 5'
jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump job context
env:
JOB_CONTEXT: ${{ toJSON(job) }}
run: echo "$JOB_CONTEXT"
- name: Dump steps context
env:
STEPS_CONTEXT: ${{ toJSON(steps) }}
run: echo "$STEPS_CONTEXT"
- name: Dump runner context
env:
RUNNER_CONTEXT: ${{ toJSON(runner) }}
run: echo "$RUNNER_CONTEXT"
- name: Dump strategy context
env:
STRATEGY_CONTEXT: ${{ toJSON(strategy) }}
run: echo "$STRATEGY_CONTEXT"
- name: Dump matrix context
env:
MATRIX_CONTEXT: ${{ toJSON(matrix) }}
run: echo "$MATRIX_CONTEXT"
chores:
name: Chores
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2.4.0
- name: Chores
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/ArloL/chorito/HEAD/run-latest.sh)"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3.12.0
| Bump peter-evans/create-pull-request from 3.11.0 to 3.12.0 | Bump peter-evans/create-pull-request from 3.11.0 to 3.12.0
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 3.11.0 to 3.12.0.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](https://github.com/peter-evans/create-pull-request/compare/v3.11.0...v3.12.0)
---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@github.com> | YAML | mit | ArloL/dotfiles,ArloL/dotfiles |
c1a14451dedc755164706c06d962f8b26a291103 | .github/workflows/cypress.yml | .github/workflows/cypress.yml | name: End-to-end tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-16.04
steps:
- name: Checkout
uses: actions/checkout@v1
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v2
with:
start: npm run dev
# quote the url to be safe against YML parsing surprises
wait-on: 'http://localhost:3000'
quiet: true | name: End-to-end tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-16.04
steps:
- name: Checkout
uses: actions/checkout@v1
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v2
with:
start: npm run dev
# quote the url to be safe against YML parsing surprises
wait-on: 'http://localhost:3000/demo'
quiet: true | Disable telemetry; use a non-404 url | Disable telemetry; use a non-404 url
| YAML | mit | lizadaly/windrift,lizadaly/windrift,lizadaly/windrift |
b548d47080f42bc515b181792eda2baa8d13c71a | .github/workflows/gempush.yml | .github/workflows/gempush.yml | name: Ruby Gem
on:
push:
tags: v*
jobs:
build:
name: Build + Publish
runs-on: ubuntu-latest
steps:
- uses: zendesk/checkout@v2
- name: Set up Ruby 2.6
uses: zendesk/setup-ruby@v1
with:
version: 2.6.x
- name: Publish to RubyGems
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build *.gemspec
gem push *.gem
env:
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
| name: Ruby Gem
on:
push:
tags: v*
jobs:
build:
name: Build + Publish
runs-on: ubuntu-latest
steps:
- uses: zendesk/checkout@v2
- name: Set up Ruby 2.6
uses: zendesk/setup-ruby@v1
with:
version: 2.6
- name: Publish to RubyGems
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build *.gemspec
gem push *.gem
env:
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
| Fix workflow's ruby version syntax | Fix workflow's ruby version syntax | YAML | mit | futuresimple/input_sanitizer |
9e18dfb64346c95ed4e443fe4e0a4a5ab37d67e3 | .github/workflows/rubocop.yml | .github/workflows/rubocop.yml | name: rubocop
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
rubocop:
name: reviewdog / rubocop
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.8
- run: gem install activesupport --version 5.2.6
- name: rubocop
uses: reviewdog/action-rubocop@v2
with:
rubocop_version: gemfile
rubocop_extensions: rubocop-rails:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile
reporter: github-pr-review
if: ${{ github.event_name == 'pull_request' }}
- name: rubocop
uses: reviewdog/action-rubocop@v2
with:
rubocop_version: gemfile
rubocop_extensions: rubocop-rails:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile
reporter: github-check
if: ${{ github.event_name == 'push' }}
| name: rubocop
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
rubocop:
name: reviewdog / rubocop
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.8
- run: gem install activesupport --version 5.2.6
- name: rubocop
uses: reviewdog/action-rubocop@v2
with:
rubocop_version: gemfile
rubocop_extensions: rubocop-rails:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile
reporter: github-pr-review
if: ${{ github.event_name == 'pull_request' }}
- name: rubocop
uses: reviewdog/action-rubocop@v2
with:
rubocop_version: gemfile
rubocop_extensions: rubocop-rails:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile
filter_mode: nofilter
reporter: github-check
if: ${{ github.event_name == 'push' }}
| Use nofilter for master check | Use nofilter for master check
| YAML | mit | Marri/glowfic,Marri/glowfic,Marri/glowfic,Marri/glowfic |
067ad2f4bb48fe9834091c777418ba67f612e5af | .github/workflows/webpack.yml | .github/workflows/webpack.yml | name: NodeJS with Webpack
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install
run: |
npm install
- name: test
run: |
npm test
npm run build
- name: build
run: |
npm run build
| name: NodeJS with Webpack
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install
run: |
npm install
- name: test
run: |
npm test
- name: build
run: |
npm run build
- name: upload artifacts
uses: actions/upload-artifact@v2
with:
name: github-pages
path: dist
deploy:
runs-on: ubuntu-latest
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
steps:
- uses: actions/download-artifact@v2
with:
name: github-pages
path: dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
| Deploy site to github pages from github action | Deploy site to github pages from github action
| YAML | mit | Cellule/dndGenerator,Cellule/dndGenerator,Cellule/dndGenerator |
c9781723bad36145d49b69c603f288280c603a22 | packages/wi/with-location.yaml | packages/wi/with-location.yaml | homepage: https://github.com/sol/with-location#readme
changelog-type: ''
hash: f13ac6e2c12caabda1d6be94ece7cc224bfec915c4aa1230e61ce80653f47d71
test-bench-deps: {}
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Use ImplicitParams-based source locations in a backward compatible way
changelog: ''
basic-deps:
base: ==4.*
all-versions:
- '0.0.0'
author: ''
latest: '0.0.0'
description-type: haddock
description: ''
license-name: MIT
| homepage: https://github.com/sol/with-location#readme
changelog-type: ''
hash: 6cd6a10e46ab0923dc5e135664ddd61a1c928ee1343175d09eabf31baf94d33b
test-bench-deps:
with-location: -any
base: ==4.*
hspec: -any
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Use ImplicitParams-based source locations in a backward compatible way
changelog: ''
basic-deps:
base: ==4.*
all-versions:
- '0.0.0'
- '0.1.0'
author: ''
latest: '0.1.0'
description-type: haddock
description: ''
license-name: MIT
| Update from Hackage at 2016-03-16T07:20:34+0000 | Update from Hackage at 2016-03-16T07:20:34+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
1b75fe0820d4cb8527fe84d49d3d5efb80e2b22d | packages/we/websockets-rpc.yaml | packages/we/websockets-rpc.yaml | homepage: ''
changelog-type: ''
hash: 8d78c9db96cd367557301cc782e40a65e598daa8f23e790726179b893f7d4b66
test-bench-deps:
websockets-rpc: -any
base: -any
quickcheck-instances: -any
tasty-quickcheck: -any
tasty: -any
QuickCheck: -any
aeson: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Simple streaming RPC mechanism using WebSockets
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
websockets-rpc: -any
wai-transformers: -any
MonadRandom: -any
stm: -any
base: ! '>=4.8 && <5'
unordered-containers: -any
text: -any
async: -any
websockets: -any
containers: -any
mtl: -any
QuickCheck: -any
aeson: -any
all-versions:
- '0.0.0'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 212c3a5ddc6a4601ea37cb8dc8315f452f8e8cc842ea429276246329d6ac139f
test-bench-deps:
websockets-rpc: -any
base: -any
quickcheck-instances: -any
tasty-quickcheck: -any
tasty: -any
QuickCheck: -any
aeson: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Simple streaming RPC mechanism using WebSockets
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
websockets-rpc: -any
wai-transformers: -any
MonadRandom: -any
stm: -any
base: ! '>=4.8 && <5'
unordered-containers: -any
text: -any
async: -any
websockets: -any
containers: -any
mtl: -any
transformers: -any
QuickCheck: -any
aeson: -any
all-versions:
- '0.0.0'
- '0.0.1'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.1'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2017-03-11T05:14:46Z | Update from Hackage at 2017-03-11T05:14:46Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f056b6b528bb130fca0eaf920d0f8751e71ca317 | packages/xm/xmonad-spotify.yaml | packages/xm/xmonad-spotify.yaml | homepage: ''
changelog-type: markdown
hash: 9d40789e3680352447053167542187d3fd2e89f96b21b7101e8e19fa1af0ee26
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: Bind media keys to work with Spotify
changelog: |
# xmonad-spotify
## 0.1.2.1
* Bug fix
## 0.1.2.0
* Add `audioStopWith` etc., `mediaKeysWith`
## 0.1.1.0
* Add `audioStop` and add appropriate keybindings
## 0.1.0.1
* Generalize type signatures
* Remove dependency on `xmonad-contrib` and `xmonad`
## 0.1.0.0
Initial release
basic-deps:
base: ! '>=4.8 && <5'
X11: -any
containers: -any
dbus: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.1.0
- 0.1.2.0
- 0.1.2.1
author: Vanessa McHale
latest: 0.1.2.1
description-type: markdown
description: |
# xmonad-spotify
This library provides some functionality related to Spotify via `dbus`.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: markdown
hash: 6c8ca88ac8a4c996782f9f34173d12cf36d404d735e2afc1e440332245acc488
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: Bind media keys to work with Spotify
changelog: |
# xmonad-spotify
## 0.1.2.2
* Bug fix
## 0.1.2.0
* Add `audioStopWith` etc., `mediaKeysWith`
## 0.1.1.0
* Add `audioStop` and add appropriate keybindings
## 0.1.0.1
* Generalize type signatures
* Remove dependency on `xmonad-contrib` and `xmonad`
## 0.1.0.0
Initial release
basic-deps:
base: ! '>=4.8 && <5'
X11: -any
containers: -any
dbus: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.1.0
- 0.1.2.2
author: Vanessa McHale
latest: 0.1.2.2
description-type: markdown
description: |
# xmonad-spotify
This library provides some functionality related to Spotify via `dbus`.
license-name: BSD-3-Clause
| Update from Hackage at 2019-09-05T21:30:42Z | Update from Hackage at 2019-09-05T21:30:42Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2a5b0d5f93c959f209c2fcb7264af65b450abe3b | azure-pipelines.yml | azure-pipelines.yml | pool:
vmImage: 'windows-latest'
steps:
- script: build.bat
displayName: 'Run build and tests'
- task: PublishTestResults@2
displayName: 'Publish test results'
inputs:
testResultsFormat: xUnit
testResultsFiles: 'test/*/TestResults/*.trx'
failTaskOnFailedTests: true
| pool:
vmImage: 'windows-latest'
steps:
- script: build.bat
displayName: 'Run build and tests'
- task: PublishTestResults@2
displayName: 'Publish test results'
inputs:
testResultsFormat: VSTest
testResultsFiles: 'test/*/TestResults/*.trx'
failTaskOnFailedTests: true
| Test is xUnit but output is VSTest | Test is xUnit but output is VSTest | YAML | mit | aliostad/CacheCow,aliostad/CacheCow |
9c5f20341711b396829cdebbea93b881620091f2 | azure-pipelines.yml | azure-pipelines.yml | # Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
node_7_x:
node_version: 8.x
node_8_x:
node_version: 8.x
node_9_x:
node_version: 9.x
node_10_x:
node_version: 10.x
node_11_x:
node_version: 11.x
node_12_x:
node_version: 12.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
displayName: 'Install Node.js'
- script: |
npm install
npm run build
displayName: 'npm install and build'
| # Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
node_6_x:
node_version: 6.x
node_7_x:
node_version: 7.x
node_8_x:
node_version: 8.x
node_9_x:
node_version: 9.x
node_10_x:
node_version: 10.x
node_11_x:
node_version: 11.x
node_12_x:
node_version: 12.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
displayName: 'Install Node.js'
- script: |
npm install
npm run build
displayName: 'npm install and build'
| Add node 6, fix 7, open as PR to test GH interface | Add node 6, fix 7, open as PR to test GH interface | YAML | mit | StoneCypher/jssm,StoneCypher/jssm,StoneCypher/jssm |
707b67a8650d3782bf4efad3af784f6134204316 | azure-pipelines.yml | azure-pipelines.yml | # Maven
# Build your Java project and run tests with Apache Maven.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.12'
jdkArchitectureOption: 'x64'
publishJUnitResults: false
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
| # Maven
# Build your Java project and run tests with Apache Maven.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.11'
jdkArchitectureOption: 'x64'
publishJUnitResults: false
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
- task: Gradle@2
inputs:
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.11'
jdkArchitectureOption: 'x64'
gradleWrapperFile: 'gradlew'
workingDirectory: scott-gradle-plugin
tasks: 'build'
publishJUnitResults: false
testResultsFiles: '**/TEST-*.xml'
| Add Gradle plugin building to the pipeline | Add Gradle plugin building to the pipeline
| YAML | mit | dodie/scott |
a17d4ed6542d57eecaf66d0e371156709012d45e | roles/neovim/tasks/install.yml | roles/neovim/tasks/install.yml | ---
- name: Install neovim
package:
name: neovim
state: present
become: true
when: ansible_system == 'Linux'
- name: Install neovim
package:
name: neovim
state: present
when: ansible_system == 'Darwin'
- name: Clean neovim directory
file:
path: "{{ lookup('env', 'HOME') }}/.config/nvim"
state: absent
when: cleanup | default(false) | bool
- name: Clone nvim repo
git:
repo: git@github.com:arxcruz/nvim.git
dest: "{{ ansible_user_dir }}/.config/nvim"
- name: Create neovim virtualenv
shell: virtualenv -p `which python` "{{ ansible_user_dir }}/.virtualenvs/neovim"
- name: Setup neovim python bindigns
pip:
name: ['neovim', 'flake8', 'pep8', 'pyflakes', 'pycodestyle']
virtualenv: "{{ ansible_user_dir }}/.virtualenvs/neovim"
state: present
| ---
- name: Install neovim
package:
name: neovim
state: present
become: true
when: ansible_system == 'Linux'
- name: Install neovim
package:
name: neovim
state: present
when: ansible_system == 'Darwin'
- name: Clean neovim directory
file:
path: "{{ lookup('env', 'HOME') }}/.config/nvim"
state: absent
when: cleanup | default(false) | bool
- name: Clone nvim repo
git:
repo: git@github.com:arxcruz/nvim.git
dest: "{{ ansible_user_dir }}/.config/nvim"
- name: Create neovim virtualenv
shell: virtualenv -p `which python3` "{{ ansible_user_dir }}/.virtualenvs/neovim"
- name: Setup neovim python bindigns
pip:
name: ['neovim', 'flake8', 'pep8', 'pyflakes', 'pycodestyle']
virtualenv: "{{ ansible_user_dir }}/.virtualenvs/neovim"
state: present
| Update virtualenv to use python3 | Update virtualenv to use python3
On the mac machine this was having problems because python is
pointing to python 2.7 instead of python3.8
| YAML | mit | arxcruz/dotfiles,arxcruz/dotfiles,arxcruz/dotfiles |
133523c84678ac6679cdc54b6db227df1d7e3c32 | packages/hs/hs-functors.yaml | packages/hs/hs-functors.yaml | homepage: ''
changelog-type: ''
hash: 2609dd80729bcd32b37765cc72ee20984e97c3ba6e11e73c0339cc15ed4897fc
test-bench-deps: {}
maintainer: m.farkasdyck@gmail.com
synopsis: Functors from products of Haskell and its dual to Haskell
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
tagged: ! '>=0.8.6 && <0.9'
transformers: ! '>=0.5.3 && <0.6'
all-versions:
- 0.1.0.0
- 0.1.1.0
- 0.1.2.0
- 0.1.3.0
- 0.1.3.1
- 0.1.4.0
- 0.1.5.0
- 0.1.6.0
author: M Farkas-Dyck
latest: 0.1.6.0
description-type: haddock
description: ''
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: ed164058f459589e304a02625d5bbbbf112209c76ebfee0f4b531bddceae25af
test-bench-deps: {}
maintainer: m.farkasdyck@gmail.com
synopsis: Functors from products of Haskell and its dual to Haskell
changelog: ''
basic-deps:
base: '>=4.9 && <5'
tagged: '>=0.8.6 && <0.9'
dual: '>=0.1.1 && <0.2'
transformers: '>=0.5.3 && <0.6'
all-versions:
- 0.1.0.0
- 0.1.1.0
- 0.1.2.0
- 0.1.3.0
- 0.1.3.1
- 0.1.4.0
- 0.1.5.0
- 0.1.6.0
- 0.1.7.0
author: M Farkas-Dyck
latest: 0.1.7.0
description-type: haddock
description: ''
license-name: BSD-3-Clause
| Update from Hackage at 2020-08-03T09:31:19Z | Update from Hackage at 2020-08-03T09:31:19Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ebe1cd6766122eb27bcd223c4bc35a82536dc0f7 | packages/mu/mu-protobuf.yaml | packages/mu/mu-protobuf.yaml | homepage: https://higherkindness.io/mu-haskell/
changelog-type: ''
hash: 3e043a5a360a60a36842100a3246a16598e781ae820b04ef9c8be49949ff0463
test-bench-deps: {}
maintainer: alejandro.serrano@47deg.com
synopsis: Protocol Buffers serialization and gRPC schema import for Mu microservices
changelog: ''
basic-deps:
http-client: -any
mu-schema: -any
bytestring: -any
sop-core: -any
base: ! '>=4.12 && <5'
http2-grpc-proto3-wire: -any
text: -any
language-protobuf: -any
servant-client-core: -any
proto3-wire: -any
mu-rpc: -any
mu-protobuf: -any
compendium-client: -any
template-haskell: ! '>=2.12'
all-versions:
- 0.1.0.0
author: Alejandro Serrano, Flavio Corpa
latest: 0.1.0.0
description-type: haddock
description: You can use @mu-protobuf@ to read Protobuf Schema Declarations and services
for mu-haskell
license-name: Apache-2.0
| homepage: https://higherkindness.io/mu-haskell/
changelog-type: ''
hash: 6780e403816e573669fd39223a535ff149e8575b9e048ce1879bdd9fb147225a
test-bench-deps: {}
maintainer: alejandro.serrano@47deg.com
synopsis: Protocol Buffers serialization and gRPC schema import for Mu microservices
changelog: ''
basic-deps:
http-client: -any
mu-schema: ! '>=0.2.0'
bytestring: -any
sop-core: -any
base: ! '>=4.12 && <5'
http2-grpc-proto3-wire: -any
text: -any
language-protobuf: -any
servant-client-core: -any
proto3-wire: -any
mu-rpc: ! '>=0.2.0'
mu-protobuf: ! '>=0.2.0'
compendium-client: ! '>=0.2.0'
template-haskell: ! '>=2.12'
all-versions:
- 0.1.0.0
- 0.2.0.0
author: Alejandro Serrano, Flavio Corpa
latest: 0.2.0.0
description-type: haddock
description: You can use @mu-protobuf@ to read Protobuf Schema Declarations and services
for mu-haskell
license-name: Apache-2.0
| Update from Hackage at 2020-02-28T10:51:11Z | Update from Hackage at 2020-02-28T10:51:11Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3b19195c65ba528100f81d3e746d9cf113ff6080 | packages/ol/old-version.yaml | packages/ol/old-version.yaml | homepage: ''
changelog-type: ''
hash: 853497c5401606ce2cf8e3930938c7f8a0839fbe012a85a4201d9c524c17af93
test-bench-deps: {}
maintainer: Chris Blake <chris@code.sc>
synopsis: Basic versioning library.
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.8'
all-versions:
- '0.1.0.0'
- '1.0.0.0'
- '1.0.1'
author: Chris Blake <chris@code.sc>
latest: '1.0.1'
description-type: haddock
description: ! 'A general library for representation and manipulation of versions.
This version of the module is forked from base, preserving the versionTags
field of the Version type that will be removed in GHC 7.12
(cf. <https://ghc.haskell.org/trac/ghc/ticket/2496>).'
license-name: OtherLicense
| homepage: ''
changelog-type: ''
hash: 2af750322d38709ec4fe3dfc88341fa121dc996af57d3117bdfad54ee6cb3e70
test-bench-deps: {}
maintainer: Chris Blake <chris@code.sc>
synopsis: Basic versioning library.
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.8'
all-versions:
- '0.1.0.0'
- '1.0.0.0'
- '1.0.1'
- '1.1.0'
author: Chris Blake <chris@code.sc>
latest: '1.1.0'
description-type: haddock
description: ! 'A general library for representation and manipulation of versions.
This version of the module is forked from base, preserving the versionTags
field of the Version type that will be removed in GHC 7.12
(cf. <https://ghc.haskell.org/trac/ghc/ticket/2496>).'
license-name: OtherLicense
| Update from Hackage at 2015-06-11T23:41:50+0000 | Update from Hackage at 2015-06-11T23:41:50+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
985c9d4761119feac28ea83b974b232590e7ab18 | packages/le/lenz-template.yaml | packages/le/lenz-template.yaml | homepage: ''
changelog-type: ''
hash: 25fac909c683856f994baedbd6b298421dd816216804ed2817697931f16b2f17
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Van Laarhoven lens templates
changelog: ''
basic-deps:
base-unicode-symbols: ! '>=0.1 && <0.3'
base: ! '>=4.9 && <4.11'
lenz: ! '>=0.2 && <0.4'
containers: ! '>=0.5 && <0.6'
template-haskell: ! '>=2.11 && <2.13'
all-versions:
- '0.1'
- '0.1.0.1'
- '0.2.0.0'
author: M Farkas-Dyck
latest: '0.2.0.0'
description-type: haddock
description: ''
license-name: OtherLicense
| homepage: ''
changelog-type: ''
hash: 589aa24ca463ff0b322bc47094921da8b697525e8f9653a4683fba1272eca16d
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Van Laarhoven lens templates
changelog: ''
basic-deps:
base-unicode-symbols: ! '>=0.1 && <0.3'
base: ! '>=4.9 && <5'
lenz: ! '>=0.2 && <0.4'
containers: ! '>=0.5 && <0.6'
template-haskell: ! '>=2.11 && <2.14'
all-versions:
- '0.1'
- '0.1.0.1'
- '0.2.0.0'
author: M Farkas-Dyck
latest: '0.2.0.0'
description-type: haddock
description: ''
license-name: LicenseRefOtherLicense
| Update from Hackage at 2018-08-17T05:03:52Z | Update from Hackage at 2018-08-17T05:03:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0a32e5433bcbcd6625fed1642adae8fd0069bd6b | packages/th/th-reify-many.yaml | packages/th/th-reify-many.yaml | homepage: http://github.com/mgsloan/th-reify-many
changelog-type: ''
hash: cf3627316980f6abc68a18cd417ccb04242883caa259c6ccb508ff067b9a2e10
test-bench-deps:
base: -any
th-reify-many: -any
template-haskell: -any
maintainer: Michael Sloan <mgsloan at gmail>
synopsis: Recurseively reify template haskell datatype info
changelog: ''
basic-deps:
base: ! '>=4 && <5'
containers: -any
th-expand-syns: -any
mtl: -any
template-haskell: ! '>=2.5.0.0'
safe: -any
all-versions:
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
- '0.1.4.1'
- '0.1.5'
- '0.1.5.1'
- '0.1.5.2'
author: Michael Sloan
latest: '0.1.5.2'
description-type: haddock
description: ! '@th-reify-many@ provides functions for recursively reifying top
level declarations. The main intended use case is for enumerating
the names of datatypes reachable from an initial datatype, and
passing these names to some function which generates instances.'
license-name: BSD3
| homepage: http://github.com/mgsloan/th-reify-many
changelog-type: ''
hash: e31523368182e8648c6fac34fc56971cefff8415d907b1a7cb09f98a27f0b932
test-bench-deps:
base: -any
th-reify-many: -any
template-haskell: -any
maintainer: Michael Sloan <mgsloan at gmail>
synopsis: Recurseively reify template haskell datatype info
changelog: ''
basic-deps:
base: ! '>=4 && <5'
containers: -any
th-expand-syns: -any
mtl: -any
template-haskell: ! '>=2.5.0.0'
safe: -any
all-versions:
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
- '0.1.4.1'
- '0.1.5'
- '0.1.5.1'
- '0.1.5.2'
- '0.1.6'
author: Michael Sloan
latest: '0.1.6'
description-type: haddock
description: ! '@th-reify-many@ provides functions for recursively reifying top
level declarations. The main intended use case is for enumerating
the names of datatypes reachable from an initial datatype, and
passing these names to some function which generates instances.'
license-name: BSD3
| Update from Hackage at 2016-05-10T06:24:33+0000 | Update from Hackage at 2016-05-10T06:24:33+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
76013aba8f1eab2b4ccb8628d046e7fce5fce373 | packages/va/validity-time.yaml | packages/va/validity-time.yaml | homepage: https://github.com/NorfairKing/validity#readme
changelog-type: ''
hash: e3b80734550573f5f163defd8a966df6b46e2ff0dd52132f7be86f649b952fb8
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: Validity instances for time
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: -any
validity: ! '>=0.5'
all-versions:
- 0.0.0.0
- 0.0.0.1
- 0.1.0.0
- 0.2.0.0
- 0.2.0.1
- 0.2.0.2
- 0.2.0.3
author: Tom Sydney Kerckhove
latest: 0.2.0.3
description-type: haddock
description: ''
license-name: MIT
| homepage: https://github.com/NorfairKing/validity#readme
changelog-type: ''
hash: f84344cea1a46982a7d5f6163bfe27556aa8a6a5dbd45e4907bf29c195e44daf
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: Validity instances for time
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: -any
validity: ! '>=0.5'
all-versions:
- 0.0.0.0
- 0.0.0.1
- 0.1.0.0
- 0.2.0.0
- 0.2.0.1
- 0.2.0.2
- 0.2.0.3
- 0.3.0.0
author: Tom Sydney Kerckhove
latest: 0.3.0.0
description-type: haddock
description: ''
license-name: MIT
| Update from Hackage at 2020-02-10T21:17:47Z | Update from Hackage at 2020-02-10T21:17:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e8b62916fe1ac751d0058b1b0165d508d7e5267a | packages/te/text-binary.yaml | packages/te/text-binary.yaml | 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
| homepage: https://github.com/kawu/text-binary
changelog-type: ''
hash: befe14ed7b1377f315be15841e3ca9bd3408bc5079a5807a1a16f33ebce38bf1
test-bench-deps: {}
maintainer: waszczuk.kuba@gmail.com
synopsis: Binary instances for text types
changelog: ''
basic-deps:
base: ! '>=4 && <5'
text: -any
binary: -any
all-versions:
- '0.1.0'
- '0.2.0'
author: Jakub Waszczuk
latest: '0.2.0'
description-type: haddock
description: ! 'A compatibility layer providing Binary instances for strict
and lazy text types for versions older than 1.2.1 of
<https://hackage.haskell.org/package/text>.'
license-name: BSD3
| Update from Hackage at 2015-05-28T11:21:13+0000 | Update from Hackage at 2015-05-28T11:21:13+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
e75056d543668836a00836079110a18e8ee0d0ff | ambermini/meta.yaml | ambermini/meta.yaml | package:
name: ambermini
version: 15.0.4
source:
fn: 15.0.4.zip
url: https://github.com/choderalab/ambermini/archive/15.0.4.zip
md5: 5c72ad3ff91d05b3e10f7610b2149107
build:
number: 1
requirements:
build:
- zlib
- gcc
run:
- zlib
- gcc
test:
commands:
- antechamber -h
- sqm -h
- tleap -h
about:
home: https://github.com/choderalab/ambermini/
license: LGPL
summary: A stripped-down version of AmberTools 14 containing antechamber, sqm, tleap, and parmchk2
| package:
name: ambermini
version: 15.0.4
source:
fn: 15.0.4.zip
url: https://github.com/choderalab/ambermini/archive/15.0.4.zip
md5: 5c72ad3ff91d05b3e10f7610b2149107
build:
number: 1
requirements:
build:
- zlib
- gcc
run:
- zlib
- gcc # [osx]
test:
commands:
- antechamber -h
- sqm -h
- tleap -h
about:
home: https://github.com/choderalab/ambermini/
license: LGPL
summary: A stripped-down version of AmberTools 14 containing antechamber, sqm, tleap, and parmchk2
| Make `gcc` is a runtime dependency only on `osx`. | [ambermini] Make `gcc` is a runtime dependency only on `osx`.
| YAML | mit | swails/conda-recipes,rmcgibbo/conda-recipes,peastman/conda-recipes,mpharrigan/conda-recipes,swails/conda-recipes,peastman/conda-recipes,mpharrigan/conda-recipes,cwehmeyer/conda-recipes,omnia-md/conda-recipes,jchodera/conda-recipes,marscher/omnia-conda-recipes,danielparton/omnia-md-conda-recipes,danielparton/omnia-md-conda-recipes,mpharrigan/conda-recipes,peastman/conda-recipes,cwehmeyer/conda-recipes,cwehmeyer/conda-recipes,rmcgibbo/conda-recipes,jchodera/conda-recipes,cwehmeyer/conda-recipes,jchodera/conda-recipes,rmcgibbo/conda-recipes,rmcgibbo/conda-recipes,marscher/omnia-conda-recipes,marscher/omnia-conda-recipes,omnia-md/conda-recipes,swails/conda-recipes,omnia-md/conda-recipes,swails/conda-recipes,jchodera/conda-recipes,marscher/omnia-conda-recipes |
f52a8c652fa29ac87c9b5e9aecd5b700631810a7 | pkg/dev_compiler/.travis.yml | pkg/dev_compiler/.travis.yml | language: dart
dart:
- dev
cache:
directories:
- $HOME/.npm
- $HOME/.nvm
- $HOME/.pub-cache/hosted
- node_modules
before_install:
- test "$ANALYZER" == stable || ./tool/override_analyzer_dependency.sh
- pub global activate dart_coveralls
- export CHROME_CANARY_BIN=`./tool/get_chrome_canary.sh`
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- nvm install 5.5.0
- npm install
script:
- if [[ -z "$TEST" ]]; then ./tool/presubmit.sh ; fi
- if [[ "$TEST" == coverage ]]; then ./tool/build_sdk.sh && ./tool/coverage.sh ; fi
- if [[ "$TEST" == transformer ]]; then ./tool/transformer_test.sh ; fi
- if [[ "$TEST" == node ]]; then ./tool/node_test.sh ; fi
env:
- ANALYZER=stable
- ANALYZER=master
- TEST=coverage
- TEST=transformer
- TEST=node
matrix:
allow_failures:
- env: ANALYZER=master
| language: dart
dart:
- dev
cache:
directories:
- $HOME/.npm
- $HOME/.nvm
- $HOME/.pub-cache/hosted
- node_modules
before_install:
- test "$ANALYZER" == stable || ./tool/override_analyzer_dependency.sh
- pub global activate dart_coveralls
- export CHROME_CANARY_BIN=`./tool/get_chrome_canary.sh`
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- nvm install 5.5.0
- npm install
script:
- if [[ -z "$TEST" ]]; then ./tool/presubmit.sh ; fi
- if [[ "$TEST" == coverage ]]; then ./tool/build_sdk.sh && ./tool/coverage.sh ; fi
- if [[ "$TEST" == transformer ]]; then ./tool/transformer_test.sh ; fi
- if [[ "$TEST" == node ]]; then ./tool/node_test.sh ; fi
env:
- ANALYZER=stable
- ANALYZER=master
- TEST=coverage
- TEST=transformer
- TEST=node
matrix:
allow_failures:
- env: ANALYZER=master
- env: TEST=transformer
| Allow failure on transformer bot | Allow failure on transformer bot
This is experimental. We'll need to let this go red on occasion.
TBR=ochafik@google.com
Review URL: https://codereview.chromium.org/1772993004 .
| YAML | bsd-3-clause | dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-lang/sdk,dartino/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk |
5a0346beeac073abe162f0e7d420142a6dd6f99e | ansible/roles/nginx/tasks/main.yml | ansible/roles/nginx/tasks/main.yml | - name: Directories are present
file:
dest: "{{ item }}"
state: directory
owner: vagrant
with_items: directories
tags: [nginx]
- name: Container is running
docker:
image: nginx:alpine
name: nginx
state: running
ports: "{{ ports }}"
volumes: "{{ volumes }}"
when: not log_to_syslog is defined
tags: [nginx]
- name: Container is running
docker:
image: nginx:alpine
name: nginx
state: running
ports: "{{ ports }}"
volumes: "{{ volumes }}"
log_driver: syslog
log_opt:
syslog-tag: nginx
when: log_to_syslog is defined
tags: [nginx]
- name: Files are present
copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
with_items: files
register: result
tags: [nginx]
- name: Container is reloaded
shell: docker kill -s HUP nginx
when: result|changed
tags: [nginx]
- name: Info is sent to Consul
uri:
url: http://localhost:8500/v1/kv/proxy/ip
method: PUT
body: "{{ ip }}"
ignore_errors: yes
tags: [nginx]
| - name: Directories are present
file:
dest: "{{ item }}"
state: directory
owner: vagrant
with_items: directories
tags: [nginx]
- name: Container is running
docker:
image: nginx:alpine
name: nginx
state: running
ports: "{{ ports }}"
volumes: "{{ volumes }}"
when: not log_to_syslog is defined
tags: [nginx]
- name: Container is running
docker:
image: nginx:alpine
name: nginx
state: running
ports: "{{ ports }}"
volumes: "{{ volumes }}"
log_driver: syslog
log_opt:
tag: nginx
when: log_to_syslog is defined
tags: [nginx]
- name: Files are present
copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
with_items: files
register: result
tags: [nginx]
- name: Container is reloaded
shell: docker kill -s HUP nginx
when: result|changed
tags: [nginx]
- name: Info is sent to Consul
uri:
url: http://localhost:8500/v1/kv/proxy/ip
method: PUT
body: "{{ ip }}"
ignore_errors: yes
tags: [nginx]
| Fix issue with nginx ansible task to support Docker 1.12 (syslog-tag changed to tag) | Fix issue with nginx ansible task to support Docker 1.12 (syslog-tag changed to tag)
| YAML | mit | vfarcic/ms-lifecycle,vfarcic/ms-lifecycle |
690d8fd6e11f01446ae4f4ecaee4c52419eb9011 | ansible/roles/users/tasks/main.yml | ansible/roles/users/tasks/main.yml | - name: Set SSH authorized keys from files
authorized_key:
user: "{{ user }}"
state: present
exclusive: True
key: "{{ lookup('file', 'ssh-keys') }}"
| - name: Set SSH authorized keys from files
copy:
content: "{{ lookup('file', 'ssh-keys') }}"
dest: "~{{ user }}/.ssh/authorized_keys"
owner: "{{ user }}"
group: "{{ user }}"
| Move users role to plain file copy | ansible: Move users role to plain file copy
The authorized_key module is being too clever and does not recognize the
yubikey format from commit 2a15d66f41. Let's just copy the file as-is.
| YAML | lgpl-2.1 | cockpit-project/cockpituous,cockpit-project/cockpituous |
e9aeae4a4f6b19d62263fc5d23ddbf08c4ed13fc | puppet/hieradata/common.yaml | puppet/hieradata/common.yaml | # Common Hiera data gets applied to all nodes
ssh::server::storeconfigs_enabled: false
# ceilometer settings used by compute and controller ceilo auth settings
ceilometer::agent::auth::auth_region: 'regionOne'
# FIXME: Might be better to use 'service' tenant here but this requires
# changes in the tripleo-incubator keystone role setup
ceilometer::agent::auth::auth_tenant_name: 'admin'
nova::network::neutron::neutron_admin_tenant_name: 'service'
nova::network::neutron::neutron_admin_username: 'neutron'
nova::network::neutron::vif_plugging_is_fatal: false
nova::network::neutron::vif_plugging_timeout: 30
nova::network::neutron::dhcp_domain: ''
neutron::plugins::ml2::type_drivers:
- flat
- gre
- vxlan
- vlan
sysctl_settings:
net.ipv4.tcp_keepalive_intvl:
value: 1
net.ipv4.tcp_keepalive_probes:
value: 5
net.ipv4.tcp_keepalive_time:
value: 5
| # Common Hiera data gets applied to all nodes
ssh::server::storeconfigs_enabled: false
# ceilometer settings used by compute and controller ceilo auth settings
ceilometer::agent::auth::auth_region: 'regionOne'
# FIXME: Might be better to use 'service' tenant here but this requires
# changes in the tripleo-incubator keystone role setup
ceilometer::agent::auth::auth_tenant_name: 'admin'
nova::network::neutron::neutron_admin_tenant_name: 'service'
nova::network::neutron::neutron_admin_username: 'neutron'
nova::network::neutron::vif_plugging_is_fatal: false
nova::network::neutron::vif_plugging_timeout: 30
nova::network::neutron::dhcp_domain: ''
neutron::plugins::ml2::type_drivers:
- flat
- gre
- vxlan
- vlan
sysctl_settings:
net.ipv4.tcp_keepalive_intvl:
value: 1
net.ipv4.tcp_keepalive_probes:
value: 5
net.ipv4.tcp_keepalive_time:
value: 5
nova::rabbit_heartbeat_timeout_threshold: 60
neutron::rabbit_heartbeat_timeout_threshold: 60
cinder::rabbit_heartbeat_timeout_threshold: 60
ceilometer::rabbit_heartbeat_timeout_threshold: 60
heat::rabbit_heartbeat_timeout_threshold: 60
| Set rabbitmq heatbeat timeout threshold to 60 | Set rabbitmq heatbeat timeout threshold to 60
Updates the default settings for Nova, Neutron, Cinder,
Ceilometer, and Heat services so we set the default rabbitmq
threshold to 60 seconds.
Change-Id: If537ae16968eb6b264b2ab071144f1eecab18b64
| YAML | apache-2.0 | trozet/tripleo-heat-templates,wyg3958/tripleo-heat-templates,dprince/tripleo-heat-templates,trozet/tripleo-heat-templates,dprince/tripleo-heat-templates,openstack/tripleo-heat-templates,trozet/opnfv-tht,bcrochet/tripleo-heat-templates,rdo-management/tripleo-heat-templates,bcrochet/tripleo-heat-templates,rdo-management/tripleo-heat-templates,openstack/tripleo-heat-templates,trozet/opnfv-tht,trozet/opnfv-tht,bcrochet/tripleo-heat-templates,wyg3958/tripleo-heat-templates |
85ec06c3e75a72a9832e72f1ee582f90d41e9bbf | manifests/cf-manifest/env-specific/prod-lon.yml | manifests/cf-manifest/env-specific/prod-lon.yml | ---
uaa_instances: 3
nats_instances: 3
diego_api_instances: 3
cell_instances: 87
router_instances: 15
api_instances: 12
doppler_instances: 39
log_api_instances: 18
scheduler_instances: 4
cc_worker_instances: 4
cc_hourly_rate_limit: 20000
cc_staging_timeout_in_seconds: 2700
paas_region_name: london
prometheus_disk_size: 750GB
prometheus_retention_size: 700GB
| ---
uaa_instances: 3
nats_instances: 3
diego_api_instances: 3
cell_instances: 96
router_instances: 15
api_instances: 12
doppler_instances: 39
log_api_instances: 18
scheduler_instances: 4
cc_worker_instances: 4
cc_hourly_rate_limit: 20000
cc_staging_timeout_in_seconds: 2700
paas_region_name: london
prometheus_disk_size: 750GB
prometheus_retention_size: 700GB
| Scale London instance count to 96 | Scale London instance count to 96
According to our metrics, we are currently running less instances than required.
| YAML | mit | alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf |
33a41ed567b94d1ca63befdc58eb2d2031ad8643 | .codeclimate.yml | .codeclimate.yml | # https://codeclimate.com/github/newcontext-oss/kitchen-terraform
version: "2"
plugins:
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- "ruby"
fixme:
enabled: true
flog:
enabled: true
markdownlint:
enabled: true
reek:
enabled: true
rubocop:
enabled: true
exclude_patterns:
- "doc/"
- "examples/"
| # https://codeclimate.com/github/newcontext-oss/kitchen-terraform
version: "2"
plugins:
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- "ruby"
fixme:
enabled: true
flog:
enabled: true
markdownlint:
enabled: true
reek:
enabled: true
rubocop:
enabled: true
exclude_patterns:
- "doc/"
- "docs/"
- "examples/"
- "website/"
| Exclude docs and website from Code Climate | Exclude docs and website from Code Climate
| YAML | apache-2.0 | newcontext-oss/kitchen-terraform,newcontext-oss/kitchen-terraform,newcontext-oss/kitchen-terraform,newcontext-oss/kitchen-terraform,newcontext/kitchen-terraform |
9a509d2a23960f4817790f03e8913d62f8ee8762 | .codeclimate.yml | .codeclimate.yml | engines:
brakeman:
enabled: true
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
eslint:
enabled: true
fixme:
enabled: true
rubocop:
enabled: true
scss-lint:
enabled: true
ratings:
paths:
- app/**/*
- lib/**/*
- Gemfile.lock
exclude_paths:
- bin/*
- config/**/*
- db/**/*
- log/*
- public/*
- vendor/**/*
- .rubocop.yml
| engines:
brakeman:
enabled: true
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
eslint:
enabled: true
fixme:
enabled: true
rubocop:
enabled: true
scss-lint:
enabled: true
ratings:
paths:
- app/**/*
- lib/**/*
- Gemfile.lock
exclude_paths:
- app/assets/images*
- bin/*
- config/**/*
- db/**/*
- log/*
- public/**/*
- vendor/**/*
- .rubocop.yml
| Add app/assets/images to Code Climate excludes | Add app/assets/images to Code Climate excludes | YAML | mit | cstewart90/QLRace,cstewart90/QLRace,QLRace/QLRace,QLRace/QLRace,QLRace/QLRace,cstewart90/QLRace |
c77dc1c11fd4aca43ed0445f887fc8ecb6b9d542 | .codeclimate.yml | .codeclimate.yml | ---
engines:
brakeman:
enabled: true
exclude_fingerprints:
- 6ad4464dbb2a999591c7be8346dc137c3372b280f4a8b0c024fef91dfebeeb83
duplication:
enabled: true
exclude_fingerprints:
- 3e30de88eb9d993e74c31d0309e13f7c
- 8173dcc032219344176991b7bafa15a6
config:
languages:
- ruby
- javascript
eslint:
enabled: true
config:
extensions:
- .es6
fixme:
enabled: true
rubocop:
enabled: true
coffeelint:
enabled: true
scss-lint:
enabled: true
checks:
Comment:
enabled: false
StringQuotes:
enabled: false
SelectorFormat:
enabled: false
EmptyLineBetweenBlocks:
enabled: false
PropertySortOrder:
enabled: false
PlaceholderInExtend:
enabled: false
VendorPrefix:
enabled: false
ratings:
paths:
- Gemfile.lock
- "**.erb"
- "**.rb"
- "**.js"
- "**.es6"
- "**.coffee"
- "**.rake"
- "**.scss"
exclude_paths:
- config/
- db/
- spec/
- vendor/
| ---
engines:
brakeman:
enabled: true
exclude_fingerprints:
- 6ad4464dbb2a999591c7be8346dc137c3372b280f4a8b0c024fef91dfebeeb83
duplication:
enabled: true
exclude_fingerprints:
- 3e30de88eb9d993e74c31d0309e13f7c
- 8173dcc032219344176991b7bafa15a6
config:
languages:
- ruby
- javascript
eslint:
enabled: true
config:
extensions:
- .es6
fixme:
enabled: true
rubocop:
enabled: true
coffeelint:
enabled: true
ratings:
paths:
- Gemfile.lock
- "**.erb"
- "**.rb"
- "**.js"
- "**.es6"
- "**.coffee"
- "**.rake"
- "**.scss"
exclude_paths:
- config/
- db/
- spec/
- vendor/
| Disable scss-lint -- hound is already doing this for us | Disable scss-lint -- hound is already doing this for us
| YAML | apache-2.0 | samvera/hyrax,samvera/hyrax,samvera/hyrax,samvera/hyrax |
c664444acd569a80637438fb128faa0d4a37baa6 | .codeclimate.yml | .codeclimate.yml | engines:
rubocop:
enabled: true
duplication:
enabled: true
config:
languages:
ruby:
javascript:
brakeman:
enabled: true
bundler-audit:
enabled: true
coffeelint:
enabled: true
scss-lint:
enabled: true
fixme:
enabled: true
markdownlint:
enabled: true
ratings:
paths:
- app/**/*
- lib/**/*
exclude_paths:
- app/assets/fonts/
- app/assets/images/
- bin/rails
- bin/rake
- db/
- files/
- public/
- tmp/
| engines:
rubocop:
enabled: true
duplication:
enabled: true
config:
languages:
ruby:
javascript:
brakeman:
enabled: true
bundler-audit:
enabled: true
coffeelint:
enabled: true
scss-lint:
enabled: true
fixme:
enabled: true
markdownlint:
enabled: true
ratings:
paths:
- app/**/*
- lib/**/*
exclude_paths:
- app/assets/fonts/
- app/assets/images/
- bin/rails
- bin/rake
- db/
- files/
- public/
- tmp/
- vendor/
| Exclude /vendor folder from Code Climate | Exclude /vendor folder from Code Climate
| YAML | agpl-3.0 | CDJ11/CDJ,CDJ11/CDJ,CDJ11/CDJ,CDJ11/CDJ |
b82648027a96bfc127a7988ad088c5e2f7c92c1d | .scrutinizer.yml | .scrutinizer.yml | checks:
ruby:
code_rating: true
duplicate_code: true
tools:
rubocop:
use_native_config: true
filter:
excluded_paths:
- spec/*
- vendor/*
build:
environment:
ruby: 2.4.1
project_setup:
before:
- cd /home/scrutinizer/.rbenv/plugins/ruby-build && git pull origin master && cd -
- rbenv install -l
- rbenv install 2.4.1
- rbenv local 2.4.1
- ruby -v
- gem update --system
- gem install bundler i18n rspec
tests:
before:
- bin/bundle-audit check --update
- bin/rubocop --display-cop-names
- printf "yes\nno\n" | bin/resume
- bin/resume -l it <<< "no\n"
- printf "yes\nno\n" | bin/resume -l ja
- bin/rake resume
- ruby resume.rb <<< "no\n"
- ruby resume.rb -l it <<< "no\n"
- ruby resume.rb -l ja <<< "no\n"
override:
-
command: bin/rspec spec/ --no-drb --format progress
environment:
'SCRUTINIZER_CC_FILE': 'my-coverage'
coverage:
file: 'my-coverage'
format: 'rb-cc'
checks:
ruby:
code_rating: true
duplicate_code: true
| checks:
ruby:
code_rating: true
duplicate_code: true
tools:
rubocop:
use_native_config: true
filter:
excluded_paths:
- spec/*
- vendor/*
build:
environment:
ruby: 2.4.1
variables:
# This ENV variable added to get bundle install working initially
# with Scrutinizer-supported Ruby 2.4.0.
CUSTOM_RUBY_VERSION: 2.4.0
project_setup:
before:
- cd /home/scrutinizer/.rbenv/plugins/ruby-build && git pull origin master && cd -
- rbenv install -l
- rbenv install 2.4.1
- rbenv local 2.4.1
- ruby -v
- gem update --system
- gem install bundler i18n rspec
tests:
before:
- bin/bundle-audit check --update
- bin/rubocop --display-cop-names
- printf "yes\nno\n" | bin/resume
- bin/resume -l it <<< "no\n"
- printf "yes\nno\n" | bin/resume -l ja
- bin/rake resume
- ruby resume.rb <<< "no\n"
- ruby resume.rb -l it <<< "no\n"
- ruby resume.rb -l ja <<< "no\n"
override:
-
command: bin/rspec spec/ --no-drb --format progress
environment:
'SCRUTINIZER_CC_FILE': 'my-coverage'
coverage:
file: 'my-coverage'
format: 'rb-cc'
checks:
ruby:
code_rating: true
duplicate_code: true
| Add Scrutinizer config so that bundling initially with Ruby 2.4.0 will work... | Add Scrutinizer config so that bundling initially with Ruby 2.4.0 will work...
| YAML | mit | paulfioravanti/resume |
c890a3a5ea4b358ae1040be927e5d9c35a80da30 | dockci.yaml | dockci.yaml | dockerfile: dockci.Dockerfile
utilities:
- name: python3-4-wheels
input:
- requirements.txt /work/requirements.txt
- test-requirements.txt /work/test-requirements.txt
command: |-
sh -c '
apk add --update postgresql-dev;
pip wheel -r requirements.txt -r test-requirements.txt
'
output:
- from: /work/wheelhouse
to: util
- name: bower
input:
- bower.json /work/bower.json
command: bower install
output:
- from: /work/bower_components
to: util
| dockerfile: dockci.Dockerfile
utilities:
- name: python3-4-wheels
input:
- requirements.txt /work/requirements.txt
- test-requirements.txt /work/test-requirements.txt
command: |-
sh -c '
apk add --update postgresql-dev;
pip wheel -r requirements.txt;
pip wheel -r test-requirements.txt
'
output:
- from: /work/wheelhouse
to: util
- name: bower
input:
- bower.json /work/bower.json
command: bower install
output:
- from: /work/bower_components
to: util
| Fix double requirement error on pip install | Fix double requirement error on pip install
| YAML | isc | RickyCook/DockCI,RickyCook/DockCI,RickyCook/DockCI,sprucedev/DockCI-Agent,RickyCook/DockCI,sprucedev/DockCI,sprucedev/DockCI,sprucedev/DockCI,sprucedev/DockCI,sprucedev/DockCI-Agent |
f942d3ed74f20136f4aab3c20572f5a21b8a19ca | spring-boot-admin-samples/spring-boot-admin-sample/src/main/resources/application.yml | spring-boot-admin-samples/spring-boot-admin-sample/src/main/resources/application.yml | ---
info:
scm-url: "@scm.url@"
build-url: "http://travis-ci.org/@env.TRAVIS_REPO_SLUG@/builds/@env.TRAVIS_BUILD_ID@"
logging:
file: "target/boot-admin-sample.log"
management:
endpoints:
web:
expose: "*"
spring:
application:
name: spring-boot-admin-sample
boot:
admin:
client:
url: http://localhost:8080
profiles:
active:
- insecure
---
spring:
profiles: insecure
---
spring:
profiles: secure
boot:
admin:
client:
username: "user" #These two are needed so that the client
password: "pass" #can register at the protected server api
instance:
metadata:
user.name: "user" #These two are needed so that the server
user.password: "pass" #can access the proteceted client endpoints
| ---
info:
scm-url: "@scm.url@"
build-url: "http://travis-ci.org/@env.TRAVIS_REPO_SLUG@/builds/@env.TRAVIS_BUILD_ID@"
logging:
file: "target/boot-admin-sample.log"
management:
endpoints:
web:
expose: "*"
jolokia:
enabled: true
spring:
application:
name: spring-boot-admin-sample
boot:
admin:
client:
url: http://localhost:8080
profiles:
active:
- insecure
---
spring:
profiles: insecure
---
spring:
profiles: secure
boot:
admin:
client:
username: "user" #These two are needed so that the client
password: "pass" #can register at the protected server api
instance:
metadata:
user.name: "user" #These two are needed so that the server
user.password: "pass" #can access the proteceted client endpoints
| Return null on missing version Don't output metadata in Registration.toString() | Return null on missing version
Don't output metadata in Registration.toString()
| YAML | apache-2.0 | codecentric/spring-boot-admin,joshiste/spring-boot-admin,joshiste/spring-boot-admin,joshiste/spring-boot-admin,codecentric/spring-boot-admin,codecentric/spring-boot-admin,joshiste/spring-boot-admin |
98db8fb293be245c6dc2f67129f573ada6421331 | _data/lectures.yml | _data/lectures.yml | - title: Lecture 00 – Kumbayah Rails
link: /lectures/00
date: March 19, 2015
- title: Lecture 01 – Ruby, Have We Met?
link: /lectures/01
date: March 19, 2015
- title: Lecture 02 – Ruby, Have We Met, Again?
link: /lectures/02
date: March 21, 2015
- title: Lecture 03 – HTTP & Rack
link: /lectures/03
date: March 26, 2015
- title: Lecture 04 – Databases
link: /lectures/04
date: March 28, 2015
- title: Lecture 05 – Rails Omakase
link: /lectures/04
date: April 2, 2015
| - title: Lecture 00 – Kumbayah Rails
link: /lectures/00
date: March 19, 2015
- title: Lecture 01 – Ruby, Have We Met?
link: /lectures/01
date: March 19, 2015
- title: Lecture 02 – Ruby, Have We Met, Again?
link: /lectures/02
date: March 21, 2015
- title: Lecture 03 – HTTP & Rack
link: /lectures/03
date: March 26, 2015
- title: Lecture 04 – Databases
link: /lectures/04
date: March 28, 2015
- title: Lecture 05 – Rails Omakase
link: /lectures/05
date: April 2, 2015
| Fix the Rails lecture link | Fix the Rails lecture link
| YAML | mit | HackBulgaria/rails,HackBulgaria/rails,HackBulgaria/rails,HackBulgaria/rails |
d5ac857b68c715eebec9388854d6e418d582650a | _data/versions.yml | _data/versions.yml | "3.8": "devel"
"3.7": "v3.7.5"
"3.6": "v3.6.9"
"3.5": "v3.5.6"
"3.4": "v3.4.11"
"3.3": "v3.3.25"
| "3.8": "devel"
"3.7": "v3.7.5"
"3.6": "v3.6.10"
"3.5": "v3.5.6"
"3.4": "v3.4.11"
"3.3": "v3.3.25"
| Update 3.6 version to v3.6.10 | Update 3.6 version to v3.6.10
| YAML | apache-2.0 | arangodb/docs,arangodb/docs,arangodb/docs,arangodb/docs |
1f68f623e3d45f4b890fee01ef19720cc3691106 | .github/workflows/release_changelog.yml | .github/workflows/release_changelog.yml | name: 'Release changelog'
on:
push:
tags:
- 'v*'
jobs:
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build changelog
id: github_release
uses: metcalfc/changelog-generator@v3.0.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.github_release.outputs.changelog }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
| name: 'Release changelog'
on:
push:
tags:
- 'v*'
jobs:
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build changelog
id: github_release
uses: metcalfc/changelog-generator@v3.0.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.github_release.outputs.changelog }}
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'alpha') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
| Update release changelog to flag prereleases properly | Update release changelog to flag prereleases properly
| YAML | apache-2.0 | Unleash/unleash-frontend,Unleash/unleash-frontend,Unleash/unleash-frontend,Unleash/unleash-frontend |
abcac8308f7c13202731fbd8771977aa91e13d1f | .ci/matrix-runtime-javas.yml | .ci/matrix-runtime-javas.yml | # This file is used as part of a matrix build in Jenkins where the
# values below are included as an axis of the matrix.
# This axis of the build matrix represents the versions of Java on
# which Elasticsearch will be tested. Valid Java versions are 'java'
# or 'openjdk' followed by the major release number.
ES_RUNTIME_JAVA:
- java11
- openjdk16
- zulu11
- corretto11
- adoptopenjdk11
| # This file is used as part of a matrix build in Jenkins where the
# values below are included as an axis of the matrix.
# This axis of the build matrix represents the versions of Java on
# which Elasticsearch will be tested. Valid Java versions are 'java'
# or 'openjdk' followed by the major release number.
ES_RUNTIME_JAVA:
- java11
- openjdk16
- zulu11
- corretto11
- adoptopenjdk11
- openjdk17
| Add Java 17 EA to testing matrix | Add Java 17 EA to testing matrix
| YAML | apache-2.0 | robin13/elasticsearch,GlenRSmith/elasticsearch,robin13/elasticsearch,robin13/elasticsearch,GlenRSmith/elasticsearch,GlenRSmith/elasticsearch,GlenRSmith/elasticsearch,GlenRSmith/elasticsearch,robin13/elasticsearch,robin13/elasticsearch |
3d1821d3c0bd09a5eec7d6217bb708ec4c773c9a | .github/workflows/docker.yml | .github/workflows/docker.yml | name: docker
on:
push:
branches:
- master
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Extract DOCKER_TAG using tag name
if: startsWith(github.ref, 'refs/tags/')
run: |
echo "DOCKER_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Use default DOCKER_TAG
if: startsWith(github.ref, 'refs/tags/') != true
run: |
echo "DOCKER_TAG=latest" >> $GITHUB_ENV
- name: Set lowercase repository name
run: |
echo "REPOSITORY_LC=${REPOSITORY,,}" >>${GITHUB_ENV}
env:
REPOSITORY: '${{ github.repository }}'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to GitHub registry
uses: docker/login-action@v1
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
- uses: docker/build-push-action@v2
with:
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/${{ env.REPOSITORY_LC }}:${{ env.DOCKER_TAG }}
| name: docker
on:
push:
branches:
- master
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Extract DOCKER_TAG using tag name
if: startsWith(github.ref, 'refs/tags/')
run: |
echo "DOCKER_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Use default DOCKER_TAG
if: startsWith(github.ref, 'refs/tags/') != true
run: |
echo "DOCKER_TAG=latest" >> $GITHUB_ENV
- name: Set lowercase repository name
run: |
echo "REPOSITORY_LC=${REPOSITORY,,}" >>${GITHUB_ENV}
env:
REPOSITORY: '${{ github.repository }}'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Github registry
uses: docker/login-action@v1
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
- uses: docker/build-push-action@v2
with:
push: true
tags: ghcr.io/${{ env.REPOSITORY_LC }}:${{ env.DOCKER_TAG }}
| Revert "Publish a multi-platform Docker image" | Revert "Publish a multi-platform Docker image"
This reverts commits 76dae19b1cf2e0b80cee80dabb0e964e3f71182d &
11e86babc7313be6ad6b1696a659a191acec5c95.
| YAML | mit | realm/SwiftLint,realm/SwiftLint,realm/SwiftLint,realm/SwiftLint |
e941258137d87df4d7cc7e057c7022633928ae0c | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install --no-package-lock
- name: npm install nyc, mocha, codecov
run: npm install -g nyc mocha codecov
- name: npm test
run: nyc npm test
env:
CI: true
- name: generate codecov report
run: nyc report --reporter=text-lcov > coverage.lcov
- name: ship coverage to codecov
run: codecov
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
| name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: for dir in prolific.*; do (cd $dir && npm install --no-save --no-package-lock); done
- name: npm install nyc, mocha, codecov
run: npm install -g nyc mocha codecov
- name: npm test
run: nyc npm test
env:
CI: true
- name: generate codecov report
run: nyc report --reporter=text-lcov > coverage.lcov
- name: ship coverage to codecov
run: codecov
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
| Check out each sub-project at Actions. | Check out each sub-project at Actions.
See #1109.
| YAML | mit | bigeasy/prolific,bigeasy/prolific |
98d54586a79068c7ae1fc20cb1bf9c4de6d02486 | .github/workflows/weekly.yml | .github/workflows/weekly.yml | ---
name: stratisd weekly
# yamllint disable-line rule:truthy
on:
schedule:
- cron: 15 3 * * 1
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
next-fedora-python-checks:
continue-on-error: true
strategy:
matrix:
include:
# PYTHON CHECKS ON NEXT FEDORA PYTHON AND PYTHON TOOLS VERSION
- dependencies: >
pylint
python3-dbus-client-gen
python3-dbus-python-client-gen
python3-psutil
python3-pyudev
python3-semantic_version
task: PYTHONPATH=./src make -f Makefile lint
working-directory: ./tests/client-dbus
- dependencies: black python3-isort
task: make -f Makefile fmt-travis
working-directory: ./tests/client-dbus
- dependencies: yamllint
task: make -f Makefile yamllint
working-directory: .
- dependencies: shfmt
task: make -f Makefile fmt-shell-ci
working-directory: .
runs-on: ubuntu-18.04
container: fedora:35 # NEXT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: >
dnf install -y
make
python-unversioned-command
${{ matrix.dependencies }}
- name: Display Python version
run: python --version
- name: ${{ matrix.task }}
run: ${{ matrix.task }}
working-directory: ${{ matrix.working-directory }}
| ---
name: stratisd weekly
# yamllint disable-line rule:truthy
on:
schedule:
- cron: 15 3 * * 1
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
next-fedora-python-checks:
continue-on-error: true
strategy:
matrix:
include:
# PYTHON CHECKS ON NEXT FEDORA PYTHON AND PYTHON TOOLS VERSION
- dependencies: >
pylint
python3-dbus-client-gen
python3-dbus-python-client-gen
python3-psutil
python3-pyudev
python3-semantic_version
task: PYTHONPATH=./src make -f Makefile lint
working-directory: ./tests/client-dbus
- dependencies: black python3-isort
task: make -f Makefile fmt-travis
working-directory: ./tests/client-dbus
- dependencies: yamllint
task: make -f Makefile yamllint
working-directory: .
- dependencies: shfmt
task: make -f Makefile fmt-shell-ci
working-directory: .
runs-on: ubuntu-18.04
container: fedora:36 # NEXT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: >
dnf install -y
make
python-unversioned-command
${{ matrix.dependencies }}
- name: Display Python version
run: python --version
- name: ${{ matrix.task }}
run: ${{ matrix.task }}
working-directory: ${{ matrix.working-directory }}
| Advance next development environment to Fedora 36 | Advance next development environment to Fedora 36
Signed-off-by: Bryan Gurney <94498243b15882748b18aec9e6dc02da713818c8@redhat.com>
| YAML | mpl-2.0 | stratis-storage/stratisd,stratis-storage/stratisd,stratis-storage/stratisd |
d6c5c785559350634c5ea49d7ba1347df59c9736 | playbooks/roles/gitreload/tasks/course_pull.yml | playbooks/roles/gitreload/tasks/course_pull.yml | # Tasks to run if cloning repos to edx-platform.
- name: clone all course repos
git: dest={{ GITRELOAD_REPODIR }}/{{ item.name }} repo={{ item.url }} version={{ item.commit }}
become_user: "{{ common_web_user }}"
with_items: "{{ GITRELOAD_REPOS }}"
- name: do import of courses
shell: "SERVICE_VARIANT=lms {{ edxapp_venv_bin }}/python manage.py lms --settings={{ edxapp_settings }} git_add_course {{ item.url }} {{ GITRELOAD_REPODIR }}/{{ item.name }}"
args:
executable: "/bin/bash"
chdir: "{{ edxapp_code_dir }}"
become_user: "{{ common_web_user }}"
with_items: "{{ GITRELOAD_REPOS }}"
- name: change ownership on repos for access by edxapp and www-data
file:
path: "{{ GITRELOAD_REPODIR }}"
state: directory
owner: "{{ common_web_user }}"
owner: "{{ common_web_group }}"
recurse: yes
- name: change group on repos if using devstack
file:
path: "{{ GITRELOAD_REPODIR }}"
state: directory
group: "{{ edxapp_user }}"
recurse: yes
when: devstack
- name: change mode on repos with using devstack
command: "chmod -R o=rwX,g=srwX,o=rX {{ GITRELOAD_REPODIR }}"
when: devstack
| # Tasks to run if cloning repos to edx-platform.
- name: clone all course repos
git: dest={{ GITRELOAD_REPODIR }}/{{ item.name }} repo={{ item.url }} version={{ item.commit }}
become_user: "{{ common_web_user }}"
with_items: "{{ GITRELOAD_REPOS }}"
- name: do import of courses
shell: "SERVICE_VARIANT=lms {{ edxapp_venv_bin }}/python manage.py lms --settings={{ edxapp_settings }} git_add_course {{ item.url }} {{ GITRELOAD_REPODIR }}/{{ item.name }}"
args:
executable: "/bin/bash"
chdir: "{{ edxapp_code_dir }}"
become_user: "{{ common_web_user }}"
with_items: "{{ GITRELOAD_REPOS }}"
- name: change ownership on repos for access by edxapp and www-data
file:
path: "{{ GITRELOAD_REPODIR }}"
state: directory
owner: "{{ common_web_user }}"
group: "{{ common_web_group }}"
recurse: yes
- name: change group on repos if using devstack
file:
path: "{{ GITRELOAD_REPODIR }}"
state: directory
group: "{{ edxapp_user }}"
recurse: yes
when: devstack
- name: change mode on repos with using devstack
command: "chmod -R o=rwX,g=srwX,o=rX {{ GITRELOAD_REPODIR }}"
when: devstack
| Fix duplicate dict key (owner) warning | Fix duplicate dict key (owner) warning
| YAML | agpl-3.0 | EDUlib/configuration,edx/configuration,arbrandes/edx-configuration,mitodl/configuration,edx/configuration,EDUlib/configuration,mitodl/configuration,stvstnfrd/configuration,mitodl/configuration,edx/configuration,stvstnfrd/configuration,EDUlib/configuration,stvstnfrd/configuration,mitodl/configuration,EDUlib/configuration,arbrandes/edx-configuration,stvstnfrd/configuration,stvstnfrd/configuration,edx/configuration,arbrandes/edx-configuration,arbrandes/edx-configuration,EDUlib/configuration,arbrandes/edx-configuration |
af47a84ea11bacc203a40c1705c0d32710947c32 | azure-pipelines.yml | azure-pipelines.yml | trigger: ["master", "v0.6.x"]
pr: ["master", "v0.6.x"]
jobs:
# Check formatting
- template: ci/azure-rustfmt.yml
parameters:
name: rustfmt
# Stable
- template: ci/azure-test-stable.yml
parameters:
name: stable
displayName: Test
cross: true
# Nightly
- template: ci/azure-test-stable.yml
parameters:
name: nightly
displayName: Nightly
# Pin nightly to avoid being impacted by breakage
rust_version: nightly-2019-04-22
benches: true
# This represents the minimum Rust version supported by
# Mio. Updating this should be done in a dedicated PR.
#
# Tests are not run as tests may require newer versions of
# rust.
- template: ci/azure-test-stable.yml
parameters:
name: minrust
displayName: Min Rust
rust_version: 1.34.0
cmd: check
cross: true
- template: ci/azure-clippy.yml
parameters:
name: clippy
- template: ci/azure-cross-compile.yml
parameters:
name: cross
- template: ci/azure-deploy-docs.yml
parameters:
dependsOn:
# - rustfmt
- stable
- nightly
- minrust
- cross
| trigger: ["master", "v0.6.x"]
pr: ["master", "v0.6.x"]
jobs:
# Check formatting
- template: ci/azure-rustfmt.yml
parameters:
name: rustfmt
# Stable
- template: ci/azure-test-stable.yml
parameters:
name: stable
displayName: Test
cross: true
# Nightly
- template: ci/azure-test-stable.yml
parameters:
name: nightly
displayName: Nightly
# Pin nightly to avoid being impacted by breakage
rust_version: nightly-2019-04-22
benches: true
# This represents the minimum Rust version supported by
# Mio. Updating this should be done in a dedicated PR.
#
# Tests are not run as tests may require newer versions of
# rust.
- template: ci/azure-test-stable.yml
parameters:
name: minrust
displayName: Min Rust
rust_version: 1.36.0
cmd: check
cross: true
- template: ci/azure-clippy.yml
parameters:
name: clippy
- template: ci/azure-cross-compile.yml
parameters:
name: cross
- template: ci/azure-deploy-docs.yml
parameters:
dependsOn:
# - rustfmt
- stable
- nightly
- minrust
- cross
| Update minimum Rust version to 1.36 in CI | Update minimum Rust version to 1.36 in CI
| YAML | mit | carllerche/mio,carllerche/mio |
6abb498250448c564c76860fae8c324ebef2add2 | azure-pipelines.yml | azure-pipelines.yml | stages:
- template: azure/stages.yml@templates
parameters:
cross: false
setup:
- script: sudo apt install libpam0g-dev
resources:
repositories:
- repository: templates
type: github
name: crate-ci/azure-pipelines
endpoint: 1wilkens
| stages:
- template: default.yml@templates
parameters:
cross: false
setup:
- script: sudo apt install libpam0g-dev
resources:
repositories:
- repository: templates
type: github
name: crate-ci/azure-pipelines
ref: refs/heads/v0.4
endpoint: 1wilkens
| Fix CI by pinning crate-ci version again | [CI] Fix CI by pinning crate-ci version again
| YAML | apache-2.0 | MrFloya/pam-auth |
b57d34b83d13c9a924cfe004fe8c162e3fb29ea7 | azure-pipelines.yml | azure-pipelines.yml | # Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- script: |
npm install
npm test
displayName: 'npm install and test'
| # Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
node_10_x:
node_version: 10.x
node_12_x:
node_version: 12.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
displayName: 'Install Node.js'
- script: |
npm install
npm test
displayName: 'npm install and test'
| Build both against node 10 and node 12 | Build both against node 10 and node 12
| YAML | mit | Microsoft/node-native-keymap,Microsoft/node-native-keymap,Microsoft/node-native-keymap,Microsoft/node-native-keymap |
85eaa46bf0b3e428621cbdec46af2423229da098 | azure-pipelines.yml | azure-pipelines.yml | jobs:
- template: azure-pipelines-template.yml
parameters:
name: macOS
vmImage: macOS-latest
target: x86_64-apple-darwin
- template: azure-pipelines-template.yml
parameters:
name: Linux
vmImage: ubuntu-16.04
target: x86_64-unknown-linux-gnu
- template: azure-pipelines-template.yml
parameters:
name: Windows
vmImage: vs2017-win2016
target: x86_64-pc-windows-msvc
- template: azure-pipelines-template.yml
parameters:
name: Windows_GNU
vmImage: vs2017-win2016
target: i686-pc-windows-gnu
- template: azure-pipelines-template.yml
parameters:
name: Linux_WASM
vmImage: ubuntu-16.04
target: x86_64-unknown-linux-gnu
| jobs:
- template: azure-pipelines-template.yml
parameters:
name: macOS
vmImage: macOS-latest
target: x86_64-apple-darwin
- template: azure-pipelines-template.yml
parameters:
name: Linux
vmImage: ubuntu-latest
target: x86_64-unknown-linux-gnu
- template: azure-pipelines-template.yml
parameters:
name: Windows
vmImage: vs2017-win2016
target: x86_64-pc-windows-msvc
- template: azure-pipelines-template.yml
parameters:
name: Windows_GNU
vmImage: vs2017-win2016
target: i686-pc-windows-gnu
- template: azure-pipelines-template.yml
parameters:
name: Linux_WASM
vmImage: ubuntu-latest
target: x86_64-unknown-linux-gnu
| Migrate Azure Pipelines configuration to ubuntu-latest | Migrate Azure Pipelines configuration to ubuntu-latest | YAML | mit | Boddlnagg/midir |
b4e5483f44befb4534c7823189d7f978598a2ea7 | azure-pipelines.yml | azure-pipelines.yml | # Ruby
# Package your Ruby project.
# Add steps that install rails, analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby
trigger:
- master
pool:
vmImage: 'Ubuntu-16.04'
steps:
- task: UseRubyVersion@0
inputs:
versionSpec: '>= 2.5'
- script: |
gem install bundler
bundle install --retry=3 --jobs=4
displayName: 'bundle install'
- script: bundle exec rake
displayName: 'bundle exec rake'
| # Ruby
# Package your Ruby project.
# Add steps that install rails, analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby
trigger:
- master
pool:
vmImage: 'Ubuntu-16.04'
steps:
- task: UseRubyVersion@0
inputs:
versionSpec: '>= 2.5'
- script: |
gem install bundler
bundle install --retry=3 --jobs=4
displayName: 'bundle install'
- script: bundle exec rake
env:
BACKLOG_SPACE_ID: $(spaceId)
BACKLOG_API_KEY: $(apiKey)
displayName: 'bundle exec rake'
| Set secret variables for Azure Pipelines to env | Set secret variables for Azure Pipelines to env
| YAML | mit | emsk/backlog_kit,emsk/backlog_kit |
c67fdeb59be52c13a0e08f0fb483df9aec814fd9 | azure-pipelines.yml | azure-pipelines.yml | name: $(BuildID)
resources:
repositories:
- repository: apt
type: github
name: futagoza/apt
endpoint: pegjs
variables:
- group: 'env-variables'
jobs:
- template: eslint.yml@apt
- template: node-test.yml@apt
parameters:
node_version: 6.x
after:
- script: yarn coverage
env:
COVERALLS_SERVICE_NAME: $(COVERALLS_SERVICE_NAME)
COVERALLS_REPO_TOKEN: $(COVERALLS_REPO_TOKEN)
GIT_BRANCH: $(Build.SourceBranch)
GIT_COMMIT_SHA: $(Build.SourceVersion)
azure_coverage: True
| name: $(BuildID)
resources:
repositories:
- repository: apt
type: github
name: futagoza/apt
endpoint: futagoza
variables:
- group: 'env-variables'
jobs:
- template: eslint.yml@apt
- template: node-test.yml@apt
parameters:
node_version: 6.x
after:
- script: yarn coverage
env:
COVERALLS_SERVICE_NAME: $(COVERALLS_SERVICE_NAME)
COVERALLS_REPO_TOKEN: $(COVERALLS_REPO_TOKEN)
GIT_BRANCH: $(Build.SourceBranch)
GIT_COMMIT_SHA: $(Build.SourceVersion)
azure_coverage: True
| Change endpoint for Pipeline templates | Change endpoint for Pipeline templates
| YAML | mit | pegjs/pegjs,pegjs/pegjs |
71d63f4c25e19d33d152284715380050c3ed0591 | recipes/cohesion/meta.yaml | recipes/cohesion/meta.yaml | {% set name = "cohesion" %}
{% set version = "1.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/mschwager/{{ name }}/archive/refs/tags/{{ version }}.tar.gz
sha256: abb5a88b70de96e7dfb65244cc13cff7e9c5edee5333175d5a7668ac7c742c6c
build:
noarch: python
number: 0
entry_points:
- cohesion = cohesion.__main__:main
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
test:
commands:
- pip check
- cohesion -h
- {{ PYTHON }} -c "import subprocess, sys; sys.exit(1) if 'cohesion not in subprocess.check_output('flake8 --version').decode() else sys.exit(0)"
requires:
- flake8
- pip
about:
home: https://github.com/mschwager/cohesion
license: GPL-3.0-or-later
license_file: LICENSE
summary: Tool for measuring Python class cohesion. Optional flake8 extension.
extra:
recipe-maintainers:
- thewchan
| {% set name = "cohesion" %}
{% set version = "1.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/mschwager/{{ name }}/archive/refs/tags/{{ version }}.tar.gz
sha256: abb5a88b70de96e7dfb65244cc13cff7e9c5edee5333175d5a7668ac7c742c6c
build:
noarch: python
number: 0
entry_points:
- cohesion = cohesion.__main__:main
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
test:
commands:
- pip check
- cohesion -h
- "flake8 --version | grep cohesion"
requires:
- flake8
- m2-grep # [win]
- pip
about:
home: https://github.com/mschwager/cohesion
license: GPL-3.0-or-later
license_file: LICENSE
summary: Tool for measuring Python class cohesion. Optional flake8 extension.
extra:
recipe-maintainers:
- thewchan
| Revert flake8 test add windows grep | Revert flake8 test add windows grep
| YAML | bsd-3-clause | kwilcox/staged-recipes,mariusvniekerk/staged-recipes,goanpeca/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,johanneskoester/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,jochym/staged-recipes |
19647e57a7f3bb305e0038eb1b8a365a7ce82d37 | image-yaml/overcloud-images-rhel8.yaml | image-yaml/overcloud-images-rhel8.yaml | disk_images:
-
imagename: overcloud-full
type: qcow2
distro: rhel
release: 8
elements:
- selinux-permissive
- interface-names
packages:
- rhosp-release
- kernel-modules-extra
environment:
FS_TYPE: xfs
options:
- "--mkfs-options '-s size=4096'"
-
imagename: ironic-python-agent
type: qcow2
distro: rhel
release: 8
elements:
- selinux-permissive
- interface-names
| disk_images:
-
imagename: overcloud-full
type: qcow2
distro: rhel
release: 8
elements:
- interface-names
packages:
- rhosp-release
- kernel-modules-extra
environment:
FS_TYPE: xfs
options:
- "--mkfs-options '-s size=4096'"
-
imagename: ironic-python-agent
type: qcow2
distro: rhel
release: 8
elements:
- selinux-permissive
- interface-names
| Remove selinux-permissive from rhel8 image | Remove selinux-permissive from rhel8 image
The rhel overcloud should be enforcing.
Change-Id: I5dca75d571304441170766bbb16f7f681b1d1ca8
| YAML | apache-2.0 | openstack/tripleo-common,openstack/tripleo-common |
7fd4b9c5f56f47ce9db1157e99e983a3bfff1ff7 | metadata/awais.instagrabber.yml | metadata/awais.instagrabber.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: GPL-3.0-or-later
WebSite: https://gitlab.com/AwaisKing/Instagrabber
SourceCode: https://gitlab.com/AwaisKing/Instagrabber/tree/HEAD
IssueTracker: https://gitlab.com/AwaisKing/Instagrabber/issues
AutoName: InstaGrabber
RepoType: git
Repo: https://gitlab.com/AwaisKing/Instagrabber.git
Builds:
- versionName: 4.0-fdroid
versionCode: 4
commit: v4.0
subdir: app
gradle:
- fdroid
- versionName: 6.0-fdroid
versionCode: 6
commit: v6.0
subdir: app
gradle:
- fdroid
- versionName: 7.0-fdroid
versionCode: 7
commit: v7.0
subdir: app
gradle:
- fdroid
- versionName: 8.0-fdroid
versionCode: 8
commit: v8.0
subdir: app
gradle:
- fdroid
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 8.0-fdroid
CurrentVersionCode: 8
| AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: GPL-3.0-or-later
WebSite: https://gitlab.com/AwaisKing/Instagrabber
SourceCode: https://gitlab.com/AwaisKing/Instagrabber/tree/HEAD
IssueTracker: https://gitlab.com/AwaisKing/Instagrabber/issues
AutoName: InstaGrabber
RepoType: git
Repo: https://gitlab.com/AwaisKing/Instagrabber.git
Builds:
- versionName: 4.0-fdroid
versionCode: 4
commit: v4.0
subdir: app
gradle:
- fdroid
- versionName: 6.0-fdroid
versionCode: 6
commit: v6.0
subdir: app
gradle:
- fdroid
- versionName: 7.0-fdroid
versionCode: 7
commit: v7.0
subdir: app
gradle:
- fdroid
- versionName: 8.0-fdroid
versionCode: 8
commit: v8.0
subdir: app
gradle:
- fdroid
- versionName: 10.0-fdroid
versionCode: 10
commit: v10.0-fdroid
subdir: app
gradle:
- fdroid
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 10.0-fdroid
CurrentVersionCode: 10
| Update InstaGrabber to 10.0-fdroid (10) | Update InstaGrabber to 10.0-fdroid (10)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
9d65f4125d82ac1588e84a4f4cb09168a272df8a | metadata/com.planes.android.yml | metadata/com.planes.android.yml | Categories:
- Games
License: MIT
AuthorName: Cristian Cucu
SourceCode: https://github.com/xxxcucus/planes
IssueTracker: https://github.com/xxxcucus/planes/issues
AutoName: Planes Android
RepoType: git
Repo: https://github.com/xxxcucus/planes
Builds:
- versionName: 0.3.6
versionCode: 9
commit: 0.3.6
subdir: java/PlanesAndroid/app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.3.6
CurrentVersionCode: 9
| Categories:
- Games
License: MIT
AuthorName: Cristian Cucu
SourceCode: https://github.com/xxxcucus/planes
IssueTracker: https://github.com/xxxcucus/planes/issues
AutoName: Planes Android
RepoType: git
Repo: https://github.com/xxxcucus/planes
Builds:
- versionName: 0.3.6
versionCode: 9
commit: 0.3.6
subdir: java/PlanesAndroid/app
gradle:
- yes
- versionName: 0.3.7
versionCode: 10
commit: 0.3.7
subdir: java/PlanesAndroid/app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.3.7
CurrentVersionCode: 10
| Update Planes Android to 0.3.7 (10) | Update Planes Android to 0.3.7 (10)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
3806b8565759ececd3208677260e00bbc0ebeae0 | roles/nodepool/meta/main.yml | roles/nodepool/meta/main.yml | ---
dependencies:
- role: apache
apache_vhosts:
- name: nodepool
document_root: /var/log/nodepool/
document_root_options: +FollowSymLinks
- role: os-clouds
clouds: "{{ nodepool_providers | map(attribute='name') | list }}"
| ---
dependencies:
- role: apache
apache_vhosts:
- name: nodepool
document_root: /var/log/nodepool/
document_root_options: +FollowSymLinks
| Revert "Ensure a clouds.yaml is written for nodepool hosts" | Revert "Ensure a clouds.yaml is written for nodepool hosts"
This reverts commit 9aea6d43aa9c45f75c335b85a44892595a5100ff.
We don't need this done, a template handles nodepool openstack creds.
| YAML | apache-2.0 | BonnyCI/hoist,jamielennox/hoist,SpamapS/hoist,BonnyCI/hoist,SpamapS/hoist,jamielennox/hoist |
515d66a9946c2b73468d2d242532723d0048f272 | config/avhrr_l0.yml | config/avhrr_l0.yml | terascan_driver: "/opt/terascan/pass/tscan.bash_profile"
save:
- "*.avhrr"
opts: "which_ch3=both hrpt_format=lac hrpt_types=avhrr on_pass_disk=no channels=\"1 2 3 4 5\" fix_missing=yes sharpen=no calibrate=yes temp_units=kelvin byte_output=no full_report=no solar_corr=yes geo_correct=no delta_line=1 delta_sample=1 use_master=no start_time= num_lines= start_sample=1 num_samples= "
| terascan_driver: "/opt/terascan/pass/tscan.bash_profile"
save:
- "*.avhrr"
opts: "which_ch3=both hrpt_format=lac hrpt_types=avhrr on_pass_disk=no channels=\"1 2 3 4 5\" fix_missing=yes sharpen=no calibrate=yes temp_units=kelvin byte_output=no full_report=no solar_corr=no geo_correct=no delta_line=1 delta_sample=1 use_master=no start_time= num_lines= start_sample=1 num_samples= "
| Change the sun angle stuff to off. | Change the sun angle stuff to off.
Signed-off-by: JC <f9ae8604de015e6fc12a1ebdbe72f262b981a2f6@alaska.edu>
| YAML | apache-2.0 | gina-alaska/sandy-utils,gina-alaska/sandy-utils,gina-alaska/sandy-utils |
3e0fe04ae70d2615b386b581de47e097e9db7a20 | config/database.yml | config/database.yml | # Database configuration file for development and testing w/ ActiveRecord or DataMapper/DataObjects.
# NOTE: Our Capistrano deployment replaces this file with a configuration file pulled in from outside the repository.
# NOTE: This defines the default DataMapper connection; other connections can be defined.
default: &default
adapter: postgresql
encoding: utf8
pool: 5
development:
<<: *default
database: --skip-test-unit_development
password:
host: localhost
test: &test
<<: *default
database: --skip-test-unit_test
password:
host: localhost
cucumber:
<<: *test
| # Database configuration file for development and testing w/ ActiveRecord or DataMapper/DataObjects.
# NOTE: Our Capistrano deployment replaces this file with a configuration file pulled in from outside the repository.
# NOTE: This defines the default DataMapper connection; other connections can be defined.
default: &default
adapter: postgresql
encoding: utf8
pool: 5
development:
<<: *default
database: zztop_development
password:
host: localhost
test: &test
<<: *default
database: zztop_test
password:
host: localhost
cucumber:
<<: *test
| Fix DB names to something not terrible | Fix DB names to something not terrible
My Rails init command was not interpreted like I expected it to be.
| YAML | mit | BinaryNoggin/zztop,BinaryNoggin/zztop,BinaryNoggin/zztop |
d7b2e29cffccec31177906e2e08e027daa0a5f4e | aws_lab_setup/teardown_lab.yml | aws_lab_setup/teardown_lab.yml | - name: Destroy lab instances in AWS
hosts: localhost
connection: local
become: no
gather_facts: no
vars:
ec2_exact_count: 0
ec2_wait: no
roles:
- manage_ec2_instances
post_tasks:
- name: Cleanup local files
shell: rm -f *.txt
| - name: Destroy lab instances in AWS
hosts: localhost
connection: local
become: no
gather_facts: yes
vars:
ec2_exact_count: 0
ec2_wait: no
roles:
- manage_ec2_instances
post_tasks:
- name: Find .txt files
find:
paths: "{{ ansible_env.PWD }}"
patterns: '*.txt'
register: files
- name: Remove inventory files
file:
state: absent
path: "{{ item }}"
with_items: "{{ files.files }}"
| Use modules for removing inventory files | Use modules for removing inventory files
| YAML | mit | thisdavejohnson/lightbulb,ansible/lightbulb,ansible/lightbulb,ansible/lightbulb,ansible/lightbulb,tima/lightbulb,tima/lightbulb,thisdavejohnson/lightbulb,tima/lightbulb |
866be710554cdd1b9fe9155469a7c6a7f5a2ff62 | config/database.yml | config/database.yml | # PostgreSQL. Versions 8.2 and up are supported.
#
# Install the pg driver:
# gem install pg
# On Mac OS X with macports:
# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config
# On Windows:
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem 'pg'
#
development:
adapter: postgis
database: bluecarbon_development
pool: 5
username: timwilkinson
password:
host: localhost
# Connect on a TCP socket. Omitted by default since the client uses a
# domain socket that doesn't need configuration. Windows does not have
# domain sockets, so uncomment these lines.
#host: localhost
#port: 5432
# Schema search path. The server defaults to $user,public
#schema_search_path: myapp,sharedapp,public
# Minimum log levels, in increasing order:
# debug5, debug4, debug3, debug2, debug1,
# log, notice, warning, error, fatal, and panic
# The server defaults to notice.
#min_messages: warning
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
adapter: postgis
database: bluecarbon_test
host: localhost
pool: 5
username: timwilkinson
password:
host: localhost
template: template_postgis
production:
adapter: postgresql
database: bluecarbon_production
host: localhost
| development:
adapter: postgis
database: bluecarbon_development
pool: 5
username: postgres
password:
host: localhost
template: template_postgis
test:
adapter: postgis
database: bluecarbon_test
host: localhost
pool: 5
username: postgres
password:
host: localhost
template: template_postgis
production:
adapter: postgresql
database: bluecarbon_production
host: localhost
| Remove Tim's DB config :) | Remove Tim's DB config :)
| YAML | bsd-3-clause | unepwcmc/BlueCarbon,unepwcmc/BlueCarbon,unepwcmc/BlueCarbon |
c5ab1e950f9ecbbc31b8e4ac382cb87313521b8f | data/transition-sites/mod_ssmt.yml | data/transition-sites/mod_ssmt.yml | ---
site: mod_ssmt
whitehall_slug: ministry-of-defence
redirection_date: 31st July 2014
homepage: https://www.gov.uk/government/collections/service-childrens-education
tna_timestamp: 20201010101010 # Stub timestamp for site not in TNA
host: www.serviceschoolsmobilitytoolkit.com
aliases:
- serviceschoolsmobilitytoolkit.com
| ---
site: mod_ssmt
whitehall_slug: ministry-of-defence
redirection_date: 31st July 2014
homepage: https://www.gov.uk/government/collections/service-childrens-education
tna_timestamp: 20201010101010 # Stub timestamp for site not in TNA
host: www.serviceschoolsmobilitytoolkit.com
aliases:
- serviceschoolsmobilitytoolkit.com
global: =301 https://www.gov.uk/government/collections/service-childrens-education
| Add global redirect for ssmt | Add global redirect for ssmt
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
705ca04d6b65c97d86899b0f42ce9682edb56c55 | .github/workflows/gh-pages.yaml | .github/workflows/gh-pages.yaml | name: github pages for docs
on:
push:
branches:
- master
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
if: ${{contains(github.event.commits[0].message, '[docs]')}}
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Build
run: hugo --minify --cleanDestinationDir --gc -s hugo
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
commit_message: 'Published docs [skip ci]'
publish_dir: hugo/public
publish_branch: docs
| name: github pages for docs
on:
push:
branches:
- master
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
if: ${{contains(join(github.event.commits.*.message), '[docs]')}}
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Build
run: hugo --minify --cleanDestinationDir --gc -s hugo
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
commit_message: 'Published docs [skip ci]'
publish_dir: hugo/public
publish_branch: docs
| Build docs when *any* commit message in the push contains | Build docs when *any* commit message in the push contains [docs]
| YAML | mit | theseion/Fuel |
10915ea5ccb8524ef74e6710aefa601ca8afaf55 | .github/workflows/run-tests.yml | .github/workflows/run-tests.yml | name: run-tests
on: [push, pull_request]
jobs:
build:
name: Run tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.6", "3.7", "3.8", "3.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U --upgrade-strategy=eager --pre -e .[testing,webassets]
pip install 'pycparser==2.18'
- name: Test with pytest
run: |
pytest -v --cov=dukpy --cov-report=term-missing
- name: Publish to coveralls.io
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install 'coveralls'
coveralls --service=github
| name: run-tests
on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: Run tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.6", "3.7", "3.8", "3.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U --upgrade-strategy=eager --pre -e .[testing,webassets]
pip install 'pycparser==2.18'
- name: Test with pytest
run: |
pytest -v --cov=dukpy --cov-report=term-missing
- name: Publish to coveralls.io
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install 'coveralls'
coveralls --service=github
| Allow manual running of workflow | Allow manual running of workflow | YAML | mit | amol-/dukpy,amol-/dukpy,amol-/dukpy |
df472974ee1f28fdb7714099eb9bb8b8ec6ec02c | .github/workflows/run-tests.yml | .github/workflows/run-tests.yml | name: run-tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0]
laravel: [8.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: 6.*
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit
| name: run-tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0]
laravel: [8.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.6
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit
| Fix "prefer-lowest" test from always failing | Fix "prefer-lowest" test from always failing
Testbench 6.6.0 removes usage `getAnnotations()` which was removed in PHPUnit 9.5. Versions prior to 6.6.0 will fail, and the "prefer-lowest" test installs 6.0.0 | YAML | mit | spatie-custom/skeleton |
1ea39c2e77b8522fb60362ba3ce81eb195995a84 | .github/workflows/run-tests.yml | .github/workflows/run-tests.yml | name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
pip install mypy
- name: Test with pytest
run: |
pytest test
- name: Run Mypy but allow failures
run: |
mypy --show-error-codes --disable-error-code misc tableauserverclient
continue-on-error: true
| name: Python tests
on: [push]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0-rc.2]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
pip install mypy
- name: Test with pytest
run: |
pytest test
- name: Run Mypy but allow failures
run: |
mypy --show-error-codes --disable-error-code misc tableauserverclient
continue-on-error: true
| Add Mac and Win to PR testing pipeline | Add Mac and Win to PR testing pipeline
Also add support for Pythong 3.10 RC
| YAML | mit | tableau/server-client-python,tableau/server-client-python |
c50fdbcfb95474a7064b717c71185300a36ad9ca | metadata/com.beemdevelopment.aegis.yml | metadata/com.beemdevelopment.aegis.yml | Categories:
- Security
License: GPL-3.0-only
SourceCode: https://github.com/beemdevelopment/Aegis
IssueTracker: https://github.com/beemdevelopment/Aegis/issues
AutoName: Aegis
RepoType: git
Repo: https://github.com/beemdevelopment/Aegis
Builds:
- versionName: '0.2'
versionCode: 3
commit: v0.2
subdir: app
gradle:
- yes
- versionName: 0.2.2
versionCode: 5
commit: v0.2.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.2.2
CurrentVersionCode: 5
| Categories:
- Security
License: GPL-3.0-only
SourceCode: https://github.com/beemdevelopment/Aegis
IssueTracker: https://github.com/beemdevelopment/Aegis/issues
AutoName: Aegis
RepoType: git
Repo: https://github.com/beemdevelopment/Aegis
Builds:
- versionName: '0.2'
versionCode: 3
commit: v0.2
subdir: app
gradle:
- yes
- versionName: 0.2.2
versionCode: 5
commit: v0.2.2
subdir: app
gradle:
- yes
- versionName: '0.3'
versionCode: 6
commit: v0.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '0.3'
CurrentVersionCode: 6
| Update Aegis to 0.3 (6) | Update Aegis to 0.3 (6)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata |
9096ae12273dc840dc613eb6315458168382698d | metadata/com.securefilemanager.app.yml | metadata/com.securefilemanager.app.yml | Categories:
- Security
- System
License: GPL-3.0-or-later
SourceCode: https://github.com/Secure-File-Manager/Secure-File-Manager
IssueTracker: https://github.com/Secure-File-Manager/Secure-File-Manager/issues
Changelog: https://github.com/Secure-File-Manager/Secure-File-Manager/blob/HEAD/CHANGELOG.md
AutoName: Secure File Manager Beta
RepoType: git
Repo: https://github.com/Secure-File-Manager/Secure-File-Manager
Builds:
- versionName: 0.1.2-beta2
versionCode: 4
commit: v0.1.2-beta2
subdir: app
gradle:
- yes
- versionName: 0.1.3-beta
versionCode: 5
commit: v0.1.3-beta
subdir: app
gradle:
- yes
- versionName: 0.1.4-beta
versionCode: 6
commit: v0.1.4-beta
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.1.4-beta
CurrentVersionCode: 6
| Categories:
- Security
- System
License: GPL-3.0-or-later
SourceCode: https://github.com/Secure-File-Manager/Secure-File-Manager
IssueTracker: https://github.com/Secure-File-Manager/Secure-File-Manager/issues
Changelog: https://github.com/Secure-File-Manager/Secure-File-Manager/blob/HEAD/CHANGELOG.md
AutoName: Secure File Manager Beta
RepoType: git
Repo: https://github.com/Secure-File-Manager/Secure-File-Manager
Builds:
- versionName: 0.1.2-beta2
versionCode: 4
commit: v0.1.2-beta2
subdir: app
gradle:
- yes
- versionName: 0.1.3-beta
versionCode: 5
commit: v0.1.3-beta
subdir: app
gradle:
- yes
- versionName: 0.1.4-beta
versionCode: 6
commit: v0.1.4-beta
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
- versionName: 0.1.5-beta
versionCode: 7
commit: v0.1.5-beta
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.1.5-beta
CurrentVersionCode: 7
| Update Secure File Manager Beta to 0.1.5-beta (7) | Update Secure File Manager Beta to 0.1.5-beta (7)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
072d3d17ca443a5bf36a1d68836c98896b10d2d7 | conda-recipes/geomdl/meta.yaml | conda-recipes/geomdl/meta.yaml | # conda-build recipe for NURBS-Python (geomdl) package
{% set setup_data = load_setup_py_data() %}
package:
name: geomdl
version: {{ setup_data['version'] }}
source:
path: ../../
build:
noarch: python
string: {{ GIT_DESCRIBE_HASH[1:] }}
script:
- python setup.py install --single-version-externally-managed --record=record.txt
requirements:
host:
- python
- setuptools
- six
#- enum34 # required for py27
run:
- python
- six
#- enum34 # required for py27
- numpy
- matplotlib
test:
imports:
- geomdl
source_files:
- tests/
requires:
- pytest
commands:
- python -c "import geomdl; print(geomdl.__version__)"
- pytest
about:
home: https://onurraufbingol.com/NURBS-Python/
license: MIT
license_file: ../../LICENSE
summary: Object-oriented NURBS curve and surface evaluation library
description: "Self-contained, object-oriented, pure Python B-Spline and NURBS evaluation library with knot vector and surface grid generators."
doc_url: "http://nurbs-python.readthedocs.io/"
dev_url: "https://github.com/orbingol/NURBS-Python"
extra:
recipe-maintainers:
- orbingol
| # conda-build recipe for NURBS-Python (geomdl) package
{% set setup_data = load_setup_py_data() %}
{% set build_number = 0 %}
package:
name: geomdl
version: {{ setup_data['version'] }}
source:
path: ../../
build:
noarch: python
string: {{ GIT_DESCRIBE_HASH[1:] }}_{{ build_number }}
script:
- python setup.py sdist
- pip install dist/geomdl-{{ setup_data['version'] }}.tar.gz --no-deps
#- python setup.py install --single-version-externally-managed --record=record.txt
requirements:
host:
- python
- setuptools
- six
#- enum34 # required for py27
run:
- python
- six
#- enum34 # required for py27
- numpy
- matplotlib
test:
imports:
- geomdl
source_files:
- tests/
requires:
- pytest
commands:
- python -c "import geomdl; print(geomdl.__version__)"
- pytest
about:
home: https://onurraufbingol.com/NURBS-Python/
license: MIT
license_file: ../../LICENSE
summary: Object-oriented NURBS curve and surface evaluation library
description: "Self-contained, object-oriented, pure Python B-Spline and NURBS evaluation library with knot vector and surface grid generators."
doc_url: "http://nurbs-python.readthedocs.io/"
dev_url: "https://github.com/orbingol/NURBS-Python"
extra:
recipe-maintainers:
- orbingol
| Update conda-build recipe to remove egg-info dir from site-packages | Update conda-build recipe to remove egg-info dir from site-packages
| YAML | mit | orbingol/NURBS-Python,orbingol/NURBS-Python |
f15989b41f7515e00cd8c8c3769041a18c7c4065 | .circleci/config.yml | .circleci/config.yml | # Java Maven CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
MAVEN_OPTS: -Xmx3200m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: mvn dependency:go-offline
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}
# run tests!
- run: ./build-run.sh | # Java Maven CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
MAVEN_OPTS: -Xmx3200m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: mvn dependency:go-offline
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}
# run tests!
- run: ./build-test.sh | Update CircleCI reference to build script. | Update CircleCI reference to build script.
| YAML | mit | mhradek/aurkitu,mhradek/aurkitu |
7117c7a1c4c00ce1257a00093846541745e6271e | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:9
- image: circleci/mongo:3
- image: redis:4@sha256:a471807cc636a02d8be3959a52dd7262a83ce6351be19605ce17d5da06c42f1d
- image: circleci/postgres:10.6
environment:
POSTGRES_USER: accounts-js
POSTGRES_DB: accounts-js-tests-e2e
steps:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn run lerna bootstrap
- run: yarn test
- run: yarn codecov
- run: cd examples/react-rest-typescript && yarn install --frozen-lockfile && yarn test
- run: cd examples/rest-express-typescript && yarn install --frozen-lockfile && yarn test
- run: cd examples/react-graphql-typescript && yarn install --frozen-lockfile && yarn test
- run: cd examples/graphql-server-typescript && yarn install --frozen-lockfile && yarn test
| version: 2
jobs:
build:
docker:
- image: circleci/node:9
- image: circleci/mongo:3
- image: redis:4@sha256:b16c2623b557d300199014a53754d697c8f92f6e4e062923c26890fcf72a05e5
- image: circleci/postgres:10.6
environment:
POSTGRES_USER: accounts-js
POSTGRES_DB: accounts-js-tests-e2e
steps:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn run lerna bootstrap
- run: yarn test
- run: yarn codecov
- run: cd examples/react-rest-typescript && yarn install --frozen-lockfile && yarn test
- run: cd examples/rest-express-typescript && yarn install --frozen-lockfile && yarn test
- run: cd examples/react-graphql-typescript && yarn install --frozen-lockfile && yarn test
- run: cd examples/graphql-server-typescript && yarn install --frozen-lockfile && yarn test
| Update redis:4 Docker digest to b16c262 | Update redis:4 Docker digest to b16c262
| YAML | mit | js-accounts/accounts |
25f6e8de8310ef50e3f8fc1cade3d330d2061df3 | .circleci/config.yml | .circleci/config.yml | # Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
# Use a package of configuration called an orb.
orbs:
# Declare a dependency on the welcome-orb
welcome: circleci/welcome-orb@0.4.1
# Orchestrate or schedule a set of jobs
workflows:
# Name the workflow "welcome"
welcome:
# Run the welcome/run job in its own container
jobs:
- welcome/run | version: 2.1
# ======================= JOBS =======================
jobs:
gapic-generator-java-tests:
docker:
- image: l.gcr.io/google/bazel
working_directory: /home/circleci/project/gapic-generator-java
steps:
- checkout
- run:
name: Builder
command: |
bazel build //...
google-java-format:
docker:
- image: l.gcr.io/google/bazel
steps:
- attach_workspace:
at: /home/circleci/workspace
- run:
name: Java Linter
command: |
bazel run //:google_java_format_verification
# ======================= WORKFLOWS =======================
workflows:
version: 2
run_tests:
jobs:
- gapic-generator-java-tests
- google-java-format:
requires:
- gapic-generator-java-tests
| Add builder and linter checks | [ggj][ci] Add builder and linter checks
| YAML | apache-2.0 | googleapis/gapic-generator-java,googleapis/gapic-generator-java |
3030a108861e60ede228825fe0ab3c00f8998a8d | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: lepovirta/lepo-build:latest
steps:
- checkout
- run:
name: Generate
command: ./bin/generate.sh --target prod
| version: 2.1
jobs:
deploy-stg:
docker:
- image: lepovirta/lepo-build:latest
steps:
- checkout
- run:
name: Deploy
command: ./bin/generate.sh -t staging -p
deploy-prod:
docker:
- image: lepovirta/lepo-build:latest
steps:
- checkout
- run:
name: Deploy
command: ./bin/generate.sh -t production -p
workflows:
version: 2
all:
jobs:
- deploy-prod:
filters:
branches:
only: master
- deploy-stg:
filters:
branches:
ignore: master
| Deploy to staging and prod | CircleCI: Deploy to staging and prod
| YAML | mit | Lepovirta/lepo,Lepovirta/lepo |
eec5360882d95ce04adc853b961d16e3393cb6cf | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: python
environment:
AUDIODEV: null
working_directory: ~/screenflow-ci
steps:
- checkout
- run:
name: Install application dependencies
command: pip install -r requirements.txt
- run:
name: Install CI dependencies
command: pip install pytest pytest-cov coverage codacy-coverage
- run:
name: Run unit tests
command: pytest --junitxml=unittests.xml --cov-report term --cov=screenflow
- run:
name: Generate test coverage report
command: coverage xml
- store_test_results:
path: unittest.xml
- store_artifacts:
path: coverage.xml
prefix: coverage-report
- deploy:
name: Deploy coverage report to Codacy
command: python-codacy-coverage -r coverage.xml | version: 2
jobs:
build:
docker:
- image: python:2.7
environment:
AUDIODEV: null
working_directory: ~/screenflow-ci
steps:
- checkout
- run:
name: Install application dependencies
command: pip install -r requirements.txt
- run:
name: Install CI dependencies
command: pip install pytest pytest-cov coverage codacy-coverage
- run:
name: Run unit tests
command: pytest --junitxml=unittests.xml --cov-report term --cov=screenflow
- run:
name: Generate test coverage report
command: coverage xml
- store_test_results:
path: unittest.xml
- store_artifacts:
path: coverage.xml
prefix: coverage-report
- deploy:
name: Deploy coverage report to Codacy
command: python-codacy-coverage -r coverage.xml | Fix python version for CI | Fix python version for CI
| YAML | apache-2.0 | Faylixe/screenflow |
ad40beaa310c5473f648d2958b7bf21ed4722a96 | .circleci/config.yml | .circleci/config.yml | # PHP CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-php/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/php:7.1.5-browsers
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mysql:9.4
working_directory: ~/repo
install_composer: &install_composer
command: |
cd /tmp
EXPECTED_SIGNATURE=$(curl -q https://composer.github.io/installer.sig)
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
ACTUAL_SIGNATURE=$(php -r "echo hash_file('SHA384', 'composer-setup.php');")
if [ "$EXPECTED_SIGNATURE" != "$ACTUAL_SIGNATURE" ]
then
>&2 echo 'ERROR: Invalid installer signature'
rm composer-setup.php
exit 1
fi
sudo php composer-setup.php --quiet --install-dir /usr/local/bin --filename composer
RESULT=$?
rm composer-setup.php
exit $RESULT
steps:
- checkout
- run:
<<: *install_composer
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "composer.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: composer install -n --prefer-dist
- save_cache:
paths:
- ./vendor
key: v1-dependencies-{{ checksum "composer.json" }}
# run tests!
- run: phpunit | version: 2
jobs:
build:
working_directory: /var/www/html
docker:
- image: php:7.1-nginx
environment:
APP_ENV: test
steps:
- run:
name: Install system packages
command: apt-get update && apt-get -y install git
- run:
name: Install PHP extensions
command: docker-php-ext-install pdo
- checkout
- run:
name: Install Composer
command: |
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === trim(file_get_contents('https://composer.github.io/installer.sig'))) { echo 'Installer verified'; } else { echo 'Installer invalid'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
- run:
name: Display PHP information
command: |
php -v
php composer.phar --version
- run:
name: Install project dependencies
command: php composer.phar install
- run:
name: Run CS tests
command: vendor/bin/phpcs
- run:
name: Run Unit tests
command: vendor/bin/phpunit | Test default docker CircleCI image | Test default docker CircleCI image
| YAML | mit | gmoigneu/platformsh-integrations,gmoigneu/platformsh-integrations,gmoigneu/platformsh-integrations,gmoigneu/platformsh-integrations |
f209c889dd498d5ce26c7dbd3234c15f8da20d40 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8u171-jdk
steps:
- checkout
- run: mvn clean install
- run: mvn surefire:test -Punit
| version: 2
job-settings:
defaults:
agent-only: &defaults-agent-only
docker:
- image: groupbyinc/circleci-java
workflow-settings:
context: &job-context
context: org-global
main_branch_only: &main_branch_only
filters:
branches:
only:
- develop
workspace_key: &workspace_key
key: v1-repo-{{ .Branch }}-{{ .Revision }}
dependency_cache_key: &dependency_cache_key
run:
name: Generate Dependency Cache Key
command: /scripts/checksum.sh /tmp/checksum
cache_key: &cache_key
key: v1-dependencies-{{checksum "/tmp/checksum"}}-{{ .Revision }}
setup_builder: &setup_builder
run:
name: Initialize Build Agent
command: /scripts/setup.sh
jobs:
build:
<<: *defaults-agent-only
steps:
- checkout
- *dependency_cache_key
- restore_cache: *cache_key
- *setup_builder
- run: mvn clean install
- run: mvn surefire:test -Punit
- save_cache:
<<: *cache_key
paths:
- ~/.m2
- save_cache:
<<: *workspace_key
paths:
- ~/.ssh
- ~/project
release:
<<: *defaults-agent-only
steps:
- restore_cache: *workspace_key
- *dependency_cache_key
- restore_cache: *cache_key
- *setup_builder
- run: mvn -B release:prepare release:perform
workflows:
version: 2
build-and-push:
jobs:
- build: *job-context
- hold:
<<: *main_branch_only
type: approval
requires:
- build
- release:
<<: *main_branch_only
<<: *job-context
requires:
- hold
| Update build to have hold and release on develop | Update build to have hold and release on develop
| YAML | mit | groupby/api-java |
23085238e026b460e7cdabbaa19a4b7bfb32bd15 | cloud-config.yml | cloud-config.yml | #cloud-config
coreos:
units:
- name: "zabbix-agentd.service"
command: "start"
content: |
[Unit]
Description=Zabbix Agentd
After=network.target
[Service]
Type=forking
Restart=on-failure
Environment="CONFFILE=/opt/etc/zabbix/zabbix_agentd.conf"
Environment="ZBX_VERSION=3.2.1"
Environment="ZABBIX_SERVER=monitoramento.ts3corp.com.br"
Environment="LD_LIBRARY_PATH=/opt/lib"
PIDFile=/var/run/zabbix/zabbix_agentd.pid
KillMode=control-group
ExecStartPre=/usr/bin/wget https://raw.githubusercontent.com/gcavalcante8808/zabbix-agentd-coreos/master/scripts/bootstrap_agentd.sh -O /bootstrap_agentd.sh
ExecStartPre=/usr/bin/chmod +x /bootstrap_agentd.sh
ExecStartPre=/bootstrap_agentd.sh
ExecStart=/opt/bin/zabbix_agentd -c $CONFFILE
ExecStop=/bin/kill -SIGTERM $MAINPID
RestartSec=10s
[Install]
WantedBy=multi-user.target
users:
- name: "zabbix"
no-create-home: true
groups:
- docker
| #cloud-config
coreos:
units:
- name: "zabbix-agentd.service"
enable: true
command: "start"
content: |
[Unit]
Description=Zabbix Agentd
After=network.target
[Service]
Type=forking
Restart=on-failure
Environment="CONFFILE=/opt/etc/zabbix/zabbix_agentd.conf"
Environment="ZBX_VERSION=3.2.1"
Environment="ZABBIX_SERVER=monitoramento.ts3corp.com.br"
Environment="LD_LIBRARY_PATH=/opt/lib"
PIDFile=/var/run/zabbix/zabbix_agentd.pid
KillMode=control-group
ExecStartPre=/usr/bin/wget https://raw.githubusercontent.com/gcavalcante8808/zabbix-agentd-coreos/master/scripts/bootstrap_agentd.sh -O /bootstrap_agentd.sh
ExecStartPre=/usr/bin/chmod +x /bootstrap_agentd.sh
ExecStartPre=/bootstrap_agentd.sh
ExecStart=/opt/bin/zabbix_agentd -c $CONFFILE
ExecStop=/bin/kill -SIGTERM $MAINPID
RestartSec=10s
[Install]
WantedBy=multi-user.target
users:
- name: "zabbix"
no-create-home: true
groups:
- docker
| Enable zabbix-agentd service at boot. | Enable zabbix-agentd service at boot.
| YAML | bsd-3-clause | gcavalcante8808/zabbix-agentd-coreos |
9a326c5d4744c6094a3666b08fe8b6f9deffbaec | .dependabot/config.yml | .dependabot/config.yml | # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdependencies)
update_type: "all"
automerged_updates:
- match:
dependency_type: "development"
update_type: "all"
- match:
dependency_type: "production"
update_type: "semver:patch"
- match:
dependency_name: "rubocop*"
update_type: "all"
- match:
dependency_name: "minitest"
update_type: "all"
# Enable. Only lockfile updates (ignore updates that require Gemfile changes)
version_requirement_updates: "off"
| # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdependencies)
update_type: "all"
automerged_updates:
- match:
dependency_type: "development"
update_type: "all"
- match:
dependency_type: "production"
update_type: "semver:patch"
- match:
dependency_name: "rubocop*"
update_type: "all"
- match:
dependency_name: "minitest"
update_type: "all"
- match:
dependency_name: "backports"
update_type: "semver:minor"
# Enable. Only lockfile updates (ignore updates that require Gemfile changes)
version_requirement_updates: "off"
| Allow to merge backports | Allow to merge backports [ci skip] | YAML | mit | sue445/rubicure_api,sue445/rubicure_api,sue445/rubicure_api |
5d34ef48625933e27e96e48abcaf15aea97fecaa | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
instant_preview: true
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: "/srv/jekyll/_site"
preview_docker_image: jekyll/builder
mount_path: "/srv/jekyll"
instant_preview_command: jekyll serve --drafts --unpublished --future --port 8080
--host 0.0.0.0 -d _site
preview_command: jekyll build --drafts --unpublished --future -d _site
| ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: assets/cms
public_path: "/assets/cms"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
instant_preview: true
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: "/srv/jekyll/_site"
preview_docker_image: jekyll/builder
mount_path: "/srv/jekyll"
instant_preview_command: jekyll serve --drafts --unpublished --future --port 8080
--host 0.0.0.0 -d _site
preview_command: jekyll build --drafts --unpublished --future -d _site
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | StartupShell/web-2017,StartupShell/web-2017,StartupShell/web-2017 |
f8522833af1710f34f42d3cd4c2a6ad128bc5583 | .github/dependabot.yml | .github/dependabot.yml | version: 2
updates:
- package-ecosystem: bundler
directory: /
schedule:
interval: daily
allow:
# Internal gems
- dependency-name: "govuk*"
dependency-type: direct
- dependency-name: gds-api-adapters
dependency-type: direct
- dependency-name: govspeak
dependency-type: direct
- dependency-name: plek
dependency-type: direct
- dependency-name: rubocop-govuk
dependency-type: direct
- dependency-name: slimmer
dependency-type: direct
# Framework gems
- dependency-name: minitest
dependency-type: direct
- dependency-name: rails
dependency-type: direct
- dependency-name: sassc-rails
dependency-type: direct
- package-ecosystem: npm
directory: /
schedule:
interval: daily
allow:
# Internal packages
- dependency-name: stylelint-config-gds
dependency-type: direct
# Framework packages
- dependency-name: jasmine-browser-runner
dependency-type: direct
- dependency-name: jasmine-core
dependency-type: direct
- dependency-name: standardx
dependency-type: direct
- dependency-name: stylelint
dependency-type: direct
| version: 2
updates:
- package-ecosystem: bundler
directory: /
schedule:
interval: daily
- package-ecosystem: npm
directory: /
schedule:
interval: daily
| Remove allow list from Dependabot config | Remove allow list from Dependabot config
| YAML | mit | alphagov/smart-answers,alphagov/smart-answers,alphagov/smart-answers,alphagov/smart-answers |
c675fd887288281f38ad93d4443f8cf40c3999dd | packages/ei/either-list-functions.yaml | packages/ei/either-list-functions.yaml | homepage: https://github.com/chris-martin/either-list-functions#readme
changelog-type: ''
hash: 7515dbb2f216359c6fa4b4b36231986ebc85d9db0500631eca09a2c17beea24d
test-bench-deps:
base: ! '>=4.9 && <4.11'
doctest: -any
either-list-functions: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: Functions involving lists of Either
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.11'
all-versions:
- '0.0.0.1'
- '0.0.0.2'
author: Chris Martin <ch.martin@gmail.com>
latest: '0.0.0.2'
description-type: haddock
description: Functions involving lists of Either
license-name: Apache-2.0
| homepage: https://github.com/chris-martin/either-list-functions
changelog-type: ''
hash: d027f20d0e51c5fd6c9e97f5a9cdb01bbaad428f9f67f928f0ab8b1b53e9aff8
test-bench-deps:
base: ! '>=4.9 && <4.12'
doctest: -any
either-list-functions: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: Functions involving lists of Either
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.12'
all-versions:
- '0.0.0.1'
- '0.0.0.2'
- '0.0.0.3'
author: Chris Martin <ch.martin@gmail.com>
latest: '0.0.0.3'
description-type: haddock
description: Functions involving lists of Either.
license-name: Apache-2.0
| Update from Hackage at 2018-09-11T15:42:22Z | Update from Hackage at 2018-09-11T15:42:22Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
165446a1239b1b6372e906f4810284706e111ca1 | packages/mw/mwc-random-accelerate.yaml | packages/mw/mwc-random-accelerate.yaml | homepage: ''
changelog-type: ''
hash: 03636f20dd608e9bd0e5f7ee3510414dfd31af811c5d7e3a22ba4b82e90bf475
test-bench-deps: {}
maintainer: Trevor L. McDonell <tmcdonell@cse.unsw.edu.au>
synopsis: Generate Accelerate arrays filled with high quality pseudorandom numbers
changelog: ''
basic-deps:
mwc-random: ! '>=0.8'
base: ! '>=4.7 && <4.11'
accelerate: ! '>=0.15'
all-versions:
- '0.1.0.0'
author: Trevor L. McDonell
latest: '0.1.0.0'
description-type: haddock
description: ! 'Generate /Accelerate/ arrays filled with high-quality pseudorandom
numbers.
Refer to the main /Accelerate/ package for more information:
<http://hackage.haskell.org/package/accelerate>
'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 2c5e0f0f0a8c4c0e01199c94084ef2a78c352792626f0e840a04e1bb65f8949a
test-bench-deps: {}
maintainer: Trevor L. McDonell <tmcdonell@cse.unsw.edu.au>
synopsis: Generate Accelerate arrays filled with high quality pseudorandom numbers
changelog: ''
basic-deps:
mwc-random: ! '>=0.8'
base: ! '>=4.7 && <4.12'
accelerate: ! '>=0.15'
all-versions:
- '0.1.0.0'
author: Trevor L. McDonell
latest: '0.1.0.0'
description-type: haddock
description: ! 'Generate /Accelerate/ arrays filled with high-quality pseudorandom
numbers.
Refer to the main /Accelerate/ package for more information:
<http://hackage.haskell.org/package/accelerate>
'
license-name: BSD3
| Update from Hackage at 2018-03-15T03:55:55Z | Update from Hackage at 2018-03-15T03:55:55Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0c578dd074e06b399f890a9f2121dd9b5e62075e | data/transition-sites/decc.yml | data/transition-sites/decc.yml | ---
site: decc
whitehall_slug: department-for-business-energy-and-industrial-strategy
homepage: https://www.gov.uk/government/organisations/department-for-business-energy-and-industrial-strategy
host: www.decc.gov.uk
tna_timestamp: 20121217150421
homepage_furl: www.gov.uk/beis
options: --query-string filepath
| ---
site: decc
whitehall_slug: department-for-business-energy-and-industrial-strategy
homepage: https://www.gov.uk/government/organisations/department-for-business-energy-and-industrial-strategy
host: www.decc.gov.uk
tna_timestamp: 20121217150421
homepage_furl: www.gov.uk/beis
options: --query-string filepath
aliases:
- decc.gov.uk
| Add alias for non-www DECC site | Add alias for non-www DECC site
We have had a support request raising the issue that the DECC site is
not redirecting. The Zendesk ticket [1] covers both the www.decc.gov.uk
and decc.gov.uk domains, which I believe are seperate issues.
The naked domain site has the correct A records set:
$ host decc.gov.uk
decc.gov.uk has address 151.101.194.30
decc.gov.uk has address 151.101.66.30
decc.gov.uk has address 151.101.130.30
decc.gov.uk has address 151.101.2.30
However, for host www.decc.gov.uk, there seems to be some DNS records
missing:
$ host www.decc.gov.uk
Host www.decc.gov.uk not found: 3(NXDOMAIN)
Our configuration for the DECC site only covers the www domain, but as
their non-www domain is the only site with correct DNS we receive the
following error when viewing the non-www site:
$ curl decc.gov.uk
This host is not configured in Transition
This is because we do not have the decc.gov.uk domain as an alias value
[1] https://govuk.zendesk.com/agent/tickets/2515421
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
e23c2ba91c341055044c8622f7a11aa1e728854f | config/settings.yml | config/settings.yml | plugins:
akismet_enabled:
default: false
akismet_api_key:
default: ''
shadowed_by_global: true
akismet_transmit_email:
default: true
skip_akismet_trust_level:
default: 2
enum: 'TrustLevelSetting'
| plugins:
akismet_enabled:
default: false
shadowed_by_global: true
akismet_api_key:
default: ''
shadowed_by_global: true
akismet_transmit_email:
default: true
skip_akismet_trust_level:
default: 2
enum: 'TrustLevelSetting'
| Allow the akismet plugin to be turned on globally | Allow the akismet plugin to be turned on globally
| YAML | mit | discourse/discourse-akismet,discourse/discourse-akismet,sethdeckard/discourse-akismet,sethdeckard/discourse-akismet |
7ea201868e0316913e346e08694752957da94315 | packages/no/nonfree.yaml | packages/no/nonfree.yaml | homepage: ''
changelog-type: ''
hash: 08a29a199ad663ddc389ff0f7b4cc3ad284f88d403c3c3ccb057507f308285bd
test-bench-deps: {}
maintainer: shachaf@gmail.com
synopsis: Free structures sans laws
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.9'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Shachaf Ben-Kiki
latest: '0.1.0.1'
description-type: haddock
description: Reified structures for debugging consumers of type classes.
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 5bd2d9573eb70ab312ef7650e84be805f790490f7ae47542c087894f674d0a50
test-bench-deps: {}
maintainer: shachaf@gmail.com
synopsis: Free structures sans laws
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.10'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Shachaf Ben-Kiki
latest: '0.1.0.2'
description-type: haddock
description: Reified structures for debugging consumers of type classes.
license-name: MIT
| Update from Hackage at 2016-12-04T02:40:04Z | Update from Hackage at 2016-12-04T02:40:04Z | YAML | mit | commercialhaskell/all-cabal-metadata |
e46fd8474b9138256cbf891b3c247d0b197a706b | packages/se/setgame.yaml | packages/se/setgame.yaml | homepage: ''
changelog-type: ''
hash: dc7d4f84053b4539d10d4ca42a3171319c4292b3d34c96fc3b846d2babab13ea
test-bench-deps: {}
maintainer: emertens@gmail.com
synopsis: A console interface to the game of Set
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.11'
vty: ! '>=5.4 && <5.18'
setgame: -any
random: ! '>=1.1 && <1.2'
all-versions:
- '1.1'
author: ''
latest: '1.1'
description-type: haddock
description: A console interface to the game of Set
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: a8ec21016ec35ad61255683ea13fb136bfa9ef9e74b393f0ccdd0de8a5da6131
test-bench-deps: {}
maintainer: emertens@gmail.com
synopsis: A console interface to the game of Set
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.15'
vty: ! '>=5.4 && <5.29'
setgame: -any
random: ! '>=1.1 && <1.2'
all-versions:
- '1.1'
author: ''
latest: '1.1'
description-type: haddock
description: A console interface to the game of Set
license-name: BSD-3-Clause
| Update from Hackage at 2020-03-26T23:23:09Z | Update from Hackage at 2020-03-26T23:23:09Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
fec678c7101fbec36de1dc7e56e8cd218035551b | packages/se/setgame.yaml | packages/se/setgame.yaml | homepage: ''
changelog-type: ''
hash: 6b633d5a00993f25b847201b0b6f8a13398eb2aabbeb421552347772a2322a38
test-bench-deps: {}
maintainer: emertens@gmail.com
synopsis: A console interface to the game of Set
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.9'
vty: ! '>=5.4 && <5.5'
setgame: -any
random: ! '>=1.1 && <1.2'
all-versions:
- '1.1'
author: ''
latest: '1.1'
description-type: haddock
description: A console interface to the game of Set
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: dc7d4f84053b4539d10d4ca42a3171319c4292b3d34c96fc3b846d2babab13ea
test-bench-deps: {}
maintainer: emertens@gmail.com
synopsis: A console interface to the game of Set
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.11'
vty: ! '>=5.4 && <5.18'
setgame: -any
random: ! '>=1.1 && <1.2'
all-versions:
- '1.1'
author: ''
latest: '1.1'
description-type: haddock
description: A console interface to the game of Set
license-name: BSD3
| Update from Hackage at 2017-08-16T22:48:08Z | Update from Hackage at 2017-08-16T22:48:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8267f8c97b0bf43b33ddf0051652983d9fa36e50 | packages/th/th-lego.yaml | packages/th/th-lego.yaml | homepage: https://github.com/nikita-volkov/th-lego
changelog-type: ''
hash: c686e26bd97aa9f6cbd581a2172fc6615fa83dfb2531e33959d4f97e3b4009a8
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Template Haskell construction utilities
changelog: ''
basic-deps:
base: '>=4.9 && <5'
text: '>=1 && <2'
template-haskell: '>=2.8 && <3'
template-haskell-compat-v0208: '>=0.1.5 && <0.2'
all-versions:
- '0.1'
- 0.1.0.1
- 0.1.0.2
- 0.1.0.3
author: Nikita Volkov <nikita.y.volkov@mail.ru>
latest: 0.1.0.3
description-type: haddock
description: |-
A collection of templates for the typical patterns appearing
in construction of Template Haskell AST.
E.g., typical instance declaration templates,
lambda expressions for accessing members of data-types.
license-name: MIT
| homepage: https://github.com/nikita-volkov/th-lego
changelog-type: ''
hash: 6c656c4064119cb61b17233c59f30dd35e24db44b6168c1e0be64d221a11ae73
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Template Haskell construction utilities
changelog: ''
basic-deps:
base: '>=4.10 && <5'
text: '>=1 && <2'
template-haskell: '>=2.8 && <3'
template-haskell-compat-v0208: '>=0.1.5 && <0.2'
all-versions:
- '0.1'
- 0.1.0.1
- 0.1.0.2
- 0.1.0.3
- 0.1.0.4
author: Nikita Volkov <nikita.y.volkov@mail.ru>
latest: 0.1.0.4
description-type: haddock
description: |-
A collection of templates for the typical patterns appearing
in construction of Template Haskell AST.
E.g., typical instance declaration templates,
lambda expressions for accessing members of data-types.
license-name: MIT
| Update from Hackage at 2020-10-15T11:37:56Z | Update from Hackage at 2020-10-15T11:37:56Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ce733f38db26ff251318a5eded664a71d78a013c | roles/bastion/defaults/main.yml | roles/bastion/defaults/main.yml | dns_subdomain: bonnyci.local
bastion_users:
- adam_g
- bradonk
- cideploy
- clint
- jamie
- jason_clark
- jesusaur
- olaph
bastion_sudo_users: "{{ bastion_users }}"
bastion_remove_users:
- auggy
- greghaynes
- nibz
- rmoe
- doc
- jkeating
- eggshell
- pschwartz
bastion_clouds: []
| dns_subdomain: bonnyci.local
bastion_users:
- adam_g
- bradonk
- cideploy
- clint
- jamie
- jason_clark
- jesusaur
- olaph
- jkeating
bastion_sudo_users: "{{ bastion_users }}"
bastion_remove_users:
- auggy
- greghaynes
- nibz
- rmoe
- doc
- eggshell
- pschwartz
bastion_clouds: []
| Add jesse back to bastion | Add jesse back to bastion
Signed-off-by: Jesse Keating <9bd506f82f0ebace9be329fa02a1d10dbdfee35e@j2solutions.net>
| YAML | apache-2.0 | BonnyCI/hoist,BonnyCI/hoist,SpamapS/hoist,jamielennox/hoist,SpamapS/hoist,jamielennox/hoist |
93290a96aee5b0b8da618f7916a81e306caf4301 | config/rabbitmq.yml | config/rabbitmq.yml | defaults: &defaults
host: localhost
port: 5672
vhost: /
user: publishing_api
pass: publishing_api
recover_from_connection_close: true
development:
<<: *defaults
exchange: published_documents
test:
<<: *defaults
exchange: published_documents_test
production:
hosts:
<% hosts = ENV['RABBITMQ_HOSTS'] || 'localhost' %>
<% hosts.split(",").each do |host| %>
- <%= host %>
<% end %>
user: publishing_api
pass: <%= ENV['RABBITMQ_PASSWORD'] %>
port: 5672
vhost: /
exchange: published_documents
recover_from_connection_close: true
| defaults: &defaults
port: 5672
vhost: /
user: publishing_api
pass: publishing_api
recover_from_connection_close: true
development:
<<: *defaults
host: localhost
exchange: published_documents
test:
<<: *defaults
host: localhost
exchange: published_documents_test
production:
<<: *defaults
hosts:
<% hosts = ENV['RABBITMQ_HOSTS'] || 'localhost' %>
<% hosts.split(",").each do |host| %>
- <%= host %>
<% end %>
user: publishing_api
pass: <%= ENV['RABBITMQ_PASSWORD'] %>
port: 5672
vhost: /
exchange: published_documents
recover_from_connection_close: true
| Change RabbitMQ configuration to use defaults everywhere | Change RabbitMQ configuration to use defaults everywhere
So use the defaults for production, not just staging and
integration. This requires removing the host from the defaults, as
hosts is used in production.
| YAML | mit | alphagov/publishing-api,alphagov/publishing-api |
5f9cefdd4194b577484a5d7dca9c2cd1c6a826ab | config_example.yaml | config_example.yaml | # IRCBot config example
---
:server: irc.freenode.net
:port: 6667
:serverpass:
:username: bot
:nickname: bot
:realname: Bot
:userpass:
:channels:
- "#channel_one"
- "#channel_two"
:plugins:
- :Help
- :Clock
- :Example
- :Loader
- :Translate
- :Mnemonic
- :NumberSpell
- :Language
- :Converter
| # IRCBot config example
---
:server: irc.freenode.net
:port: 6667
:serverpass:
:username: bot
:nickname: bot
:realname: Bot
:userpass:
:channels:
- "#channel_one"
- "#channel_two"
:plugins:
- :Help
- :Clock
- :Example
- :Loader
- :Translate
- :Mnemonic
- :NumberSpell
- :Language
- :EDICT
- :KANJIDIC
- :Converter
| Add EDICT and KANJIDIC to config example | Add EDICT and KANJIDIC to config example
| YAML | agpl-3.0 | k5bot/k5bot,k5bot/k5bot,k5bot/k5bot |
d69242ad3f93164e50b4ebaa60be643f597797ea | tests/environment.yml | tests/environment.yml | channels:
- defaults
- conda-forge
dependencies:
- attrs>=19.2
- cffi
- eccodes=>2.20.0
- numpy
| channels:
- defaults
- conda-forge
dependencies:
- attrs>=19.2
- cffi
- eccodes>=2.20.0
- numpy
| Fix broken GitHub CI (2nd try) | Fix broken GitHub CI (2nd try)
| YAML | apache-2.0 | ecmwf/eccodes-python,ecmwf/eccodes-python |
88278008639e35051485eaaa77827e0c1821aeaf | .forestry/front_matter/templates/showcase.yml | .forestry/front_matter/templates/showcase.yml | ---
hide_body: false
fields:
- name: title
label: Title
type: text
hidden: false
default: ''
- name: date
label: Date
type: text
hidden: false
default:
- name: related_tools
label: Related tools
type: list
hidden: false
default:
-
- name: website
label: Website
type: text
hidden: false
default:
- name: repo
label: Repo
type: text
hidden: false
default:
- name: creator
label: Creator
type: field_group_list
fields:
- name: name
label: Name
type: text
hidden: false
default: ''
- name: role
label: Role
type: text
hidden: false
default: ''
- name: url
label: Url
type: text
hidden: false
default: ''
- name: twitter_username
label: Twitter username
type: text
hidden: false
default: ''
hidden: false
default:
- name:
role: Design/Development
url:
twitter_username:
- type: file
name: image
label: Image
| ---
hide_body: false
fields:
- name: title
label: Title
type: text
hidden: false
default: ''
- type: datetime
name: date
label: Date
- name: website
label: Website
type: text
hidden: false
default:
- name: repo
label: Repo
type: text
hidden: false
default:
- name: creator
label: Creator
type: field_group_list
fields:
- name: name
label: Name
type: text
hidden: false
default: ''
- name: role
label: Role
type: text
hidden: false
default: ''
- name: url
label: Url
type: text
hidden: false
default: ''
- name: twitter_username
label: Twitter username
type: text
hidden: false
default: ''
hidden: false
default:
- name:
role: Design/Development
url:
twitter_username:
- type: list
name: related_tools
label: Related Tools
config:
use_select: true
source:
type: pages
section: tool
- type: file
name: image
label: Image
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | budparr/thenewdynamic,thenewdynamic-org/thenewdynamic.org,thenewdynamic-org/thenewdynamic.org,budparr/thenewdynamic,budparr/thenewdynamic |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.