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
|
---|---|---|---|---|---|---|---|---|---|
c362c5b2ce3145514564dda0db2398abdcf90936
|
.circleci/config.yml
|
.circleci/config.yml
|
jobs:
build:
working_directory: ~/CriminalContact
docker:
- image: circleci/node:10-browsers
branches:
only:
- master
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: yarn install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: Build Electron
command: yarn run build:electron
- run:
name: Build Angular
command: yarn run build:ng
|
jobs:
build:
working_directory: ~/CriminalContact
docker:
- image: circleci/node:10-browsers
branches:
only:
- master
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: yarn install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: Build Electron
command: yarn run build:electron
- run:
name: Build Angular
command: yarn run build:ng
- store_artifacts:
path: /build
|
Store build artefacts in circleci
|
Store build artefacts in circleci
|
YAML
|
apache-2.0
|
luminousuk/CriminalContact,luminousuk/CriminalContact,luminousuk/CriminalContact
|
8f6a9928fd119b3b0334db532a098cab0b0e1642
|
.circleci/config.yml
|
.circleci/config.yml
|
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0@sha256:ce542ad74740970bbe42c8056f59e58f2c4dfa43b9f90b455319581fc990a02c
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
|
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0@sha256:dec5ac94030a5c343c81b021ca5c68cfcd36895d49b9a1960ba714ef11892799
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
|
Update circleci/python:3.7.0 Docker digest to dec5ac
|
Update circleci/python:3.7.0 Docker digest to dec5ac
|
YAML
|
bsd-3-clause
|
kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler
|
8ffb5238e675814116d3ff177919ba816b0cb005
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
gcc_5_python27:
docker:
- image: gcc:5
steps:
- checkout
- run:
name: test with python2.7
command: |
python ./waf configure
python ./waf --check
- run:
name: build with python2.7
command: |
python ./waf build
python ./waf install
gcc_5_python34:
docker:
- image: gcc:5
steps:
- checkout
- run:
name: test with python3.4
command: |
apt update -y
apt install -y python3
python3 ./waf configure
python3 ./waf --check
- run:
name: build with python3.4
command: |
python3 ./waf build
python3 ./waf install
workflows:
version: 2
build_and_test:
jobs:
- gcc_5_python27
- gcc_5_python34
|
version: 2
jobs:
gcc5_python27:
docker:
- image: gcc:5
steps:
- checkout
- run:
name: test with python2.7
command: |
python ./waf configure
python ./waf --check
- run:
name: build with python2.7
command: |
python ./waf build
python ./waf install
gcc5_python34:
docker:
- image: gcc:5
steps:
- checkout
- run:
name: test with python3.4
command: |
apt update -y
apt install -y python3
python3 ./waf configure
python3 ./waf --check
- run:
name: build with python3.4
command: |
python3 ./waf build
python3 ./waf install
gcc5_full:
docker:
- image: gcc:5
steps:
- checkout
- run:
name: build msgpack
command: |
wget https://github.com/msgpack/msgpack-c/releases/download/cpp-0.5.9/msgpack-0.5.9.tar.gz
tar zxvf msgpack-0.5.9.tar.gz && cd msgpack-0.5.9
./configure && make && make install
- run:
name: build fcgi
command: |
# apt update -y
# apt install git
# git clone https://github.com/toshic/libfcgi.git
# cd libfcgi && ./configure && make && make install
echo muri
- run:
name: build mysql
command: |
echo 'noop'
- run:
name: build postgresql
command: |
apt update -y
apt install -y postgresql postgresql-server-dev-all
- run:
name: build pficommon
command: |
CPPFLAGS="-I/usr/include/postgresql" ./waf configure --disable-fcgi
./waf build
./waf install
workflows:
version: 2
build_and_test:
jobs:
- gcc5_python27
- gcc5_python34
|
Add the job for bulding pficommon with (almost) all extensions
|
Add the job for bulding pficommon with (almost) all extensions
|
YAML
|
bsd-3-clause
|
retrieva/pficommon,retrieva/pficommon,retrieva/pficommon,pfi/pficommon,retrieva/pficommon,retrieva/pficommon,pfi/pficommon,pfi/pficommon,pfi/pficommon
|
00d449a6d6cfd00a1508d2f9f86cd71f1d9dd862
|
.zuul.yml
|
.zuul.yml
|
ui: mocha-bdd
concurrency: 1
browsers:
- name: chrome
version: -2..latest
- name: firefox
version: latest
version: -2..latest
- name: safari
version: 5..latest
- name: ie
version: 8..latest
|
ui: mocha-bdd
concurrency: 1
browsers:
- name: chrome
version: -1..latest
- name: firefox
version: latest
version: -1..latest
- name: safari
version: 5..latest
- name: ie
version: 8..latest
|
Test fewer versions of Chrome and Firefox
|
Test fewer versions of Chrome and Firefox
|
YAML
|
apache-2.0
|
treasure-data/td-js-sdk,treasure-data/td-js-sdk
|
fb81938bf950d155dda9675e66845f1800dab8d4
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2.1
orbs:
node: circleci/[email protected]
defaults: &defaults
working_directory: ~/repo
docker:
- image: circleci/node:latest
jobs:
test:
<<: *defaults
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm test
- persist_to_workspace:
root: ~/repo
paths: .
build:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- run: npm prepare
- persist_to_workspace:
root: ~/repo
paths: .
publish:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- run:
name: Authenticate with registry
command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/repo/.npmrc
- run:
name: Publish package
command: npm publish
- run: yarn chromatic
workflows:
run:
jobs:
- test
- build:
requires:
- test
- publish:
filters:
tags:
only: /^v.*/
branches:
only:
- master
requires:
- build
|
version: 2.1
orbs:
node: circleci/[email protected]
defaults: &defaults
working_directory: ~/repo
docker:
- image: circleci/node:latest
jobs:
test:
<<: *defaults
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: yarn test
- persist_to_workspace:
root: ~/repo
paths: .
build:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- run: yarn prepare
- persist_to_workspace:
root: ~/repo
paths: .
publish:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- run:
name: Authenticate with registry
command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/repo/.npmrc
- run:
name: Publish package
command: npm publish
- run: yarn chromatic
workflows:
run:
jobs:
- test
- build:
requires:
- test
- publish:
filters:
tags:
only: /^v.*/
branches:
only:
- master
requires:
- build
|
Revert "change commands on circle ci to use npm instead of yarn"
|
Revert "change commands on circle ci to use npm instead of yarn"
This reverts commit 78425f98b12ef982c390498449702d47b0486261.
|
YAML
|
mit
|
moosend/mooskin-ui,moosend/mooskin-ui
|
c2bf78ad53886a9bc28a3fdddad85b0fa56df3d1
|
_apptpl/.travis.yml
|
_apptpl/.travis.yml
|
sudo: required
language: node_js
node_js:
- "node"
branches:
only:
- master
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y fontforge openjdk-8-jre libbatik-java
install:
- npm install -g ttf2eot ttf2svg bower grunt-cli
- npm install
- bower install
script:
- grunt build_deploy
deploy:
local_dir: _dist/
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: master
|
sudo: required
language: node_js
node_js:
- "node"
branches:
only:
- master
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y fontforge openjdk-8-jre libbatik-java
install:
- npm install -g ttf2eot ttf2svg bower grunt-cli
- npm install
- bower install
script:
- grunt build_deploy
deploy:
local_dir: _release/
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: master
|
Align the output folder with app.json
|
Align the output folder with app.json
|
YAML
|
mit
|
julianxhokaxhiu/mockups-creator,julianxhokaxhiu/mockups-creator
|
f6034fbeacc5949d3600b95ec718182a81dfb58a
|
roles/sublimetext/tasks/main.yml
|
roles/sublimetext/tasks/main.yml
|
---
- name: Install Sublime Text 3
homebrew_cask:
name: sublime-text3
state: present
- name: Set Sublime Text 3 general settings
template:
src: Preferences.sublime-settings.j2
dest: "~/Library/Application Support/Sublime Text 3/Packages/User/Preferences.sublime-settings"
- name: Set Sublime Text 3 PHP settings
template:
src: PHP.sublime-settings.j2
dest: "~/Library/Application Support/Sublime Text 3/Packages/User/PHP.sublime-settings"
- name: Set Sublime Text 3 JS settings
template:
src: Javascript.sublime-settings.j2
dest: "~/Library/Application Support/Sublime Text 3/Packages/User/Javascript.sublime-settings"
- name: Set Sublime Text 3 CSS settings
template:
src: CSS.sublime-settings.j2
dest: "~/Library/Application Support/Sublime Text 3/Packages/User/CSS.sublime-settings"
|
---
- name: Install Sublime Text 3
homebrew_cask:
name: sublime-text3
state: present
- name: "Make sure Sublime Text preference folder exists"
file:
path: "~/Library/Application Support/Sublime Text 3/Packages/User"
state: directory
- name: Set Sublime Text 3 general settings
template:
src: Preferences.sublime-settings.j2
dest: "~/Library/Application Support/Sublime Text 3/Packages/User/Preferences.sublime-settings"
- name: Set Sublime Text 3 PHP settings
template:
src: PHP.sublime-settings.j2
dest: "~/Library/Application Support/Sublime Text 3/Packages/User/PHP.sublime-settings"
- name: Set Sublime Text 3 JS settings
template:
src: Javascript.sublime-settings.j2
dest: "~/Library/Application Support/Sublime Text 3/Packages/User/Javascript.sublime-settings"
- name: Set Sublime Text 3 CSS settings
template:
src: CSS.sublime-settings.j2
dest: "~/Library/Application Support/Sublime Text 3/Packages/User/CSS.sublime-settings"
|
Make sure Sublime Text preference folder exists
|
Make sure Sublime Text preference folder exists
|
YAML
|
mit
|
kevinbungeneers/MacStrap,kevinbungeneers/MacStrap
|
bf4e76f1677a1036eb4a1aed930fe547dad409e0
|
packages/ea/easytensor.yaml
|
packages/ea/easytensor.yaml
|
homepage: https://github.com/achirkin/easytensor#readme
changelog-type: ''
hash: a7a332400fa3b3e9c1ce14831a57e5b80c944df765a4a333fda67c5d7716e068
test-bench-deps:
easytensor: -any
Cabal: ! '>=1.20'
base: -any
time: -any
dimensions: -any
QuickCheck: -any
maintainer: [email protected]
synopsis: Pure, type-indexed haskell vector, matrix, and tensor library.
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
ghc-prim: ! '>=0.5'
dimensions: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.3.0.0'
- '0.3.1.0'
- '0.3.2.0'
author: Artem Chirkin
latest: '0.3.2.0'
description-type: haddock
description: ! 'Pure, type-indexed haskell vector, matrix, and tensor library.
Features dimensionality type-checking for all operations.
Generic n-dimensional versions are implemented using low-level prim ops.
Allows ad-hoc replacement with fixed low-dimensionality vectors and matrices without
changing user interface.'
license-name: BSD3
|
homepage: https://github.com/achirkin/easytensor#readme
changelog-type: ''
hash: 4545eacd39125dcf39b6b80dfd49b420c782868eacd0ac2aa3d8dd9bffaf6738
test-bench-deps:
easytensor: -any
Cabal: ! '>=1.20'
base: -any
time: -any
dimensions: -any
QuickCheck: -any
maintainer: [email protected]
synopsis: Pure, type-indexed haskell vector, matrix, and tensor library.
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
ghc-prim: ! '>=0.5'
dimensions: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.3.0.0'
- '0.3.1.0'
- '0.4.0.0'
author: Artem Chirkin
latest: '0.4.0.0'
description-type: haddock
description: ! 'Pure, type-indexed haskell vector, matrix, and tensor library.
Features dimensionality type-checking for all operations.
Generic n-dimensional versions are implemented using low-level prim ops.
Allows ad-hoc replacement with fixed low-dimensionality vectors and matrices without
changing user interface.'
license-name: BSD3
|
Update from Hackage at 2017-11-03T10:00:45Z
|
Update from Hackage at 2017-11-03T10:00:45Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
1b92111cdf6b70b789b43f95f5a8aa877020c3b6
|
packages/ht/http-trace.yaml
|
packages/ht/http-trace.yaml
|
homepage: https://github.com/sigrlami/http-trace#readme
changelog-type: ''
hash: 42b763ceae10bc7b9e08ebd392498bc242b3804f248a37cf43a9f13234126f59
test-bench-deps: {}
maintainer: [email protected]
synopsis: Tracking http redirects
changelog: ''
basic-deps:
MissingH: -any
pcre-heavy: ! '>=1.0.0.0'
base: ! '>=4.7 && <5'
text: -any
curl: ! '>=1.3.8'
http-trace: -any
transformers: -any
template-haskell: -any
safe: ! '>=0.3.9'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
author: Sergey Bushnyak
latest: '0.1.1.0'
description-type: haddock
description: Tracking http redirects for supplied url
license-name: MIT
|
homepage: https://github.com/sigrlami/http-trace#readme
changelog-type: ''
hash: beee71b58a19cc4a13dea574bd9645315f8896a1ade15f38e005a3f945e769ef
test-bench-deps: {}
maintainer: [email protected]
synopsis: Tracking http redirects
changelog: ''
basic-deps:
MissingH: -any
pcre-heavy: ! '>=1.0.0.0'
base: ! '>=4.7 && <5'
text: -any
curl: ! '>=1.3.8'
http-trace: -any
transformers: -any
template-haskell: -any
safe: ! '>=0.3.9'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.1.1'
author: Sergey Bushnyak
latest: '0.1.1.1'
description-type: haddock
description: Tracking http redirects for supplied url
license-name: MIT
|
Update from Hackage at 2016-06-20T21:42:59+0000
|
Update from Hackage at 2016-06-20T21:42:59+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
19ad2d5832ac96153d4a74dd9d60a8136047807e
|
html/changelogs/Fayrik-TheNanoingFixes.yml
|
html/changelogs/Fayrik-TheNanoingFixes.yml
|
author: Fayrik
delete-after: True
changes:
- tweak: "Refactored all NanoUI interfaces to use a more universal proc."
- bugfix: "Removed automatic updates on atmospheric pumps, canisters and tanks, making them respond to button clicks much faster."
|
author: Fayrik
delete-after: True
changes:
- tweak: "Canisters now automatically close their valve when air tanks are removed from them."
- tweak: "Refactored all NanoUI interfaces to use a more universal proc."
- bugfix: "Removed automatic updates on atmospheric pumps, canisters and tanks, making them respond to button clicks much faster."
|
STOP TRYING TO MAKE STEALTH CHANGES, FAYRIK
|
STOP TRYING TO MAKE STEALTH CHANGES, FAYRIK
|
YAML
|
agpl-3.0
|
Bawhoppen/-tg-station,Fox-McCloud/-tg-station,Tokiko1/tgstation,Mark9013100/tgstation-m9,AlexanderUlanH/-tg-station,XDTM/tgstation,Time-Green/-tg-station-yog-rebase,Super3222/yogstation,ChangelingRain/-tg-station,infinitystation/-tg-station,lordpidey/-tg-station,Buggy123/-tg-station,Expletive/tgstation,Tacolizard/tgstation,neersighted/tgstation,tgstation/-tg-station,securitycopper/-tg-station,XDTM/tgstation,YotaXP/-tg-station,JJRcop/tgstation,ike709/FTL13,tkdrg/-tg-station,riftstation/riftstation,Cruix/-tg-station,kingofkosmos/-tg-station,TheVekter/-tg-station,Groxic/tgstation,Incoming5643/-tg-station,Robustin/tgstation,Arianya/tgstation,JStheguy/tgstation,utahclock/yogstation,vcordie/tgstation,lordpidey/-tg-station,MicroWorldwide/SS13-TG-station,Jordie0608/-tg-station,Buggy123/-tg-station,balohmatevz/-tg-station,GunHog/-tg-station,GunHog/-tg-station,YotaXP/-tg-station,ShizCalev/tgstation,Cheridan/-tg-station,NicholasM10/-tg-station,ShadowDeath6/-tg-station-yog-rebase,neersighted/tgstation,F-OS/tgstation,Y0SH1M4S73R/-tg-station,Memendia/HippieStation,InsaneHyena/tgstation,JJRcop/-tg-station,Tacolizard/tgstation,Thunder12345/-tg-station,InsaneHyena/tgstation,TheOneForgotten/white,AlexanderUlanH/-tg-station,GunHog/-tg-station,feemjmeem/-tg-station,Zostroll/yogstation,Arianya/tgstation,posttk421/tgstation,Robustin/tgstation,Robustin/tgstation,Arianya/tgstation,TalkingCactus/tgstation,McBawbaggings/HippieStation,ChangelingRain/-tg-station,yogstation13/yogstation-old,Xhuis/AquaStation,Tokiko1/tgstation,HippieStationCode/HippieStation13,LLA-Gaming/LS13,Aranclanos/-tg-station,greytide/greytide,feemjmeem/-tg-station,Memendia/HippieStation13,QualityVan/tgstation,lzimann/-tg-station,Jordie0608/tgstation,Y0SH1M4S73R/-tg-station,ChangelingRain/-tg-station,Tokiko1/tgstation,ShizCalev/tgstation,Jordie0608/tgstation,tgstation/-tg-station,Groxic/tgstation,Shadowlight213/-tg-station,LegendaryPoro/FTL13,dannyy3566/FTL13,ChangelingRain/-tg-station,TheVekter/-tg-station,ITBlackwood/FTL13,CPTANT/-tg-station,kingofkosmos/-tg-station,AsV9/yogstation,Aloraydrel/-tg-station,4dplanner/tgstation,Mark9013100/tgstation-m9,Fox-McCloud/-tg-station,Arianya/tgstation,ohnopigeons/tgstation,infinitystation/-tg-station,octareenroon91/-tg-station,somot/-tg-station,Incoming5643/-tg-station,AndrewJacksonThe2nd/-tg-station,Poojawa/tgstation-fork,Lijah99/-tg-station,FluffySurvivor/yogstation,Jalleo/-tg-station,riftstation/riftstation,HippieStation/HippieStation,Fayrik/-tg-station,nullbear/-tg-station,TalkingCactus/tgstation,Cruix/-tg-station-yog-rebase,McBawbaggings/HippieStation,coiax/-tg-station,kevinz000/-tg-station,Memendia/HippieStation,Groxic/yogstation,GuyonBroadway/HippieStation,HippieStationCode/HippieStation13,chickenboy10/tgstation,riftstation/riftstation,Memendia/HippieStation,JStheguy/tgstation,coiax/-tg-station,4dplanner/tgstation,JJRcop/-tg-station,Kirill1243/-tg-station,erwgd/-tg-station,lzimann/-tg-station,Cruix/-tg-station-yog-rebase,CosmicScientist/-tg-station,infinitystation/-tg-station,Mervill/tgstation,Tacolizard/tgstation,Poojawa/tgstation-fork,4dplanner/tgstation,Niknakflak/-tg-station,bear1ake/-tg-station,Jordie0608/tgstation,OBA-code/tgstation,loqoman/tgstation,loqoman/tgstation,erwgd/-tg-station,Osokorn/tgstation,kyrahabattoir/-tg-station,paprka/-tg-station,oisin100/yogstation,Cruix/-tg-station-yog-rebase,Hollexian/FTL13,Xhuis/-tg-station,Jordie0608/-tg-station,Core0verload/-tg-station,Cheridan/tgstation,Yoshmaster/-tg-station,xxalpha/-tg-station,Ikarrus/-tg-station,Notamaniac/yogstation,Memendia/HippieStation,chickenboy10/tgstation,neersighted/tgstation,oisin100/yogstation,Cyberboss/tgstation,chickenboy10/tgstation,balohmatevz/-tg-station,coiax/-tg-station,X-TheDark/yogstation,Stealthkibbler/FTL13,Zorking/white,Fox-McCloud/-tg-station,oisin100/yogstation,GuyonBroadway/HippieStation,optimumtact/-tg-station,Groxic/tgstation,Zorking/white,securitycopper/-tg-station,AnturK/-tg-station,Jalleo/-tg-station,MrStonedOne/tgstation,anconfuzedrock/tgstation,TalkingCactus/tgstation,Mervill/tgstation,Robustin/tgstation,Vertiquo/Prison-Station,lzimann/tgstation,ToGWtF/yogstation,loqoman/tgstation,Xhuis/-tg-station,YotaXP/-tg-station,Incoming5643/-tg-station,neersighted/tgstation,Vertiquo/Prison-Station,Expletive/tgstation,ToGWtF/yogstation,neersighted/tgstation,Jalleo/-tg-station,utahclock/yogstation,Thunder12345/-tg-station,JJRcop/tgstation,paprka/-tg-station,AnturK/-tg-station,Kraseo/-tg-station,nullquery/nullstation,feemjmeem/-tg-station,Zostroll/yogstation,Aranclanos/-tg-station,kingofkosmos/-tg-station,Iamgoofball/-tg-station,LanCartwright/-tg-station,PJB3005/tgstation,Crexfu/tgstation,yogstation13/-tg-station-yog-rebase,Perakp/-tg-station,JJRcop/tgstation,Boggart/-tg-station,nullstation/nullstation,Miauw62/-tg-station,Niknakflak/-tg-station,Fox-McCloud/-tg-station,checkraisefold/fulpstation,Y0SH1M4S73R/-tg-station,4dplanner/tgstation,Buggy123/-tg-station,Xhuis/AquaStation,kingofkosmos/-tg-station,Aranclanos/-tg-station,TheVekter/-tg-station,TehZombehz/-tg-station,tigercat2000/-tg-station,AdamElTablawy/yogstation-1,4dplanner/tgstation,Razharas/-tg-station,nicbn/tgstation,Maks750rus/-tg-station,WJohn/-tg-station,Ricotez/-tg-station,Mark9013100/tgstation-m9,dannno/-tg-station,CosmicScientist/-tg-station,Memendia/HippieStation,Core0verload/-tg-station,CosmicScientist/-tg-station,F-OS/tgstation,Expletive/tgstation,Valanthe500/Soteria-v3,WJohn/-tg-station,securitycopper/-tg-station,ITBlackwood/FTL13,nicbn/tgstation,MrStonedOne/tgstation,Buggy123/-tg-station,KazeEspada/-tg-station,utahclock/yogstation,Xhuis/tgfork,CrAzYPiLoT-SS13/FTL13,Crexfu/tgstation,athompson11/Soteria-v3,AuroranAI/FTL13,TheSarkazmus/Faster-Than-Lizard-13,Haevacht/tgstation,Ricotez/-tg-station,feemjmeem/-tg-station,Jalleo/-tg-station,Y0SH1M4S73R/-tg-station,feemjmeem/-tg-station,Robustin/tgstation,tigercat2000/-tg-station,lzimann/-tg-station,AnturK/-tg-station,PKPenguin321/-tg-station,PJB3005/tgstation,Kraseo/-tg-station,loqoman/tgstation,bear1ake/-tg-station,Jordie0608/tgstation,HippieStationCode/HippieStation13,vcordie/tgstation,Lijah99/-tg-station,OliBomby/yogstation-1,CPTANT/-tg-station,Bawhoppen/-tg-station,dannno/-tg-station,Cheridan/-tg-station,Thunder12345/-tg-station,Dahka/-tg-station,Cruix/-tg-station-yog-rebase,tgstation/tgstation,F-OS/tgstation,TheVekter/-tg-station,nullstation/-tg-station,AuroranAI/FTL13,CrAzYPiLoT-SS13/FTL13,infinitystation/-tg-station,loqoman/tgstation,somot/-tg-station,nicbn/tgstation,Bawhoppen/-tg-station,Groxic/yogstation,ohnopigeons/tgstation,Mervill/tgstation,Profakos/tgstation,nullstation/nullstation,ChangelingRain/-tg-station,beni55/-tg-station,HippieStation/HippieStation,Zostroll/yogstation,Boggart/-tg-station,XDTM/tgstation,CrAzYPiLoT-SS13/FTL13-1,Cruix/-tg-station,Buggy123/-tg-station,NicholasM10/-tg-station,F-OS/tgstation,tgstation/tgstation,Razharas/-tg-station,Osokorn/tgstation,Maks750rus/-tg-station,dannyy3566/FTL13,matskuman5/yogstation,Shadowlight213/-tg-station,Expletive/tgstation,Nickvr628/FTL13,optimumtact/-tg-station,JStheguy/tgstation,Xhuis/tgfork,optimumtact/-tg-station,xxalpha/-tg-station,Penguaro/tgstation,paprka/-tg-station,Razharas/-tg-station,anconfuzedrock/tgstation,Y0SH1M4S73R/-tg-station,Yoshmaster/-tg-station,GunHog/-tg-station,lordpidey/-tg-station,Profakos/tgstation,kevinz000/-tg-station,paprka/-tg-station,McBawbaggings/HippieStation,ZioZan/tgstation,MrStonedOne/tgstation,LLA-Gaming/LS13,Cheridan/tgstation,Hollexian/FTL13,phil235/-tg-station,balohmatevz/-tg-station,F-OS/tgstation,JJRcop/tgstation,paprka/-tg-station,tgstation/tgstation,Y0SH1M4S73R/-tg-station,posttk421/tgstation,Strathcona/-tg-station,Fox-McCloud/-tg-station,lordpidey/-tg-station,JStheguy/tgstation,Time-Green/-tg-station-yog-rebase,riftstation/riftstation,Boggart/-tg-station,optimumtact/-tg-station,Fayrik/-tg-station,KazeEspada/-tg-station,Bawhoppen/-tg-station,coiax/-tg-station,Bawhoppen/-tg-station,Super3222/yogstation,Strathcona/-tg-station,Yoshmaster/-tg-station,Ultimate-Chimera/tgstation,nullquery/nullstation,yogstation13/yogstation-old,kyrahabattoir/-tg-station,Fox-McCloud/-tg-station,Cheridan/tgstation,Dahka/-tg-station,Kraseo/-tg-station,CrAzYPiLoT-SS13/FTL13,FluffySurvivor/yogstation,Penguaro/tgstation,Jordie0608/-tg-station,SamuelRowe/-tg-station,Robustin/tgstation,Osokorn/tgstation,Thunder12345/-tg-station,lordpidey/-tg-station,Maks750rus/-tg-station,ShadowDeath6/-tg-station-yog-rebase,vcordie/tgstation,Vertiquo/Prison-Station,Niknakflak/-tg-station,A-t48/-tg-station,Mark9013100/tgstation-m9,MrStonedOne/tgstation,TheOneForgotten/white,lzimann/tgstation,lzimann/-tg-station,tigercat2000/-tg-station,Miauw62/-tg-station,kevinz000/-tg-station,beni55/-tg-station,ShadowDeath6/-tg-station-yog-rebase,somot/-tg-station,GuyonBroadway/HippieStation,erwgd/-tg-station,tgstation/-tg-station,PKPenguin321/-tg-station,Mark9013100/tgstation-m9,Notamaniac/yogstation,QualityVan/tgstation,Core0verload/-tg-station,Anonus/-tg-station,oisin100/yogstation,QualityVan/tgstation,Mark9013100/tgstation-m9,ShizCalev/tgstation,Ikarrus/-tg-station,NicholasM10/-tg-station,Nickvr628/FTL13,HippieStationCode/HippieStation13,Arianya/tgstation,Stealthkibbler/FTL13,X-TheDark/yogstation,InsaneHyena/tgstation,Dahka/-tg-station,Fox-McCloud/-tg-station,GunHog/-tg-station,Profakos/tgstation,JJRcop/-tg-station,A-t48/-tg-station,AnturK/-tg-station,WJohn/-tg-station,kevinz000/-tg-station,beni55/-tg-station,4dplanner/tgstation,xxalpha/-tg-station,nullquery/nullstation,InsaneHyena/tgstation,infinitystation/-tg-station,AsV9/yogstation,duncathan/-tg-station,utahclock/yogstation,Tokiko1/tgstation,PKPenguin321/-tg-station,Profakos/tgstation,Jordie0608/-tg-station,Shadowlight213/-tg-station,paprka/-tg-station,LegendaryPoro/FTL13,Groxic/tgstation,tkdrg/-tg-station,LegendaryPoro/FTL13,Stealthkibbler/FTL13,matskuman5/yogstation,Jalleo/-tg-station,Jordie0608/tgstation,Xhuis/tgfork,WJohn/-tg-station,Aranclanos/-tg-station,Super3222/yogstation,HippieStation/HippieStation,chickenboy10/tgstation,nullbear/-tg-station,xxalpha/-tg-station,CPTANT/-tg-station,checkraisefold/fulpstation,AnturK/-tg-station,hornygranny/-tg-station,QualityVan/tgstation,Ricotez/-tg-station,Miauw62/-tg-station,Razharas/-tg-station,CrAzYPiLoT-SS13/FTL13,LanCartwright/-tg-station,TheOneForgotten/white,CPTANT/-tg-station,TehZombehz/-tg-station,AdamElTablawy/yogstation-1,AsV9/yogstation,X-TheDark/yogstation,kevinz000/-tg-station,MrStonedOne/-tg-station,PKPenguin321/-tg-station,Tacolizard/tgstation,GuyonBroadway/HippieStation,TalkingCactus/tgstation,FluffySurvivor/yogstation,TheOneForgotten/white,Zostroll/yogstation,Niknakflak/-tg-station,Shadowlight213/-tg-station,nicbn/tgstation,Cyberboss/tgstation,tgstation/-tg-station,duncathan/-tg-station,Memendia/HippieStation,lordpidey/-tg-station,Iamgoofball/-tg-station,coiax/-tg-station,Tacolizard/tgstation,ITBlackwood/FTL13,TehZombehz/-tg-station,PKPenguin321/-tg-station,Time-Green/-tg-station-yog-rebase,yogstation13/-tg-station-yog-rebase,blockheads/-tg-station,Yoshmaster/-tg-station,dannno/-tg-station,JStheguy/tgstation,OliBomby/yogstation-1,Jalleo/-tg-station,bear1ake/-tg-station,Ultimate-Chimera/tgstation,Aloraydrel/-tg-station,matskuman5/yogstation,Strathcona/-tg-station,TheVekter/-tg-station,OliBomby/yogstation-1,Cyberboss/tgstation,utahclock/yogstation,Cruix/-tg-station,infinitystation/-tg-station,Fayrik/-tg-station,Lijah99/-tg-station,Perakp/-tg-station,greytide/greytide,AdamElTablawy/yogstation-1,ike709/FTL13,Anonus/-tg-station,tkdrg/-tg-station,Shadowlight213/-tg-station,Incoming5643/-tg-station,JJRcop/tgstation,NicholasM10/-tg-station,Cruix/-tg-station-yog-rebase,Nickvr628/FTL13,posttk421/tgstation,feemjmeem/-tg-station,MrStonedOne/-tg-station,Hollexian/FTL13,Aranclanos/-tg-station,securitycopper/-tg-station,JJRcop/tgstation,Xhuis/AquaStation,Jalleo/-tg-station,Memendia/HippieStation13,blockheads/-tg-station,SamuelRowe/-tg-station,Memendia/HippieStation13,nullbear/-tg-station,feemjmeem/-tg-station,octareenroon91/-tg-station,YotaXP/-tg-station,JStheguy/tgstation,Aranclanos/-tg-station,Cheridan/tgstation,riftstation/riftstation,MicroWorldwide/SS13-TG-station,octareenroon91/-tg-station,greytide/greytide,NicholasM10/-tg-station,NicholasM10/-tg-station,LanCartwright/-tg-station,CPTANT/-tg-station,Groxic/yogstation,TehZombehz/-tg-station,AlexanderUlanH/-tg-station,kevinz000/-tg-station,Mark9013100/tgstation-m9,greytide/greytide,Poojawa/tgstation-fork,Kirill1243/-tg-station,OBA-code/tgstation,Jordie0608/tgstation,ITBlackwood/FTL13,anconfuzedrock/tgstation,anconfuzedrock/tgstation,Shadowlight213/-tg-station,CosmicScientist/-tg-station,Aloraydrel/-tg-station,Razharas/-tg-station,WJohn/-tg-station,Incoming5643/-tg-station,4dplanner/tgstation,Arianya/tgstation,Notamaniac/yogstation,A-t48/-tg-station,QualityVan/tgstation,TheDreamweaver/-tg-station,Poojawa/tgstation-fork,Strathcona/-tg-station,GunHog/-tg-station,Nickvr628/FTL13,ohnopigeons/tgstation,Aloraydrel/-tg-station,F-OS/tgstation,TheSarkazmus/Faster-Than-Lizard-13,Cruix/-tg-station,Aranclanos/-tg-station,MicroWorldwide/SS13-TG-station,hornygranny/-tg-station,Mervill/tgstation,Miauw62/-tg-station,ChayseRamsay/Soteria-v3,neersighted/tgstation,loqoman/tgstation,GuyonBroadway/HippieStation,CrAzYPiLoT-SS13/FTL13-1,blockheads/-tg-station,paprka/-tg-station,Jordie0608/tgstation,duncathan/-tg-station,CosmicScientist/-tg-station,Cruix/-tg-station,xxalpha/-tg-station,ChayseRamsay/Soteria-v3,kingofkosmos/-tg-station,Cruix/-tg-station-yog-rebase,MicroWorldwide/SS13-TG-station,athompson11/Soteria-v3,Razharas/-tg-station,Qwertyon666/Necro,WJohn/-tg-station,riftstation/riftstation,Cruix/-tg-station,McBawbaggings/HippieStation,athompson11/Soteria-v3,Core0verload/-tg-station,balohmatevz/-tg-station,checkraisefold/fulpstation,Lijah99/-tg-station,FluffySurvivor/yogstation,Ricotez/-tg-station,MrStonedOne/tgstation,LLA-Gaming/LS13,Shadowlight213/-tg-station,Thunder12345/-tg-station,XDTM/tgstation,Xhuis/-tg-station,Qwertyon666/Necro,riftstation/riftstation,Memendia/HippieStation,McBawbaggings/HippieStation,anconfuzedrock/tgstation,Y0SH1M4S73R/-tg-station,loqoman/tgstation,checkraisefold/fulpstation,bear1ake/-tg-station,optimumtact/-tg-station,PKPenguin321/-tg-station,Cyberboss/tgstation,octareenroon91/-tg-station,Cyberboss/tgstation,MrStonedOne/tgstation,Kraseo/-tg-station,MrStonedOne/-tg-station,Ultimate-Chimera/tgstation,tgstation/tgstation,blockheads/-tg-station,Hollexian/FTL13,feemjmeem/-tg-station,Profakos/tgstation,ChangelingRain/-tg-station,CosmicScientist/-tg-station,Xhuis/tgfork,kyrahabattoir/-tg-station,OBA-code/tgstation,Y0SH1M4S73R/-tg-station,Valanthe500/Soteria-v3,Vertiquo/Prison-Station,ShizCalev/tgstation,GuyonBroadway/HippieStation,ChangelingRain/-tg-station,neersighted/tgstation,Niknakflak/-tg-station,Tacolizard/tgstation,lordpidey/-tg-station,ShizCalev/tgstation,SamuelRowe/-tg-station,kevinz000/-tg-station,nullstation/nullstation,MicroWorldwide/SS13-TG-station,CosmicScientist/-tg-station,Thunder12345/-tg-station,MicroWorldwide/SS13-TG-station,MrStonedOne/tgstation,PKPenguin321/-tg-station,Arianya/tgstation,MrStonedOne/tgstation,Xhuis/tgfork,TheDreamweaver/-tg-station,Cruix/-tg-station,Robustin/tgstation,octareenroon91/-tg-station,AlexanderUlanH/-tg-station,lzimann/tgstation,HippieStation/HippieStation,PJB3005/tgstation,nullstation/-tg-station,tigercat2000/-tg-station,QualityVan/tgstation,tgstation/tgstation,Perakp/-tg-station,xxalpha/-tg-station,CrAzYPiLoT-SS13/FTL13-1,phil235/-tg-station,MrStonedOne/-tg-station,Haevacht/tgstation,Memendia/HippieStation13,tgstation/tgstation,yogstation13/yogstation-old,xxalpha/-tg-station,JStheguy/tgstation,utahclock/yogstation,coiax/-tg-station,MicroWorldwide/SS13-TG-station,yogstation13/-tg-station-yog-rebase,AndrewJacksonThe2nd/-tg-station,HippieStation/HippieStation,Anonus/-tg-station,nullstation/nullstation,RemieRichards/-tg-station,kingofkosmos/-tg-station,somot/-tg-station,Tacolizard/tgstation,Xhuis/-tg-station,ZioZan/tgstation,coiax/-tg-station,AdamElTablawy/yogstation-1,KazeEspada/-tg-station,tgstation/tgstation,Bawhoppen/-tg-station,Razharas/-tg-station,Notamaniac/yogstation,X-TheDark/yogstation,RemieRichards/-tg-station,Penguaro/tgstation,XDTM/tgstation,Iamgoofball/-tg-station,Crexfu/tgstation,infinitystation/-tg-station,ToGWtF/yogstation,Memendia/HippieStation,GuyonBroadway/HippieStation,CPTANT/-tg-station,F-OS/tgstation,riftstation/riftstation,HippieStation/HippieStation,paprka/-tg-station,CPTANT/-tg-station,Zorking/white,Bawhoppen/-tg-station,TheDreamweaver/-tg-station,Cheridan/-tg-station,QualityVan/tgstation,PKPenguin321/-tg-station,Cheridan/-tg-station,ShizCalev/tgstation,securitycopper/-tg-station,Poojawa/tgstation-fork,Razharas/-tg-station,anconfuzedrock/tgstation,GunHog/-tg-station,AuroranAI/FTL13,TheSarkazmus/Faster-Than-Lizard-13,McBawbaggings/HippieStation,beni55/-tg-station,ShizCalev/tgstation,CrAzYPiLoT-SS13/FTL13-1,athompson11/Soteria-v3,MicroWorldwide/SS13-TG-station,duncathan/-tg-station,Super3222/yogstation,AuroranAI/FTL13,Shadowlight213/-tg-station,anconfuzedrock/tgstation,GuyonBroadway/HippieStation,Poojawa/tgstation-fork,Incoming5643/-tg-station,Ultimate-Chimera/tgstation,loqoman/tgstation,Iamgoofball/-tg-station,phil235/-tg-station,yogstation13/yogstation-old,optimumtact/-tg-station,HippieStation/HippieStation,nullbear/-tg-station,Cruix/-tg-station,LegendaryPoro/FTL13,OBA-code/tgstation,Cruix/-tg-station-yog-rebase,Aranclanos/-tg-station,OliBomby/yogstation-1,utahclock/yogstation,Stealthkibbler/FTL13,Kirill1243/-tg-station,XDTM/tgstation,Fayrik/-tg-station,tgstation/tgstation,Groxic/yogstation,Dahka/-tg-station,kevinz000/-tg-station,Haevacht/tgstation,ike709/FTL13,Qwertyon666/Necro,Buggy123/-tg-station,posttk421/tgstation,Xhuis/tgfork,AnturK/-tg-station,TheRealGLH/-tg-station,ChayseRamsay/Soteria-v3,LLA-Gaming/LS13,ShizCalev/tgstation,dannyy3566/FTL13,TehZombehz/-tg-station,kingofkosmos/-tg-station,yogstation13/-tg-station-yog-rebase,Boggart/-tg-station,4dplanner/tgstation,Thunder12345/-tg-station,WJohn/-tg-station,AsV9/yogstation,Xhuis/tgfork,Valanthe500/Soteria-v3,SamuelRowe/-tg-station,RemieRichards/-tg-station,Profakos/tgstation,XDTM/tgstation,Kirill1243/-tg-station,neersighted/tgstation,Time-Green/-tg-station-yog-rebase,dannno/-tg-station,Tacolizard/tgstation,Haevacht/tgstation,Anonus/-tg-station,ChangelingRain/-tg-station,Jordie0608/tgstation,CosmicScientist/-tg-station,LanCartwright/-tg-station,nicbn/tgstation,AndrewJacksonThe2nd/-tg-station,Cyberboss/tgstation,Jalleo/-tg-station,JJRcop/-tg-station,NicholasM10/-tg-station,nicbn/tgstation,TehZombehz/-tg-station,TheDreamweaver/-tg-station,RemieRichards/-tg-station,A-t48/-tg-station,Qwertyon666/Necro,matskuman5/yogstation,nullstation/-tg-station,Buggy123/-tg-station,Ikarrus/-tg-station,AnturK/-tg-station,utahclock/yogstation,Robustin/tgstation,securitycopper/-tg-station,JJRcop/tgstation,TehZombehz/-tg-station,ToGWtF/yogstation,ZioZan/tgstation,phil235/-tg-station,Incoming5643/-tg-station,Profakos/tgstation,Buggy123/-tg-station,Incoming5643/-tg-station,nullquery/nullstation,Maks750rus/-tg-station,ChayseRamsay/Soteria-v3,TheSarkazmus/Faster-Than-Lizard-13,hornygranny/-tg-station,Xhuis/AquaStation,dannyy3566/FTL13,Poojawa/tgstation-fork,xxalpha/-tg-station,TehZombehz/-tg-station,TheVekter/-tg-station,ohnopigeons/tgstation,Ikarrus/-tg-station,TheRealGLH/-tg-station,ike709/FTL13,NicholasM10/-tg-station,TheRealGLH/-tg-station,TheVekter/-tg-station,TheRealGLH/-tg-station,McBawbaggings/HippieStation,Penguaro/tgstation,infinitystation/-tg-station,CPTANT/-tg-station,vcordie/tgstation,AndrewJacksonThe2nd/-tg-station,Bawhoppen/-tg-station,Niknakflak/-tg-station,Xhuis/tgfork,kyrahabattoir/-tg-station,nicbn/tgstation,nullstation/-tg-station,hornygranny/-tg-station,Cruix/-tg-station-yog-rebase,Cyberboss/tgstation,McBawbaggings/HippieStation,KazeEspada/-tg-station,optimumtact/-tg-station,securitycopper/-tg-station,Crexfu/tgstation,Valanthe500/Soteria-v3,Niknakflak/-tg-station,PJB3005/tgstation,lordpidey/-tg-station,Perakp/-tg-station,ShadowDeath6/-tg-station-yog-rebase,tkdrg/-tg-station,F-OS/tgstation,securitycopper/-tg-station
|
2668345b64c94a2c4b5cbdd88600dce91bea6bda
|
buildspec.yml
|
buildspec.yml
|
version: 0.2
phases:
install:
commands:
- yum install -y zip
- npm install -g serverless
build:
commands:
- serverless --version
- cd sample-app
- mkdir deploy-artifacts
- serverless package --package deploy-artifacts
- cd deploy-artifacts && zip -r ../deploy-artifacts.zip ./*
artifacts:
files:
- deploy-artifacts.zip
discard-paths: yes
base-directory: sample-app
|
version: 0.2
phases:
install:
commands:
- yum install -y zip
- npm install -g serverless
build:
commands:
- serverless --version
- cd sample-app
- mkdir deploy-artifacts
- serverless package --package deploy-artifacts
- cd deploy-artifacts && cp ../../deployspec.yml . && zip -r ../deploy-artifacts.zip ./*
artifacts:
files:
- deploy-artifacts.zip
discard-paths: yes
base-directory: sample-app
|
Update to move deploy spec to deploy pipeline stage
|
Update to move deploy spec to deploy pipeline stage
|
YAML
|
apache-2.0
|
xtraclabs/api-gw-active-standby,xtraclabs/api-gw-active-standby
|
ba84b74f9859e28bbe19164c5d690a0752214f85
|
buildspec.yml
|
buildspec.yml
|
version: 0.1
environment_variables:
plaintext:
FFPROBE_PATH: "bin/ffprobe"
BUILD_PHASE_MARKER: build_phase_complete
phases:
install:
commands:
- echo $CODEBUILD_SOURCE_VERSION
pre_build:
commands:
- npm install
- chmod +x get-ffmpeg
- ./get-ffmpeg
build:
commands:
- npm test
- touch $BUILD_PHASE_MARKER
# - echo Compressing Lambda functions
# - cd lambdas; find * -maxdepth 0 -type d|while read dirname; do cd "$dirname"; zip -r "$dirname" *; mv "$dirname".zip ..; cd ..; done; cd ..
post_build:
commands:
- test -e $BUILD_PHASE_MARKER
- echo Zipping Lambda code
# TODO make the zip file name a template config
- zip -r cms-audio-lambda.zip . -x .git
- echo Copying zipped Lambda to S3 $CODE_BUCKET
- aws s3 cp cms-audio-lambda.zip s3://$CODE_BUCKET/cms-audio-lambda.zip
# TOD Get version ID and write it back to template config
artifacts:
# It seems like CodePipeline and CodeBuild expect an artifact here. Currently
# we don't need any, so this is essentially a no-op.
files:
- README.md
|
version: 0.1
environment_variables:
plaintext:
FFPROBE_PATH: "bin/ffprobe"
BUILD_PHASE_MARKER: build_phase_complete
phases:
install:
commands:
- echo $CODEBUILD_SOURCE_VERSION
pre_build:
commands:
- npm install
- chmod +x get-ffmpeg
- ./get-ffmpeg
build:
commands:
- npm test
- touch $BUILD_PHASE_MARKER
post_build:
commands:
- test -e $BUILD_PHASE_MARKER
- echo Zipping Lambda code
- zip -r cms-audio-lambda-$(basename $CODEBUILD_SOURCE_VERSION) . -x .git
- echo Copying zipped Lambda to S3 $CODE_BUCKET
- aws s3 cp cms-audio-lambda-$(basename $CODEBUILD_SOURCE_VERSION) s3://$CODE_BUCKET/cms-audio-lambda-$(basename $CODEBUILD_SOURCE_VERSION)
# TODO Get version ID and write it back to template config
artifacts:
# It seems like CodePipeline and CodeBuild expect an artifact here. Currently
# we don't need any, so this is essentially a no-op.
files:
- README.md
|
Work on deploy package naming
|
Work on deploy package naming
|
YAML
|
mit
|
PRX/cms-audio-lambda,PRX/cms-audio-lambda
|
5df6e4289215e405199f7b0f0d5552f25ca679d3
|
config/config.yml
|
config/config.yml
|
# PatchKit Tools Configuration
# Behaviour
debug: true
# Api connection
api_url: http://api.patchkit.net
# Uploading
# Upload chunk size in bytes
upload_chunk_size: 262144
|
# PatchKit Tools Configuration
# Behaviour
debug: true
# Api connection
api_url: http://api.patchkit.net
# Uploading
# Upload chunk size in bytes
upload_chunk_size: 33554432
|
Change chunk size to 32 megabytes
|
Change chunk size to 32 megabytes
|
YAML
|
mit
|
patchkit-net/patchkit-tools,patchkit-net/patchkit-tools
|
318b41927f8ba631c17f7a04e694316df66245f8
|
adapt_cluster_provisioning/adapt_cluster_deployment_playbook.yml
|
adapt_cluster_provisioning/adapt_cluster_deployment_playbook.yml
|
---
# Playbook to install fileserver, master and worker tools
## Prepare fileserver
- hosts: fileserver
user: admin
sudo: true
roles:
- private_ip
- update
- fileserver
# Install tool dependencies, slurm, mount volumes
- hosts:
- master_private
- workers
vars_files:
- inventory/cluster_data.yml
user: admin
sudo: true
roles:
- private_ip
- update
- core
# Install tools and other master things (Postgres, proFTPd, galaxy, etc)
- hosts: master_private
vars_files:
- roles/master/vars/tools.yml
- roles/core/vars/main.yml
sudo: true
roles:
- master
# Reboot remote systems
- hosts:
- workers
- fileserver
sudo: true
tasks:
- name: Reboot system after provision
command: /sbin/reboot
|
---
# Playbook to install fileserver, master and worker tools
## Prepare fileserver
- hosts: fileserver
user: admin
sudo: true
roles:
- private_ip
- update
- fileserver
# Install tool dependencies, slurm, mount volumes
- hosts:
- master_private
- workers
vars_files:
- inventory/cluster_data.yml
user: admin
sudo: true
roles:
- private_ip
- update
- core
# Install tools and other master things (Postgres, proFTPd, galaxy, etc)
- hosts: master_private
vars_files:
- roles/master/vars/tools.yml
- roles/core/vars/main.yml
sudo: true
roles:
- master
# Reboot remote systems
- hosts:
- workers
- master
- fileserver
sudo: true
tasks:
- name: Reboot system after provision
command: /sbin/reboot
|
Reboot master as well after deploying
|
Reboot master as well after deploying
|
YAML
|
mit
|
glormph/proteomics_configuration
|
2432183ac6276fdcd7523f2bb4db97de0332210d
|
recipes/blasr/meta.yaml
|
recipes/blasr/meta.yaml
|
{% set version = "5.2p1" %}
package:
name: blasr
version: {{ version }}
build:
number: 0
skip: True # [not py27 or osx]
source:
# fn: blasr_{{ version }}.tar.gz
# url: https://github.com/PacificBiosciences/blasr/archive/061bd35783637f511bdec6c237a2f8d1c0514e6e.tar.gz
# md5: 257828868b17903608b010c7b2966d51
git_url: https://github.com/PacificBiosciences/blasr.git
git_rev: 061bd35783637f511bdec6c237a2f8d1c0514e6e
patches:
- blasr.patch
requirements:
build:
- gcc # [not osx]
- llvm # [osx]
- hdf5
- git
run:
- libgcc # [not osx]
- hdf5
test:
commands:
- blasr --version
about:
home: https://github.com/PacificBiosciences/blasr
license: BSD-3-Clause-Clear
license_file: LICENSE
summary: BLASR - The PacBio long read aligner
|
{% set version = "4.0.0" %}
package:
name: blasr
version: {{ version }}
build:
number: 0
skip: True # [not py27 or osx]
source:
git_url: https://github.com/PacificBiosciences/blasr.git
git_rev: 8d086d747e51a409f25481524e92e99750b14d59
patches:
- blasr.patch
requirements:
build:
- gcc # [not osx]
- llvm # [osx]
- hdf5
- git
run:
- libgcc # [not osx]
- hdf5
test:
commands:
- blasr --version
about:
home: https://github.com/PacificBiosciences/blasr
license: BSD-3-Clause-Clear
license_file: LICENSE
summary: BLASR - The PacBio long read aligner
|
Update the version and the revision
|
Update the version and the revision
|
YAML
|
mit
|
omicsnut/bioconda-recipes,mcornwell1957/bioconda-recipes,gregvonkuster/bioconda-recipes,keuv-grvl/bioconda-recipes,CGATOxford/bioconda-recipes,bebatut/bioconda-recipes,xguse/bioconda-recipes,rvalieris/bioconda-recipes,pinguinkiste/bioconda-recipes,acaprez/recipes,keuv-grvl/bioconda-recipes,HassanAmr/bioconda-recipes,guowei-he/bioconda-recipes,xguse/bioconda-recipes,phac-nml/bioconda-recipes,saketkc/bioconda-recipes,bioconda/bioconda-recipes,colinbrislawn/bioconda-recipes,HassanAmr/bioconda-recipes,peterjc/bioconda-recipes,colinbrislawn/bioconda-recipes,colinbrislawn/bioconda-recipes,rob-p/bioconda-recipes,dmaticzka/bioconda-recipes,dkoppstein/recipes,peterjc/bioconda-recipes,matthdsm/bioconda-recipes,zachcp/bioconda-recipes,dmaticzka/bioconda-recipes,ostrokach/bioconda-recipes,ivirshup/bioconda-recipes,keuv-grvl/bioconda-recipes,bow/bioconda-recipes,jasper1918/bioconda-recipes,CGATOxford/bioconda-recipes,Luobiny/bioconda-recipes,blankenberg/bioconda-recipes,abims-sbr/bioconda-recipes,ivirshup/bioconda-recipes,HassanAmr/bioconda-recipes,saketkc/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,ivirshup/bioconda-recipes,npavlovikj/bioconda-recipes,JenCabral/bioconda-recipes,daler/bioconda-recipes,ostrokach/bioconda-recipes,matthdsm/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,ostrokach/bioconda-recipes,jfallmann/bioconda-recipes,bebatut/bioconda-recipes,jasper1918/bioconda-recipes,colinbrislawn/bioconda-recipes,oena/bioconda-recipes,ivirshup/bioconda-recipes,ivirshup/bioconda-recipes,gvlproject/bioconda-recipes,lpantano/recipes,guowei-he/bioconda-recipes,gvlproject/bioconda-recipes,omicsnut/bioconda-recipes,oena/bioconda-recipes,mcornwell1957/bioconda-recipes,omicsnut/bioconda-recipes,CGATOxford/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,joachimwolff/bioconda-recipes,HassanAmr/bioconda-recipes,martin-mann/bioconda-recipes,dmaticzka/bioconda-recipes,lpantano/recipes,pinguinkiste/bioconda-recipes,chapmanb/bioconda-recipes,phac-nml/bioconda-recipes,jfallmann/bioconda-recipes,bioconda/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,colinbrislawn/bioconda-recipes,zachcp/bioconda-recipes,bow/bioconda-recipes,dmaticzka/bioconda-recipes,mdehollander/bioconda-recipes,keuv-grvl/bioconda-recipes,omicsnut/bioconda-recipes,xguse/bioconda-recipes,HassanAmr/bioconda-recipes,pinguinkiste/bioconda-recipes,roryk/recipes,bioconda/recipes,gregvonkuster/bioconda-recipes,cokelaer/bioconda-recipes,daler/bioconda-recipes,hardingnj/bioconda-recipes,shenwei356/bioconda-recipes,jasper1918/bioconda-recipes,roryk/recipes,ostrokach/bioconda-recipes,saketkc/bioconda-recipes,roryk/recipes,martin-mann/bioconda-recipes,mcornwell1957/bioconda-recipes,HassanAmr/bioconda-recipes,dkoppstein/recipes,matthdsm/bioconda-recipes,matthdsm/bioconda-recipes,hardingnj/bioconda-recipes,guowei-he/bioconda-recipes,rob-p/bioconda-recipes,bow/bioconda-recipes,gvlproject/bioconda-recipes,npavlovikj/bioconda-recipes,jasper1918/bioconda-recipes,acaprez/recipes,hardingnj/bioconda-recipes,phac-nml/bioconda-recipes,peterjc/bioconda-recipes,dkoppstein/recipes,npavlovikj/bioconda-recipes,saketkc/bioconda-recipes,mdehollander/bioconda-recipes,abims-sbr/bioconda-recipes,omicsnut/bioconda-recipes,bebatut/bioconda-recipes,lpantano/recipes,JenCabral/bioconda-recipes,martin-mann/bioconda-recipes,peterjc/bioconda-recipes,npavlovikj/bioconda-recipes,daler/bioconda-recipes,rob-p/bioconda-recipes,mdehollander/bioconda-recipes,daler/bioconda-recipes,mcornwell1957/bioconda-recipes,shenwei356/bioconda-recipes,bioconda/recipes,blankenberg/bioconda-recipes,acaprez/recipes,joachimwolff/bioconda-recipes,matthdsm/bioconda-recipes,oena/bioconda-recipes,chapmanb/bioconda-recipes,guowei-he/bioconda-recipes,xguse/bioconda-recipes,JenCabral/bioconda-recipes,abims-sbr/bioconda-recipes,keuv-grvl/bioconda-recipes,lpantano/recipes,abims-sbr/bioconda-recipes,ostrokach/bioconda-recipes,gvlproject/bioconda-recipes,abims-sbr/bioconda-recipes,peterjc/bioconda-recipes,JenCabral/bioconda-recipes,pinguinkiste/bioconda-recipes,daler/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,dmaticzka/bioconda-recipes,phac-nml/bioconda-recipes,cokelaer/bioconda-recipes,CGATOxford/bioconda-recipes,bow/bioconda-recipes,matthdsm/bioconda-recipes,Luobiny/bioconda-recipes,chapmanb/bioconda-recipes,bioconda/bioconda-recipes,rvalieris/bioconda-recipes,cokelaer/bioconda-recipes,Luobiny/bioconda-recipes,rvalieris/bioconda-recipes,acaprez/recipes,BIMSBbioinfo/bioconda-recipes,keuv-grvl/bioconda-recipes,gregvonkuster/bioconda-recipes,mcornwell1957/bioconda-recipes,jfallmann/bioconda-recipes,zachcp/bioconda-recipes,mdehollander/bioconda-recipes,rvalieris/bioconda-recipes,abims-sbr/bioconda-recipes,bebatut/bioconda-recipes,joachimwolff/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,peterjc/bioconda-recipes,bow/bioconda-recipes,Luobiny/bioconda-recipes,joachimwolff/bioconda-recipes,phac-nml/bioconda-recipes,pinguinkiste/bioconda-recipes,martin-mann/bioconda-recipes,xguse/bioconda-recipes,cokelaer/bioconda-recipes,bioconda/bioconda-recipes,rvalieris/bioconda-recipes,jasper1918/bioconda-recipes,martin-mann/bioconda-recipes,gvlproject/bioconda-recipes,ivirshup/bioconda-recipes,bow/bioconda-recipes,ostrokach/bioconda-recipes,rvalieris/bioconda-recipes,hardingnj/bioconda-recipes,hardingnj/bioconda-recipes,pinguinkiste/bioconda-recipes,daler/bioconda-recipes,CGATOxford/bioconda-recipes,joachimwolff/bioconda-recipes,oena/bioconda-recipes,shenwei356/bioconda-recipes,CGATOxford/bioconda-recipes,JenCabral/bioconda-recipes,saketkc/bioconda-recipes,blankenberg/bioconda-recipes,guowei-he/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,shenwei356/bioconda-recipes,mdehollander/bioconda-recipes,blankenberg/bioconda-recipes,zachcp/bioconda-recipes,joachimwolff/bioconda-recipes,bioconda/recipes,gregvonkuster/bioconda-recipes,chapmanb/bioconda-recipes,JenCabral/bioconda-recipes,dmaticzka/bioconda-recipes,saketkc/bioconda-recipes,oena/bioconda-recipes,jfallmann/bioconda-recipes,colinbrislawn/bioconda-recipes,rob-p/bioconda-recipes,chapmanb/bioconda-recipes,mdehollander/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,gvlproject/bioconda-recipes
|
5bd2c2093f34f519cf7e8e397798a29b124d8599
|
recipes/verta/meta.yaml
|
recipes/verta/meta.yaml
|
{% set name = "verta" %}
{% set version = "0.8.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 24db7f5922fd63db8094717a020560435e121f5bf9c7c9478bad5938fe08947e
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
requirements:
host:
- python >=3.5
- pip
run:
- python >=3.5
- googleapis-common-protos ~=1.5
- grpcio ~=1.16
- joblib ~=0.13
- protobuf ~=3.6
- requests ~=2.21
test:
imports:
- verta
about:
home: https://verta.readthedocs.io/en/latest/
license: Apache-2.0
license_family: Apache
license_file: LICENSE
summary: 'Python client for interfacing with ModelDB'
doc_url: https://verta.readthedocs.io/en/latest/
dev_url: https://github.com/VertaAI/modeldb-client/
extra:
recipe-maintainers:
- convoliution
- mvartakAtVerta
|
{% set name = "verta" %}
{% set version = "0.8.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 24db7f5922fd63db8094717a020560435e121f5bf9c7c9478bad5938fe08947e
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
requirements:
host:
- python >=3.5
- pip
run:
- python >=3.5
- googleapis-common-protos >=1.5
- grpcio >=1.16
- joblib >=0.13
- protobuf >=3.6
- requests >=2.21
test:
imports:
- verta
about:
home: https://verta.readthedocs.io/en/latest/
license: Apache-2.0
license_family: Apache
license_file: LICENSE
summary: 'Python client for interfacing with ModelDB'
doc_url: https://verta.readthedocs.io/en/latest/
dev_url: https://github.com/VertaAI/modeldb-client/
extra:
recipe-maintainers:
- convoliution
- mvartakAtVerta
|
Change version specifiers from ~= to >=
|
Change version specifiers from ~= to >=
This offers the user greater flexibility and fiat, especially if the Conda distribution can't be updated quickly.
|
YAML
|
bsd-3-clause
|
chrisburr/staged-recipes,ceholden/staged-recipes,dschreij/staged-recipes,hadim/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,chrisburr/staged-recipes,kwilcox/staged-recipes,basnijholt/staged-recipes,conda-forge/staged-recipes,asmeurer/staged-recipes,synapticarbors/staged-recipes,rmcgibbo/staged-recipes,cpaulik/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,ceholden/staged-recipes,scopatz/staged-recipes,ReimarBauer/staged-recipes,jakirkham/staged-recipes,synapticarbors/staged-recipes,jjhelmus/staged-recipes,mcs07/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,SylvainCorlay/staged-recipes,petrushy/staged-recipes,jochym/staged-recipes,igortg/staged-recipes,ocefpaf/staged-recipes,rmcgibbo/staged-recipes,asmeurer/staged-recipes,jochym/staged-recipes,birdsarah/staged-recipes,ReimarBauer/staged-recipes,petrushy/staged-recipes,basnijholt/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,Juanlu001/staged-recipes,birdsarah/staged-recipes,isuruf/staged-recipes,cpaulik/staged-recipes,johanneskoester/staged-recipes,Juanlu001/staged-recipes,jjhelmus/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,dschreij/staged-recipes,stuertz/staged-recipes,mcs07/staged-recipes,scopatz/staged-recipes
|
3efa9d2e046773d51d84eb11c1ae031c32a53c69
|
metadata/cz.vitskalicky.lepsirozvrh.yml
|
metadata/cz.vitskalicky.lepsirozvrh.yml
|
AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Science & Education
License: GPL-3.0-or-later
AuthorName: Vít Skalický
AuthorEmail: [email protected]
SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh
IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues
AutoName: Better schedule
RepoType: git
Repo: https://github.com/vitSkalicky/lepsi-rozvrh.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: '1.1'
versionCode: 2
commit: v1.1
subdir: app
gradle:
- yes
- versionName: 1.3.2
versionCode: 6
commit: v1.3.2
subdir: app
gradle:
- yes
scanignore:
- app/build.gradle
- versionName: '1.4'
versionCode: 7
commit: v1.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
UpdateCheckIgnore: beta preview
CurrentVersion: '1.4'
CurrentVersionCode: 7
|
AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Science & Education
License: GPL-3.0-or-later
AuthorName: Vít Skalický
AuthorEmail: [email protected]
SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh
IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues
AutoName: Better schedule
RepoType: git
Repo: https://github.com/vitSkalicky/lepsi-rozvrh.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: '1.1'
versionCode: 2
commit: v1.1
subdir: app
gradle:
- yes
- versionName: 1.3.2
versionCode: 6
commit: v1.3.2
subdir: app
gradle:
- yes
scanignore:
- app/build.gradle
- versionName: '1.4'
versionCode: 7
commit: v1.4
subdir: app
gradle:
- yes
- versionName: '1.5'
versionCode: 8
commit: v1.5
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
UpdateCheckIgnore: beta preview
CurrentVersion: '1.5'
CurrentVersionCode: 8
|
Update Better schedule to 1.5 (8)
|
Update Better schedule to 1.5 (8)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
b53c099d5d2087c7c5653eca59d2ccbab5d5e670
|
zuul.d/project.yaml
|
zuul.d/project.yaml
|
---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- project:
name: openstack/openstack-ansible-galera_client
check:
jobs:
- openstack-ansible-linters
- openstack-ansible-functional-centos-7
- openstack-ansible-functional-opensuse-423
- openstack-ansible-functional-ubuntu-xenial
- openstack-ansible-ssl-galera_server-ubuntu-xenial
- openstack-ansible-functional-galera_server-ubuntu-xenial
gate:
jobs:
- openstack-ansible-linters
- openstack-ansible-functional-centos-7
- openstack-ansible-functional-opensuse-423
- openstack-ansible-functional-ubuntu-xenial
|
---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- project:
name: openstack/openstack-ansible-galera_client
check:
jobs:
- openstack-ansible-linters
- openstack-ansible-functional-centos-7
- openstack-ansible-functional-opensuse-423
- openstack-ansible-functional-ubuntu-xenial
- openstack-ansible-ssl-galera_server-ubuntu-xenial
- openstack-ansible-functional-galera_server-ubuntu-xenial
experimental:
jobs:
- openstack-ansible-integrated-deploy-aio
gate:
jobs:
- openstack-ansible-linters
- openstack-ansible-functional-centos-7
- openstack-ansible-functional-opensuse-423
- openstack-ansible-functional-ubuntu-xenial
|
Allow the experimental trigger of the integrated repo
|
Allow the experimental trigger of the integrated repo
This would allow someone to test its change with an AIO.
Change-Id: I02fc1d62202ae0bcb482f304d3855a17e0088d6d
|
YAML
|
apache-2.0
|
openstack/openstack-ansible-galera_client,openstack/openstack-ansible-galera_client
|
f8c4986041e97959db117ae1a8f86423854b3f78
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
working_directory: ~/mern-starter # directory where steps will run
docker: # run the steps with Docker
- image: circleci/node:10.14
steps:
- checkout
- run:
name: update-npm
command: 'sudo npm install -g npm@latest'
- run:
name: update-apt-get
command: 'sudo apt-get update'
- run:
name: install-xmlsec1
command: 'sudo apt-get install xmlsec1'
- restore_cache: # special step to restore the dependency cache
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-deps
command: npm install
- save_cache: # special step to save the dependency cache
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run: # run tests with code coverage
name: test-code-coverage
command: npm run coverage
- run: # run coveralls report
name: test-report-coveralls
command: npm run coveralls
|
version: 2
jobs:
build:
working_directory: ~/mern-starter # directory where steps will run
docker: # run the steps with Docker
- image: circleci/node:16.13
steps:
- checkout
- run:
name: update-npm
command: 'sudo npm install -g npm@latest'
- run:
name: update-apt-get
command: 'sudo apt-get update'
- run:
name: install-xmlsec1
command: 'sudo apt-get install xmlsec1'
- restore_cache: # special step to restore the dependency cache
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-deps
command: npm install
- save_cache: # special step to save the dependency cache
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run: # run tests with code coverage
name: test-code-coverage
command: npm run coverage
- run: # run coveralls report
name: test-report-coveralls
command: npm run coveralls
|
Update nodejs to LTS version
|
ci: Update nodejs to LTS version
|
YAML
|
mit
|
PeculiarVentures/xmldsigjs,PeculiarVentures/xmldsigjs
|
589f5c779d346ca57cce57e07304975d535c67f9
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
docker:
- image: debian:stable
working_directory: /src/cl-png
steps:
- checkout
- run: apt-get update -y && apt-get install -y sbcl wget gcc libpng-dev
- run: wget https://beta.quicklisp.org/quicklisp.lisp
- run: sbcl --load quicklisp.lisp --eval "(quicklisp-quickstart:install)" --eval '(ql:quickload "cffi")' --quit
- run: ln -s /src/cl-png /root/quicklisp/local-projects/png
- run: sbcl --load /root/quicklisp/setup.lisp --eval '(ql:quickload "png")' --eval "(asdf:oos 'asdf:load-op '#:png-test)" --eval "(lisp-unit:run-all-tests :png-test)" --quit
|
version: 2
jobs:
build:
docker:
- image: debian:stable
working_directory: /src/cl-png
steps:
- checkout
- run: apt-get update -y && apt-get install -y sbcl wget gcc libpng-dev
- run: wget https://beta.quicklisp.org/quicklisp.lisp
- run: sbcl --load quicklisp.lisp --eval "(quicklisp-quickstart:install)" --eval '(ql:quickload "cffi")' --quit
- run: ln -s /src/cl-png /root/quicklisp/local-projects/png
- run: sbcl --load /root/quicklisp/setup.lisp --eval '(ql:quickload "png")' --eval "(asdf:oos 'asdf:load-op '#:png-test)" --eval "(lisp-unit:run-all-tests :png-test)" --quit
- run: sbcl --load /root/quicklisp/setup.lisp --eval '(ql:quickload "png")' --eval "(asdf:oos 'asdf:load-op '#:image-test)" --eval "(lisp-unit:run-all-tests :image-test)" --quit
- run: sbcl --load /root/quicklisp/setup.lisp --eval '(ql:quickload "png")' --eval "(asdf:oos 'asdf:load-op '#:bmp-test)" --eval "(lisp-unit:run-all-tests :bmp-test)" --quit
- run: sbcl --load /root/quicklisp/setup.lisp --eval '(ql:quickload "png")' --eval "(asdf:oos 'asdf:load-op '#:ops-test)" --eval "(lisp-unit:run-all-tests :ops-test)" --quit
|
Add other tests to CircleCI
|
Add other tests to CircleCI
|
YAML
|
lgpl-2.1
|
ljosa/cl-png,ljosa/cl-png,ljosa/cl-png
|
306fc3eb3c0499764d8446dd47f298f8cca9ea0c
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:0f7e40987efd757877a64d34f49ed5b9d611e9d2f969d12bdabdf87daf45f29a
- image: circleci/mongo:3@sha256:c9066bf12029c85a280120305f0ab49bd97203fae76e891aa52f0bf7342bef94
steps:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn codecov
|
version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:0f7e40987efd757877a64d34f49ed5b9d611e9d2f969d12bdabdf87daf45f29a
- image: circleci/mongo:3@sha256:04a81e1cd52345ebf5886874621d47f32662810213ef327532bf2aa63ae86dc6
steps:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn codecov
|
Update circleci/mongo:3 Docker digest to 04a81e
|
Update circleci/mongo:3 Docker digest to 04a81e
|
YAML
|
mit
|
js-accounts/accounts
|
1284eba01c586217473ce53110aedd4fd4bbcd28
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-28
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
# - run:
# name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
# command: sudo chmod +x ./gradlew
- run:
name: Download Dependencies
command: ./gradlew androidDependencies
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Run Tests
command: ./gradlew testDebugUnitTest
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
path: app/build/reports
destination: reports
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
path: app/build/test-results
# See https://circleci.com/docs/2.0/deployment-integrations/ for deploy examples
|
version: 2
reference:
## Cache
gradle_key: &gradle_key
jars-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}-{{ checksum "build.gradle" }}
restore_gradle_cache: &restore_gradle_cache
restore_cache:
key: *gradle_key
save_gradle_cache: &save_gradle_cache
save_cache:
key: *gradle_key
paths:
- ~/.gradle
- ~/.m2
jobs:
build:
working_directory: ~/code
docker:
- image: circleci/android:api-28
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- *restore_gradle_cache
- run:
name: Download Dependencies
command: ./gradlew androidDependencies
- *save_gradle_cache
- run:
name: Run Tests
command: ./gradlew testDebugUnitTest
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
path: app/build/reports
destination: reports
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
path: app/build/test-results
# See https://circleci.com/docs/2.0/deployment-integrations/ for deploy examples
|
Fix Circle CI cache key
|
Fix Circle CI cache key
|
YAML
|
mit
|
fcostaa/kotlin-rxjava-android,fcostaa/kotlin-rxjava-android
|
11a1c93dfd4bd14538873c3bed44a91f2cb9c16e
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
environment:
JVM_OPTS: -Xmx3200m
docker:
- image: circleci/android:api-28
steps:
- checkout
- restore_cache:
keys:
- v1-dep-{{ checksum "lib/build.gradle" }}
- run: ./gradlew androidDependencies
- save_cache:
key: v1-dep-{{ checksum "lib/build.gradle" }}
paths:
- ~/.gradle
- ~/.android
- /usr/local/android-sdk-linux/extras
- run:
name: Run checks
command: ./gradlew clean test lint --continue --console=plain --max-workers=3
- store_artifacts:
path: lib/build/reports
destination: reports
- store_test_results:
path: lib/build/test-results
|
version: 2
jobs:
build:
environment:
JVM_OPTS: -Xmx3200m
docker:
- image: cimg/android:2022.03.1
steps:
- checkout
- restore_cache:
keys:
- v1-dep-{{ checksum "lib/build.gradle" }}
- run: ./gradlew androidDependencies
- save_cache:
key: v1-dep-{{ checksum "lib/build.gradle" }}
paths:
- ~/.gradle
- ~/.android
- /usr/local/android-sdk-linux/extras
- run:
name: Run checks
command: ./gradlew clean test lint --continue --console=plain --max-workers=3
- store_artifacts:
path: lib/build/reports
destination: reports
- store_test_results:
path: lib/build/test-results
|
Update CircleCI Docker image to supported format
|
Update CircleCI Docker image to supported format
|
YAML
|
mit
|
auth0/Lock.Android,auth0/Lock.Android
|
6b0dac7d332a67e2c155fc997a5cf70b3830a41b
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- checkout
# - run:
# name: update-npm
# command: 'sudo npm install -g npm@latest'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-npm-wee
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: test
command: npm test
- run:
name: deploy
command: |
echo "${CIRCLE_TAG}"
if [[ "${CIRCLE_TAG}" =~ v[0-9]+(\.[0-9]+)* ]]; then
node ./scripts/publish.js
fi
|
version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- checkout
# - run:
# name: update-npm
# command: 'sudo npm install -g npm@latest'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-npm-wee
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: test
command: npm test
- run:
name: deploy
command: |
echo "${CIRCLE_TAG}"
if [[ "${CIRCLE_TAG}" =~ v[0-9]+(\.[0-9]+)* ]]; then
node ./scripts/publish.js
fi
workflows:
version: 2
build-n-publish:
jobs:
- build:
filters:
tags:
only: /v[0-9]+(\.[0-9]+)*/
|
Add workflow to trigger tag builds
|
Add workflow to trigger tag builds
|
YAML
|
mit
|
frederickfogerty/js-util,frederickfogerty/js-util,frederickfogerty/js-util
|
3b664b6c2a55efc175178c91cd68e95f659b6706
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
parallelism: 3
working_directory: ~/music-service-api
docker:
- image: circleci/ruby:2.4.1-node
environment:
RAILS_ENV: test
- image: circleci/postgres:9.4.12-alpine
steps:
- checkout
# Restore bundle cache
- restore_cache:
key: music-service-api-{{ checksum "Gemfile.lock" }}
# Bundle install dependencies
- run: bundle install --path vendor/bundle
# Store bundle cache
- save_cache:
key: music-service-api-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle
# Database setup
- run: bundle exec rake db:create
- run: bundle exec rake db:schema:load
# Run rspec in parallel
- type: shell
command: |
bundle exec rspec --profile 10 \
--format RspecJunitFormatter \
--out test_results/rspec.xml \
--format progress \
$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
# Save test results for timing analysis
- store_test_results:
path: test_results
|
version: 2
jobs:
build:
parallelism: 3
working_directory: ~/music-service-api
docker:
- image: circleci/ruby:2.4.1-node
environment:
RAILS_ENV: test
- image: circleci/postgres:9.4.12-alpine
steps:
- checkout
# Restore bundle cache
- restore_cache:
key: music-service-api-{{ checksum "Gemfile.lock" }}
# Bundle install dependencies
- run: bundle install --path vendor/bundle
# Store bundle cache
- save_cache:
key: music-service-api-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle
# Database setup
- run: bundle exec rake db:create
- run: bundle exec rake db:schema:load
environment:
DATABASE_URL: "postgres://ubuntu@localhost:5432/db_name"
# Run rspec in parallel
- type: shell
command: |
bundle exec rspec --profile 10 \
--format RspecJunitFormatter \
--out test_results/rspec.xml \
--format progress \
$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
# Save test results for timing analysis
- store_test_results:
path: test_results
|
Set DATABASE_URL env var in circleci
|
Set DATABASE_URL env var in circleci
|
YAML
|
mit
|
bcfalah/music-service-api,bcfalah/music-service-api
|
89b4b7167a3e3ff6e5ce1d6e5daeb04c0191a295
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2.1
orbs:
ruby-orbs: sue445/ruby-orbs@volatile
heroku: circleci/heroku@volatile
slack: circleci/slack@volatile
executors:
default:
docker:
- image: circleci/ruby:2.7.2
environment:
RACK_ENV: test
- image: circleci/postgres:9.4-alpine-ram
environment:
POSTGRES_USER: ubuntu
POSTGRES_DB: circle_test
working_directory: ~/app
jobs:
rspec:
executor:
name: default
steps:
- checkout
- ruby-orbs/bundle-install:
cache_key_prefix: "v3-bundle"
- run: cp .circleci/database.yml config/database.yml
- run: bundle exec rake ar:migrate:reset
- run: bundle exec rspec
- slack/notify:
event: fail
template: basic_fail_1
rubocop:
executor:
name: default
steps:
- checkout
- ruby-orbs/bundle-install:
cache_key_prefix: "v3-bundle"
- run: bundle exec rubocop
- slack/notify:
event: fail
template: basic_fail_1
workflows:
version: 2
build-and-deploy:
jobs:
- rspec
- rubocop
- heroku/deploy-via-git:
context: Heroku
requires:
- rspec
- rubocop
filters:
branches:
only: master
post-deploy:
- slack/notify:
event: fail
template: basic_fail_1
|
version: 2.1
orbs:
ruby-orbs: sue445/ruby-orbs@volatile
heroku: circleci/heroku@volatile
slack: circleci/slack@volatile
executors:
default:
docker:
- image: circleci/ruby:2.7.2
environment:
RACK_ENV: test
- image: circleci/postgres:9.4-alpine-ram
environment:
POSTGRES_USER: ubuntu
POSTGRES_DB: circle_test
working_directory: ~/app
jobs:
rspec:
executor:
name: default
steps:
- checkout
- ruby-orbs/bundle-install:
cache_key_prefix: "v3-bundle"
- run: cp .circleci/database.yml config/database.yml
- run: bundle exec rake ar:migrate:reset
- run: bundle exec rspec
- slack/notify:
event: fail
template: basic_fail_1
rubocop:
executor:
name: default
steps:
- checkout
- ruby-orbs/bundle-install:
cache_key_prefix: "v3-bundle"
- run: bundle exec rubocop
- slack/notify:
event: fail
template: basic_fail_1
workflows:
version: 2
build-and-deploy:
jobs:
- rspec
- rubocop
- heroku/deploy-via-git:
context: Heroku
requires:
- rspec
- rubocop
filters:
branches:
only: master
post-deploy:
- slack/status
|
Revert " slack/status is removed since circleci/slack v4.0.0"
|
Revert " slack/status is removed since circleci/slack v4.0.0"
This reverts commit b1d40eabf3b55b1932516de1995829ab563c8f6d.
|
YAML
|
mit
|
sue445/ccc_privacy_crawler,sue445/ccc_privacy_crawler,sue445/ccc_privacy_crawler
|
6fad245b6b0e82542364c6901699ad4258f9c0a0
|
metadata/wangdaye.com.geometricweather.yml
|
metadata/wangdaye.com.geometricweather.yml
|
AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: LGPL-3.0-only
AuthorName: wangdaye
SourceCode: https://github.com/WangDaYeeeeee/GeometricWeather
IssueTracker: https://github.com/WangDaYeeeeee/GeometricWeather/issues
Changelog: https://github.com/WangDaYeeeeee/GeometricWeather/releases
AutoName: Geometric Weather
RepoType: git
Repo: https://github.com/WangDaYeeeeee/GeometricWeather.git
Builds:
- versionName: 3.007_fdroid
versionCode: 30007
commit: '3.007'
subdir: app
gradle:
- fdroid
rm:
- app/libs/*
prebuild: perl -i -0 -p -e 's|maven {\n\s*url "https://dl.bintray.com/qichuan/maven/"\n\s*}||g'
build.gradle
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 3.007_fdroid
CurrentVersionCode: 30007
|
AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: LGPL-3.0-only
AuthorName: wangdaye
SourceCode: https://github.com/WangDaYeeeeee/GeometricWeather
IssueTracker: https://github.com/WangDaYeeeeee/GeometricWeather/issues
Changelog: https://github.com/WangDaYeeeeee/GeometricWeather/releases
AutoName: Geometric Weather
RepoType: git
Repo: https://github.com/WangDaYeeeeee/GeometricWeather.git
Builds:
- versionName: 3.007_fdroid
versionCode: 30007
commit: '3.007'
subdir: app
gradle:
- fdroid
rm:
- app/libs/*
prebuild: perl -i -0 -p -e 's|maven {\n\s*url "https://dl.bintray.com/qichuan/maven/"\n\s*}||g'
build.gradle
- versionName: 3.008_fdroid
versionCode: 30008
commit: '3.008'
subdir: app
gradle:
- fdroid
rm:
- app/libs/*
prebuild: perl -i -0 -p -e 's|maven {\n\s*url "https://dl.bintray.com/qichuan/maven/"\n\s*}||g'
build.gradle
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 3.008_fdroid
CurrentVersionCode: 30008
|
Update Geometric Weather to 3.008_fdroid (30008)
|
Update Geometric Weather to 3.008_fdroid (30008)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
09d593d0ec01f1831d042cfb36ca5fa972b42d99
|
roles/db/tasks/main.yml
|
roles/db/tasks/main.yml
|
---
- name: Add the PostgreSQL public GPG key to the apt repo
apt_key: url=https://www.postgresql.org/media/keys/ACCC4CF8.asc
state=present
- name: Add PostgreSQL to the sources list
apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ {{ ansible_distribution_release }}-pgdg main'
update_cache={{ update_apt_cache }}
state=present
- name: Install PostgreSQL
apt: name={{ item }} update_cache={{ update_apt_cache }} state=installed
with_items:
- postgresql
- postgresql-contrib
- python-psycopg2
tags: packages
- name: Ensure the PostgreSQL service is running
service: name=postgresql state=started enabled=yes
- name: Ensure database is created
become: yes
become_user: postgres
postgresql_db: name={{ db_name }}
encoding='UTF-8'
lc_collate='en_US.UTF-8'
lc_ctype='en_US.UTF-8'
template='template0'
state=present
- name: Ensure user has access to the database
become: yes
become_user: postgres
postgresql_user: db={{ db_name }}
name={{ db_user }}
password={{ db_password }}
priv=ALL
state=present
- name: Ensure user does not have unnecessary privileges
become: yes
become_user: postgres
postgresql_user: name={{ db_user }}
role_attr_flags=NOSUPERUSER,NOCREATEDB
state=present
|
---
- name: Ensure locale is available
locale_gen: name=en_US.UTF-8
- name: Add the PostgreSQL public GPG key to the apt repo
apt_key: url=https://www.postgresql.org/media/keys/ACCC4CF8.asc
state=present
- name: Add PostgreSQL to the sources list
apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ {{ ansible_distribution_release }}-pgdg main'
update_cache={{ update_apt_cache }}
state=present
- name: Install PostgreSQL
apt: name={{ item }} update_cache={{ update_apt_cache }} state=installed
with_items:
- postgresql
- postgresql-contrib
- python-psycopg2
tags: packages
- name: Ensure the PostgreSQL service is running
service: name=postgresql state=started enabled=yes
- name: Ensure database is created
become: yes
become_user: postgres
postgresql_db: name={{ db_name }}
encoding='UTF-8'
lc_collate='en_US.UTF-8'
lc_ctype='en_US.UTF-8'
template='template0'
state=present
- name: Ensure user has access to the database
become: yes
become_user: postgres
postgresql_user: db={{ db_name }}
name={{ db_user }}
password={{ db_password }}
priv=ALL
state=present
- name: Ensure user does not have unnecessary privileges
become: yes
become_user: postgres
postgresql_user: name={{ db_user }}
role_attr_flags=NOSUPERUSER,NOCREATEDB
state=present
|
Make sure db locale is available on the machine before setting this.
|
Make sure db locale is available on the machine before setting this.
|
YAML
|
mit
|
jcalazan/ansible-django-stack,DavidCain/mitoc-ansible,jcalazan/ansible-django-stack,DavidCain/mitoc-ansible,DavidCain/mitoc-ansible,YPCrumble/ansible-django-stack,YPCrumble/ansible-django-stack,YPCrumble/ansible-django-stack,jcalazan/ansible-django-stack
|
d71db3e8ab0f987cf89f46317d45c5b45c10818d
|
roles/go/tasks/main.yml
|
roles/go/tasks/main.yml
|
---
- name: Install Go
unarchive:
src: "https://storage.googleapis.com/golang/go{{ go_version }}.darwin-amd64.tar.gz"
dest: /usr/local
copy: no
creates: /usr/local/go/VERSION
tags:
- go
|
---
- name: Checking installed version of go
command: cat /usr/local/go/VERSION
register: current_go_version
ignore_errors: yes
tags:
- go
- name: Remove old version of Go
file:
path: /usr/local/go
state: absent
when: not "go{{ go_version }}" == current_go_version.stdout
tags:
- go
- name: Install Go
unarchive:
src: "https://storage.googleapis.com/golang/go{{ go_version }}.darwin-amd64.tar.gz"
dest: /usr/local
copy: no
creates: /usr/local/go/VERSION
when: not "go{{ go_version }}" == current_go_version.stdout
tags:
- go
|
Make it easy to upgrade go
|
Make it easy to upgrade go
* Check to see if go is installed and store the version
* Remove the current version of go if it is different
* Install new version of go
|
YAML
|
mit
|
tmiller/polka
|
bd09aa8a72c373a157c8b3c531ab38cca80fb98b
|
dmAdminPlugin/modules/dmCatalogue/config/generator.yml
|
dmAdminPlugin/modules/dmCatalogue/config/generator.yml
|
generator:
class: dmAdminDoctrineGenerator
param:
model_class: DmCatalogue
theme: dmAdmin
non_verbose_templates: true
with_show: false
route_prefix: dm_catalogue
with_doctrine_route: false
config:
actions: ~
fields: { }
list:
display:
- '=name'
- source_lang
- target_lang
sort:
- name
- asc
table_method: getAdminListQuery
table_count_method: ~
sortable: false
filter:
display:
- name
- source_lang
- target_lang
form:
display:
NONE: [name]
Others: [source_lang, target_lang]
class: DmCatalogueAdminForm
fields: { }
edit: ~
new: ~
|
generator:
class: dmAdminDoctrineGenerator
param:
model_class: DmCatalogue
theme: dmAdmin
non_verbose_templates: true
with_show: false
route_prefix: dm_catalogue
with_doctrine_route: false
config:
actions: ~
fields: { }
list:
display:
- '=name'
- source_lang
- target_lang
- units_list
sort:
- name
- asc
table_method: getAdminListQuery
table_count_method: ~
sortable: false
filter:
display:
- name
- source_lang
- target_lang
form:
display:
NONE: [name]
Others: [source_lang, target_lang]
Messages: [units_list]
class: DmCatalogueAdminForm
fields: { }
edit: ~
new: ~
|
Add message lists to catalogue admin
|
Add message lists to catalogue admin
|
YAML
|
mit
|
PolibudaInfo/diem,PolibudaInfo/diem,luiseduardohdbackup/diem,luiseduardohdbackup/diem,PolibudaInfo/diem,luiseduardohdbackup/diem,PolibudaInfo/diem,luiseduardohdbackup/diem
|
8f73a83d2a8fefd5cb4ee1dc35ccb3d1501aec7d
|
.zuul.d/project.yaml
|
.zuul.d/project.yaml
|
---
- project:
templates:
- openstack-lower-constraints-jobs
- openstack-python3-victoria-jobs
- check-requirements
- publish-openstack-docs-pti
- release-notes-jobs-python3
- periodic-stable-jobs
|
---
- project:
templates:
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs
- check-requirements
- publish-openstack-docs-pti
- release-notes-jobs-python3
- periodic-stable-jobs
|
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: Id626c4cea1f28b0c15f45052868e778a31a7ae9b
|
YAML
|
apache-2.0
|
stackforge/kolla,stackforge/kolla,stackforge/kolla,openstack/kolla,openstack/kolla
|
147fb6bc985e9da0ff6b80a8c2eb8e2012eb8829
|
modules/deploy/05-k8s-snapshots-deploy.yml
|
modules/deploy/05-k8s-snapshots-deploy.yml
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: k8s-snapshots
namespace: kube-system
spec:
replicas: 1
template:
metadata:
labels:
app: k8s-snapshots
spec:
containers:
- name: k8s-snapshots
image: elsdoerfer/k8s-snapshots:dev # v2.0 has a breaking bug in AWS support
env:
- name: USE_CLAIM_NAME
value: "true"
# k8s-snapshots need EBS and S3 permissions to take and save snapshots.
# Under the kops IAM Role scheme, only Masters have these permissions.
# The easiest solution was to run k8s-snapshots on Masters. See
# https://issues.gpii.net/browse/GPII-2545?focusedCommentId=28509&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-28509
#
# To run on a Master, we need to:
# * overcome a Taint -- see
# https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
#
# * specify that we require a Master -- see
# https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
tolerations:
- key: "node-role.kubernetes.io/master"
operator: "Equal"
value: ""
effect: "NoSchedule"
nodeSelector:
kubernetes.io/role: master
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: k8s-snapshots
namespace: kube-system
spec:
replicas: 1
template:
metadata:
labels:
app: k8s-snapshots
spec:
containers:
- name: k8s-snapshots
# Temporarily using mrtyler version of this image due to
# https://github.com/miracle2k/k8s-snapshots/issues/53
image: mrtyler/k8s-snapshots:dev # Use :dev because :v2.0 has a breaking bug in AWS support
env:
- name: USE_CLAIM_NAME
value: "true"
# k8s-snapshots need EBS and S3 permissions to take and save snapshots.
# Under the kops IAM Role scheme, only Masters have these permissions.
# The easiest solution was to run k8s-snapshots on Masters. See
# https://issues.gpii.net/browse/GPII-2545?focusedCommentId=28509&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-28509
#
# To run on a Master, we need to:
# * overcome a Taint -- see
# https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
#
# * specify that we require a Master -- see
# https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
tolerations:
- key: "node-role.kubernetes.io/master"
operator: "Equal"
value: ""
effect: "NoSchedule"
nodeSelector:
kubernetes.io/role: master
|
Use mrtyler version of k8s-snapshots.
|
Use mrtyler version of k8s-snapshots.
Due to https://github.com/miracle2k/k8s-snapshots/issues/53
|
YAML
|
bsd-3-clause
|
mrtyler/gpii-infra,mrtyler/gpii-infra,mrtyler/gpii-terraform,mrtyler/gpii-infra,mrtyler/gpii-terraform,mrtyler/gpii-terraform,mrtyler/gpii-infra
|
350147de421de8d2bc23e1a58d2afba54309eae0
|
ansible/host_vars/_example.yml
|
ansible/host_vars/_example.yml
|
flexget_tasks:
- { name: "an_rss_feed", rss: "http://a_url"}
millpond_transmission_user: something
millpond_transmission_pass: redacted
letsencrypt_dir: /etc/letsencrypt/live/istic.net
|
#####
# Flexget configuration
flexget_tasks:
- { name: "an_rss_feed", rss: "http://a_url"}
#####
# Transmission configuration
millpond_transmission_user: something
millpond_transmission_pass: redacted
#####
# nginx config
letsencrypt_dir: /etc/letsencrypt/live/[certname]
#####
# plex update settings
plex_email: [email protected]
plex_password: s3cret
#####
# Retort (Kettle controller)
# Allows IPs that start with these numbers
retort_allow_ip:
- "192.168"
- "82.6.184.52"
retort_server_name: kettle.supersecret-dynamicdns-name.net
retort_server_alias: kettle.local
retort_htaccess: /etc/apache2/users
#####
# Filebot install version
# Currently there's no update detection, so if you change this
# delete /usr/bin/filebot on the servers to force the upgrade.
filebot_version: 4.7.8
|
Update example config & docs
|
Update example config & docs
|
YAML
|
mit
|
aquarion/autopelago,aquarion/autopelago,aquarion/autopelago
|
54d348c3e4e40a1712fe6b3a6a2049f5c0a8075d
|
construi.yml
|
construi.yml
|
image: python:2.7
default: test
targets:
versiune:
image: lstephen/versiune:14
run:
- VERSION
- -f python construi/__version__.py
test_p27: &test_p
before:
- versiune
run: python setup.py test
test_p34:
<<: *test_p
image: python:3.4
test:
before:
- test_p27
- test_p34
run: echo 'Done'
package:
before:
- versiune
run:
- rm -rf dist
- python setup.py sdist
release:
before:
- package
environment:
- DRY_RUN
- TWINE_USERNAME
- TWINE_PASSWORD
volumes:
- $GIT_SSH_KEY:/ssh/id_rsa
run: scripts/release.sh
flake8: python setup.py flake8
format: python setup.py yapf
|
image: python:2.7
default: test
targets:
test_p27: &test_p
run: python setup.py test
test_p34:
<<: *test_p
image: python:3.4
test:
before:
- test_p27
- test_p34
package:
run:
- rm -rf dist
- python setup.py sdist
release:
before:
- package
environment:
- DRY_RUN
- TWINE_USERNAME
- TWINE_PASSWORD
volumes:
- $GIT_SSH_KEY:/ssh/id_rsa
run: scripts/release.sh
flake8: python setup.py flake8
format: python setup.py yapf
|
Remove versiune use in travis
|
Remove versiune use in travis
|
YAML
|
apache-2.0
|
lstephen/construi
|
4ccbabb39be9106ffff30e8466632aa1831bd1e1
|
.landscape.yaml
|
.landscape.yaml
|
doc-warnings: yes
test-warnings: yes
strictness: high
max-line-length: 80
autodetect: no
pep8:
full: true
pyroma:
run: true
vulture:
run: true
|
doc-warnings: yes
test-warnings: yes
strictness: high
max-line-length: 80
autodetect: no
pep8:
full: true
pyroma:
run: true
|
Remove vulture from prospector run.
|
Remove vulture from prospector run.
|
YAML
|
mit
|
jorik041/txrudp,Renelvon/txrudp,OpenBazaar/txrudp
|
02fa5ef1bd98ca2ed702d3f2f5bf3d15962dddcc
|
.landscape.yaml
|
.landscape.yaml
|
ignore-paths:
- doc
- cli.py
- test
- alembic
- app_context_rqworker.py
- warm.py
pylint:
disable:
- F0401
- E0611
- W0613
|
ignore-paths:
- doc
- cli.py
- test
- alembic
- app_context_rqworker.py
- warm.py
pylint:
disable:
- E0611
- F0401
- W0613
|
Change order of ignore error.
|
Change order of ignore error.
|
YAML
|
agpl-3.0
|
stefanhahmann/pybossa,PyBossa/pybossa,inteligencia-coletiva-lsd/pybossa,geotagx/pybossa,jean/pybossa,inteligencia-coletiva-lsd/pybossa,stefanhahmann/pybossa,jean/pybossa,geotagx/pybossa,Scifabric/pybossa,Scifabric/pybossa,PyBossa/pybossa,OpenNewsLabs/pybossa,OpenNewsLabs/pybossa
|
485dd0a59da089b5c85fb35977fd241498da3239
|
packages/am/amrun.yaml
|
packages/am/amrun.yaml
|
homepage: ''
changelog-type: ''
hash: aa45956d66e8b64d57b42f33753688e028e9b44d992d99cc06514aa4150d639d
test-bench-deps: {}
maintainer: [email protected]
synopsis: Interpreter for AM
changelog: ''
basic-deps:
base: ! '>=3 && <5'
parsec: ! '>=3.0 && <3.2'
deepseq: ! '>=1.0 && <1.5'
all-versions:
- '0.0'
- 0.0.0.1
- 0.0.0.2
- 0.0.0.3
- 0.0.0.4
- 0.0.0.5
- 0.0.0.6
author: Daniel Seidel and Janis Voigtlaender
latest: 0.0.0.6
description-type: haddock
description: The package contains an interpreter for the AM-Language that is introduced
in the basic programming course \"Algorithmisches Denken und imperative Programmierung\"
(WS 2011/12 and later) at the University of Bonn.
license-name: LicenseRef-GPL
|
homepage: ''
changelog-type: ''
hash: a8e2fda769004d057891c8259f8cdce8ff2949ab739a337db57da380a0bd6fd1
test-bench-deps: {}
maintainer: [email protected]
synopsis: Interpreter for AM
changelog: ''
basic-deps:
base: ! '>=3 && <5'
parsec: ! '>=3.0 && <3.2'
deepseq: ! '>=1.0 && <1.5'
all-versions:
- '0.0'
- 0.0.0.1
- 0.0.0.2
- 0.0.0.3
- 0.0.0.4
- 0.0.0.5
- 0.0.0.6
- 0.0.0.7
author: Daniel Seidel and Janis Voigtlaender
latest: 0.0.0.7
description-type: haddock
description: The package contains an interpreter for the AM-Language that is introduced
in the basic programming course \"Algorithmisches Denken und imperative Programmierung\"
(WS 2011/12 and later) at the University of Bonn.
license-name: LicenseRef-GPL
|
Update from Hackage at 2020-01-17T10:16:55Z
|
Update from Hackage at 2020-01-17T10:16:55Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
cd9069c60417e00780d76fca6fbc3adacbe444a2
|
metadata/uk.co.richyhbm.monochromatic.yml
|
metadata/uk.co.richyhbm.monochromatic.yml
|
Categories:
- Graphics
- Reading
- Theming
License: Apache-2.0
SourceCode: https://github.com/RichyHBM/Monochromatic
IssueTracker: https://github.com/RichyHBM/Monochromatic/issues
AutoName: Monochromatic
Summary: Enable the built-in black and white mode
Description: |-
This app makes use of the built-in black and white device feature to provide
a blue-light filtered screen without the use of an overlay screen, to help
relax your eyes at night and disincentivise phone usage.
RepoType: git
Repo: https://github.com/RichyHBM/Monochromatic
Builds:
- versionName: '0.2'
versionCode: 1
commit: v0.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '0.2'
CurrentVersionCode: 1
|
Categories:
- Graphics
- Reading
- Theming
License: Apache-2.0
SourceCode: https://github.com/RichyHBM/Monochromatic
IssueTracker: https://github.com/RichyHBM/Monochromatic/issues
AutoName: Monochromatic
Summary: Enable the built-in black and white mode
Description: |-
This app makes use of the built-in black and white device feature to provide
a blue-light filtered screen without the use of an overlay screen, to help
relax your eyes at night and disincentivise phone usage.
RepoType: git
Repo: https://github.com/RichyHBM/Monochromatic
Builds:
- versionName: '0.2'
versionCode: 1
commit: v0.2
subdir: app
gradle:
- yes
- versionName: 0.3.1
versionCode: 4
commit: v0.3.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.3.1
CurrentVersionCode: 4
|
Update Monochromatic to 0.3.1 (4)
|
Update Monochromatic to 0.3.1 (4)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata
|
d5efb54785181e9f9adb374ba4d2c268ce219e6f
|
rest-api-spec/test/delete_by_query/10_basic.yaml
|
rest-api-spec/test/delete_by_query/10_basic.yaml
|
---
"Basic delete_by_query":
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
- do:
index:
index: test_1
type: test
id: 2
body: { foo: baz }
- do:
index:
index: test_1
type: test
id: 3
body: { foo: foo }
- do:
indices.refresh: {}
- do:
delete_by_query:
index: test_1
body:
query:
match:
foo: bar
- is_true: ok
- do:
indices.refresh: {}
- do:
count:
index: test_1
- match: { count: 2 }
|
---
"Basic delete_by_query, post 1.0":
- skip:
version: "0 - 0.999"
reason: "Since 1.0 the query top-level key in the body is required"
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
- do:
index:
index: test_1
type: test
id: 2
body: { foo: baz }
- do:
index:
index: test_1
type: test
id: 3
body: { foo: foo }
- do:
indices.refresh: {}
- do:
delete_by_query:
index: test_1
body:
query:
match:
foo: bar
- is_true: ok
- do:
indices.refresh: {}
- do:
count:
index: test_1
- match: { count: 2 }
---
"Basic delete_by_query, pre 1.0":
- skip:
version: "1 - 999"
reason: "Since 1.0 the query top-level key in the body is required"
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
- do:
index:
index: test_1
type: test
id: 2
body: { foo: baz }
- do:
index:
index: test_1
type: test
id: 3
body: { foo: foo }
- do:
indices.refresh: {}
- do:
delete_by_query:
index: test_1
body:
match:
foo: bar
- is_true: ok
- do:
indices.refresh: {}
- do:
count:
index: test_1
- match: { count: 2 }
|
Split delete by query tests pre-1.0 and post-1.0
|
[TEST] Split delete by query tests pre-1.0 and post-1.0
See #4074 for details
|
YAML
|
apache-2.0
|
masterweb121/elasticsearch,jsgao0/elasticsearch,scorpionvicky/elasticsearch,mkis-/elasticsearch,ouyangkongtong/elasticsearch,fekaputra/elasticsearch,dantuffery/elasticsearch,humandb/elasticsearch,lchennup/elasticsearch,nezirus/elasticsearch,SergVro/elasticsearch,pablocastro/elasticsearch,mnylen/elasticsearch,JervyShi/elasticsearch,tahaemin/elasticsearch,hanswang/elasticsearch,ivansun1010/elasticsearch,rhoml/elasticsearch,PhaedrusTheGreek/elasticsearch,wimvds/elasticsearch,AndreKR/elasticsearch,MjAbuz/elasticsearch,abibell/elasticsearch,mjhennig/elasticsearch,socialrank/elasticsearch,sc0ttkclark/elasticsearch,caengcjd/elasticsearch,naveenhooda2000/elasticsearch,s1monw/elasticsearch,mmaracic/elasticsearch,wittyameta/elasticsearch,GlenRSmith/elasticsearch,mjason3/elasticsearch,nellicus/elasticsearch,ajhalani/elasticsearch,yanjunh/elasticsearch,mbrukman/elasticsearch,jimhooker2002/elasticsearch,golubev/elasticsearch,geidies/elasticsearch,onegambler/elasticsearch,kimimj/elasticsearch,tahaemin/elasticsearch,javachengwc/elasticsearch,umeshdangat/elasticsearch,kalburgimanjunath/elasticsearch,polyfractal/elasticsearch,HonzaKral/elasticsearch,drewr/elasticsearch,weipinghe/elasticsearch,liweinan0423/elasticsearch,Ansh90/elasticsearch,linglaiyao1314/elasticsearch,javachengwc/elasticsearch,abibell/elasticsearch,nomoa/elasticsearch,GlenRSmith/elasticsearch,lmtwga/elasticsearch,khiraiwa/elasticsearch,vorce/es-metrics,schonfeld/elasticsearch,pozhidaevak/elasticsearch,aglne/elasticsearch,janmejay/elasticsearch,zhiqinghuang/elasticsearch,karthikjaps/elasticsearch,kimimj/elasticsearch,KimTaehee/elasticsearch,lydonchandra/elasticsearch,jimczi/elasticsearch,nomoa/elasticsearch,mjhennig/elasticsearch,MetSystem/elasticsearch,nrkkalyan/elasticsearch,jpountz/elasticsearch,areek/elasticsearch,YosuaMichael/elasticsearch,beiske/elasticsearch,anti-social/elasticsearch,uschindler/elasticsearch,markwalkom/elasticsearch,myelin/elasticsearch,queirozfcom/elasticsearch,chrismwendt/elasticsearch,Kakakakakku/elasticsearch,nellicus/elasticsearch,sscarduzio/elasticsearch,slavau/elasticsearch,markharwood/elasticsearch,LewayneNaidoo/elasticsearch,amit-shar/elasticsearch,nrkkalyan/elasticsearch,kcompher/elasticsearch,hanst/elasticsearch,Rygbee/elasticsearch,vingupta3/elasticsearch,Liziyao/elasticsearch,obourgain/elasticsearch,polyfractal/elasticsearch,springning/elasticsearch,Kakakakakku/elasticsearch,yanjunh/elasticsearch,wbowling/elasticsearch,acchen97/elasticsearch,andrejserafim/elasticsearch,jango2015/elasticsearch,rento19962/elasticsearch,onegambler/elasticsearch,Siddartha07/elasticsearch,sneivandt/elasticsearch,markllama/elasticsearch,hydro2k/elasticsearch,aparo/elasticsearch,franklanganke/elasticsearch,dylan8902/elasticsearch,adrianbk/elasticsearch,dongjoon-hyun/elasticsearch,hirdesh2008/elasticsearch,sauravmondallive/elasticsearch,hafkensite/elasticsearch,rento19962/elasticsearch,sauravmondallive/elasticsearch,Rygbee/elasticsearch,caengcjd/elasticsearch,mm0/elasticsearch,kingaj/elasticsearch,fred84/elasticsearch,snikch/elasticsearch,ivansun1010/elasticsearch,GlenRSmith/elasticsearch,mikemccand/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,karthikjaps/elasticsearch,nilabhsagar/elasticsearch,Kakakakakku/elasticsearch,hechunwen/elasticsearch,phani546/elasticsearch,Widen/elasticsearch,alexbrasetvik/elasticsearch,andrestc/elasticsearch,yuy168/elasticsearch,qwerty4030/elasticsearch,wangtuo/elasticsearch,sarwarbhuiyan/elasticsearch,mcku/elasticsearch,palecur/elasticsearch,yynil/elasticsearch,vingupta3/elasticsearch,mohsinh/elasticsearch,sreeramjayan/elasticsearch,andrestc/elasticsearch,polyfractal/elasticsearch,bestwpw/elasticsearch,Siddartha07/elasticsearch,gingerwizard/elasticsearch,jchampion/elasticsearch,fred84/elasticsearch,fubuki/elasticsearch,Microsoft/elasticsearch,Ansh90/elasticsearch,humandb/elasticsearch,marcuswr/elasticsearch-dateline,kalburgimanjunath/elasticsearch,btiernay/elasticsearch,fekaputra/elasticsearch,btiernay/elasticsearch,hafkensite/elasticsearch,chrismwendt/elasticsearch,huypx1292/elasticsearch,sneivandt/elasticsearch,vietlq/elasticsearch,hechunwen/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,bawse/elasticsearch,strapdata/elassandra,lzo/elasticsearch-1,drewr/elasticsearch,amaliujia/elasticsearch,glefloch/elasticsearch,fooljohnny/elasticsearch,TonyChai24/ESSource,uschindler/elasticsearch,apepper/elasticsearch,camilojd/elasticsearch,huypx1292/elasticsearch,djschny/elasticsearch,martinstuga/elasticsearch,KimTaehee/elasticsearch,koxa29/elasticsearch,infusionsoft/elasticsearch,Fsero/elasticsearch,diendt/elasticsearch,linglaiyao1314/elasticsearch,springning/elasticsearch,socialrank/elasticsearch,bawse/elasticsearch,karthikjaps/elasticsearch,lzo/elasticsearch-1,hirdesh2008/elasticsearch,avikurapati/elasticsearch,ZTE-PaaS/elasticsearch,peschlowp/elasticsearch,lchennup/elasticsearch,awislowski/elasticsearch,scorpionvicky/elasticsearch,Clairebi/ElasticsearchClone,VukDukic/elasticsearch,Kakakakakku/elasticsearch,MjAbuz/elasticsearch,rhoml/elasticsearch,schonfeld/elasticsearch,wayeast/elasticsearch,bestwpw/elasticsearch,Chhunlong/elasticsearch,zeroctu/elasticsearch,kevinkluge/elasticsearch,rento19962/elasticsearch,lks21c/elasticsearch,strapdata/elassandra-test,lydonchandra/elasticsearch,avikurapati/elasticsearch,nilabhsagar/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,LeoYao/elasticsearch,jprante/elasticsearch,gingerwizard/elasticsearch,pranavraman/elasticsearch,petabytedata/elasticsearch,yongminxia/elasticsearch,humandb/elasticsearch,rhoml/elasticsearch,nrkkalyan/elasticsearch,kcompher/elasticsearch,yuy168/elasticsearch,camilojd/elasticsearch,opendatasoft/elasticsearch,kevinkluge/elasticsearch,aparo/elasticsearch,Shekharrajak/elasticsearch,tsohil/elasticsearch,tebriel/elasticsearch,sscarduzio/elasticsearch,Clairebi/ElasticsearchClone,mkis-/elasticsearch,Collaborne/elasticsearch,elasticdog/elasticsearch,YosuaMichael/elasticsearch,salyh/elasticsearch,kevinkluge/elasticsearch,dpursehouse/elasticsearch,winstonewert/elasticsearch,xingguang2013/elasticsearch,lzo/elasticsearch-1,ydsakyclguozi/elasticsearch,smflorentino/elasticsearch,Asimov4/elasticsearch,mcku/elasticsearch,ulkas/elasticsearch,zkidkid/elasticsearch,vingupta3/elasticsearch,AshishThakur/elasticsearch,masterweb121/elasticsearch,MaineC/elasticsearch,easonC/elasticsearch,strapdata/elassandra5-rc,kalimatas/elasticsearch,bestwpw/elasticsearch,scottsom/elasticsearch,Brijeshrpatel9/elasticsearch,sc0ttkclark/elasticsearch,hydro2k/elasticsearch,lmtwga/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,hirdesh2008/elasticsearch,wenpos/elasticsearch,Clairebi/ElasticsearchClone,combinatorist/elasticsearch,aglne/elasticsearch,jango2015/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,Shepard1212/elasticsearch,masaruh/elasticsearch,springning/elasticsearch,petabytedata/elasticsearch,wuranbo/elasticsearch,abibell/elasticsearch,bestwpw/elasticsearch,episerver/elasticsearch,lmtwga/elasticsearch,queirozfcom/elasticsearch,sdauletau/elasticsearch,marcuswr/elasticsearch-dateline,drewr/elasticsearch,linglaiyao1314/elasticsearch,Shekharrajak/elasticsearch,jchampion/elasticsearch,girirajsharma/elasticsearch,iamjakob/elasticsearch,ThalaivaStars/OrgRepo1,uschindler/elasticsearch,IanvsPoplicola/elasticsearch,mute/elasticsearch,masterweb121/elasticsearch,kkirsche/elasticsearch,vietlq/elasticsearch,ThiagoGarciaAlves/elasticsearch,amit-shar/elasticsearch,elancom/elasticsearch,sreeramjayan/elasticsearch,ThiagoGarciaAlves/elasticsearch,andrejserafim/elasticsearch,rento19962/elasticsearch,fubuki/elasticsearch,easonC/elasticsearch,alexksikes/elasticsearch,wittyameta/elasticsearch,luiseduardohdbackup/elasticsearch,strapdata/elassandra-test,tcucchietti/elasticsearch,kimimj/elasticsearch,JackyMai/elasticsearch,kubum/elasticsearch,alexksikes/elasticsearch,ricardocerq/elasticsearch,sdauletau/elasticsearch,wayeast/elasticsearch,thecocce/elasticsearch,dongjoon-hyun/elasticsearch,fooljohnny/elasticsearch,yongminxia/elasticsearch,vvcephei/elasticsearch,SergVro/elasticsearch,henakamaMSFT/elasticsearch,linglaiyao1314/elasticsearch,kcompher/elasticsearch,feiqitian/elasticsearch,golubev/elasticsearch,tahaemin/elasticsearch,F0lha/elasticsearch,apepper/elasticsearch,HarishAtGitHub/elasticsearch,jimhooker2002/elasticsearch,glefloch/elasticsearch,linglaiyao1314/elasticsearch,peschlowp/elasticsearch,fred84/elasticsearch,uboness/elasticsearch,Fsero/elasticsearch,weipinghe/elasticsearch,sauravmondallive/elasticsearch,szroland/elasticsearch,ImpressTV/elasticsearch,lzo/elasticsearch-1,NBSW/elasticsearch,chirilo/elasticsearch,likaiwalkman/elasticsearch,sjohnr/elasticsearch,mcku/elasticsearch,kenshin233/elasticsearch,davidvgalbraith/elasticsearch,feiqitian/elasticsearch,EasonYi/elasticsearch,Microsoft/elasticsearch,franklanganke/elasticsearch,kenshin233/elasticsearch,iamjakob/elasticsearch,anti-social/elasticsearch,nknize/elasticsearch,brandonkearby/elasticsearch,aparo/elasticsearch,ckclark/elasticsearch,truemped/elasticsearch,jango2015/elasticsearch,hanswang/elasticsearch,Uiho/elasticsearch,dataduke/elasticsearch,LewayneNaidoo/elasticsearch,yongminxia/elasticsearch,trangvh/elasticsearch,sreeramjayan/elasticsearch,acchen97/elasticsearch,vorce/es-metrics,xingguang2013/elasticsearch,vingupta3/elasticsearch,mrorii/elasticsearch,areek/elasticsearch,markllama/elasticsearch,uboness/elasticsearch,nknize/elasticsearch,kingaj/elasticsearch,sneivandt/elasticsearch,slavau/elasticsearch,sposam/elasticsearch,loconsolutions/elasticsearch,IanvsPoplicola/elasticsearch,ZTE-PaaS/elasticsearch,jeteve/elasticsearch,martinstuga/elasticsearch,alexshadow007/elasticsearch,obourgain/elasticsearch,i-am-Nathan/elasticsearch,weipinghe/elasticsearch,andrestc/elasticsearch,dylan8902/elasticsearch,LeoYao/elasticsearch,mohit/elasticsearch,wangyuxue/elasticsearch,C-Bish/elasticsearch,onegambler/elasticsearch,libosu/elasticsearch,EasonYi/elasticsearch,rhoml/elasticsearch,raishiv/elasticsearch,alexkuk/elasticsearch,Microsoft/elasticsearch,zkidkid/elasticsearch,hanswang/elasticsearch,JervyShi/elasticsearch,andrestc/elasticsearch,YosuaMichael/elasticsearch,winstonewert/elasticsearch,mmaracic/elasticsearch,knight1128/elasticsearch,knight1128/elasticsearch,geidies/elasticsearch,brwe/elasticsearch,raishiv/elasticsearch,kunallimaye/elasticsearch,henakamaMSFT/elasticsearch,MjAbuz/elasticsearch,ckclark/elasticsearch,LewayneNaidoo/elasticsearch,Widen/elasticsearch,sc0ttkclark/elasticsearch,SergVro/elasticsearch,dantuffery/elasticsearch,opendatasoft/elasticsearch,btiernay/elasticsearch,AshishThakur/elasticsearch,fubuki/elasticsearch,anti-social/elasticsearch,jpountz/elasticsearch,dylan8902/elasticsearch,mbrukman/elasticsearch,jango2015/elasticsearch,iantruslove/elasticsearch,petabytedata/elasticsearch,markharwood/elasticsearch,ydsakyclguozi/elasticsearch,trangvh/elasticsearch,sarwarbhuiyan/elasticsearch,elasticdog/elasticsearch,beiske/elasticsearch,pablocastro/elasticsearch,liweinan0423/elasticsearch,C-Bish/elasticsearch,fforbeck/elasticsearch,nezirus/elasticsearch,rajanm/elasticsearch,Chhunlong/elasticsearch,mmaracic/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,mbrukman/elasticsearch,pritishppai/elasticsearch,mgalushka/elasticsearch,dpursehouse/elasticsearch,JervyShi/elasticsearch,18098924759/elasticsearch,Rygbee/elasticsearch,uboness/elasticsearch,amaliujia/elasticsearch,JSCooke/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,opendatasoft/elasticsearch,Helen-Zhao/elasticsearch,wimvds/elasticsearch,ivansun1010/elasticsearch,tcucchietti/elasticsearch,alexshadow007/elasticsearch,hirdesh2008/elasticsearch,himanshuag/elasticsearch,qwerty4030/elasticsearch,linglaiyao1314/elasticsearch,huanzhong/elasticsearch,scorpionvicky/elasticsearch,fooljohnny/elasticsearch,coding0011/elasticsearch,hirdesh2008/elasticsearch,milodky/elasticsearch,phani546/elasticsearch,GlenRSmith/elasticsearch,i-am-Nathan/elasticsearch,mjason3/elasticsearch,lzo/elasticsearch-1,mute/elasticsearch,Chhunlong/elasticsearch,wangtuo/elasticsearch,abhijitiitr/es,feiqitian/elasticsearch,kingaj/elasticsearch,iantruslove/elasticsearch,cnfire/elasticsearch-1,amit-shar/elasticsearch,AleksKochev/elasticsearch,MisterAndersen/elasticsearch,alexkuk/elasticsearch,wbowling/elasticsearch,LeoYao/elasticsearch,sarwarbhuiyan/elasticsearch,PhaedrusTheGreek/elasticsearch,Collaborne/elasticsearch,javachengwc/elasticsearch,Ansh90/elasticsearch,robin13/elasticsearch,tcucchietti/elasticsearch,diendt/elasticsearch,Liziyao/elasticsearch,bawse/elasticsearch,jimhooker2002/elasticsearch,ydsakyclguozi/elasticsearch,aglne/elasticsearch,JackyMai/elasticsearch,opendatasoft/elasticsearch,ouyangkongtong/elasticsearch,luiseduardohdbackup/elasticsearch,MichaelLiZhou/elasticsearch,micpalmia/elasticsearch,snikch/elasticsearch,mapr/elasticsearch,janmejay/elasticsearch,MisterAndersen/elasticsearch,lydonchandra/elasticsearch,HarishAtGitHub/elasticsearch,Asimov4/elasticsearch,wittyameta/elasticsearch,markllama/elasticsearch,weipinghe/elasticsearch,gfyoung/elasticsearch,sdauletau/elasticsearch,naveenhooda2000/elasticsearch,amit-shar/elasticsearch,mkis-/elasticsearch,sreeramjayan/elasticsearch,cwurm/elasticsearch,wuranbo/elasticsearch,artnowo/elasticsearch,heng4fun/elasticsearch,jpountz/elasticsearch,mbrukman/elasticsearch,artnowo/elasticsearch,MjAbuz/elasticsearch,rlugojr/elasticsearch,Ansh90/elasticsearch,jimczi/elasticsearch,iamjakob/elasticsearch,petmit/elasticsearch,markharwood/elasticsearch,rento19962/elasticsearch,henakamaMSFT/elasticsearch,KimTaehee/elasticsearch,koxa29/elasticsearch,gingerwizard/elasticsearch,jimhooker2002/elasticsearch,coding0011/elasticsearch,mohsinh/elasticsearch,abibell/elasticsearch,xingguang2013/elasticsearch,schonfeld/elasticsearch,phani546/elasticsearch,avikurapati/elasticsearch,sreeramjayan/elasticsearch,JackyMai/elasticsearch,tebriel/elasticsearch,kenshin233/elasticsearch,dylan8902/elasticsearch,infusionsoft/elasticsearch,chirilo/elasticsearch,Shekharrajak/elasticsearch,i-am-Nathan/elasticsearch,a2lin/elasticsearch,iamjakob/elasticsearch,scottsom/elasticsearch,jw0201/elastic,ThalaivaStars/OrgRepo1,xuzha/elasticsearch,sjohnr/elasticsearch,overcome/elasticsearch,njlawton/elasticsearch,uschindler/elasticsearch,thecocce/elasticsearch,ThalaivaStars/OrgRepo1,robin13/elasticsearch,marcuswr/elasticsearch-dateline,hydro2k/elasticsearch,javachengwc/elasticsearch,hanswang/elasticsearch,sdauletau/elasticsearch,jprante/elasticsearch,Uiho/elasticsearch,beiske/elasticsearch,jbertouch/elasticsearch,pablocastro/elasticsearch,s1monw/elasticsearch,jprante/elasticsearch,kenshin233/elasticsearch,ckclark/elasticsearch,kenshin233/elasticsearch,davidvgalbraith/elasticsearch,rmuir/elasticsearch,martinstuga/elasticsearch,fernandozhu/elasticsearch,tahaemin/elasticsearch,sscarduzio/elasticsearch,truemped/elasticsearch,i-am-Nathan/elasticsearch,cwurm/elasticsearch,sneivandt/elasticsearch,overcome/elasticsearch,jw0201/elastic,wayeast/elasticsearch,jaynblue/elasticsearch,gmarz/elasticsearch,lydonchandra/elasticsearch,mbrukman/elasticsearch,areek/elasticsearch,jango2015/elasticsearch,kcompher/elasticsearch,drewr/elasticsearch,ImpressTV/elasticsearch,zhaocloud/elasticsearch,alexbrasetvik/elasticsearch,mgalushka/elasticsearch,strapdata/elassandra,raishiv/elasticsearch,JSCooke/elasticsearch,micpalmia/elasticsearch,JervyShi/elasticsearch,nrkkalyan/elasticsearch,tcucchietti/elasticsearch,spiegela/elasticsearch,heng4fun/elasticsearch,vrkansagara/elasticsearch,nomoa/elasticsearch,vorce/es-metrics,18098924759/elasticsearch,knight1128/elasticsearch,awislowski/elasticsearch,mrorii/elasticsearch,gingerwizard/elasticsearch,tebriel/elasticsearch,tkssharma/elasticsearch,nrkkalyan/elasticsearch,palecur/elasticsearch,iantruslove/elasticsearch,salyh/elasticsearch,rmuir/elasticsearch,mnylen/elasticsearch,s1monw/elasticsearch,Chhunlong/elasticsearch,ZTE-PaaS/elasticsearch,mnylen/elasticsearch,a2lin/elasticsearch,camilojd/elasticsearch,rmuir/elasticsearch,coding0011/elasticsearch,hanswang/elasticsearch,markharwood/elasticsearch,ThalaivaStars/OrgRepo1,mrorii/elasticsearch,artnowo/elasticsearch,xingguang2013/elasticsearch,markharwood/elasticsearch,girirajsharma/elasticsearch,areek/elasticsearch,pritishppai/elasticsearch,andrejserafim/elasticsearch,easonC/elasticsearch,SergVro/elasticsearch,milodky/elasticsearch,hydro2k/elasticsearch,Asimov4/elasticsearch,janmejay/elasticsearch,himanshuag/elasticsearch,lightslife/elasticsearch,drewr/elasticsearch,HarishAtGitHub/elasticsearch,vroyer/elassandra,MaineC/elasticsearch,davidvgalbraith/elasticsearch,iacdingping/elasticsearch,fekaputra/elasticsearch,hanswang/elasticsearch,petmit/elasticsearch,Widen/elasticsearch,kingaj/elasticsearch,strapdata/elassandra,petabytedata/elasticsearch,mkis-/elasticsearch,tkssharma/elasticsearch,wangtuo/elasticsearch,zhiqinghuang/elasticsearch,uboness/elasticsearch,ajhalani/elasticsearch,zhaocloud/elasticsearch,zhiqinghuang/elasticsearch,Shekharrajak/elasticsearch,Shekharrajak/elasticsearch,mohsinh/elasticsearch,koxa29/elasticsearch,obourgain/elasticsearch,mjhennig/elasticsearch,chrismwendt/elasticsearch,Shekharrajak/elasticsearch,Fsero/elasticsearch,camilojd/elasticsearch,gfyoung/elasticsearch,Widen/elasticsearch,jaynblue/elasticsearch,a2lin/elasticsearch,TonyChai24/ESSource,kkirsche/elasticsearch,HarishAtGitHub/elasticsearch,clintongormley/elasticsearch,diendt/elasticsearch,jpountz/elasticsearch,vietlq/elasticsearch,amit-shar/elasticsearch,apepper/elasticsearch,xuzha/elasticsearch,djschny/elasticsearch,pablocastro/elasticsearch,mmaracic/elasticsearch,mohsinh/elasticsearch,Uiho/elasticsearch,brwe/elasticsearch,fernandozhu/elasticsearch,lydonchandra/elasticsearch,andrejserafim/elasticsearch,dataduke/elasticsearch,markllama/elasticsearch,ThalaivaStars/OrgRepo1,himanshuag/elasticsearch,vvcephei/elasticsearch,sjohnr/elasticsearch,StefanGor/elasticsearch,jw0201/elastic,acchen97/elasticsearch,diendt/elasticsearch,petabytedata/elasticsearch,tkssharma/elasticsearch,masaruh/elasticsearch,dataduke/elasticsearch,alexkuk/elasticsearch,AndreKR/elasticsearch,mnylen/elasticsearch,Ansh90/elasticsearch,hechunwen/elasticsearch,skearns64/elasticsearch,coding0011/elasticsearch,ulkas/elasticsearch,fforbeck/elasticsearch,naveenhooda2000/elasticsearch,marcuswr/elasticsearch-dateline,jsgao0/elasticsearch,himanshuag/elasticsearch,huanzhong/elasticsearch,obourgain/elasticsearch,JSCooke/elasticsearch,huanzhong/elasticsearch,xingguang2013/elasticsearch,Stacey-Gammon/elasticsearch,feiqitian/elasticsearch,xingguang2013/elasticsearch,Helen-Zhao/elasticsearch,socialrank/elasticsearch,nilabhsagar/elasticsearch,maddin2016/elasticsearch,MetSystem/elasticsearch,fubuki/elasticsearch,kingaj/elasticsearch,zhaocloud/elasticsearch,dantuffery/elasticsearch,Brijeshrpatel9/elasticsearch,xpandan/elasticsearch,ThiagoGarciaAlves/elasticsearch,combinatorist/elasticsearch,jw0201/elastic,Collaborne/elasticsearch,Fsero/elasticsearch,strapdata/elassandra5-rc,spiegela/elasticsearch,HarishAtGitHub/elasticsearch,zkidkid/elasticsearch,scottsom/elasticsearch,naveenhooda2000/elasticsearch,sauravmondallive/elasticsearch,ivansun1010/elasticsearch,mute/elasticsearch,likaiwalkman/elasticsearch,sposam/elasticsearch,jpountz/elasticsearch,jaynblue/elasticsearch,hanst/elasticsearch,martinstuga/elasticsearch,MjAbuz/elasticsearch,markllama/elasticsearch,Liziyao/elasticsearch,nomoa/elasticsearch,jaynblue/elasticsearch,IanvsPoplicola/elasticsearch,jprante/elasticsearch,sc0ttkclark/elasticsearch,qwerty4030/elasticsearch,tsohil/elasticsearch,mohit/elasticsearch,JackyMai/elasticsearch,hydro2k/elasticsearch,njlawton/elasticsearch,nknize/elasticsearch,mapr/elasticsearch,truemped/elasticsearch,yynil/elasticsearch,wittyameta/elasticsearch,djschny/elasticsearch,feiqitian/elasticsearch,NBSW/elasticsearch,brwe/elasticsearch,chirilo/elasticsearch,andrestc/elasticsearch,kevinkluge/elasticsearch,Shepard1212/elasticsearch,KimTaehee/elasticsearch,Ansh90/elasticsearch,pranavraman/elasticsearch,xuzha/elasticsearch,alexkuk/elasticsearch,Microsoft/elasticsearch,yanjunh/elasticsearch,janmejay/elasticsearch,gingerwizard/elasticsearch,lks21c/elasticsearch,spiegela/elasticsearch,Siddartha07/elasticsearch,franklanganke/elasticsearch,masterweb121/elasticsearch,markwalkom/elasticsearch,hanswang/elasticsearch,anti-social/elasticsearch,kcompher/elasticsearch,JervyShi/elasticsearch,ESamir/elasticsearch,ckclark/elasticsearch,rento19962/elasticsearch,khiraiwa/elasticsearch,yongminxia/elasticsearch,artnowo/elasticsearch,awislowski/elasticsearch,dataduke/elasticsearch,iacdingping/elasticsearch,kaneshin/elasticsearch,vrkansagara/elasticsearch,mbrukman/elasticsearch,PhaedrusTheGreek/elasticsearch,gmarz/elasticsearch,tsohil/elasticsearch,kubum/elasticsearch,rajanm/elasticsearch,zhiqinghuang/elasticsearch,lchennup/elasticsearch,wimvds/elasticsearch,ricardocerq/elasticsearch,Charlesdong/elasticsearch,kubum/elasticsearch,phani546/elasticsearch,zhaocloud/elasticsearch,liweinan0423/elasticsearch,springning/elasticsearch,markwalkom/elasticsearch,huypx1292/elasticsearch,shreejay/elasticsearch,kaneshin/elasticsearch,nrkkalyan/elasticsearch,StefanGor/elasticsearch,vroyer/elasticassandra,Asimov4/elasticsearch,naveenhooda2000/elasticsearch,MjAbuz/elasticsearch,strapdata/elassandra-test,AleksKochev/elasticsearch,xuzha/elasticsearch,gfyoung/elasticsearch,djschny/elasticsearch,henakamaMSFT/elasticsearch,clintongormley/elasticsearch,kunallimaye/elasticsearch,kalburgimanjunath/elasticsearch,umeshdangat/elasticsearch,knight1128/elasticsearch,thecocce/elasticsearch,nazarewk/elasticsearch,yuy168/elasticsearch,obourgain/elasticsearch,ajhalani/elasticsearch,codebunt/elasticsearch,pozhidaevak/elasticsearch,areek/elasticsearch,lchennup/elasticsearch,awislowski/elasticsearch,nazarewk/elasticsearch,luiseduardohdbackup/elasticsearch,tkssharma/elasticsearch,ThiagoGarciaAlves/elasticsearch,C-Bish/elasticsearch,jimhooker2002/elasticsearch,queirozfcom/elasticsearch,elancom/elasticsearch,nezirus/elasticsearch,a2lin/elasticsearch,tahaemin/elasticsearch,alexkuk/elasticsearch,HonzaKral/elasticsearch,springning/elasticsearch,jw0201/elastic,peschlowp/elasticsearch,vvcephei/elasticsearch,knight1128/elasticsearch,Charlesdong/elasticsearch,umeshdangat/elasticsearch,Fsero/elasticsearch,abhijitiitr/es,uschindler/elasticsearch,jchampion/elasticsearch,smflorentino/elasticsearch,kingaj/elasticsearch,caengcjd/elasticsearch,golubev/elasticsearch,wayeast/elasticsearch,JSCooke/elasticsearch,kalburgimanjunath/elasticsearch,shreejay/elasticsearch,btiernay/elasticsearch,snikch/elasticsearch,micpalmia/elasticsearch,gmarz/elasticsearch,kaneshin/elasticsearch,vvcephei/elasticsearch,loconsolutions/elasticsearch,mmaracic/elasticsearch,mgalushka/elasticsearch,LeoYao/elasticsearch,milodky/elasticsearch,thecocce/elasticsearch,mapr/elasticsearch,dataduke/elasticsearch,salyh/elasticsearch,lightslife/elasticsearch,onegambler/elasticsearch,hirdesh2008/elasticsearch,mgalushka/elasticsearch,Stacey-Gammon/elasticsearch,gingerwizard/elasticsearch,fekaputra/elasticsearch,bawse/elasticsearch,knight1128/elasticsearch,rlugojr/elasticsearch,lchennup/elasticsearch,drewr/elasticsearch,bestwpw/elasticsearch,dataduke/elasticsearch,scottsom/elasticsearch,sc0ttkclark/elasticsearch,ajhalani/elasticsearch,MaineC/elasticsearch,pritishppai/elasticsearch,tcucchietti/elasticsearch,onegambler/elasticsearch,overcome/elasticsearch,mkis-/elasticsearch,yynil/elasticsearch,hafkensite/elasticsearch,brandonkearby/elasticsearch,socialrank/elasticsearch,ouyangkongtong/elasticsearch,iantruslove/elasticsearch,mjhennig/elasticsearch,Charlesdong/elasticsearch,yuy168/elasticsearch,AleksKochev/elasticsearch,alexksikes/elasticsearch,NBSW/elasticsearch,infusionsoft/elasticsearch,mikemccand/elasticsearch,Widen/elasticsearch,NBSW/elasticsearch,masterweb121/elasticsearch,EasonYi/elasticsearch,Liziyao/elasticsearch,gmarz/elasticsearch,combinatorist/elasticsearch,adrianbk/elasticsearch,pozhidaevak/elasticsearch,shreejay/elasticsearch,gingerwizard/elasticsearch,pablocastro/elasticsearch,Collaborne/elasticsearch,ricardocerq/elasticsearch,girirajsharma/elasticsearch,khiraiwa/elasticsearch,dongjoon-hyun/elasticsearch,sposam/elasticsearch,andrestc/elasticsearch,drewr/elasticsearch,sneivandt/elasticsearch,MetSystem/elasticsearch,cnfire/elasticsearch-1,tkssharma/elasticsearch,henakamaMSFT/elasticsearch,codebunt/elasticsearch,karthikjaps/elasticsearch,artnowo/elasticsearch,humandb/elasticsearch,skearns64/elasticsearch,kubum/elasticsearch,thecocce/elasticsearch,iacdingping/elasticsearch,iacdingping/elasticsearch,kalimatas/elasticsearch,camilojd/elasticsearch,Shepard1212/elasticsearch,snikch/elasticsearch,weipinghe/elasticsearch,LewayneNaidoo/elasticsearch,onegambler/elasticsearch,djschny/elasticsearch,springning/elasticsearch,StefanGor/elasticsearch,zeroctu/elasticsearch,spiegela/elasticsearch,truemped/elasticsearch,springning/elasticsearch,vingupta3/elasticsearch,mohit/elasticsearch,socialrank/elasticsearch,queirozfcom/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,tsohil/elasticsearch,karthikjaps/elasticsearch,slavau/elasticsearch,cnfire/elasticsearch-1,wimvds/elasticsearch,xpandan/elasticsearch,kcompher/elasticsearch,AleksKochev/elasticsearch,myelin/elasticsearch,mute/elasticsearch,chirilo/elasticsearch,shreejay/elasticsearch,mm0/elasticsearch,rmuir/elasticsearch,hafkensite/elasticsearch,clintongormley/elasticsearch,SergVro/elasticsearch,tsohil/elasticsearch,karthikjaps/elasticsearch,hydro2k/elasticsearch,andrestc/elasticsearch,Stacey-Gammon/elasticsearch,Rygbee/elasticsearch,MichaelLiZhou/elasticsearch,kubum/elasticsearch,ckclark/elasticsearch,markllama/elasticsearch,jeteve/elasticsearch,alexksikes/elasticsearch,lmtwga/elasticsearch,dataduke/elasticsearch,jeteve/elasticsearch,ESamir/elasticsearch,ricardocerq/elasticsearch,brandonkearby/elasticsearch,Uiho/elasticsearch,aglne/elasticsearch,markwalkom/elasticsearch,elancom/elasticsearch,pozhidaevak/elasticsearch,tahaemin/elasticsearch,TonyChai24/ESSource,coding0011/elasticsearch,weipinghe/elasticsearch,robin13/elasticsearch,Collaborne/elasticsearch,camilojd/elasticsearch,socialrank/elasticsearch,dylan8902/elasticsearch,Brijeshrpatel9/elasticsearch,franklanganke/elasticsearch,StefanGor/elasticsearch,zkidkid/elasticsearch,anti-social/elasticsearch,hafkensite/elasticsearch,ulkas/elasticsearch,djschny/elasticsearch,ThiagoGarciaAlves/elasticsearch,PhaedrusTheGreek/elasticsearch,gmarz/elasticsearch,golubev/elasticsearch,caengcjd/elasticsearch,golubev/elasticsearch,yuy168/elasticsearch,wuranbo/elasticsearch,fernandozhu/elasticsearch,episerver/elasticsearch,areek/elasticsearch,s1monw/elasticsearch,franklanganke/elasticsearch,himanshuag/elasticsearch,episerver/elasticsearch,hafkensite/elasticsearch,combinatorist/elasticsearch,jbertouch/elasticsearch,Kakakakakku/elasticsearch,lmtwga/elasticsearch,kkirsche/elasticsearch,petabytedata/elasticsearch,PhaedrusTheGreek/elasticsearch,martinstuga/elasticsearch,dantuffery/elasticsearch,lightslife/elasticsearch,pritishppai/elasticsearch,rlugojr/elasticsearch,btiernay/elasticsearch,xuzha/elasticsearch,wittyameta/elasticsearch,VukDukic/elasticsearch,btiernay/elasticsearch,sscarduzio/elasticsearch,YosuaMichael/elasticsearch,socialrank/elasticsearch,ulkas/elasticsearch,Helen-Zhao/elasticsearch,geidies/elasticsearch,loconsolutions/elasticsearch,vietlq/elasticsearch,kimimj/elasticsearch,marcuswr/elasticsearch-dateline,smflorentino/elasticsearch,mortonsykes/elasticsearch,HarishAtGitHub/elasticsearch,hanst/elasticsearch,mohsinh/elasticsearch,sauravmondallive/elasticsearch,kaneshin/elasticsearch,zhaocloud/elasticsearch,F0lha/elasticsearch,zeroctu/elasticsearch,cwurm/elasticsearch,Shepard1212/elasticsearch,adrianbk/elasticsearch,lightslife/elasticsearch,fooljohnny/elasticsearch,palecur/elasticsearch,pablocastro/elasticsearch,iantruslove/elasticsearch,winstonewert/elasticsearch,geidies/elasticsearch,Flipkart/elasticsearch,Chhunlong/elasticsearch,kunallimaye/elasticsearch,Charlesdong/elasticsearch,alexksikes/elasticsearch,dpursehouse/elasticsearch,kimimj/elasticsearch,sdauletau/elasticsearch,huypx1292/elasticsearch,avikurapati/elasticsearch,jimczi/elasticsearch,MisterAndersen/elasticsearch,adrianbk/elasticsearch,lmtwga/elasticsearch,boliza/elasticsearch,TonyChai24/ESSource,Flipkart/elasticsearch,heng4fun/elasticsearch,Asimov4/elasticsearch,caengcjd/elasticsearch,koxa29/elasticsearch,adrianbk/elasticsearch,sposam/elasticsearch,fforbeck/elasticsearch,AleksKochev/elasticsearch,markllama/elasticsearch,VukDukic/elasticsearch,maddin2016/elasticsearch,libosu/elasticsearch,ydsakyclguozi/elasticsearch,truemped/elasticsearch,ulkas/elasticsearch,fforbeck/elasticsearch,brandonkearby/elasticsearch,luiseduardohdbackup/elasticsearch,girirajsharma/elasticsearch,Collaborne/elasticsearch,vroyer/elasticassandra,wenpos/elasticsearch,mgalushka/elasticsearch,ckclark/elasticsearch,robin13/elasticsearch,kenshin233/elasticsearch,fekaputra/elasticsearch,amaliujia/elasticsearch,AshishThakur/elasticsearch,lightslife/elasticsearch,lchennup/elasticsearch,cnfire/elasticsearch-1,Fsero/elasticsearch,kcompher/elasticsearch,wayeast/elasticsearch,mute/elasticsearch,kalimatas/elasticsearch,vvcephei/elasticsearch,milodky/elasticsearch,caengcjd/elasticsearch,brwe/elasticsearch,AndreKR/elasticsearch,elancom/elasticsearch,sc0ttkclark/elasticsearch,jimczi/elasticsearch,HarishAtGitHub/elasticsearch,xuzha/elasticsearch,MetSystem/elasticsearch,Rygbee/elasticsearch,libosu/elasticsearch,vroyer/elasticassandra,tkssharma/elasticsearch,MisterAndersen/elasticsearch,vingupta3/elasticsearch,hafkensite/elasticsearch,kunallimaye/elasticsearch,glefloch/elasticsearch,codebunt/elasticsearch,abibell/elasticsearch,janmejay/elasticsearch,cnfire/elasticsearch-1,smflorentino/elasticsearch,ImpressTV/elasticsearch,chirilo/elasticsearch,Liziyao/elasticsearch,kunallimaye/elasticsearch,LeoYao/elasticsearch,strapdata/elassandra5-rc,Brijeshrpatel9/elasticsearch,MichaelLiZhou/elasticsearch,amit-shar/elasticsearch,jpountz/elasticsearch,infusionsoft/elasticsearch,pranavraman/elasticsearch,mikemccand/elasticsearch,clintongormley/elasticsearch,achow/elasticsearch,apepper/elasticsearch,KimTaehee/elasticsearch,strapdata/elassandra-test,nezirus/elasticsearch,polyfractal/elasticsearch,episerver/elasticsearch,vietlq/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,skearns64/elasticsearch,Charlesdong/elasticsearch,ImpressTV/elasticsearch,xingguang2013/elasticsearch,MichaelLiZhou/elasticsearch,maddin2016/elasticsearch,HonzaKral/elasticsearch,girirajsharma/elasticsearch,jchampion/elasticsearch,Asimov4/elasticsearch,mohit/elasticsearch,luiseduardohdbackup/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,iantruslove/elasticsearch,luiseduardohdbackup/elasticsearch,brandonkearby/elasticsearch,kenshin233/elasticsearch,beiske/elasticsearch,nilabhsagar/elasticsearch,sarwarbhuiyan/elasticsearch,ouyangkongtong/elasticsearch,loconsolutions/elasticsearch,nellicus/elasticsearch,fekaputra/elasticsearch,likaiwalkman/elasticsearch,zeroctu/elasticsearch,skearns64/elasticsearch,AshishThakur/elasticsearch,sc0ttkclark/elasticsearch,sauravmondallive/elasticsearch,infusionsoft/elasticsearch,mapr/elasticsearch,yanjunh/elasticsearch,milodky/elasticsearch,kimimj/elasticsearch,kimimj/elasticsearch,nellicus/elasticsearch,ESamir/elasticsearch,yynil/elasticsearch,rajanm/elasticsearch,mm0/elasticsearch,pritishppai/elasticsearch,brwe/elasticsearch,wenpos/elasticsearch,jbertouch/elasticsearch,franklanganke/elasticsearch,phani546/elasticsearch,codebunt/elasticsearch,Uiho/elasticsearch,TonyChai24/ESSource,martinstuga/elasticsearch,acchen97/elasticsearch,amaliujia/elasticsearch,infusionsoft/elasticsearch,jbertouch/elasticsearch,myelin/elasticsearch,awislowski/elasticsearch,pablocastro/elasticsearch,koxa29/elasticsearch,jeteve/elasticsearch,aglne/elasticsearch,pranavraman/elasticsearch,opendatasoft/elasticsearch,likaiwalkman/elasticsearch,wuranbo/elasticsearch,ESamir/elasticsearch,wbowling/elasticsearch,masaruh/elasticsearch,Helen-Zhao/elasticsearch,wuranbo/elasticsearch,apepper/elasticsearch,tebriel/elasticsearch,elancom/elasticsearch,robin13/elasticsearch,aparo/elasticsearch,strapdata/elassandra-test,zkidkid/elasticsearch,tsohil/elasticsearch,kaneshin/elasticsearch,achow/elasticsearch,Ansh90/elasticsearch,jimhooker2002/elasticsearch,Helen-Zhao/elasticsearch,himanshuag/elasticsearch,alexbrasetvik/elasticsearch,achow/elasticsearch,clintongormley/elasticsearch,pranavraman/elasticsearch,andrejserafim/elasticsearch,Brijeshrpatel9/elasticsearch,loconsolutions/elasticsearch,mnylen/elasticsearch,EasonYi/elasticsearch,mrorii/elasticsearch,umeshdangat/elasticsearch,onegambler/elasticsearch,mjhennig/elasticsearch,EasonYi/elasticsearch,humandb/elasticsearch,xpandan/elasticsearch,weipinghe/elasticsearch,rajanm/elasticsearch,ESamir/elasticsearch,hanst/elasticsearch,jango2015/elasticsearch,markwalkom/elasticsearch,mjason3/elasticsearch,humandb/elasticsearch,clintongormley/elasticsearch,TonyChai24/ESSource,winstonewert/elasticsearch,elancom/elasticsearch,kkirsche/elasticsearch,18098924759/elasticsearch,infusionsoft/elasticsearch,pritishppai/elasticsearch,njlawton/elasticsearch,KimTaehee/elasticsearch,iacdingping/elasticsearch,F0lha/elasticsearch,Brijeshrpatel9/elasticsearch,yuy168/elasticsearch,queirozfcom/elasticsearch,vrkansagara/elasticsearch,wayeast/elasticsearch,Rygbee/elasticsearch,heng4fun/elasticsearch,skearns64/elasticsearch,nazarewk/elasticsearch,Rygbee/elasticsearch,mortonsykes/elasticsearch,dylan8902/elasticsearch,huypx1292/elasticsearch,nknize/elasticsearch,hanst/elasticsearch,ouyangkongtong/elasticsearch,mcku/elasticsearch,vietlq/elasticsearch,queirozfcom/elasticsearch,glefloch/elasticsearch,libosu/elasticsearch,NBSW/elasticsearch,libosu/elasticsearch,pranavraman/elasticsearch,diendt/elasticsearch,jimczi/elasticsearch,ImpressTV/elasticsearch,palecur/elasticsearch,thecocce/elasticsearch,lks21c/elasticsearch,adrianbk/elasticsearch,trangvh/elasticsearch,Widen/elasticsearch,beiske/elasticsearch,wbowling/elasticsearch,polyfractal/elasticsearch,wimvds/elasticsearch,cwurm/elasticsearch,iamjakob/elasticsearch,ricardocerq/elasticsearch,boliza/elasticsearch,IanvsPoplicola/elasticsearch,fubuki/elasticsearch,jw0201/elastic,amaliujia/elasticsearch,girirajsharma/elasticsearch,MetSystem/elasticsearch,petabytedata/elasticsearch,alexbrasetvik/elasticsearch,gfyoung/elasticsearch,18098924759/elasticsearch,szroland/elasticsearch,peschlowp/elasticsearch,myelin/elasticsearch,bestwpw/elasticsearch,alexshadow007/elasticsearch,mjason3/elasticsearch,lzo/elasticsearch-1,sarwarbhuiyan/elasticsearch,strapdata/elassandra-test,ydsakyclguozi/elasticsearch,elasticdog/elasticsearch,lchennup/elasticsearch,achow/elasticsearch,Flipkart/elasticsearch,vvcephei/elasticsearch,overcome/elasticsearch,wangtuo/elasticsearch,boliza/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,mm0/elasticsearch,andrejserafim/elasticsearch,zhaocloud/elasticsearch,abhijitiitr/es,masaruh/elasticsearch,mm0/elasticsearch,franklanganke/elasticsearch,MichaelLiZhou/elasticsearch,markharwood/elasticsearch,a2lin/elasticsearch,ajhalani/elasticsearch,mapr/elasticsearch,strapdata/elassandra,wenpos/elasticsearch,cnfire/elasticsearch-1,EasonYi/elasticsearch,lzo/elasticsearch-1,mm0/elasticsearch,wangtuo/elasticsearch,acchen97/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,MetSystem/elasticsearch,vrkansagara/elasticsearch,PhaedrusTheGreek/elasticsearch,luiseduardohdbackup/elasticsearch,lks21c/elasticsearch,C-Bish/elasticsearch,pozhidaevak/elasticsearch,IanvsPoplicola/elasticsearch,AndreKR/elasticsearch,bestwpw/elasticsearch,vorce/es-metrics,feiqitian/elasticsearch,lydonchandra/elasticsearch,dpursehouse/elasticsearch,jsgao0/elasticsearch,hanst/elasticsearch,mnylen/elasticsearch,sjohnr/elasticsearch,mcku/elasticsearch,MetSystem/elasticsearch,Siddartha07/elasticsearch,JervyShi/elasticsearch,smflorentino/elasticsearch,masterweb121/elasticsearch,strapdata/elassandra,18098924759/elasticsearch,VukDukic/elasticsearch,rmuir/elasticsearch,Stacey-Gammon/elasticsearch,ImpressTV/elasticsearch,aparo/elasticsearch,Flipkart/elasticsearch,hechunwen/elasticsearch,pritishppai/elasticsearch,yynil/elasticsearch,kunallimaye/elasticsearch,lightslife/elasticsearch,aparo/elasticsearch,myelin/elasticsearch,lydonchandra/elasticsearch,sreeramjayan/elasticsearch,yongminxia/elasticsearch,rhoml/elasticsearch,jaynblue/elasticsearch,AshishThakur/elasticsearch,shreejay/elasticsearch,qwerty4030/elasticsearch,jbertouch/elasticsearch,scorpionvicky/elasticsearch,abibell/elasticsearch,achow/elasticsearch,lightslife/elasticsearch,nrkkalyan/elasticsearch,wittyameta/elasticsearch,rhoml/elasticsearch,ulkas/elasticsearch,jeteve/elasticsearch,wimvds/elasticsearch,masaruh/elasticsearch,nomoa/elasticsearch,overcome/elasticsearch,mapr/elasticsearch,mnylen/elasticsearch,zeroctu/elasticsearch,YosuaMichael/elasticsearch,dylan8902/elasticsearch,YosuaMichael/elasticsearch,alexbrasetvik/elasticsearch,likaiwalkman/elasticsearch,alexbrasetvik/elasticsearch,MichaelLiZhou/elasticsearch,Flipkart/elasticsearch,avikurapati/elasticsearch,scorpionvicky/elasticsearch,khiraiwa/elasticsearch,s1monw/elasticsearch,SergVro/elasticsearch,wangyuxue/elasticsearch,AndreKR/elasticsearch,F0lha/elasticsearch,mrorii/elasticsearch,kevinkluge/elasticsearch,wayeast/elasticsearch,apepper/elasticsearch,szroland/elasticsearch,nazarewk/elasticsearch,njlawton/elasticsearch,djschny/elasticsearch,adrianbk/elasticsearch,boliza/elasticsearch,zhiqinghuang/elasticsearch,amit-shar/elasticsearch,mortonsykes/elasticsearch,F0lha/elasticsearch,kalburgimanjunath/elasticsearch,TonyChai24/ESSource,LewayneNaidoo/elasticsearch,geidies/elasticsearch,jimhooker2002/elasticsearch,snikch/elasticsearch,iamjakob/elasticsearch,slavau/elasticsearch,zhiqinghuang/elasticsearch,lks21c/elasticsearch,fooljohnny/elasticsearch,LeoYao/elasticsearch,javachengwc/elasticsearch,Liziyao/elasticsearch,rlugojr/elasticsearch,ouyangkongtong/elasticsearch,dongjoon-hyun/elasticsearch,libosu/elasticsearch,alexshadow007/elasticsearch,geidies/elasticsearch,humandb/elasticsearch,davidvgalbraith/elasticsearch,acchen97/elasticsearch,mikemccand/elasticsearch,Flipkart/elasticsearch,kingaj/elasticsearch,sdauletau/elasticsearch,JackyMai/elasticsearch,masterweb121/elasticsearch,salyh/elasticsearch,spiegela/elasticsearch,cwurm/elasticsearch,truemped/elasticsearch,rajanm/elasticsearch,palecur/elasticsearch,Chhunlong/elasticsearch,mjason3/elasticsearch,yongminxia/elasticsearch,schonfeld/elasticsearch,javachengwc/elasticsearch,nezirus/elasticsearch,likaiwalkman/elasticsearch,Siddartha07/elasticsearch,jchampion/elasticsearch,ydsakyclguozi/elasticsearch,mute/elasticsearch,polyfractal/elasticsearch,vroyer/elassandra,mrorii/elasticsearch,AndreKR/elasticsearch,szroland/elasticsearch,schonfeld/elasticsearch,trangvh/elasticsearch,KimTaehee/elasticsearch,vingupta3/elasticsearch,truemped/elasticsearch,mgalushka/elasticsearch,iacdingping/elasticsearch,linglaiyao1314/elasticsearch,wbowling/elasticsearch,queirozfcom/elasticsearch,strapdata/elassandra5-rc,ZTE-PaaS/elasticsearch,LeoYao/elasticsearch,areek/elasticsearch,markwalkom/elasticsearch,Clairebi/ElasticsearchClone,tebriel/elasticsearch,fernandozhu/elasticsearch,C-Bish/elasticsearch,janmejay/elasticsearch,fekaputra/elasticsearch,wangyuxue/elasticsearch,likaiwalkman/elasticsearch,sarwarbhuiyan/elasticsearch,elasticdog/elasticsearch,mmaracic/elasticsearch,beiske/elasticsearch,Clairebi/ElasticsearchClone,Shepard1212/elasticsearch,hechunwen/elasticsearch,Stacey-Gammon/elasticsearch,maddin2016/elasticsearch,peschlowp/elasticsearch,davidvgalbraith/elasticsearch,mcku/elasticsearch,dongjoon-hyun/elasticsearch,nellicus/elasticsearch,strapdata/elassandra5-rc,chrismwendt/elasticsearch,sjohnr/elasticsearch,xpandan/elasticsearch,F0lha/elasticsearch,YosuaMichael/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,ivansun1010/elasticsearch,aglne/elasticsearch,rlugojr/elasticsearch,fooljohnny/elasticsearch,ImpressTV/elasticsearch,amaliujia/elasticsearch,pranavraman/elasticsearch,micpalmia/elasticsearch,abibell/elasticsearch,wbowling/elasticsearch,smflorentino/elasticsearch,Uiho/elasticsearch,jchampion/elasticsearch,caengcjd/elasticsearch,umeshdangat/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,wbowling/elasticsearch,combinatorist/elasticsearch,kalburgimanjunath/elasticsearch,kalburgimanjunath/elasticsearch,episerver/elasticsearch,khiraiwa/elasticsearch,ZTE-PaaS/elasticsearch,knight1128/elasticsearch,Widen/elasticsearch,fernandozhu/elasticsearch,nellicus/elasticsearch,bawse/elasticsearch,Collaborne/elasticsearch,jsgao0/elasticsearch,opendatasoft/elasticsearch,wenpos/elasticsearch,sjohnr/elasticsearch,mcku/elasticsearch,iantruslove/elasticsearch,elasticdog/elasticsearch,kubum/elasticsearch,mjhennig/elasticsearch,mgalushka/elasticsearch,easonC/elasticsearch,jango2015/elasticsearch,snikch/elasticsearch,phani546/elasticsearch,zeroctu/elasticsearch,petmit/elasticsearch,petmit/elasticsearch,xpandan/elasticsearch,golubev/elasticsearch,raishiv/elasticsearch,iamjakob/elasticsearch,ThalaivaStars/OrgRepo1,huanzhong/elasticsearch,sdauletau/elasticsearch,vrkansagara/elasticsearch,jbertouch/elasticsearch,vroyer/elassandra,achow/elasticsearch,Brijeshrpatel9/elasticsearch,chirilo/elasticsearch,salyh/elasticsearch,MaineC/elasticsearch,kkirsche/elasticsearch,tebriel/elasticsearch,MisterAndersen/elasticsearch,PhaedrusTheGreek/elasticsearch,schonfeld/elasticsearch,sposam/elasticsearch,sarwarbhuiyan/elasticsearch,yuy168/elasticsearch,kaneshin/elasticsearch,nilabhsagar/elasticsearch,jsgao0/elasticsearch,easonC/elasticsearch,lmtwga/elasticsearch,winstonewert/elasticsearch,petmit/elasticsearch,ckclark/elasticsearch,Siddartha07/elasticsearch,gfyoung/elasticsearch,vietlq/elasticsearch,tsohil/elasticsearch,davidvgalbraith/elasticsearch,MjAbuz/elasticsearch,beiske/elasticsearch,Shekharrajak/elasticsearch,acchen97/elasticsearch,huypx1292/elasticsearch,diendt/elasticsearch,szroland/elasticsearch,NBSW/elasticsearch,khiraiwa/elasticsearch,raishiv/elasticsearch,dpursehouse/elasticsearch,skearns64/elasticsearch,jsgao0/elasticsearch,hechunwen/elasticsearch,ouyangkongtong/elasticsearch,wimvds/elasticsearch,HonzaKral/elasticsearch,mbrukman/elasticsearch,codebunt/elasticsearch,alexkuk/elasticsearch,mm0/elasticsearch,JSCooke/elasticsearch,micpalmia/elasticsearch,heng4fun/elasticsearch,himanshuag/elasticsearch,Kakakakakku/elasticsearch,abhijitiitr/es,fred84/elasticsearch,mortonsykes/elasticsearch,fred84/elasticsearch,zhiqinghuang/elasticsearch,fforbeck/elasticsearch,kalimatas/elasticsearch,18098924759/elasticsearch,AshishThakur/elasticsearch,alexshadow007/elasticsearch,mohit/elasticsearch,wittyameta/elasticsearch,schonfeld/elasticsearch,dantuffery/elasticsearch,mkis-/elasticsearch,Fsero/elasticsearch,ivansun1010/elasticsearch,Microsoft/elasticsearch,Charlesdong/elasticsearch,iacdingping/elasticsearch,kevinkluge/elasticsearch,ulkas/elasticsearch,sposam/elasticsearch,EasonYi/elasticsearch,jeteve/elasticsearch,Chhunlong/elasticsearch,vrkansagara/elasticsearch,chrismwendt/elasticsearch,liweinan0423/elasticsearch,Siddartha07/elasticsearch,VukDukic/elasticsearch,nazarewk/elasticsearch,slavau/elasticsearch,mjhennig/elasticsearch,boliza/elasticsearch,szroland/elasticsearch,StefanGor/elasticsearch,qwerty4030/elasticsearch,xpandan/elasticsearch,glefloch/elasticsearch,kevinkluge/elasticsearch,sposam/elasticsearch,ThiagoGarciaAlves/elasticsearch,jaynblue/elasticsearch,koxa29/elasticsearch,Liziyao/elasticsearch,vorce/es-metrics,huanzhong/elasticsearch,ESamir/elasticsearch,yanjunh/elasticsearch,rento19962/elasticsearch,scottsom/elasticsearch,GlenRSmith/elasticsearch,anti-social/elasticsearch,huanzhong/elasticsearch,Uiho/elasticsearch,karthikjaps/elasticsearch,hydro2k/elasticsearch,yongminxia/elasticsearch,strapdata/elassandra-test,cnfire/elasticsearch-1,Clairebi/ElasticsearchClone,kunallimaye/elasticsearch,loconsolutions/elasticsearch,easonC/elasticsearch,mute/elasticsearch,i-am-Nathan/elasticsearch,MaineC/elasticsearch,codebunt/elasticsearch,MichaelLiZhou/elasticsearch,mikemccand/elasticsearch,tahaemin/elasticsearch,zeroctu/elasticsearch,njlawton/elasticsearch,sscarduzio/elasticsearch,kkirsche/elasticsearch,hirdesh2008/elasticsearch,Charlesdong/elasticsearch,achow/elasticsearch,rmuir/elasticsearch,abhijitiitr/es,mortonsykes/elasticsearch,18098924759/elasticsearch,liweinan0423/elasticsearch,kalimatas/elasticsearch,jeteve/elasticsearch,NBSW/elasticsearch,maddin2016/elasticsearch,yynil/elasticsearch,tkssharma/elasticsearch,nknize/elasticsearch,btiernay/elasticsearch,jprante/elasticsearch,huanzhong/elasticsearch,milodky/elasticsearch,nellicus/elasticsearch,elancom/elasticsearch,slavau/elasticsearch,kubum/elasticsearch,slavau/elasticsearch,trangvh/elasticsearch,apepper/elasticsearch,fubuki/elasticsearch,overcome/elasticsearch,rajanm/elasticsearch
|
366a60a5c3ae59df97f26d9615ef10b9782f9373
|
metadata/com.prangesoftwaresolutions.audioanchor.yml
|
metadata/com.prangesoftwaresolutions.audioanchor.yml
|
Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/flackbash/AudioAnchor
IssueTracker: https://github.com/flackbash/AudioAnchor/issues
Changelog: https://github.com/flackbash/AudioAnchor/releases
AutoName: AudioAnchor
Description: |-
''AudioAnchor'' is an audio player that tracks the listening process of
your audio books and podcasts.
'''Features:'''
AudioAnchor offers a clean and intuitive interface for listening to audio
files while keeping track of the listening process. Additional features
include:
* lock screen media controls
* sleep timer
* export / import listening progress as sql database
RepoType: git
Repo: https://github.com/flackbash/AudioAnchor
Builds:
- versionName: '1.7'
versionCode: 8
commit: v1.7
subdir: app
gradle:
- yes
- versionName: '1.8'
versionCode: 9
commit: v1.8
subdir: app
gradle:
- yes
- versionName: 1.8.1
versionCode: 10
commit: v1.8.1
subdir: app
gradle:
- yes
- versionName: '1.9'
versionCode: 11
commit: v1.9
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.9'
CurrentVersionCode: 11
|
Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/flackbash/AudioAnchor
IssueTracker: https://github.com/flackbash/AudioAnchor/issues
Changelog: https://github.com/flackbash/AudioAnchor/releases
AutoName: AudioAnchor
Description: |-
''AudioAnchor'' is an audio player that tracks the listening process of
your audio books and podcasts.
'''Features:'''
AudioAnchor offers a clean and intuitive interface for listening to audio
files while keeping track of the listening process. Additional features
include:
* lock screen media controls
* sleep timer
* export / import listening progress as sql database
RepoType: git
Repo: https://github.com/flackbash/AudioAnchor
Builds:
- versionName: '1.7'
versionCode: 8
commit: v1.7
subdir: app
gradle:
- yes
- versionName: '1.8'
versionCode: 9
commit: v1.8
subdir: app
gradle:
- yes
- versionName: 1.8.1
versionCode: 10
commit: v1.8.1
subdir: app
gradle:
- yes
- versionName: '1.9'
versionCode: 11
commit: v1.9
subdir: app
gradle:
- yes
- versionName: 1.9.1
versionCode: 12
commit: v1.9.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.9.1
CurrentVersionCode: 12
|
Update AudioAnchor to 1.9.1 (12)
|
Update AudioAnchor to 1.9.1 (12)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
1d936e84e9fdd056458a80aac7aeb534cf29a057
|
roles/i3/tasks/main.yml
|
roles/i3/tasks/main.yml
|
---
- name: Install i3
apt:
name: i3
become: yes
- name: Install desktop enviroment extras
apt:
name: "{{ item }}"
become: yes
with_items:
- xautolock
- feh
- pavucontrol
- moka-icon-theme
- vinagre
- rofi
- arc-theme
- lxappearance
- compton
- alsa-tools-gui
- xfce4-power-manager
|
---
- name: Install i3
apt:
name: i3
become: yes
- name: Install desktop enviroment extras
apt:
name: "{{ item }}"
become: yes
with_items:
- xautolock
- feh
- pavucontrol
- moka-icon-theme
- vinagre
- rofi
- arc-theme
- lxappearance
- compton
- alsa-tools-gui
- xfce4-power-manager
- cups
- tlp
|
Install cups and tlp as part of i3 role
|
Install cups and tlp as part of i3 role
|
YAML
|
apache-2.0
|
jarias/linux-setup
|
cf4bcfff3a6e4968a8f1159d83d928c542126652
|
src/main/resources/plugin.yml
|
src/main/resources/plugin.yml
|
name: SuperbVote
main: io.minimum.minecraft.superbvote.SuperbVote
author: tuxed
version: ${project.version}
depend: [Votifier]
softdepend: [Vault]
api-version: "1.13"
commands:
superbvote:
description: SuperbVote main command.
aliases: [sv]
vote:
description: SuperbVote vote command.
permissions:
superbvote.notify:
default: true
superbvote.votes.others:
default: op
superbvote.admin:
default: op
|
name: SuperbVote
main: io.minimum.minecraft.superbvote.SuperbVote
author: tuxed
version: ${project.version}
depend: [Votifier]
softdepend: [Vault, PlaceholderAPI]
api-version: "1.13"
commands:
superbvote:
description: SuperbVote main command.
aliases: [sv]
vote:
description: SuperbVote vote command.
permissions:
superbvote.notify:
default: true
superbvote.votes.others:
default: op
superbvote.admin:
default: op
|
Add PlaceholderAPI as a softdepend
|
Add PlaceholderAPI as a softdepend
|
YAML
|
epl-1.0
|
minecrafter/SuperbVote,minecrafter/SuperbVote
|
103bf1d552e4703ff17254243dd5ca101cf971d5
|
.platform.app.yaml
|
.platform.app.yaml
|
# This file describes an application. You can have multiple applications
# in the same project.
# The name of this app. Must be unique within a project.
name: myphpproject
# The type of the application to build.
type: php:5.6
build:
flavor: symfony
# The relationships of the application with services or other applications.
# The left-hand side is the name of the relationship as it will be exposed
# to the application in the PLATFORM_RELATIONSHIPS variable. The right-hand
# side is in the form `<service name>:<endpoint name>`.
relationships:
database: "mysql:mysql"
# The configuration of app when it is exposed to the web.
web:
locations:
"/":
# The public directory of the app, relative to its root.
root: "web"
# The front-controller script to send non-static requests to.
passthru: "/app.php"
# The size of the persistent disk of the application (in MB).
disk: 2048
# The mounts that will be performed when the package is deployed.
mounts:
"/var/cache": "shared:files/cache"
"/var/logs": "shared:files/logs"
"/var/sessions": "shared:files/sessions"
# The hooks that will be performed when the package is deployed.
hooks:
build: |
rm web/app_dev.php
bin/console --env=prod assets:install --no-debug
|
# This file describes an application. You can have multiple applications
# in the same project.
# The name of this app. Must be unique within a project.
name: myphpproject
# The type of the application to build.
type: php:7.0
build:
flavor: symfony
# The relationships of the application with services or other applications.
# The left-hand side is the name of the relationship as it will be exposed
# to the application in the PLATFORM_RELATIONSHIPS variable. The right-hand
# side is in the form `<service name>:<endpoint name>`.
relationships:
database: "mysql:mysql"
# The configuration of app when it is exposed to the web.
web:
locations:
"/":
# The public directory of the app, relative to its root.
root: "web"
# The front-controller script to send non-static requests to.
passthru: "/app.php"
# The size of the persistent disk of the application (in MB).
disk: 2048
# The mounts that will be performed when the package is deployed.
mounts:
"/var/cache": "shared:files/cache"
"/var/logs": "shared:files/logs"
"/var/sessions": "shared:files/sessions"
# The hooks that will be performed when the package is deployed.
hooks:
build: |
rm web/app_dev.php
bin/console --env=prod assets:install --no-debug
|
Switch to PHP 7 by default.
|
Switch to PHP 7 by default.
|
YAML
|
mit
|
platformsh/platformsh-example-symfony,pjcdawkins/tmp-symfony-demo,pjcdawkins/tmp-symfony-demo,platformsh/platformsh-example-symfony
|
dac5ce58cc80eb120bbea4041b2a90030bf8bbb4
|
packages/routine_morning_night.yaml
|
packages/routine_morning_night.yaml
|
##################################################
## Automation
##################################################
automation:
- alias: Turn on in the morning and sunset
trigger:
- platform: time
at: "06:30:00"
- platform: sun
event: sunset
offset: "-01:00:00"
action:
- service: homeassistant.turn_on
entity_id: switch.lwrf_hall_socket_1 # Twigs
- service: homeassistant.turn_on
entity_id: switch.lwrf_hall_socket_2 # Air Freshener
- alias: Turn off after sunrise
trigger:
- platform: numeric_state
entity_id: sun.sun
value_template: "{{ state.attributes.elevation }}"
above: 10.0
action:
- service: homeassistant.turn_off
entity_id: switch.lwrf_hall_socket_1 # Twigs
- alias: Turn off at night
trigger:
- platform: time
at: "23:00:00"
action:
- service: homeassistant.turn_off
entity_id: switch.lwrf_hall_socket_2 # Air Freshener
|
##################################################
## Automation
##################################################
automation:
- alias: Turn on in the morning and sunset
trigger:
- platform: time
at: "06:30:00"
- platform: sun
event: sunset
offset: "-01:00:00"
action:
- service: homeassistant.turn_on
entity_id: switch.lwrf_hall_socket_1 # Twigs
- service: homeassistant.turn_on
entity_id: switch.lwrf_hall_socket_2 # Air Freshener
- alias: Turn off after sunrise
trigger:
- platform: numeric_state
entity_id: sun.sun
value_template: "{{ state_attr('sun.sun', 'elevation') }}"
above: 10.0
action:
- service: homeassistant.turn_off
entity_id: switch.lwrf_hall_socket_1 # Twigs
- alias: Turn off at night
trigger:
- platform: time
at: "23:00:00"
action:
- service: homeassistant.turn_off
entity_id: switch.lwrf_hall_socket_2 # Air Freshener
|
Update to use state_attr to avoid errors when value not available
|
Update to use state_attr to avoid errors when value not available
|
YAML
|
mit
|
shortbloke/home_assistant_config
|
b996001bfa3b1ad17489074f364c43e24bb78284
|
ci/azure-pipelines-test-wheels.yml
|
ci/azure-pipelines-test-wheels.yml
|
steps:
- download: current
artifact: ${{ parameters.platform }}_wheels
displayName: Download wheels
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
displayName: 'Use Python $(python.version)'
- script: |
python -m pip install --upgrade pip
pip install tox codecov
displayName: Install tox
- bash: |
ls $PIPELINE_WORKSPACE/${{ parameters.platform }}_wheels/
tox --installpkg $PIPELINE_WORKSPACE/${{ parameters.platform }}_wheels/$WHL_FILE
displayName: Run tests
|
steps:
- download: current
artifact: ${{ parameters.platform }}_wheels
displayName: Download wheels
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
displayName: 'Use Python $(python.version)'
- script: |
python -m pip install --upgrade pip
pip install tox codecov
displayName: Install tox
- bash: |
ls $PIPELINE_WORKSPACE/${{ parameters.platform }}_wheels/
tox --installpkg $PIPELINE_WORKSPACE/${{ parameters.platform }}_wheels/$WHL_FILE
displayName: Run tests
- task: PythonScript@0
inputs:
scriptSource: 'filePath'
scriptPath: 'ci/upload_coverage.py'
arguments: --codecov-token 813fb6da-087d-4b36-a185-5a530cab3455
displayName: 'Upload codecov data'
|
Add codecov to wheel tests
|
Add codecov to wheel tests
|
YAML
|
bsd-3-clause
|
h5py/h5py,h5py/h5py,h5py/h5py
|
38da1a723af8fc77afe2af651493fde27b053f5c
|
sensors/runfolder_sensor.yaml
|
sensors/runfolder_sensor.yaml
|
---
class_name: "RunfolderSensor"
entry_point: "runfolder_sensor.py"
description: "Sensor which monitors runfolders"
poll_interval: 30
trigger_types:
-
name: "runfolder_ready"
description: "Trigger which indicates that a runfolder is ready for processing"
payload_schema:
type: "object"
properties:
host:
type: "string"
runfolder:
type: "string"
link:
type: "string"
timestamp:
type: "string"
|
---
class_name: "RunfolderSensor"
entry_point: "runfolder_sensor.py"
description: "Sensor which monitors runfolders"
poll_interval: 300 # Every 5 minutes
trigger_types:
-
name: "runfolder_ready"
description: "Trigger which indicates that a runfolder is ready for processing"
payload_schema:
type: "object"
properties:
host:
type: "string"
runfolder:
type: "string"
link:
type: "string"
timestamp:
type: "string"
|
Increase sensor poll time to 5 min
|
Increase sensor poll time to 5 min
Right now we see problematic behaviour since the same runfolder gets
started multiple times when many things are running simultaneously.
|
YAML
|
mit
|
johandahlberg/arteria-packs,johandahlberg/arteria-packs,arteria-project/arteria-packs,johanherman/arteria-packs,johanherman/arteria-packs,arteria-project/arteria-packs,arteria-project/arteria-packs
|
e65dd8416900649343b9e72fe99c6c85371cb6aa
|
config/prisons/LLI-long-lartin.yml
|
config/prisons/LLI-long-lartin.yml
|
---
name: Long Lartin
nomis_id: LLI
enabled: false
estate: Long Lartin
|
---
name: Long Lartin
nomis_id: LLI
enabled: true
estate: Long Lartin
address:
- South Littleton
- Evesham
- Worcestershire
- WR11 8TZ
booking_window: 28
email: [email protected]
lead_days: 3
phone: 01386 295188
slots:
tue:
- 1400-1615
thu:
- 1400-1615
sat:
- 1400-1600
sun:
- 1400-1600
unbookable:
- 2015-12-25
- 2015-12-26
- 2016-01-01
|
Update Long Lartin for Go Live
|
Update Long Lartin for Go Live
|
YAML
|
mit
|
ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits
|
f646020b051184b76e9420a28394fad54690bb4e
|
playbooks/publish/releasenotes.yaml
|
playbooks/publish/releasenotes.yaml
|
- hosts: localhost
roles:
- prepare-docs-for-afs
- role: fetch-tox-output
tox_envlist: releasenotes
- role: fetch-sphinx-output
sphinx_output_src: "{{ zuul.project.src_dir }}/doc/build/html/"
zuul_executor_dest: "{{ zuul.executor.work_root }}/artifacts"
- create-afs-token
- role: upload-afs
afs_target: "{{ afs.path }}/releasenotes/{{ zuul.project.short_name }}"
- destroy-afs-token
|
- hosts: localhost
roles:
- prepare-docs-for-afs
- role: fetch-tox-output
tox_envlist: releasenotes
- role: fetch-sphinx-output
sphinx_output_src: "{{ zuul.project.src_dir }}/releasenotes/build/html/"
zuul_executor_dest: "{{ zuul.executor.work_root }}/artifacts"
- create-afs-token
- role: upload-afs
afs_target: "{{ afs.path }}/releasenotes/{{ zuul.project.short_name }}"
- destroy-afs-token
|
Switch release note publish jobs to use the correct path
|
Switch release note publish jobs to use the correct path
This path that the release note jobs publishes things to is
different than the one in the refactored job.
Depends-On: If6ee519c33320db91f8a9553ed4abc099c284eec
Change-Id: I0074d375be9350b51bde526e69c77e9d2b29c63b
|
YAML
|
apache-2.0
|
openstack-infra/project-config,openstack-infra/project-config
|
559fe2d8efbb6fd6614cb6611c7630b2ae02042a
|
roles/pull/tasks/MacOSX.yml
|
roles/pull/tasks/MacOSX.yml
|
---
- name: Ensure logfile path with correct ownership
file:
path: "{{ logfile }}"
mode: 0644
owner: "{{ ansible_user_id }}"
state: touch
become: yes
|
---
- name: Ensure logfile path with correct ownership
file:
path: "{{ logfile }}"
mode: 0644
owner: "{{ ansible_user_id }}"
state: touch
access_time: preserve
modification_time: preserve
become: yes
|
Add access and modification time to logfile touch
|
Add access and modification time to logfile touch
|
YAML
|
mit
|
aglorei/dotfiles,aglorei/dotfiles
|
20f2e6b54385b864958ded704b2c5d81b82c9b1f
|
data/default_ingest_attributes.yml
|
data/default_ingest_attributes.yml
|
#
# values to use if these are not specified in the ingest
#
rights: 'All rights reserved (no additional license for public reuse)'
publisher: <%= GenericWork::DEFAULT_PUBLISHER %>
institution: <%= GenericWork::DEFAULT_INSTITUTION %>
license: <%= GenericWork::DEFAULT_LICENSE %>
#
# the admin notes for informational purposes
#
admin_notes: 'Thesis originally deposited on LIBRA1_CREATE_DATE in version 1.28 of Libra. This thesis was migrated to Libra2 on CURRENT_DATE.'
#
# the default embargo type if we cannot determine one
#
# enable for new ingests (jefferson trust items, ILL)
# disable for masters & doctoral theses
#default_embargo_type: <%= Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED %>
#
# apply the specified embargo period; should be one of:
# 6_months, 1_year, 2_year, 5_year, forever (130 years)
#
# enable for new ingests (jefferson trust items, ILL)
# disable for masters & doctoral theses
#force_embargo_period: forever
|
#
# values to use if these are not specified in the ingest
#
rights: 'All rights reserved (no additional license for public reuse)'
publisher: <%= GenericWork::DEFAULT_PUBLISHER %>
institution: <%= GenericWork::DEFAULT_INSTITUTION %>
license: <%= GenericWork::DEFAULT_LICENSE %>
#
# the admin notes for informational purposes
#
admin_notes: 'Thesis originally deposited on LIBRA1_CREATE_DATE in version 1.28 of Libra. This thesis was migrated to Libra2 on CURRENT_DATE.'
#
# the default embargo type if we cannot determine one
#
# enable for new ingests (jefferson trust items, ILL)
# disable for masters & doctoral theses
default_embargo_type: <%= Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED %>
#
# apply the specified embargo period; should be one of:
# 6_months, 1_year, 2_year, 5_year, forever (130 years)
#
# enable for new ingests (jefferson trust items, ILL)
# disable for masters & doctoral theses
force_embargo_period: forever
|
Update default ingest as no more migration, just new bulk ingest
|
Update default ingest as no more migration, just new bulk ingest
|
YAML
|
apache-2.0
|
uvalib/Libra2,uvalib/Libra2,uvalib/Libra2,uvalib/Libra2,uvalib/Libra2
|
8729363e0f6c6ab42c146ee4cb69d2c4dd484269
|
azure-pipelines.yml
|
azure-pipelines.yml
|
trigger:
- master
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-18.04'
steps:
- script: sudo apt-get update --fix-missing
- script: sudo apt-get install -y libgl1-mesa-dev libgles2-mesa-dev libopenal-dev libasound2-dev libxxf86vm-dev libxi-dev libxcursor-dev libxrandr-dev libxss-dev
- script: |
cd samples
make -j2
displayName: 'make'
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- task: MSBuild@1
inputs:
solution: samples/samples.vcxproj
configuration: Release
- job: macOS
pool:
vmImage: 'macOS-10.14'
steps:
- script: |
cd samples
make -j2
displayName: 'make'
|
trigger:
- master
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-18.04'
steps:
- script: sudo apt-get update --fix-missing
- script: sudo apt-get install -y libgl1-mesa-dev libgles2-mesa-dev libopenal-dev libasound2-dev libxxf86vm-dev libxi-dev libxcursor-dev libxrandr-dev libxss-dev
- script: |
cd samples
make -j2
displayName: 'make'
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- task: MSBuild@1
inputs:
solution: samples/samples.vcxproj
configuration: Release
- job: macOS
pool:
vmImage: 'macOS-10.15'
steps:
- script: |
cd samples
make -j2
displayName: 'make'
|
Increment the macOS version for Azure
|
Increment the macOS version for Azure
|
YAML
|
unlicense
|
elnormous/ouzel,elnormous/ouzel,elnormous/ouzel
|
7487d84b634952f1eef1c6130516c61a271c1503
|
azure-pipelines.yml
|
azure-pipelines.yml
|
# ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@0
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: VSTest@2
inputs:
testAssemblyVer2: |
**\$(BuildConfiguration)\*test*.dll
!**\obj\**
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: PublishSymbols@2
displayName: 'Publish symbols path'
inputs:
SearchPattern: '**\bin\**\*.pdb'
PublishSymbols: false
continueOnError: true
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
ArtifactName: '$(Parameters.ArtifactName)'
|
# ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
artifactname: 'planetpowershell'
steps:
- task: NuGetToolInstaller@0
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: VSTest@2
inputs:
testAssemblyVer2: |
**\$(BuildConfiguration)\*test*.dll
!**\obj\**
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: PublishSymbols@2
displayName: 'Publish symbols path'
inputs:
SearchPattern: '**\bin\**\*.pdb'
PublishSymbols: false
continueOnError: true
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
ArtifactName: '$(artifactname)'
|
Update Artifact name, fix whitespace
|
Update Artifact name, fix whitespace
|
YAML
|
mit
|
planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell
|
c7d705a0b7fe8f2f463d31a9e8cdc31f138da281
|
azure-pipelines.yml
|
azure-pipelines.yml
|
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
Major: 4
Minor: 0
BuildConfiguration: 'Release'
name: $(Major).$(Minor).$(BuildID)
steps:
- checkout: self
submodules: true
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '3.1.301'
includePreviewVersions: true
- task: DotNetCoreCLI@2
inputs:
command: 'build'
feedsToUse: 'select'
versioningScheme: byBuildNumber
arguments: '--configuration $(BuildConfiguration) -p:Version=$(Build.BuildNumber);FileVersion=$(Build.BuildNumber)'
- task: CmdLine@2
inputs:
script: 'iscc /Q "Setup Script.iss"'
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: 'ServerStaging'
ArtifactName: 'artifact'
publishLocation: 'Container'
|
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
Major: 4
Minor: 0
BuildConfiguration: 'Release'
name: $(Major).$(Minor).$(BuildID)
steps:
- checkout: self
submodules: true
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '3.1.302'
includePreviewVersions: true
- task: DotNetCoreCLI@2
inputs:
command: 'build'
feedsToUse: 'select'
versioningScheme: byBuildNumber
arguments: '--configuration $(BuildConfiguration) -p:Version=$(Build.BuildNumber);FileVersion=$(Build.BuildNumber)'
- task: CmdLine@2
inputs:
script: 'iscc /Q "Setup Script.iss"'
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: 'ServerStaging'
ArtifactName: 'artifact'
publishLocation: 'Container'
|
Update .net core sdk to latest
|
Update .net core sdk to latest
|
YAML
|
mit
|
mscrivo/ootd
|
578d736488ec4b70897ff9440e07db7b88a9dee5
|
roles/taiga-webserver/tasks/ssl-signed.yml
|
roles/taiga-webserver/tasks/ssl-signed.yml
|
---
- name: deploy SSL private key
become: true
become_user: taiga
copy:
dest: "{{ _taiga_ssl_key_path }}"
mode: "0640"
content: "{{ taiga_webserver_ssl_key }}"
tags:
- config
- front-config
- name: deploy SSL certificate
become: true
become_user: taiga
copy:
dest: "{{ _taiga_ssl_certificate_path }}"
mode: "0644"
content: "{{ taiga_webserver_ssl_certificate }}"
tags:
- config
- front-config
|
---
- name: deploy SSL private key
become: true
become_user: taiga
copy:
dest: "{{ _taiga_ssl_key_path }}"
mode: "0640"
content: "{{ taiga_ssl_key }}"
tags:
- config
- front-config
- name: deploy SSL certificate
become: true
become_user: taiga
copy:
dest: "{{ _taiga_ssl_certificate_path }}"
mode: "0644"
content: "{{ taiga_ssl_certificate }}"
tags:
- config
- front-config
|
Fix non-selfsigned SSL certificate deployment
|
Fix non-selfsigned SSL certificate deployment
Commit 15d15366efb7a6715f7bd8e03f13f25c67b9b38c introduced this change
and missed two variable renames.
|
YAML
|
agpl-3.0
|
fghaas/taiga-ansible
|
06c1e835b27239a40a38cd59237566b943cd823d
|
scripts/roles/cikit-jenkins/vars/main.yml
|
scripts/roles/cikit-jenkins/vars/main.yml
|
---
jenkins_dest: /opt/jenkins
jenkins_lib: /var/lib/jenkins
jenkins:
package: "http://pkg.jenkins-ci.org/debian/binary/jenkins_2.50_all.deb"
repo: "deb http://pkg.jenkins.io/debian-stable binary/"
key: "https://pkg.jenkins.io/debian/jenkins-ci.org.key"
dependencies:
- openjdk-7-jre
- openjdk-7-jdk
- git
- curl
- daemon
cli: "{{ jenkins_dest }}/jenkins-cli.jar"
updates: "{{ jenkins_dest }}/updates_jenkins.json"
|
---
jenkins_dest: /opt/jenkins
jenkins_lib: /var/lib/jenkins
jenkins:
package: "http://pkg.jenkins-ci.org/debian/binary/jenkins_2.54_all.deb"
repo: "deb http://pkg.jenkins.io/debian-stable binary/"
key: "https://pkg.jenkins.io/debian/jenkins-ci.org.key"
dependencies:
- openjdk-7-jre
- openjdk-7-jdk
- git
- curl
- daemon
cli: "{{ jenkins_dest }}/jenkins-cli.jar"
updates: "{{ jenkins_dest }}/updates_jenkins.json"
|
Update Jenkins version to 2.54
|
[CIKit] Update Jenkins version to 2.54
|
YAML
|
apache-2.0
|
BR0kEN-/cikit,BR0kEN-/cikit,BR0kEN-/cikit,BR0kEN-/cikit,BR0kEN-/cikit
|
905a30bed57f383224bf523545130107ca09bdc4
|
config/jobs/kubernetes-sigs/service-apis/service-apis-config.yaml
|
config/jobs/kubernetes-sigs/service-apis/service-apis-config.yaml
|
presubmits:
kubernetes-sigs/service-apis:
- name: pull-service-apis-build
annotations:
testgrid-dashboards: sig-network-service-apis
testgrid-tab-name: build
decorate: true
path_alias: sigs.k8s.io/service-apis
always_run: true
skip_report: false
spec:
containers:
- image: golang:1.13
command:
- make
|
presubmits:
kubernetes-sigs/service-apis:
- name: pull-service-apis-build
annotations:
testgrid-dashboards: sig-network-service-apis
testgrid-tab-name: build
labels:
preset-dind-enabled: "true"
decorate: true
path_alias: sigs.k8s.io/service-apis
always_run: true
skip_report: false
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20191017-ac4b4b5-master
command:
# generic runner script, handles DIND, bazelrc for caching, etc.
- runner.sh
args:
- make
# docker-in-docker needs privileged mode
securityContext:
privileged: true
|
Enable docker on service-apis jobs
|
Enable docker on service-apis jobs
|
YAML
|
apache-2.0
|
BenTheElder/test-infra,cjwagner/test-infra,jessfraz/test-infra,dims/test-infra,brahmaroutu/test-infra,BenTheElder/test-infra,kubernetes/test-infra,jessfraz/test-infra,pwittrock/test-infra,cjwagner/test-infra,dims/test-infra,jessfraz/test-infra,cjwagner/test-infra,michelle192837/test-infra,cblecker/test-infra,jessfraz/test-infra,jessfraz/test-infra,ixdy/kubernetes-test-infra,monopole/test-infra,kubernetes/test-infra,fejta/test-infra,monopole/test-infra,michelle192837/test-infra,ixdy/kubernetes-test-infra,pwittrock/test-infra,fejta/test-infra,fejta/test-infra,brahmaroutu/test-infra,fejta/test-infra,BenTheElder/test-infra,brahmaroutu/test-infra,pwittrock/test-infra,michelle192837/test-infra,ixdy/kubernetes-test-infra,kubernetes/test-infra,michelle192837/test-infra,fejta/test-infra,jessfraz/test-infra,brahmaroutu/test-infra,cblecker/test-infra,monopole/test-infra,dims/test-infra,kubernetes/test-infra,pwittrock/test-infra,cblecker/test-infra,ixdy/kubernetes-test-infra,kubernetes/test-infra,pwittrock/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,cblecker/test-infra,michelle192837/test-infra,cblecker/test-infra,cjwagner/test-infra,dims/test-infra,dims/test-infra,fejta/test-infra,michelle192837/test-infra,cjwagner/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,monopole/test-infra,monopole/test-infra,BenTheElder/test-infra,cjwagner/test-infra,ixdy/kubernetes-test-infra,dims/test-infra,cblecker/test-infra,monopole/test-infra,brahmaroutu/test-infra
|
6f4dbce599b7f20db87b28bc8a39019a54a5d294
|
templates/install/ansible/roles/project/tasks/main.yml
|
templates/install/ansible/roles/project/tasks/main.yml
|
---
- name: Create project namespace
shell: oc new-project {{ namespace }} --description="EnMasse Infrastructure"
register: namespace_exists
failed_when: namespace_exists.stderr != '' and 'already exists' not in namespace_exists.stderr
changed_when: namespace_exists.rc == 0
|
---
- name: Create project namespace
shell: oc new-project {{ namespace }} --description="EnMasse Infrastructure"
register: namespace_exists
failed_when: namespace_exists.stderr != '' and 'already exists' not in namespace_exists.stderr
changed_when: namespace_exists.rc == 0
- name: Select project namespace
shell: oc project {{ namespace }}
|
Make sure project namespace is selected in the event it already exists
|
Make sure project namespace is selected in the event it already exists
|
YAML
|
apache-2.0
|
jenmalloy/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse
|
652542f004f473a98b2ecf362ff8019b049b3bb4
|
packages/gs/gstreamer.yaml
|
packages/gs/gstreamer.yaml
|
homepage: http://projects.haskell.org/gtk2hs/
changelog-type: ''
hash: 4b3032d9ca1e3b9e0f85d94622335f000ec00cc65bebaee9623fb717d70d9ad5
test-bench-deps: {}
maintainer: [email protected]
synopsis: Binding to the GStreamer open source multimedia framework.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=3 && <5'
glib: ! '>=0.12.5.0 && <0.13'
array: -any
mtl: -any
directory: -any
all-versions:
- '0.11.0'
- '0.11.1'
- '0.12.0'
- '0.12.1'
- '0.12.1.1'
- '0.12.1.2'
- '0.12.5.0'
author: Peter Gavin, Axel Simon
latest: '0.12.5.0'
description-type: haddock
description: ! 'This package provides a wrapper around the GStreamer C library. GStreamer
is a library
for constructing graphs of media-handling components. The applications it supports
range from simple Ogg/Vorbis playback, audio/video streaming to complex audio
(mixing) and video (non-linear editing) processing.'
license-name: LGPL-2.1
|
homepage: http://projects.haskell.org/gtk2hs/
changelog-type: ''
hash: e4552cc645778981e21ec8d129c7c4634c40731ac471125f54ddb854ee23ae96
test-bench-deps: {}
maintainer: [email protected]
synopsis: Binding to the GStreamer open source multimedia framework.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=3 && <5'
glib: ! '>=0.13 && <0.14'
array: -any
mtl: -any
directory: -any
all-versions:
- '0.11.0'
- '0.11.1'
- '0.12.0'
- '0.12.1'
- '0.12.1.1'
- '0.12.1.2'
- '0.12.5.0'
- '0.12.8'
author: Peter Gavin, Axel Simon
latest: '0.12.8'
description-type: haddock
description: ! 'This package provides a wrapper around the GStreamer C library. GStreamer
is a library
for constructing graphs of media-handling components. The applications it supports
range from simple Ogg/Vorbis playback, audio/video streaming to complex audio
(mixing) and video (non-linear editing) processing.'
license-name: LGPL-2.1
|
Update from Hackage at 2016-05-22T15:19:20+0000
|
Update from Hackage at 2016-05-22T15:19:20+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
0b8a971f31abca25b6a58c9ce25fcae3810e399e
|
packages/ha/hashflare.yaml
|
packages/ha/hashflare.yaml
|
homepage: https://github.com/nbrk/hashflare
changelog-type: ''
hash: a6f690f635b12064b1176286f46e129a99d2b6707e54460ea9a6edb6fd969606
test-bench-deps: {}
maintainer: [email protected]
synopsis: A library for working with HashFlare.io contracts and hashrates
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
simple-money: ! '>=0.2.0.0'
containers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
author: Nikolay Burkov
latest: '0.1.0.0'
description-type: haddock
description: ! 'Library that models HashFlare.io cloud mining service''s accounts,
contracts
and mining hashrates. Simple linear projections of the account''s balance
(increase in profits over time) can be easily modelled by provided combinators.'
license-name: BSD2
|
homepage: ''
changelog-type: ''
hash: accd8a66c743cbd6580182c1a85916dd6422d67a1587b7e2927849cd53e38f9a
test-bench-deps: {}
maintainer: [email protected]
synopsis: A library for working with HashFlare.io contracts and hashrates
changelog: ''
basic-deps:
base: ! '>=4.8 && <5.1'
simple-money: ! '>=0.2.0.0'
containers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
author: Nikolay Burkov
latest: '0.1.0.0'
description-type: haddock
description: ! 'Library that models HashFlare.io cloud mining service''s accounts,
contracts
and mining hashrates. Simple linear projections of the account''s balance
(increase in profits over time) can be easily modelled by provided combinators.'
license-name: BSD2
|
Update from Hackage at 2017-01-21T00:05:06Z
|
Update from Hackage at 2017-01-21T00:05:06Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
409f598fd3d5729b13f8f17d9c8b4ada69dff2e9
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
image: fedora:latest
variables:
DEPENDENCIES: chrpath vala gtk-doc
gobject-introspection-devel libxml2-devel
libsoup-devel glib2-devel gtk3-devel
liboauth-devel totem-pl-parser-devel
meson redhat-rpm-config gcc gcc-c++ glibc-devel
build_stable:
before_script:
- dnf update -y --nogpgcheck
- dnf install -y --nogpgcheck $DEPENDENCIES
script:
- meson . _build --prefix=/usr
- ninja -C _build
- ninja -C _build install
- ninja -C _build test
build_no_optional_libs:
before_script:
- dnf update -y --nogpgcheck
- dnf install -y --nogpgcheck $DEPENDENCIES
script:
- meson . _build --prefix=/usr -Denable-grl-net=false -Denable-grl-pls=false
- ninja -C _build
- ninja -C _build install
- ninja -C _build test
|
image: fedora:latest
variables:
DEPENDENCIES: chrpath vala gtk-doc
gobject-introspection-devel libxml2-devel
libsoup-devel glib2-devel gtk3-devel
liboauth-devel totem-pl-parser-devel
meson redhat-rpm-config gcc gcc-c++ glibc-devel
build_stable:
before_script:
- dnf update -y --nogpgcheck
- dnf install -y --nogpgcheck $DEPENDENCIES
script:
- meson . _build --prefix=/usr
- ninja -C _build
- ninja -C _build install
- ninja -C _build test
build_no_optional_libs:
before_script:
- dnf update -y --nogpgcheck
- dnf install -y --nogpgcheck $DEPENDENCIES
script:
- meson . _build --prefix=/usr -Denable-grl-net=true -Denable-grl-pls=true
- ninja -C _build
- ninja -C _build install
- ninja -C _build test
|
Build and run tests against grl-net and grl-pls
|
ci: Build and run tests against grl-net and grl-pls
|
YAML
|
lgpl-2.1
|
GNOME/grilo,GNOME/grilo
|
08b280f027a52a5364069a84deade5671724b5d1
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
before_script:
- |
apt-key adv -q --batch --yes --keyserver keyserver.ubuntu.com --recv-keys AA12E97F0881517F &&
add-apt-repository 'deb https://static.redox-os.org/toolchain/apt ./' &&
apt-get update -qq &&
apt-get purge -qq binutils-doc &&
apt-get install -qq build-essential nasm pkg-config fuse libfuse-dev genisoimage syslinux realpath x86-64-unknown-redox-gcc &&
modprobe fuse &&
chmod 666 /dev/fuse &&
chown root:$USER /etc/fuse.conf &&
curl https://sh.rustup.rs -sSf | sh
build:
script:
- make ci
|
before_script:
- |
apt-get install -qq build-essential gnupg nasm pkg-config fuse libfuse-dev genisoimage syslinux realpath &&
apt-key adv -q --batch --yes --keyserver keyserver.ubuntu.com --recv-keys AA12E97F0881517F &&
add-apt-repository 'deb https://static.redox-os.org/toolchain/apt ./' &&
apt-get update -qq &&
apt-get purge -qq binutils-doc &&
apt-get install -qq x86-64-unknown-redox-gcc &&
modprobe fuse &&
chmod 666 /dev/fuse &&
chown root:$USER /etc/fuse.conf &&
curl https://sh.rustup.rs -sSf | sh
build:
script:
- make ci
|
Install dependencies for apt-key before adding toolchain repo
|
Install dependencies for apt-key before adding toolchain repo
|
YAML
|
mit
|
jackpot51/redox,jackpot51/redox,redox-os/redox,jackpot51/redox
|
8b97313c8498980bd3abf72adf8a3d6243720b89
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
before_script:
- angr-test sync hard
local:
script: "angr-test cle"
tags:
- "angr"
angr:
script: "angr-test angr"
tags:
- "angr"
fidget:
script: "angr-test fidget"
tags:
- "angr"
angrop:
script: "angr-test angrop"
tags:
- "angr"
cle_lint:
script: "angr-test lint"
tags:
- "angr"
docs:
script: "angr-test docs"
tags:
- "angr"
|
before_script:
- angr-test sync hard
local:
script: "angr-test cle"
tags:
- "angr"
angr:
script: "angr-test angr"
tags:
- "angr"
fidget:
script: "angr-test fidget"
tags:
- "angr"
angrop:
script: "angr-test angrop"
tags:
- "angr"
tracer:
script: "angr-test tracer"
tags:
- "angr"
cle_lint:
script: "angr-test lint"
tags:
- "angr"
docs:
script: "angr-test docs"
tags:
- "angr"
|
Add cle reverse dependencies tests
|
Add cle reverse dependencies tests
|
YAML
|
bsd-2-clause
|
chubbymaggie/cle,angr/cle
|
65dd4bca8c37c7df5bb806cda008a2c03104d3ae
|
.github/workflows/merge-dependabot-upgrades.yml
|
.github/workflows/merge-dependabot-upgrades.yml
|
# See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:
merge-me:
name: Auto-merge Dependabot PRs
runs-on: ubuntu-latest
steps:
- name: Auto-Merge
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: ridedott/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_METHOD: MERGE
|
# See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:
merge-me:
name: Auto-merge Dependabot PRs
runs-on: ubuntu-latest
steps:
- name: Auto-Merge
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: ridedott/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_METHOD: MERGE
|
Bump ridedott/merge-me-action from 2.9.79 to 2.9.80
|
Bump ridedott/merge-me-action from 2.9.79 to 2.9.80
|
YAML
|
mit
|
Ocramius/DoctrineBatchUtils
|
1e24fed0a92cada371a56bcbb7ec9f0354cab985
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
variables:
CI_SCRIPTS_DIR: "./ci"
gift-gala:
script:
- MATLAB_EXE=/Applications/MATLAB_R2015b.app/bin/matlab
- MATLAB_SCRIPT=$(pwd)/matlab/CIBuildAndTest.m
- "$CI_SCRIPTS_DIR/test-mac.sh $MATLAB_EXE $MATLAB_SCRIPT"
tags:
- gift-gala
- gift-mac
- matlab-r2015b
- cuda
gift-adelie:
script:
- "$CI_SCRIPTS_DIR/test-linux.sh"
tags:
- gift-adelie
- gift-linux
- matlab
- cuda
gift-skylight:
script:
- set PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin
- "call .\\ci\\test-win.bat"
tags:
- gift-skylight
- gift-win64
- matlab
- cuda
|
variables:
CI_SCRIPTS_DIR: "./ci"
gift-gala:
script:
- MATLAB_EXE=/Applications/MATLAB_R2016b.app/bin/matlab
- MATLAB_SCRIPT=$(pwd)/matlab/CIBuildAndTest.m
- XCODE_EXE=/Applications/Xcode7.3.1.app/Contents/Developer
- env DEVELOPER_DIR=$XCODE_EXE $CI_SCRIPTS_DIR/test-mac.sh $MATLAB_EXE $MATLAB_SCRIPT
tags:
- gift-gala
- gift-mac
- matlab-r2016b
- cuda7
gift-adelie:
script:
- "$CI_SCRIPTS_DIR/test-linux.sh"
tags:
- gift-adelie
- gift-linux
- matlab
- cuda
gift-skylight:
script:
- set PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin
- "call .\\ci\\test-win.bat"
tags:
- gift-skylight
- gift-win64
- matlab
- cuda
|
Update test build to Xcode 7.3.1, Matlab R2016b, Cuda 7.5
|
Update test build to Xcode 7.3.1, Matlab R2016b, Cuda 7.5
|
YAML
|
bsd-3-clause
|
gift-surg/SlicSeg,gift-surg/SlicSeg,gift-surg/SlicSeg
|
589378fecd155dc09bc422a2cf416da0f5a13568
|
.gitlab-ci.yml
|
.gitlab-ci.yml
|
# Test job template
.test_template: &test_definition
stage: test
script:
- bundle install --jobs $(nproc) --without docs --path vendor
- bundle exec rake tests
- bundle exec rake spec
# Test with version present on Debian Stretch
test:puppet4.8:
image: ruby:2.3
variables:
PUPPET_VERSION: "~> 4.8.2"
FACTER_VERSION: '~> 2.4.6'
HIERA_VERSION: '~> 3.2.0'
<<: *test_definition
# Test with version present on Debian Buster
test:puppet5.5:
image: ruby:2.5
variables:
PUPPET_VERSION: "~> 5.5.10"
FACTER_VERSION: '~> 3.11.0'
<<: *test_definition
# Build and deploy docs on GitLab Pages
pages:
image: debian:stable
stage: deploy
script:
- apt-get update && apt-get install -y puppet-strings puppet
- puppet strings generate
- mv doc public
only:
- master
artifacts:
paths:
- public
|
# Test job template
.test_template: &test_definition
stage: test
script:
- bundle install --jobs $(nproc) --without docs --path vendor
- bundle exec rake tests
- bundle exec rake spec
# Test with version present on Debian Buster
test:puppet5.5:
image: ruby:2.5
variables:
PUPPET_VERSION: "~> 5.5.10"
FACTER_VERSION: '~> 3.11.0'
<<: *test_definition
# Test with the latest Puppet release
test:puppetlatest:
<<: *test_definition
# Build and deploy docs on GitLab Pages
pages:
image: debian:stable
stage: deploy
script:
- apt-get update && apt-get install -y puppet-strings puppet
- puppet strings generate
- mv doc public
only:
- master
artifacts:
paths:
- public
|
Drop puppet 4.8 and test against the latest puppet release in the CI
|
Drop puppet 4.8 and test against the latest puppet release in the CI
|
YAML
|
agpl-3.0
|
duritong/puppet-tor,duritong/puppet-tor
|
dc83e7e24054277129bfd71569f629516dc99e3c
|
blueprints/modular/showcase.yaml
|
blueprints/modular/showcase.yaml
|
title: Showcase
'@extends': default
form:
fields:
tabs:
fields:
advanced:
fields:
columns:
fields:
column1:
fields:
name:
default: modular/showcase
'@data-options': '\Grav\Common\Page\Pages::modularTypes'
overrides:
fields:
header.template:
default: modular/showcase
'@data-options': '\Grav\Common\Page\Pages::modularTypes'
buttons:
type: tab
title: Buttons
fields:
header.buttons:
name: buttons
type: list
label: Buttons
fields:
.text:
type: text
label: Text
.url:
type: text
label: URL
.primary:
type: toggle
label: Primary
highlight: 1
options:
1: Yes
0: No
validate:
type: bool
|
title: Showcase
'@extends': default
form:
fields:
tabs:
fields:
advanced:
fields:
columns:
fields:
column1:
fields:
name:
default: modular/showcase
'@data-options': '\Grav\Common\Page\Pages::modularTypes'
overrides:
fields:
header.template:
default: modular/showcase
'@data-options': '\Grav\Common\Page\Pages::modularTypes'
buttons:
type: tab
title: Buttons
fields:
header.buttons:
name: buttons
type: list
label: Buttons
fields:
.text:
type: text
label: Text
.url:
type: text
label: URL
.primary:
type: toggle
label: Primary
highlight: 1
default: 1
options:
1: 'Yes'
0: 'No'
validate:
type: bool
|
Fix for Showcase blueprint and PECL Yaml parser
|
Fix for Showcase blueprint and PECL Yaml parser
|
YAML
|
mit
|
getgrav/grav-theme-antimatter,getgrav/grav-theme-antimatter,getgrav/grav-theme-antimatter,getgrav/grav-theme-antimatter
|
19259069bd050c19811b79a0878640abfc39eed2
|
ciongke/sinker_deployment.yaml
|
ciongke/sinker_deployment.yaml
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: sinker
labels:
app: sinker
spec:
replicas: 1
template:
metadata:
labels:
app: sinker
spec:
containers:
- name: sinker
image: gcr.io/kubernetes-jenkins-pull/sinker:0.0
restartPolicy: Never
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: sinker
labels:
app: sinker
spec:
replicas: 1
template:
metadata:
labels:
app: sinker
spec:
containers:
- name: sinker
image: gcr.io/kubernetes-jenkins-pull/sinker:0.0
|
Fix sinker restart policy. It's a deployment!
|
Fix sinker restart policy. It's a deployment!
|
YAML
|
apache-2.0
|
dchen1107/test-infra,brahmaroutu/test-infra,monopole/test-infra,michelle192837/test-infra,mikedanese/test-infra,gmarek/test-infra,cjwagner/test-infra,kubernetes/test-infra,krousey/test-infra,brahmaroutu/test-infra,gmarek/test-infra,piosz/test-infra,dims/test-infra,nlandolfi/test-infra-1,spxtr/test-infra,mtaufen/test-infra,shyamjvs/test-infra,kargakis/test-infra,BenTheElder/test-infra,brahmaroutu/test-infra,mtaufen/test-infra,krzyzacy/test-infra,gmarek/test-infra,dchen1107/test-infra,cjwagner/test-infra,krousey/test-infra,jlowdermilk/test-infra,lavalamp/test-infra,michelle192837/test-infra,cblecker/test-infra,mtaufen/test-infra,kubernetes/test-infra,madhusudancs/test-infra,madhusudancs/test-infra,rmmh/kubernetes-test-infra,BenTheElder/test-infra,jessfraz/test-infra,jlowdermilk/test-infra,spxtr/test-infra,mtaufen/test-infra,mikedanese/test-infra,mindprince/test-infra,pwittrock/test-infra,mindprince/test-infra,ixdy/kubernetes-test-infra,krousey/test-infra,brahmaroutu/test-infra,foxish/test-infra,ixdy/kubernetes-test-infra,jlowdermilk/test-infra,rmmh/kubernetes-test-infra,BenTheElder/test-infra,spxtr/test-infra,mikedanese/test-infra,fejta/test-infra,shashidharatd/test-infra,dims/test-infra,shyamjvs/test-infra,BenTheElder/test-infra,rmmh/kubernetes-test-infra,ixdy/kubernetes-test-infra,monopole/test-infra,brahmaroutu/test-infra,krousey/test-infra,michelle192837/test-infra,foxish/test-infra,shyamjvs/test-infra,michelle192837/test-infra,madhusudancs/test-infra,grodrigues3/test-infra,cblecker/test-infra,krzyzacy/test-infra,michelle192837/test-infra,krzyzacy/test-infra,jessfraz/test-infra,jessfraz/test-infra,monopole/test-infra,fejta/test-infra,cblecker/test-infra,foxish/test-infra,fejta/test-infra,dims/test-infra,mindprince/test-infra,jlowdermilk/test-infra,cblecker/test-infra,fejta/test-infra,shashidharatd/test-infra,pwittrock/test-infra,kewu1992/test-infra,shashidharatd/test-infra,michelle192837/test-infra,jessfraz/test-infra,dchen1107/test-infra,kargakis/test-infra,kewu1992/test-infra,lavalamp/test-infra,madhusudancs/test-infra,piosz/test-infra,dchen1107/test-infra,abgworrall/test-infra,monopole/test-infra,mikedanese/test-infra,piosz/test-infra,ixdy/kubernetes-test-infra,cjwagner/test-infra,piosz/test-infra,cjwagner/test-infra,nlandolfi/test-infra-1,grodrigues3/test-infra,spxtr/test-infra,grodrigues3/test-infra,shyamjvs/test-infra,dims/test-infra,foxish/test-infra,shyamjvs/test-infra,shashidharatd/test-infra,dchen1107/test-infra,rmmh/kubernetes-test-infra,BenTheElder/test-infra,shyamjvs/test-infra,grodrigues3/test-infra,pwittrock/test-infra,kubernetes/test-infra,pwittrock/test-infra,krzyzacy/test-infra,kubernetes/test-infra,madhusudancs/test-infra,monopole/test-infra,jlowdermilk/test-infra,kubernetes/test-infra,kargakis/test-infra,mindprince/test-infra,gmarek/test-infra,kargakis/test-infra,cjwagner/test-infra,cjwagner/test-infra,jessfraz/test-infra,nlandolfi/test-infra-1,fejta/test-infra,jessfraz/test-infra,krousey/test-infra,krzyzacy/test-infra,fejta/test-infra,monopole/test-infra,nlandolfi/test-infra-1,abgworrall/test-infra,lavalamp/test-infra,mtaufen/test-infra,krzyzacy/test-infra,BenTheElder/test-infra,kewu1992/test-infra,lavalamp/test-infra,spxtr/test-infra,dims/test-infra,abgworrall/test-infra,abgworrall/test-infra,cblecker/test-infra,cblecker/test-infra,mindprince/test-infra,lavalamp/test-infra,nlandolfi/test-infra-1,kubernetes/test-infra,kewu1992/test-infra,gmarek/test-infra,shashidharatd/test-infra,pwittrock/test-infra,kewu1992/test-infra,abgworrall/test-infra,kargakis/test-infra,foxish/test-infra,kargakis/test-infra,brahmaroutu/test-infra,ixdy/kubernetes-test-infra,grodrigues3/test-infra,mikedanese/test-infra,piosz/test-infra,lavalamp/test-infra,jlowdermilk/test-infra,rmmh/kubernetes-test-infra,dims/test-infra
|
6578c35bf0e249f6e988a0cf21c3c3732404c447
|
packages/ke/keera-hails-reactive-gtk.yaml
|
packages/ke/keera-hails-reactive-gtk.yaml
|
homepage: http://www.keera.es/blog/community/
changelog-type: ''
hash: ad4cbcaacbd2e242e58723f1b7e848a2271ed7b185ab3f6ee2768afdc0510215
test-bench-deps: {}
maintainer: [email protected]
synopsis: Haskell on Gtk rails - Reactive Fields for Gtk widgets
changelog: ''
basic-deps:
keera-hails-reactivevalues: -any
base: ! '>=4 && <5'
gtk-helpers: -any
mtl: -any
gtk: -any
transformers: -any
all-versions:
- '0.0.3.5'
- '0.0.3.6'
author: Ivan Perez
latest: '0.0.3.6'
description-type: haddock
description: ''
license-name: BSD3
|
homepage: http://www.keera.es/blog/community/
changelog-type: ''
hash: a0dfc0461193c650372e7381462da2c021a7489274149e13ab752697c0c5bba2
test-bench-deps: {}
maintainer: [email protected]
synopsis: Haskell on Gtk rails - Reactive Fields for Gtk widgets
changelog: ''
basic-deps:
keera-hails-reactivevalues: -any
base: ! '>=4 && <5'
gtk-helpers: -any
mtl: -any
gtk: -any
transformers: -any
all-versions:
- '0.0.3.5'
- '0.0.3.6'
- '0.1'
author: Ivan Perez
latest: '0.1'
description-type: haddock
description: ''
license-name: BSD3
|
Update from Hackage at 2015-08-13T06:38:29+0000
|
Update from Hackage at 2015-08-13T06:38:29+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
ee0745dfd4cc39b743576658438017b180de6abf
|
playbooks/roles/clear-nexus-vlans/tasks/main.yaml
|
playbooks/roles/clear-nexus-vlans/tasks/main.yaml
|
- name: Copy script to workspace
copy:
src: "clear_nexus_vlans.py"
dest: "{{ workspace }}/clear_nexus_vlans.py"
- name: Ensure nexus switch is in known_hosts
known_hosts:
name: "{{ nexus_ip }}"
key: "{{ lookup('pipe', 'ssh-keyscan -t rsa %s' % nexus_ip) }}"
- name: Clear the claimed VLANs on the Nexus interfaces
command: "python {{ workspace }}/clear_nexus_vlans.py {{ nexus_ip }} {{ nexus_user }} {{ nexus_password }} {{ item }} {{ minvlan }} {{ maxvlan }}"
with_items: "{{ nexus_interfaces }}"
|
- name: Copy script to workspace
copy:
src: "clear_nexus_vlans.py"
dest: "{{ workspace }}/clear_nexus_vlans.py"
- name: ssh-keyscan the nexus switch
command: "ssh-keyscan -t rsa {{ nexus_ip }}"
register: nexus_keyscan_result
- name: Ensure nexus switch is in known_hosts
known_hosts:
name: "{{ nexus_ip }}"
key: "{{ nexus_keyscan_result.stdout }}"
- name: Clear the claimed VLANs on the Nexus interfaces
command: "python {{ workspace }}/clear_nexus_vlans.py {{ nexus_ip }} {{ nexus_user }} {{ nexus_password }} {{ item }} {{ minvlan }} {{ maxvlan }}"
with_items: "{{ nexus_interfaces }}"
|
Use command instead of lookup in clear-nexus-vlans
|
Use command instead of lookup in clear-nexus-vlans
|
YAML
|
apache-2.0
|
CiscoSystems/project-config-third-party,CiscoSystems/project-config-third-party
|
46914f064eeb4891da1f8990d3777f87a726613c
|
config/locale_task_config.yaml
|
config/locale_task_config.yaml
|
---
yaml_strings_to_extract:
db/fixtures/miq_product_features.*:
- name
- description
db/fixtures/miq_report_formats.*:
- description
db/fixtures/notification_types.*:
- message
product/charts/layouts/*.yaml:
- title
product/charts/layouts/*/*.yaml:
- title
product/compare/*.yaml:
- headers
- group
- menu_name
- title
product/reports/*/*.*:
- headers
- menu_name
- title
product/timelines/miq_reports/*.*:
- title
- name
- headers
|
---
yaml_strings_to_extract:
db/fixtures/miq_product_features{.yml,.yaml,/*.yml,/*.yaml}:
- name
- description
db/fixtures/miq_report_formats.*:
- description
db/fixtures/notification_types.*:
- message
product/charts/layouts/*.yaml:
- title
product/charts/layouts/*/*.yaml:
- title
product/compare/*.yaml:
- headers
- group
- menu_name
- title
product/reports/*/*.*:
- headers
- menu_name
- title
product/timelines/miq_reports/*.*:
- title
- name
- headers
|
Expand i18n yaml extraction for miq_product_feature pluggability
|
Expand i18n yaml extraction for miq_product_feature pluggability
|
YAML
|
apache-2.0
|
agrare/manageiq,agrare/manageiq,gmcculloug/manageiq,NickLaMuro/manageiq,aufi/manageiq,djberg96/manageiq,jrafanie/manageiq,kbrock/manageiq,andyvesel/manageiq,lpichler/manageiq,lpichler/manageiq,mzazrivec/manageiq,pkomanek/manageiq,branic/manageiq,yaacov/manageiq,jvlcek/manageiq,juliancheal/manageiq,chessbyte/manageiq,pkomanek/manageiq,borod108/manageiq,tinaafitz/manageiq,yaacov/manageiq,jvlcek/manageiq,syncrou/manageiq,gmcculloug/manageiq,kbrock/manageiq,jrafanie/manageiq,pkomanek/manageiq,djberg96/manageiq,mkanoor/manageiq,juliancheal/manageiq,jameswnl/manageiq,agrare/manageiq,jvlcek/manageiq,branic/manageiq,romanblanco/manageiq,borod108/manageiq,andyvesel/manageiq,jameswnl/manageiq,hstastna/manageiq,billfitzgerald0120/manageiq,mzazrivec/manageiq,syncrou/manageiq,skateman/manageiq,juliancheal/manageiq,andyvesel/manageiq,skateman/manageiq,ManageIQ/manageiq,lpichler/manageiq,billfitzgerald0120/manageiq,tinaafitz/manageiq,d-m-u/manageiq,skateman/manageiq,kbrock/manageiq,hstastna/manageiq,aufi/manageiq,mzazrivec/manageiq,gmcculloug/manageiq,borod108/manageiq,mzazrivec/manageiq,djberg96/manageiq,NickLaMuro/manageiq,romanblanco/manageiq,juliancheal/manageiq,pkomanek/manageiq,d-m-u/manageiq,lpichler/manageiq,jameswnl/manageiq,mkanoor/manageiq,mkanoor/manageiq,djberg96/manageiq,hstastna/manageiq,hstastna/manageiq,jameswnl/manageiq,romanblanco/manageiq,NickLaMuro/manageiq,mkanoor/manageiq,yaacov/manageiq,yaacov/manageiq,jrafanie/manageiq,kbrock/manageiq,chessbyte/manageiq,ManageIQ/manageiq,aufi/manageiq,agrare/manageiq,jvlcek/manageiq,branic/manageiq,syncrou/manageiq,jrafanie/manageiq,d-m-u/manageiq,ManageIQ/manageiq,branic/manageiq,tinaafitz/manageiq,billfitzgerald0120/manageiq,gmcculloug/manageiq,syncrou/manageiq,ManageIQ/manageiq,chessbyte/manageiq,borod108/manageiq,tinaafitz/manageiq,chessbyte/manageiq,andyvesel/manageiq,skateman/manageiq,billfitzgerald0120/manageiq,NickLaMuro/manageiq,romanblanco/manageiq,d-m-u/manageiq,aufi/manageiq
|
87776a14841df472a1bfcf2fb2d8d9d08af4e40a
|
aws/stringer-cd.yaml
|
aws/stringer-cd.yaml
|
language: python
python:
- 2.7
env:
global:
before_install:
- pip install awscli
install:
- pip install -r requirements.txt
before_script:
script:
after_success:
|
AWSTemplateFormatVersion: "2010-09-09"
Description: The code deployment application.
Parameters:
ServiceRole:
Default: INPUT_IAM
Description: IAM service role for code deploy
Type: String
ApplicationName:
Default: stringer-app
Type: String
EC2TagKey:
Default: owner
Type: String
EC2TagValue:
Default: kalab
Type: String
Resources:
Application:
Type: 'AWS::CodeDeploy::Application'
Properties:
ApplicationName:
Ref: ApplicationName
DeploymentGroup:
Type: 'AWS::CodeDeploy::DeploymentGroup'
Properties:
ApplicationName:
Ref: Application
DeploymentConfigName: CodeDeployDefault.OneAtATime
AutoRollbackConfiguration:
Enabled: 'false'
DeploymentGroupName: wordsum
Ec2TagFilters:
- Key:
Ref: EC2TagKey
Value:
Ref: EC2TagValue
Type: KEY_AND_VALUE
ServiceRoleArn:
Ref: ServiceRole
|
Write the CF template for the code-deploy. Need to test. Publish for time and life.
|
Write the CF template for the code-deploy. Need to test. Publish for time and life.
|
YAML
|
apache-2.0
|
kalaboster/stringer,kalaboster/stringer
|
e3a54feeea5d4d12bac0238258678887a1a6e39f
|
data/discovery/register/jobcentre.yaml
|
data/discovery/register/jobcentre.yaml
|
fields:
- "jobcentre"
- "name"
- "address"
- "postcode"
phase: "discovery"
register: "jobcentre"
registry: "department-for-work-pensions"
text: "Job Centre Offices"
|
fields:
- "jobcentre"
- "name"
- "address"
- "postcode"
phase: "discovery"
register: "jobcentre"
registry: "department-for-work-pensions"
text: "Jobcentre Offices"
|
Rename "Job Centre Offices" to "Jobcentre Offices"
|
Rename "Job Centre Offices" to "Jobcentre Offices"
|
YAML
|
mit
|
openregister/registry-data
|
8db9fb0bdc6c6ac0abcb014606da5bfb40176b46
|
tests/Fixtures/FileConfigurations/resources.yml
|
tests/Fixtures/FileConfigurations/resources.yml
|
resources:
'ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\Dummy': ~
'ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\FileConfigDummy':
shortName: 'thedummyshortname'
description: 'Dummy resource'
itemOperations:
my_op_name:
method: 'GET'
my_other_op_name:
method: 'POST'
collectionOperations:
my_collection_op:
method: 'POST'
path: 'the/collection/path'
attributes:
normalization_context:
groups: ['default']
denormalization_context:
groups: ['default']
hydra_context:
'@type': 'hydra:Operation'
'@hydra:title': 'File config Dummy'
iri: 'someirischema'
properties:
'foo':
description: 'The dummy foo'
readable: true
writable: true
readableLink: false
writableLink: false
required: true
attributes:
'foo': ['Foo']
'bar':
0: ['Bar']
'baz': 'Baz'
'baz': 'Baz'
'name':
description: 'The dummy name'
|
resources:
'ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\Dummy': ~
'ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\FileConfigDummy':
shortName: 'thedummyshortname'
description: 'Dummy resource'
itemOperations:
my_op_name:
method: 'GET'
my_other_op_name:
method: 'POST'
collectionOperations:
my_collection_op:
method: 'POST'
path: 'the/collection/path'
attributes:
normalization_context:
groups: ['default']
denormalization_context:
groups: ['default']
hydra_context:
'@type': 'hydra:Operation'
'@hydra:title': 'File config Dummy'
iri: 'someirischema'
properties:
'foo':
description: 'The dummy foo'
readable: true
writable: true
readableLink: false
writableLink: false
required: true
attributes:
'foo': ['Foo']
'bar':
'0': ['Bar']
'baz': 'Baz'
'baz': 'Baz'
'name':
description: 'The dummy name'
|
Fix yaml file, key should be quoted
|
Fix yaml file, key should be quoted
|
YAML
|
mit
|
soyuka/core,meyerbaptiste/core,jdeniau/DunglasApiBundle,teohhanhui/api-platform-core,meyerbaptiste/core,api-platform/core,vincentchalamon/core,jdeniau/DunglasApiBundle,teohhanhui/api-platform-core,soyuka/core,soyuka/DunglasApiBundle,api-platform/core,meyerbaptiste/core,vincentchalamon/core,leesiongchan/DunglasApiBundle,teohhanhui/DunglasApiBundle,jdeniau/DunglasApiBundle,soyuka/core,vincentchalamon/core,meyerbaptiste/core,soyuka/core,teohhanhui/api-platform-core,vincentchalamon/core,jdeniau/DunglasApiBundle,teohhanhui/api-platform-core,api-platform/core,ahlee2326/DunglasApiBundle,api-platform/core
|
4a80ccf7cb253c1a69eb75ede3c658a614dcf231
|
recipes/tifffile/meta.yaml
|
recipes/tifffile/meta.yaml
|
package:
name: tifffile
version: 0.3.1
source:
git_rev: v0.3.1
git_url: https://github.com/blink1073/tifffile
build:
number: 1
requirements:
build:
- python
- setuptools
- numpy x.x
run:
- python
- numpy x.x
test:
imports:
- tifffile
about:
home: https://github.com/blink1073/tifffile
license: BSD License
summary: 'Read and write image data from and to TIFF files.'
|
package:
name: tifffile
version: 0.7.0
source:
git_rev: v0.7.0
git_url: https://github.com/blink1073/tifffile
build:
number: 1
requirements:
build:
- python
- setuptools
- numpy x.x
run:
- python
- numpy x.x
test:
imports:
- tifffile
about:
home: https://github.com/blink1073/tifffile
license: BSD License
summary: 'Read and write image data from and to TIFF files.'
|
Build tifffile from github source
|
Build tifffile from github source
|
YAML
|
bsd-3-clause
|
NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes
|
4ca574cde1968d7410d18cfab4a3f20c7dd3831a
|
.github/workflows/gradle-wrapper-validation.yml
|
.github/workflows/gradle-wrapper-validation.yml
|
name: "Validate Gradle Wrapper"
on: [push, pull_request]
permissions:
contents: read
jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
|
name: "Validate Gradle Wrapper"
on: [push, pull_request]
permissions:
contents: read
jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
|
Use actions/checkout@v3 for Gradle Wrapper Validation Action
|
Use actions/checkout@v3 for Gradle Wrapper Validation Action
See gh-29198
|
YAML
|
apache-2.0
|
spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework,spring-projects/spring-framework
|
d809a4ec89453595b7ba24557f82b60ba1bf1a94
|
src/Bonnes/AdressesBundle/Resources/config/services.yml
|
src/Bonnes/AdressesBundle/Resources/config/services.yml
|
parameters:
# bonnes_adresses.example.class: Bonnes\AdressesBundle\Example
services:
adresses.admin:
class: Bonnes\AdressesBundle\Admin\AdresseAdmin
tags:
- { name: sonata.admin, manager_type: doctrine_mongodb, group: "Adresses", label: "Adresses" }
arguments: [null, Bonnes\AdressesBundle\Document\Adresse, null]
adressestype.admin:
class: Bonnes\AdressesBundle\Admin\AdresseTypeAdmin
tags:
- { name: sonata.admin, manager_type: doctrine_mongodb, group: "Adresses", label: "Adresses Type" }
arguments: [null, Bonnes\AdressesBundle\Document\AdresseType, null]
my.sitemap.listener:
class: Bonnes\AdressesBundle\EventListener\SitemapListener
arguments: [@router, @doctrine_mongodb]
tags: [{name: "presta.sitemap.listener"}]
twig.extension.text:
class: Twig_Extensions_Extension_Text
tags:
- { name: twig.extension }
|
parameters:
# bonnes_adresses.example.class: Bonnes\AdressesBundle\Example
services:
adresses.admin:
class: Bonnes\AdressesBundle\Admin\AdresseAdmin
tags:
- { name: sonata.admin, manager_type: doctrine_mongodb, group: "Adresses", label: "Adresses" }
arguments: [null, Bonnes\AdressesBundle\Document\Adresse, null]
my.sitemap.listener:
class: Bonnes\AdressesBundle\EventListener\SitemapListener
arguments: [@router, @doctrine_mongodb]
tags: [{name: "presta.sitemap.listener"}]
twig.extension.text:
class: Twig_Extensions_Extension_Text
tags:
- { name: twig.extension }
|
Remove last piece of AdresseType
|
Remove last piece of AdresseType
|
YAML
|
mit
|
lologhi/desBonnesAdresses,lologhi/desBonnesAdresses,lologhi/desBonnesAdresses
|
6f0b306938b8fcf20e2848876bc8abc8ae68e496
|
kubeadm.yaml
|
kubeadm.yaml
|
kind: MasterConfiguration
apiVersion: kubeadm.k8s.io/v1alpha1
controllerManagerExtraArgs:
horizontal-pod-autoscaler-use-rest-clients: "true"
horizontal-pod-autoscaler-sync-period: "10s"
node-monitor-grace-period: "10s"
apiServerExtraArgs:
runtime-config: "api/all=true"
feature-gates: "TaintBasedEvictions=true"
kubernetesVersion: "stable-1.7"
|
apiVersion: kubeadm.k8s.io/v1alpha1
kind: MasterConfiguration
controllerManagerExtraArgs:
horizontal-pod-autoscaler-use-rest-clients: "true"
horizontal-pod-autoscaler-sync-period: "10s"
node-monitor-grace-period: "10s"
apiServerExtraArgs:
runtime-config: "api/all=true"
kubernetesVersion: "stable-1.7"
|
Remove the TaintBasedEvictions alpha feature
|
Remove the TaintBasedEvictions alpha feature
|
YAML
|
mit
|
luxas/kubeadm-workshop,luxas/kubeadm-workshop
|
2bc780b833fb60d27dae66d3b5d2fd49b0e6ae23
|
boskos/variants.yaml
|
boskos/variants.yaml
|
variants:
boskos:
COMPONENT: boskos
SUBDIR: ''
reaper:
COMPONENT: reaper
SUBDIR: reaper
janitor:
COMPONENT: janitor
SUBDIR: janitor
aws-janitor:
COMPONENT: aws-janitor
SUBDIR: ../maintenance/aws-janitor # why?
|
variants:
boskos:
COMPONENT: boskos
SUBDIR: ''
reaper:
COMPONENT: reaper
SUBDIR: reaper
janitor:
COMPONENT: janitor
SUBDIR: janitor
metrics:
COMPONENT: metrics
SUBDIR: metrics
aws-janitor:
COMPONENT: aws-janitor
SUBDIR: ../maintenance/aws-janitor # why?
|
Add missing boskos metrics image.
|
Add missing boskos metrics image.
|
YAML
|
apache-2.0
|
cblecker/test-infra,dims/test-infra,cjwagner/test-infra,brahmaroutu/test-infra,cjwagner/test-infra,kubernetes/test-infra,pwittrock/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,pwittrock/test-infra,jessfraz/test-infra,michelle192837/test-infra,krzyzacy/test-infra,kubernetes/test-infra,monopole/test-infra,michelle192837/test-infra,kubernetes/test-infra,brahmaroutu/test-infra,monopole/test-infra,krzyzacy/test-infra,fejta/test-infra,brahmaroutu/test-infra,BenTheElder/test-infra,brahmaroutu/test-infra,monopole/test-infra,jessfraz/test-infra,BenTheElder/test-infra,lavalamp/test-infra,lavalamp/test-infra,jessfraz/test-infra,BenTheElder/test-infra,dims/test-infra,brahmaroutu/test-infra,michelle192837/test-infra,cblecker/test-infra,fejta/test-infra,dims/test-infra,dims/test-infra,krzyzacy/test-infra,cblecker/test-infra,jessfraz/test-infra,BenTheElder/test-infra,krzyzacy/test-infra,ixdy/kubernetes-test-infra,monopole/test-infra,cblecker/test-infra,krzyzacy/test-infra,lavalamp/test-infra,fejta/test-infra,BenTheElder/test-infra,kubernetes/test-infra,michelle192837/test-infra,fejta/test-infra,fejta/test-infra,pwittrock/test-infra,monopole/test-infra,monopole/test-infra,ixdy/kubernetes-test-infra,ixdy/kubernetes-test-infra,dims/test-infra,cjwagner/test-infra,lavalamp/test-infra,jessfraz/test-infra,lavalamp/test-infra,cjwagner/test-infra,cjwagner/test-infra,cblecker/test-infra,cblecker/test-infra,ixdy/kubernetes-test-infra,michelle192837/test-infra,michelle192837/test-infra,cjwagner/test-infra,pwittrock/test-infra,pwittrock/test-infra,krzyzacy/test-infra,ixdy/kubernetes-test-infra,lavalamp/test-infra,fejta/test-infra,dims/test-infra,kubernetes/test-infra,BenTheElder/test-infra,jessfraz/test-infra
|
7c81d0add5202b42496a9e1c2fcdc2ef95d8dadc
|
deployment/monitoring/prometheus/prometheus.yml
|
deployment/monitoring/prometheus/prometheus.yml
|
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
- job_name: 'node'
static_configs:
- targets: ['localhost:9100', 'sb-staging:9100', 'sb-prod:9100']
- job_name: 'app_server'
static_configs:
- targets: ['sb-staging:80', 'sb-prod:9100']
|
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
- job_name: 'node'
static_configs:
- targets: ['localhost:9100', 'sb-staging:9100', 'sb-prod:9100']
- job_name: 'app_server'
static_configs:
- targets: ['sb-staging:80', 'sb-prod:80']
|
Fix port on metrics from webserver.
|
Fix port on metrics from webserver.
|
YAML
|
mit
|
ShieldBattery/ShieldBattery,ShieldBattery/ShieldBattery,ShieldBattery/ShieldBattery,ShieldBattery/ShieldBattery,ShieldBattery/ShieldBattery
|
67ce367f43647d5766ccf3fdb107588f059e1f28
|
elasticsearch-1/manifests/elasticsearch-rc.yaml
|
elasticsearch-1/manifests/elasticsearch-rc.yaml
|
apiVersion: v1
kind: ReplicationController
metadata:
name: elasticsearch
labels:
provider: elasticsearch-1
heritage: helm
spec:
replicas: 1
selector:
provider: elasticsearch-1
template:
metadata:
name: elasticsearch-1
labels:
provider: elasticsearch-1
spec:
containers:
- name: elasticsearch
image: elasticsearch:1.7
ports:
- containerPort: 9200
- containerPort: 9300
|
apiVersion: v1
kind: ReplicationController
metadata:
name: elasticsearch
labels:
provider: elasticsearch-1
heritage: helm
spec:
replicas: 1
selector:
provider: elasticsearch-1
template:
metadata:
name: elasticsearch
labels:
provider: elasticsearch-1
spec:
containers:
- name: elasticsearch
image: elasticsearch:1.7
ports:
- containerPort: 9200
- containerPort: 9300
|
Revert "fix(elasticsearch-1): name pod properly for tests"
|
Revert "fix(elasticsearch-1): name pod properly for tests"
This reverts commit 6ad73f9bb07913cd61f99fbd0e97f3f9d23efd1a.
|
YAML
|
apache-2.0
|
sd2k/charts,eicnix/charts,rimusz/helm-charts,trobert2/charts-1,grugnog/charts,sd2k/charts,barklyprotects/charts,ledor473/charts,escardin/charts,smelchior/charts,barklyprotects/charts,viglesiasce/charts,kachkaev/charts,cafebazaar/charts,grugnog/charts,trobert2/charts-1,escardin/charts,jainishshah17/charts,DevOpsify/charts,sstarcher/charts,kachkaev/charts,eicnix/charts,sd2k/charts,jainishshah17/charts,GaneshSPatil/charts,escardin/charts,barklyprotects/charts,pfeodrippe/charts,DevOpsify/charts,GaneshSPatil/charts,mehdy/charts,mlaccetti/charts,rimusz/helm-charts,krallistic/charts,mluedke/charts,krallistic/charts,trobert2/charts-1,smileisak/charts,caiwenhao/charts,viglesiasce/charts,samisms/charts,helm/charts,mluedke/charts,jainishshah17/charts,ledor473/charts,pfeodrippe/charts,DevOpsify/charts,caiwenhao/charts,sstarcher/charts,rimusz/helm-charts,kachkaev/charts,GaneshSPatil/charts,helm/charts,samisms/charts,samisms/charts,ledor473/charts,helm/charts,mluedke/charts,sstarcher/charts,smileisak/charts,smelchior/charts,pfeodrippe/charts,DevOpsify/charts,viglesiasce/charts,grugnog/charts,GaneshSPatil/charts,lachie83/charts,smelchior/charts,oleh-ozimok/charts,eicnix/charts,pfeodrippe/charts,krallistic/charts,smileisak/charts,oleh-ozimok/charts,plytro/charts,lachie83/charts,plytro/charts,lachie83/charts,caiwenhao/charts,sd2k/charts,mlaccetti/charts,lachie83/charts,rimusz/helm-charts,helm/charts,oleh-ozimok/charts,mlaccetti/charts
|
75b0007ede285625595fa271634e338c4f16c6c2
|
conda.recipe/meta.yaml
|
conda.recipe/meta.yaml
|
package:
name: "hydromath"
version: {{ environ['GIT_DESCRIBE_TAG'][1:] }}
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
source:
git_url: https://github.com/amacd31/hydromath_py.git
git_rev: master
requirements:
build:
- python x.x
- libhydromath # [unix]
- cffi
run:
- python x.x
- libhydromath # [unix]
- cffi
|
package:
name: "hydromath"
version: {{ environ['GIT_DESCRIBE_TAG'][1:] }}
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
source:
git_url: ../
requirements:
build:
- python x.x
- libhydromath # [unix]
- cffi
run:
- python x.x
- libhydromath # [unix]
- cffi
|
Use relative git_url instead of remote git url
|
Use relative git_url instead of remote git url
|
YAML
|
bsd-3-clause
|
amacd31/hydromath_py,amacd31/hydromath_py
|
cd50b6b15709f8412d4d51586ad31fa56b159eb5
|
config/influxdb.yml
|
config/influxdb.yml
|
development:
database: 'twb'
username: root
password: root
production:
database: 'twb'
username: root
password: root
test:
database: 'twb'
username: root
password: root
|
development:
database: 'botnbot'
username: root
password: root
production:
database: 'botnbot'
username: root
password: root
test:
database: 'botnbot'
username: root
password: root
|
Change database name to botnbot
|
Change database name to botnbot
|
YAML
|
apache-2.0
|
frocher/bnb_nexus,frocher/bnb_nexus,frocher/bnb_nexus
|
9f2d04892edde9a204c8c638310a729c0852b161
|
ansible/roles/elasticsearch/tasks/install.deb.yml
|
ansible/roles/elasticsearch/tasks/install.deb.yml
|
---
- name: elasticsearch-install | Add repository keys
apt_key: keyserver="{{item.server}}" id="{{item.key}}" state=present
with_items: "{{ elasticsearch_apt_repo_keys }}"
- name: elasticsearch-install | Add repositories
apt_repository: repo="{{item}}" update_cache=yes
with_items: "{{ elasticsearch_apt_repos }}"
- name: elasticsearch-install | Check for Elasticsearch already installed
stat: path={{elasticsearch_home}}/lib/elasticsearch-{{elasticsearch_version}}.jar
register: version_exists
- name: elasticsearch-install | Download deb
get_url: url={{elasticsearch_download_url}}/elasticsearch-{{elasticsearch_version}}.deb dest=/tmp/elasticsearch-{{elasticsearch_version}}.deb mode=0440
when: not version_exists.stat.exists
- name: elasticsearch-install | Install Elasticsearch
apt: deb=/tmp/elasticsearch-{{elasticsearch_version}}.deb dpkg_options=force-confnew
when: not version_exists.stat.exists
- name: elasticsearch-install | Setup passlib
apt: pkg=python-passlib
when: elasticsearch_proxy_auth
|
---
- name: elasticsearch-install | Add repository keys
apt_key: keyserver="{{item.server}}" id="{{item.key}}" state=present
with_items: "{{ elasticsearch_apt_repo_keys }}"
- name: elasticsearch-install | Add repositories
apt_repository: repo="{{item}}" update_cache=yes
with_items: "{{ elasticsearch_apt_repos }}"
- name: elasticsearch-install | Check for Elasticsearch already installed
stat: path={{elasticsearch_home}}/lib/elasticsearch-{{elasticsearch_version}}.jar
register: version_exists
- name: elasticsearch-install | Download deb (legacy)
get_url: url={{elasticsearch_download_url}}/elasticsearch-{{elasticsearch_version}}.deb dest=/tmp/elasticsearch-{{elasticsearch_version}}.deb mode=0440
when: not version_exists.stat.exists and not elasticsearch_version == "7.1.1"
- name: elasticsearch-install | Install Elasticsearch (legacy)
apt: deb=/tmp/elasticsearch-{{elasticsearch_version}}.deb dpkg_options=force-confnew
when: not version_exists.stat.exists and not elasticsearch_version == "7.1.1"
- name: add apt key for elastic (modern)
apt_key: url="https://artifacts.elastic.co/GPG-KEY-elasticsearch" state=present
notify: elasticsearch restart
when: not version_exists.stat.exists and elasticsearch_version == "7.1.1"
- name: add elastic 7 apt source list (modern)
copy: content="deb https://artifacts.elastic.co/packages/7.x/apt stable main" dest="/etc/apt/sources.list.d/elastic-7.x.list"
notify: elasticsearch restart
when: not version_exists.stat.exists and elasticsearch_version == "7.1.1"
- name: elasticsearch-install | Install Elasticsearch (modern)
apt: name="elasticsearch" state=latest
when: not version_exists.stat.exists and elasticsearch_version == "7.1.1"
- name: elasticsearch-install | Setup passlib
apt: pkg=python-passlib
when: elasticsearch_proxy_auth
|
Install modern elasticsearch when previous doesn't exist or elasticsearch_version is customised
|
Install modern elasticsearch when previous doesn't exist or elasticsearch_version is customised
Signed-off-by: Peter Ansell <[email protected]>
|
YAML
|
apache-2.0
|
AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install,AtlasOfLivingAustralia/ala-install
|
48ea4e0191c43c81d930a8918293f0b05378976d
|
.config/beets/config.yaml
|
.config/beets/config.yaml
|
directory: ~/music/beetsdir
library: ~/.beets.db
plugins:
missing duplicates fetchart embedart zero convert chroma info play discogs random fuzzy
import:
copy: yes
log: ~/.beetsimports.log
fuzzy:
threshold: 0.8
prefix: "?"
fetchart:
enforce_ratio: no
minwidth: 500
zero:
fields: albumartist_sort artist_sort comments genre
update_database: true
convert:
dest: /tmp/
never_convert_lossy_files: yes
formats:
ipod:
command: ffmpeg -v warning -analyzeduration 100000000 -i $source -vn -c:a alac -ar 48000 -sample_fmt s16p $dest
extension: m4a
opus: ffmpeg -i $source -y -vn -acodec libopus -ab 128k $dest
aac:
extension: m4a
command: ffmpeg -i $source -vn -c:a libfdk_aac -vbr 5 $dest
mp3: ffmpeg -i $source -y -vn -c:a libmp3lame $dest
play:
warning_threshold: no
raw: yes
command: ds vlc --one-instance --playlist-enqueue --started-from-file -ZL
|
directory: ~/music/beetsdir
library: ~/.beets.db
asciify_path: yes
plugins:
missing duplicates fetchart embedart zero convert chroma info play discogs random fuzzy
import:
copy: yes
log: ~/.beetsimports.log
fuzzy:
threshold: 0.8
prefix: "?"
fetchart:
enforce_ratio: no
minwidth: 500
zero:
fields: albumartist_sort artist_sort comments genre
update_database: true
convert:
dest: /tmp/
never_convert_lossy_files: yes
formats:
ipod:
command: ffmpeg -v warning -analyzeduration 100000000 -i $source -vn -c:a alac -ar 48000 -sample_fmt s16p $dest
extension: m4a
opus: ffmpeg -i $source -y -vn -acodec libopus -ab 128k $dest
aac:
extension: m4a
command: ffmpeg -i $source -vn -c:a libfdk_aac -vbr 5 $dest
mp3: ffmpeg -i $source -y -vn -c:a libmp3lame $dest
play:
warning_threshold: no
raw: yes
command: ds vlc --one-instance --playlist-enqueue --started-from-file -ZL
|
Revert "beets: do not asciify paths"
|
Revert "beets: do not asciify paths"
This reverts commit a91dd3d13935e20f8fbbb788c6d6effdd0dac11a.
|
YAML
|
unlicense
|
nathdwek/dotfiles,nathdwek/dotfiles
|
704e4ac16f69aa9f8f46961d611fefa595801bc1
|
src/main/resources/plugin.yml
|
src/main/resources/plugin.yml
|
name: ${project.name}
version: ${project.version}
main: nl.rutgerkok.blocklocker.impl.BlockLockerPluginImpl
author: Rutger Kok
load: startup
permissions:
blocklocker.protect:
description: "Protect containers and doors."
default: true
blocklocker.bypass:
description: "Bypass someone else's protection."
default: op
blocklocker.reload:
description: "Reload the plugin using /blocklocker reload."
default: op
commands:
blocklocker:
description: "Edit a sign on your protection."
permission: "blocklocker.protect"
usage: "/<command> <lineNumber> <value>"
|
name: ${project.name}
version: ${project.version}
main: nl.rutgerkok.blocklocker.impl.BlockLockerPluginImpl
author: Rutger Kok
load: startup
permissions:
blocklocker.protect:
description: "Protect containers and doors."
default: true
blocklocker.bypass:
description: "Bypass someone else's protection."
default: op
blocklocker.reload:
description: "Reload the plugin using /blocklocker reload."
default: op
commands:
blocklocker:
description: "Edit a sign on your protection."
permission: "blocklocker.protect"
usage: "/<command> <lineNumber> <value>"
aliases: "bl"
|
Add /bl alias for /blocklocker
|
Add /bl alias for /blocklocker
|
YAML
|
mit
|
rutgerkok/BlockLocker
|
08fc72f3522739f9588a9ac5f34e30d6baf6db43
|
.github/workflows/php.yml
|
.github/workflows/php.yml
|
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v1
- name: Install PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}
- name: Report PHP version
run: php -v
- name: Validate composer.json and composer.lock
run: composer validate
- name: Get Composer Cache Directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ matrix.php }}-composer-
- name: Update dependencies
run: composer update --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: ./vendor/bin/phpunit --coverage-clover clover.xml
- name: Run coverage service
env:
COVERALLS_RUN_LOCALLY: 1
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: ./vendor/bin/php-coveralls --coverage_clover=./clover.xml -v
|
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
name: PHP ${{ matrix.php }}
environment: Build
steps:
- uses: actions/checkout@v1
- name: Install PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}
- name: Report PHP version
run: php -v
- name: Validate composer.json and composer.lock
run: composer validate
- name: Get Composer Cache Directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ matrix.php }}-composer-
- name: Update dependencies
run: composer update --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: ./vendor/bin/phpunit --coverage-clover clover.xml
- name: Run coverage service
env:
COVERALLS_RUN_LOCALLY: 1
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: ./vendor/bin/php-coveralls --coverage_clover=./clover.xml -v
|
Update Github Actions environment to Build for secrets.
|
Update Github Actions environment to Build for secrets.
|
YAML
|
mit
|
nubs/random-name-generator
|
c7ac5491b84b19faede8e9922a6ad98a5568d56a
|
.github/workflows/maven.yml
|
.github/workflows/maven.yml
|
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 16
uses: actions/setup-java@v3
with:
java-version: '16'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
echo "::set-output name=releaseName::`ls home/runner/work/SubTools/SubTools/SubSort/target/subsort-*.jar | awk -F '(/|.jar)' '{print $8}'`"
- name: Upload jar
if: success()
uses: actions/upload-artifact@v3
with:
name: ${{ steps.buildRelease.outputs.releaseName }}
path: "home/runner/work/SubTools/SubTools/SubSort/target/subsort-*.jar"
|
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 16
uses: actions/setup-java@v3
with:
java-version: '16'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
|
Revert "upload artifact after build"
|
Revert "upload artifact after build"
This reverts commit 83983870bdd6afb408904cf662e9ebfa6e965db3.
|
YAML
|
mit
|
phdelodder/SubTools
|
ff693ab0b7d8c1c20e3b4bdb0c9de547f7504abd
|
titan-dist/src/assembly/static/conf/remote-objects.yaml
|
titan-dist/src/assembly/static/conf/remote-objects.yaml
|
hosts: [localhost]
port: 8182
serializer: { className: org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0}
|
hosts: [localhost]
port: 8182
serializer: { className: org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0, config: { custom: [com.thinkaurelius.titan.graphdb.relations.RelationIdentifier] }}
|
Update config with titan-specific serialization option.
|
Update config with titan-specific serialization option.
This will allow the remote console to work properly when using this configuration.
|
YAML
|
apache-2.0
|
CYPP/titan,CYPP/titan,pluradj/titan,dylanht/titan,elubow/titan,thinkaurelius/titan,samanalysis/titan,englishtown/titan,pluradj/titan,CYPP/titan,mbrukman/titan,englishtown/titan,dylanht/titan,banjiewen/titan,dylanht/titan,samanalysis/titan,graben1437/titan,englishtown/titan,graben1437/titan,banjiewen/titan,englishtown/titan,samanalysis/titan,mbrukman/titan,pluradj/titan,CYPP/titan,mbrukman/titan,samanalysis/titan,mbrukman/titan,thinkaurelius/titan,amcp/titan,banjiewen/titan,elubow/titan,elubow/titan,pluradj/titan,thinkaurelius/titan,amcp/titan,thinkaurelius/titan,amcp/titan,mbrukman/titan,elubow/titan,graben1437/titan,amcp/titan,banjiewen/titan,graben1437/titan,dylanht/titan
|
e3b20a21e6c3f9b711c8f400844600d90051bdf7
|
config/locales/voc.en.yml
|
config/locales/voc.en.yml
|
en:
voc:
cancel: "Cancel"
close: "Close"
confirm: "Are you sure?"
delete: "Delete"
edit: "Edit"
login: "Sign in"
save: "Save changes"
register: "Sign up"
terms: "Terms of Service"
update: "Update"
messages:
noauth: "requires authentication"
|
en:
voc:
cancel: "Cancel"
close: "Close"
confirm: "Are you sure?"
delete: "Delete"
edit: "Edit"
login: "Sign in"
save: "Save changes"
register: "Sign up"
terms: "Terms of Service"
update: "Update"
messages:
noauth: "You must be signed in to do this."
|
Apply review suggestion from @raccube
|
Apply review suggestion from @raccube
Co-authored-by: Karina Kwiatek <a279f78642aaf231facf94ac593d2ad2fd791699@users.noreply.github.com>
|
YAML
|
agpl-3.0
|
Retrospring/retrospring,Retrospring/retrospring,Retrospring/retrospring,Retrospring/retrospring,Retrospring/retrospring
|
ad2df2f0e7ef3deeb6ef047dc2c836421d75b3d3
|
hieradata/common/roles/metric.yaml
|
hieradata/common/roles/metric.yaml
|
---
include:
default:
- profile::openstack::metric
- profile::openstack::openrc
- profile::logging::rsyslog::client
openstack_version: 'queens' #FIXME
memcached::max_memory: '20%'
profile::base::common::packages:
'python-openstackclient': {}
'openstack-selinux': {}
'python-memcached': {} # gnocchi::manage_memcache_package are broken
profile::openstack::metric::manage_firewall: true
profile::openstack::metric::manage_wsgi: true
profile::openstack::metric::firewall_extras:
source: "%{::network_trp1}/%{::netmask_trp1}"
profile::openstack::openrc::password: "%{hiera('gnocchi_api_password')}"
profile::openstack::openrc::username: 'gnocchi'
profile::openstack::openrc::project_name: 'services'
# Enable extra yum repo
profile::base::yumrepo::repo_hash:
rdo-release:
ensure: present
exclude: 'mariadb*'
mariadb:
ensure: present
epel: # should be absent when using RDO, but whitelist can also work
ensure: present
includepkgs: 'htop bash-completion-extras'
|
---
include:
default:
- profile::openstack::metric
- profile::openstack::openrc
- profile::logging::rsyslog::client
openstack_version: 'queens' #FIXME
memcached::max_memory: '20%'
profile::base::common::packages:
'python-openstackclient': {}
'openstack-selinux': {}
'python-memcached': {} # gnocchi::manage_memcache_package are broken
profile::openstack::metric::manage_firewall: true
profile::openstack::metric::manage_wsgi: true
profile::openstack::metric::firewall_extras:
source: "%{::network_trp1}/%{::netmask_trp1}"
profile::openstack::openrc::password: "%{hiera('gnocchi_api_password')}"
profile::openstack::openrc::username: 'gnocchi'
profile::openstack::openrc::project_name: 'services'
# Enable extra yum repo
profile::base::yumrepo::repo_hash:
rdo-release:
ensure: present
epel: # should be absent when using RDO, but whitelist can also work
ensure: present
includepkgs: 'htop bash-completion-extras'
|
Revert switch of mariadb repo, delaying the switchover until after the queens upgrade
|
Revert switch of mariadb repo, delaying the switchover until after the queens upgrade
|
YAML
|
apache-2.0
|
norcams/himlar,raykrist/himlar,norcams/himlar,mikaeld66/himlar,mikaeld66/himlar,norcams/himlar,TorLdre/himlar,norcams/himlar,raykrist/himlar,norcams/himlar,tanzr/himlar,TorLdre/himlar,mikaeld66/himlar,tanzr/himlar,TorLdre/himlar,mikaeld66/himlar,tanzr/himlar,TorLdre/himlar,raykrist/himlar,raykrist/himlar,TorLdre/himlar,tanzr/himlar,mikaeld66/himlar,tanzr/himlar,raykrist/himlar
|
fcd3c81898cac81d9c95ac19f14e32f3930647c0
|
metadata/open.com.permissionsmanager.yml
|
metadata/open.com.permissionsmanager.yml
|
Categories:
- Security
License: GPL-3.0-only
AuthorName: Sultanahamer
SourceCode: https://github.com/sultanahamer/PermissionsManager
IssueTracker: https://github.com/sultanahamer/PermissionsManager/issues
Changelog: https://github.com/sultanahamer/PermissionsManager/blob/HEAD/CHANGELOG
AutoName: PermissionsManager
RepoType: git
Repo: https://github.com/sultanahamer/PermissionsManager
Builds:
- versionName: '3.0'
versionCode: 3
commit: v3.0
subdir: app
gradle:
- yes
- versionName: '4.0'
versionCode: 4
commit: 267a69b7162d199198a83fb4d4fb851648804922
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
prebuild: echo 'android { lintOptions { abortOnError false } }' >> build.gradle
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '4.0'
CurrentVersionCode: 4
|
Categories:
- Security
License: GPL-3.0-only
AuthorName: Sultanahamer
SourceCode: https://github.com/sultanahamer/PermissionsManager
IssueTracker: https://github.com/sultanahamer/PermissionsManager/issues
Changelog: https://github.com/sultanahamer/PermissionsManager/blob/HEAD/CHANGELOG
AutoName: PermissionsManager
RepoType: git
Repo: https://github.com/sultanahamer/PermissionsManager
Builds:
- versionName: '3.0'
versionCode: 3
commit: v3.0
subdir: app
gradle:
- yes
- versionName: '4.0'
versionCode: 4
commit: 267a69b7162d199198a83fb4d4fb851648804922
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
prebuild: echo 'android { lintOptions { abortOnError false } }' >> build.gradle
- versionName: '5.0'
versionCode: 5
commit: d874fa330703de3c284457e3ff4349079b446dbf
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
prebuild: echo 'android { lintOptions { abortOnError false } }' >> build.gradle
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '5.0'
CurrentVersionCode: 5
|
Update PermissionsManager to 5.0 (5)
|
Update PermissionsManager to 5.0 (5)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
8cadcdb8d199ce23a3b50c2695a113fdce23e008
|
metadata/it.danieleverducci.ojo.yml
|
metadata/it.danieleverducci.ojo.yml
|
Categories:
- Security
- Multimedia
- Connectivity
License: GPL-3.0-only
AuthorName: Daniele Verducci
AuthorEmail: [email protected]
SourceCode: https://github.com/penguin86/ojo
IssueTracker: https://github.com/penguin86/ojo/issues
Name: Ojo RTSP IP Camera viewer
AutoName: Ojo
RepoType: git
Repo: https://github.com/penguin86/ojo.git
Builds:
- versionName: 0.0.2
versionCode: 2
commit: 448ff4d2b3d65233ea9c879a8f7e1b06300afc36
subdir: app
gradle:
- yes
- versionName: 0.0.3
versionCode: 3
commit: 505f8bf54b8477dab38f83267ac8a1f51edc9ea1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.0.3
CurrentVersionCode: 3
|
Categories:
- Security
- Multimedia
- Connectivity
License: GPL-3.0-only
AuthorName: Daniele Verducci
AuthorEmail: [email protected]
SourceCode: https://github.com/penguin86/ojo
IssueTracker: https://github.com/penguin86/ojo/issues
Name: Ojo RTSP IP Camera viewer
AutoName: Ojo
RepoType: git
Repo: https://github.com/penguin86/ojo.git
Builds:
- versionName: 0.0.2
versionCode: 2
commit: 448ff4d2b3d65233ea9c879a8f7e1b06300afc36
subdir: app
gradle:
- yes
- versionName: 0.0.3
versionCode: 3
commit: 505f8bf54b8477dab38f83267ac8a1f51edc9ea1
subdir: app
gradle:
- yes
- versionName: 0.1.0
versionCode: 4
commit: 24fc195ff537841ce19f1209cd46a9b41a42c593
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.1.0
CurrentVersionCode: 4
|
Update Ojo RTSP IP Camera viewer to 0.1.0 (4)
|
Update Ojo RTSP IP Camera viewer to 0.1.0 (4)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
62ed2cbc89cb262ae729c8cf4fe7da1760245562
|
handlers/main.yml
|
handlers/main.yml
|
---
- name: openvpn restart
service: name={{openvpn_service}} state=restarted
- name: openvpn pack clients
command: zip -j {{openvpn_keydir}}/{{item.item}}.zip {{openvpn_keydir}}/{{item.item}}.crt {{openvpn_keydir}}/{{item.item}}.key {{openvpn_keydir}}/{{item.item}}.ovpn {{openvpn_keydir}}/ca.crt {{openvpn_tls_key if openvpn_tls_auth else ''}}
when: item.changed
with_items: "{{openvpn_clients_changed.results}}"
|
---
- name: openvpn restart
service: name={{openvpn_service}} state=restarted
- name: openvpn pack clients
command: zip -j {{item.item}}.zip {{item.item}}.crt {{item.item}}.key {{item.item}}.ovpn ca.crt {{openvpn_tls_key if openvpn_tls_auth else ''}}
when: item.changed
with_items: "{{openvpn_clients_changed.results}}"
args:
chdir: "{{ openvpn_keydir }}"
|
Add ta.key to archive (alternate method)
|
Add ta.key to archive (alternate method)
This is an alternate way to ensure the ta.key file is zipped up in the
client config see #46
|
YAML
|
mit
|
teadur/Stouts.openvpn,Stouts/Stouts.openvpn,Stouts/Stouts.openvpn
|
072e53bbb53477c3f9e9aff0e575666eb3ea38bd
|
Resources/config/item_factory.yml
|
Resources/config/item_factory.yml
|
parameters:
darvin_menu.item_factory.abstract.class: Darvin\MenuBundle\Item\AbstractItemFactory
darvin_menu.item_factory.menu_item.class: Darvin\MenuBundle\Item\MenuItemFactory
darvin_menu.item_factory.slug_map_item.class: Darvin\MenuBundle\Item\SlugMapItemFactory
darvin_menu.item_factory.slug_map_item.uri_route: darvin_content_content_show
services:
darvin_menu.item_factory.abstract:
class: "%darvin_menu.item_factory.abstract.class%"
abstract: true
# public: false
arguments:
- "@doctrine.orm.entity_manager"
- "@knp_menu.factory"
darvin_menu.item_factory.menu_item:
class: "%darvin_menu.item_factory.menu_item.class%"
parent: darvin_menu.item_factory.abstract
arguments:
- "@darvin_menu.item_factory.slug_map_item"
darvin_menu.item_factory.slug_map_item:
class: "%darvin_menu.item_factory.slug_map_item.class%"
parent: darvin_menu.item_factory.abstract
arguments:
- "@router"
- "%darvin_menu.item_factory.slug_map_item.uri_route%"
|
parameters:
darvin_menu.item_factory.abstract.class: Darvin\MenuBundle\Item\AbstractItemFactory
darvin_menu.item_factory.menu_item.class: Darvin\MenuBundle\Item\MenuItemFactory
darvin_menu.item_factory.slug_map_item.class: Darvin\MenuBundle\Item\SlugMapItemFactory
darvin_menu.item_factory.slug_map_item.uri_route: darvin_content_content_show
services:
darvin_menu.item_factory.abstract:
class: "%darvin_menu.item_factory.abstract.class%"
abstract: true
public: false
arguments:
- "@doctrine.orm.entity_manager"
- "@knp_menu.factory"
darvin_menu.item_factory.menu_item:
class: "%darvin_menu.item_factory.menu_item.class%"
parent: darvin_menu.item_factory.abstract
arguments:
- "@darvin_menu.item_factory.slug_map_item"
darvin_menu.item_factory.slug_map_item:
class: "%darvin_menu.item_factory.slug_map_item.class%"
parent: darvin_menu.item_factory.abstract
arguments:
- "@router"
- "%darvin_menu.item_factory.slug_map_item.uri_route%"
|
Make item factory services private.
|
Make item factory services private.
|
YAML
|
mit
|
DarvinStudio/DarvinMenuBundle,DarvinStudio/DarvinMenuBundle
|
3fa1b8f6f7accb8be761b1e743ae8605a40bffd4
|
.travis.yml
|
.travis.yml
|
sudo: false
notifications:
email: false
language: python
python:
- "2.7"
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy
- pip install coverage
- python setup.py install
script: coverage run -m unittest discover pyGeno/tests/
after_success: bash <(curl -s https://codecov.io/bash)
|
sudo: false
notifications:
email: false
language: python
python:
- "2.7"
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy
- pip install coverage
- pip install https://github.com/tariqdaouda/rabaDB/archive/stable.zip
- python setup.py install
script: coverage run -m unittest discover pyGeno/tests/
after_success: bash <(curl -s https://codecov.io/bash)
|
Install rabaDB from git for now
|
Install rabaDB from git for now
|
YAML
|
apache-2.0
|
tariqdaouda/pyGeno
|
e1851bb67559b0ef8427a531fa2dce3aa816da2d
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
language: python
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.5-dev'
- 'nightly'
- 'pypy'
- 'pypy3'
matrix:
allow_failures:
- python: '2.6'
- python: '3.2'
- python: '3.5-dev'
- python: 'nightly'
- python: 'pypy'
- python: 'pypy3'
addons:
apt:
packages:
- texlive-latex-extra
- texlive-pictures
- texlive-science
- texlive-full
install:
- pip install 3to2 future
- pip install -r dev_requirements.txt
script: ./testall.sh
|
sudo: required
dist: trusty
language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.5-dev'
- 'nightly'
matrix:
allow_failures:
- python: '3.5-dev'
- python: 'nightly'
addons:
apt:
packages:
- texlive-latex-extra
- texlive-pictures
- texlive-science
- texlive-fonts-recommended
install:
- pip install 3to2 future
- pip install -r dev_requirements.txt
script: ./testall.sh
|
Remove broken python builds and don't use texlive-full
|
Report: Remove broken python builds and don't use texlive-full
|
YAML
|
mit
|
JelteF/PyLaTeX,JelteF/PyLaTeX
|
cd72dbc66e6a443ec6f9f5ed5727b579f5f15c7b
|
.travis.yml
|
.travis.yml
|
language: csharp
mono: none
dotnet: 2.0.0
dist: trusty
branches:
only:
- master
- develop
script:
- dotnet restore
notifications:
email:
on_success: never
on_failure: always
|
language: csharp
mono: none
dotnet: 2.0.0
dist: trusty
branches:
only:
- master
- develop
script:
- dotnet restore
- dotnet build
notifications:
email:
on_success: never
on_failure: always
|
Add build step to Travis CI
|
Add build step to Travis CI
|
YAML
|
agpl-3.0
|
mondeun/PdfAutofill
|
6beecce045a688e0cad9322038b351e9087a139a
|
.travis.yml
|
.travis.yml
|
language: haskell
before_install:
- npm install coffee-script -g
- cabal install alex >= 3.0.5
script:
- cabal configure && cabal build
deploy:
provider: heroku
api_key:
secure: hBbPLNburzk/YY3hbpgdmbMdfk/osgh76fYBui1Yx6CYBTfMRUii22y8rtrCeu2BD6bEVEoSzFEelxg/LsVUjHIBnowXkl26lu3qbt6WpXi6KIyNJx/Y0U1gyoghW5hHqf2OL0u4zdHc7/jueVNmPcIDqq7XHUq84xi6TvAHwJY=
app: lambdacircus
on:
repo: mithrandi/lambdacircus
skip_cleanup: true
buildpack: https://github.com/begriffs/heroku-buildpack-ghc.git
strategy: anvil
|
language: haskell
before_install:
- npm install coffee-script -g
- cabal install 'alex >= 3.0.5'
script:
- cabal configure && cabal build
deploy:
provider: heroku
api_key:
secure: hBbPLNburzk/YY3hbpgdmbMdfk/osgh76fYBui1Yx6CYBTfMRUii22y8rtrCeu2BD6bEVEoSzFEelxg/LsVUjHIBnowXkl26lu3qbt6WpXi6KIyNJx/Y0U1gyoghW5hHqf2OL0u4zdHc7/jueVNmPcIDqq7XHUq84xi6TvAHwJY=
app: lambdacircus
on:
repo: mithrandi/lambdacircus
skip_cleanup: true
buildpack: https://github.com/begriffs/heroku-buildpack-ghc.git
strategy: anvil
|
Use quotes in command line.
|
Use quotes in command line.
|
YAML
|
mit
|
mithrandi/lambdacircus
|
ad768e29e31ee4758014a8b4051f329d920eecd5
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "3.5"
addons:
apt:
packages:
- git
install:
- pip install -r requirements-py35-linux64.txt
- python setup.py develop
- git clone --depth=1 https://github.com/gem/oq-hazardlib.git
# We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise
# the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found
script:
# FIXME --with-doctest does not work
# - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture
- PYTHONPATH=.:$(pwd)/oq-hazardlib nosetests -v -a'!slow'
|
sudo: false
language: python
python:
- "3.5"
addons:
apt:
packages:
- git
install:
- pip install -r requirements-py35-linux64.txt
- python setup.py develop
- git clone --depth=1 https://github.com/gem/oq-hazardlib.git
# We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise
# the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found
script:
# FIXME --with-doctest does not work
# - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture
- PYTHONPATH=.:$(pwd)/oq-hazardlib nosetests -v -a'!slow'
- cat /tmp/*
|
Add a debug print in Travis
|
Add a debug print in Travis
|
YAML
|
agpl-3.0
|
gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine
|
e266b06c10ba3f1772c18f96649ba6f65ffaa602
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
env:
- DB=mysql
- DB=postgres
before_script:
- "mysql -e 'create database foreigner-matcher_test;'"
- "psql -c 'create database foreigner-matcher_test;' -U postgres"
- bundle exec rake db:test:reset
script: bundle exec rspec spec
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
env:
- DB=mysql
- DB=postgres
before_script:
- "mysql -e 'create database `foreigner-matcher_test`;'"
- "psql -c 'create database \"foreigner-matcher_test\";' -U postgres"
- bundle exec rake db:test:reset
script: bundle exec rspec spec
|
Update database creation commands to be friendly with hyphens
|
Update database creation commands to be friendly with hyphens
|
YAML
|
mit
|
yellow5/foreigner-matcher,yellow5/foreigner-matcher
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.