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 |
|---|---|---|---|---|---|---|---|---|---|
8af058c692e3094d34d1e1d75c09af57700cc41d | appveyor.yml | appveyor.yml | platform:
- x86
environment:
CYG_ROOT: "C:\\cygwin"
CYG_BASH: "%CYG_ROOT%\\bin\\bash -lc"
CYGWIN: "winsymlinks:native"
CUSTOM_OPAM: "1"
OPAM_COMP: "4.03.0+mingw64c"
install:
- cmd: git config core.symlinks true
- cmd: git reset --hard
- "%CYG_ROOT%\\setup-x86.exe -qnNdO -R %CYG_ROOT% -s http://cygwin.mirror.constant.com -l C:/cygwin/var/cache/setup -P rsync -P patch -P diffutils.3.5-1 -P make -P unzip -P git -P perl -P mingw64-x86_64-gcc-core"
build_script:
- "%CYG_BASH% '${APPVEYOR_BUILD_FOLDER}/scripts/appveyor.sh'"
artifacts:
- path: "vpnkit.exe"
- path: "OSS-LICENSES"
- path: "COMMIT"
| platform:
- x86
environment:
CYG_ROOT: "C:\\cygwin"
CYG_BASH: "%CYG_ROOT%\\bin\\bash -lc"
CYGWIN: "winsymlinks:native"
CUSTOM_OPAM: "1"
OPAM_COMP: "4.03.0+mingw64c"
install:
- cmd: git config core.symlinks true
- cmd: git reset --hard
- "%CYG_ROOT%\\setup-x86.exe -qnNdO -R %CYG_ROOT% -s http://cygwin.mirror.constant.com -l C:/cygwin/var/cache/setup -P rsync -P patch -P diffutils.3.5-1 -P make -P git -P perl -P mingw64-x86_64-gcc-core"
build_script:
- "%CYG_BASH% '${APPVEYOR_BUILD_FOLDER}/scripts/appveyor.sh'"
artifacts:
- path: "vpnkit.exe"
- path: "OSS-LICENSES"
- path: "COMMIT"
| Remove unzip from installed cygwin packages to try to fix build | Appveyor: Remove unzip from installed cygwin packages to try to fix build
Signed-off-by: Magnus Skjegstad <9f4ca770b638615ac5c3e0d2da16b77c80c2f2c6@skjegstad.com>
| YAML | apache-2.0 | djs55/vpnkit,djs55/vpnkit,djs55/vpnkit |
92f5c39d2043294b48a7d1c2e142a153c673bf28 | appveyor.yml | appveyor.yml | environment:
matrix:
- nodejs_version: 4
- nodejs_version: 6
- nodejs_version: 7
- nodejs_version: 8
install:
- ps: Install-Product node $env:nodejs_version
- npm -g install npm@3 && set PATH=%APPDATA%\npm;%PATH%
- npm install
test_script:
- node --version
- npm --version
- npm run depcheck
- npm run depcheck-json
- npm run lint
- npm test
build: off
| environment:
matrix:
- nodejs_version: 4
- nodejs_version: 6
- nodejs_version: 8
install:
- ps: Install-Product node $env:nodejs_version
- npm -g install npm@3 && set PATH=%APPDATA%\npm;%PATH%
- npm install
test_script:
- node --version
- npm --version
- npm run depcheck
- npm run depcheck-json
- npm run lint
- npm test
build: off
| Drop node version 7 from AppVeryor CI. | Drop node version 7 from AppVeryor CI. | YAML | mit | depcheck/depcheck,depcheck/depcheck |
fd58fd57e5ed46dd452ce3396e1427a960e89e4b | appveyor.yml | appveyor.yml | #
# Configuration for the Appveyor continuous integration system.
#
# === Test Matrix ===
platform:
- x86
- x64
configuration: Release
# === Build Steps ===
build_script:
- ps: .\appveyor-build.ps1
| #
# Configuration for the Appveyor continuous integration system.
#
# === Test Matrix ===
# Appveyor only has 64-bit Window OS at the time of writing.
#
# NOTE: Adding an x86 line here does NOT actually use 32-bit Windows.
# Instead it configures MSBuild to target 32-bit Windows,
# which doesn't apply to our build procedure.
platform:
- x64
configuration: Release
# === Build Steps ===
build_script:
- ps: .\appveyor-build.ps1
| Clarify that Appveyor on 32-bit Windows does not work. | Clarify that Appveyor on 32-bit Windows does not work.
| YAML | bsd-3-clause | liangsun/discount,liangsun/discount,liangsun/rdiscount,liangsun/rdiscount,liangsun/rdiscount,liangsun/discount,liangsun/discount,liangsun/rdiscount,liangsun/discount |
27393518f353888a8c5f20cc61cb7c59ae0cc1a7 | appveyor.yml | appveyor.yml | platform:
- x86
environment:
matrix:
- RUST_VERSION: stable
VENDOR: gnu
- RUST_VERSION: beta
VENDOR: gnu
install:
- ps: |
if ($env:PLATFORM -eq "x86") {
$arch = "i686"
}
else {
$arch = "x86_64"
}
if ($env:RUST_VERSION -eq "stable") {
Start-FileDownload "https://static.rust-lang.org/dist/channel-rust-stable" -FileName "channel-rust-stable"
$installer = Get-Content "channel-rust-stable" | Select-String -Pattern "$arch-pc-windows-${env:VENDOR}.exe"
}
else {
$installer = "rust-${env:RUST_VERSION}-$arch-pc-windows-${env:VENDOR}.exe"
}
Start-FileDownload "https://static.rust-lang.org/dist/$installer" -FileName rust-install.exe
- rust-install.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- rustc -V
- cargo -V
build: false
test_script:
- cargo build --verbose
- cargo test --verbose
| platform:
- x86
install:
# Installing Rust distribution
- choco install --yes --x86 --version=1.8 rust
- SET PATH=%PATH%;C:\Program Files (x86)\Rust stable GNU 1.8\bin
- rustc -V
- cargo -V
build: false
test_script:
- cargo build --verbose
- cargo test --verbose
| Make AppVeyor install Rust distrib using Chocolatey | Make AppVeyor install Rust distrib using Chocolatey
| YAML | mpl-2.0 | apoloval/flightvars |
7e5a97549728661e8363ea2aa90a64de660f0d22 | appveyor.yml | appveyor.yml | version: '{build}'
pull_requests:
do_not_increment_build_number: true
environment:
PATH: 'C:\Ruby200\bin;%PATH%'
BUILD: $(APPVEYOR_BUILD_NUMBER)
install:
- cmd: bundle install
build_script:
- cmd: build.cmd
- cmd: build.netstd.cmd
nuget:
disable_publish_on_pr: true
test: off
artifacts:
- path: .\artifacts\logs\*.*
- path: .\artifacts\output\*-netstd*.nupkg
- path: .\artifacts\output
- path: .\artifacts\tests\*.*
| version: '{build}'
pull_requests:
do_not_increment_build_number: true
environment:
PATH: 'C:\Ruby200\bin;%PATH%'
BUILD: $(APPVEYOR_BUILD_NUMBER)
install:
- cmd: bundle install
build_script:
- cmd: build.cmd
nuget:
disable_publish_on_pr: true
test: off
artifacts:
- path: .\artifacts\*\*
| Update AppVeyor to run just build.cmd | Update AppVeyor to run just build.cmd
| YAML | mit | thomaslevesque/FakeItEasy,blairconrad/FakeItEasy,blairconrad/FakeItEasy,FakeItEasy/FakeItEasy,thomaslevesque/FakeItEasy,FakeItEasy/FakeItEasy,adamralph/FakeItEasy,adamralph/FakeItEasy |
ad1ba49b916d7ab67a7d73cbdb28dc9127f4e2b3 | appveyor.yml | appveyor.yml | version: "{build}"
os: Windows Server 2012 R2
test: off
deploy: off
init:
- cmd: rd /s /q %CHOCOLATEYINSTALL%
- ps: iex ((New-Object Net.WebClient).DownloadString("https://chocolatey.org/install.ps1"))
install:
- cinst atom
- cd %APPVEYOR_BUILD_FOLDER%
- apm install
# -------
- cinst 7zip.commandline
- cd %TEMP%
- ps: Start-FileDownload "https://raw.githubusercontent.com/thomasjo/appveyor-texlive/master/texlive.7z"
- 7za x texlive.7z -oc:\texlive -y
build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- apm test
| version: "{build}"
os: Windows Server 2012 R2
test: off
deploy: off
init:
- cmd: rd /s /q %CHOCOLATEYINSTALL%
- ps: iex ((New-Object Net.WebClient).DownloadString("https://chocolatey.org/install.ps1"))
install:
- cinst atom
- cd %APPVEYOR_BUILD_FOLDER%
- apm install
# -------
- cinst 7zip.commandline
- cd %TEMP%
- ps: Start-FileDownload "https://raw.githubusercontent.com/thomasjo/appveyor-texlive/master/texlive.7z"
- 7za x texlive.7z -oC:\texlive -y
- set Path="%Path%;C:\texlive\bin\win32"
build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- apm test
| Set %Path% variable in Windows CI environment | Set %Path% variable in Windows CI environment
| YAML | mit | WoodyWoodsta/atom-latex,thomasjo/atom-latex,thomasjo/atom-latex,thomasjo/atom-latex,WoodyWoodsta/atom-latex |
99a7de3f79ee9bfc32740b5abc0d558e1b3bf044 | prow/prowjobs/GoogleCloudPlatform/testgrid/testgrid-images.yaml | prow/prowjobs/GoogleCloudPlatform/testgrid/testgrid-images.yaml | presubmits:
GoogleCloudPlatform/testgrid:
- name: test-testgrid-all
branches:
- ^master$
decorate: true
always_run: true
spec:
containers:
- image: launcher.gcr.io/google/bazel:0.29.1
command:
- bazel
args:
- test
- //...
| presubmits:
GoogleCloudPlatform/testgrid:
- name: test-testgrid-all
branches:
- ^master$
decorate: true
always_run: true
spec:
containers:
- image: launcher.gcr.io/google/bazel:2.0.0
command:
- bazel
args:
- test
- //...
| Use bazel 2.0.0 in testgrid | Use bazel 2.0.0 in testgrid
| YAML | apache-2.0 | GoogleCloudPlatform/oss-test-infra,GoogleCloudPlatform/oss-test-infra |
09eaa01d1c1b27122bd75905d985a4b5d1fbd00a | appveyor.yml | appveyor.yml | build: false
shallow_clone: true
platform:
- x64
environment:
PHP_CACHE_DIR: C:\tools\php
PHP_ZIP: php-7.1.2-nts-Win32-VC14-x64.zip
cache:
- '%PHP_CACHE_DIR% -> appveyor.yml'
init:
- SET PATH=%PHP_CACHE_DIR%;%PATH%
- SET COMPOSER_NO_INTERACTION=1
- SET PHP=0
install:
- IF EXIST %PHP_CACHE_DIR% (SET PHP=1)
- IF %PHP%==0 mkdir %PHP_CACHE_DIR% && cd %PHP_CACHE_DIR%
- IF %PHP%==0 appveyor DownloadFile http://windows.php.net/downloads/releases/%PHP_ZIP%
- IF %PHP%==0 7z x %PHP_ZIP% -y >nul && del /Q *.zip
- IF %PHP%==0 cinst -y composer -i --version 4.6.0 --ia /DEV=%PHP_CACHE_DIR%
- php -v
- IF %PHP%==1 (composer self-update) ELSE (composer --version)
- cd %APPVEYOR_BUILD_FOLDER%
- composer install --prefer-dist --no-progress
test_script:
- cd %APPVEYOR_BUILD_FOLDER%
- php test.php
| build: false
shallow_clone: true
platform:
- x64
environment:
PHP_CACHE_DIR: C:\tools\php
PHP_ZIP: php-7.1.7-nts-Win32-VC14-x64.zip
cache:
- '%PHP_CACHE_DIR% -> appveyor.yml'
init:
- SET PATH=%PHP_CACHE_DIR%;%PATH%
- SET COMPOSER_NO_INTERACTION=1
- SET PHP=0
install:
- IF EXIST %PHP_CACHE_DIR% (SET PHP=1)
- IF %PHP%==0 mkdir %PHP_CACHE_DIR% && cd %PHP_CACHE_DIR%
- IF %PHP%==0 appveyor DownloadFile http://windows.php.net/downloads/releases/%PHP_ZIP%
- IF %PHP%==0 7z x %PHP_ZIP% -y >nul && del /Q *.zip
- IF %PHP%==0 cinst -y composer -i --ia /DEV=%PHP_CACHE_DIR%
- php -v
- IF %PHP%==1 (composer self-update) ELSE (composer --version)
- cd %APPVEYOR_BUILD_FOLDER%
- composer install --prefer-dist --no-progress
test_script:
- cd %APPVEYOR_BUILD_FOLDER%
- php test.php
| Update php and use approved composer package | Update php and use approved composer package
| YAML | mit | johnstevenson/chocolatey-appveyor |
303a0e668bdb8d52039f38e0d1cbbc185ec0abb4 | packages/di/dirstream.yaml | packages/di/dirstream.yaml | homepage: ''
changelog-type: ''
hash: 5292ff3ac0763662951b8e5e6632c78339defc3a8899eb37e75b1e0839e693c3
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Easily stream directory contents in constant memory
changelog: ''
basic-deps:
unix: ! '>=2.5.1.0 && <2.8'
base: ! '>=4 && <5'
system-fileio: ! '>=0.2.1 && <0.4'
pipes: ! '>=4.0 && <4.4'
pipes-safe: ! '>=2.0.0 && <2.3'
system-filepath: ! '>=0.3.1 && <0.5'
directory: <1.3
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
author: Gabriel Gonzalez
latest: '1.0.2'
description-type: haddock
description: ! 'Use this library to read large directories as streams:
* Use @ListT@ to assemble recursive directory traversals while still streaming
* Use @pipes@ to read out the stream of results
* Traversals only open directory streams lazily in response to demand
* Avoid directories with insufficient permissions
This library works on both Unix and Windows.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: ec01f3ec332f0bf3e3ab4c450f4c9f8745e0c30603b2c25a869d4e6c9a716f3c
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Easily stream directory contents in constant memory
changelog: ''
basic-deps:
unix: ! '>=2.5.1.0 && <2.8'
base: ! '>=4 && <5'
system-fileio: ! '>=0.2.1 && <0.4'
pipes: ! '>=4.0 && <4.4'
pipes-safe: ! '>=2.0.0 && <2.3'
system-filepath: ! '>=0.3.1 && <0.5'
directory: <1.4
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
- '1.0.3'
author: Gabriel Gonzalez
latest: '1.0.3'
description-type: haddock
description: ! 'Use this library to read large directories as streams:
* Use @ListT@ to assemble recursive directory traversals while still streaming
* Use @pipes@ to read out the stream of results
* Traversals only open directory streams lazily in response to demand
* Avoid directories with insufficient permissions
This library works on both Unix and Windows.'
license-name: BSD3
| Update from Hackage at 2017-05-24T20:19:11Z | Update from Hackage at 2017-05-24T20:19:11Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
631a63d4d2485133785b25d4d038fa7f03808326 | .codeclimate.yml | .codeclimate.yml | version: "2"
engines:
markdownlint:
enabled: true
pep8:
enabled: true
shellcheck:
enabled: true
ratings:
paths:
- "**.py"
- "**.sh"
- "**.md"
checks:
argument-count:
config:
threshold: 5
file-lines:
config:
threshold: 1000
method-count:
config:
threshold: 30
method-lines:
config:
threshold: 50
| version: "2"
engines:
markdownlint:
enabled: true
pep8:
enabled: true
shellcheck:
enabled: true
ratings:
paths:
- "**.py"
- "**.sh"
- "**.md"
checks:
argument-count:
config:
threshold: 5
complex-logic:
config:
threshold: 7
file-lines:
config:
threshold: 1000
method-complexity:
config:
threshold: 7
method-count:
config:
threshold: 30
method-lines:
config:
threshold: 50
| Update complexity requirements on code climate | Update complexity requirements on code climate
| YAML | mit | JrGoodle/clowder,JrGoodle/clowder,JrGoodle/clowder |
250a9e8eeb7bb25a59a3ee2984fd5f0d4f0fef99 | .readthedocs.yml | .readthedocs.yml | # Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml
# Optionally build your docs in additional formats such as PDF
formats:
- pdf
conda:
environment: environment.yml
| # Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml
# Optionally build your docs in additional formats such as PDF
formats:
- pdf
build:
os: "ubuntu-20.04"
tools:
python: "mambaforge-4.10"
python:
install:
- method: pip
path: .
conda:
environment: environment.yml
| Use mamba and install project before building | Use mamba and install project before building
| YAML | mit | SALib/SALib |
afeb649c90a7a40e0da60af0977f1cbdb827d3e6 | .readthedocs.yml | .readthedocs.yml | # see http://docs.readthedocs.io/en/latest/yaml-config.html
build:
image: 2.0
python:
version: 3.5
setup_py_install: true | # see http://docs.readthedocs.io/en/latest/yaml-config.html
build:
image: 2.0
python:
version: 3.7
setup_py_install: true | Use Python 3.7 for docs | Use Python 3.7 for docs
| YAML | mit | geographika/mappyfile,geographika/mappyfile |
9167946b8445459b8a687b32102675c076d7b00b | .scrutinizer.yml | .scrutinizer.yml | tools:
external_code_coverage: false
| tools:
external_code_coverage: false
filter:
paths:
- 'src/*'
excluded_paths:
- 'build/*'
- 'log/*'
- 'tests/*'
- 'vendor/*'
| Remove tests folder from Scrutinizer | Remove tests folder from Scrutinizer
We don’t need them to be tested by Scrutinizer since they won’t affect final user.
| YAML | mit | j0k3r/graby,aaa2000/graby |
6309a59f0cafead3a34a9d572dfae862acfc5f48 | roles/virtualbox-guest-additions/tasks/main.yml | roles/virtualbox-guest-additions/tasks/main.yml | ---
- name: Install requirements
apt: name={{ item }} state=present
with_items:
- linux-headers-generic
- build-essential
- dkms
- name: Download iso
get_url: url=http://download.virtualbox.org/virtualbox/{{ virtualbox_version }}/VBoxGuestAdditions_{{ virtualbox_version }}.iso dest=/opt/VBoxGuestAdditions_{{ virtualbox_version }}.iso
- name: Mount iso
mount: src=/opt/VBoxGuestAdditions_{{ virtualbox_version }}.iso name=/media/cdrom state=mounted fstype=iso9660 opts=loop,ro
- name: Install
# installer always returns bad exit code, so ignore
shell: /bin/sh /media/cdrom/VBoxLinuxAdditions.run --nox11 || /bin/true creates={{ item }}
with_items:
- /opt/VBoxGuestAdditions-{{ virtualbox_version }}
- /lib/modules/{{ ansible_kernel }}/updates/dkms/vboxguest.ko
- /lib/modules/{{ ansible_kernel }}/updates/dkms/vboxsf.ko
- /lib/modules/{{ ansible_kernel }}/updates/dkms/vboxvideo.ko
- /usr/lib/xorg/modules/drivers/vboxvideo_drv.so
# notify:
# - restart x
- name: Unmount iso
mount: src=/opt/VBoxGuestAdditions_{{ virtualbox_version }}.iso name=/media/cdrom state=unmounted fstype=iso9660
| ---
- name: Install requirements
apt: name={{ item }} state=present
with_items:
- linux-headers-generic
- build-essential
- dkms
- name: Download iso
get_url: url=http://download.virtualbox.org/virtualbox/{{ virtualbox_version }}/VBoxGuestAdditions_{{ virtualbox_version }}.iso dest=/opt/VBoxGuestAdditions_{{ virtualbox_version }}.iso
- name: Mount iso
mount: src=/opt/VBoxGuestAdditions_{{ virtualbox_version }}.iso name=/media/cdrom state=mounted fstype=iso9660 opts=loop,ro
- name: Install
# installer always returns bad exit code, so ignore
shell: /bin/sh /media/cdrom/VBoxLinuxAdditions.run --nox11 || /bin/true creates={{ item }}
with_items:
- /opt/VBoxGuestAdditions-{{ virtualbox_version }}
- /lib/modules/{{ ansible_kernel }}/misc/vboxguest.ko
- /lib/modules/{{ ansible_kernel }}/misc/vboxsf.ko
- /lib/modules/{{ ansible_kernel }}/misc/vboxvideo.ko
- /usr/lib/xorg/modules/drivers/vboxvideo_drv.so
# notify:
# - restart x
- name: Unmount iso
mount: src=/opt/VBoxGuestAdditions_{{ virtualbox_version }}.iso name=/media/cdrom state=unmounted fstype=iso9660
| Update locations of Virtualbox Guest Additions installed files. | Update locations of Virtualbox Guest Additions installed files.
| YAML | apache-2.0 | NLeSC/Chemical-Analytics-Platform |
e829a0add875c8b0839672dcd809c947730163f8 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
before_script:
- composer update --prefer-dist
script:
# - php ./vendor/phpunit/phpunit/phpunit
- php ./vendor/phpunit/phpunit/phpunit --coverage-clover=build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --access-token="80b65a15a783f3ca91af2635f701052e94179ebf84aad0a031dcc90dddd30394" --format=php-clover build/logs/clover.xml
after_sucess:
- wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.0/coveralls.phar
- travis_retry php coveralls.phar
notifications:
email:
- dev@dankempster.co.uk
branches:
only:
- develop
- master
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer update --prefer-dist
script:
# - php ./vendor/phpunit/phpunit/phpunit
- php ./vendor/phpunit/phpunit/phpunit --coverage-clover=build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --access-token="80b65a15a783f3ca91af2635f701052e94179ebf84aad0a031dcc90dddd30394" --format=php-clover build/logs/clover.xml
after_sucess:
- wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.0/coveralls.phar
- travis_retry php coveralls.phar
notifications:
email:
- dev@dankempster.co.uk
branches:
only:
- develop
- master
| Add support for PHP 7.0 & 7.1 | Add support for PHP 7.0 & 7.1
| YAML | mit | dankempster/axstrad-test |
6a937f361dfd88c038c8c6638ea03b09357e57a1 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.12'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 4 on Travis CI. | Test with latest Node.js 4 on Travis CI.
| YAML | mit | bigeasy/revise,bigeasy/revise |
a73102ecff90504343178fc397dc4731485d898d | config/feature_flags/app_fundamentals_release_flags.yml | config/feature_flags/app_fundamentals_release_flags.yml | ---
default_recaptcha_registration_enable:
state: hidden
display_name: Enable Recaptcha by default for self-registration
description: Requires Recaptcha for self-registration by default
applies_to: SiteAdmin
granular_permissions_manage_users:
state: hidden
applies_to: RootAccount
display_name: Granular permissions for Add/Remove roles from Course
description: Adds granular permissions for adding and removing each role, and a separate permission for other course admin actions
granular_permissions_course_files:
state: hidden
applies_to: RootAccount
display_name: Granular permissions for managing course files
description: Add granularity to permissions around managing course files
release_notes_ui:
state: hidden
applies_to: SiteAdmin
display_name: Advertise release notes via the UI
description: Enables siteadmin users to configure release notes to display to users
| ---
default_recaptcha_registration_enable:
state: hidden
display_name: Enable Recaptcha by default for self-registration
description: Requires Recaptcha for self-registration by default
applies_to: SiteAdmin
granular_permissions_manage_users:
state: hidden
applies_to: RootAccount
display_name: Granular permissions for Add/Remove roles from Course
description: Adds granular permissions for adding and removing each role, and a separate permission for other course admin actions
granular_permissions_course_files:
state: hidden
applies_to: RootAccount
display_name: Granular permissions for managing course files
description: Add granularity to permissions around managing course files
release_notes_ui:
state: hidden
applies_to: SiteAdmin
display_name: Advertise release notes via the UI
description: Enables siteadmin users to configure release notes to display to users
course_templates:
state: hidden
applies_to: SiteAdmin
display_name: Course Templates
description: Enables the Course Templates feature globally
| Create Course Templates feature flag | Create Course Templates feature flag
Closes FOO-1679
flag = course_templates
This just creates the FF
Test plan:
* FF appears in the siteadmin UI
Change-Id: I3b3e9c29a814832dc61fe4c712df80f2ace8a2c3
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/260291
Tested-by: Service Cloud Jenkins <9144042a601061f88f1e1d7a1753ea3e2972119d@instructure.com>
Reviewed-by: August Thornton <9adc7a1161ddf32ff608de792a7e50179545f026@instructure.com>
QA-Review: August Thornton <9adc7a1161ddf32ff608de792a7e50179545f026@instructure.com>
Product-Review: August Thornton <9adc7a1161ddf32ff608de792a7e50179545f026@instructure.com>
| YAML | agpl-3.0 | instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms |
7917f041b204b19a0476232f63e1b33edcee9e9b | config/jobs/image-pushing/k8s-staging-external-dns.yaml | config/jobs/image-pushing/k8s-staging-external-dns.yaml | postsubmits:
# this is the github repo we'll build from; this block needs to be repeated for each repo.
kubernetes-sigs/external-dns:
- name: post-external-dns-push-images
cluster: test-infra-trusted
annotations:
# this is the name of some testgrid dashboard to report to.
testgrid-dashboards: sig-network-external-dns
decorate: true
branches:
- ^master$
- ^v[0-9].*
spec:
containers:
- image: gcr.io/k8s-testimages/image-builder:v20200213-0032cdb
command:
- /run.sh
args:
# this is the project GCB will run in, which is the same as the GCR images are pushed to.
- --project=k8s-staging-external-dns
- --scratch-bucket=gs://k8s-staging-external-dns-gcb
- --env-passthrough=PULL_BASE_REF
- .
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /creds/service-account.json
volumeMounts:
- name: creds
mountPath: /creds
volumes:
- name: creds
secret:
secretName: deployer-service-account
| postsubmits:
# this is the github repo we'll build from; this block needs to be repeated for each repo.
kubernetes-sigs/external-dns:
- name: post-external-dns-push-images
cluster: test-infra-trusted
annotations:
# this is the name of some testgrid dashboard to report to.
testgrid-dashboards: sig-network-external-dns
decorate: true
branches:
- ^master$
- ^v[0-9].*
spec:
serviceAccountName: deployer # TODO(fejta): use pusher
containers:
- image: gcr.io/k8s-testimages/image-builder:v20200213-0032cdb
command:
- /run.sh
args:
# this is the project GCB will run in, which is the same as the GCR images are pushed to.
- --project=k8s-staging-external-dns
- --scratch-bucket=gs://k8s-staging-external-dns-gcb
- --env-passthrough=PULL_BASE_REF
- .
| Update external-dns to use workload identity | Update external-dns to use workload identity
| YAML | apache-2.0 | cblecker/test-infra,fejta/test-infra,dims/test-infra,ixdy/kubernetes-test-infra,pwittrock/test-infra,michelle192837/test-infra,kubernetes/test-infra,monopole/test-infra,monopole/test-infra,kubernetes/test-infra,michelle192837/test-infra,kubernetes/test-infra,fejta/test-infra,cblecker/test-infra,monopole/test-infra,cblecker/test-infra,ixdy/kubernetes-test-infra,michelle192837/test-infra,dims/test-infra,jessfraz/test-infra,BenTheElder/test-infra,cblecker/test-infra,michelle192837/test-infra,fejta/test-infra,ixdy/kubernetes-test-infra,cblecker/test-infra,brahmaroutu/test-infra,dims/test-infra,monopole/test-infra,jessfraz/test-infra,cjwagner/test-infra,fejta/test-infra,brahmaroutu/test-infra,cblecker/test-infra,ixdy/kubernetes-test-infra,brahmaroutu/test-infra,dims/test-infra,fejta/test-infra,cjwagner/test-infra,kubernetes/test-infra,jessfraz/test-infra,kubernetes/test-infra,monopole/test-infra,cjwagner/test-infra,pwittrock/test-infra,michelle192837/test-infra,pwittrock/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,monopole/test-infra,BenTheElder/test-infra,cjwagner/test-infra,dims/test-infra,brahmaroutu/test-infra,jessfraz/test-infra,kubernetes/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,cjwagner/test-infra,brahmaroutu/test-infra,pwittrock/test-infra,pwittrock/test-infra,dims/test-infra,ixdy/kubernetes-test-infra,jessfraz/test-infra,brahmaroutu/test-infra,michelle192837/test-infra,cjwagner/test-infra,jessfraz/test-infra,fejta/test-infra |
9fa34cf2fda7fac263468031f59045b37c7147bc | deploy/ansible/roles/configure/tasks/main.yml | deploy/ansible/roles/configure/tasks/main.yml | # Configure the box. This happens after system dependencies are installed,
# but before the project is cloned or built.
- name: set hostname
hostname: name={{hostname}}
- name: add loopback references to our domain in /etc/hosts
lineinfile: "dest=/etc/hosts line='127.0.0.1 {{hostname}} {{app_fqdn}}'"
- name: get github public key
command: /usr/bin/ssh-keyscan github.com
register: github_keyscan
- name: add github key to ssh known hosts
lineinfile: dest=/etc/ssh/ssh_known_hosts
create=yes
regexp='^github.com'
line="{{github_keyscan.stdout}}"
- name: ensure ssh agent socket environment variable persists when sudoing
lineinfile: dest=/etc/sudoers
insertafter='^Defaults'
line='Defaults env_keep += "SSH_AUTH_SOCK"'
state=present
validate='visudo -cf %s'
| # Configure the box. This happens after system dependencies are installed,
# but before the project is cloned or built.
- name: set hostname
hostname: name={{hostname}}
- name: add loopback references to our domain in /etc/hosts
lineinfile: "dest=/etc/hosts line='127.0.0.1 {{hostname}} {{app_fqdn}}'"
- name: ensure github.com is a known host
lineinfile:
dest: /etc/ssh/ssh_known_hosts
create: yes
state: present
line: '{{ lookup("pipe", "ssh-keyscan -t rsa github.com") }}'
regexp: '^github\\.com'
- name: ensure ssh agent socket environment variable persists when sudoing
lineinfile: dest=/etc/sudoers
insertafter='^Defaults'
line='Defaults env_keep += "SSH_AUTH_SOCK"'
state=present
validate='visudo -cf %s'
| Add Github to known_hosts properly and securely. | Add Github to known_hosts properly and securely.
* http://hakunin.com/six-ansible-practices#add-github-to-knownhosts-properly-and-securely
| YAML | mit | jugglinmike/deployment-workflow,bocoup/deployment-workflow,jugglinmike/deployment-workflow,bocoup/deployment-workflow,bocoup/deployment-workflow,jugglinmike/deployment-workflow |
d774d4c60e1a415e2f1e1dab517edfb2b8994c12 | roles/upgrades.tasks/tasks/upgrade_to_1_1/cleanup.yml | roles/upgrades.tasks/tasks/upgrade_to_1_1/cleanup.yml | - name: Remove old ssl certs
file:
path: "{{ item }}"
state: absent
with_items:
- /etc/nginx/ssl/cert.pem
- /etc/nginx/ssl/privkey.pem
- /etc/ssl/certs/dhparam.pem
- name: Remove old hosts file
file:
path: /root/hosts.txt
state: absent
- name: Remove install.php
file:
path: "{{ keitaro_root }}/install.php"
state: absent
- name: Remove all cron tasks of nginx user
shell: "crontab -r -u {{ nginx_user }} || true"
- name: Remove old mariadb logrotate config
file:
path: /etc/logrotate.d/mariadb
state: absent
- name: Remove old nginx files
shell: "rm -f /etc/nginx/conf.d/keitaro-*.inc /etc/nginx/conf.d/*.inc /etc/nginx/conf.d/keitaro/*.local.inc"
- name: Remove old backup nginx host files
shell: "rm -f /etc/nginx/conf.d/*.conf.20*"
- name: Remove old roadrunner files
file:
path: /etc/keitaro/roadrunner.yml
state: absent
| - name: Remove old ssl certs
file:
path: "{{ item }}"
state: absent
with_items:
- /etc/nginx/ssl/cert.pem
- /etc/nginx/ssl/privkey.pem
- /etc/ssl/certs/dhparam.pem
- name: Remove old hosts file
file:
path: /root/hosts.txt
state: absent
- name: Remove install.php
file:
path: "{{ keitaro_root }}/install.php"
state: absent
- name: Remove all cron tasks of nginx user
shell: "crontab -r -u {{ nginx_user }} || true"
- name: Remove old root cron.php task
shell: 'sed -i /cron.php/d /var/spool/cron/root'
- name: Remove old mariadb logrotate config
file:
path: /etc/logrotate.d/mariadb
state: absent
- name: Remove old nginx files
shell: "rm -f /etc/nginx/conf.d/keitaro-*.inc /etc/nginx/conf.d/*.inc /etc/nginx/conf.d/keitaro/*.local.inc"
- name: Remove old backup nginx host files
shell: "rm -f /etc/nginx/conf.d/*.conf.20*"
- name: Remove old roadrunner files
file:
path: /etc/keitaro/roadrunner.yml
state: absent
| Remove old root cron.php task on upgrade | Remove old root cron.php task on upgrade
| YAML | mit | keitarocorp/centos_provision,keitarocorp/centos_provision |
f91c4e6021249f9d3f557855e52ebb6dad1d4ebc | zazu.yaml | zazu.yaml | # Zazu config file for zazu itself.
#issueTracker:
# type: github
# owner: stopthatcow
# repo: zazu
issueTracker:
type: jira
url: https://zazucli.atlassian.net/
project: ZZ
codeReviewer:
type: github
owner: stopthatcow
repo: zazu
style:
- include:
- setup.py
- docs/**.py
- tests/**.py
- zazu/**.py
stylers:
- type: autopep8
options:
- "--max-line-length=150"
- type: docformatter
options:
- "--wrap-summaries=0"
- "--wrap-descriptions=0"
- "--blank"
# Fix common misspellings.
- type: generic
command: sed
options:
- "s/responce/response/g"
| # Zazu config file for zazu itself.
issueTracker:
type: github
owner: stopthatcow
repo: zazu
#issueTracker:
# type: jira
# url: https://zazucli.atlassian.net/
# project: ZZ
codeReviewer:
type: github
owner: stopthatcow
repo: zazu
style:
- include:
- setup.py
- docs/**.py
- tests/**.py
- zazu/**.py
stylers:
- type: autopep8
options:
- "--max-line-length=150"
- type: docformatter
options:
- "--wrap-summaries=0"
- "--wrap-descriptions=0"
- "--blank"
# Fix common misspellings.
- type: generic
command: sed
options:
- "s/responce/response/g"
| Switch back to github issue tracker | Switch back to github issue tracker
(feature/89_autocompletion)
| YAML | mit | stopthatcow/zazu,stopthatcow/zazu |
8d40e308a18b7a830220ea63762f09a66145fd49 | .drone.yml | .drone.yml | image: bradrydzewski/node:0.10
git:
depth: 1
script:
- npm -q install
- npm -q -g install gulp
- gulp bower
- gulp
- gulp backend:test
| image: crhym3/go1.4-node0.10
git:
depth: 1
script:
- npm -q install
- cd app && ../node_modules/bower/bin/bower install -q --allow-root && cd ..
# ensure the build works
- gulp
# backend testing
- go get -d -v ./backend/...
- gulp backend:test
| Use our own docker image in CI builds | Use our own docker image in CI builds
| YAML | apache-2.0 | GoogleChrome/ioweb2015,GoogleChrome/ioweb2015,BLamy/ioweb2015,b-cuts/ioweb2015,Thiruppathi/ioweb2015,google/ioweb2015,jeffposnick/ioweb2015,b-cuts/ioweb2015,BLamy/ioweb2015,Thiruppathi/ioweb2015,jeffposnick/ioweb2015,bestwpw/ioweb2015,b-cuts/ioweb2015,b-cuts/ioweb2015,jeffposnick/ioweb2015,Thiruppathi/ioweb2015,jeffposnick/ioweb2015,google/ioweb2015,bestwpw/ioweb2015,bestwpw/ioweb2015,BLamy/ioweb2015,google/ioweb2015,Thiruppathi/ioweb2015,google/ioweb2015,bestwpw/ioweb2015,GoogleChrome/ioweb2015,GoogleChrome/ioweb2015,BLamy/ioweb2015 |
902fe85180567cf501121dbb17b8284df5c70815 | .drone.yml | .drone.yml | build:
test:
image: quay.io/buildo/node5-npm3
environment:
- NPM_CONFIG_CACHE=/drone/.npm
commands:
- npm i
- npm test
cache:
mount:
- /drone/.npm
| build:
react-components:
image: quay.io/buildo/node5-npm3
environment:
- NPM_CONFIG_CACHE=/drone/.npm
commands:
- npm i
- npm run lint
- npm run build
gh-pages:
image: ubuntu
commands:
- git fetch --no-tags origin +refs/heads/gh-pages
- git checkout gh-pages
- git pull
- git merge master --no-edit
- npm run deploy-showroom
when:
branch: master
cache:
mount:
- /drone/.npm
| Add deploy script for gh-pages | Add deploy script for gh-pages
| YAML | mit | buildo/react-components,buildo/react-components,buildo/react-components,buildo/react-components |
bb9a2d996db150cc57d2b6976c6c23fe619c0b58 | .drone.yml | .drone.yml | ---
kind: pipeline
name: test
steps:
- name: build
image: python:2.7-slim
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- apt-get update && apt-get -y install gcc libjpeg-dev
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- pip install virtualenv
- virtualenv $VIRTUAL_ENV
- pip install -r requirements.txt
- name: test
image: python:2.7-slim
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- ./manage.py check
- ./manage.py test
| ---
kind: pipeline
name: test
steps:
- name: build
image: python:2.7-slim
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- apt-get update && apt-get -y install gcc libjpeg-dev zlib1g-dev
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- pip install virtualenv
- virtualenv $VIRTUAL_ENV
- pip install -r requirements.txt
- name: test
image: python:2.7-slim
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- ./manage.py check
- ./manage.py test
| Add zlib library (old Pillow dep) | Add zlib library (old Pillow dep)
| YAML | mit | ukch/refugeedata,ukch/refugeedata,ukch/refugeedata,ukch/refugeedata |
9aafbf2bc9868ee8ef543da14d4822d87f23f642 | .hound.yml | .hound.yml | ruby:
config_file: .rubocop.yml
java_script:
enabled: false
| ruby:
config_file: .rubocop.yml
java_script:
enabled: false
scss:
enabled: false
| Disable linting of css files | Disable linting of css files
| YAML | apache-2.0 | MFAnderson/gocd,iqstack/gocd,grahamc/gocd,paulclarkin/gocd,kunalch/gocd,varshavaradarajan/gocd,jeffmccune/gocd,feluraschi/gocd,mdaliejaz/gocd,tomzo/gocd,varshavaradarajan/gocd,SOVALINUX/gocd,ollie314/gocd,abaditsegay/gocd,Skarlso/gocd,Battsooj/gocd,Rajik/gocd,kierarad/gocd,grahamc/gocd,xli/gocd,xli/gocd,mdaliejaz/gocd,chopraapooja/gocd,ffafara/gocd,beano/gocd,MikaNieminen/gocd,kunalch/gocd,gocd/gocd,GaneshSPatil/gocd,justinholmes/gocd,cgvarela/gocd,varshavaradarajan/gocd,jyotisingh/gocd,beano/gocd,gaqzi/gocd,gocd/gocd,kierarad/gocd,ind9/gocd,juhijariwala/gocd,GaneshSPatil/gocd,ibnc/gocd,ketan/gocd,feluraschi/gocd,ffafara/gocd,stephen-murby/gocd,jyotisingh/gocd,xli/gocd,bmess/gocd,cgvarela/gocd,marques-work/gocd,MikaNieminen/gocd,savaki/gocd,gocd/gocd,norcnorc/gocd,savaki/gocd,jeffmccune/gocd,VibyJocke/gocd,therako/gocd,jeffmccune/gocd,isaachan/gocd,srinivasupadhya/gocd,varshavaradarajan/gocd,kyleolivo/gocd,ketan/gocd,GaneshSPatil/gocd,arvindsv/gocd,feluraschi/gocd,soundcloud/gocd,wpc/gocd,xfun68/gocd,varshavaradarajan/gocd,beano/gocd,isaachan/gocd,VibyJocke/gocd,isaachan/gocd,GaneshSPatil/gocd,juhijariwala/gocd,ollie314/gocd,xfun68/gocd,sahilm/gocd,MFAnderson/gocd,aj-jaswanth/gocd,sahilm/gocd,pshelton-skype/gocd,tomzo/gocd,arvindsv/gocd,tomzo/gocd,chopraapooja/gocd,ollie314/gocd,pshelton-skype/gocd,juhijariwala/gocd,aj-jaswanth/gocd,abaditsegay/gocd,paulclarkin/gocd,VibyJocke/gocd,tomzo/gocd,emccallum/gocd,Battsooj/gocd,naveenbhaskar/gocd,gaqzi/gocd,ketan/gocd,xfun68/gocd,pshelton-skype/gocd,srinivasupadhya/gocd,zabil/gocd,kierarad/gocd,tomwscott/GoCD,kunalch/gocd,feluraschi/gocd,bdpiparva/gocd,Skarlso/gocd,ind9/gocd,Skarlso/gocd,grahamc/gocd,chopraapooja/gocd,grahamc/gocd,zabil/gocd,ollie314/gocd,aj-jaswanth/gocd,justinholmes/gocd,cgvarela/gocd,therako/gocd,ibnc/gocd,xli/gocd,juhijariwala/gocd,emccallum/gocd,stevem999/gocd,ibnc/gocd,crohacz/gocd,bdpiparva/gocd,Battsooj/gocd,Rajik/gocd,ibnc/gocd,SOVALINUX/gocd,jyotisingh/gocd,iqstack/gocd,sghill/gocd,soundcloud/gocd,stevem999/gocd,ketan/gocd,xli/gocd,naveenbhaskar/gocd,GaneshSPatil/gocd,Rajik/gocd,sghill/gocd,ffafara/gocd,pshelton-skype/gocd,tomzo/gocd,norcnorc/gocd,bdpiparva/gocd,xfun68/gocd,mdaliejaz/gocd,Skarlso/gocd,zabil/gocd,gocd/gocd,SOVALINUX/gocd,iqstack/gocd,Battsooj/gocd,marques-work/gocd,jyotisingh/gocd,gaqzi/gocd,paulclarkin/gocd,sghill/gocd,srinivasupadhya/gocd,VibyJocke/gocd,Skarlso/gocd,stephen-murby/gocd,marques-work/gocd,juhijariwala/gocd,srinivasupadhya/gocd,therako/gocd,wpc/gocd,naveenbhaskar/gocd,jeffmccune/gocd,ketan/gocd,abaditsegay/gocd,chopraapooja/gocd,jyotisingh/gocd,SOVALINUX/gocd,bmess/gocd,sahilm/gocd,chopraapooja/gocd,bdpiparva/gocd,mdaliejaz/gocd,jyotisingh/gocd,justinholmes/gocd,savaki/gocd,bmess/gocd,emccallum/gocd,soundcloud/gocd,tomwscott/GoCD,therako/gocd,wpc/gocd,savaki/gocd,stevem999/gocd,tomwscott/GoCD,norcnorc/gocd,tomwscott/GoCD,tomzo/gocd,SOVALINUX/gocd,sghill/gocd,cgvarela/gocd,soundcloud/gocd,MikaNieminen/gocd,aj-jaswanth/gocd,gocd/gocd,paulclarkin/gocd,stephen-murby/gocd,bmess/gocd,emccallum/gocd,crohacz/gocd,ind9/gocd,arvindsv/gocd,pshelton-skype/gocd,ollie314/gocd,ffafara/gocd,MikaNieminen/gocd,varshavaradarajan/gocd,srinivasupadhya/gocd,abaditsegay/gocd,bmess/gocd,kierarad/gocd,kierarad/gocd,gaqzi/gocd,ibnc/gocd,stevem999/gocd,crohacz/gocd,kierarad/gocd,iqstack/gocd,naveenbhaskar/gocd,arvindsv/gocd,sahilm/gocd,justinholmes/gocd,stevem999/gocd,emccallum/gocd,isaachan/gocd,naveenbhaskar/gocd,stephen-murby/gocd,bdpiparva/gocd,Rajik/gocd,grahamc/gocd,aj-jaswanth/gocd,ind9/gocd,ffafara/gocd,sghill/gocd,abaditsegay/gocd,sahilm/gocd,savaki/gocd,wpc/gocd,tomwscott/GoCD,arvindsv/gocd,norcnorc/gocd,beano/gocd,beano/gocd,marques-work/gocd,zabil/gocd,kyleolivo/gocd,zabil/gocd,iqstack/gocd,kunalch/gocd,therako/gocd,kyleolivo/gocd,ibnc/gocd,wpc/gocd,stephen-murby/gocd,mdaliejaz/gocd,VibyJocke/gocd,MFAnderson/gocd,soundcloud/gocd,feluraschi/gocd,Skarlso/gocd,paulclarkin/gocd,ketan/gocd,marques-work/gocd,isaachan/gocd,naveenbhaskar/gocd,gaqzi/gocd,GaneshSPatil/gocd,MFAnderson/gocd,crohacz/gocd,jeffmccune/gocd,Battsooj/gocd,Rajik/gocd,kyleolivo/gocd,cgvarela/gocd,gocd/gocd,kunalch/gocd,marques-work/gocd,bdpiparva/gocd,arvindsv/gocd,kyleolivo/gocd,crohacz/gocd,xfun68/gocd,ind9/gocd,MFAnderson/gocd,norcnorc/gocd,MikaNieminen/gocd,justinholmes/gocd |
571f84eabc1fde7a83cd23d02e02667dedadc46d | metadata/jl.musicalnotes.yml | metadata/jl.musicalnotes.yml | Categories:
- Science & Education
License: GPL-3.0-only
SourceCode: https://codeberg.org/jonas-l/musical-notes-android
IssueTracker: https://codeberg.org/jonas-l/musical-notes-android/issues
AutoName: Notes
RepoType: git
Repo: https://codeberg.org/jonas-l/musical-notes-android.git
Builds:
- versionName: '1.1'
versionCode: 2
commit: release-1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 3
commit: release-1.2
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 4
commit: release-1.2.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version release-%v
UpdateCheckMode: Tags
CurrentVersion: 1.2.1
CurrentVersionCode: 4
| Categories:
- Science & Education
License: GPL-3.0-only
SourceCode: https://codeberg.org/jonas-l/musical-notes-android
IssueTracker: https://codeberg.org/jonas-l/musical-notes-android/issues
AutoName: Notes
RepoType: git
Repo: https://codeberg.org/jonas-l/musical-notes-android.git
Builds:
- versionName: '1.1'
versionCode: 2
commit: release-1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 3
commit: release-1.2
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 4
commit: release-1.2.1
subdir: app
gradle:
- yes
- versionName: 1.3.0
versionCode: 5
commit: release-1.3.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version release-%v
UpdateCheckMode: Tags
CurrentVersion: 1.3.0
CurrentVersionCode: 5
| Update Notes to 1.3.0 (5) | Update Notes to 1.3.0 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
1afdb45cd59afbe70f4fcf80d0bb6c9db2ccc3e4 | .zuul.yaml | .zuul.yaml | # Zuulv3 CI setup for OpenStack.
# The build-tox-manuals-checkbuild job is defined in openstack-manuals.
- project:
name: openstack/training-guides
check:
jobs:
- build-tox-manuals-checkbuild
gate:
jobs:
- build-tox-manuals-checkbuild
post:
jobs:
- publish-openstack-manuals
| # Zuulv3 CI setup for OpenStack.
# The build-tox-manuals-checkbuild job is defined in openstack-manuals.
- project:
check:
jobs:
- build-tox-manuals-checkbuild
gate:
jobs:
- build-tox-manuals-checkbuild
post:
jobs:
- publish-openstack-manuals
| Remove name from project stanza | Remove name from project stanza
This is now optional, and should be discouraged in in-repo configs.
Change-Id: I5b8f4802b522848228413e3ca6eadcc1b8140bd7
| YAML | apache-2.0 | openstack/training-guides,openstack/training-guides |
cf659a43d301b1e42166b6f6ec22d87312ce8569 | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-xena-jobs
| - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-yoga-jobs
| Add Python3 yoga unit tests | Add Python3 yoga unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for yoga.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I81796adbe62ac9fcb21368bdfdecd1d7f622aa7e
| YAML | apache-2.0 | openstack/blazar-nova,stackforge/blazar-nova,openstack/blazar-nova |
c7ef2b451b62730971253105b39f7376d4550fdb | .zuul.yaml | .zuul.yaml | - project:
templates:
- openstack-lower-constraints-jobs-horizon
- check-requirements
- horizon-non-primary-django-jobs
- horizon-nodejs10-jobs
- openstack-python3-ussuri-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- openstack-lower-constraints-jobs-horizon
- check-requirements
- horizon-non-primary-django-jobs
- horizon-nodejs10-jobs
- openstack-python3-victoria-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
| Add Python3 victoria unit tests | Add Python3 victoria unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for victoria.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I2fa66de2ad7655beeaeddcc3d95e3d3212bc1565
| YAML | apache-2.0 | openstack/zaqar-ui,openstack/zaqar-ui,openstack/zaqar-ui,openstack/zaqar-ui |
15c26774cc783a9b6d02e00d4c51b1b599e312cd | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-victoria-jobs-neutron
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs-neutron
- release-notes-jobs-python3
| Add Python3 wallaby unit tests | Add Python3 wallaby unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for wallaby.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I9f6e81505bfe1f3c20d638451fd2f949805fbbcd
| YAML | apache-2.0 | openstack/networking-hyperv,openstack/networking-hyperv |
cb02c682e6f4b71c8891d7086775dbfb3dd73969 | .zuul.yaml | .zuul.yaml | - project:
cloud-provider-openstack-all:
jobs:
- cloud-provider-openstack-unittest
- cloud-provider-openstack-acceptance-test-keystone-authentication-authorization
- cloud-provider-openstack-acceptance-test-lb-octavia
cloud-provider-openstack-unit:
jobs:
- cloud-provider-openstack-unittest
cloud-provider-openstack-lb:
jobs:
- cloud-provider-openstack-acceptance-test-lb-octavia
cloud-provider-openstack-auth:
jobs:
- cloud-provider-openstack-acceptance-test-keystone-authentication-authorization
| - project:
cloud-provider-openstack-all:
jobs:
- cloud-provider-openstack-unittest
- cloud-provider-openstack-acceptance-test-keystone-authentication-authorization
- cloud-provider-openstack-acceptance-test-lb-octavia
- cloud-provider-openstack-acceptance-test-e2e-conformance
cloud-provider-openstack-unit:
jobs:
- cloud-provider-openstack-unittest
cloud-provider-openstack-lb:
jobs:
- cloud-provider-openstack-acceptance-test-lb-octavia
cloud-provider-openstack-auth:
jobs:
- cloud-provider-openstack-acceptance-test-keystone-authentication-authorization
cloud-provider-openstack-e2e-conformance:
jobs:
- cloud-provider-openstack-acceptance-test-e2e-conformance
| Add conformance e2e test pipeline | Add conformance e2e test pipeline
| YAML | apache-2.0 | kubernetes/cloud-provider-openstack,kubernetes/cloud-provider-openstack,kubernetes/cloud-provider-openstack |
74d31bf9492b7f26ba7c94d5d5404bf47c739bce | user_data_osad.yml | user_data_osad.yml | #cloud-config
apt_mirror: http://iad.mirror.rackspace.com/ubuntu/
package_upgrade: true
packages:
- git-core
- screen
- tmux
runcmd:
- git clone https://github.com/openstack/openstack-ansible.git /opt/openstack-ansible
- cd /opt/openstack-ansible && scripts/bootstrap-aio.sh
- cd /opt/openstack-ansible && scripts/bootstrap-ansible.sh
- cd /opt/openstack-ansible && time scripts/run-playbooks.sh
- echo "OSAD-DEPLOYMENT-COMPLETE"
output: { all: '| tee -a /var/log/cloud-init-output.log' }
| #cloud-config
apt_mirror: http://iad.mirror.rackspace.com/ubuntu/
package_upgrade: true
packages:
- git-core
- screen
- tmux
runcmd:
- export ANSIBLE_FORCE_COLOR=true
- export PYTHONUNBUFFERED=1
- git clone https://github.com/openstack/openstack-ansible.git /opt/openstack-ansible
- cd /opt/openstack-ansible && scripts/bootstrap-aio.sh
- cd /opt/openstack-ansible && scripts/bootstrap-ansible.sh
- cd /opt/openstack-ansible && time scripts/run-playbooks.sh
- echo "OSAD-DEPLOYMENT-COMPLETE"
output: { all: '| tee -a /var/log/cloud-init-output.log' }
| Add unbuffered output + color | Add unbuffered output + color
| YAML | apache-2.0 | major/openstack-ansible-builder |
2035a3c5ec821545428ac4f50e344af9ae2d7dfd | electron-builder.yml | electron-builder.yml | appId: com.codeforscience.ScienceFair
copyright: "Copyright © 2017 CodeForScience"
productName: ScienceFair
forceCodeSigning: true
artifactName: "${productName}-${os}-${arch}-${version}.${ext}"
asar: true
asarUnpack: '*.node'
compression: maximum
mac:
category: public.app-category.reference
publish: github
target:
- dmg
dmg:
background: "build/appdmg.png"
icon: "build/icon.icns"
iconSize: 128
contents:
- x: 380
y: 240
type: link
path: /Applications
- x: 122
y: 240
type: file
linux:
publish: github
category: "GNOME;GTK;Science;Literature"
packageCategory: "GNOME;GTK;Science;Literature"
description: "ScienceFair desktop science reading app for Linux"
target:
- deb
- AppImage
maintainer: "Richard Smith-Unna <rik@fathomlabs.io>"
win:
publish: github
icon: "build/icon.ico"
nsis:
perMachine: true
oneClick: true
| appId: com.codeforscience.ScienceFair
copyright: "Copyright © 2017 CodeForScience"
productName: ScienceFair
forceCodeSigning: true
artifactName: "${productName}-${os}-${arch}-${version}.${ext}"
asar: false
compression: maximum
mac:
category: public.app-category.reference
publish: github
target:
- dmg
dmg:
background: "build/appdmg.png"
icon: "build/icon.icns"
iconSize: 128
contents:
- x: 380
y: 240
type: link
path: /Applications
- x: 122
y: 240
type: file
linux:
publish: github
category: "GNOME;GTK;Science;Literature"
packageCategory: "GNOME;GTK;Science;Literature"
description: "ScienceFair desktop science reading app for Linux"
target:
- deb
- AppImage
maintainer: "Richard Smith-Unna <rik@fathomlabs.io>"
win:
publish: github
icon: "build/icon.ico"
nsis:
perMachine: true
oneClick: true
| Disable asar but keep compression | Disable asar but keep compression | YAML | mit | greggraf/sciencefair,greggraf/sciencefair,codeforscience/sciencefair,codeforscience/sciencefair,codeforscience/sciencefair,greggraf/sciencefair |
0e77f4fefe1d94e56d6e6442a490fab8d751d524 | packages/gp/GPipe-GLFW.yaml | packages/gp/GPipe-GLFW.yaml | homepage: https://github.com/plredmond/GPipe-GLFW
changelog-type: ''
hash: 5a3e4f193942d13eca16358410b0a14587a5ca80f3b76cd4cc6ced1e4ceb979a
test-bench-deps: {}
maintainer: Patrick Redmond
synopsis: GLFW OpenGL context creation for GPipe
changelog: ''
basic-deps:
GPipe-GLFW: -any
exception-transformers: -any
base: ! '>=4.7 && <4.10'
GPipe: ==2.1.*
GLFW-b: ! '>=1.4 && <1.5'
transformers: ! '>=0.3 && <0.6'
all-versions:
- '1.0'
- '1.1'
- '1.2.1'
- '1.2.2'
- '1.2.3'
author: Patrick Redmond
latest: '1.2.3'
description-type: haddock
description: ! 'GPipe-GLFW is a utility library to enable the use of GLFW as
the OpenGL window and context handler for GPipe. GPipe is a
typesafe functional API based on the conceptual model of
OpenGL, but without the imperative state machine.'
license-name: MIT
| homepage: https://github.com/plredmond/GPipe-GLFW
changelog-type: ''
hash: 2d759e18ce6c1daf756bb2a3c706dc9773cc396b41296570c0bb4a5936a6e662
test-bench-deps: {}
maintainer: Patrick Redmond
synopsis: GLFW OpenGL context creation for GPipe
changelog: ''
basic-deps:
GPipe-GLFW: -any
exception-transformers: -any
base: ! '>=4.7 && <4.10'
GPipe: ==2.1.*
GLFW-b: ! '>=1.4 && <1.5'
transformers: ! '>=0.3 && <0.6'
all-versions:
- '1.0'
- '1.1'
- '1.2.1'
- '1.2.2'
- '1.2.3'
- '1.3.0'
author: Patrick Redmond
latest: '1.3.0'
description-type: haddock
description: ! 'GPipe-GLFW is a utility library to enable the use of GLFW as
the OpenGL window and context handler for GPipe. GPipe is a
typesafe functional API based on the conceptual model of
OpenGL, but without the imperative state machine.'
license-name: MIT
| Update from Hackage at 2016-12-08T04:29:55Z | Update from Hackage at 2016-12-08T04:29:55Z | YAML | mit | commercialhaskell/all-cabal-metadata |
6431c70fde7966e444882823589774930a7a5c34 | test/conda.yaml | test/conda.yaml | channels:
- bioconda
- conda-forge
dependencies:
- bats
- nose
- numpy
- biopython
- pandas
- simplejson
- matplotlib
| channels:
- bioconda
- conda-forge
dependencies:
- python=3
- bats
- nose
- numpy
- biopython
- pandas
- simplejson
- matplotlib
| Test files and expected output for verifying the consensus bug | Test files and expected output for verifying the consensus bug
| YAML | mit | jmeppley/py-metagenomics,jmeppley/py-metagenomics,jmeppley/py-metagenomics |
45b5bfc2a6212df7ed9c19e8a1d1c919b0bdddac | requirements.yml | requirements.yml | - src: f500.project_deploy_module
version: v1.0.3
- name: ntp
src: resmo.ntp
version: 0.3.0
- name: logrotate
src: nickhammond.logrotate
version: fc3ea4
- name: php5-xdebug
src: MaximeThoonsen.php5-xdebug
version: v1.0.5
- name: swapfile
src: kamaln7.swapfile
version: 0.4
- name: mailhog
src: geerlingguy.mailhog
version: 1.0.3
- name: newrelic-php
src: franklinkim.php5-newrelic
version: 1.1.0
- name: newrelic-system
src: sivel.newrelic
version: 0.1.3
| - src: f500.project_deploy_module
version: v1.0.3
- name: ntp
src: resmo.ntp
version: 0.3.0
- name: logrotate
src: nickhammond.logrotate
version: fc3ea4
- name: php5-xdebug
src: MaximeThoonsen.php5-xdebug
version: v1.0.5
- name: swapfile
src: kamaln7.swapfile
version: 0.4
- name: mailhog
src: geerlingguy.mailhog
version: 1.0.3
- name: newrelic-php
src: chriskite.newrelic-php
version: c6913d
- name: newrelic-system
src: sivel.newrelic
version: 0.1.3
| Swap php New Relic roles to avoid duplicate apt sources. | Swap php New Relic roles to avoid duplicate apt sources.
| YAML | mit | mlaa/trellis,mlaa/trellis |
6fb79586cdb7c33bf0c97927a4b53cee2985fe80 | .scrutinizer.yml | .scrutinizer.yml | filter:
excluded_paths: [tests/*]
checks:
php:
code_rating: true
remove_extra_empty_lines: true
remove_php_closing_tag: true
remove_trailing_whitespace: true
fix_use_statements:
remove_unused: true
preserve_multiple: false
preserve_blanklines: true
order_alphabetically: true
fix_php_opening_tag: true
fix_linefeed: true
fix_line_ending: true
fix_identation_4spaces: true
fix_doc_comments: true
excluded_dependencies:
- commonmark/commonmark.js
tools:
external_code_coverage:
timeout: 1800
runs: 3
php_analyzer: true
php_code_coverage: false
php_code_sniffer:
config:
standard: PSR2
filter:
paths: ['src']
php_cpd:
enabled: true
excluded_dirs: [vendor, tests]
php_loc:
enabled: true
excluded_dirs: [vendor, tests]
php_pdepend: true
php_sim: true
| filter:
excluded_paths: [tests/*]
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run
checks:
php:
code_rating: true
remove_extra_empty_lines: true
remove_php_closing_tag: true
remove_trailing_whitespace: true
fix_use_statements:
remove_unused: true
preserve_multiple: false
preserve_blanklines: true
order_alphabetically: true
fix_php_opening_tag: true
fix_linefeed: true
fix_line_ending: true
fix_identation_4spaces: true
fix_doc_comments: true
excluded_dependencies:
- commonmark/commonmark.js
tools:
external_code_coverage:
timeout: 1800
runs: 3
php_analyzer: true
php_code_coverage: false
php_code_sniffer:
config:
standard: PSR2
filter:
paths: ['src']
php_cpd:
enabled: true
excluded_dirs: [vendor, tests]
php_loc:
enabled: true
excluded_dirs: [vendor, tests]
php_pdepend: true
php_sim: true
| Switch to Scrutinizer's new PHP analysis engine | Switch to Scrutinizer's new PHP analysis engine
| YAML | bsd-3-clause | thephpleague/commonmark,thephpleague/commonmark,colinodell/commonmark |
045283862e667274483fa1f2589922d8fcae06ab | server/stack.yaml | server/stack.yaml | resolver: lts-9.0
packages: ['.']
extra-deps:
- servant-options-0.1.0.0
- pandoc-crossref-0.2.5.0
- roman-numerals-0.5.1.5
allow-newer: true
| resolver: lts-9.0
packages: ['.']
extra-deps:
- servant-options-0.1.0.0
- pandoc-crossref-0.2.5.0
- roman-numerals-0.5.1.5
- pandoc-1.19.2.1
flags:
pandoc:
embed_data_files: true
| Embed pandoc data for relocatable binary | [Server] Embed pandoc data for relocatable binary
| YAML | mit | lierdakil/markco,lierdakil/markco,lierdakil/markco |
e18e82db460049e2343ed85b45580559788a7c5d | .github/workflows/dart.yml | .github/workflows/dart.yml | name: Dart CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 0"
defaults:
run:
shell: bash
jobs:
build:
name: "Dart CI"
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;dart:stable"
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
- name: "Dependencies"
run: pub upgrade --no-precompile
- name: "Dart Analyzer"
run: dart analyze --fatal-infos .
- name: "Dart Formatter"
run: dart format --output=none --set-exit-if-changed .
- name: "VM Tests"
run: dart test --platform vm --coverage . test/all_test.dart
- name: "Chrome Tests"
run: dart test --platform chrome test test/all_test.dart
- name: "Format coverage"
run: |
dart pub global activate coverage
dart pub global run coverage:format_coverage --base-directory=. --report-on=lib/ --packages=.packages --lcov --in=test/all_test.dart.vm.json --out=test/all_test.dart.lcov
rm test/all_test.dart.vm.json
- name: "Upload coverage"
uses: codecov/codecov-action@v2
| name: Dart CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 0"
defaults:
run:
shell: bash
jobs:
build:
name: "Dart CI"
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;dart:stable"
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
- name: "Dependencies"
run: dart pub upgrade --no-precompile
- name: "Dart Analyzer"
run: dart analyze --fatal-infos .
- name: "Dart Formatter"
run: dart format --output=none --set-exit-if-changed .
- name: "VM Tests"
run: dart test --platform vm --coverage . test/all_test.dart
- name: "Chrome Tests"
run: dart test --platform chrome test test/all_test.dart
- name: "Format coverage"
run: |
dart pub global activate coverage
dart pub global run coverage:format_coverage --base-directory=. --report-on=lib/ --packages=.packages --lcov --in=test/all_test.dart.vm.json --out=test/all_test.dart.lcov
rm test/all_test.dart.vm.json
- name: "Upload coverage"
uses: codecov/codecov-action@v2
| Fix GitHub action to work with Dart 2.17 | Fix GitHub action to work with Dart 2.17
| YAML | mit | renggli/dart-xml |
ef9b8dd0b12de5833a7967bea8719cd33cea216a | .github/workflows/main.yml | .github/workflows/main.yml | name: tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python:
- 3.6
- 3.9
- 3.10.0-alpha - 3.10.99
- pypy3
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install tox
- name: Run tests
run: tox -- --cov-report xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
flags: >- # Mark which lines are covered by which envs
${{ runner.os }},
${{ matrix.python }}
functionalities: gcov # disable C coverage autodiscovery
release:
needs: test
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install tox
run: |
python -m pip install tox
- name: Release
run: tox -e release
env:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| name: tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python:
- 3.6
- 3.9
- 3.10.0-alpha - 3.10.99
- pypy3
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install tox
- name: Run tests
run: tox -- --cov-report xml
- name: Publish coverage
uses: codecov/codecov-action@v1
with:
flags: >- # Mark which lines are covered by which envs
${{ runner.os }},
${{ matrix.python }}
release:
needs: test
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install tox
run: |
python -m pip install tox
- name: Release
run: tox -e release
env:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| Remove gcov exclusion. Defaults are fine. | Remove gcov exclusion. Defaults are fine.
| YAML | mit | pypa/setuptools,pypa/setuptools,pypa/setuptools |
3084cac3a63b0d8bbf2c92d2425f03ea9e4646f4 | .github/workflows/main.yml | .github/workflows/main.yml | name: gcld3
on: [push]
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: OS Dependencies
run: sudo apt-get install libprotobuf-dev protobuf-compiler python3-dev
macos:
runs-on: macos-latest
steps:
- name: OS Dependencies
run: brew install protobuf
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build package
run: |
pip install setuptools
python setup.py install
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest src/python/gcld3_test.py
| name: gcld3
on: [push]
jobs:
ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: OS Dependencies
run: sudo apt-get install libprotobuf-dev protobuf-compiler python3-dev
- 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
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build package
run: |
pip install setuptools
python setup.py install
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest src/python/gcld3_test.py
macos:
runs-on: nacos-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: OS Dependencies
run: brew install protobuf
- 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
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build package
run: |
pip install setuptools
python setup.py install
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest src/python/gcld3_test.py
| Define a job for each OS | Define a job for each OS | YAML | apache-2.0 | google/cld3,google/cld3 |
f9e35a57322aa0c639badd777021df2c556cc7ed | packages/cc/cci.yaml | packages/cc/cci.yaml | homepage: ''
changelog-type: ''
hash: 9604037de386ebd1b75401d8abc3139e34d803af3bdc0ab5a2efd6b816034087
test-bench-deps:
bytestring: -any
base: -any
time: -any
filepath: -any
process: -any
cci: -any
containers: -any
binary: -any
mtl: -any
cmdargs: <0.11
random: -any
pretty: -any
maintainer: Facundo Domínguez <facundo.dominguez@parsci.com>
synopsis: Bindings for the CCI networking library
changelog: ''
basic-deps:
bytestring: ! '>=0.9'
base: ! '>=4.3 && <5'
all-versions:
- 0.3.1
author: ''
latest: 0.3.1
description-type: haddock
description: ! 'The CCI project is an open source communication interface that
aims to provide a simple and portable API, high performance,
scalability for the largest deployments, and robustness in the
presence of faults. It is developed and maintained by a
partnership of research, academic, and industry members.
See <http://cci-forum.com> for details.'
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: 164f46e8bb56e7b3f7f6d2b6f6dd1de89c539d9b0c7ff9fcac30fc478fad7288
test-bench-deps:
bytestring: -any
base: -any
time: -any
filepath: -any
process: -any
cci: -any
containers: -any
binary: -any
mtl: -any
cmdargs: <0.11
random: -any
pretty: -any
maintainer: Facundo Domínguez <facundo.dominguez@parsci.com>
synopsis: Bindings for the CCI networking library
changelog: ''
basic-deps:
bytestring: '>=0.9'
base: '>=4.3 && <5'
all-versions:
- 0.3.1
author: ''
latest: 0.3.1
description-type: haddock
description: |-
The CCI project is an open source communication interface that
aims to provide a simple and portable API, high performance,
scalability for the largest deployments, and robustness in the
presence of faults. It is developed and maintained by a
partnership of research, academic, and industry members.
See <http://cci-forum.com> for details.
license-name: BSD-3-Clause
| Update from Hackage at 2022-04-29T20:37:49Z | Update from Hackage at 2022-04-29T20:37:49Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a5b2a46582cfde872cbd05b6b27114f125d61b16 | .fixtures-leap-pinned.yml | .fixtures-leap-pinned.yml | fixtures:
symlinks:
pixelated: "#{source_dir}"
lsb: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/lsb"
common: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/common"
rsyslog: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/rsyslog"
concat: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/concat"
apache: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/apache"
templatewlv: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/templatewlv"
repositories:
leap_platform:
repo: "https://github.com/pixelated/leap_platform.git"
flags: "--recursive"
| fixtures:
symlinks:
pixelated: "#{source_dir}"
lsb: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/lsb"
common: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/common"
rsyslog: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/rsyslog"
concat: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/concat"
apache: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/apache"
templatewlv: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/templatewlv"
repositories:
leap_platform:
repo: "https://0xacab.org/pixelated/platform.git"
flags: "--recursive"
| Change leap_platform repo to 0xacab | Change leap_platform repo to 0xacab
| YAML | agpl-3.0 | pixelated/puppet-pixelated,pixelated/puppet-pixelated,pixelated/puppet-pixelated,pixelated/puppet-pixelated |
982dd32337769fb70869559f2ef8a297085ced6c | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on: [push, pull_request]
jobs:
test:
name: Ruby ${{ matrix.ruby }} (${{ matrix.os }})
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
ruby:
- 3.1
- 3.0
- 2.7
- 2.6
- jruby-9.2.13.0
- truffleruby-20.3.0
os:
- ubuntu-latest
- macos-latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run tests
run: bundle exec rake
test-windows:
name: Ruby ${{ matrix.ruby }} (windows-latest)
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
ruby:
- 3.0
- 2.7
- 2.6
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run tests
run: bundle exec rake
| name: Test
on: [push, pull_request]
jobs:
test:
name: Ruby ${{ matrix.ruby }} (${{ matrix.os }})
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
ruby:
- 3.1
- 3.0
- 2.7
- 2.6
- jruby-9.3.2
- truffleruby-21.3.0
os:
- ubuntu-latest
- macos-latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run tests
run: bundle exec rake
test-windows:
name: Ruby ${{ matrix.ruby }} (windows-latest)
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
ruby:
- 3.0
- 2.7
- 2.6
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Run tests
run: bundle exec rake
| Update CI Rubies: JRuby / TruffleRuby | Update CI Rubies: JRuby / TruffleRuby
| YAML | mit | janlelis/cd |
453e030acd6927cb8d6d2e4962f1957141c566c3 | packages/co/commutative.yaml | packages/co/commutative.yaml | homepage: ''
changelog-type: ''
hash: 9bbb997bd21fd4a6f6cacfa0a8b99846856f9efc72f04d6335cd5779fb6c53cc
test-bench-deps:
base: -any
quickcheck-instances: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
QuickCheck: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Commutative binary operations.
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
semigroups: -any
random: -any
all-versions:
- '0.0.1'
- '0.0.1.1'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.1.1'
description-type: haddock
description: ! 'This package provides a trivial class for abelian binary operations,
and an
analogue to @Data.Foldable@.'
license-name: MIT
| homepage: ''
changelog-type: ''
hash: a4c25dd855bff611776b5e1b4fa822d909e45d4c10d9f47b457f93e37804e3af
test-bench-deps:
base: -any
semigroups: -any
quickcheck-instances: -any
tasty-quickcheck: -any
tasty-hunit: -any
random: -any
tasty: -any
QuickCheck: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Commutative binary operations.
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
semigroups: -any
random: -any
all-versions:
- '0.0.1'
- '0.0.1.1'
- '0.0.1.2'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.1.2'
description-type: haddock
description: ! 'This package provides a trivial class for abelian binary operations,
and an
analogue to @Data.Foldable@.'
license-name: MIT
| Update from Hackage at 2015-08-16T04:18:21+0000 | Update from Hackage at 2015-08-16T04:18:21+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
79190ae4b48f076d9110f4a51a571fb5a1c4d391 | packages/co/constrictor.yaml | packages/co/constrictor.yaml | homepage: https://github.com/chessai/constrictor.git
changelog-type: markdown
hash: eaf4ba51cd4cbd0669d694bdd6a83fb30efa3c428a00b99858a979d737005723
test-bench-deps: {}
maintainer: chessai1996@gmail.com
synopsis: strict versions of many things in base
changelog: ! '# Revision history for constrictor
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
base: ! '>=4.7 && <5.0'
transformers: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.1.0'
author: chessai
latest: '0.1.1.0'
description-type: haddock
description: ! 'This package provides strict versions of many functions in
base, including many folding functions not present in there.'
license-name: MIT
| homepage: https://github.com/chessai/constrictor.git
changelog-type: markdown
hash: 2898fdf37d004fdc11ac15ac34465f35eec8338ce7541f03568bf1541d0d3d5a
test-bench-deps: {}
maintainer: chessai1996@gmail.com
synopsis: strict versions of many things in base
changelog: ! '# Revision history for constrictor
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
base: ! '>=4.5 && <5.0'
ghc-prim: -any
transformers: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.1.0'
- '0.1.1.1'
author: chessai
latest: '0.1.1.1'
description-type: haddock
description: ! 'This package provides strict versions of many functions in
base, including many folding functions not present in there.'
license-name: MIT
| Update from Hackage at 2018-05-05T02:35:05Z | Update from Hackage at 2018-05-05T02:35:05Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
020c25175e6db784bc50b0fec12b1746e447df26 | packages/di/ditto-lucid.yaml | packages/di/ditto-lucid.yaml | homepage: ''
changelog-type: ''
hash: d53b22043eca54f7efa17f17fb495a5297355d68f4ee5104b450c833e6ac9891
test-bench-deps: {}
maintainer: zacharyachurchill@gmail.com
synopsis: Add support for using lucid with Ditto
changelog: ''
basic-deps:
lucid: <3.0.0
ditto: ==0.1.0.*
base: ! '>4.5 && <5'
text: ! '>=0.11 && <1.3'
path-pieces: -any
all-versions:
- 0.1.0.3
author: Jeremy Shaw, Zachary Churchill
latest: 0.1.0.3
description-type: haddock
description: Ditto is a library for building and validating forms using applicative
functors. This package add support for using ditto with lucid.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: 5f8e73b1efd51c634ad36876d578e946bdccceb1d3476311d0a440fa900fa36b
test-bench-deps: {}
maintainer: zacharyachurchill@gmail.com
synopsis: Add support for using lucid with Ditto
changelog: ''
basic-deps:
lucid: <3.0.0
ditto: ==0.1.0.*
base: ! '>4.5 && <5'
text: ! '>=0.11 && <1.3'
path-pieces: -any
all-versions:
- 0.1.0.3
- 0.1.0.4
author: Jeremy Shaw, Zachary Churchill
latest: 0.1.0.4
description-type: haddock
description: Ditto is a library for building and validating forms using applicative
functors. This package add support for using ditto with lucid.
license-name: BSD-3-Clause
| Update from Hackage at 2019-07-19T19:08:11Z | Update from Hackage at 2019-07-19T19:08:11Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
94ac32c2656eec1790288604a502ed113b1a02fa | .github/workflows/php.yml | .github/workflows/php.yml | name: PHP Composer
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
- name: PHPUnit tests
uses: php-actions/phpunit@v8
with:
configuration: phpunit.xml
| name: PHP Composer
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
- name: PHPUnit tests
uses: php-actions/phpunit@v9
with:
configuration: phpunit.xml
| Rollback PHPUnit version to 9 in workflow. | Rollback PHPUnit version to 9 in workflow.
| YAML | mit | vendeka-nl/text |
f6da812b797c98d8f35ff6c4ca1bf1185cf42f99 | packages/ha/hakyll-sass.yaml | packages/ha/hakyll-sass.yaml | homepage: https://github.com/meoblast001/hakyll-sass
changelog-type: ''
hash: 2943da781c08e637c7f44eca1afc33c3ec0cf589515fb4e2d6b89a43e7a7a0a9
test-bench-deps: {}
maintainer: vc@braden-walters.info
synopsis: Hakyll SASS compiler over hsass
changelog: ''
basic-deps:
hsass: ! '>=0.2.0'
base: ! '>=4 && <5'
data-default-class: ! '>=0.0.1'
hakyll: ! '>=4.7.0'
all-versions:
- '0.1.0'
author: Braden Walters
latest: '0.1.0'
description-type: haddock
description: ! 'Hakyll compiler which indirectly uses libsass to compile SASS and
SCSS to CSS.
The Ruby SASS compiler is not required.'
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 08ed7ca807dc5eba97d4495d67d2ef2af4a3c83d0db8839d5f5fd538f1773522
test-bench-deps: {}
maintainer: vc@braden-walters.info
synopsis: Hakyll SASS compiler over hsass
changelog: ''
basic-deps:
hsass: ! '>=0.2.0'
base: ! '>=4 && <5'
data-default-class: ! '>=0.0.1'
filepath: ! '>=1.3.0'
hakyll: ! '>=4.7.0'
all-versions:
- '0.1.0'
- '0.2.0'
author: Braden Walters
latest: '0.2.0'
description-type: haddock
description: ! 'Hakyll compiler which indirectly uses libsass to compile SASS and
SCSS to CSS.
The Ruby SASS compiler is not required.'
license-name: MIT
| Update from Hackage at 2015-08-27T21:38:31+0000 | Update from Hackage at 2015-08-27T21:38:31+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
9f4b970afed23b8d4bb6750e2c74b8d92345dc2e | packages/ri/ring-buffer.yaml | packages/ri/ring-buffer.yaml | homepage: http://github.com/bgamari/ring-buffer
changelog-type: ''
hash: 0fa00f983efef18739d3671c34e272f4a37d379de9b20d466447ab0149e8a958
test-bench-deps:
ring-buffer: -any
base: ! '>=4.9'
QuickCheck: ! '>=2.7'
vector: ! '>=0.11'
maintainer: ben@smart-cactus.org
synopsis: A concurrent, mutable ring-buffer
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.10'
mtl: ! '>=2.2 && <2.3'
primitive: ! '>=0.5 && <0.7'
vector: ! '>=0.10 && <0.12'
all-versions:
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.2.0'
author: Ben Gamari
latest: '0.2.0'
description-type: haddock
description: A concurrent, mutable ring-buffer
license-name: BSD3
| homepage: http://github.com/bgamari/ring-buffer
changelog-type: ''
hash: 122bb12bbb9a51a93d717655df8c78d504d7a08ffbc488aed92c2d098283bce8
test-bench-deps:
ring-buffer: -any
base: ! '>=4.9'
QuickCheck: ! '>=2.7'
vector: ! '>=0.11'
maintainer: ben@smart-cactus.org
synopsis: A concurrent, mutable ring-buffer
changelog: ''
basic-deps:
exceptions: ! '>=0.8 && <0.9'
base: ! '>=4.7 && <4.10'
mtl: ! '>=2.2 && <2.3'
primitive: ! '>=0.5 && <0.7'
vector: ! '>=0.10 && <0.12'
all-versions:
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.2.0'
- '0.3'
author: Ben Gamari
latest: '0.3'
description-type: haddock
description: A concurrent, mutable ring-buffer
license-name: BSD3
| Update from Hackage at 2016-07-13T20:49:23+0000 | Update from Hackage at 2016-07-13T20:49:23+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
435b6125daf44b25009075256521770f8e4f03bf | packages/wi/Win32-services-wrapper.yaml | packages/wi/Win32-services-wrapper.yaml | homepage: ''
changelog-type: ''
hash: 8b992d795ea527fcb533a91dc33ddab634017dfa129f6348d04b0a335fb5f236
test-bench-deps: {}
maintainer: Ganesh Sittampalam <ganesh@earth.li>
synopsis: Wrapper code for making a Win32 service
changelog: ''
basic-deps:
base: ! '>=4.5 && <4.8'
filepath: ==1.3.*
Win32: ! '>=2.2 && <2.4'
Win32-services: ! '>=0.2.1 && <0.3'
directory: ! '>=1.1 && <1.3'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.2.0'
author: Ganesh Sittampalam <ganesh@earth.li>
latest: '0.1.2.0'
description-type: haddock
description: ! 'Builds on the Win32-services package, providing a simple
wrapper for turning a long-running process into a
Windows service.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: ef4f4b0f6821ad02938a019fcef050f3dfa49bc32c6b81b2941b84c5b33bbc68
test-bench-deps: {}
maintainer: Ganesh Sittampalam <ganesh@earth.li>
synopsis: Wrapper code for making a Win32 service
changelog: ''
basic-deps:
Win32-errors: ! '>=0.2 && <0.3'
base: ! '>=4.5 && <4.9'
filepath: ! '>1.3 && <1.5'
Win32: ! '>=2.2 && <2.4'
Win32-services: ! '>=0.3 && <0.4'
directory: ! '>=1.1 && <1.3'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
author: Ganesh Sittampalam <ganesh@earth.li>
latest: '0.1.3.0'
description-type: haddock
description: ! 'Builds on the Win32-services package, providing a simple
wrapper for turning a long-running process into a
Windows service.'
license-name: BSD3
| Update from Hackage at 2015-05-27T05:20:24+0000 | Update from Hackage at 2015-05-27T05:20:24+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
065b437a704e232f69ccae1f465791a182b3d32d | packaging/conda/conda_build_config.yaml | packaging/conda/conda_build_config.yaml | python:
- 3.6
- 3.7
- 3.8
- 3.9
numpy:
- 1.15
- 1.15
- 1.17
- 1.20
zip_keys:
- python
- numpy
| python:
# - 3.6
# - 3.7
- 3.8
# - 3.9
numpy:
# - 1.15
# - 1.15
- 1.17
# - 1.20
zip_keys:
- python
- numpy
| Build only Python 3.8 for CI testing | Build only Python 3.8 for CI testing | YAML | bsd-3-clause | PySCeS/pysces,PySCeS/pysces |
212442a4e5ba0ac5b62559b7b3ead82bc0de857e | ci/tasks/check-certs/task.yml | ci/tasks/check-certs/task.yml | ---
platform: linux
image_resource:
type: docker-image
source:
repository: relintdockerhubpushbot/cf-deployment-concourse-tasks
inputs:
- name: cf-deployment-develop
- name: relint-envs
params:
DAYS_LEFT_THRESHOLD: 16
PATH_TO_VERIFY: relint-envs
run:
dir: cf-deployment
path: ci/tasks/check-certs/task
| ---
platform: linux
image_resource:
type: docker-image
source:
repository: relintdockerhubpushbot/cf-deployment-concourse-tasks
inputs:
- name: cf-deploymen
- name: relint-envs
params:
DAYS_LEFT_THRESHOLD: 16
PATH_TO_VERIFY: relint-envs
run:
path: cf-deployment/ci/tasks/check-certs/task
| Add input mappings and tweak the paths | Add input mappings and tweak the paths
[#173063443](https://www.pivotaltracker.com/story/show/173063443)
| YAML | apache-2.0 | cloudfoundry/cf-deployment,cloudfoundry/cf-deployment |
c48cf689655ce8ebf6704416e396066c82ce8363 | ci/tasks/combine-binaries.yml | ci/tasks/combine-binaries.yml | ---
platform: linux
image: docker:///cloudfoundry/cli-ci
inputs:
- name: cross-compiled
- name: osx-compiled
outputs:
- name: compiled
run:
path: bash
args:
- -c
- |
set -ex
cwd=$PWD
mkdir combined
pushd cross-compiled
tar -xzf *.tar
rm *.tar
mv * $cwd/combined
popd
pushd osx-compiled
tar -xzf *.tar
rm *.tar
mv * $cwd/combined
popd
tar -cvzf $cwd/compiled/cf-cli-binaries.tgz -C combined .
| ---
platform: linux
image: docker:///cloudfoundry/cli-ci
inputs:
- name: cross-compiled
- name: osx-compiled
outputs:
- name: compiled
run:
path: bash
args:
- -c
- |
set -ex
cwd=$PWD
mkdir combined
pushd cross-compiled
tar -xzf *.tgz
rm *.tgz
mv * $cwd/compiled
popd
pushd osx-compiled
tar -xzf *.tgz
rm *.tgz
mv * $cwd/compiled
popd
tar -cvzf $cwd/compiled/cf-cli-binaries.tgz -C compiled .
| Fix tgz & output directory | Fix tgz & output directory
[#115203011]
Signed-off-by: Anand Gaitonde <4f0ff06b2390eeadb0769d298cbdb3dc6df4c73d@pivotal.io>
| YAML | apache-2.0 | cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli |
754005859e53f54d966e3cc903ea42c8863f3083 | stacks/volumes-nfs.yml | stacks/volumes-nfs.yml | # Mount project volumes with NFS
# For use on Mac with VirtualBox or Docker for Mac
# Pros: very good performance, almost realtime file sync
# Cons: no inotify/fs watchers
version: "3.9"
volumes:
cli_home: # /home/docker volume in cli
project_root: # Project root volume (NFS)
driver: local
driver_opts:
type: nfs
device: :${PROJECT_ROOT}
o: addr=${DOCKSAL_HOST_IP},vers=3,nolock,noacl,nocto,noatime,nodiratime,actimeo=1
db_data: # Database data volume (bind)
docksal_ssh_agent: # Shared ssh-agent volume
external: true
| # Mount project volumes with NFS
# For use on Mac with VirtualBox or Docker for Mac
# Pros: very good performance, almost realtime file sync
# Cons: no inotify/fs watchers
version: "3.9"
volumes:
cli_home: # /home/docker volume in cli
project_root: # Project root volume (NFS)
driver: local
driver_opts:
type: nfs
device: :${PROJECT_ROOT}
o: addr=${DOCKSAL_HOST_IP},vers=3,nolock,noacl,nocto,noatime,nodiratime,actimeo=1,wsize=32768,rsize=32768
db_data: # Database data volume (bind)
docksal_ssh_agent: # Shared ssh-agent volume
external: true
| Set NFS Read Write Values for Volume | Set NFS Read Write Values for Volume
| YAML | mit | docksal/docksal |
1c2956802f0423858927d5255bfd4aa53c3abac3 | src/sunstone/etc/sunstone-views/vdcadmin_vcenter.yaml | src/sunstone/etc/sunstone-views/vdcadmin_vcenter.yaml | provision_logo: images/one_small_logo.png
enabled_tabs:
provision-tab: true
tabs:
provision-tab:
panel_tabs:
users: true
flows: false
templates: false
actions:
Template.chmod: true
Template.delete: true
dashboard:
quotas: false
vms: false
vdcquotas: true
vdcvms: true
users: true
create_vm:
capacity_select: false
network_select: true
| provision_logo: images/one_small_logo.png
enabled_tabs:
provision-tab: true
tabs:
provision-tab:
panel_tabs:
users: true
flows: true
templates: false
actions:
Template.chmod: true
Template.delete: true
dashboard:
quotas: false
vms: false
vdcquotas: true
vdcvms: true
users: true
create_vm:
capacity_select: false
network_select: true
| Revert "Disable flows in vdcadmin_center view" | Revert "Disable flows in vdcadmin_center view"
This reverts commit 683db2b3bd0e07b30ed4a51fa73265ba754aa12d.
| YAML | apache-2.0 | Terradue/one,Terradue/one,Terradue/one,Terradue/one,Terradue/one,Terradue/one,Terradue/one,Terradue/one |
075753edf2228343fdd271e4911c3ff1bc3311f2 | config/defaults_template.yaml | config/defaults_template.yaml | # See ./defaults.go for documentation on each field.
defaultPoolLabels:
client: default-client-pool
driver: default-driver-pool
server: default-server-pool
cloneImage: "{{ .InitImagePrefix }}clone:{{ .Version }}"
readyImage: "{{ .InitImagePrefix }}ready:{{ .Version }}"
driverImage: "{{ .ImagePrefix }}driver:{{ .Version }}"
languages:
- language: cxx
buildImage: l.gcr.io/google/bazel:latest
runImage: "{{ .ImagePrefix }}cxx:{{ .Version }}"
- language: java
buildImage: gradle:jdk8
runImage: "{{ .ImagePrefix }}java:{{ .Version }}"
- language: go
buildImage: golang:1.14
runImage: "{{ .ImagePrefix }}go:{{ .Version }}"
- language: node
buildImage: "{{ .BuildImagePrefix }}node:{{ .Version }}"
runImage: "{{ .ImagePrefix }}node:{{ .Version }}"
- language: python
buildImage: l.gcr.io/google/bazel:latest
runImage: "{{ .ImagePrefix }}python:{{ .Version }}"
- language: csharp
buildImage: "{{ .BuildImagePrefix }}csharp:{{ .Version }}"
runImage: mcr.microsoft.com/dotnet/runtime:2.1
- language: php
buildImage: "{{ .BuildImagePrefix }}php:{{ .Version }}"
runImage: "{{ .ImagePrefix }}php:{{ .Version }}"
- language: ruby
buildImage: "{{ .BuildImagePrefix }}ruby:{{ .Version }}"
runImage: "{{ .ImagePrefix }}ruby:{{ .Version }}"
| # See https://github.com/grpc/test-infra/config/defaults.go for documentation on each field.
defaultPoolLabels:
client: default-client-pool
driver: default-driver-pool
server: default-server-pool
cloneImage: "{{ .InitImagePrefix }}clone:{{ .Version }}"
readyImage: "{{ .InitImagePrefix }}ready:{{ .Version }}"
driverImage: "{{ .ImagePrefix }}driver:{{ .Version }}"
languages:
- language: csharp
buildImage: "{{ .BuildImagePrefix }}csharp:{{ .Version }}"
runImage: mcr.microsoft.com/dotnet/runtime:2.1
- language: cxx
buildImage: l.gcr.io/google/bazel:latest
runImage: "{{ .ImagePrefix }}cxx:{{ .Version }}"
- language: go
buildImage: golang:1.14
runImage: "{{ .ImagePrefix }}go:{{ .Version }}"
- language: java
buildImage: gradle:jdk8
runImage: "{{ .ImagePrefix }}java:{{ .Version }}"
- language: node
buildImage: "{{ .BuildImagePrefix }}node:{{ .Version }}"
runImage: "{{ .ImagePrefix }}node:{{ .Version }}"
- language: php
buildImage: "{{ .BuildImagePrefix }}php:{{ .Version }}"
runImage: "{{ .ImagePrefix }}php:{{ .Version }}"
- language: python
buildImage: l.gcr.io/google/bazel:latest
runImage: "{{ .ImagePrefix }}python:{{ .Version }}"
- language: ruby
buildImage: "{{ .BuildImagePrefix }}ruby:{{ .Version }}"
runImage: "{{ .ImagePrefix }}ruby:{{ .Version }}"
| Order languages alphabetically in default template. | Order languages alphabetically in default template.
| YAML | apache-2.0 | grpc/test-infra,grpc/test-infra |
2623702eb8d31e4641d337df6c53e39fcb205595 | ansible/main.yml | ansible/main.yml | ---
- hosts: all
vars:
cf_cli_version: "6.35.1"
maven_version: "3.5.3"
intellij_version: "2017.3.5"
sts_version: "3.9.2"
eclipse_version: "4.7.2"
docker_compose_version: "1.19.0"
atom_version: "1.20.1"
gradle_version: "4.6"
go_version: "1.10"
compliance_masonry_version: "1.1.2"
bosh_cli_version: "2.0.48"
yq_linux_version: "1.14.0"
terraform_version: "0.11.4"
bosh_bootloader_version: "5.11.6"
postman_version: "6.0.9"
fly_version: "3.9.2"
groovy_version: "2.4.13"
gather_facts: yes
become: yes
roles:
- disable_auto_update
- developer_packages
- git
- atom
- docker_service
- docker_compose
- cf_cli
- maven
- gradle
- intellij
- sts
- unity_desktop
- go
- postman
- gitbook
- compliance_masonry
- gcloud
- newrelic
- bosh
- fly
- groovy
- taurus
| ---
- hosts: all
vars:
cf_cli_version: "6.35.2"
maven_version: "3.5.3"
intellij_version: "2017.3.5"
sts_version: "3.9.2"
eclipse_version: "4.7.2"
docker_compose_version: "1.20.1"
atom_version: "1.20.1"
gradle_version: "4.6"
go_version: "1.10"
compliance_masonry_version: "1.1.2"
bosh_cli_version: "2.0.48"
yq_linux_version: "1.14.0"
terraform_version: "0.11.4"
bosh_bootloader_version: "5.11.6"
postman_version: "6.0.10"
fly_version: "3.9.2"
groovy_version: "2.4.13"
gather_facts: yes
become: yes
roles:
- disable_auto_update
- developer_packages
- git
- atom
- docker_service
- docker_compose
- cf_cli
- maven
- gradle
- intellij
- sts
- unity_desktop
- go
- postman
- gitbook
- compliance_masonry
- gcloud
- newrelic
- bosh
- fly
- groovy
- taurus
| Update cf-cli, docker-compose & postman | Update cf-cli, docker-compose & postman
| YAML | apache-2.0 | cagiti/developer-environment |
68a4b0743815120a53734d4db823684150255078 | packages/gr/graph-trace.yaml | packages/gr/graph-trace.yaml | homepage: ''
changelog-type: markdown
hash: 8beb75c11796d6e7aba1f3cd3bf11e17f7f594663831884f1470a23e7e25fd49
test-bench-deps: {}
maintainer: aaronallen8455@gmail.com
synopsis: Trace the call graph of a program
changelog: |
# Revision history for graph-trace
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
ghc: '>=8.0.0 && <9.4.0'
bytestring: -any
base: '>=4.9 && <5'
syb: -any
containers: -any
ghc-boot: -any
ghc-prim: -any
transformers: -any
random: -any
template-haskell: -any
all-versions:
- 0.1.0.0
author: ''
latest: 0.1.0.0
description-type: haddock
description: |-
A plugin that instruments a program so that running it produces a log which
can be processed into a visual graph using @graph-trace-viz@.
See the [README](https://github.com/aaronallen8455/graph-trace#graph-trace) for details.
license-name: MIT
| homepage: ''
changelog-type: markdown
hash: 6b5453b9ca4852474e66cbbc00b1840bb8730392c5b6fdbf7c61364af715f638
test-bench-deps: {}
maintainer: aaronallen8455@gmail.com
synopsis: Trace the call graph of a program
changelog: |
# Revision history for graph-trace
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
basic-deps:
ghc: '>=8.0.0 && <9.4.0'
bytestring: -any
base: '>=4.9 && <5'
syb: -any
containers: -any
ghc-boot: -any
ghc-prim: -any
transformers: -any
random: -any
template-haskell: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
author: ''
latest: 0.1.0.1
description-type: haddock
description: |-
A plugin that instruments a program so that running it produces a log which
can be processed into a visual graph using @graph-trace-viz@.
See the [README](https://github.com/aaronallen8455/graph-trace#graph-trace) for details.
license-name: MIT
| Update from Hackage at 2022-01-22T23:30:20Z | Update from Hackage at 2022-01-22T23:30:20Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6e08df6fc0afd0c75051ab73803273c4256c37d1 | packages/ht/http-common.yaml | packages/ht/http-common.yaml | homepage: http://research.operationaldynamics.com/projects/http-streams/
changelog-type: ''
hash: cd20ff4cfeb356f667f75c5ca0efce41104157930649ca2afd3bfb036a974ec7
test-bench-deps: {}
maintainer: Andrew Cowie <andrew@operationaldynamics.com>
synopsis: Common types for HTTP clients and servers
changelog: ''
basic-deps:
bytestring: -any
case-insensitive: -any
base: ! '>=4 && <5'
base64-bytestring: -any
unordered-containers: -any
text: -any
network: -any
blaze-builder: -any
mtl: -any
transformers: -any
directory: -any
all-versions:
- '0.7.0.1'
- '0.7.1.1'
- '0.7.2.0'
- '0.8.2.0'
author: Andrew Cowie <andrew@operationaldynamics.com>
latest: '0.8.2.0'
description-type: haddock
description: ! '/Overview/
Base types used by a variety of HTTP clients and servers. See http-streams
"Network.Http.Client" or pipes-http "Pipes.Http.Client" for full
documentation. You can import @Network.Http.Types@ if you like, but both
http-streams and pipes-http re-export this package''s types and functions.'
license-name: BSD3
| homepage: http://research.operationaldynamics.com/projects/http-streams/
changelog-type: ''
hash: cd20ff4cfeb356f667f75c5ca0efce41104157930649ca2afd3bfb036a974ec7
test-bench-deps: {}
maintainer: Andrew Cowie <andrew@operationaldynamics.com>
synopsis: Common types for HTTP clients and servers
changelog: ''
basic-deps:
bytestring: -any
case-insensitive: -any
base: ! '>=4 && <5'
base64-bytestring: -any
unordered-containers: -any
text: -any
network: -any
blaze-builder: -any
mtl: -any
transformers: -any
directory: -any
all-versions:
- '0.8.2.0'
author: Andrew Cowie <andrew@operationaldynamics.com>
latest: '0.8.2.0'
description-type: haddock
description: ! '/Overview/
Base types used by a variety of HTTP clients and servers. See http-streams
"Network.Http.Client" or pipes-http "Pipes.Http.Client" for full
documentation. You can import @Network.Http.Types@ if you like, but both
http-streams and pipes-http re-export this package''s types and functions.'
license-name: BSD3
| Update from Hackage at 2017-05-25T01:36:02Z | Update from Hackage at 2017-05-25T01:36:02Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0cff617c569287d74fb451584354e5d5463eea51 | pubspec.yaml | pubspec.yaml | name: bson
version: 2.0.1
description: Bson library for Dart programming language. BSON, short for Binary JSON, is a binary-encoded serialization of JSON-like documents.
homepage: https://github.com/mongo-dart/bson
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
fixnum: ^1.0.0
decimal: ^2.0.0
rational: ^2.2.0
uuid: ^3.0.0
dev_dependencies:
test: ^1.16.4
lints: ^2.0.0
| name: bson
version: 2.0.1
description: Bson library for Dart programming language. BSON, short for Binary JSON, is a binary-encoded serialization of JSON-like documents.
homepage: https://github.com/mongo-dart/bson
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
fixnum: ^1.0.0
decimal: '>=2.0.0 <2.3.0'
rational: ^2.2.0
uuid: ^3.0.0
dev_dependencies:
test: ^1.16.4
lints: ^2.0.0
| Fix for change of Decimal.pow in decimal-2.3.0 | Fix for change of Decimal.pow in decimal-2.3.0 | YAML | mit | mongo-dart/bson,mongo-dart/bson |
bb27d74d12ebdeabd393515f85a57dcb4f83a63d | metadata/com.github.postapczuk.lalauncher.yml | metadata/com.github.postapczuk.lalauncher.yml | Categories:
- System
License: GPL-2.0-only
WebSite: https://github.com/postapczuk/Light-Android-Launcher
SourceCode: https://github.com/postapczuk/Light-Android-Launcher
AutoName: Light Android Launcher
Summary: Lightweight app launcher
Description: |-
Configurable, super lightweight app launcher with a low memory usage and
small install size.
Inspired by Light Phone, but leaves you access to all apps, by just one
swipe.
There are no trackers, no ads, and no device permissions. There is only
Open Source Code, available on GPLv2 license.
Its a fork of [https://github.com/Collinux/minimalist-launcher Minimalist
Launcher by Collunux]. Created because there is no favourite apps in the
main repo.
RepoType: git
Repo: https://github.com/postapczuk/Light-Android-Launcher
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
subdir: LaLauncher
gradle:
- yes
- versionName: '1.1'
versionCode: 2
commit: '1.1'
subdir: LaLauncher
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.1'
CurrentVersionCode: 2
| Categories:
- System
License: GPL-2.0-only
WebSite: https://github.com/postapczuk/Light-Android-Launcher
SourceCode: https://github.com/postapczuk/Light-Android-Launcher
AutoName: Light Android Launcher
Summary: Lightweight app launcher
Description: |-
Configurable, super lightweight app launcher with a low memory usage and
small install size.
Inspired by Light Phone, but leaves you access to all apps, by just one
swipe.
There are no trackers, no ads, and no device permissions. There is only
Open Source Code, available on GPLv2 license.
Its a fork of [https://github.com/Collinux/minimalist-launcher Minimalist
Launcher by Collunux]. Created because there is no favourite apps in the
main repo.
RepoType: git
Repo: https://github.com/postapczuk/Light-Android-Launcher
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
subdir: LaLauncher
gradle:
- yes
- versionName: '1.1'
versionCode: 2
commit: '1.1'
subdir: LaLauncher
gradle:
- yes
- versionName: '1.2'
versionCode: 3
commit: '1.2'
subdir: LaLauncher
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.2'
CurrentVersionCode: 3
| Update Light Android Launcher to 1.2 (3) | Update Light Android Launcher to 1.2 (3)
| YAML | agpl-3.0 | f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata |
2ce5a88f0aaa7538a66b1c0d481ecdad106da5f1 | recipes/setuptools/meta.yaml | recipes/setuptools/meta.yaml | {% set name = "setuptools" %}
{% set version = "36.2.2" %}
package:
name: setuptools
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: 38156edc9b9b21f8926821d3f994abf931a50c1a2a6a2bab4d195b7d866d9bb0
patches:
# Modify setuptools to fail if used in conda build (encourage people to add all deps in meta.yaml).
- nodownload.patch
build:
number: 0
entry_points:
- easy_install = setuptools.command.easy_install:main
requirements:
build:
- python
- certifi
run:
- python
- certifi
test:
commands:
- easy_install --help
imports:
- setuptools
- easy_install
- pkg_resources
about:
home: https://github.com/pypa/setuptools
license: MIT
license_file: LICENSE
license_family: MIT
summary: Download, build, install, upgrade, and uninstall Python packages
description: |
Setuptools is a fully-featured, actively-maintained, and stable library
designed to facilitate packaging Python projects.
doc_url: http://pythonhosted.org/setuptools/
dev_url: https://github.com/pypa/setuptools
| {% set name = "setuptools" %}
{% set version = "36.2.3" %}
package:
name: setuptools
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: d8474d5687241b0c90b8a1e8949ce5f3f4a9ee6a11fde17fbe9c93bd271cee71
patches:
# Modify setuptools to fail if used in conda build (encourage people to add all deps in meta.yaml).
- nodownload.patch
build:
number: 0
entry_points:
- easy_install = setuptools.command.easy_install:main
requirements:
build:
- python
- certifi
run:
- python
- certifi
test:
commands:
- easy_install --help
imports:
- setuptools
- easy_install
- pkg_resources
about:
home: https://github.com/pypa/setuptools
license: MIT
license_file: LICENSE
license_family: MIT
summary: Download, build, install, upgrade, and uninstall Python packages
description: |
Setuptools is a fully-featured, actively-maintained, and stable library
designed to facilitate packaging Python projects.
doc_url: http://pythonhosted.org/setuptools/
dev_url: https://github.com/pypa/setuptools
| Update setuptools to version 36.2.3 | Update setuptools to version 36.2.3
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
2c0c47b1a02569cd50db26f5cdbf41796b18e460 | _config_prod.yml | _config_prod.yml | environment: production
baseurl: http://cppsamples.com
highlighter: pygments
exclude: ['README.md', 'LICENSE.txt', 'Gemfile']
gems:
- jekyll-compass
| environment: production
baseurl: http://www.cppsamples.com
highlighter: pygments
exclude: ['README.md', 'LICENSE.txt', 'Gemfile']
gems:
- jekyll-compass
| Add www. to base URL | Add www. to base URL
| YAML | mit | sftrabbit/CppSamples,sftrabbit/CppSamples,sftrabbit/CppSamples,sftrabbit/CppSamples-Web,sftrabbit/CppSamples-Web,sftrabbit/CppSamples-Web |
8135638c58a33d33d30637c05df82718954ea5b1 | roles/ceph-mds/meta/main.yml | roles/ceph-mds/meta/main.yml | ---
galaxy_info:
author: Sébastien Han
description: Installs Ceph Metadata
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
categories:
- system
dependencies: []
| ---
galaxy_info:
author: Sébastien Han
description: Installs Ceph Metadata
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
- name: opensuse
versions:
- 42.3
categories:
- system
dependencies: []
| Add support for openSUSE Leap distributions | ceph-mds: Add support for openSUSE Leap distributions
Add support for openSUSE Leap distributions
Signed-off-by: Markos Chandras <33d8b43ece1558bd62b361ce5e954c5d9a97a7a2@suse.de>
| YAML | apache-2.0 | fgal/ceph-ansible,ceph/ceph-ansible,fgal/ceph-ansible,font/ceph-ansible,travmi/ceph-ansible,travmi/ceph-ansible,ceph/ceph-ansible,font/ceph-ansible |
28337ecdb0ff98075b848230c60f8288fdd8c07b | roles/zuul/defaults/main.yml | roles/zuul/defaults/main.yml | zuul_git_repo_url: https://git.openstack.org/openstack-infra/zuul
zuul_git_branch: master
zuul_venv_dir: /opt/venvs/zuul
zuul_allow_restart_services: no
zuul_gearman_server: 127.0.0.1
zuul_gearman_port: 4730
zuul_gearman_server_start: true
zuul_gearman_server_log_config: /etc/zuul/gearman-logging.conf
zuul_gearman_server_listen_address: 127.0.0.1
zuul_statsd_enable: no
zuul_statsd_host: 127.0.0.1
zuul_statsd_port: 8125
zuul_connections:
gerrit:
driver: gerrit
port: 29418
server: 127.0.0.1
sshkey: /var/lib/zuul/.ssh/id_rsa
user: zuul
| zuul_git_repo_url: https://github.com/BonnyCI/zuul
zuul_git_branch: github-integration
zuul_venv_dir: /opt/venvs/zuul
zuul_allow_restart_services: no
zuul_gearman_server: 127.0.0.1
zuul_gearman_port: 4730
zuul_gearman_server_start: true
zuul_gearman_server_log_config: /etc/zuul/gearman-logging.conf
zuul_gearman_server_listen_address: 127.0.0.1
zuul_statsd_enable: no
zuul_statsd_host: 127.0.0.1
zuul_statsd_port: 8125
zuul_connections:
gerrit:
driver: gerrit
port: 29418
server: 127.0.0.1
sshkey: /var/lib/zuul/.ssh/id_rsa
user: zuul
| Install forked version of zuul | Install forked version of zuul
Install our branch of zuul with a stack of github-integration patches
applied.
| YAML | apache-2.0 | SpamapS/hoist,BonnyCI/hoist,BonnyCI/hoist,jamielennox/hoist,jamielennox/hoist,SpamapS/hoist |
620ec739d8f9a91f77d4f88210c452725132e25e | group_vars/international-production/app-environment.yml | group_vars/international-production/app-environment.yml |
# Environment
app_environment_variables:
- { option: DS_ENVIRONMENT, value: "{{ app_environment }}" }
- { option: DS_DB_MASTER_NAME, value: "{{ app_user }}" }
- { option: DS_DB_MASTER_USER, value: "dsintl" }
- { option: DS_DB_MASTER_PASS, value: "{{ app_db_password }}" }
- { option: DS_DB_MASTER_HOST, value: "drupal-intl.c9ajz690mens.us-east-1.rds.amazonaws.com" }
- { option: DS_HOSTNAME, value: "{{ app_host }}" }
- { option: DS_INSECURE_PORT, value: 80 }
- { option: DS_REDIS_HOST, value: 127.0.0.1 }
- { option: DS_REDIS_PORT, value: 6379 }
- { option: DS_APACHESOLR_HOST, value: 127.0.0.1 }
- { option: DS_APACHESOLR_PORT, value: "{{ solr_port }}" }
- { option: DS_APACHESOLR_READ_ONLY, value: 0 }
|
# Environment
app_environment_variables:
- { option: DS_ENVIRONMENT, value: "{{ app_environment }}" }
- { option: DS_DB_MASTER_USER, value: "dsintl" }
- { option: DS_DB_MASTER_PASS, value: "{{ app_db_password }}" }
- { option: DS_DB_MASTER_HOST, value: "drupal-intl.c9ajz690mens.us-east-1.rds.amazonaws.com" }
- { option: DS_HOSTNAME, value: "{{ app_host }}" }
- { option: DS_INSECURE_PORT, value: 80 }
- { option: DS_REDIS_HOST, value: 127.0.0.1 }
- { option: DS_REDIS_PORT, value: 6379 }
- { option: DS_APACHESOLR_HOST, value: 127.0.0.1 }
- { option: DS_APACHESOLR_PORT, value: "{{ solr_port }}" }
- { option: DS_APACHESOLR_READ_ONLY, value: 0 }
| Remove $DS_DB_MASTER_NAME var on intl prod. | Remove $DS_DB_MASTER_NAME var on intl prod.
So it gets overriden by local DB setting.
| YAML | mit | DoSomething/tower,DoSomething/tower,DoSomething/tower |
a3acd3a0bab4b9d9d358bb714e22c7a71191a304 | cmd/registry/config-example.yml | cmd/registry/config-example.yml | version: 0.1
log:
fields:
service: registry
storage:
cache:
layerinfo: inmemory
filesystem:
rootdirectory: /var/lib/registry
maintenance:
uploadpurging:
enabled: true
http:
addr: :5000
| version: 0.1
log:
fields:
service: registry
storage:
cache:
layerinfo: inmemory
filesystem:
rootdirectory: /var/lib/registry
http:
addr: :5000
| Fix earlier commit to enable upload purging in example config file | Fix earlier commit to enable upload purging in example config file
Rather than setting this to "true", the whole section should be removed.
Signed-off-by: Aaron Lehmann <8ecfc6017a87905413dcd7d63696a2a4c351b604@docker.com>
| YAML | apache-2.0 | cezarsa/distribution,genedock/distribution,thaJeztah/docker.github.io,rillig/docker.github.io,jzwlqx/distribution,amitshukla/distribution,johnstep/docker.github.io,menglingwei/denverdino.github.io,zhaytee/distribution,noxiouz/distribution,RichardScothern/distribution,johnstep/docker.github.io,menglingwei/denverdino.github.io,schu/distribution,xiekeyang/distribution,rbarlow/distribution,sallyom/distribution,BrickXu/distribution,aduermael/docker.github.io,deis/distribution,mattmoor/distribution,zerosign/distribution,avinson/distribution,ChenLingPeng/distribution,jzwlqx/denverdino.github.io,13W/distribution,Tiesheng/distribution,nevermosby/distribution,lindenlab/distribution,jzwlqx/denverdino.github.io,rodacom/docker-hub,atyenoria/distribution,miminar/distribution,rbarlow/distribution,miminar/distribution,bxy09/distribution,runcom/distribution,mattmoor/distribution,denverdino/denverdino.github.io,johnstep/docker.github.io,sthapaun/distribution,mbentley/distribution,alexisbellido/docker.github.io,docker/docker.github.io,nwt/distribution,arneluehrs/distribution,Tiesheng/distribution,thaJeztah/distribution,jzwlqx/denverdino.github.io,armbuilds/distribution,atyenoria/distribution,harrisonfeng/distribution,kmala/distribution,lorieri/distribution,LuisBosquez/docker.github.io,bigsurge/distribution,denverdino/distribution-stevvooe,shubheksha/docker.github.io,londoncalling/docker.github.io,menglingwei/denverdino.github.io,deis/distribution,JimGalasyn/docker.github.io,codefresh-io/cf-distribution,shubheksha/docker.github.io,rochacon/distribution,anweiss/docker.github.io,sadlil/distribution,moxiegirl/distribution,bpradipt/distribution,iskradelta/distribution,jackpgriffin/distribution,gdevillele/docker.github.io,shin-/docker.github.io,docker/docker.github.io,denverdino/distribution-stevvooe,yeghishe/distribution,denverdino/docker.github.io,manoj535/distribution,troy0820/docker.github.io,jackpgriffin/distribution,joaofnfernandes/docker.github.io,lcarstensen/distribution,aduermael/docker.github.io,humble00/distribution,rochacon/distribution,jzwlqx/denverdino.github.io,spacexnice/distribution,londoncalling/docker.github.io,mikebrow/distribution,BradleyA/distribution,joeuo/docker.github.io,championv/distribution,calavera/distribution,mbentley/distribution,imranraja85/distribution,aaronlehmann/distribution,BrickXu/distribution,estesp/distribution,gdevillele/docker.github.io,aybabtme/distribution,BSWANG/denverdino.github.io,docker-zh/docker.github.io,docker-zh/docker.github.io,denverdino/denverdino.github.io,bdwill/docker.github.io,iskradelta/distribution,docker/docker.github.io,zerosign/distribution,konnase/distribution,mikebrow/distribution,troy0820/docker.github.io,tian-xiaobo/distribution,sanscontext/docker.github.io,liubin/distribution,shin-/docker.github.io,docker-zh/docker.github.io,jwhonce/distribution,BradleyA/distribution,nateww/distribution,tdooner/distribution,duglin/distribution,BSWANG/denverdino.github.io,tdooner/distribution,sadlil/distribution,joeuo/docker.github.io,alexisbellido/docker.github.io,konstruktoid/distribution,CodeJuan/distribution,aduermael/docker.github.io,sebrandon1/distribution,dmcgowan/distribution,troy0820/docker.github.io,sthapaun/distribution,konnase/distribution,tschoots/distribution,anweiss/docker.github.io,wangmingshuai/distribution,bdwill/docker.github.io,LouisKottmann/distribution,bsmr-docker/distribution,kmala/distribution,phiroict/docker,tt/distribution,ChenLingPeng/distribution,bxy09/distribution,RyanDeng/distribution,jramseye/distribution,jordimassaguerpla/distribution,bdwill/docker.github.io,BSWANG/denverdino.github.io,13W/distribution,aaronlehmann/distribution,docker-zh/docker.github.io,denverdino/docker.github.io,shin-/docker.github.io,denverdino/denverdino.github.io,bsmr-docker/distribution,adambrett-forks/distribution,LuisBosquez/docker.github.io,mattrgreen/distribution,dobril-stanga/distribution,moxiegirl/distribution,bdwill/docker.github.io,humble00/distribution,thaJeztah/docker.github.io,LuisBosquez/docker.github.io,beni55/distribution,wangmingshuai/distribution,anweiss/docker.github.io,joeuo/docker.github.io,BrianBland/distribution,danix800/docker.github.io,codefresh-io/cf-distribution,sergeyfd/distribution,stevvooe/distribution,denverdino/docker.github.io,higebu/distribution,joaofnfernandes/docker.github.io,pdevine/distribution,lorieri/distribution,Seb-Solon/distribution,docker/distribution,danix800/docker.github.io,arneluehrs/distribution,konstruktoid/distribution,rhoml/distribution,londoncalling/docker.github.io,CodeJuan/distribution,tian-xiaobo/distribution,JimGalasyn/docker.github.io,JimGalasyn/docker.github.io,LouisKottmann/distribution,schu/distribution,aprajshekhar/distribution,lcarstensen/distribution,aduermael/docker.github.io,johnstep/docker.github.io,adambrett-forks/distribution,RichardScothern/distribution,jordimassaguerpla/distribution,gavioto/distribution,harrisonfeng/distribution,huamai-io/distribution,shyr/distribution,cezarsa/distribution,vdemeester/distribution,thaJeztah/docker.github.io,shubheksha/docker.github.io,jlhawn/distribution,phiroict/docker,yeghishe/distribution,RaviTezu/distribution,linearregression/distribution,jrjang/distribution,docker/docker.github.io,baloo/distribution,nevermosby/distribution,alexisbellido/docker.github.io,higebu/distribution,joeuo/docker.github.io,thelinuxkid/distribution,menglingwei/denverdino.github.io,gdevillele/docker.github.io,jzwlqx/denverdino.github.io,nwt/distribution,jwhonce/distribution,arvindkandhare/distribution,jhicks-camgian/distribution,joeuo/docker.github.io,sanscontext/docker.github.io,shyr/distribution,jhicks-camgian/distribution,phiroict/docker,yuwaMSFT2/distribution,danix800/docker.github.io,noxiouz/distribution,LuisBosquez/docker.github.io,sanscontext/docker.github.io,manoj535/distribution,AoJ/distribution,rillig/docker.github.io,BSWANG/denverdino.github.io,avinson/distribution,harche/distribution,joaofnfernandes/docker.github.io,xiekeyang/distribution,sanscontext/docker.github.io,denverdino/docker.github.io,tt/distribution,denverdino/distribution,genedock/distribution,BSWANG/denverdino.github.io,zhaytee/distribution,vdemeester/distribution,beni55/distribution,jonboulle/distribution,calavera/distribution,anweiss/docker.github.io,shubheksha/docker.github.io,djenriquez/distribution,sallyom/distribution,n1tr0g/distribution,djenriquez/distribution,dobril-stanga/distribution,arvindkandhare/distribution,BrianBland/distribution,n1tr0g/distribution,londoncalling/docker.github.io,paulczar/distribution,paulczar/distribution,alexisbellido/docker.github.io,alexisbellido/docker.github.io,bdwill/docker.github.io,tschoots/distribution,yuwaMSFT2/distribution,denverdino/denverdino.github.io,AoJ/distribution,joaofnfernandes/docker.github.io,endophage/distribution,londoncalling/docker.github.io,jrjang/distribution,duglin/distribution,spacexnice/distribution,phiroict/docker,shin-/docker.github.io,rillig/docker.github.io,rhoml/distribution,armbuilds/distribution,gavioto/distribution,rillig/docker.github.io,Seb-Solon/distribution,andrewnguyen/distribution,sanscontext/docker.github.io,RyanDeng/distribution,thaJeztah/docker.github.io,gdevillele/docker.github.io,dmcgowan/distribution,shin-/docker.github.io,jramseye/distribution,baloo/distribution,shubheksha/docker.github.io,johnstep/docker.github.io,lindenlab/distribution,endophage/distribution,jzwlqx/distribution,sergeyfd/distribution,JimGalasyn/docker.github.io,hopkings2008/distribution,liubin/distribution,phiroict/docker,nateww/distribution,dave-tucker/distribution,thelinuxkid/distribution,rodacom/docker-hub,jlhawn/distribution,docker/docker.github.io,jonboulle/distribution,aprajshekhar/distribution,jmitchell/distribution,amitshukla/distribution,imranraja85/distribution,harche/distribution,docker/distribution,huamai-io/distribution,jmitchell/distribution,RaviTezu/distribution,mattrgreen/distribution,cyli/distribution,denverdino/distribution,anweiss/docker.github.io,aybabtme/distribution,menglingwei/denverdino.github.io,linearregression/distribution,estesp/distribution,denverdino/docker.github.io,runcom/distribution,troy0820/docker.github.io,LuisBosquez/docker.github.io,danix800/docker.github.io,denverdino/denverdino.github.io,JimGalasyn/docker.github.io,thaJeztah/distribution,joaofnfernandes/docker.github.io,docker-zh/docker.github.io,andrewnguyen/distribution,pdevine/distribution,stevvooe/distribution,gdevillele/docker.github.io,hopkings2008/distribution,bpradipt/distribution,dave-tucker/distribution,bigsurge/distribution,sebrandon1/distribution,thaJeztah/docker.github.io,cyli/distribution,championv/distribution |
af9071bb7dd06b5c7ea731b2204571c3aa7c30af | roles/common/tasks/main.yml | roles/common/tasks/main.yml | - copy:
src: hosts
dest: /etc/hosts
- selinux:
state: disabled
- shell: dnf -y copr enable seeitcoming/rcm
when: ansible_distribution == 'Fedora'
- dnf:
name: rcm
state: latest
when: ansible_distribution == 'Fedora'
- dnf: name={{ item }} state=latest
with_items:
- python3
- python3-pip
- python
- python-pip
- golang
- ghc
- cabal-install
- zsh
- tmux
- screen
- vim
- emacs
- git
- subversion
- mercurial
- lynx
- links
- rubygem-rake
- bmake
- shake
- ninja-build
- docker
- ansible
- gawk
- nmap
- bind-utils
- tig
- htop
- cowsay
- sl
- python-scikit-learn
- python3-scikit-learn
- h5py
- python3-h5py
- mecab
- mecab-devel
- mecab-ipadic
- python-mecab
- python-nltk
- python3-nltk
| - copy:
src: hosts
dest: /etc/hosts
- shell: "getent hosts {{ ansible_default_ipv4.address }} | awk '{ print $3 }'"
register: hostname
- debug:
var: hostname.stdout
- hostname:
name: "{{ hostname.stdout }}"
- selinux:
state: disabled
- shell: dnf -y copr enable seeitcoming/rcm
when: ansible_distribution == 'Fedora'
- dnf:
name: rcm
state: latest
when: ansible_distribution == 'Fedora'
- dnf: name={{ item }} state=latest
with_items:
- python3
- python3-pip
- python
- python-pip
- golang
- ghc
- cabal-install
- zsh
- tmux
- screen
- vim
- emacs
- git
- subversion
- mercurial
- lynx
- links
- rubygem-rake
- bmake
- shake
- ninja-build
- docker
- ansible
- gawk
- nmap
- bind-utils
- tig
- htop
- cowsay
- sl
- python-scikit-learn
- python3-scikit-learn
- h5py
- python3-h5py
- mecab
- mecab-devel
- mecab-ipadic
- python-mecab
- python-nltk
- python3-nltk
| Set hostname based on /etc/hosts | Set hostname based on /etc/hosts
| YAML | unlicense | ytoyama/coin-nodes |
37030792fb0396292771be7bba861c8b9705c986 | roles/elk/tasks/elastic.yml | roles/elk/tasks/elastic.yml | - name: Install elasticsearch
yum:
name: elasticsearch
state: present
- name: Create datadirectory
file:
path: /data/elasticsearch
state: directory
owner: elasticsearch
mode: 770
- name: Make sure java 8 is used
lineinfile:
dest: /etc/sysconfig/elasticsearch
line: 'JAVA_HOME=/usr/lib/jvm/java-1.8.0'
state: present
- name: Install elasticsearch configuration file
template:
src: "{{ item }}.j2"
dest: "/etc/elasticsearch/{{ item }}"
with_items:
- elasticsearch.yml
notify: restart elasticsearch
- name: Enable and start elasticsearch service
service:
name: elasticsearch
state: started
enabled: yes
| - name: Install elasticsearch
yum:
name: elasticsearch
state: present
- name: Create datadirectory
file:
path: /data/elasticsearch
state: directory
owner: elasticsearch
mode: 770
- name: Make sure java 8 is used
lineinfile:
dest: /etc/sysconfig/elasticsearch
line: 'JAVA_HOME=/usr/lib/jvm/jre-1.8.0/'
state: present
- name: Install elasticsearch configuration file
template:
src: "{{ item }}.j2"
dest: "/etc/elasticsearch/{{ item }}"
with_items:
- elasticsearch.yml
notify: restart elasticsearch
- name: Enable and start elasticsearch service
service:
name: elasticsearch
state: started
enabled: yes
| Add correct path to Java for Elasticsearch | ELK: Add correct path to Java for Elasticsearch
| YAML | apache-2.0 | OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy,OpenConext/OpenConext-deploy |
dd8e3b94b4d7f9291cf98e5529173abfa7258d45 | deploy/staging/prison-visits-public-secrets.yaml | deploy/staging/prison-visits-public-secrets.yaml |