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 |
|---|---|---|---|---|---|---|---|---|---|
a2a07f9c98a55b1b6318bf9b210317794f05f039 | roles/couchpotato-guest/tasks/main.yml | roles/couchpotato-guest/tasks/main.yml | ---
- name: Set hostname
hostname: name=couchpotato.jroll.io
become: yes
become_method: sudo
- name: Download couchpotato
become: yes
become_method: sudo
git:
repo: https://github.com/RuudBurger/CouchPotatoServer.git
dest: /opt/couchpotato
- name: Install init script
become: yes
become_method: sudo
template:
src: couchpotato-init
dest: /etc/init.d/couchpotato
owner: root
mode: 0755
- name: Install defaults file
become: yes
become_method: sudo
template:
src: couchpotato-defaults
dest: /etc/default/couchpotato
owner: root
mode: 0644
- name: Run couchpotato
become: yes
become_method: sudo
service: name=couchpotato state=started
| ---
- name: Set hostname
hostname: name=couchpotato.jroll.io
become: yes
become_method: sudo
- name: Download couchpotato
become: yes
become_method: sudo
git:
repo: https://github.com/RuudBurger/CouchPotatoServer.git
dest: /opt/couchpotato
- name: Install init script
become: yes
become_method: sudo
template:
src: couchpotato-init
dest: /etc/init.d/couchpotato
owner: root
mode: 0755
- name: Install defaults file
become: yes
become_method: sudo
template:
src: couchpotato-defaults
dest: /etc/default/couchpotato
owner: root
mode: 0644
- name: Run couchpotato
become: yes
become_method: sudo
service: name=couchpotato state=started enabled=yes
| Enable couch potato to start on boot | Enable couch potato to start on boot
| YAML | apache-2.0 | jimrollenhagen/hoard |
7e7a5ba990f993e13927771920f63a386d04c856 | roles/xfce-multiload-ng/tasks/main.yml | roles/xfce-multiload-ng/tasks/main.yml | ---
- name: Add PPA of multiload-ng
apt_repository: repo=ppa:nilarimogard/webupd8
- name: Install multiload-ng
apt: package=xfce4-multiload-ng-plugin state=present
- name: Configure multiload-ng
copy:
src: multiload-ng-xfce4-13.rc
dest: "{{ user.homedir }}/.config/xfce4/panel/multiload-ng-xfce4-13.rc"
owner: "{{ user.name }}"
group: "{{ user.group }}"
| ---
- name: Add PPA of multiload-ng
apt_repository: repo=ppa:nilarimogard/webupd8
- name: Install multiload-ng
apt: package=xfce4-multiload-ng-plugin state=present
- name: Make sure config paths exist
file:
path: {{ user.homedir }}/.config/xfce4/panel/
owner: "{{ user.name }}"
group: "{{ user.group }}"
recurse: yes
state: directory
- name: Configure multiload-ng
copy:
src: multiload-ng-xfce4-13.rc
dest: "{{ user.homedir }}/.config/xfce4/panel/multiload-ng-xfce4-13.rc"
owner: "{{ user.name }}"
group: "{{ user.group }}"
| Update multiload-ng task to make sure paths exist | Update multiload-ng task to make sure paths exist
| YAML | cc0-1.0 | Photon89/ansible-lernvideoprojekt-lmu |
8c9fb74c931cf4fc31aac5d986313869bc518443 | recipes/pandas/meta.yaml | recipes/pandas/meta.yaml | {% set name = "pandas" %}
{% set version = "0.19.2" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 6f0f4f598c2b16746803c8bafef7c721c57e4844da752d36240c0acf97658014
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
- cython
- numpy x.x
run:
- python
- numpy x.x
- python-dateutil
- pytz
test:
imports:
- pandas
about:
home: http://pandas.pydata.org
license: BSD 3-clause
summary: high-performance, easy-to-use data structures and data analysis tools.
| {% set name = "pandas" %}
{% set version = "0.20.1" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 42707365577ef69f7c9c168ddcf045df2957595a9ee71bc13c7997eecb96b190
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
- cython
- numpy x.x
run:
- python
- numpy x.x
- python-dateutil
- pytz
test:
imports:
- pandas
about:
home: http://pandas.pydata.org
license: BSD 3-clause
summary: high-performance, easy-to-use data structures and data analysis tools.
| Update pandas to version 0.20.1 | Update pandas to version 0.20.1
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
14497ebf3bbbdd4827ff57fa47c787522c9e7136 | _meta/meta.yaml | _meta/meta.yaml | extras: {}
skip:
- indico-plugin-livesync-debug
- indico-plugin-vc-dummy
| extras:
indico-plugin-importer: importer
indico-plugin-importer-invenio: importer
skip:
- indico-plugin-livesync-debug
- indico-plugin-vc-dummy
| Move importer plugins into an extra | Meta: Move importer plugins into an extra
We'll most likely discontinue them, and they don't need to be updated
for 2.3, so like this new installations won't get them anymore by
default.
| YAML | mit | indico/indico-plugins,ThiefMaster/indico-plugins,ThiefMaster/indico-plugins,ThiefMaster/indico-plugins,indico/indico-plugins,ThiefMaster/indico-plugins,indico/indico-plugins,indico/indico-plugins |
2141566132ce6cb3d9e9fbf47c02853d64b59d93 | config/sidekiq.yml | config/sidekiq.yml | ---
:verbose: false
:concurrency: 6
:logfile: ./log/sidekiq.json.log
:queues:
- downstream_high
- dependency_resolution
- downstream_low
- experiments
- default
- import
| ---
:verbose: false
:concurrency: 10
:logfile: ./log/sidekiq.json.log
:queues:
- downstream_high
- dependency_resolution
- downstream_low
- experiments
- default
- import
| Increase the number of Sidekiq workers | Increase the number of Sidekiq workers
The queues are often very long so increasing the number of workers might
help to push content downstream quicker.
The last time we tried this the load on our PostgreSQL machine went up
too much, but since then we've upgraded the machine from 8 cores to 16
cores so it might cope better this time.
| YAML | mit | alphagov/publishing-api,alphagov/publishing-api |
401dfef09530174be788acc11678398bb9a33a7c | config/sunspot.yml | config/sunspot.yml | production:
solr:
hostname: ec2-184-73-200-49.compute-1.amazonaws.com
port: 7377
path: /solr/collection1
read_timeout: 5
open_timeout: 1.5
log_level: INFO
min_memory: 20M
max_memory: 500M
pid_dir: tmp/pids
development:
solr:
hostname: localhost
port: 7377
log_level: ALL
path: /solr/collection1
pid_dir: tmp/pids
test:
solr:
hostname: localhost
port: 8982
log_level: WARNING
path: /solr/collection1
pid_dir: tmp/pids
staging:
solr:
hostname: ec2-50-16-197-147.compute-1.amazonaws.com
port: 7377
log_level: WARNING
pid_dir: tmp/pids
path: /solr/collection1
| production:
solr:
hostname: ec2-184-73-200-49.compute-1.amazonaws.com
port: 7377
path: /solr/collection1
read_timeout: 5
open_timeout: 1.5
log_level: INFO
min_memory: 20M
max_memory: 3G
pid_dir: tmp/pids
development:
solr:
hostname: localhost
port: 7377
log_level: ALL
path: /solr/collection1
pid_dir: tmp/pids
test:
solr:
hostname: localhost
port: 8982
log_level: WARNING
path: /solr/collection1
pid_dir: tmp/pids
staging:
solr:
hostname: ec2-50-16-197-147.compute-1.amazonaws.com
port: 7377
log_level: WARNING
pid_dir: tmp/pids
path: /solr/collection1
| Set solr's maxmem back to 3G | Set solr's maxmem back to 3G | YAML | mit | moodpo/documentcloud,gunjanmodi/documentcloud,gunjanmodi/documentcloud,Teino1978-Corp/Teino1978-Corp-documentcloud,dannguyen/documentcloud,documentcloud/documentcloud,documentcloud/documentcloud,monofox/documentcloud,roberttdev/dactyl4,roberttdev/dactyl4,ivarvong/documentcloud,gunjanmodi/documentcloud,roberttdev/dactyl4,gunjanmodi/documentcloud,documentcloud/documentcloud,dannguyen/documentcloud,dannguyen/documentcloud,moodpo/documentcloud,ivarvong/documentcloud,roberttdev/dactyl4,moodpo/documentcloud,monofox/documentcloud,ivarvong/documentcloud,Teino1978-Corp/Teino1978-Corp-documentcloud,monofox/documentcloud,dannguyen/documentcloud,documentcloud/documentcloud,Teino1978-Corp/Teino1978-Corp-documentcloud,monofox/documentcloud,Teino1978-Corp/Teino1978-Corp-documentcloud,ivarvong/documentcloud,moodpo/documentcloud |
09478dc2728489f27c4cd7db48ec826476b5555a | docker-compose.yaml | docker-compose.yaml | version: "2"
services:
db:
build: ./gws-core/src/test/docker/database
image: gws/db
ports:
- "5433:5432"
web:
build:
context: ./gws-webapp/
dockerfile: ./src/main/docker/webserver/Dockerfile
image: gws/webserver
depends_on:
- db
ports:
- "8081:8080"
| version: "2"
services:
db:
build: ./gws-core/src/test/docker/database
image: gws/db
ports:
- "5433:5432"
web:
build:
context: ./gws-webapp/
dockerfile: ./src/main/docker/webserver/Dockerfile
args:
- https_proxy
image: gws/webserver
depends_on:
- db
ports:
- "8081:8080"
| Use https_proxy from caller's environment | Use https_proxy from caller's environment
| YAML | bsd-3-clause | GeoscienceAustralia/Geodesy-Web-Services,GeoscienceAustralia/Geodesy-Web-Services,GeoscienceAustralia/geodesy-domain-model,GeoscienceAustralia/geodesy-domain-model,GeoscienceAustralia/Geodesy-Web-Services,GeoscienceAustralia/Geodesy-Web-Services |
883fc0bd1b25c421244be7ae43467630c28f0d63 | .github/workflows/ci-module.yml | .github/workflows/ci-module.yml | name: ci
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
node: ['*', '14', '12']
runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.os }} node@${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: install
run: npm install
- name: test
run: npm test
| name: ci
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
node: ['*', '14', '12']
runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.os }} node@${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
check-latest: ${{ matrix.node == '*' }}
- name: install
run: npm install
- name: test
run: npm test
| Use check-latest in CI to ensure '*' currently resolves to node v16 | Use check-latest in CI to ensure '*' currently resolves to node v16
| YAML | bsd-3-clause | lloydbenson/lab,lloydbenson/lab,lloydbenson/lab |
12d059c310cb37986cfa6057c4e370489e9b8e59 | .github/workflows/pythonapp.yml | .github/workflows/pythonapp.yml | name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo ./install-dev.sh --no-model
sudo pip3 install pytest-faulthandler
sudo apt install xvfb
- name: Lint with flake8
run: |
sudo pip3 install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
sudo pip3 install pytest pytest-cov codecov
xvfb-run --auto-servernum python3 -m pytest --cov=dragonfire/ --capture=sys --disable-pytest-warnings -vv
# send the code coverage report to Codeconv
codecov
| name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo ./install-dev.sh --no-model
sudo pip3 install pytest-faulthandler
sudo apt install xvfb
- name: Lint with flake8
run: |
sudo pip3 install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
sudo pip3 install pytest pytest-cov codecov
xvfb-run --auto-servernum python3 -m pytest --cov=dragonfire/ --capture=sys --disable-pytest-warnings -vv
# send the code coverage report to Codeconv
codecov --token=${{ secrets.CODECOV_TOKEN }}
| Add the Codecov token to GitHub workflow build | Add the Codecov token to GitHub workflow build
| YAML | mit | DragonComputer/Dragonfire,mertyildiran/Dragonfire,DragonComputer/Dragonfire,DragonComputer/Dragonfire,mertyildiran/Dragonfire |
cb10b3347fccff3e6e6d00e2fbb05dc584514f0c | .forestry/settings.yml | .forestry/settings.yml | ---
upload_path: "/static/images/:year:/:month:/"
frontmatter_file_url_template: "/images/:year:/:month:/"
body_file_url_template: "/images/:year:/:month:/"
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
post:
default_front_matter_template: post
version: 0.38.1
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
content/post:
default_front_matter_template: post
upload_dir: static/images
public_path: "/images"
front_matter_path: ''
use_front_matter_path: false
file_template: ":year:/:month:/:filename:"
version: 0.42.1
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io |
1416422e399d339b254430d92dde0c79623ae61f | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: heading
label: JTemporal
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
- type: heading
label: Tema
- type: directory
path: _layouts
label: Layouts
create: documents
match: "**/*"
new_doc_ext: html
- type: directory
path: _includes
label: Includes
create: documents
match: "**/*"
new_doc_ext: html
upload_dir: images
public_path: ''
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
instant_preview: true
build:
preview_command: 'bundle exec jekyll build --config _dev_config.yml --drafts --unpublished
--future -d _site '
publish_command: bundle exec jekyll build -d _site
preview_env:
- JEKYLL_ENV=staging
publish_env:
- JEKYLL_ENV=production
preview_output_directory: _site
output_directory: _site
instant_preview_command: bundle exec jekyll serve --config _dev_config.yml --drafts
--unpublished --future --port 8080 --host 0.0.0.0 -d _site
| ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: heading
label: JTemporal
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
- type: heading
label: Tema
- type: directory
path: _layouts
label: Layouts
create: documents
match: "**/*"
new_doc_ext: html
- type: directory
path: _includes
label: Includes
create: documents
match: "**/*"
new_doc_ext: html
- type: directory
path: _sass
label: _sass
create: all
match: "**/*"
new_doc_ext: ".scss"
upload_dir: images
public_path: ''
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
instant_preview: true
build:
preview_command: 'bundle exec jekyll build --config _dev_config.yml --drafts --unpublished
--future -d _site '
publish_command: bundle exec jekyll build -d _site
preview_env:
- JEKYLL_ENV=staging
publish_env:
- JEKYLL_ENV=production
preview_output_directory: _site
output_directory: _site
instant_preview_command: bundle exec jekyll serve --config _dev_config.yml --drafts
--unpublished --future --port 8080 --host 0.0.0.0 -d _site
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io |
5a395806dcea5de4877915d84100414f90db8a15 | recipes/perl-class-method-modifiers/meta.yaml | recipes/perl-class-method-modifiers/meta.yaml | package:
name: perl-class-method-modifiers
version: "2.11"
source:
fn: Class-Method-Modifiers-2.11.tar.gz
url: http://cpan.metacpan.org/authors/id/E/ET/ETHER/Class-Method-Modifiers-2.11.tar.gz
md5: c6982e9e89325713d5afaff82cfe1744
build:
number: 0
skip: True # [osx]
requirements:
build:
- perl-threaded
- perl-test-requires
- perl-test-fatal
run:
- perl-threaded
test:
# Perl 'use' tests
imports:
- Class::Method::Modifiers
about:
home: https://github.com/moose/Class-Method-Modifiers
license: perl_5
summary: 'Provides Moose-like method modifiers'
| package:
name: perl-class-method-modifiers
version: "2.11"
source:
fn: Class-Method-Modifiers-2.11.tar.gz
url: http://cpan.metacpan.org/authors/id/E/ET/ETHER/Class-Method-Modifiers-2.11.tar.gz
md5: c6982e9e89325713d5afaff82cfe1744
build:
number: 1
requirements:
build:
- perl-threaded
- perl-test-requires
- perl-test-fatal
run:
- perl-threaded
test:
# Perl 'use' tests
imports:
- Class::Method::Modifiers
about:
home: https://github.com/moose/Class-Method-Modifiers
license: perl_5
summary: 'Provides Moose-like method modifiers'
| Add OSX build for Perl Class::Method::Modifiers | Add OSX build for Perl Class::Method::Modifiers
| YAML | mit | CGATOxford/bioconda-recipes,ostrokach/bioconda-recipes,keuv-grvl/bioconda-recipes,JenCabral/bioconda-recipes,keuv-grvl/bioconda-recipes,saketkc/bioconda-recipes,pinguinkiste/bioconda-recipes,oena/bioconda-recipes,peterjc/bioconda-recipes,zachcp/bioconda-recipes,dmaticzka/bioconda-recipes,keuv-grvl/bioconda-recipes,phac-nml/bioconda-recipes,hardingnj/bioconda-recipes,guowei-he/bioconda-recipes,blankenberg/bioconda-recipes,shenwei356/bioconda-recipes,ostrokach/bioconda-recipes,acaprez/recipes,npavlovikj/bioconda-recipes,JenCabral/bioconda-recipes,CGATOxford/bioconda-recipes,keuv-grvl/bioconda-recipes,acaprez/recipes,jfallmann/bioconda-recipes,shenwei356/bioconda-recipes,matthdsm/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,yesimon/bioconda-recipes,ostrokach/bioconda-recipes,gregvonkuster/bioconda-recipes,CGATOxford/bioconda-recipes,xguse/bioconda-recipes,matthdsm/bioconda-recipes,blankenberg/bioconda-recipes,daler/bioconda-recipes,zachcp/bioconda-recipes,dmaticzka/bioconda-recipes,colinbrislawn/bioconda-recipes,cokelaer/bioconda-recipes,rvalieris/bioconda-recipes,JenCabral/bioconda-recipes,colinbrislawn/bioconda-recipes,daler/bioconda-recipes,gvlproject/bioconda-recipes,jasper1918/bioconda-recipes,ivirshup/bioconda-recipes,zwanli/bioconda-recipes,rob-p/bioconda-recipes,Luobiny/bioconda-recipes,HassanAmr/bioconda-recipes,mcornwell1957/bioconda-recipes,matthdsm/bioconda-recipes,guowei-he/bioconda-recipes,chapmanb/bioconda-recipes,bioconda/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,mcornwell1957/bioconda-recipes,bow/bioconda-recipes,rvalieris/bioconda-recipes,bebatut/bioconda-recipes,jasper1918/bioconda-recipes,jfallmann/bioconda-recipes,ostrokach/bioconda-recipes,gvlproject/bioconda-recipes,ThomasWollmann/bioconda-recipes,saketkc/bioconda-recipes,dmaticzka/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,dkoppstein/recipes,ThomasWollmann/bioconda-recipes,zachcp/bioconda-recipes,saketkc/bioconda-recipes,CGATOxford/bioconda-recipes,dmaticzka/bioconda-recipes,oena/bioconda-recipes,HassanAmr/bioconda-recipes,ThomasWollmann/bioconda-recipes,gregvonkuster/bioconda-recipes,colinbrislawn/bioconda-recipes,abims-sbr/bioconda-recipes,zwanli/bioconda-recipes,mdehollander/bioconda-recipes,ThomasWollmann/bioconda-recipes,guowei-he/bioconda-recipes,gvlproject/bioconda-recipes,mcornwell1957/bioconda-recipes,yesimon/bioconda-recipes,bioconda/recipes,ostrokach/bioconda-recipes,xguse/bioconda-recipes,bioconda/recipes,matthdsm/bioconda-recipes,ThomasWollmann/bioconda-recipes,bioconda/recipes,gregvonkuster/bioconda-recipes,ivirshup/bioconda-recipes,yesimon/bioconda-recipes,phac-nml/bioconda-recipes,blankenberg/bioconda-recipes,rob-p/bioconda-recipes,bebatut/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,omicsnut/bioconda-recipes,JenCabral/bioconda-recipes,mdehollander/bioconda-recipes,mdehollander/bioconda-recipes,gvlproject/bioconda-recipes,lpantano/recipes,lpantano/recipes,ivirshup/bioconda-recipes,hardingnj/bioconda-recipes,bioconda/bioconda-recipes,rvalieris/bioconda-recipes,bebatut/bioconda-recipes,peterjc/bioconda-recipes,roryk/recipes,HassanAmr/bioconda-recipes,ivirshup/bioconda-recipes,CGATOxford/bioconda-recipes,peterjc/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,xguse/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,JenCabral/bioconda-recipes,cokelaer/bioconda-recipes,roryk/recipes,pinguinkiste/bioconda-recipes,jfallmann/bioconda-recipes,zwanli/bioconda-recipes,saketkc/bioconda-recipes,bow/bioconda-recipes,keuv-grvl/bioconda-recipes,cokelaer/bioconda-recipes,lpantano/recipes,oena/bioconda-recipes,zwanli/bioconda-recipes,mdehollander/bioconda-recipes,CGATOxford/bioconda-recipes,bow/bioconda-recipes,martin-mann/bioconda-recipes,chapmanb/bioconda-recipes,jasper1918/bioconda-recipes,rob-p/bioconda-recipes,zwanli/bioconda-recipes,abims-sbr/bioconda-recipes,guowei-he/bioconda-recipes,mcornwell1957/bioconda-recipes,chapmanb/bioconda-recipes,roryk/recipes,ostrokach/bioconda-recipes,joachimwolff/bioconda-recipes,acaprez/recipes,martin-mann/bioconda-recipes,dmaticzka/bioconda-recipes,omicsnut/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,peterjc/bioconda-recipes,phac-nml/bioconda-recipes,ThomasWollmann/bioconda-recipes,hardingnj/bioconda-recipes,Luobiny/bioconda-recipes,daler/bioconda-recipes,hardingnj/bioconda-recipes,jasper1918/bioconda-recipes,colinbrislawn/bioconda-recipes,joachimwolff/bioconda-recipes,omicsnut/bioconda-recipes,shenwei356/bioconda-recipes,matthdsm/bioconda-recipes,abims-sbr/bioconda-recipes,pinguinkiste/bioconda-recipes,saketkc/bioconda-recipes,omicsnut/bioconda-recipes,guowei-he/bioconda-recipes,Luobiny/bioconda-recipes,bow/bioconda-recipes,bioconda/bioconda-recipes,rvalieris/bioconda-recipes,bow/bioconda-recipes,cokelaer/bioconda-recipes,dmaticzka/bioconda-recipes,npavlovikj/bioconda-recipes,zachcp/bioconda-recipes,matthdsm/bioconda-recipes,daler/bioconda-recipes,rvalieris/bioconda-recipes,daler/bioconda-recipes,phac-nml/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,ivirshup/bioconda-recipes,gregvonkuster/bioconda-recipes,martin-mann/bioconda-recipes,keuv-grvl/bioconda-recipes,bebatut/bioconda-recipes,xguse/bioconda-recipes,blankenberg/bioconda-recipes,HassanAmr/bioconda-recipes,pinguinkiste/bioconda-recipes,bow/bioconda-recipes,npavlovikj/bioconda-recipes,xguse/bioconda-recipes,saketkc/bioconda-recipes,phac-nml/bioconda-recipes,joachimwolff/bioconda-recipes,peterjc/bioconda-recipes,colinbrislawn/bioconda-recipes,ivirshup/bioconda-recipes,mdehollander/bioconda-recipes,shenwei356/bioconda-recipes,chapmanb/bioconda-recipes,zwanli/bioconda-recipes,HassanAmr/bioconda-recipes,npavlovikj/bioconda-recipes,gvlproject/bioconda-recipes,rvalieris/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,acaprez/recipes,peterjc/bioconda-recipes,pinguinkiste/bioconda-recipes,dkoppstein/recipes,joachimwolff/bioconda-recipes,Luobiny/bioconda-recipes,pinguinkiste/bioconda-recipes,bioconda/bioconda-recipes,joachimwolff/bioconda-recipes,martin-mann/bioconda-recipes,yesimon/bioconda-recipes,oena/bioconda-recipes,JenCabral/bioconda-recipes,abims-sbr/bioconda-recipes,abims-sbr/bioconda-recipes,mdehollander/bioconda-recipes,dkoppstein/recipes,martin-mann/bioconda-recipes,jasper1918/bioconda-recipes,hardingnj/bioconda-recipes,HassanAmr/bioconda-recipes,jfallmann/bioconda-recipes,omicsnut/bioconda-recipes,chapmanb/bioconda-recipes,joachimwolff/bioconda-recipes,daler/bioconda-recipes,colinbrislawn/bioconda-recipes,oena/bioconda-recipes,lpantano/recipes,mcornwell1957/bioconda-recipes,abims-sbr/bioconda-recipes,gvlproject/bioconda-recipes,rob-p/bioconda-recipes |
743cfa9e3e68272c986304eab47f4fb98a73f038 | roles/development/tasks/languages/android.yml | roles/development/tasks/languages/android.yml | - name: Install Android tools
apt: pkg={{ item }} state=installed
with_items:
- android-tools-adb
- android-tools-fastboot
- name: Install Android SDK
apt: pkg={{ item }} state=installed
with_items:
- androidsdk-ddms
- androidsdk-hierarchyviewer
- androidsdk-traceview
- androidsdk-uiautomatorviewer
| - name: Install Android tools
apt: pkg={{ item }} state=installed
with_items:
- android-tools-adb
- android-tools-fastboot
- name: Install Android SDK
apt: pkg={{ item }} state=installed
with_items:
- androidsdk-ddms
- androidsdk-hierarchyviewer
- androidsdk-traceview
- androidsdk-uiautomatorviewer
- name: Install Java via OpenJDK
apt: pkg=openjdk-7-jdk state=installed
- name: Install ant for building APKs
apt: pkg=ant state=installed
| Enable building Android applications with `ant'. | Enable building Android applications with `ant'.
| YAML | mit | jaysh/desktop-automation,jaysh/desktop-automation |
c71bac8e6a104dae174fbc6ab97e16597c449430 | environment.yaml | environment.yaml | # conda environment file for tilezilla
name: tilezilla
channels:
# they nicely build rasterio for us
- ioos
dependencies:
# base
- numpy>=1.10.0
# geographic data packages
- rasterio>=0.31.0
- gdal
- libgdal
- shapely>=1.5.13
- netcdf4
# database
- sqlalchemy
# config file
- pyyaml>=3.11
- jsonschema>=2.4.0
# metadata parsing
- beautifulsoup4
- lxml
# plotting
- matplotlib>=1.5.1
# Required for "clover" -- see below
- pillow
- fiona
# Required but missing from conda
- pip:
# better datetime
- arrow>=0.7.0
# cli
- click>=6.0
- click_plugins>=1.0
# database utils
- sqlalchemy-utils
# compatibility with Python2
- pathlib>=1.0.1
- six==1.10.0
# clover -- used for CRS translation "NetCDF CF" <-> "GDAL/Proj4"
- git+git://github.com/consbio/clover.git
| # conda environment file for tilezilla
name: tilezilla
channels:
# they nicely build rasterio for us
- conda-forge
dependencies:
# base
- numpy>=1.10.0
# geographic data packages
- rasterio>=0.31.0
- gdal
- shapely>=1.5.13
- netcdf4
# database
- sqlalchemy
# config file
- pyyaml>=3.11
- jsonschema>=2.4.0
# metadata parsing
- beautifulsoup4
- lxml
# plotting
- matplotlib>=1.5.1
# Required for "clover" -- see below
- pillow
- fiona
# Required but missing from conda
- pip:
# better datetime
- arrow>=0.7.0
# cli
- click>=6.0
- click_plugins>=1.0
# database utils
- sqlalchemy-utils
# compatibility with Python2
- pathlib>=1.0.1
- six>=1.10.0
# clover -- used for CRS translation "NetCDF CF" <-> "GDAL/Proj4"
- git+git://github.com/consbio/clover.git
| Use conda-forge for conda gis/rs deps | Use conda-forge for conda gis/rs deps
| YAML | bsd-3-clause | ceholden/landsat_tiles,ceholden/landsat_tile,ceholden/tilezilla,ceholden/landsat_tile,ceholden/landsat_tiles |
90d575db8b86b63fb2dc4ddc097cb300d1208261 | hieradata/bgo/modules/profile.yaml | hieradata/bgo/modules/profile.yaml | ---
profile::application::himlarcli::smtp: 'smtp.uib.no'
profile::application::himlarcli::from_addr: 'no-reply@uib.no'
profile::application::himlarcli::ldap_server: 'ldap.uib.no'
profile::application::himlarcli::ldap_base_dn: 'dc=uib,dc=no'
profile::application::himlarcli::slack_channel: '#iaas'
# Enable designate in bgo
profile::openstack::identity::designate_enabled: true
profile::openstack::dashboard::enable_designate: true
# Enable radosgw object storage
profile::openstack::identity::radosgw_enabled: true
| ---
profile::application::himlarcli::smtp: 'smtp.uio.no'
profile::application::himlarcli::from_addr: 'noreply@nrec.no'
profile::application::himlarcli::ldap_server: 'ldap.uib.no'
profile::application::himlarcli::ldap_base_dn: 'dc=uib,dc=no'
profile::application::himlarcli::slack_channel: '#iaas'
# Enable designate in bgo
profile::openstack::identity::designate_enabled: true
profile::openstack::dashboard::enable_designate: true
# Enable radosgw object storage
profile::openstack::identity::radosgw_enabled: true
| Send mail from BGO through UiO mail servers | Send mail from BGO through UiO mail servers
| YAML | apache-2.0 | raykrist/himlar,mikaeld66/himlar,raykrist/himlar,mikaeld66/himlar,mikaeld66/himlar,mikaeld66/himlar,norcams/himlar,norcams/himlar,norcams/himlar,raykrist/himlar,mikaeld66/himlar,norcams/himlar,norcams/himlar,raykrist/himlar,raykrist/himlar |
ce011917b307acdfa0d5d36ee3e5792326e60862 | packages/gh/ghc-api-compat.yaml | packages/gh/ghc-api-compat.yaml | homepage: ''
changelog-type: ''
hash: 18f82e25aac57ad16c5f92a2f7b769048c5251bb707f68745ed1b91cbc19dce4
test-bench-deps: {}
maintainer: sylvain@haskus.fr
synopsis: GHC-API compatibility helpers
changelog: ''
basic-deps:
ghc: ! '>=8.6'
all-versions:
- '8.6'
author: Sylvain Henry
latest: '8.6'
description-type: haddock
description: |-
GHC codebase is a moving target. This package provides
compatibility for codes relying on an older GHC-API version.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: d6ffe14ea8b1f23aef1526f4fb6033158a281a39679a2ebf4524585406822606
test-bench-deps: {}
maintainer: sylvain@haskus.fr
synopsis: GHC-API compatibility helpers
changelog: ''
basic-deps:
ghc: '>=8.6'
all-versions:
- '8.6'
author: Sylvain Henry
latest: '8.6'
description-type: haddock
description: |-
GHC codebase is a moving target. This package provides
compatibility for codes relying on an older GHC-API version.
license-name: BSD-3-Clause
| Update from Hackage at 2021-07-12T10:36:42Z | Update from Hackage at 2021-07-12T10:36:42Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
21fc36174a26f2b2eca07564616201371114b7bf | develop-compose.yml | develop-compose.yml | minervadb:
build: ./
dockerfile: develop.dockerfile
ports:
- "16050:5432"
volumes:
- ./tests:/tests
- ./src:/minerva
| minerva50db:
build: ./
dockerfile: develop.dockerfile
ports:
- "16050:5432"
volumes:
- ./tests:/tests
- ./src:/minerva
| Rename docker image to include version | Rename docker image to include version
| YAML | agpl-3.0 | hendrikx-itc/minerva,hendrikx-itc/minerva |
ba8e326b4f6bbcd790089a00a8c4649378f8d8d8 | certificate.yml | certificate.yml | AWSTemplateFormatVersion: "2010-09-09"
Description: >
Creates a wildcafrd ACM certificate for the standard VPC created by the root
stack (eg *.vpc-af124354.prx.tech)
Parameters:
VPC:
Type: String
Resources:
VpcCertificate:
Type: "AWS::CertificateManager::Certificate"
Properties:
DomainName: !Sub "*.${VPC}.prx.tech"
DomainValidationOptions:
- ValidationDomain: prx.tech
DomainName: !Sub "*.${VPC}.prx.tech"
Outputs:
CertificateArn:
Description: The ARN for the wildcard certificate
Value: !Ref VpcCertificate
| AWSTemplateFormatVersion: "2010-09-09"
Description: >
Creates a wildcard ACM certificate for the standard VPC created by the root
stack (eg *.vpc-af124354.prx.tech)
Parameters:
VPC:
Type: String
Resources:
VpcCertificate:
Type: "AWS::CertificateManager::Certificate"
Properties:
DomainName: !Sub "*.${VPC}.prx.tech"
DomainValidationOptions:
- ValidationDomain: prx.tech
DomainName: !Sub "*.${VPC}.prx.tech"
Outputs:
CertificateArn:
Description: The ARN for the wildcard certificate
Value: !Ref VpcCertificate
| Fix typo in cert template description | Fix typo in cert template description
| YAML | mit | PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure |
1542e385c00dc6c5ebdf333c01a4e4ab60314621 | tasks/repo_key_distribute.yml | tasks/repo_key_distribute.yml | ---
# Copyright 2014, 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.
- name: Create authorized keys file from host vars
authorized_key:
user: "{{ repo_service_user_name }}"
key: "{{ hostvars[item]['repo_pubkey'] | b64decode }}"
with_items: groups['repo_all']
tags:
- repo-key
- repo-key-store
| ---
# Copyright 2014, 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.
- name: Create authorized keys file from host vars
authorized_key:
user: "{{ repo_service_user_name }}"
key: "{{ hostvars[item]['repo_pubkey'] | b64decode }}"
with_items: "{{ groups['repo_all'] }}"
tags:
- repo-key
- repo-key-store
| Address Ansible bare variable usage | Address Ansible bare variable usage
When executing the role with Ansible 2.1, the following
deprecation warning is issued in the output for some tasks.
[DEPRECATION WARNING]: Using bare variables is deprecated.
This patch addresses the tasks to fix the behaviour appropriately.
Change-Id: I8f778659f0cc15b57b23bc1179d5b9368e2975d0
| YAML | apache-2.0 | os-cloud/openstack-ansible-repo_server,os-cloud/openstack-ansible-repo_server,openstack/openstack-ansible-repo_server,openstack/openstack-ansible-repo_server |
d00014d2759c55a892237fa1508e5792f1ecc913 | packages/yx/yx.yaml | packages/yx/yx.yaml | homepage: https://github.com/mtth/yx
changelog-type: ''
hash: 2196994b76bf7e5923c32930adf8695881b3ae791d9c5ddb0b78da4781e086b5
test-bench-deps:
bytestring: ! '>=0.10'
base: ! '>=4.8 && <5'
hspec: ! '>=2.7'
array: ! '>=0.5'
yx: -any
maintainer: mtth@apache.org
synopsis: Row-major coordinates
changelog: ''
basic-deps:
bytestring: ! '>=0.10'
base: ! '>=4.8 && <5'
array: ! '>=0.5'
lattices: ! '>=2.0'
all-versions:
- 0.0.1.0
- 0.0.1.1
- 0.0.2.0
- 0.0.3.0
author: Matthieu Monsch
latest: 0.0.3.0
description-type: markdown
description: |
# YX [](https://hackage.haskell.org/package/yx) [](https://travis-ci.org/mtth/yx)
Bitmap-friendly 2D coordinates.
license-name: BSD-3-Clause
| homepage: https://github.com/mtth/yx
changelog-type: ''
hash: f8ee9f82e194785380019e465a5b83dcec69bbcc67054a3e0d549d8e9bac6def
test-bench-deps:
bytestring: -any
base: ! '>=4.8 && <5'
hspec: -any
array: -any
mtl: -any
yx: -any
maintainer: mtth@apache.org
synopsis: Row-major coordinates
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5'
array: ! '>=0.5'
lattices: ! '>=2.0'
mtl: ! '>=2.2'
all-versions:
- 0.0.1.0
- 0.0.1.1
- 0.0.2.0
- 0.0.3.0
- 0.0.4.0
author: Matthieu Monsch
latest: 0.0.4.0
description-type: markdown
description: |
# YX [](https://hackage.haskell.org/package/yx) [](https://travis-ci.org/mtth/yx)
Bitmap-friendly 2D coordinates.
license-name: BSD-3-Clause
| Update from Hackage at 2019-12-18T07:17:44Z | Update from Hackage at 2019-12-18T07:17:44Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
83379c1240e2022bd48f19786581e8dd94d40e80 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
test:
docker:
- image: rust:latest
steps:
- checkout
- run: cargo test
build:
docker:
- image: rust:latest
steps:
- checkout
- run: cargo build --release
- run: echo $CIRCLE_SHA1 > .circle-sha
- save_cache:
key: build-{{ .Branch }}-{{ checksum ".circle-sha" }}
paths:
- ~/project/target/release
build_container:
docker:
- image: docker:latest
steps:
- run: echo $CIRCLE_SHA1 > .circle-sha
- restore_cache:
key: build-{{ .Branch }}-{{ checksum ".circle-sha" }}
- setup_remote_docker
- run:
command: |
cp target/release/mm_api_notify .deploy/mm_api_notify
cd .deploy
docker build -t mm_api_notify .
docker tag mm_api_notify:latest
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push tptwebmaster/mm_api_notify:latest
workflows:
version: 2
build:
jobs:
- test
- build:
requires:
- test
- build_container:
requires:
- build
filters:
branches:
only:
- master | version: 2
jobs:
test:
docker:
- image: rust:latest
steps:
- checkout
- run: cargo test
build:
docker:
- image: rust:latest
steps:
- checkout
- run: cargo build --release
- run: echo $CIRCLE_SHA1 > .circle-sha
- save_cache:
key: build-{{ .Branch }}-{{ checksum ".circle-sha" }}
paths:
- ~/project/.deploy
- ~/project/target/release
build_container:
docker:
- image: docker:latest
steps:
- run: echo $CIRCLE_SHA1 > .circle-sha
- restore_cache:
key: build-{{ .Branch }}-{{ checksum ".circle-sha" }}
- setup_remote_docker
- run:
command: |
cp target/release/mm_api_notify .deploy/mm_api_notify
cd .deploy
docker build -t mm_api_notify .
docker tag mm_api_notify:latest
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push tptwebmaster/mm_api_notify:latest
workflows:
version: 2
build:
jobs:
- test
- build:
requires:
- test
- build_container:
requires:
- build
filters:
branches:
only:
- master | Add deploy directory to build cache | Add deploy directory to build cache
| YAML | apache-2.0 | twincitiespublictelevision/mm_api_notify,twincitiespublictelevision/mm_api_notify |
bd362f8b399e77edb9ee06016ab6d3120bc903ae | docker-compose.yml | docker-compose.yml | version: '2'
services:
db:
image: postgres
redis:
image: redis
neo4j:
build:
context: .
dockerfile: Dockerfile.neo4j
web:
build:
context: .
dockerfile: Dockerfile.app
env_file: .env.production
command: bundle exec rails s -p 3000 -b '0.0.0.0'
ports:
- "3000:3000"
depends_on:
- db
- redis
- neo4j
volumes:
- ./public/assets:/mastodon/public/assets
- ./public/system:/mastodon/public/system
sidekiq:
build:
context: .
dockerfile: Dockerfile.app
env_file: .env.production
command: bundle exec sidekiq -q default -q mailers
depends_on:
- db
- redis
- neo4j
volumes:
- ./public/system:/mastodon/public/system
| version: '2'
services:
db:
restart: always
image: postgres
redis:
restart: always
image: redis
neo4j:
restart: always
build:
context: .
dockerfile: Dockerfile.neo4j
web:
restart: always
build:
context: .
dockerfile: Dockerfile.app
env_file: .env.production
command: bundle exec rails s -p 3000 -b '0.0.0.0'
ports:
- "3000:3000"
depends_on:
- db
- redis
- neo4j
volumes:
- ./public/assets:/mastodon/public/assets
- ./public/system:/mastodon/public/system
sidekiq:
restart: always
build:
context: .
dockerfile: Dockerfile.app
env_file: .env.production
command: bundle exec sidekiq -q default -q mailers
depends_on:
- db
- redis
- neo4j
volumes:
- ./public/system:/mastodon/public/system
| Add restart policy to docker compose | Add restart policy to docker compose
| YAML | agpl-3.0 | kibousoft/mastodon,kibousoft/mastodon,kibousoft/mastodon,kibousoft/mastodon |
618ea859d02dd73674f7d6edf8d46f8a79685ecb | docker-compose.yml | docker-compose.yml | dev:
image: iojs:2
working_dir: /usr/src/app
volumes:
- ".:/usr/src/app"
command: "npm run watch"
env_file: .env
environment:
- NTB_API_ENV=dev
- NTB_USER_AGENT=turbasen.js/alpha
| dev:
image: iojs:slim
working_dir: /usr/src/app
volumes:
- ".:/usr/src/app"
command: "npm run watch"
env_file: .env
environment:
- NTB_API_ENV=dev
- NTB_USER_AGENT=turbasen.js/alpha
| Use iojs:slim Docker Image for dev env | Use iojs:slim Docker Image for dev env
| YAML | mit | Turbasen/turbasen.js |
3fe15e41133a9200d8249e602a0087567bc16932 | docker-compose.yml | docker-compose.yml | version: '2'
services:
db:
image: postgres
env_file: env.env
ports:
- 5432:5432
volumes:
- ./db/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
- ./db/audio_data:/audio_data
- ./db/postgres_data:/var/lib/postgresql/data
api:
build: api
env_file: env.env
command: python /code/runserver.py
ports:
- 5000:5000
volumes:
- ./api:/code
depends_on:
- db
entrypoint: ./wait-for-it.sh db:5432 --
web:
image: nginx
ports:
- 8000:80
volumes:
- ./web/src:/usr/share/nginx/html
- ./web/conf:/etc/nginx/conf.d
depends_on:
- api
| version: '2'
services:
db:
image: postgres:9.6.1-alpine
env_file: env.env
ports:
- 5432:5432
volumes:
- ./db/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
- ./db/audio_data:/audio_data
- ./db/postgres_data:/var/lib/postgresql/data
api:
build: api
env_file: env.env
command: python /code/runserver.py
ports:
- 5000:5000
volumes:
- ./api:/code
depends_on:
- db
entrypoint: ./wait-for-it.sh db:5432 --
web:
image: nginx:1.11.8-alpine
ports:
- 8000:80
volumes:
- ./web/src:/usr/share/nginx/html
- ./web/conf:/etc/nginx/conf.d
depends_on:
- api
| Use alpine based images for postgres and nginx | Use alpine based images for postgres and nginx
| YAML | mit | wfriesen/flaskfm,wfriesen/flaskfm,wfriesen/flaskfm,wfriesen/flaskfm |
9d6d8b2b75deb0e50d65dc653724b8c1a4b79298 | docker-compose.yml | docker-compose.yml | version: '2'
services:
web:
image: microcosm
build:
context: .
dockerfile: ./containers/Dockerfile.microcosm
ports:
- "80:80"
- "443:443"
volumes:
- .:/go/src/github.com/buro9/microcosm
depends_on:
- db
- cache
links:
- db
db:
image: "postgres:13.3"
cache:
image: "memcached:latest"
| version: '2'
services:
web:
image: microcosm
build:
context: .
dockerfile: ./containers/Dockerfile.microcosm
ports:
- "80:80"
- "443:443"
volumes:
- .:/go/src/github.com/buro9/microcosm
depends_on:
- db
- cache
links:
- db
db:
image: "postgres:13.6"
cache:
image: "memcached:latest"
| Update dependency postgres to v13.6 | Update dependency postgres to v13.6
| YAML | agpl-3.0 | buro9/microcosm,buro9/microcosm |
72f42cd938d3cf4f928614a5fcdca237489e7c92 | cloudml-gpu.yaml | cloudml-gpu.yaml | trainingInput:
scaleTier: CUSTOM
masterType: standard_gpu
runtimeVersion: "1.0"
| trainingInput:
scaleTier: CUSTOM
masterType: standard_gpu
runtimeVersion: "1.8"
| Modify default runtime version to 1.8 | Modify default runtime version to 1.8 | YAML | apache-2.0 | google/youtube-8m |
e10fbdf2ea8c703844011542369f5c33d1b06618 | packages/ha/haskus-utils-data.yaml | packages/ha/haskus-utils-data.yaml | homepage: http://www.haskus.org
changelog-type: ''
hash: 48f62aa23d84b94edd0338379d3b3d74a34d3c2dbabf8c448a774a89ca70ea5d
test-bench-deps:
base: ! '>=4.9 && <5'
doctest: -any
maintainer: sylvain@haskus.fr
synopsis: Haskus data utility modules
changelog: ''
basic-deps:
extra: ! '>=1.4'
base: ! '>=4.12 && <5'
haskus-utils-types: ! '>=1.5'
containers: ! '>=0.5'
ghc-prim: -any
mtl: ! '>=2.2'
transformers: ! '>=0.4'
recursion-schemes: ! '>=5.0'
all-versions:
- '1.0'
- '1.1'
- 1.1.1
- '1.2'
author: Sylvain Henry
latest: '1.2'
description-type: haddock
description: Haskus data utility modules
license-name: BSD-3-Clause
| homepage: http://www.haskus.org
changelog-type: ''
hash: f62c4e49021b463185d043f7b69c727b63af641a71d7edd582d9f4f98e80e500
test-bench-deps:
base: '>=4.9 && <5'
doctest: -any
maintainer: sylvain@haskus.fr
synopsis: Haskus data utility modules
changelog: ''
basic-deps:
base: '>=4.12 && <5'
haskus-utils-types: '>=1.5'
containers: '>=0.5'
ghc-prim: -any
mtl: '>=2.2'
transformers: '>=0.4'
recursion-schemes: '>=5.0'
all-versions:
- '1.0'
- '1.1'
- 1.1.1
- '1.2'
- '1.3'
author: Sylvain Henry
latest: '1.3'
description-type: haddock
description: Haskus data utility modules
license-name: BSD-3-Clause
| Update from Hackage at 2020-06-08T10:58:26Z | Update from Hackage at 2020-06-08T10:58:26Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
83befb14ca935793845466f2a9e33bb113526c80 | .github/workflows/workflow.yml | .github/workflows/workflow.yml | name: workflow
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub repo
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: '11'
- name: Start Xvfb
run: Xvfb :99 &
- name: Run tests
run: mvn -B test
env:
DISPLAY: :99
WDM_GITHUBTOKENNAME: ${{ secrets.WDM_GITHUBTOKENNAME }}
WDM_GITHUBTOKENSECRET: ${{ secrets.WDM_GITHUBTOKENSECRET }}
- name: Upload analysis to SonarCloud
run: >
mvn -B sonar:sonar
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=bonigarcia-github
-Dsonar.projectKey=io.github.bonigarcia:selenium-jupiter
env:
GITHUB_TOKEN: ${{ secrets.WDM_GITHUBTOKENSECRET }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
| name: workflow
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
DISPLAY: :99
WDM_GITHUBTOKEN: ${{ secrets.WDM_GITHUBTOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub repo
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: '11'
- name: Start Xvfb
run: Xvfb :99 &
- name: Run tests
run: mvn -B test
- name: Upload analysis to SonarCloud
run: >
mvn -B sonar:sonar
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=bonigarcia-github
-Dsonar.projectKey=io.github.bonigarcia:selenium-jupiter
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
| Use WDM_GITHUBTOKEN env (available as of WebDriverManager 5.0.0) | Use WDM_GITHUBTOKEN env (available as of WebDriverManager 5.0.0)
| YAML | apache-2.0 | bonigarcia/selenium-jupiter,bonigarcia/selenium-jupiter |
2c3245f5143da2c7895fc5d2dda6d0a423175701 | roles/copy_skeleton/tasks/main.yml | roles/copy_skeleton/tasks/main.yml | ---
# This Ansible role copies the contents of the skeleton directory /etc/skel to
# the home directory of vagrant on a virtual machine, or to /root/ on a
# container.
#
# TYPE must either be "vm" or "container".
- name: Copy skeleton contents (/etc/skel/*) to root on containers.
command: cp --recursive /etc/skel/. /root/
when: TYPE == "container"
- name: Create temporary directory for skeleton transfer on vms.
command: mktemp
register: temp_creation
when: TYPE == "vm"
- name: Copy skeleton contents (/etc/skel/*) to the temporary directory on vms.
command: cp --recursive /etc/skel/. {{ temp_creation.stdout }}/
when: TYPE == "vm"
- name: Set mode of transferred skeleton files.
file:
group: vagrant
owner: vagrant
path: "{{ temp_creation.stdout }}"
recurse: yes
state: directory
when: TYPE == "vm"
- name: Copy temporary skeleton files to the vagrant home directory.
command: cp --preserve --recursive {{ temp_creation.stdout }}/. /home/vagrant/
when: TYPE == "vm" | ---
# This Ansible role copies the contents of the skeleton directory /etc/skel to
# the home directory of vagrant on a virtual machine, or to /root/ on a
# container.
#
# TYPE must either be "vm" or "container".
- name: Copy skeleton contents (/etc/skel/*) to root on containers.
command: cp --recursive /etc/skel/. /root/
when: TYPE == "container"
- name: Create temporary directory for skeleton transfer on vms.
command: mktemp
register: temp_creation
when: TYPE == "vm"
- name: Copy skeleton contents (/etc/skel/*) to the temporary directory on vms.
command: cp --recursive /etc/skel/. {{ temp_creation.stdout }}/
when: TYPE == "vm"
- name: Set mode of transferred skeleton files.
file:
group: vagrant
owner: vagrant
path: "{{ temp_creation.stdout }}"
recurse: yes
state: directory
when: TYPE == "vm"
- name: Copy temporary skeleton files to the vagrant home directory.
command: cp --preserve --recursive {{ temp_creation.stdout }}/. /home/vagrant/
when: TYPE == "vm"
- name: Remove temporary directory.
file:
path: "{{ temp_creation.stdout }}"
recurse: yes
state: absent
when: TYPE == "vm"
| Remove temporary directory after using it in copy_skeleton. | FEAT-002: Remove temporary directory after using it in copy_skeleton.
| YAML | bsd-3-clause | computationalmodelling/virtualmicromagnetics,computationalmodelling/virtualmicromagnetics,fangohr/virtualmicromagnetics,fangohr/virtualmicromagnetics |
4ebdf47033300858ec7448555df77df28e8f76d1 | syn/yosys-uhdm/meta.yaml | syn/yosys-uhdm/meta.yaml | # Use `conda-build-prepare` before building for a better version string.
{% set version = '%s_%04i_%s'|format(GIT_DESCRIBE_TAG|replace('v','') or '0.X.X', GIT_DESCRIBE_NUMBER|int, GIT_DESCRIBE_HASH or 'gUNKNOWN') %}
{% set python_version = PYTHON_VERSION | default('3.7') %}
{% set py_suffix = 'py%s'|format(python_version|replace('.', '')) %}
package:
name: yosys-uhdm
version: {{ version }}
source:
git_rev: uhdm-yosys
git_url: https://github.com/antmicro/yosys.git
patches:
- yosys.patch
build:
number: {{ environ.get('DATE_NUM') }}
string: {{ environ.get('DATE_STR') }}_{{ py_suffix }}
script_env:
- CI
requirements:
build:
# These version restrictions make the dependencies resolvable with
# packages from the `defaults` channel (libgcc-ng/libstdcxx-ng).
- {{ compiler('c') }} <9
- {{ compiler('cxx') }} <9
- python {{ python_version }}
- cmake
- pkg-config
- libuuid
- gperftools
- flex
- libunwind
- swig
- ncurses
run:
- python {{python_version}}
- ncurses
- readline
- libffi
test:
commands:
- uhdm-yosys --version
| # Use `conda-build-prepare` before building for a better version string.
{% set version = '%s_%04i_%s'|format(GIT_DESCRIBE_TAG|replace('v','') or '0.X.X', GIT_DESCRIBE_NUMBER|int, GIT_DESCRIBE_HASH or 'gUNKNOWN') %}
{% set python_version = PYTHON_VERSION | default('3.7') %}
{% set py_suffix = 'py%s'|format(python_version|replace('.', '')) %}
package:
name: yosys-uhdm
version: {{ version }}
source:
git_rev: uhdm-yosys
git_url: https://github.com/antmicro/yosys.git
patches:
- yosys.patch
build:
number: {{ environ.get('DATE_NUM') }}
string: {{ environ.get('DATE_STR') }}_{{ py_suffix }}
script_env:
- CI
requirements:
build:
# These version restrictions make the dependencies resolvable with
# packages from the `defaults` channel (libgcc-ng/libstdcxx-ng).
- {{ compiler('c') }} <9
- {{ compiler('cxx') }} <9
- python {{ python_version }}
- cmake
- pkg-config
- libuuid
- gperftools
- flex
- libunwind
- swig
- ncurses
- bison
- openjdk
run:
- python {{python_version}}
- ncurses
- readline
- libffi
test:
commands:
- uhdm-yosys --version
| Add missing packages used during building | yosys-uhdm: Add missing packages used during building
| YAML | apache-2.0 | litex-hub/litex-conda-eda |
78820b703f803e9393d92d458ba58cc1d36dbcf7 | update_kb_bdi_tv5monde.yml | update_kb_bdi_tv5monde.yml | ---
# Ansible playbook for TV5 Monde BDI
#It will be always localhost
- hosts: localhost
roles:
# Has to be always enable
- logs
- role: kalite
version: "0.15"
- role: idc_import
content_name: "14-logiciel-libre/app.csv" | ---
# Ansible playbook for TV5 Monde BDI
#It will be always localhost
- hosts: localhost
roles:
# Has to be always enable
- logs
- role: kalite
version: "0.15"
- role: rename_device
ideascube_id: "kb_bdi_tv5monde"
when: ansible_hostname == 'kb_mooc_cog_492'
- role: idc_import
content_name: "14-logiciel-libre/app.csv" | Change the name of kb_mooc_cog_492 | Change the name of kb_mooc_cog_492
| YAML | mit | ideascube/ansiblecube,ideascube/ansiblecube |
902b33b5d78fb53cacefca92c3c5cef72cb268e7 | src/default.properties.yml | src/default.properties.yml | remote:
appdir: '/home/[user]/apps/[app]'
releasesdir: '${remote.appdir}/releases'
webdir: '${remote.releasesdir}/[time]/web'
currentdir: '${remote.appdir}/current'
configdir: '${remote.appdir}/config'
filesdir: '${remote.appdir}/files'
backupsdir: '${remote.appdir}/backups'
symlinks:
- '${remote.webdir}:${remote.currentdir}'
- '${remote.configdir}/settings.php:${remote.webdir}/sites/default/settings.php'
- '${remote.filesdir}/public:${remote.webdir}/sites/default/files'
opcache:
env: 'fcgi'
host: '/var/run/php_fpm_[user].sock'
| remote:
appdir: '/home/[user]/apps/[app]'
releasesdir: '${remote.appdir}/releases'
webdir: '${remote.releasesdir}/[time]/web'
currentdir: '${remote.appdir}/current'
configdir: '${remote.appdir}/config'
filesdir: '${remote.appdir}/files'
backupsdir: '${remote.appdir}/backups'
symlinks:
- '${remote.webdir}:${remote.currentdir}'
- '${remote.configdir}/settings.php:${remote.webdir}/sites/default/settings.php'
- '${remote.filesdir}/public:${remote.webdir}/sites/default/files'
opcache:
env: 'fcgi'
host: '/var/run/php_fpm_[user].sock'
local:
filesdir: '[web_root]/sites/default/files'
| Add a local sync command. | Add a local sync command.
| YAML | mit | digipolisgent/robo-digipolis-drupal8 |
17d19ee109b81166cd9d2be20948c12a38df2769 | _data/custom_hosts.yml | _data/custom_hosts.yml | - name: "Heroku"
url: "https://devcenter.heroku.com/articles/php-support#php-runtimes"
php55: 20
php56: 4
default: 5.6.4
manual_update: Yes
- name: "Microsoft Azure Web Sites"
url: "http://azure.microsoft.com/en-us/services/websites"
php53: 29
php54: 34
php55: 18
php56: 2
default: 5.4.34
manual_update: Yes
- name: "Pagoda Box"
url: "https://pagodabox.com/"
php52: 17
php53: 23
php54: 14
default: 5.3.23
| - name: "Heroku"
url: "https://devcenter.heroku.com/articles/php-support#php-runtimes"
php55: 20
php56: 4
php70: RC1
default: 5.6.4
manual_update: Yes
- name: "Microsoft Azure Web Sites"
url: "http://azure.microsoft.com/en-us/services/websites"
php53: 29
php54: 34
php55: 18
php56: 2
default: 5.4.34
manual_update: Yes
- name: "Pagoda Box"
url: "https://pagodabox.com/"
php52: 17
php53: 23
php54: 14
default: 5.3.23
| Add PHP RC1 for Heroku | Add PHP RC1 for Heroku
| YAML | unlicense | PaulBender/phpversions.info,Sobak/phpversions.info,Merlin83b/phpversions.info,afelicioni/phpversions.info,felds/phpversions.info,phpversions/phpversions.info,thasmo/phpversions.info,Merlin83b/phpversions.info,phpversions/phpversions.info,mmckinst/phpversions.info,TimothyDJones/phpversions.info,dzuelke/phpversions.info,philsturgeon/phpversions.info,TimothyDJones/phpversions.info,philsturgeon/phpversions.info,po2go-sean/phpversions.info,tomwalder/phpversions.info,coderstephen/phpversions.info,PaulBender/phpversions.info,GaryJones/phpversions.info,PaulBender/phpversions.info,tomwalder/phpversions.info,GaryJones/phpversions.info,mmckinst/phpversions.info,rocketpastsix/phpversions.info,tomwalder/phpversions.info,tomwalder/phpversions.info,philsturgeon/phpversions.info,Sobak/phpversions.info,afelicioni/phpversions.info,stof/phpversions.info,Merlin83b/phpversions.info,po2go-sean/phpversions.info,thasmo/phpversions.info,phpversions/phpversions.info,dzuelke/phpversions.info,po2go-sean/phpversions.info,GaryJones/phpversions.info,PaulBender/phpversions.info,rossluebe/phpversions.info,phpversions/phpversions.info,rocketpastsix/phpversions.info,po2go-sean/phpversions.info,afelicioni/phpversions.info,Sobak/phpversions.info |
2a7a53813e1c05057e9953f5005f00a4c4ad7a4d | hnakamur.zsh/defaults/main.yml | hnakamur.zsh/defaults/main.yml | ---
zsh_rc_dir: ~/.zshrc.d
zsh_rc_files:
- git.zsh
- git_completion.zsh
- git-prompt.sh
- prompt.zsh
zsh_rc_templates:
- history.zsh
zsh_path_directories:
- "$HOME/bin"
- "$HOME/go/bin"
- /usr/local/ruby/bin
- /usr/local/node/bin
- /usr/local/bin
zsh_envs:
- name: GOPATH
value: "{{ go_gopath }}"
zsh_my_bin_files:
- modipath
zsh_additional_config_files:
- aliases.zsh
zsh_login_shell: /bin/zsh
zsh_enable_history_sharing: False
zsh_history_file: ~/.zsh_history
zsh_history_memory_size: 1000000
zsh_history_disk_size: 1000000
zsh_bindkey_type: emacs
| ---
zsh_rc_dir: ~/.zshrc.d
zsh_rc_files:
- git.zsh
- git_completion.zsh
- git-prompt.sh
- prompt.zsh
zsh_rc_templates:
- history.zsh
zsh_path_directories:
- "$HOME/bin"
- "$HOME/go/bin"
- /usr/local/ruby/bin
- /usr/local/node/bin
- /usr/local/sbin
- /usr/local/bin
zsh_envs:
- name: GOPATH
value: "{{ go_gopath }}"
zsh_my_bin_files:
- modipath
zsh_additional_config_files:
- aliases.zsh
zsh_login_shell: /bin/zsh
zsh_enable_history_sharing: False
zsh_history_file: ~/.zsh_history
zsh_history_memory_size: 1000000
zsh_history_disk_size: 1000000
zsh_bindkey_type: emacs
| Add Homebrew's sbin /usr/local/sbin to PATH | Add Homebrew's sbin /usr/local/sbin to PATH
| YAML | mit | hnakamur/macbook_setup,hnakamur/macbook_setup,hnakamur/macbook_setup |
f1c14152364acd1bcadb775f622c7f3de6936b97 | .github/workflows/awstest.yml | .github/workflows/awstest.yml | name: AWS Megatests
# This workflow is triggered on PRs to the master branch.
# It runs the -profile 'test' on AWS batch
on:
pull_request:
branches:
- 'master'
release:
types: [published]
jobs:
run-awstest:
name: Run AWS test
runs-on: ubuntu-latest
steps:
- name: Setup Miniconda
uses: goanpeca/setup-miniconda@v1.0.2
with:
auto-update-conda: true
python-version: 3.7
- name: Install awscli
run: conda install -c conda-forge awscli
- name: Start AWS batch job
env:
AWS_ACCESS_KEY_ID: ${{secrets.AWS_KEY_ID}}
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_KEY_SECRET}}
TOWER_ACCESS_TOKEN: ${{secrets.TOWER_ACCESS_TOKEN}}
run: |
aws batch submit-job --region eu-west-1 --job-name nf-core-sarek --job-queue 'default-8b3836e0-5eda-11ea-96e5-0a2c3f6a2a32' --job-definition nextflow --container-overrides command=nf-core/sarek,"-r ${GITHUB_SHA} -profile test --outdir s3://nf-core-awsmegatests/sarek/results-${GITHUB_SHA} -w s3://nf-core-awsmegatests/sarek/work-${GITHUB_SHA}"
| name: AWS Megatests
# This workflow is triggered on PRs to the master branch.
# It runs the -profile 'test' on AWS batch
on:
pull_request:
branches:
- master
release:
types: [published]
jobs:
run-awstest:
name: Run AWS test
runs-on: ubuntu-latest
steps:
- name: Setup Miniconda
uses: goanpeca/setup-miniconda@v1.0.2
with:
auto-update-conda: true
python-version: 3.7
- name: Install awscli
run: conda install -c conda-forge awscli
- name: Start AWS batch job
env:
AWS_ACCESS_KEY_ID: ${{secrets.AWS_KEY_ID}}
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_KEY_SECRET}}
TOWER_ACCESS_TOKEN: ${{secrets.TOWER_ACCESS_TOKEN}}
run: |
aws batch submit-job --region eu-west-1 --job-name nf-core-sarek --job-queue 'default-8b3836e0-5eda-11ea-96e5-0a2c3f6a2a32' --job-definition nextflow --container-overrides '{"command": ["nf-core/sarek", "-r ${GITHUB_SHA} -profile test --outdir s3://nf-core-awsmegatests/sarek/results-${GITHUB_SHA} -w s3://nf-core-awsmegatests/sarek/work-${GITHUB_SHA} -with-tower"], "environment": [{"name": "TOWER_ACCESS_TOKEN", "value": "'"$TOWER_ACCESS_TOKEN"'"}]}'
| Add nextflow tower properly as suggested | Add nextflow tower properly as suggested
| YAML | mit | MaxUlysse/CAW,MaxUlysse/CAW,MaxUlysse/CAW |
3862ef6bd0f034491f618e0110ef22a0b5aed6fb | k8s/deployment.yaml | k8s/deployment.yaml | apiVersion: apps/v1
kind: Deployment
metadata:
name: trifid
spec:
template:
spec:
securityContext:
runAsUser: 65534
runAsGroup: 65534
containers:
- name: trifid
image: trifid
imagePullPolicy: Always
ports:
- name: http
containerPort: 8080
protocol: TCP
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http
| apiVersion: apps/v1
kind: Deployment
metadata:
name: trifid
spec:
template:
spec:
securityContext:
runAsUser: 65534
runAsGroup: 65534
containers:
- name: trifid
image: trifid
imagePullPolicy: Always
ports:
- name: http
containerPort: 8080
protocol: TCP
livenessProbe:
httpGet:
path: /
port: http
httpHeaders:
- name: Host
value: gont.ch
- name: X-Forwarded-For
value: https
readinessProbe:
httpGet:
path: /
port: http
httpHeaders:
- name: Host
value: gont.ch
- name: X-Forwarded-For
value: https
| Add Host & X-Forwarded-For headers to probes | k8s: Add Host & X-Forwarded-For headers to probes
| YAML | mit | gontch/gont.ch-site,gontch/gont.ch |
4f426c7a6fb6fbdd5fef1bcd08df209be3bd0782 | .github/workflows/autoformat.yml | .github/workflows/autoformat.yml | name: "Autoformat using Black"
on: [workflow_dispatch, push]
jobs:
autoformat:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install pip modules
run: pip install black isort
- name: copy config for isort sanity
run: cp example_config.py config.py
- name: Run isort
run: isort .
- name: Run Black
run: black .
- name: Commit and push changes
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git diff --quiet && git diff --staged --quiet || git commit -m "auto: format python code"
git push | name: "Autoformat using Black"
on: [workflow_dispatch, push]
jobs:
autoformat:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install pip modules
run: pip install black isort
- name: copy config for isort sanity
run: cp example_config.py config.py
- name: Run isort
run: isort .
- name: Run Black
run: black .
- name: Commit and push changes
run: |
git config user.name github-actions
git config user.email actions@github.com
git add .
git diff --quiet && git diff --staged --quiet || git commit -m "auto: format python code"
git push
| Update to use offical github actions user | Update to use offical github actions user | YAML | mit | mralext20/alex-bot |
a468e8d748a7e191d57b475fe77b4f4346fedb28 | .github/workflows/code-style.yml | .github/workflows/code-style.yml | name: Code style
on: [push, pull_request]
jobs:
phpcs:
name: PHPCS
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Install dependencies
run: composer update --prefer-dist --no-progress --no-suggest
- name: Run script
run: vendor/bin/phpcs
| name: Code style
on: [push, pull_request]
permissions:
contents: read
jobs:
phpcs:
name: PHPCS
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Install dependencies
run: composer update --prefer-dist --no-progress --no-suggest
- name: Run script
run: vendor/bin/phpcs
| Set permissions for GitHub actions | chore: Set permissions for GitHub actions
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much.
- Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
[Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/)
Signed-off-by: nathannaveen <b37dc86ffc1291bdc2112c1c336789fc137c3957@users.noreply.github.com>
| YAML | lgpl-2.1 | php-amqplib/php-amqplib |
61f8f6d285f768e585457b41280c068cbe6d057d | .github/workflows/maven-test.yml | .github/workflows/maven-test.yml | name: Run tests - Ubuntu + Java 8
on:
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Maven install, test skipped
run: mvn install -DskipTests
- name: Maven test
run: mvn test
| name: Run tests - Ubuntu + Java 8
on:
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
distribution: 'zulu'
java-version: 8.0.292
- name: Maven install, test skipped
run: mvn install -DskipTests
- name: Maven test
run: mvn test
| Fix tests by fixing Java version | Fix tests by fixing Java version
New version of Java adds limit on XML processing and this is causing issue with Okapi ITS filter.
For now, fix the Java version until we find a better solution with Okapi.
2022-04-21T14:21:58.8979585Z net.sf.okapi.common.exceptions.OkapiException: javax.xml.xpath.XPathExpressionException: javax.xml.transform.TransformerException: JAXP0801002: the compiler encountered an XPath expression containing '101' operators that exceeds the '100' limit set by 'FEATURE_SECURE_PROCESSING'.
2022-04-21T14:21:58.8980885Z at org.w3c.its.ITSEngine.processLocalRules(ITSEngine.java:2443)
2022-04-21T14:21:58.8981889Z at org.w3c.its.ITSEngine.applyRules(ITSEngine.java:1257)
2022-04-21T14:21:58.8982460Z at net.sf.okapi.filters.its.ITSFilter.applyRules(ITSFilter.java:217)
2022-04-21T14:21:58.8982975Z at net.sf.okapi.filters.its.ITSFilter.open(ITSFilter.java:256)
2022-04-21T14:21:58.8983466Z at net.sf.okapi.filters.its.ITSFilter.open(ITSFilter.java:200)
| YAML | apache-2.0 | box/mojito,box/mojito,box/mojito,box/mojito,box/mojito,box/mojito |
14d9a5def0cd8c23ae20ac15f503417bd2e37172 | .github/workflows/sonar-scan.yml | .github/workflows/sonar-scan.yml | name: Build
on:
push:
branches:
- master # or the name of your main branch
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache SonarQube packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
| name: Build
on:
push:
branches:
- master # or the name of your main branch
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache SonarQube packages
uses: actions/cache@v1
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: mvn -B -Penable-jacoco -Dset.changelist verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
| Add missing report flag for github action | Add missing report flag for github action | YAML | mit | jenkinsci/crowd2-plugin,jenkinsci/crowd2-plugin,jenkinsci/crowd2-plugin |
ab6460742094c4b1a562e534060d537d33cf8c24 | ci/parameters.yml | ci/parameters.yml | email-server: "smtp.svc.pivotal.io"
email-from: "ci@spring.io"
email-to: ["spring-framework-dev@pivotal.io"]
github-repo: "https://github.com/spring-projects/spring-framework.git"
github-repo-name: "spring-projects/spring-framework"
docker-hub-organization: "springci"
artifactory-server: "https://repo.spring.io"
branch: "master"
milestone: "5.3.x"
build-name: "spring-framework"
pipeline-name: "spring-framework"
concourse-url: "https://ci.spring.io"
task-timeout: 1h00m
| email-server: "smtp.svc.pivotal.io"
email-from: "ci@spring.io"
email-to: ["spring-framework-dev@pivotal.io"]
github-repo: "https://github.com/spring-projects/spring-framework.git"
github-repo-name: "spring-projects/spring-framework"
docker-hub-organization: "springci"
artifactory-server: "https://repo.spring.io"
branch: "main"
milestone: "5.3.x"
build-name: "spring-framework"
pipeline-name: "spring-framework"
concourse-url: "https://ci.spring.io"
task-timeout: 1h00m
| Update CI to use main as default branch name | Update CI to use main as default branch name
Closes gh-26863
| 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 |
ec924756d4ef079bc59eaf7af99404318b47702e | shippable.yml | shippable.yml | language: ruby
cache: bundler
archive: true
rvm:
- 2.1.2
before_script:
- cp spec/dummy/config/database.shippable.yml spec/dummy/config/database.yml
script:
- cd spec/dummy
- RAILS_ENV=test bundle exec rake db:schema:load
- cd ../..
- CODECLIMATE_REPO_TOKEN=b7d9c971bea2879b81bdf35f600b985bf3a016c6104169b2c29c213a5d2e7142 bundle exec rspec
- bundle exec rake best_practice_project:run
notifications:
email: false
| language: ruby
cache: bundler
archive: true
rvm:
- 2.1.2
before_script:
- cp spec/dummy/config/database.shippable.yml spec/dummy/config/database.yml
- cd spec/dummy
- RAILS_ENV=test bundle exec rake db:schema:load
- cd ../..
script:
- CODECLIMATE_REPO_TOKEN=b7d9c971bea2879b81bdf35f600b985bf3a016c6104169b2c29c213a5d2e7142 bundle exec rspec
- bundle exec rake best_practice_project:run
notifications:
email: false
| Load schema in before script | Load schema in before script
| YAML | mit | kaspernj/active-record-transactioner,kaspernj/active-record-transactioner,kaspernj/active-record-transactioner |
cdca68f6985a02358f04d9be4af1008dfe65852b | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
branches:
ignore:
# Skip staging CI if branch name starts with `docs-`.
- /docs-.*/
docker:
- image: msheiny/pressfreedomci:latest
environment:
FPF_CI: true
CI_SD_ENV: staging
CI_AWS_TYPE: t2.small
FPF_GRSEC: false
TEST_REPORTS: /root/sd
working_directory: /root/sd
steps:
- checkout
- run:
name: Installation pre-reqs
command: pip install -U -r ./testinfra/requirements.txt
- setup_remote_docker
- run:
name: Run molecule and manage tests
command: make ci-go
- run:
name: Teardown environment
command: make ci-teardown
when: always
- store_test_results:
path: /root/sd/junit
- store_artifacts:
path: /root/sd/junit
| ---
version: 2
jobs:
docs-lint:
docker:
- image: msheiny/pressfreedomci:latest
steps:
- checkout
- run:
name: Installation pre-reqs
command: pip install -U -r securedrop/requirements/develop-requirements.txt
- run:
name: Run docs lint
command: make docs-lint
staging-test:
docker:
- image: msheiny/pressfreedomci:latest
environment:
FPF_CI: true
CI_SD_ENV: staging
CI_AWS_TYPE: t2.small
FPF_GRSEC: false
TEST_REPORTS: /root/sd
working_directory: /root/sd
steps:
- checkout
- run:
name: Installation pre-reqs
command: pip install -U -r ./testinfra/requirements.txt
- setup_remote_docker
- run:
name: Run molecule and manage tests
command: make ci-go
- run:
name: Teardown environment
command: make ci-teardown
when: always
- store_test_results:
path: /root/sd/junit
- store_artifacts:
path: /root/sd/junit
workflows:
version: 2
securedrop_ci:
jobs:
- docs-lint
- staging-test:
filters:
branches:
ignore: /^docs-.*/
requires:
- docs-lint
| Add CI workflow, prevent staging on docs branches | Add CI workflow, prevent staging on docs branches
| YAML | agpl-3.0 | ehartsuyker/securedrop,heartsucker/securedrop,ehartsuyker/securedrop,heartsucker/securedrop,ehartsuyker/securedrop,micahflee/securedrop,garrettr/securedrop,heartsucker/securedrop,conorsch/securedrop,conorsch/securedrop,micahflee/securedrop,micahflee/securedrop,conorsch/securedrop,heartsucker/securedrop,conorsch/securedrop,heartsucker/securedrop,garrettr/securedrop,garrettr/securedrop,ehartsuyker/securedrop,micahflee/securedrop,conorsch/securedrop,ehartsuyker/securedrop,ehartsuyker/securedrop,garrettr/securedrop |
47656c47576fbeedc26404b8a7debea4ed98d547 | appveyor.yml | appveyor.yml | init:
- git config --global core.autocrlf true
build_script:
- build.cmd --quiet verify
clone_depth: 1
test: off
deploy: off
branches:
only:
- master
environment:
COVERALLS_REPO_TOKEN:
secure: polBw3WkjnUg+aq0oeBdbqGbszPIgwisEO1SHryVrHTKFxQPd1z8iEmOcTgwtiqZ
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
matrix:
fast_finish: true
artifacts:
- path: 'artifacts\build\*.nupkg'
install:
- nuget update -self
- nuget install OpenCover -ExcludeVersion
- nuget install coveralls.io -ExcludeVersion
test_script:
- OpenCover\tools\OpenCover.Console.exe -register:user -filter:"+[Clif*]*" -target:"C:\Program Files\dotnet\dotnet.exe" -targetargs:"test test\Clif.Tests -appveyor" -output:coverage.xml
after_test:
- coveralls.io\tools\coveralls.net.exe --opencover coverage.xml | init:
- git config --global core.autocrlf true
build_script:
- build.cmd --quiet verify
clone_depth: 1
test: off
deploy: off
branches:
only:
- master
environment:
COVERALLS_REPO_TOKEN:
secure: polBw3WkjnUg+aq0oeBdbqGbszPIgwisEO1SHryVrHTKFxQPd1z8iEmOcTgwtiqZ
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
matrix:
fast_finish: true
artifacts:
- path: 'artifacts\build\*.nupkg'
install:
- nuget update -self
- nuget install OpenCover -ExcludeVersion
- nuget install coveralls.io -ExcludeVersion
test_script:
- OpenCover\tools\OpenCover.Console.exe -register:user -filter:"-[Clif.Tests*]* +[Clif*]*" -target:"C:\Program Files\dotnet\dotnet.exe" -targetargs:"test test\Clif.Tests -appveyor" -output:coverage.xml
after_test:
- coveralls.io\tools\coveralls.net.exe --opencover coverage.xml | Update open cover to ignore the test project | Update open cover to ignore the test project
| YAML | mit | rlgnak/Clif,rlgnak/Clif |
f021d87c386ce5dd70df03fbcf4f70984392bc2b | appveyor.yml | appveyor.yml | environment:
matrix:
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python27-x64"
install:
# symlink python from a directory with a space
- "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
- "SET PYTHON=\"C:\\Program Files\\Python\""
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python -m pip install tox"
before_build:
- "python -m pip install wheel"
build_script:
- python -m setup bdist_wheel
test_script:
- tox
after_test:
- ps: |
$wc = New-Object 'System.Net.WebClient'
$wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\junit-test-results.xml))
#deploy_script:
# - ps: >-
# if($env:appveyor_repo_tag -eq 'True') {
# Invoke-Expression "python -m twine upload dist/* --username $env:PYPI_USERNAME --password $env:PYPI_PASSWORD"
# }
artifacts:
- path: dist\*
| environment:
matrix:
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python27-x64"
install:
# symlink python from a directory with a space
- "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
- "SET PYTHON=\"C:\\Program Files\\Python\""
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python -m pip install tox"
before_build:
- "python -m pip install wheel"
build_script:
- python -m setup bdist_wheel
test_script:
- tox
after_test:
- ps: |
$wc = New-Object 'System.Net.WebClient'
$wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\junit-test-results.xml))
#deploy_script:
#- ps: >-
# if($env:appveyor_repo_tag -eq 'True') {
# Invoke-Expression "python -m twine upload dist/* --username $env:PYPI_USERNAME --password $env:PYPI_PASSWORD"
# }
artifacts:
- path: dist\*
| Normalize yaml indentation in Appveyor config | Normalize yaml indentation in Appveyor config
| YAML | bsd-3-clause | cherrypy/cherrypy,Safihre/cherrypy,cherrypy/cherrypy,Safihre/cherrypy |
5668cf5a6c06432bbcdcc866ea3023a115770527 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- checkout
- run: node --version
- run: git status
- run: yarn install
- run: git status
- deploy:
name: Maybe Deploy
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
echo "deploy"
fi
| version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- checkout
- run: node --version
- run: git status
- run: yarn install --frozen-lockfile
- run: git status
- deploy:
name: Maybe Deploy
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
echo "deploy"
fi
| Use --frozen-lockfile as it is ci context | Use --frozen-lockfile as it is ci context
| YAML | mit | stipsan/stipsan.me |
3fdd9eef1f3c6828cdc3867cc94de2424213a2f8 | appveyor.yml | appveyor.yml | init:
- ps: echo $env:TOXENV
- ps: ls C:\Python*
cache:
- '%LOCALAPPDATA%\pip\Cache'
environment:
fast_finish: true
matrix:
- TOXENV: 'py27'
TOXPYTHON: C:\Python27\python.exe
PYTHON_HOME: C:\Python27
PYTHON_VERSION: '2.7'
PYTHON_ARCH: '32'
- TOXENV: 'py36'
TOXPYTHON: C:\Python36\python.exe
PYTHON_HOME: C:\Python36
PYTHON_VERSION: '3.6'
PYTHON_ARCH: '32'
- TOXENV: 'lint'
TOXPYTHON: C:\Python27\python.exe
PYTHON_HOME: C:\Python27
PYTHON_VERSION: '2.7'
PYTHON_ARCH: '32'
matrix:
fast_finish: true
install:
- 'git submodule update --init --recursive'
- '%PYTHON_HOME%\Scripts\pip --version'
- '%PYTHON_HOME%\Scripts\pip install tox'
- '%PYTHON_HOME%\Scripts\tox --version'
- '%PYTHON_HOME%\Scripts\virtualenv --version'
build: off
test_script:
- '%PYTHON_HOME%\Scripts\tox -e %TOXENV%'
| init:
- ps: echo $env:TOXENV
- ps: ls C:\Python*
cache:
- '%LOCALAPPDATA%\pip\Cache'
clone_depth: 5
environment:
fast_finish: true
matrix:
- TOXENV: 'py27'
TOXPYTHON: C:\Python27\python.exe
PYTHON_HOME: C:\Python27
PYTHON_VERSION: '2.7'
PYTHON_ARCH: '32'
- TOXENV: 'py36'
TOXPYTHON: C:\Python36\python.exe
PYTHON_HOME: C:\Python36
PYTHON_VERSION: '3.6'
PYTHON_ARCH: '32'
- TOXENV: 'lint'
TOXPYTHON: C:\Python27\python.exe
PYTHON_HOME: C:\Python27
PYTHON_VERSION: '2.7'
PYTHON_ARCH: '32'
matrix:
fast_finish: true
install:
- 'git submodule update --init --recursive'
- '%PYTHON_HOME%\Scripts\pip --version'
- '%PYTHON_HOME%\Scripts\pip install tox'
- '%PYTHON_HOME%\Scripts\tox --version'
- '%PYTHON_HOME%\Scripts\virtualenv --version'
build: off
test_script:
- '%PYTHON_HOME%\Scripts\tox -e %TOXENV%'
| Clone git depth of 5 | Appveyor: Clone git depth of 5
| YAML | mit | ManrajGrover/halo,manrajgrover/halo |
7d9bb4df44e9ef998f69a60f055a62262ad878d4 | .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.9.1@sha256:aa37beb40c74e6d1bdad53dea624685f86b28ac9f159934691923fb534286a68
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- cache-{{ checksum "Pipfile.lock" }}
- cache-
- run:
name: Install dependencies
command: |
python3 -m venv .venv
pip install --user pipenv
pipenv sync --dev
- save_cache:
key: cache-{{ checksum "Pipfile.lock" }}
paths:
- ~/.local
- ~/.cache
- run:
name: run tests
command: |
pipenv run flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID='1234'
export AWS_SECRET_ACCESS_KEY='5678'
pipenv run 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.9.1@sha256:3aafd88b18f7a5a6ca5c188ec70c6bbdba76cd66df3847032d23e5f950d59601
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- cache-{{ checksum "Pipfile.lock" }}
- cache-
- run:
name: Install dependencies
command: |
python3 -m venv .venv
pip install --user pipenv
pipenv sync --dev
- save_cache:
key: cache-{{ checksum "Pipfile.lock" }}
paths:
- ~/.local
- ~/.cache
- run:
name: run tests
command: |
pipenv run flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID='1234'
export AWS_SECRET_ACCESS_KEY='5678'
pipenv run python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
| Update circleci/python:3.9.1 Docker digest to 3aafd88 | Update circleci/python:3.9.1 Docker digest to 3aafd88
| YAML | bsd-3-clause | kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler |
5e1cd2406d4c14a649b12eb6cd701e13a4222703 | appveyor.yml | appveyor.yml | version: "#{build}"
os: Visual Studio 2017
cache:
- node_modules
environment:
matrix:
- nodejs_version: 4
- nodejs_version: 6
- nodejs_version: 8
platform:
- x64
matrix:
fast_finish: true
init:
- git config --global core.autocrlf input
branches:
only:
- master
skip_tags: true
clone_depth: 25
build: off
install:
- ps: Install-Product node $env:nodejs_version
- ver && node --version && npm --version
- npm install
test_script:
- npm run -s compile
- npm run -s test
| version: "#{build}"
os: Visual Studio 2017
cache:
- node_modules
environment:
matrix:
- nodejs_version: 6
- nodejs_version: 8
platform:
- x64
matrix:
fast_finish: true
init:
- git config --global core.autocrlf input
branches:
only:
- master
skip_tags: true
clone_depth: 25
build: off
install:
- ps: Install-Product node $env:nodejs_version
- ver && node --version && npm --version
- npm install
test_script:
- npm run -s compile
- npm run -s test
| Fix sporadic perm issue by removing npm v2 test from win build. | Fix sporadic perm issue by removing npm v2 test from win build.
| YAML | mpl-2.0 | forthright/vile-stat |
891f6ad401539fd77d015583981016cf7b01d312 | .circleci/config.yml | .circleci/config.yml | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
general:
branches:
ignore:
- gh-pages
workflows:
version: 2
test_build:
jobs:
- build
- test
jobs:
build:
docker:
- image: circleci/node:8.9.4
steps:
- checkout
- run: npm install
- run: npm run lint
test:
docker:
- image: circleci/node:8.9.4
- image: bouncestorage/swift-aio
steps:
- run: grep aufs /proc/filesystems
- run: ps auxw
- checkout
- run: cp tests/test.config.circle-ci.js tests/test.config.js
- run: npm install
- run: npm test
machine:
timezone:
America/Los_Angeles
docker:
version: latest
test:
pre:
- docker build -t bouncestorage/swift-aio
- sudo fallocate -l 10G MyDrive.img
- sudo mkfs -t aufs /tmp/swift_fs.img
- sudo docker run -P -v /tmp/swift_fs.img:/swift/nodes -t bouncestorage/swift-aio | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
general:
branches:
ignore:
- gh-pages
workflows:
version: 2
test_build:
jobs:
- build
- test
jobs:
build:
docker:
- image: circleci/node:8.9.4
steps:
- checkout
- run: npm install
- run: npm run lint
test:
docker:
- image: circleci/node:8.9.4
- image: bouncestorage/swift-aio
steps:
- run: grep aufs /proc/filesystems
- run: ps auxw
- checkout
- run: cp tests/test.config.circle-ci.js tests/test.config.js
- run: npm install
- run: npm test
machine:
timezone:
America/Los_Angeles
docker:
version: latest
test:
pre:
- docker build -t bouncestorage/swift-aio
- sudo fallocate -l 10G /tmp/swift_fs.img
- sudo mkfs -t aufs /tmp/swift_fs.img
- sudo docker run -P -v /tmp/swift_fs.img:/swift/nodes -t bouncestorage/swift-aio | Create a aus virtual partition | Create a aus virtual partition
| YAML | mit | Tezirg/os2 |
f977b084c139146830f60ecb19e32452aabf64bb | appveyor.yml | appveyor.yml | version: 1.1.{build}
os: Visual Studio 2015
environment:
BOOST_ROOT: C:\Libraries\boost_1_59_0
BOOST_LIBDIR: C:\Libraries\boost_1_59_0\stage\lib
platform:
- Win32
- x64
configuration:
- Debug
- Release
install:
- cmd: cmake --help
- cmd: msbuild /version
clone_folder: C:\projects\json-voorhees
before_build:
- cmd: cd C:\projects\json-voorhees
- cmd: md build
- cmd: cd build
- cmd: if "%platform%"=="Win32" cmake -G "Visual Studio 14" -DCMAKE_BUILD_TYPE=%configuration% -DBOOST_ROOT="%BOOST_ROOT%" -DBOOST_LIBRARYDIR="%BOOST_LIBRARYDIR%" -DBoost_USE_STATIC_LIBS="ON" ..
- cmd: if "%platform%"=="x64" cmake -G "Visual Studio 14 Win64" -DCMAKE_BUILD_TYPE=%configuration% -DBOOST_ROOT="%BOOST_ROOT%" -DBOOST_LIBRARYDIR="%BOOST_LIBRARYDIR%" -DBoost_USE_STATIC_LIBS="ON" ..
build:
project: C:\projects\json-voorhees\build\json-voorhees.sln
test_script:
#- cmd: C:\projects\json-voorhees\build\jsonv-tests
| version: 1.1.{build}
os: Visual Studio 2015
environment:
BOOST_ROOT: C:\Libraries\boost_1_59_0
BOOST_LIBDIR: C:\Libraries\boost_1_59_0\stage\lib
platform:
- Win32
- x64
configuration:
- Debug
- Release
install:
- cmd: cmake --help
#- cmd: msbuild /version
clone_folder: C:\projects\json-voorhees
before_build:
- cmd: cd C:\projects\json-voorhees\vs2015
- cmd: nuget restore
#- cmd: cd C:\projects\json-voorhees
#- cmd: md build
#- cmd: cd build
#- cmd: if "%platform%"=="Win32" cmake -G "Visual Studio 14" -DCMAKE_BUILD_TYPE=%configuration% -DBOOST_ROOT="%BOOST_ROOT%" -DBOOST_LIBRARYDIR="%BOOST_LIBRARYDIR%" -DBoost_USE_STATIC_LIBS="ON" ..
#- cmd: if "%platform%"=="x64" cmake -G "Visual Studio 14 Win64" -DCMAKE_BUILD_TYPE=%configuration% -DBOOST_ROOT="%BOOST_ROOT%" -DBOOST_LIBRARYDIR="%BOOST_LIBRARYDIR%" -DBoost_USE_STATIC_LIBS="ON" ..
build:
project: C:\projects\json-voorhees\vs2015\JsonVoorhees.sln
#project: C:\projects\json-voorhees\build\json-voorhees.sln
test_script:
#- cmd: C:\projects\json-voorhees\build\jsonv-tests
| Use the built-in Visual Studio solution. | AppVeyor: Use the built-in Visual Studio solution.
| YAML | apache-2.0 | venediktov/json-voorhees,venediktov/json-voorhees,tgockel/json-voorhees,tgockel/json-voorhees |
8cad0d595f427854008f4ab809f77f09b9ee3351 | pubspec.yaml | pubspec.yaml | name: wabbit
version: 0.1.0
authors:
- TrainerGuy22 <zeusintraining@gmail.com>
- samrg472 <samrg472@gmail.com>
description: A simple IRC bouncer written in Dart, with most functionality provided through plugins.
homepage: https://github.com/wabbitbnc
environment:
sdk: '>=1.5.3'
dependencies:
args: '>=0.11.0+1 <0.12.0'
event_dispatcher: '>=0.1.0 <0.2.0'
plugins: '>=1.0.1 <2.0.0'
dev_dependencies:
grinder: '>=0.5.4 <0.6.0'
| name: wabbit
version: 0.1.0
authors:
- TrainerGuy22 <zeusintraining@gmail.com>
- samrg472 <samrg472@gmail.com>
description: A simple IRC bouncer written in Dart, with most functionality provided through plugins.
homepage: https://github.com/wabbitbnc
environment:
sdk: '>=1.5.8'
dependencies:
args: '>=0.12.0 <0.13.0'
event_dispatcher: '>=0.1.0 <0.2.0'
plugins: '>=1.0.1 <2.0.0'
dev_dependencies:
grinder: '>=0.5.4 <0.6.0'
| Update 'args' dependency and make the SDK constraint >=1.5.8 | Update 'args' dependency and make the SDK constraint >=1.5.8
| YAML | mit | wabbitbnc/wabbit |
75d8453aa5e505851b1458dbdddda525d3b72fbb | pubspec.yaml | pubspec.yaml | name: pub
publish_to: none
dependencies:
# Note: Pub's test infrastructure assumes that any dependencies used in tests
# will be hosted dependencies.
analyzer: ^0.32.0
args: ^1.4.1
async: ^2.0.0
collection: ^1.8.0
crypto: ">=1.0.0 <3.0.0"
http: ^0.11.0
http_multi_server: ">=1.0.0 <3.0.0"
http_retry: ^0.1.1
http_throttle: ^1.0.0
meta: ^1.1.0
oauth2: ^1.0.0
package_config: ^1.0.0
package_resolver: ^1.0.0
path: ^1.2.0
pool: ^1.0.0
pub_semver: ^1.4.0
shelf: ^0.7.0
source_span: ^1.4.0
stack_trace: ^1.0.0
yaml: ^2.0.0
dev_dependencies:
build_runner: ^0.10.0
build_test: ^0.10.0
build_vm_compilers: ^0.1.0
shelf_test_handler: ^1.0.0
test: ^1.3.0
test_descriptor: ^1.0.0
test_process: ^1.0.0
environment:
sdk: ">=2.0.0-dev.61.0 <3.0.0"
| name: pub
publish_to: none
environment:
sdk: ">=2.0.0 <3.0.0"
dependencies:
# Note: Pub's test infrastructure assumes that any dependencies used in tests
# will be hosted dependencies.
analyzer: ^0.33.0
args: ^1.4.1
async: ^2.0.0
collection: ^1.8.0
crypto: ">=1.0.0 <3.0.0"
http: ^0.11.0
http_multi_server: ">=1.0.0 <3.0.0"
http_retry: ^0.1.1
http_throttle: ^1.0.0
meta: ^1.1.0
oauth2: ^1.0.0
package_config: ^1.0.0
package_resolver: ^1.0.0
path: ^1.2.0
pool: ^1.0.0
pub_semver: ^1.4.0
shelf: ^0.7.0
source_span: ^1.4.0
stack_trace: ^1.0.0
yaml: ^2.0.0
dev_dependencies:
build_runner: ^1.0.0
build_test: ^0.10.0
build_vm_compilers: ^0.1.0
shelf_test_handler: ^1.0.0
test: ^1.3.0
test_descriptor: ^1.0.0
test_process: ^1.0.0
| Update all of the obvious dependencies | Update all of the obvious dependencies
| YAML | bsd-3-clause | dart-lang/pub,dart-lang/pub |
5c7c04bcd003426381c5b8f9d2feac2248d6f7f1 | appveyor.yml | appveyor.yml | build:
verbosity: detailed
build_script:
- cmd: .\gradlew.bat assemble --no-daemon
test_script:
- cmd: .\gradlew.bat check --no-daemon -Ptest.gradle-versions=4.5
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
on_success:
- cmd: if exist "%USERPROFILE%\.gradle\caches\modules-2\modules-2.lock" del /Q "%USERPROFILE%\.gradle\caches\modules-2\modules-2.lock"
- cmd: for /D %%d in ("%USERPROFILE%\.gradle\caches\*") do if exist "%%d\plugin-resolution" rmdir /S /Q "%%d\plugin-resolution"
cache:
- '%USERPROFILE%\.gradle\caches -> build.gradle.kts'
- '%USERPROFILE%\.gradle\wrapper -> gradle\wrapper\gradle-wrapper.properties'
| build:
verbosity: detailed
build_script:
- cmd: .\gradlew.bat assemble --no-daemon
test_script:
- cmd: .\gradlew.bat check --no-daemon -Ptest.gradle-versions=4.5
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
- JAVA_HOME: C:\Program Files\Java\jdk9
on_success:
- cmd: if exist "%USERPROFILE%\.gradle\caches\modules-2\modules-2.lock" del /Q "%USERPROFILE%\.gradle\caches\modules-2\modules-2.lock"
- cmd: for /D %%d in ("%USERPROFILE%\.gradle\caches\*") do if exist "%%d\plugin-resolution" rmdir /S /Q "%%d\plugin-resolution"
cache:
- '%USERPROFILE%\.gradle\caches -> build.gradle.kts'
- '%USERPROFILE%\.gradle\wrapper -> gradle\wrapper\gradle-wrapper.properties'
| Test with JDK 9 on AppVeyor | Test with JDK 9 on AppVeyor
| YAML | apache-2.0 | tbroyer/gradle-apt-plugin,tbroyer/gradle-apt-plugin |
4b09db55583aa1f10d7188045b85b3341e494961 | appveyor.yml | appveyor.yml | init:
tzutil /s "W. Europe Standard Time"
before_build:
cmd: nuget restore
build:
project: FatturaElettronica.sln
verbosity: minimal | init:
tzutil /s "W. Europe Standard Time"
image: Visual Studio 2017
before_build:
cmd: nuget restore
build:
project: FatturaElettronica.sln
verbosity: minimal
| Make builds run on VS2017 on AppVeyor | Make builds run on VS2017 on AppVeyor
| YAML | bsd-3-clause | FatturaElettronicaPA/FatturaElettronicaPA |
3fe3a906ccd1d6b5447e37be9d6b6f3757ad373e | pubspec.yaml | pubspec.yaml | name: intl
version: 0.17.0-nullsafety-dev
homepage: https://github.com/dart-lang/intl
description: >-
Contains code to deal with internationalized/localized messages, date and
number formatting and parsing, bi-directional text, and other
internationalization issues.
environment:
# This must remain a tight constraint until nnbd is stable
sdk: '>=2.11.0-180.0.dev <2.11.0'
dependencies:
clock: ^1.0.1
path: ^1.8.0-nullsafety.1
dev_dependencies:
fixnum: '>=0.9.0 <0.11.0'
test: ^1.16.0-nullsafety.4
dependency_overrides:
clock:
git: https://github.com/dart-lang/clock
fixnum:
git: https://github.com/dart-lang/fixnum
| name: intl
version: 0.17.0-nullsafety-dev
homepage: https://github.com/dart-lang/intl
description: >-
Contains code to deal with internationalized/localized messages, date and
number formatting and parsing, bi-directional text, and other
internationalization issues.
environment:
# This must remain a tight constraint until nnbd is stable
sdk: '>=2.11.0-180.0.dev <2.11.0'
dependencies:
clock: ^1.1.0-nullsafety.1
path: ^1.8.0-nullsafety.1
dev_dependencies:
fixnum: '>=0.9.0 <0.11.0'
test: ^1.16.0-nullsafety.4
dependency_overrides:
fixnum:
git: https://github.com/dart-lang/fixnum
| Update clock dependency to null-safe version | Update clock dependency to null-safe version
PiperOrigin-RevId: 337940704
| YAML | bsd-3-clause | dart-lang/intl |
fd24063535712a9ab7cdda3ba625e9f38844815d | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
machine: true
resource_class: large
branches:
ignore:
- gh-pages
steps:
- checkout
- run:
name: Build Docker image
command: |
docker pull insighttoolkit/itk-js:latest
./test/Docker/build.sh
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push insighttoolkit/itk-js:latest
fi
- run:
name: Install Node packages
command: |
npm install
- run:
name: Build
command: |
npm run build
- run:
name: Test
command: |
google-chrome --version
npm run test
- deploy:
name: Publish docs
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
git config --global user.name "Circle CI"
git config --global user.email "robot@itk.org"
npm run doc:publish
fi
| version: 2
jobs:
build:
machine: true
resource_class: large
branches:
ignore:
- gh-pages
steps:
- checkout
- run:
name: Build Docker image
command: |
docker pull insighttoolkit/itk-js:latest
./src/Docker/build.sh
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push insighttoolkit/itk-js:latest
fi
- run:
name: Install Node packages
command: |
npm install
- run:
name: Build
command: |
npm run build
- run:
name: Test
command: |
google-chrome --version
npm run test
- deploy:
name: Publish docs
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
git config --global user.name "Circle CI"
git config --global user.email "robot@itk.org"
npm run doc:publish
fi
| Update location of the Docker image build script | ci(CircleCI): Update location of the Docker image build script
| YAML | apache-2.0 | InsightSoftwareConsortium/ITKBridgeJavaScript,thewtex/ITKBridgeJavaScript,InsightSoftwareConsortium/ITKBridgeJavaScript,thewtex/ITKBridgeJavaScript,InsightSoftwareConsortium/ITKBridgeJavaScript,thewtex/ITKBridgeJavaScript |
1aee8d733915b0df38d2ab4ce867528190a00910 | .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.2@sha256:5438aae4978f36105867129e6b8f876259fa65a9a85c79c80a65bcea73c06a50
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.2@sha256:99a1280d7ca0c4ba48c2f958b1e60a537016e4eac5373da9c69a016b0861417b
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.2 Docker digest to 99a1280 | Update circleci/python:3.7.2 Docker digest to 99a1280 | YAML | bsd-3-clause | kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler |
3cc2ceaf8db11c95e3fdc48529e17a1eb2e375e3 | pubspec.yaml | pubspec.yaml | name: redux_thunk
author: Brian Egan <brian@brianegan.com>
description: A Redux.dart Middleware that allows you to dispatch functions that perform async work as actions.
homepage: https://github.com/brianegan/redux_thunk
version: 0.4.0
environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=2.0.0 <3.0.0"
dependencies:
redux: ">=5.0.0 <6.0.0"
dev_dependencies:
test: ^1.16.5
pedantic: ^1.11.0
| name: redux_thunk
description: A Redux.dart Middleware that allows you to dispatch functions that perform async work as actions.
homepage: https://github.com/brianegan/redux_thunk
version: 0.4.0
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
redux: ">=5.0.0 <6.0.0"
dev_dependencies:
test: ^1.16.5
pedantic: ^1.11.0
| Remove Flutter dependency in environment | Remove Flutter dependency in environment
| YAML | mit | brianegan/redux_thunk |
d529aa643c4154d5861aaf2afd2a511475ef468d | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: sicz/dockerspec
environment:
- MAKEFLAGS=--no-print-directory
- RSPEC_FORMAT=doc
steps:
- checkout
- run:
name: Checkout make files
command: |
cd ..
curl -sSL https://github.com/SICZ/Mk/archive/master.tar.gz | tar -xzf -
mv Mk-master Mk
- setup_remote_docker:
version: 17.06.0-ce
- run:
name: Pull Docker images
command: |
make docker-pull-baseimage
make docker-pull-image || true
make docker-pull-dependencies
- run:
name: sicz/dockerspec:latest
command: |
make ci
- deploy:
name: Push images to the Docker Hub
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u ${DOCKER_HUB_USER} -p ${DOCKER_HUB_PASSWD}
make docker-push
fi
| version: 2
jobs:
build:
docker:
- image: sicz/dockerspec
environment:
- MAKEFLAGS=--no-print-directory
- RSPEC_FORMAT=doc
steps:
- checkout
- run:
name: Checkout make files
command: |
cd ..
curl -sSL https://github.com/SICZ/Mk/archive/master.tar.gz | tar -xzf -
mv Mk-master Mk
- setup_remote_docker:
version: 17.11.0-ce
- run:
name: Pull Docker images
command: |
make docker-pull-baseimage
make docker-pull-image || true
make docker-pull-dependencies
- run:
name: sicz/dockerspec:latest
command: |
make ci
- deploy:
name: Push images to the Docker Hub
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u ${DOCKER_HUB_USER} -p ${DOCKER_HUB_PASSWD}
make docker-push
fi
| Upgrade CircleCI docker version to 17.11.0-ce | Upgrade CircleCI docker version to 17.11.0-ce
| YAML | apache-2.0 | sicz/docker-dockerspec |
2d60ae1b15094a8b77f7323d8b47e8777e96d348 | appveyor.yml | appveyor.yml | environment:
GH_TOKEN:
secure: 6V8UzhSBNiXKcwNF1cTFaqTZaX/YVUWutdbluQVdXPlUn1u9G+cd1XTgyZQDmD+4
matrix:
- node_js: 8.6
platform:
- x64
# Currently cause bad access when initializing module.
# - x86
build: off
install:
- ps: Install-Product node $env:node_js $env:platform
- appveyor-retry call yarn install
test_script:
- yarn test
deploy_script:
- IF "%appveyor_repo_tag%"=="true" yarn run release
| environment:
GH_TOKEN:
secure: 6V8UzhSBNiXKcwNF1cTFaqTZaX/YVUWutdbluQVdXPlUn1u9G+cd1XTgyZQDmD+4
matrix:
- node_js: 8.6
platform:
- x64
- x86
matrix:
allow_failures:
# Problem: bad access when initializing module.
- platform: x86
build: off
install:
- ps: Install-Product node $env:node_js $env:platform
- appveyor-retry call yarn install
test_script:
- yarn test
deploy_script:
- IF "%appveyor_repo_tag%"=="true" yarn run release
| Build on win32/ia32, but allow failure. | Build on win32/ia32, but allow failure.
| YAML | mit | rolftimmermans/zeromq-ng,rolftimmermans/zeromq-ng |
83989ba07072538ffd09e2c8f45366ae9c103c18 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/barnybug/cli53
steps:
- checkout
- run: make deps test-coverage
release:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/barnybug/cli53
steps:
- checkout
- run:
command: |
mkdir -p $GOPATH/bin && wget -q https://github.com/barnybug/cli53/releases/download/0.6.0/upx -O $GOPATH/bin/upx && chmod +x $GOPATH/bin/upx
- run: curl -sL https://git.io/goreleaser | VERSION=v0.34.2 bash
workflows:
version: 2
build-release:
jobs:
- build:
filters:
tags:
only: /^\d+\.\d+\.\d+$/
- release:
requires: [build]
filters:
branches:
ignore: /.*/
tags:
only: /^\d+\.\d+\.\d+$/
| version: 2
jobs:
build:
docker:
- image: circleci/golang:1.11
working_directory: /go/src/github.com/barnybug/cli53
steps:
- checkout
- run: make deps test-coverage
release:
docker:
- image: circleci/golang:1.11
working_directory: /go/src/github.com/barnybug/cli53
steps:
- checkout
- run:
command: |
mkdir -p $GOPATH/bin && wget -q https://github.com/barnybug/cli53/releases/download/0.6.0/upx -O $GOPATH/bin/upx && chmod +x $GOPATH/bin/upx
- run: curl -sL https://git.io/goreleaser | VERSION=v0.34.2 bash
workflows:
version: 2
build-release:
jobs:
- build:
filters:
tags:
only: /^\d+\.\d+\.\d+$/
- release:
requires: [build]
filters:
branches:
ignore: /.*/
tags:
only: /^\d+\.\d+\.\d+$/
| Update build golang to 1.11 | Update build golang to 1.11
| YAML | mit | barnybug/cli53 |
90fc8d45e0c46b6b9c582001e1ecd6968aa25e0c | appveyor.yml | appveyor.yml | # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
#node.js
- nodejs_version: 0.10
- nodejs_version: 0.11
- nodejs_version: 0.12
#io.js
- nodejs_version: 2.5.0
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- npm -g install npm@2
- set PATH=%APPDATA%\npm;%PATH%
- npm install -g gulp
- npm install
build: off
test_script:
- node --version
- npm --version
- ps: gulp test
- cmd: gulp test
| # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
#node.js
- nodejs_version: 0.10
- nodejs_version: 0.11
- nodejs_version: 0.12
#io.js
- nodejs_version: 2.5.0
install:
- ps: Install-Product node $env:nodejs_version x64
- npm -g install npm@2
- set PATH=%APPDATA%\npm;%PATH%
- npm install -g gulp
- npm install
build: off
test_script:
- node --version
- npm --version
- ps: gulp test
- cmd: gulp test
| Use Install-Product instead of Update-NodeJsInstallation | Use Install-Product instead of Update-NodeJsInstallation
| YAML | apache-2.0 | resin-io/capitano |
9aa005dcf52ef516ca7ab954ad448b9e89f4d955 | appveyor.yml | appveyor.yml | # http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf true
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.10"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: Install-Product node $env:nodejs_version
# Install PhantomJS
- cinst PhantomJS -Version 1.9.8
- set path=%path%;C:\tools\PhantomJS\
- dir C:\tools\PhantomJS
# Typical npm stuff.
- md C:\nc
- npm install -g npm@^2
# Workaround https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows
- set PATH=%APPDATA%\npm;%PATH%
- npm config set cache C:\nc
- npm version
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- npm version
- cmd: npm run-script test-all
# Don't actually build.
build: off
# Set build version format here instead of in the admin panel.
version: "{build}"
| # http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf true
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: Install-Product node $env:nodejs_version
# Install PhantomJS
- cinst PhantomJS -y -Version 1.9.8
- set path=%path%;C:\tools\PhantomJS\
- dir C:\tools\PhantomJS
# Typical npm stuff.
- md C:\nc
- npm install -g npm@^2
# Workaround https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows
- set PATH=%APPDATA%\npm;%PATH%
- npm config set cache C:\nc
- npm version
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- npm version
- cmd: npm run-script test-all
# Don't actually build.
build: off
# Set build version format here instead of in the admin panel.
version: "{build}"
| Use node 0.12 on Windows CI | Use node 0.12 on Windows CI
Use node 0.12 on Windows CI and fix chocolatey install deprecation
| YAML | mit | blimmer/ember-cli,raytiley/ember-cli,josemarluedke/ember-cli,williamsbdev/ember-cli,code0100fun/ember-cli,ianstarz/ember-cli,patocallaghan/ember-cli,cibernox/ember-cli,tobymarsden/ember-cli,ballPointPenguin/ember-cli,seawatts/ember-cli,code0100fun/ember-cli,airportyh/ember-cli,tsing80/ember-cli,nathanhammond/ember-cli,Turbo87/ember-cli,beatle/ember-cli,pangratz/ember-cli,asakusuma/ember-cli,acorncom/ember-cli,ember-cli/ember-cli,joaohornburg/ember-cli,EricSchank/ember-cli,fpauser/ember-cli,kamalaknn/ember-cli,alexdiliberto/ember-cli,mike-north/ember-cli,jcope2013/ember-cli,marcioj/ember-cli,romulomachado/ember-cli,bevacqua/ember-cli,HeroicEric/ember-cli,alexdiliberto/ember-cli,johnotander/ember-cli,jasonmit/ember-cli,makepanic/ember-cli,josemarluedke/ember-cli,abuiles/ember-cli,josemarluedke/ember-cli,johnotander/ember-cli,tobymarsden/ember-cli,mixonic/ember-cli,joaohornburg/ember-cli,pangratz/ember-cli,rodyhaddad/ember-cli,sivakumar-kailasam/ember-cli,joaohornburg/ember-cli,elwayman02/ember-cli,trabus/ember-cli,seanpdoyle/ember-cli,rot26/ember-cli,dukex/ember-cli,jayphelps/ember-cli,michael-k/ember-cli,mike-north/ember-cli,mohlek/ember-cli,lazybensch/ember-cli,jonathanKingston/ember-cli,mixonic/ember-cli,trabus/ember-cli,rodyhaddad/ember-cli,lancedikson/ember-cli,olegdovger/ember-cli,pzuraq/ember-cli,eccegordo/ember-cli,pzuraq/ember-cli,ef4/ember-cli,taras/ember-cli,EricSchank/ember-cli,noslouch/ember-cli,thoov/ember-cli,comlaterra/ember-cli,ballPointPenguin/ember-cli,szines/ember-cli,princeofdarkness76/ember-cli,airportyh/ember-cli,michael-k/ember-cli,patocallaghan/ember-cli,rot26/ember-cli,mixonic/ember-cli,xiujunma/ember-cli,greyhwndz/ember-cli,twokul/ember-cli,marcioj/ember-cli,ianstarz/ember-cli,eccegordo/ember-cli,samselikoff/ember-cli,thoov/ember-cli,pixelhandler/ember-cli,romulomachado/ember-cli,seanpdoyle/ember-cli,trabus/ember-cli,eliotsykes/ember-cli,abuiles/ember-cli,ember-cli/ember-cli,zanemayo/ember-cli,szines/ember-cli,BrianSipple/ember-cli,gmurphey/ember-cli,selvagsz/ember-cli,EricSchank/ember-cli,typeoneerror/ember-cli,rtablada/ember-cli,kellyselden/ember-cli,dosco/ember-cli,maxcal/ember-cli,akatov/ember-cli,calderas/ember-cli,thoov/ember-cli,yaymukund/ember-cli,joaohornburg/ember-cli,gmurphey/ember-cli,pangratz/ember-cli,jayphelps/ember-cli,samselikoff/ember-cli,DanielOchoa/ember-cli,olegdovger/ember-cli,joliss/ember-cli,twokul/ember-cli,xcambar/ember-cli,abuiles/ember-cli,Turbo87/ember-cli,comlaterra/ember-cli,kriswill/ember-cli,tsing80/ember-cli,eliotsykes/ember-cli,joliss/ember-cli,ember-cli/ember-cli,makepanic/ember-cli,beatle/ember-cli,Turbo87/ember-cli,marcioj/ember-cli,jonathanKingston/ember-cli,zanemayo/ember-cli,mohlek/ember-cli,nruth/ember-cli,DanielOchoa/ember-cli,lancedikson/ember-cli,Restuta/ember-cli,dosco/ember-cli,patocallaghan/ember-cli,martndemus/ember-cli,blimmer/ember-cli,bevacqua/ember-cli,beatle/ember-cli,xtian/ember-cli,mohlek/ember-cli,pzuraq/ember-cli,eccegordo/ember-cli,ballPointPenguin/ember-cli,makepanic/ember-cli,gfvcastro/ember-cli,mixonic/ember-cli,HeroicEric/ember-cli,akatov/ember-cli,tsing80/ember-cli,alexdiliberto/ember-cli,selvagsz/ember-cli,eoinkelly/ember-cli,calderas/ember-cli,acorncom/ember-cli,raytiley/ember-cli,searls/ember-cli,raytiley/ember-cli,johanneswuerbach/ember-cli,joliss/ember-cli,samselikoff/ember-cli,lazybensch/ember-cli,runspired/ember-cli,rot26/ember-cli,thoov/ember-cli,tobymarsden/ember-cli,typeoneerror/ember-cli,dosco/ember-cli,michael-k/ember-cli,jonathanKingston/ember-cli,mschinis/ember-cli,ro0gr/ember-cli,greyhwndz/ember-cli,greyhwndz/ember-cli,beatle/ember-cli,jgwhite/ember-cli,martypenner/ember-cli,fpauser/ember-cli,calderas/ember-cli,alefteris/ember-cli,dukex/ember-cli,kriswill/ember-cli,quaertym/ember-cli,princeofdarkness76/ember-cli,johanneswuerbach/ember-cli,kamalaknn/ember-cli,martypenner/ember-cli,johnotander/ember-cli,johanneswuerbach/ember-cli,joostdevries/ember-cli,cibernox/ember-cli,searls/ember-cli,maxcal/ember-cli,eliotsykes/ember-cli,jrjohnson/ember-cli,calderas/ember-cli,mike-north/ember-cli,cibernox/ember-cli,balinterdi/ember-cli,ServiceTo/ember-cli,comlaterra/ember-cli,eoinkelly/ember-cli,Restuta/ember-cli,xtian/ember-cli,ServiceTo/ember-cli,kriswill/ember-cli,ef4/ember-cli,givanse/ember-cli,ServiceTo/ember-cli,jgwhite/ember-cli,yaymukund/ember-cli,ro0gr/ember-cli,seawatts/ember-cli,joostdevries/ember-cli,williamsbdev/ember-cli,typeoneerror/ember-cli,BrianSipple/ember-cli,maxcal/ember-cli,trentmwillis/ember-cli,seanpdoyle/ember-cli,cibernox/ember-cli,taras/ember-cli,eliotsykes/ember-cli,code0100fun/ember-cli,ballPointPenguin/ember-cli,gmurphey/ember-cli,bevacqua/ember-cli,runspired/ember-cli,trabus/ember-cli,johnotander/ember-cli,martndemus/ember-cli,fpauser/ember-cli,kamalaknn/ember-cli,seanpdoyle/ember-cli,noslouch/ember-cli,johanneswuerbach/ember-cli,fpauser/ember-cli,xtian/ember-cli,yaymukund/ember-cli,acorncom/ember-cli,coderly/ember-cli,selvagsz/ember-cli,szines/ember-cli,xiujunma/ember-cli,mschinis/ember-cli,kanongil/ember-cli,alexdiliberto/ember-cli,BrianSipple/ember-cli,romulomachado/ember-cli,twokul/ember-cli,gfvcastro/ember-cli,pixelhandler/ember-cli,Restuta/ember-cli,romulomachado/ember-cli,code0100fun/ember-cli,lancedikson/ember-cli,maxcal/ember-cli,mohlek/ember-cli,lazybensch/ember-cli,akatov/ember-cli,martypenner/ember-cli,trentmwillis/ember-cli,zanemayo/ember-cli,princeofdarkness76/ember-cli,givanse/ember-cli,jasonmit/ember-cli,nruth/ember-cli,martypenner/ember-cli,marcioj/ember-cli,csantero/ember-cli,trentmwillis/ember-cli,quaertym/ember-cli,bevacqua/ember-cli,taras/ember-cli,pzuraq/ember-cli,lancedikson/ember-cli,alefteris/ember-cli,xiujunma/ember-cli,kellyselden/ember-cli,jayphelps/ember-cli,princeofdarkness76/ember-cli,selvagsz/ember-cli,runspired/ember-cli,nathanhammond/ember-cli,airportyh/ember-cli,coderly/ember-cli,buschtoens/ember-cli,pixelhandler/ember-cli,olegdovger/ember-cli,yaymukund/ember-cli,searls/ember-cli,twokul/ember-cli,rot26/ember-cli,raytiley/ember-cli,givanse/ember-cli,quaertym/ember-cli,ef4/ember-cli,kriswill/ember-cli,searls/ember-cli,olegdovger/ember-cli,joostdevries/ember-cli,HeroicEric/ember-cli,pangratz/ember-cli,nruth/ember-cli,sivakumar-kailasam/ember-cli,eccegordo/ember-cli,HeroicEric/ember-cli,raycohen/ember-cli,blimmer/ember-cli,EricSchank/ember-cli,ef4/ember-cli,dukex/ember-cli,ro0gr/ember-cli,raycohen/ember-cli,martndemus/ember-cli,DanielOchoa/ember-cli,tobymarsden/ember-cli,rtablada/ember-cli,kellyselden/ember-cli,eoinkelly/ember-cli,coderly/ember-cli,jasonmit/ember-cli,xiujunma/ember-cli,xcambar/ember-cli,dukex/ember-cli,jcope2013/ember-cli,kategengler/ember-cli,scalus/ember-cli,csantero/ember-cli,nruth/ember-cli,zanemayo/ember-cli,scalus/ember-cli,seawatts/ember-cli,makepanic/ember-cli,gfvcastro/ember-cli,nathanhammond/ember-cli,rtablada/ember-cli,runspired/ember-cli,kategengler/ember-cli,jcope2013/ember-cli,comlaterra/ember-cli,dosco/ember-cli,scalus/ember-cli,josemarluedke/ember-cli,joliss/ember-cli,BrianSipple/ember-cli,xcambar/ember-cli,joostdevries/ember-cli,rodyhaddad/ember-cli,typeoneerror/ember-cli,eoinkelly/ember-cli,kanongil/ember-cli,kamalaknn/ember-cli,alefteris/ember-cli,xcambar/ember-cli,jasonmit/ember-cli,noslouch/ember-cli,tsing80/ember-cli,abuiles/ember-cli,asakusuma/ember-cli,blimmer/ember-cli,jgwhite/ember-cli,balinterdi/ember-cli,quaertym/ember-cli,jcope2013/ember-cli,DanielOchoa/ember-cli,lazybensch/ember-cli,jgwhite/ember-cli,jayphelps/ember-cli,szines/ember-cli,williamsbdev/ember-cli,sivakumar-kailasam/ember-cli,airportyh/ember-cli,ServiceTo/ember-cli,buschtoens/ember-cli,scalus/ember-cli,taras/ember-cli,pixelhandler/ember-cli,ianstarz/ember-cli,trentmwillis/ember-cli,coderly/ember-cli,patocallaghan/ember-cli,seawatts/ember-cli,kanongil/ember-cli,acorncom/ember-cli,samselikoff/ember-cli,nathanhammond/ember-cli,mschinis/ember-cli,ro0gr/ember-cli,noslouch/ember-cli,akatov/ember-cli,ianstarz/ember-cli,csantero/ember-cli,xtian/ember-cli,martndemus/ember-cli,williamsbdev/ember-cli,gmurphey/ember-cli,givanse/ember-cli,rtablada/ember-cli,michael-k/ember-cli,kellyselden/ember-cli,mike-north/ember-cli,sivakumar-kailasam/ember-cli,Restuta/ember-cli,Turbo87/ember-cli,csantero/ember-cli,jonathanKingston/ember-cli,rodyhaddad/ember-cli,alefteris/ember-cli,mschinis/ember-cli,greyhwndz/ember-cli,jrjohnson/ember-cli,gfvcastro/ember-cli,kanongil/ember-cli,elwayman02/ember-cli |
52b914c9fd9191e3ce9fd9b6568607b38e2c5484 | appveyor.yml | appveyor.yml | # Test against this version of Node.js
environment:
matrix:
- nodejs_version: 4.0.0
# Install scripts. (runs after repo cloning)
install:
- cinst firefox
- cinst googlechrome
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- cmd: npm test
# Don't actually build.
build: off
| # Test against this version of Node.js
environment:
matrix:
- nodejs_version: 4.0.0
# Install scripts. (runs after repo cloning)
install:
- cinst firefox
- cinst googlechrome
- cinst javaruntime
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- cmd: npm test
# Don't actually build.
build: off
| Install java on AppVeyor CI. | Install java on AppVeyor CI.
| YAML | apache-2.0 | tobli/browsertime,sitespeedio/browsertime,sitespeedio/browsertime,sitespeedio/browsertime,sitespeedio/browsertime |
081cc6789c7c6d2e831d0c855e6945a0716535fc | appveyor.yml | appveyor.yml | version: 1.0.{build}
image: Visual Studio 2017
install:
- cmd: dotnet --info
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: Any CPU
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
environment:
MYSQL_PWD: Password12!
MYSQL_PATH: C:\Program Files\MySql\MySQL Server 5.7
PGUSER: postgres
PGPASSWORD: Password12!
POSTGRES_PATH: C:\Program Files\PostgreSQL\9.6
init:
- SET PATH=%POSTGRES_PATH%\bin;%MYSQL_PATH%\bin;%PATH%
services:
- mssql2016
- postgresql96
- mysql
build_script:
- mysql -e "create database schematic;" --user=root
- createdb schematic
- ps: ./build.ps1
notifications:
- provider: Email
to:
- '{{commitAuthorEmail}}'
on_build_success: false
on_build_failure: true
on_build_status_changed: true
| version: 1.0.{build}
image: Visual Studio 2017
install:
- cmd: dotnet --info
- cmd: node --version
- ps: Install-Product node $env:nodejs_version
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: Any CPU
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
environment:
nodejs_version: "Current"
MYSQL_PWD: Password12!
MYSQL_PATH: C:\Program Files\MySql\MySQL Server 5.7
PGUSER: postgres
PGPASSWORD: Password12!
POSTGRES_PATH: C:\Program Files\PostgreSQL\9.6
init:
- SET PATH=%POSTGRES_PATH%\bin;%MYSQL_PATH%\bin;%PATH%
services:
- mssql2016
- postgresql96
- mysql
build_script:
- mysql -e "create database schematic;" --user=root
- createdb schematic
- ps: ./build.ps1
notifications:
- provider: Email
to:
- '{{commitAuthorEmail}}'
on_build_success: false
on_build_failure: true
on_build_status_changed: true
| Set node.js to v8+ on AppVeyor. | Set node.js to v8+ on AppVeyor.
| YAML | mit | sjp/Schematic,sjp/SJP.Schema,sjp/Schematic,sjp/Schematic,sjp/Schematic |
6d2bc511c1a85f105bad20be2f30701778c57b28 | appveyor.yml | appveyor.yml | version: 1.0.{build}
branches:
only:
- development/r1.0
- release/r1.0
image: Visual Studio 2015
cache:
- '%USERPROFILE%\.nuget\packages'
build_script:
- ps: >-
.\restore-packages.ps1
$buildVersion = "beta1-$($env:APPVEYOR_BUILD_NUMBER.PadLeft(4, '0'))"
.\build-all.ps1 -BuildVersion $buildVersion
.\package-all.ps1 -BuildVersion $buildVersion
artifacts:
- path: src\artifacts\packages\*.nupkg
test_script:
- ps: >-
.\run-tests.ps1 -BuildVersion
deploy:
provider: NuGet
on:
branch: release/r1.0
api_key:
secure: ljl/r7XeQm+KBzR7pm1OOW4+YcDUsYiWlr9jWFztMh/8/orG4V9ylTi+P1jGME7g
skip_symbols: false
artifact: /.*\.nupkg/
| version: 1.0.{build}
branches:
only:
- development/r1.0
- release/r1.0
image: Visual Studio 2015
cache:
- '%USERPROFILE%\.nuget\packages'
build_script:
- ps: >-
.\restore-packages.ps1
$buildVersion = "beta1-$($env:APPVEYOR_BUILD_NUMBER.PadLeft(4, '0'))"
.\build-all.ps1 -BuildVersion $buildVersion
.\package-all.ps1 -BuildVersion $buildVersion
artifacts:
- path: src\artifacts\packages\*.nupkg
test_script:
- ps: >-
.\run-tests.ps1 -BuildVersion
deploy:
provider: NuGet
on:
branch: release/r1.0
api_key:
secure: ljl/r7XeQm+KBzR7pm1OOW4+YcDUsYiWlr9jWFztMh/8/orG4V9ylTi+P1jGME7g
skip_symbols: false
artifact: /.*\.nupkg$/
| Improve artifact filter for NuGet deployment. | Improve artifact filter for NuGet deployment.
| YAML | mit | tintoy/HTTPlease,tintoy/HTTPlease |
94a118aeb45180a917e53843285336cec1594619 | appveyor.yml | appveyor.yml | skip_commits:
files:
- appveyor.yml
- README.md
branches:
only:
- refresh
version: 1.0.{build}
init:
- ps: |
if ($env:APPVEYOR_REPO_TAG -eq "true")
{
Update-AppveyorBuild -Version "$($env:APPVEYOR_REPO_TAG_NAME.TrimStart("v"))"
}
else
{
Update-AppveyorBuild -Version "0.0.$($env:APPVEYOR_BUILD_NUMBER)"
}
configuration: Release
before_build:
- nuget restore
build:
verbosity: normal
artifacts:
- path: PowerRedis2\bin\$(configuration)\*.dll
| skip_commits:
files:
- appveyor.yml
- README.md
branches:
only:
- refresh
version: 1.0.{build}
init:
- ps: |
if ($env:APPVEYOR_REPO_TAG -eq "true")
{
Update-AppveyorBuild -Version "$($env:APPVEYOR_REPO_TAG_NAME.TrimStart("v"))"
}
else
{
Update-AppveyorBuild -Version "0.0.$($env:APPVEYOR_BUILD_NUMBER)"
}
install:
- cmd: nuget install redis-64 -excludeversion
- cmd: redis-64\tools\redis-server.exe --service-install
- cmd: redis-64\tools\redis-server.exe --service-start
configuration: Release
before_build:
- nuget restore
build:
verbosity: normal
artifacts:
- path: PowerRedis2\bin\$(configuration)\*.dll
| Install redis-server in build environment for future tests | Install redis-server in build environment for future tests
| YAML | mit | JohnFiedler/powerredis |
79af2aea542e749b1ac91c3140e2f1fcf1ac234f | appveyor.yml | appveyor.yml | build: false # Not C# project
environment:
matrix:
- TOXENV: "py35"
- TOXENV: "py36"
- TOXENV: "check"
- TOXENV: "docs"
install:
- C:\Python36\python -m pip install --upgrade tox pip
test_script:
- C:\Python36\python -m tox
| build: false # Not C# project
environment:
matrix:
- TOXENV: "py35"
- TOXENV: "py36"
- TOXENV: "py37"
- TOXENV: "check"
- TOXENV: "docs"
install:
- C:\Python36\python -m pip install --upgrade tox pip
test_script:
- C:\Python36\python -m tox
| Add py37 to AppVeyor as well | Add py37 to AppVeyor as well
| YAML | mit | rougeth/bottery |
0e5c74a8ee6243eaeb16846d8c72a93a2a8acea2 | appveyor.yml | appveyor.yml | # http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "7"
version: "{build}-{branch}"
init:
- git config --global core.longpaths true
clone_depth: 1
matrix:
fast_finish: true
cache:
- node_modules
install:
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
- node --version
- npm --version
- npm run lint
- npm test
build: off
| # http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
version: "{build}-{branch}"
init:
- git config --global core.longpaths true
clone_depth: 1
matrix:
fast_finish: true
cache:
- node_modules
install:
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
- node --version
- npm --version
- npm run lint
- npm test
build: off
| Test with Node.js version 8 instead of 7 | Test with Node.js version 8 instead of 7
| YAML | mit | paazmaya/tarita |
ff22aaa21f4660594afa429962fd7b302fd10714 | appveyor.yml | appveyor.yml | version: 1.0.{build}
os: Visual Studio 2015 RC
before_build:
- nuget restore -verbosity detailed
- git submodule update --init --recursive
install:
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
build:
verbosity: minimal
notifications:
- provider: Email
to: dev-ci@maxmind.com
on_build_success: false
on_build_failure: true
on_build_status_changed: true
| ---
version: '1.0.{build}'
os: Visual Studio 2015 RC
before_build:
- nuget restore -verbosity detailed
- git submodule update --init --recursive
install:
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
build:
- verbosity: minimal
notifications:
- auth_token:
secure: X+ymndzchVeC2LYsehzOt/GEMFfZJeTENeAU9lwNwTuCxBXFJNkuwZLd9joAtHgykHQoYqmEv/nH64+MA6nTlw==
channel: ci
on_build_failure: true
on_build_status_changed: true
on_build_success: false
provider: Slack
- on_build_failure: true
on_build_status_changed: true
on_build_success: false
provider: Email
subject: 'AppVeyor build {{status}}'
to:
- dev-ci@maxmind.com
| Update AppVeyor to send notifiations via Slack & email | Update AppVeyor to send notifiations via Slack & email
| YAML | apache-2.0 | am11/MaxMind-DB-Reader-dotnet,am11/MaxMind-DB-Reader-dotnet,maxmind/MaxMind-DB-Reader-dotnet |
7062708f3967b33dd912e66f6c8ac76068b24a5b | packages/ip/ip.yaml | packages/ip/ip.yaml | homepage: https://github.com/andrewthad/ip#readme
changelog-type: ''
hash: 12451336c9afce8ac24e3a0971740984daeb8066e1a5ad7de572c6a23176f299
test-bench-deps:
bytestring: -any
test-framework: -any
base: -any
text: -any
test-framework-quickcheck2: -any
criterion: -any
ip: -any
QuickCheck: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Library for IP and MAC addresses
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
text: -any
hashable: -any
attoparsec: -any
aeson: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
- '0.5'
author: Andrew Martin
latest: '0.5'
description-type: haddock
description: Please see README.md
license-name: BSD3
| homepage: https://github.com/andrewthad/ip#readme
changelog-type: ''
hash: 4dab88b1eb3a9a37d1b4b5f36ef127e9b053cee168d8f62bc6afc6b8df790a3f
test-bench-deps:
bytestring: -any
test-framework: -any
base: -any
text: -any
test-framework-quickcheck2: -any
criterion: -any
ip: -any
QuickCheck: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Library for IP and MAC addresses
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
text: -any
hashable: -any
attoparsec: -any
aeson: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
- '0.5'
- '0.6.0'
author: Andrew Martin
latest: '0.6.0'
description-type: haddock
description: Please see README.md
license-name: BSD3
| Update from Hackage at 2016-05-23T19:21:52+0000 | Update from Hackage at 2016-05-23T19:21:52+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
95263b0dcaf8526a3dda27320154ca72cda71ab3 | packages/ih/ihs.yaml | packages/ih/ihs.yaml | homepage: https://github.com/minad/ihs
changelog-type: ''
hash: 919f4b399f05d0984d9b6c0f4060bea33ad0fecc356666b6bf1ab8976913c687
test-bench-deps: {}
maintainer: Daniel Mendler <mail@daniel-mendler.de>
synopsis: Interpolated Haskell
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
process: ! '>=1 && <1.6'
all-versions:
- '0.1.0.0'
author: Daniel Mendler <mail@daniel-mendler.de>
latest: '0.1.0.0'
description-type: haddock
description: This abomination allows you to quickly generate text files in a style
similar to ERB from Ruby or PHP. But you stay typesafe!
license-name: PublicDomain
| homepage: https://github.com/minad/ihs
changelog-type: ''
hash: 769f554b62ba62185e172af45a02c2e45a96e78c72c679b55a555cc8b4e857aa
test-bench-deps: {}
maintainer: Daniel Mendler <mail@daniel-mendler.de>
synopsis: Interpolated Haskell
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
process: ! '>=1 && <1.7'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Daniel Mendler <mail@daniel-mendler.de>
latest: '0.1.0.1'
description-type: haddock
description: This abomination allows you to quickly generate text files in a style
similar to ERB from Ruby or PHP. But you stay typesafe!
license-name: PublicDomain
| Update from Hackage at 2017-07-30T08:29:59Z | Update from Hackage at 2017-07-30T08:29:59Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9f3c161cb6bbdb346017965d5ee9527a1889b7c9 | .codeclimate.yml | .codeclimate.yml | engines:
eslint:
enabled: true
channel: "eslint-5"
checks:
ember/no-observers:
enabled: false
ember/no-string-prototype-extensions:
enabled: false
ember/no-controller-access-in-routes:
enabled: false
ember/no-classic-classes:
enabled: false
ember/no-computed-properties-in-native-classes:
enabled: false
ember/require-tagless-components:
enabled: false
ember/no-assignment-of-untracked-properties-used-in-tracking-contexts:
enabled: false
ember/no-side-effects:
enabled: false
duplication:
enabled: true
config:
languages:
javascript:
mass_threshold: 60
fixme:
enabled: true
checks:
TODO:
enabled: false
FIXME:
enabled: false
ratings:
paths:
- "app/**/*"
exclude_paths:
- ".eslintrc.js"
- ".template-lintrc.js"
- "config/tailwindcss-config.js"
- "release/**/*"
- "scripts/**/*"
- "tests/**/*"
| engines:
duplication:
enabled: true
config:
languages:
javascript:
mass_threshold: 60
fixme:
enabled: true
checks:
TODO:
enabled: false
FIXME:
enabled: false
ratings:
paths:
- "app/**/*"
exclude_paths:
- ".eslintrc.js"
- ".template-lintrc.js"
- "config/tailwindcss-config.js"
- "release/**/*"
- "scripts/**/*"
- "tests/**/*"
| Remove eslint from Codeclimate config | Remove eslint from Codeclimate config
Eslint is already running as part of the normal test suite on Travis.
| YAML | mpl-2.0 | 67P/hyperchannel,67P/hyperchannel |
7cf2143ed301389cbb0bd1eafd3099181f904684 | rubocop/rubocop.yml | rubocop/rubocop.yml | require: rubocop-performance
Layout/ArgumentAlignment:
EnforcedStyle: with_fixed_indentation
Layout/ParameterAlignment:
EnforcedStyle: with_fixed_indentation
Layout/FirstArrayElementIndentation:
EnforcedStyle: consistent
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
Metrics/BlockLength:
Exclude:
- 'spec/**/*'
Layout/LineLength:
Max: 100
Severity: refactor
Metrics/ModuleLength:
Exclude:
- 'spec/**/*'
Style/ConditionalAssignment:
EnforcedStyle: assign_inside_condition
IncludeTernaryExpressions: false
Style/Documentation:
Enabled: false
Style/EmptyMethod:
EnforcedStyle: expanded
Style/FrozenStringLiteralComment:
Enabled: false
Style/GuardClause:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/ParenthesesAroundCondition:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Exclude:
- 'Gemfile'
Style/SymbolArray:
EnforcedStyle: brackets
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma
# ---------------------------------------------------
# PENDING COPS: REMOVE AFTER INCORPORATED INTO RUBOCOP
# ---------------------------------------------------
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
| AllCops:
NewCops: enable
require: rubocop-performance
Layout/ArgumentAlignment:
EnforcedStyle: with_fixed_indentation
Layout/ParameterAlignment:
EnforcedStyle: with_fixed_indentation
Layout/FirstArrayElementIndentation:
EnforcedStyle: consistent
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
Metrics/BlockLength:
Exclude:
- 'spec/**/*'
Layout/LineLength:
Max: 100
Severity: refactor
Metrics/ModuleLength:
Exclude:
- 'spec/**/*'
Style/ConditionalAssignment:
EnforcedStyle: assign_inside_condition
IncludeTernaryExpressions: false
Style/Documentation:
Enabled: false
Style/EmptyMethod:
EnforcedStyle: expanded
Style/FrozenStringLiteralComment:
Enabled: false
Style/GuardClause:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/ParenthesesAroundCondition:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Exclude:
- 'Gemfile'
Style/SymbolArray:
EnforcedStyle: brackets
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma
| Enable pending rules by default | Enable pending rules by default
As rubocop continues towards a stable [1.0 release](https://github.com/rubocop-hq/rubocop/milestone/4)
new pending rules continue to be introduced with various new versions.
Now, to be clear, according to their [versioning strategy](https://docs.rubocop.org/rubocop/versioning.html),
new pending rules can and will be introduced even after 1.0.
> Now new cops introduced between major versions are set to a special pending status and are not enabled by default. A warning is emitted if such cops are not explicitly enabled or disabled in the user configuration.
Keeping up with these rules as they're introduced and considering each
independently is, quite frankly, a cat and mouse game that I feel like
we're losing with each rubocop release. However, we are seeing noise in
our applications that use this gem alerting us to this every time these
rules are added.
Yet, given our slow rate of adoption (and perhaps my own annoyances
about seeing the warning messages), it seems that we're not apt to
consider each new cop soon after it's introduced with a new version of
rubocop.
As a result, I'm proposing an approach which will enable all pending
rules by default. I'm considering this not only because of the
alleviated maintenance burden, but also because:
1. When introducing this gem initially, our approach was not to
thoughtfully consider each rule that existed in rubocop. Instead, we
accepted the defaults, and tweaked and changed from there as needed and
necessary.
2. gnar-style is not meant to be dogmatically adhered to. I do not
want, and hope that it's not used, as a gating mechanism for code to be
expected. Instead, they should be hints, suggestions, or reminders, much
like any pull request comment left by a team member might be.
3. Should one of the new rules prove to be something that we disagree
with, we're still welcome to tweak it, just as any other existing rule
in the system. I personally don't feel like we need to treat it
differently because it's new, and that's mostly because of item (2)
above.
| YAML | mit | TheGnarCo/gnar-style,TheGnarCo/gnar-style |
6ec9792423270276ddd13aca0eab29b27565dbae | docker-compose-letsencrypt.yml | docker-compose-letsencrypt.yml | version: '2'
services:
redis:
restart: always
image: redis
volumes:
- ./data:/data/
container_name: redis
command: redis-server --appendonly yes --protected-mode no --save 60 1
frontend:
restart: always
build: ./canarytokens/
image: thinkst/canarytokens
links:
- redis
env_file:
- frontend.env
volumes:
- ./uploads:/uploads/
- log-volume:/logs
container_name: frontend
command: bash -c "rm frontend.pid; twistd -noy frontend.tac --pidfile=frontend.pid"
switchboard:
build: ./canarytokens/
restart: always
image: thinkst/canarytokens
ports:
- "53:53"
- "53:53/udp"
- "25:25"
links:
- redis
env_file:
- switchboard.env
volumes_from:
- frontend
container_name: switchboard
command: bash -c "rm switchboard.pid; twistd -noy switchboard.tac --pidfile=switchboard.pid"
nginx:
restart: always
image: thinkst/certbot-nginx
build: ./certbot-nginx/
ports:
- "80:80"
- "443:443"
links:
- frontend
- switchboard
container_name: nginx
env_file:
- certbot.env
volumes:
log-volume:
| version: '2'
services:
redis:
restart: always
image: redis
volumes:
- ./data:/data/
container_name: redis
command: redis-server --appendonly yes --protected-mode no --save 60 1
frontend:
restart: always
build: ./canarytokens/
image: thinkst/canarytokens
links:
- redis
env_file:
- frontend.env
volumes:
- ./uploads:/uploads/
- log-volume:/logs
container_name: frontend
command: bash -c "rm frontend.pid; twistd -noy frontend.tac --pidfile=frontend.pid"
switchboard:
build: ./canarytokens/
restart: always
image: thinkst/canarytokens
ports:
- "53:53"
- "53:53/udp"
- "25:25"
links:
- redis
environment:
- PROTOCOL=https
env_file:
- switchboard.env
volumes_from:
- frontend
container_name: switchboard
command: bash -c "rm switchboard.pid; twistd -noy switchboard.tac --pidfile=switchboard.pid"
nginx:
restart: always
image: thinkst/certbot-nginx
build: ./certbot-nginx/
ports:
- "80:80"
- "443:443"
links:
- frontend
- switchboard
container_name: nginx
env_file:
- certbot.env
volumes:
log-volume:
| Make all canrytokens.org links in notifications default to using https | Make all canrytokens.org links in notifications default to using https
This commit ensures that all links pointing to canarytokens.org, including the token
management and token history links in notifications (in the case where docker-compose-letsencrypt.yml
is used) are pointing to the secure version of the site(https), by default.
| YAML | bsd-3-clause | thinkst/canarytokens-docker |
2b2ff7ada5e406deab64fc0e729837caea5663da | .github/workflows/golangci-lint.yml | .github/workflows/golangci-lint.yml | name: golangci-lint
on: [push, pull_request]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v1
with:
version: v1.30
| name: golangci-lint
on: [push, pull_request]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.32
| Update to latest version of action | Update to latest version of action
| YAML | isc | oschwald/maxminddb-golang |
efa8f49b3d79274088ef853998b22d9404481728 | .github/workflows/test_and_lint.yml | .github/workflows/test_and_lint.yml | name: Test and Lint on Push and PR
on: [push, pull_request]
jobs:
test:
runs-on: "ubuntu-20.04"
strategy:
matrix:
ruby:
- 2.5
- 2.6
- 2.7
- 3.0
steps:
- uses: actions/checkout@v2
- uses: QuickPay/quickpay-base-action@v2.2
with:
rubocop: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake | name: Test and Lint on Push and PR
on: [push, pull_request]
jobs:
test:
runs-on: "ubuntu-20.04"
strategy:
matrix:
ruby:
- 2.6
- 2.7
- 3.0
- 3.1
steps:
- uses: actions/checkout@v2
- uses: QuickPay/quickpay-base-action@v2.2
with:
rubocop: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake
| Add 3.1 to matrix, and remove EOL 2.5 | Add 3.1 to matrix, and remove EOL 2.5 | YAML | mit | QuickPay/quickpay-ruby-client |
b5ff354d0676fdb875a84d6527fe42661ad6c9d3 | snap/snapcraft.yaml | snap/snapcraft.yaml | name: tesseract
version: git
summary: open source optical character recognition engine
description: |
Tesseract has unicode (UTF-8) support, and can recognize more than 100
languages "out of the box". It can be trained to recognize other languages.
Tesseract supports various output formats: plain-text, hocr(html), pdf.
grade: stable # must be 'stable' to release into candidate/stable channels
confinement: strict
apps:
tesseract:
command: env TESSDATA_PREFIX=$SNAP_USER_COMMON tesseract
plugs: [home]
parts:
tesseract:
source: .
plugin: autotools
build-packages:
- pkg-config
- libpng12-dev
- libjpeg8-dev
- libtiff5-dev
- zlib1g-dev
- libicu-dev
- libpango1.0-dev
- libcairo2-dev
after: [leptonica]
leptonica:
source: https://github.com/DanBloomberg/leptonica/archive/1.74.2.tar.gz
plugin: autotools
| name: tesseract
version: git
summary: open source optical character recognition engine
description: |
Tesseract has unicode (UTF-8) support, and can recognize more than 100
languages "out of the box". It can be trained to recognize other languages.
Tesseract supports various output formats: plain-text, hocr(html), pdf.
grade: stable # must be 'stable' to release into candidate/stable channels
confinement: strict
apps:
tesseract:
command: >
env
TESSDATA_PREFIX=$SNAP_USER_COMMON
tesseract
plugs: [home]
parts:
tesseract:
source: .
plugin: autotools
build-packages:
- pkg-config
- libpng12-dev
- libjpeg8-dev
- libtiff5-dev
- zlib1g-dev
- libicu-dev
- libpango1.0-dev
- libcairo2-dev
after: [leptonica]
leptonica:
source: https://github.com/DanBloomberg/leptonica/archive/1.74.2.tar.gz
plugin: autotools
| Split app. command arguments into separate lines | Split app. command arguments into separate lines
This allows cleaner diffs for future modifications using the YAML's
"folded" block scalar style.
Refer-to: Folded Style - Block Scalar Styles - Block Styles
<http://yaml.org/spec/1.2/spec.html#id2796251>
Signed-off-by: 林博仁(Buo-ren, Lin) <e1a755dad2798d70422023dceee1245c3d6b4517@gmail.com>
| YAML | apache-2.0 | tesseract-ocr/tesseract,jbarlow83/tesseract,UB-Mannheim/tesseract,tesseract-ocr/tesseract,jbarlow83/tesseract,tesseract-ocr/tesseract,stweil/tesseract,UB-Mannheim/tesseract,amitdo/tesseract,stweil/tesseract,jbarlow83/tesseract,UB-Mannheim/tesseract,UB-Mannheim/tesseract,amitdo/tesseract,UB-Mannheim/tesseract,stweil/tesseract,jbarlow83/tesseract,jbarlow83/tesseract,stweil/tesseract,amitdo/tesseract,amitdo/tesseract,amitdo/tesseract,stweil/tesseract,tesseract-ocr/tesseract,tesseract-ocr/tesseract |
d210e0e7aad766caef30f9e9c36f803a4bdd6540 | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm install
- run: tsc --build tsconfig.json
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
publish_branch: publish | name: build
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm install
- run: tsc --build tsconfig.json
- run: mkdir docs/src
- run: cp src/*.ts docs/src
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
publish_branch: publish | Copy ts source files to docs directory to aid debugging. | Copy ts source files to docs directory to aid debugging.
| YAML | mit | mikehadlow/gtr-cof |
0d2af87e0c98908a31581a9f95718fb7a193f98c | .github/workflows/build.yml | .github/workflows/build.yml | on:
push:
branches:
- 'build-*'
tags: '*'
jobs:
build:
if: github.repository == "hashicorp/vagrant-builders"
name: Build Vagrant Installers
runs-on: self-hosted
steps:
- name: Code Checkout
uses: actions/checkout@v1
- name: Build and Release
run: ./.ci/build-packages.sh
working-directory: ${{github.workspace}}
- name: Clean Workspace
if: always()
run: rm -rf ${{ github.workspace }}
| on:
push:
branches:
- 'build-*'
tags: '*'
jobs:
build:
if: github.repository == 'hashicorp/vagrant-builders'
name: Build Vagrant Installers
runs-on: self-hosted
steps:
- name: Code Checkout
uses: actions/checkout@v1
- name: Build and Release
run: ./.ci/build-packages.sh
working-directory: ${{github.workspace}}
- name: Clean Workspace
if: always()
run: rm -rf ${{ github.workspace }}
| Fix string within evaluation to use single quotes | Fix string within evaluation to use single quotes
| YAML | mit | chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers |
d42d6538e9b0a3eff05ff7b86f695521cbe2d7ce | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions wheel
- name: Test with tox
run: |
python setup.py sdist bdist_wheel install
tox
| name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions wheel
- name: Test with tox
run: |
tox
python setup.py sdist bdist_wheel install
| Check setup.py after tox tests | Check setup.py after tox tests
| YAML | unlicense | ttyS15/django-celery-rpc,tumb1er/django-celery-rpc |
acc8a1c015d917860a120c696006ad48ddb26c25 | .github/workflows/percy.yml | .github/workflows/percy.yml | name: Percy Visual Testing
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1
with:
node-version: ${{ matrix.node-version }}
- name: generate HTML
run: |
npm ci
gulp
- name: run percy
run: |
npx percy snapshot dist/
env:
CI: true
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
| name: Percy Visual Testing
on:
pull_request_target:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1
with:
node-version: ${{ matrix.node-version }}
- name: generate HTML
run: |
npm ci
gulp
- name: run percy
run: |
npx percy snapshot dist/
env:
CI: true
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
| Switch Percy to be on pull_request_target | Switch Percy to be on pull_request_target | YAML | mit | Jamesking56/Jamesking56.uk,Jamesking56/Jamesking56.uk |
e559eafa19f12b0c12b5d7d871fe3e059347d41f | rest-api-spec/test/indices.validate_query/10_basic.yaml | rest-api-spec/test/indices.validate_query/10_basic.yaml | ---
"Validate query api":
- do:
indices.create:
index: testing
body:
settings:
number_of_replicas: 0
- do:
cluster.health:
wait_for_status: yellow
- do:
indices.validate_query:
q: query string
- is_true: valid
- do:
indices.validate_query:
body:
query:
invalid_query: {}
- is_false: valid
- do:
indices.validate_query:
explain: true
- is_true: valid
- match: {_shards.failed: 0}
- match: {explanations.0.index: 'testing'}
- match: {explanations.0.explanation: 'ConstantScore(*:*)'}
| ---
"Validate query api":
- do:
indices.create:
index: testing
body:
settings:
number_of_replicas: 0
- do:
cluster.health:
wait_for_status: yellow
- do:
indices.validate_query:
q: query string
- is_true: valid
- do:
indices.validate_query:
body:
query:
invalid_query: {}
- is_false: valid
- do:
indices.validate_query:
explain: true
- is_true: valid
- match: {_shards.failed: 0}
- match: {explanations.0.index: 'testing'}
- match: {explanations.0.explanation: '*:*'}
| Revert "Test: fix removal of e validate_query rewrite YAML test" | Revert "Test: fix removal of e validate_query rewrite YAML test"
This reverts commit e461852548b6ee1cbb18031989af4790f4922f48.
| YAML | apache-2.0 | Helen-Zhao/elasticsearch,wayeast/elasticsearch,slavau/elasticsearch,yanjunh/elasticsearch,MaineC/elasticsearch,nrkkalyan/elasticsearch,AndreKR/elasticsearch,jeteve/elasticsearch,infusionsoft/elasticsearch,luiseduardohdbackup/elasticsearch,himanshuag/elasticsearch,dpursehouse/elasticsearch,jpountz/elasticsearch,C-Bish/elasticsearch,pablocastro/elasticsearch,apepper/elasticsearch,mute/elasticsearch,fekaputra/elasticsearch,sc0ttkclark/elasticsearch,wimvds/elasticsearch,davidvgalbraith/elasticsearch,fernandozhu/elasticsearch,humandb/elasticsearch,Collaborne/elasticsearch,hirdesh2008/elasticsearch,phani546/elasticsearch,Brijeshrpatel9/elasticsearch,vingupta3/elasticsearch,davidvgalbraith/elasticsearch,alexshadow007/elasticsearch,sarwarbhuiyan/elasticsearch,strapdata/elassandra5-rc,infusionsoft/elasticsearch,girirajsharma/elasticsearch,robin13/elasticsearch,easonC/elasticsearch,naveenhooda2000/elasticsearch,vingupta3/elasticsearch,skearns64/elasticsearch,Stacey-Gammon/elasticsearch,acchen97/elasticsearch,gfyoung/elasticsearch,kunallimaye/elasticsearch,kimimj/elasticsearch,shreejay/elasticsearch,xpandan/elasticsearch,YosuaMichael/elasticsearch,ivansun1010/elasticsearch,palecur/elasticsearch,mjason3/elasticsearch,hydro2k/elasticsearch,alexshadow007/elasticsearch,lzo/elasticsearch-1,szroland/elasticsearch,njlawton/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,hanswang/elasticsearch,thecocce/elasticsearch,loconsolutions/elasticsearch,TonyChai24/ESSource,ThalaivaStars/OrgRepo1,Collaborne/elasticsearch,kcompher/elasticsearch,vvcephei/elasticsearch,pablocastro/elasticsearch,tahaemin/elasticsearch,hanswang/elasticsearch,socialrank/elasticsearch,scottsom/elasticsearch,nilabhsagar/elasticsearch,masterweb121/elasticsearch,Rygbee/elasticsearch,huypx1292/elasticsearch,Kakakakakku/elasticsearch,knight1128/elasticsearch,milodky/elasticsearch,SergVro/elasticsearch,wangtuo/elasticsearch,pritishppai/elasticsearch,dylan8902/elasticsearch,HarishAtGitHub/elasticsearch,ESamir/elasticsearch,jeteve/elasticsearch,khiraiwa/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,andrestc/elasticsearch,cnfire/elasticsearch-1,weipinghe/elasticsearch,Charlesdong/elasticsearch,scottsom/elasticsearch,tahaemin/elasticsearch,cnfire/elasticsearch-1,Ansh90/elasticsearch,kubum/elasticsearch,dpursehouse/elasticsearch,nilabhsagar/elasticsearch,TonyChai24/ESSource,ThalaivaStars/OrgRepo1,ZTE-PaaS/elasticsearch,kcompher/elasticsearch,kenshin233/elasticsearch,rhoml/elasticsearch,StefanGor/elasticsearch,wangyuxue/elasticsearch,vingupta3/elasticsearch,18098924759/elasticsearch,vvcephei/elasticsearch,wbowling/elasticsearch,Liziyao/elasticsearch,bestwpw/elasticsearch,SergVro/elasticsearch,Fsero/elasticsearch,jpountz/elasticsearch,Kakakakakku/elasticsearch,linglaiyao1314/elasticsearch,jeteve/elasticsearch,naveenhooda2000/elasticsearch,ckclark/elasticsearch,humandb/elasticsearch,ulkas/elasticsearch,koxa29/elasticsearch,nrkkalyan/elasticsearch,F0lha/elasticsearch,jimczi/elasticsearch,szroland/elasticsearch,tkssharma/elasticsearch,tsohil/elasticsearch,elancom/elasticsearch,jimhooker2002/elasticsearch,umeshdangat/elasticsearch,adrianbk/elasticsearch,pritishppai/elasticsearch,tkssharma/elasticsearch,achow/elasticsearch,andrejserafim/elasticsearch,yanjunh/elasticsearch,kenshin233/elasticsearch,iamjakob/elasticsearch,KimTaehee/elasticsearch,obourgain/elasticsearch,mute/elasticsearch,elasticdog/elasticsearch,kalburgimanjunath/elasticsearch,diendt/elasticsearch,lightslife/elasticsearch,alexbrasetvik/elasticsearch,qwerty4030/elasticsearch,wangtuo/elasticsearch,fekaputra/elasticsearch,Uiho/elasticsearch,nezirus/elasticsearch,Stacey-Gammon/elasticsearch,vroyer/elasticassandra,wittyameta/elasticsearch,ydsakyclguozi/elasticsearch,jeteve/elasticsearch,strapdata/elassandra5-rc,rento19962/elasticsearch,mjhennig/elasticsearch,kcompher/elasticsearch,winstonewert/elasticsearch,ImpressTV/elasticsearch,nknize/elasticsearch,sarwarbhuiyan/elasticsearch,iantruslove/elasticsearch,aglne/elasticsearch,easonC/elasticsearch,episerver/elasticsearch,HonzaKral/elasticsearch,masterweb121/elasticsearch,polyfractal/elasticsearch,yynil/elasticsearch,jango2015/elasticsearch,artnowo/elasticsearch,beiske/elasticsearch,nazarewk/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,vingupta3/elasticsearch,andrestc/elasticsearch,brandonkearby/elasticsearch,spiegela/elasticsearch,polyfractal/elasticsearch,MjAbuz/elasticsearch,springning/elasticsearch,andrestc/elasticsearch,vroyer/elassandra,dongjoon-hyun/elasticsearch,jaynblue/elasticsearch,kaneshin/elasticsearch,phani546/elasticsearch,hirdesh2008/elasticsearch,jimczi/elasticsearch,kevinkluge/elasticsearch,MetSystem/elasticsearch,hechunwen/elasticsearch,yanjunh/elasticsearch,elasticdog/elasticsearch,alexkuk/elasticsearch,HarishAtGitHub/elasticsearch,obourgain/elasticsearch,AshishThakur/elasticsearch,kaneshin/elasticsearch,MjAbuz/elasticsearch,gfyoung/elasticsearch,episerver/elasticsearch,dataduke/elasticsearch,awislowski/elasticsearch,tebriel/elasticsearch,hechunwen/elasticsearch,rmuir/elasticsearch,luiseduardohdbackup/elasticsearch,jimczi/elasticsearch,bawse/elasticsearch,JervyShi/elasticsearch,socialrank/elasticsearch,snikch/elasticsearch,thecocce/elasticsearch,socialrank/elasticsearch,ydsakyclguozi/elasticsearch,gmarz/elasticsearch,vvcephei/elasticsearch,snikch/elasticsearch,trangvh/elasticsearch,masaruh/elasticsearch,hechunwen/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,yuy168/elasticsearch,springning/elasticsearch,tebriel/elasticsearch,thecocce/elasticsearch,sc0ttkclark/elasticsearch,fred84/elasticsearch,Collaborne/elasticsearch,hanswang/elasticsearch,MichaelLiZhou/elasticsearch,MetSystem/elasticsearch,hafkensite/elasticsearch,Chhunlong/elasticsearch,i-am-Nathan/elasticsearch,Helen-Zhao/elasticsearch,szroland/elasticsearch,avikurapati/elasticsearch,kcompher/elasticsearch,jimhooker2002/elasticsearch,queirozfcom/elasticsearch,weipinghe/elasticsearch,Charlesdong/elasticsearch,Rygbee/elasticsearch,kunallimaye/elasticsearch,zhiqinghuang/elasticsearch,hanswang/elasticsearch,karthikjaps/elasticsearch,nilabhsagar/elasticsearch,golubev/elasticsearch,yongminxia/elasticsearch,kalburgimanjunath/elasticsearch,Chhunlong/elasticsearch,jsgao0/elasticsearch,vroyer/elasticassandra,mute/elasticsearch,overcome/elasticsearch,ricardocerq/elasticsearch,karthikjaps/elasticsearch,hafkensite/elasticsearch,dataduke/elasticsearch,MetSystem/elasticsearch,mcku/elasticsearch,LewayneNaidoo/elasticsearch,kaneshin/elasticsearch,palecur/elasticsearch,btiernay/elasticsearch,Siddartha07/elasticsearch,iamjakob/elasticsearch,apepper/elasticsearch,MichaelLiZhou/elasticsearch,jimhooker2002/elasticsearch,hirdesh2008/elasticsearch,truemped/elasticsearch,EasonYi/elasticsearch,abibell/elasticsearch,easonC/elasticsearch,springning/elasticsearch,palecur/elasticsearch,nrkkalyan/elasticsearch,ydsakyclguozi/elasticsearch,franklanganke/elasticsearch,fooljohnny/elasticsearch,pranavraman/elasticsearch,fforbeck/elasticsearch,masterweb121/elasticsearch,camilojd/elasticsearch,ivansun1010/elasticsearch,dataduke/elasticsearch,ThalaivaStars/OrgRepo1,NBSW/elasticsearch,aglne/elasticsearch,martinstuga/elasticsearch,javachengwc/elasticsearch,TonyChai24/ESSource,nazarewk/elasticsearch,Shekharrajak/elasticsearch,clintongormley/elasticsearch,masaruh/elasticsearch,geidies/elasticsearch,xingguang2013/elasticsearch,nazarewk/elasticsearch,mikemccand/elasticsearch,JackyMai/elasticsearch,adrianbk/elasticsearch,davidvgalbraith/elasticsearch,YosuaMichael/elasticsearch,LewayneNaidoo/elasticsearch,wimvds/elasticsearch,beiske/elasticsearch,areek/elasticsearch,lightslife/elasticsearch,Uiho/elasticsearch,martinstuga/elasticsearch,mmaracic/elasticsearch,TonyChai24/ESSource,mm0/elasticsearch,zhiqinghuang/elasticsearch,jprante/elasticsearch,xingguang2013/elasticsearch,linglaiyao1314/elasticsearch,bestwpw/elasticsearch,pranavraman/elasticsearch,lks21c/elasticsearch,andrestc/elasticsearch,humandb/elasticsearch,dataduke/elasticsearch,kingaj/elasticsearch,nellicus/elasticsearch,ulkas/elasticsearch,mbrukman/elasticsearch,mrorii/elasticsearch,hechunwen/elasticsearch,javachengwc/elasticsearch,fooljohnny/elasticsearch,Kakakakakku/elasticsearch,LeoYao/elasticsearch,mrorii/elasticsearch,Collaborne/elasticsearch,Fsero/elasticsearch,milodky/elasticsearch,loconsolutions/elasticsearch,kenshin233/elasticsearch,drewr/elasticsearch,pritishppai/elasticsearch,coding0011/elasticsearch,qwerty4030/elasticsearch,luiseduardohdbackup/elasticsearch,lzo/elasticsearch-1,Brijeshrpatel9/elasticsearch,pozhidaevak/elasticsearch,gfyoung/elasticsearch,hanswang/elasticsearch,njlawton/elasticsearch,jaynblue/elasticsearch,mm0/elasticsearch,diendt/elasticsearch,ricardocerq/elasticsearch,Widen/elasticsearch,xingguang2013/elasticsearch,sdauletau/elasticsearch,koxa29/elasticsearch,Collaborne/elasticsearch,sarwarbhuiyan/elasticsearch,dylan8902/elasticsearch,davidvgalbraith/elasticsearch,Shepard1212/elasticsearch,nezirus/elasticsearch,Kakakakakku/elasticsearch,caengcjd/elasticsearch,HarishAtGitHub/elasticsearch,jango2015/elasticsearch,smflorentino/elasticsearch,xpandan/elasticsearch,sauravmondallive/elasticsearch,franklanganke/elasticsearch,sc0ttkclark/elasticsearch,F0lha/elasticsearch,IanvsPoplicola/elasticsearch,mapr/elasticsearch,dylan8902/elasticsearch,mgalushka/elasticsearch,awislowski/elasticsearch,amit-shar/elasticsearch,maddin2016/elasticsearch,achow/elasticsearch,pritishppai/elasticsearch,smflorentino/elasticsearch,mrorii/elasticsearch,qwerty4030/elasticsearch,ESamir/elasticsearch,Liziyao/elasticsearch,rento19962/elasticsearch,xuzha/elasticsearch,alexkuk/elasticsearch,MaineC/elasticsearch,pozhidaevak/elasticsearch,iamjakob/elasticsearch,amaliujia/elasticsearch,alexkuk/elasticsearch,spiegela/elasticsearch,ckclark/elasticsearch,spiegela/elasticsearch,tahaemin/elasticsearch,snikch/elasticsearch,mgalushka/elasticsearch,MjAbuz/elasticsearch,tsohil/elasticsearch,mikemccand/elasticsearch,tsohil/elasticsearch,EasonYi/elasticsearch,skearns64/elasticsearch,acchen97/elasticsearch,knight1128/elasticsearch,kubum/elasticsearch,HonzaKral/elasticsearch,rhoml/elasticsearch,rajanm/elasticsearch,nilabhsagar/elasticsearch,ouyangkongtong/elasticsearch,kalimatas/elasticsearch,masterweb121/elasticsearch,cnfire/elasticsearch-1,adrianbk/elasticsearch,HonzaKral/elasticsearch,MichaelLiZhou/elasticsearch,jbertouch/elasticsearch,dylan8902/elasticsearch,Charlesdong/elasticsearch,tkssharma/elasticsearch,EasonYi/elasticsearch,hafkensite/elasticsearch,achow/elasticsearch,GlenRSmith/elasticsearch,skearns64/elasticsearch,wayeast/elasticsearch,alexkuk/elasticsearch,JSCooke/elasticsearch,huanzhong/elasticsearch,awislowski/elasticsearch,smflorentino/elasticsearch,sauravmondallive/elasticsearch,truemped/elasticsearch,lchennup/elasticsearch,Stacey-Gammon/elasticsearch,khiraiwa/elasticsearch,naveenhooda2000/elasticsearch,zkidkid/elasticsearch,fforbeck/elasticsearch,fforbeck/elasticsearch,mjhennig/elasticsearch,NBSW/elasticsearch,Brijeshrpatel9/elasticsearch,linglaiyao1314/elasticsearch,javachengwc/elasticsearch,karthikjaps/elasticsearch,btiernay/elasticsearch,iamjakob/elasticsearch,MaineC/elasticsearch,kubum/elasticsearch,himanshuag/elasticsearch,jprante/elasticsearch,PhaedrusTheGreek/elasticsearch,jsgao0/elasticsearch,wenpos/elasticsearch,Shekharrajak/elasticsearch,mjhennig/elasticsearch,ulkas/elasticsearch,xuzha/elasticsearch,artnowo/elasticsearch,Shepard1212/elasticsearch,ulkas/elasticsearch,hydro2k/elasticsearch,ThalaivaStars/OrgRepo1,markharwood/elasticsearch,mbrukman/elasticsearch,markharwood/elasticsearch,qwerty4030/elasticsearch,dongjoon-hyun/elasticsearch,abibell/elasticsearch,slavau/elasticsearch,chirilo/elasticsearch,StefanGor/elasticsearch,bestwpw/elasticsearch,lmtwga/elasticsearch,girirajsharma/elasticsearch,obourgain/elasticsearch,sneivandt/elasticsearch,hechunwen/elasticsearch,avikurapati/elasticsearch,trangvh/elasticsearch,tebriel/elasticsearch,kalburgimanjunath/elasticsearch,mm0/elasticsearch,onegambler/elasticsearch,ImpressTV/elasticsearch,jango2015/elasticsearch,tkssharma/elasticsearch,SergVro/elasticsearch,pritishppai/elasticsearch,truemped/elasticsearch,yongminxia/elasticsearch,iantruslove/elasticsearch,caengcjd/elasticsearch,sneivandt/elasticsearch,infusionsoft/elasticsearch,areek/elasticsearch,ckclark/elasticsearch,Liziyao/elasticsearch,maddin2016/elasticsearch,sposam/elasticsearch,nknize/elasticsearch,scottsom/elasticsearch,Widen/elasticsearch,yuy168/elasticsearch,fekaputra/elasticsearch,fernandozhu/elasticsearch,tahaemin/elasticsearch,spiegela/elasticsearch,knight1128/elasticsearch,jaynblue/elasticsearch,fernandozhu/elasticsearch,umeshdangat/elasticsearch,ZTE-PaaS/elasticsearch,weipinghe/elasticsearch,C-Bish/elasticsearch,18098924759/elasticsearch,strapdata/elassandra-test,tsohil/elasticsearch,iantruslove/elasticsearch,F0lha/elasticsearch,huanzhong/elasticsearch,zkidkid/elasticsearch,myelin/elasticsearch,himanshuag/elasticsearch,Widen/elasticsearch,wangyuxue/elasticsearch,naveenhooda2000/elasticsearch,ricardocerq/elasticsearch,camilojd/elasticsearch,SergVro/elasticsearch,sdauletau/elasticsearch,amaliujia/elasticsearch,rhoml/elasticsearch,elancom/elasticsearch,wbowling/elasticsearch,cwurm/elasticsearch,SergVro/elasticsearch,Siddartha07/elasticsearch,wuranbo/elasticsearch,Uiho/elasticsearch,andrejserafim/elasticsearch,NBSW/elasticsearch,fooljohnny/elasticsearch,zhiqinghuang/elasticsearch,HonzaKral/elasticsearch,springning/elasticsearch,ImpressTV/elasticsearch,mcku/elasticsearch,vietlq/elasticsearch,markwalkom/elasticsearch,alexkuk/elasticsearch,knight1128/elasticsearch,mapr/elasticsearch,LeoYao/elasticsearch,djschny/elasticsearch,nrkkalyan/elasticsearch,kunallimaye/elasticsearch,lchennup/elasticsearch,szroland/elasticsearch,vingupta3/elasticsearch,linglaiyao1314/elasticsearch,amit-shar/elasticsearch,liweinan0423/elasticsearch,Fsero/elasticsearch,davidvgalbraith/elasticsearch,tsohil/elasticsearch,AshishThakur/elasticsearch,gingerwizard/elasticsearch,LewayneNaidoo/elasticsearch,sauravmondallive/elasticsearch,markllama/elasticsearch,golubev/elasticsearch,andrejserafim/elasticsearch,abibell/elasticsearch,loconsolutions/elasticsearch,masterweb121/elasticsearch,tkssharma/elasticsearch,JSCooke/elasticsearch,i-am-Nathan/elasticsearch,wayeast/elasticsearch,jpountz/elasticsearch,jimhooker2002/elasticsearch,jsgao0/elasticsearch,beiske/elasticsearch,hafkensite/elasticsearch,mikemccand/elasticsearch,Liziyao/elasticsearch,btiernay/elasticsearch,jchampion/elasticsearch,luiseduardohdbackup/elasticsearch,mmaracic/elasticsearch,easonC/elasticsearch,likaiwalkman/elasticsearch,strapdata/elassandra-test,kubum/elasticsearch,himanshuag/elasticsearch,fred84/elasticsearch,areek/elasticsearch,a2lin/elasticsearch,gmarz/elasticsearch,scorpionvicky/elasticsearch,kevinkluge/elasticsearch,mnylen/elasticsearch,sdauletau/elasticsearch,fekaputra/elasticsearch,yynil/elasticsearch,likaiwalkman/elasticsearch,areek/elasticsearch,elancom/elasticsearch,queirozfcom/elasticsearch,mapr/elasticsearch,jchampion/elasticsearch,ckclark/elasticsearch,tahaemin/elasticsearch,mjhennig/elasticsearch,lchennup/elasticsearch,xpandan/elasticsearch,EasonYi/elasticsearch,henakamaMSFT/elasticsearch,PhaedrusTheGreek/elasticsearch,gfyoung/elasticsearch,dpursehouse/elasticsearch,sarwarbhuiyan/elasticsearch,btiernay/elasticsearch,jpountz/elasticsearch,maddin2016/elasticsearch,beiske/elasticsearch,strapdata/elassandra,coding0011/elasticsearch,C-Bish/elasticsearch,KimTaehee/elasticsearch,palecur/elasticsearch,Charlesdong/elasticsearch,gingerwizard/elasticsearch,artnowo/elasticsearch,andrejserafim/elasticsearch,elasticdog/elasticsearch,apepper/elasticsearch,mm0/elasticsearch,robin13/elasticsearch,kalimatas/elasticsearch,rento19962/elasticsearch,MetSystem/elasticsearch,i-am-Nathan/elasticsearch,phani546/elasticsearch,iacdingping/elasticsearch,brandonkearby/elasticsearch,mjason3/elasticsearch,apepper/elasticsearch,ouyangkongtong/elasticsearch,nezirus/elasticsearch,adrianbk/elasticsearch,golubev/elasticsearch,iantruslove/elasticsearch,dongjoon-hyun/elasticsearch,acchen97/elasticsearch,s1monw/elasticsearch,aglne/elasticsearch,rhoml/elasticsearch,scottsom/elasticsearch,pablocastro/elasticsearch,huypx1292/elasticsearch,MaineC/elasticsearch,milodky/elasticsearch,javachengwc/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,slavau/elasticsearch,MichaelLiZhou/elasticsearch,golubev/elasticsearch,JervyShi/elasticsearch,wayeast/elasticsearch,rmuir/elasticsearch,wangyuxue/elasticsearch,pranavraman/elasticsearch,avikurapati/elasticsearch,tsohil/elasticsearch,masaruh/elasticsearch,mgalushka/elasticsearch,djschny/elasticsearch,wimvds/elasticsearch,truemped/elasticsearch,myelin/elasticsearch,clintongormley/elasticsearch,KimTaehee/elasticsearch,sposam/elasticsearch,kimimj/elasticsearch,vroyer/elasticassandra,baishuo/elasticsearch_v2.1.0-baishuo,markwalkom/elasticsearch,a2lin/elasticsearch,infusionsoft/elasticsearch,nomoa/elasticsearch,dpursehouse/elasticsearch,lmtwga/elasticsearch,jimczi/elasticsearch,dylan8902/elasticsearch,Brijeshrpatel9/elasticsearch,henakamaMSFT/elasticsearch,a2lin/elasticsearch,diendt/elasticsearch,ThalaivaStars/OrgRepo1,iantruslove/elasticsearch,mbrukman/elasticsearch,njlawton/elasticsearch,likaiwalkman/elasticsearch,alexshadow007/elasticsearch,NBSW/elasticsearch,glefloch/elasticsearch,GlenRSmith/elasticsearch,iacdingping/elasticsearch,truemped/elasticsearch,ThalaivaStars/OrgRepo1,lmtwga/elasticsearch,lydonchandra/elasticsearch,uschindler/elasticsearch,jimhooker2002/elasticsearch,sposam/elasticsearch,KimTaehee/elasticsearch,sreeramjayan/elasticsearch,tahaemin/elasticsearch,elancom/elasticsearch,mmaracic/elasticsearch,schonfeld/elasticsearch,dataduke/elasticsearch,ImpressTV/elasticsearch,mute/elasticsearch,LewayneNaidoo/elasticsearch,nazarewk/elasticsearch,shreejay/elasticsearch,zeroctu/elasticsearch,gingerwizard/elasticsearch,gingerwizard/elasticsearch,pranavraman/elasticsearch,C-Bish/elasticsearch,PhaedrusTheGreek/elasticsearch,xuzha/elasticsearch,kenshin233/elasticsearch,diendt/elasticsearch,mbrukman/elasticsearch,humandb/elasticsearch,kalimatas/elasticsearch,martinstuga/elasticsearch,qwerty4030/elasticsearch,alexbrasetvik/elasticsearch,cwurm/elasticsearch,a2lin/elasticsearch,Collaborne/elasticsearch,wangtuo/elasticsearch,queirozfcom/elasticsearch,sreeramjayan/elasticsearch,vingupta3/elasticsearch,wenpos/elasticsearch,Ansh90/elasticsearch,drewr/elasticsearch,Helen-Zhao/elasticsearch,wenpos/elasticsearch,jango2015/elasticsearch,karthikjaps/elasticsearch,i-am-Nathan/elasticsearch,humandb/elasticsearch,overcome/elasticsearch,caengcjd/elasticsearch,kevinkluge/elasticsearch,xingguang2013/elasticsearch,bestwpw/elasticsearch,strapdata/elassandra-test,sreeramjayan/elasticsearch,cwurm/elasticsearch,ydsakyclguozi/elasticsearch,wuranbo/elasticsearch,MjAbuz/elasticsearch,girirajsharma/elasticsearch,mrorii/elasticsearch,sdauletau/elasticsearch,pranavraman/elasticsearch,schonfeld/elasticsearch,kunallimaye/elasticsearch,nrkkalyan/elasticsearch,slavau/elasticsearch,gmarz/elasticsearch,drewr/elasticsearch,Kakakakakku/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,18098924759/elasticsearch,Uiho/elasticsearch,a2lin/elasticsearch,lks21c/elasticsearch,luiseduardohdbackup/elasticsearch,lydonchandra/elasticsearch,iamjakob/elasticsearch,rlugojr/elasticsearch,markllama/elasticsearch,snikch/elasticsearch,mm0/elasticsearch,djschny/elasticsearch,thecocce/elasticsearch,amit-shar/elasticsearch,petabytedata/elasticsearch,xpandan/elasticsearch,kalimatas/elasticsearch,zhiqinghuang/elasticsearch,lydonchandra/elasticsearch,sposam/elasticsearch,ZTE-PaaS/elasticsearch,trangvh/elasticsearch,zkidkid/elasticsearch,lzo/elasticsearch-1,Fsero/elasticsearch,drewr/elasticsearch,slavau/elasticsearch,liweinan0423/elasticsearch,wenpos/elasticsearch,caengcjd/elasticsearch,xuzha/elasticsearch,markllama/elasticsearch,lmtwga/elasticsearch,yuy168/elasticsearch,lightslife/elasticsearch,avikurapati/elasticsearch,camilojd/elasticsearch,EasonYi/elasticsearch,schonfeld/elasticsearch,MaineC/elasticsearch,sposam/elasticsearch,masaruh/elasticsearch,ouyangkongtong/elasticsearch,JSCooke/elasticsearch,18098924759/elasticsearch,petabytedata/elasticsearch,gmarz/elasticsearch,tkssharma/elasticsearch,onegambler/elasticsearch,strapdata/elassandra-test,vvcephei/elasticsearch,dataduke/elasticsearch,drewr/elasticsearch,trangvh/elasticsearch,StefanGor/elasticsearch,pablocastro/elasticsearch,shreejay/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,JSCooke/elasticsearch,tahaemin/elasticsearch,xingguang2013/elasticsearch,yynil/elasticsearch,LeoYao/elasticsearch,rmuir/elasticsearch,Rygbee/elasticsearch,mortonsykes/elasticsearch,mute/elasticsearch,lmtwga/elasticsearch,jbertouch/elasticsearch,gingerwizard/elasticsearch,schonfeld/elasticsearch,Helen-Zhao/elasticsearch,ulkas/elasticsearch,henakamaMSFT/elasticsearch,Collaborne/elasticsearch,NBSW/elasticsearch,abibell/elasticsearch,markllama/elasticsearch,andrejserafim/elasticsearch,PhaedrusTheGreek/elasticsearch,sdauletau/elasticsearch,markllama/elasticsearch,ESamir/elasticsearch,smflorentino/elasticsearch,springning/elasticsearch,yynil/elasticsearch,hydro2k/elasticsearch,henakamaMSFT/elasticsearch,sc0ttkclark/elasticsearch,camilojd/elasticsearch,umeshdangat/elasticsearch,myelin/elasticsearch,mjason3/elasticsearch,mute/elasticsearch,truemped/elasticsearch,huanzhong/elasticsearch,ivansun1010/elasticsearch,F0lha/elasticsearch,GlenRSmith/elasticsearch,masterweb121/elasticsearch,mgalushka/elasticsearch,mnylen/elasticsearch,pablocastro/elasticsearch,mjhennig/elasticsearch,bestwpw/elasticsearch,mjason3/elasticsearch,rlugojr/elasticsearch,kimimj/elasticsearch,yanjunh/elasticsearch,yuy168/elasticsearch,easonC/elasticsearch,amit-shar/elasticsearch,mgalushka/elasticsearch,avikurapati/elasticsearch,wuranbo/elasticsearch,nellicus/elasticsearch,uschindler/elasticsearch,geidies/elasticsearch,scorpionvicky/elasticsearch,gmarz/elasticsearch,lightslife/elasticsearch,skearns64/elasticsearch,amaliujia/elasticsearch,scottsom/elasticsearch,s1monw/elasticsearch,pritishppai/elasticsearch,huanzhong/elasticsearch,coding0011/elasticsearch,fred84/elasticsearch,kevinkluge/elasticsearch,episerver/elasticsearch,slavau/elasticsearch,lydonchandra/elasticsearch,ouyangkongtong/elasticsearch,mjason3/elasticsearch,lzo/elasticsearch-1,franklanganke/elasticsearch,rmuir/elasticsearch,ivansun1010/elasticsearch,MisterAndersen/elasticsearch,hafkensite/elasticsearch,likaiwalkman/elasticsearch,wayeast/elasticsearch,AndreKR/elasticsearch,PhaedrusTheGreek/elasticsearch,strapdata/elassandra,iamjakob/elasticsearch,mmaracic/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,djschny/elasticsearch,dpursehouse/elasticsearch,scorpionvicky/elasticsearch,petabytedata/elasticsearch,bestwpw/elasticsearch,rmuir/elasticsearch,YosuaMichael/elasticsearch,mikemccand/elasticsearch,mapr/elasticsearch,coding0011/elasticsearch,liweinan0423/elasticsearch,strapdata/elassandra5-rc,AndreKR/elasticsearch,nellicus/elasticsearch,schonfeld/elasticsearch,hirdesh2008/elasticsearch,Charlesdong/elasticsearch,beiske/elasticsearch,ZTE-PaaS/elasticsearch,polyfractal/elasticsearch,koxa29/elasticsearch,Ansh90/elasticsearch,wbowling/elasticsearch,areek/elasticsearch,artnowo/elasticsearch,huanzhong/elasticsearch,sauravmondallive/elasticsearch,caengcjd/elasticsearch,fernandozhu/elasticsearch,clintongormley/elasticsearch,AndreKR/elasticsearch,apepper/elasticsearch,jimczi/elasticsearch,jsgao0/elasticsearch,aglne/elasticsearch,markharwood/elasticsearch,Fsero/elasticsearch,markllama/elasticsearch,iacdingping/elasticsearch,socialrank/elasticsearch,brandonkearby/elasticsearch,mnylen/elasticsearch,AndreKR/elasticsearch,khiraiwa/elasticsearch,HarishAtGitHub/elasticsearch,strapdata/elassandra,EasonYi/elasticsearch,cnfire/elasticsearch-1,queirozfcom/elasticsearch,chirilo/elasticsearch,petabytedata/elasticsearch,rento19962/elasticsearch,AshishThakur/elasticsearch,MjAbuz/elasticsearch,pranavraman/elasticsearch,kalimatas/elasticsearch,markwalkom/elasticsearch,Shepard1212/elasticsearch,pranavraman/elasticsearch,xpandan/elasticsearch,clintongormley/elasticsearch,hydro2k/elasticsearch,achow/elasticsearch,easonC/elasticsearch,davidvgalbraith/elasticsearch,kevinkluge/elasticsearch,huypx1292/elasticsearch,s1monw/elasticsearch,ImpressTV/elasticsearch,lightslife/elasticsearch,martinstuga/elasticsearch,kevinkluge/elasticsearch,ThiagoGarciaAlves/elasticsearch,aglne/elasticsearch,JervyShi/elasticsearch,henakamaMSFT/elasticsearch,vietlq/elasticsearch,elancom/elasticsearch,jprante/elasticsearch,MichaelLiZhou/elasticsearch,mcku/elasticsearch,wayeast/elasticsearch,infusionsoft/elasticsearch,hirdesh2008/elasticsearch,kubum/elasticsearch,sreeramjayan/elasticsearch,Shekharrajak/elasticsearch,fred84/elasticsearch,MisterAndersen/elasticsearch,18098924759/elasticsearch,nomoa/elasticsearch,rhoml/elasticsearch,awislowski/elasticsearch,girirajsharma/elasticsearch,coding0011/elasticsearch,mjhennig/elasticsearch,likaiwalkman/elasticsearch,luiseduardohdbackup/elasticsearch,s1monw/elasticsearch,wittyameta/elasticsearch,MetSystem/elasticsearch,mikemccand/elasticsearch,lzo/elasticsearch-1,rajanm/elasticsearch,rajanm/elasticsearch,jeteve/elasticsearch,iantruslove/elasticsearch,Liziyao/elasticsearch,hechunwen/elasticsearch,Helen-Zhao/elasticsearch,mortonsykes/elasticsearch,humandb/elasticsearch,xingguang2013/elasticsearch,iacdingping/elasticsearch,adrianbk/elasticsearch,chirilo/elasticsearch,slavau/elasticsearch,acchen97/elasticsearch,mnylen/elasticsearch,wimvds/elasticsearch,JervyShi/elasticsearch,geidies/elasticsearch,gingerwizard/elasticsearch,alexbrasetvik/elasticsearch,kunallimaye/elasticsearch,khiraiwa/elasticsearch,MisterAndersen/elasticsearch,schonfeld/elasticsearch,zhiqinghuang/elasticsearch,weipinghe/elasticsearch,KimTaehee/elasticsearch,clintongormley/elasticsearch,Shekharrajak/elasticsearch,rento19962/elasticsearch,andrestc/elasticsearch,markharwood/elasticsearch,KimTaehee/elasticsearch,kenshin233/elasticsearch,jpountz/elasticsearch,karthikjaps/elasticsearch,mrorii/elasticsearch,loconsolutions/elasticsearch,koxa29/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,cnfire/elasticsearch-1,hafkensite/elasticsearch,yuy168/elasticsearch,karthikjaps/elasticsearch,strapdata/elassandra5-rc,vroyer/elassandra,KimTaehee/elasticsearch,overcome/elasticsearch,acchen97/elasticsearch,LeoYao/elasticsearch,nezirus/elasticsearch,tebriel/elasticsearch,kubum/elasticsearch,polyfractal/elasticsearch,Charlesdong/elasticsearch,smflorentino/elasticsearch,onegambler/elasticsearch,huanzhong/elasticsearch,ouyangkongtong/elasticsearch,knight1128/elasticsearch,jaynblue/elasticsearch,fooljohnny/elasticsearch,vietlq/elasticsearch,nknize/elasticsearch,kalburgimanjunath/elasticsearch,queirozfcom/elasticsearch,elasticdog/elasticsearch,sneivandt/elasticsearch,onegambler/elasticsearch,Siddartha07/elasticsearch,mcku/elasticsearch,lchennup/elasticsearch,szroland/elasticsearch,franklanganke/elasticsearch,amit-shar/elasticsearch,smflorentino/elasticsearch,andrestc/elasticsearch,amaliujia/elasticsearch,rlugojr/elasticsearch,SergVro/elasticsearch,nilabhsagar/elasticsearch,IanvsPoplicola/elasticsearch,Rygbee/elasticsearch,djschny/elasticsearch,nomoa/elasticsearch,Stacey-Gammon/elasticsearch,ESamir/elasticsearch,rlugojr/elasticsearch,alexshadow007/elasticsearch,areek/elasticsearch,sneivandt/elasticsearch,kalburgimanjunath/elasticsearch,geidies/elasticsearch,linglaiyao1314/elasticsearch,MjAbuz/elasticsearch,iacdingping/elasticsearch,Siddartha07/elasticsearch,wittyameta/elasticsearch,mcku/elasticsearch,MisterAndersen/elasticsearch,kimimj/elasticsearch,vietlq/elasticsearch,koxa29/elasticsearch,aglne/elasticsearch,nrkkalyan/elasticsearch,ydsakyclguozi/elasticsearch,wenpos/elasticsearch,strapdata/elassandra,LeoYao/elasticsearch,xpandan/elasticsearch,sdauletau/elasticsearch,maddin2016/elasticsearch,Uiho/elasticsearch,ImpressTV/elasticsearch,amit-shar/elasticsearch,glefloch/elasticsearch,JSCooke/elasticsearch,PhaedrusTheGreek/elasticsearch,ckclark/elasticsearch,overcome/elasticsearch,JackyMai/elasticsearch,sdauletau/elasticsearch,tsohil/elasticsearch,uschindler/elasticsearch,socialrank/elasticsearch,Ansh90/elasticsearch,lchennup/elasticsearch,jchampion/elasticsearch,robin13/elasticsearch,jaynblue/elasticsearch,pablocastro/elasticsearch,linglaiyao1314/elasticsearch,shreejay/elasticsearch,robin13/elasticsearch,hanswang/elasticsearch,sarwarbhuiyan/elasticsearch,queirozfcom/elasticsearch,brandonkearby/elasticsearch,wittyameta/elasticsearch,jpountz/elasticsearch,18098924759/elasticsearch,pozhidaevak/elasticsearch,AshishThakur/elasticsearch,lzo/elasticsearch-1,PhaedrusTheGreek/elasticsearch,zkidkid/elasticsearch,vingupta3/elasticsearch,ESamir/elasticsearch,Brijeshrpatel9/elasticsearch,adrianbk/elasticsearch,elancom/elasticsearch,lchennup/elasticsearch,adrianbk/elasticsearch,JackyMai/elasticsearch,nrkkalyan/elasticsearch,tkssharma/elasticsearch,golubev/elasticsearch,onegambler/elasticsearch,Liziyao/elasticsearch,mnylen/elasticsearch,petabytedata/elasticsearch,lks21c/elasticsearch,GlenRSmith/elasticsearch,gingerwizard/elasticsearch,alexshadow007/elasticsearch,C-Bish/elasticsearch,MjAbuz/elasticsearch,geidies/elasticsearch,nellicus/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,cwurm/elasticsearch,petabytedata/elasticsearch,nknize/elasticsearch,wittyameta/elasticsearch,Widen/elasticsearch,markllama/elasticsearch,tebriel/elasticsearch,abibell/elasticsearch,sreeramjayan/elasticsearch,ESamir/elasticsearch,kcompher/elasticsearch,jbertouch/elasticsearch,mnylen/elasticsearch,alexkuk/elasticsearch,camilojd/elasticsearch,phani546/elasticsearch,njlawton/elasticsearch,Fsero/elasticsearch,wimvds/elasticsearch,vvcephei/elasticsearch,achow/elasticsearch,milodky/elasticsearch,camilojd/elasticsearch,gfyoung/elasticsearch,jbertouch/elasticsearch,bawse/elasticsearch,loconsolutions/elasticsearch,uschindler/elasticsearch,fekaputra/elasticsearch,andrejserafim/elasticsearch,lzo/elasticsearch-1,linglaiyao1314/elasticsearch,kingaj/elasticsearch,Siddartha07/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,IanvsPoplicola/elasticsearch,mohit/elasticsearch,scorpionvicky/elasticsearch,winstonewert/elasticsearch,kunallimaye/elasticsearch,YosuaMichael/elasticsearch,diendt/elasticsearch,vroyer/elassandra,sc0ttkclark/elasticsearch,Chhunlong/elasticsearch,markharwood/elasticsearch,socialrank/elasticsearch,likaiwalkman/elasticsearch,jbertouch/elasticsearch,Ansh90/elasticsearch,Charlesdong/elasticsearch,markharwood/elasticsearch,myelin/elasticsearch,yongminxia/elasticsearch,polyfractal/elasticsearch,wimvds/elasticsearch,yynil/elasticsearch,yongminxia/elasticsearch,ivansun1010/elasticsearch,pozhidaevak/elasticsearch,beiske/elasticsearch,acchen97/elasticsearch,abibell/elasticsearch,Liziyao/elasticsearch,weipinghe/elasticsearch,winstonewert/elasticsearch,lydonchandra/elasticsearch,socialrank/elasticsearch,apepper/elasticsearch,TonyChai24/ESSource,markwalkom/elasticsearch,phani546/elasticsearch,weipinghe/elasticsearch,mapr/elasticsearch,Shepard1212/elasticsearch,jeteve/elasticsearch,bestwpw/elasticsearch,ckclark/elasticsearch,trangvh/elasticsearch,F0lha/elasticsearch,btiernay/elasticsearch,lightslife/elasticsearch,HarishAtGitHub/elasticsearch,obourgain/elasticsearch,rajanm/elasticsearch,StefanGor/elasticsearch,jango2015/elasticsearch,girirajsharma/elasticsearch,MichaelLiZhou/elasticsearch,zeroctu/elasticsearch,kalburgimanjunath/elasticsearch,humandb/elasticsearch,mgalushka/elasticsearch,mohit/elasticsearch,YosuaMichael/elasticsearch,spiegela/elasticsearch,dongjoon-hyun/elasticsearch,iamjakob/elasticsearch,ThiagoGarciaAlves/elasticsearch,Widen/elasticsearch,winstonewert/elasticsearch,elancom/elasticsearch,lks21c/elasticsearch,Brijeshrpatel9/elasticsearch,TonyChai24/ESSource,kevinkluge/elasticsearch,ouyangkongtong/elasticsearch,mgalushka/elasticsearch,MetSystem/elasticsearch,yuy168/elasticsearch,apepper/elasticsearch,vietlq/elasticsearch,achow/elasticsearch,mbrukman/elasticsearch,episerver/elasticsearch,khiraiwa/elasticsearch,polyfractal/elasticsearch,springning/elasticsearch,chirilo/elasticsearch,Kakakakakku/elasticsearch,elasticdog/elasticsearch,clintongormley/elasticsearch,ThiagoGarciaAlves/elasticsearch,javachengwc/elasticsearch,andrestc/elasticsearch,Ansh90/elasticsearch,jchampion/elasticsearch,kimimj/elasticsearch,maddin2016/elasticsearch,himanshuag/elasticsearch,yongminxia/elasticsearch,djschny/elasticsearch,nomoa/elasticsearch,ThiagoGarciaAlves/elasticsearch,franklanganke/elasticsearch,umeshdangat/elasticsearch,chirilo/elasticsearch,s1monw/elasticsearch,huypx1292/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,mbrukman/elasticsearch,karthikjaps/elasticsearch,masaruh/elasticsearch,alexbrasetvik/elasticsearch,ivansun1010/elasticsearch,lmtwga/elasticsearch,Brijeshrpatel9/elasticsearch,fekaputra/elasticsearch,JervyShi/elasticsearch,hydro2k/elasticsearch,geidies/elasticsearch,MisterAndersen/elasticsearch,sarwarbhuiyan/elasticsearch,HarishAtGitHub/elasticsearch,drewr/elasticsearch,onegambler/elasticsearch,AshishThakur/elasticsearch,GlenRSmith/elasticsearch,springning/elasticsearch,vvcephei/elasticsearch,Rygbee/elasticsearch,beiske/elasticsearch,jaynblue/elasticsearch,jimhooker2002/elasticsearch,wbowling/elasticsearch,iacdingping/elasticsearch,yongminxia/elasticsearch,Chhunlong/elasticsearch,markwalkom/elasticsearch,ImpressTV/elasticsearch,zhiqinghuang/elasticsearch,martinstuga/elasticsearch,sauravmondallive/elasticsearch,kingaj/elasticsearch,zeroctu/elasticsearch,i-am-Nathan/elasticsearch,javachengwc/elasticsearch,btiernay/elasticsearch,chirilo/elasticsearch,infusionsoft/elasticsearch,IanvsPoplicola/elasticsearch,lks21c/elasticsearch,JackyMai/elasticsearch,ricardocerq/elasticsearch,MichaelLiZhou/elasticsearch,zhiqinghuang/elasticsearch,knight1128/elasticsearch,ThiagoGarciaAlves/elasticsearch,artnowo/elasticsearch,zeroctu/elasticsearch,nellicus/elasticsearch,Chhunlong/elasticsearch,skearns64/elasticsearch,kcompher/elasticsearch,F0lha/elasticsearch,StefanGor/elasticsearch,queirozfcom/elasticsearch,bawse/elasticsearch,kimimj/elasticsearch,wbowling/elasticsearch,hirdesh2008/elasticsearch,jeteve/elasticsearch,phani546/elasticsearch,LeoYao/elasticsearch,knight1128/elasticsearch,mmaracic/elasticsearch,Shepard1212/elasticsearch,kubum/elasticsearch,lydonchandra/elasticsearch,yanjunh/elasticsearch,nazarewk/elasticsearch,Rygbee/elasticsearch,ZTE-PaaS/elasticsearch,dataduke/elasticsearch,kaneshin/elasticsearch,AshishThakur/elasticsearch,kenshin233/elasticsearch,golubev/elasticsearch,jprante/elasticsearch,mjhennig/elasticsearch,glefloch/elasticsearch,girirajsharma/elasticsearch,glefloch/elasticsearch,rento19962/elasticsearch,kingaj/elasticsearch,luiseduardohdbackup/elasticsearch,awislowski/elasticsearch,petabytedata/elasticsearch,fforbeck/elasticsearch,pritishppai/elasticsearch,fooljohnny/elasticsearch,wuranbo/elasticsearch,rajanm/elasticsearch,mmaracic/elasticsearch,Uiho/elasticsearch,mcku/elasticsearch,rlugojr/elasticsearch,sauravmondallive/elasticsearch,abibell/elasticsearch,wittyameta/elasticsearch,mortonsykes/elasticsearch,szroland/elasticsearch,mortonsykes/elasticsearch,episerver/elasticsearch,Chhunlong/elasticsearch,ckclark/elasticsearch,xuzha/elasticsearch,huanzhong/elasticsearch,ulkas/elasticsearch,yuy168/elasticsearch,caengcjd/elasticsearch,kenshin233/elasticsearch,kaneshin/elasticsearch,naveenhooda2000/elasticsearch,sposam/elasticsearch,ouyangkongtong/elasticsearch,Ansh90/elasticsearch,mortonsykes/elasticsearch,loconsolutions/elasticsearch,cwurm/elasticsearch,dylan8902/elasticsearch,lydonchandra/elasticsearch,truemped/elasticsearch,vietlq/elasticsearch,lightslife/elasticsearch,pablocastro/elasticsearch,shreejay/elasticsearch,mcku/elasticsearch,kunallimaye/elasticsearch,mm0/elasticsearch,bawse/elasticsearch,himanshuag/elasticsearch,xuzha/elasticsearch,Stacey-Gammon/elasticsearch,sneivandt/elasticsearch,Shekharrajak/elasticsearch,jango2015/elasticsearch,hirdesh2008/elasticsearch,njlawton/elasticsearch,thecocce/elasticsearch,thecocce/elasticsearch,caengcjd/elasticsearch,kcompher/elasticsearch,rhoml/elasticsearch,masterweb121/elasticsearch,Uiho/elasticsearch,martinstuga/elasticsearch,mohit/elasticsearch,YosuaMichael/elasticsearch,amit-shar/elasticsearch,EasonYi/elasticsearch,iantruslove/elasticsearch,huypx1292/elasticsearch,yongminxia/elasticsearch,wuranbo/elasticsearch,fforbeck/elasticsearch,nellicus/elasticsearch,jsgao0/elasticsearch,kaneshin/elasticsearch,myelin/elasticsearch,strapdata/elassandra-test,sc0ttkclark/elasticsearch,wbowling/elasticsearch,TonyChai24/ESSource,jango2015/elasticsearch,zeroctu/elasticsearch,strapdata/elassandra,yynil/elasticsearch,diendt/elasticsearch,kingaj/elasticsearch,milodky/elasticsearch,skearns64/elasticsearch,lmtwga/elasticsearch,koxa29/elasticsearch,tebriel/elasticsearch,achow/elasticsearch,liweinan0423/elasticsearch,sposam/elasticsearch,rajanm/elasticsearch,pozhidaevak/elasticsearch,uschindler/elasticsearch,snikch/elasticsearch,mrorii/elasticsearch,mapr/elasticsearch,jchampion/elasticsearch,IanvsPoplicola/elasticsearch,nomoa/elasticsearch,wimvds/elasticsearch,mohit/elasticsearch,sreeramjayan/elasticsearch,HarishAtGitHub/elasticsearch,nezirus/elasticsearch,YosuaMichael/elasticsearch,milodky/elasticsearch,winstonewert/elasticsearch,Siddartha07/elasticsearch,hanswang/elasticsearch,18098924759/elasticsearch,AndreKR/elasticsearch,Chhunlong/elasticsearch,overcome/elasticsearch,MetSystem/elasticsearch,mnylen/elasticsearch,strapdata/elassandra5-rc,glefloch/elasticsearch,jchampion/elasticsearch,acchen97/elasticsearch,hafkensite/elasticsearch,iacdingping/elasticsearch,ydsakyclguozi/elasticsearch,franklanganke/elasticsearch,alexbrasetvik/elasticsearch,mm0/elasticsearch,Fsero/elasticsearch,wayeast/elasticsearch,kingaj/elasticsearch,ulkas/elasticsearch,rento19962/elasticsearch,amaliujia/elasticsearch,jsgao0/elasticsearch,sarwarbhuiyan/elasticsearch,xingguang2013/elasticsearch,NBSW/elasticsearch,kalburgimanjunath/elasticsearch,khiraiwa/elasticsearch,amaliujia/elasticsearch,LewayneNaidoo/elasticsearch,rmuir/elasticsearch,zeroctu/elasticsearch,Siddartha07/elasticsearch,wangtuo/elasticsearch,strapdata/elassandra-test,dylan8902/elasticsearch,JervyShi/elasticsearch,schonfeld/elasticsearch,robin13/elasticsearch,Shekharrajak/elasticsearch,liweinan0423/elasticsearch,hydro2k/elasticsearch,himanshuag/elasticsearch,ricardocerq/elasticsearch,onegambler/elasticsearch,obourgain/elasticsearch,wangtuo/elasticsearch,cnfire/elasticsearch-1,strapdata/elassandra-test,wbowling/elasticsearch,weipinghe/elasticsearch,Widen/elasticsearch,infusionsoft/elasticsearch,umeshdangat/elasticsearch,scorpionvicky/elasticsearch,NBSW/elasticsearch,jprante/elasticsearch,cnfire/elasticsearch-1,franklanganke/elasticsearch,ThiagoGarciaAlves/elasticsearch,mute/elasticsearch,wittyameta/elasticsearch,fekaputra/elasticsearch,markwalkom/elasticsearch,jbertouch/elasticsearch,mbrukman/elasticsearch,lchennup/elasticsearch,fernandozhu/elasticsearch,areek/elasticsearch,drewr/elasticsearch,hydro2k/elasticsearch,sc0ttkclark/elasticsearch,JackyMai/elasticsearch,huypx1292/elasticsearch,Widen/elasticsearch,brandonkearby/elasticsearch,LeoYao/elasticsearch,Shekharrajak/elasticsearch,mohit/elasticsearch,vietlq/elasticsearch,zkidkid/elasticsearch,dongjoon-hyun/elasticsearch,kimimj/elasticsearch,snikch/elasticsearch,palecur/elasticsearch,overcome/elasticsearch,bawse/elasticsearch,fooljohnny/elasticsearch,nknize/elasticsearch,Rygbee/elasticsearch,fred84/elasticsearch,nellicus/elasticsearch,djschny/elasticsearch,zeroctu/elasticsearch,kingaj/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,alexbrasetvik/elasticsearch,btiernay/elasticsearch,likaiwalkman/elasticsearch,jimhooker2002/elasticsearch |
85e3f9fd71e546748e3ea4be57e272be89d19de9 | cluster/canary/tabulator.yaml | cluster/canary/tabulator.yaml | ---
apiVersion: apps/v1
kind: Deployment
metadata:
name: testgrid-tabulator
namespace: testgrid-canary
labels:
app: testgrid
channel: stable
component: tabulator
spec:
replicas: 1
selector:
matchLabels:
app: testgrid
channel: stable
component: tabulator
template:
metadata:
labels:
app: testgrid
channel: stable
component: tabulator
spec:
serviceAccountName: tabulator
containers:
- name: tabulator
image: gcr.io/k8s-testgrid/tabulator:latest # TODO(michelle192837): pin to a version that contains this PR
ports:
- name: metrics
containerPort: 2112
args:
- --config=gs://k8s-testgrid-canary/config
- --confirm
- --wait=15m
---
apiVersion: v1
kind: ServiceAccount
metadata:
annotations:
# Uses same as updater
iam.gke.io/gcp-service-account: testgrid-canary@k8s-testgrid.iam.gserviceaccount.com
name: tabulator
namespace: testgrid-canary
| ---
apiVersion: apps/v1
kind: Deployment
metadata:
name: testgrid-tabulator
namespace: testgrid-canary
labels:
app: testgrid
channel: stable
component: tabulator
spec:
replicas: 1
selector:
matchLabels:
app: testgrid
channel: stable
component: tabulator
template:
metadata:
labels:
app: testgrid
channel: stable
component: tabulator
spec:
serviceAccountName: tabulator
containers:
- name: tabulator
image: gcr.io/k8s-testgrid/tabulator:v20220211-v0.0.121-22-gd538278
ports:
- name: metrics
containerPort: 2112
args:
- --config=gs://k8s-testgrid-canary/config
- --confirm
- --wait=15m
---
apiVersion: v1
kind: ServiceAccount
metadata:
annotations:
# Uses same as updater
iam.gke.io/gcp-service-account: testgrid-canary@k8s-testgrid.iam.gserviceaccount.com
name: tabulator
namespace: testgrid-canary
| Use a specific image for canary Tabulator. | Use a specific image for canary Tabulator.
| YAML | apache-2.0 | GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid,GoogleCloudPlatform/testgrid |
7bedb3dba08bcd9e799a45f08f1b5efcb2c1c8f4 | src/arlobot/arlobot_explore/param/move_base_params.yaml | src/arlobot/arlobot_explore/param/move_base_params.yaml | # Move base node parameters. For full documentation of the parameters in this file, please see
#
# http://www.ros.org/wiki/move_base
#
shutdown_costmaps: false
controller_frequency: 5.0
controller_patience: 3.0
planner_frequency: 1.0
planner_patience: 5.0
oscillation_timeout: 10.0
oscillation_distance: 0.2
# For exploration
clearing_rotation_allowed: false
#recovery_behavior_enabled: false # If you do this, at some point the robot will abort EVERY objective!
# My theory is that it never clears the cost map and eventually it just get stuck for good.
# local planner - default is trajectory rollout
base_local_planner: "dwa_local_planner/DWAPlannerROS"
| # Move base node parameters. For full documentation of the parameters in this file, please see
#
# http://www.ros.org/wiki/move_base
#
shutdown_costmaps: false
controller_frequency: 20.0
controller_patience: 3.0
planner_frequency: 1.0
planner_patience: 5.0
oscillation_timeout: 10.0
oscillation_distance: 0.2
# For exploration
clearing_rotation_allowed: false
#recovery_behavior_enabled: false # If you do this, at some point the robot will abort EVERY objective!
# My theory is that it never clears the cost map and eventually it just get stuck for good.
# local planner - default is trajectory rollout
base_local_planner: "dwa_local_planner/DWAPlannerROS"
| Set Explore controller_frequency to ROS default. | Set Explore controller_frequency to ROS default.
| YAML | mit | chrisl8/ArloBot,DTU-R3/ArloBot,DTU-R3/ArloBot,chrisl8/ArloBot,DTU-R3/ArloBot,chrisl8/ArloBot,chrisl8/ArloBot,DTU-R3/ArloBot,DTU-R3/ArloBot,chrisl8/ArloBot,DTU-R3/ArloBot,chrisl8/ArloBot |
61b47a5ec1615785746ee38d88a7c0195ca0567b | contrib/examples/triggers/sample-trigger.yaml | contrib/examples/triggers/sample-trigger.yaml | ---
name: sample_trigger
description: Sample trigger
| ---
name: sample_trigger
description: Sample trigger
payload_schema:
type: "object"
properties:
executed_at:
type: "string"
format: "date-time"
default: "2014-07-30 05:04:24.578325"
| Make trigger example more complete and also add payload_schema attribute to it. | Make trigger example more complete and also add payload_schema attribute
to it.
| YAML | apache-2.0 | StackStorm/st2,Plexxi/st2,nzlosh/st2,Plexxi/st2,nzlosh/st2,StackStorm/st2,nzlosh/st2,StackStorm/st2,nzlosh/st2,StackStorm/st2,Plexxi/st2,Plexxi/st2 |
65c77c2df194e8fa9765d728151881d92ab06586 | .appveyor.yml | .appveyor.yml | version: '{branch}-{build}'
os:
- Visual Studio 2017
services:
- postgresql96
configuration:
- Release
- Debug
environment:
PGUSER: postgres
PGPASSWORD: Password12!
matrix:
- GENERATOR: Visual Studio 15 2017 Win64
- CONAN_VISUAL_VERSIONS: 15
init: []
install: []
before_build:
- if defined BINDIR (set "PATH=%BINDIR%;%PATH:C:\Program Files\Git\usr\bin;=%")
- md build
- cd build
- cmake -Wno-dev --config "%CONFIGURATION%" -G "%GENERATOR%" ..
build_script:
- cmake --build . --config "%CONFIGURATION%"
test_script:
- PATH=C:\Program Files\PostgreSQL\9.6\bin\;%PATH%
- ctest -C "%CONFIGURATION%" --output-on-failure
for:
-
matrix:
only:
- CONAN_VISUAL_VERSIONS: 15
environment:
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
PYTHON: "C:\\Python37"
CONAN_BUILD_TYPES: "%CONFIGURATION%"
build: false
install:
- set PATH=%PATH%;%PYTHON%/Scripts/
- pip.exe install --upgrade conan conan_package_tools
test_script:
- python .conan/build.py
| version: '{branch}-{build}'
os:
- Visual Studio 2017
services:
- postgresql96
configuration:
- Release
- Debug
environment:
PGUSER: postgres
PGPASSWORD: Password12!
init: []
install: []
before_build:
- if defined BINDIR (set "PATH=%BINDIR%;%PATH:C:\Program Files\Git\usr\bin;=%")
- md build
- cd build
- cmake -Wno-dev --config "%CONFIGURATION%" -G "%GENERATOR%" ..
build_script:
- cmake --build . --config "%CONFIGURATION%"
test_script:
- PATH=C:\Program Files\PostgreSQL\9.6\bin\;%PATH%
- ctest -C "%CONFIGURATION%" --output-on-failure
| Drop Windows build from Appveyor | Drop Windows build from Appveyor
Signed-off-by: Uilian Ries <d4bad57018205bdda203549c36d3feb0bfe416a7@gmail.com>
| YAML | mit | taocpp/postgres,taocpp/postgres |
0942e82423387d7e950221648fe8d7b81afbe360 | .appveyor.yml | .appveyor.yml | configuration:
- Debug
- Release
environment:
matrix:
- generator: "Visual Studio 14 2015"
- generator: "Visual Studio 14 2015 Win64"
- generator: "Visual Studio 10 2010"
- generator: "Visual Studio 10 2010 Win64"
- generator: "MinGW Makefiles"
dialect: mingw
- generator: "MinGW Makefiles"
dialect: mingw-w64
matrix:
fast_finish: true
shallow_clone: true
before_build:
# Workaround for CMake not wanting sh.exe on PATH for MinGW
- set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
- if "%dialect%"=="mingw" set PATH=c:\MinGW\bin;%PATH%
- if "%dialect%"=="mingw-w64" set PATH=c:\msys64\mingw64\bin;%PATH%
- cmake -Hsamples -Bbuild -G"%generator%" -DCMAKE_BUILD_TYPE=%configuration%
build_script:
- if "%generator:~0,6%"=="Visual" set CMAKE_BUILD_FLAGS=--config %configuration% -- /m /v:m
- if "%generator:~0,5%"=="MinGW" set CMAKE_BUILD_FLAGS=-- -j%NUMBER_OF_PROCESSORS%
- cmake --build build %CMAKE_BUILD_FLAGS% | configuration:
- Debug
- Release
environment:
matrix:
- generator: "Visual Studio 14 2015"
- generator: "Visual Studio 14 2015 Win64"
- generator: "Visual Studio 10 2010"
- generator: "Visual Studio 10 2010 Win64"
- generator: "MinGW Makefiles"
dialect: mingw
- generator: "MinGW Makefiles"
dialect: mingw-w64
matrix:
fast_finish: true
shallow_clone: true
before_build:
# Workaround for CMake not wanting sh.exe on PATH for MinGW
- set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
- if "%dialect%"=="mingw" set PATH=c:\MinGW\bin;%PATH%
- if "%dialect%"=="mingw-w64" set PATH=c:\msys64\mingw64\bin;%PATH%
- cmake -Hsamples -Bbuild -G"%generator%" -DCMAKE_BUILD_TYPE=%configuration%
build_script:
- if "%generator:~0,6%"=="Visual" set CMAKE_BUILD_FLAGS=--config %configuration% -- /m /v:m
- if "%generator:~0,5%"=="MinGW" set CMAKE_BUILD_FLAGS=-- -j
- cmake --build build %CMAKE_BUILD_FLAGS% | Change -j%NUMBER_OF_PROCESSORS% to -j (as it will use all cores by default). | Change -j%NUMBER_OF_PROCESSORS% to -j (as it will use all cores by default).
| YAML | mit | SergiusTheBest/plog,SergiusTheBest/plog |
78bb2edf1a90e576693dabe26a145fe5cd8c14c0 | .eslintrc.yml | .eslintrc.yml | ---
root: true
env:
es6: true
browser: true
mocha: true
node: true
rules:
block-scoped-var: 2
block-spacing: [2, always]
brace-style: [2, 1tbs]
comma-dangle: 0
curly: [2, all]
dot-notation: 2
eqeqeq: 2
handle-callback-err: 2
indent: [2, tab]
key-spacing: [2, {beforeColon: false, afterColon: true}]
keyword-spacing: [2, {before: true, after: true}]
linebreak-style: [2, unix]
no-console: 0
no-control-regex: 0
no-else-return: 2
no-implicit-globals: 2
no-multi-spaces: 2
no-shadow: 2
no-template-curly-in-string: 2
no-trailing-spaces: 2
no-unsafe-negation: 2
no-useless-escape: 2
no-useless-return: 2
object-curly-spacing: [2, never]
quote-props: [2, as-needed]
quotes: [2, double, avoid-escape]
semi: [2, always]
space-before-blocks: 2
space-before-function-paren: [2, never]
space-infix-ops: 2
spaced-comment: [2, always]
strict: 2
globals:
log: false
extends: eslint:recommended
| ---
root: true
env:
es6: true
browser: true
mocha: true
node: true
rules:
block-scoped-var: 2
block-spacing: [2, always]
brace-style: [2, 1tbs]
comma-dangle: 0
curly: [2, all]
dot-notation: 2
eqeqeq: 2
handle-callback-err: 2
indent: [2, tab, { "MemberExpression": 1 }]
key-spacing: [2, {beforeColon: false, afterColon: true}]
keyword-spacing: [2, {before: true, after: true}]
linebreak-style: [2, unix]
no-console: 0
no-control-regex: 0
no-else-return: 2
no-implicit-globals: 2
no-multi-spaces: 2
no-shadow: 2
no-template-curly-in-string: 2
no-trailing-spaces: 2
no-unsafe-negation: 2
no-useless-escape: 2
no-useless-return: 2
object-curly-spacing: [2, never]
quote-props: [2, as-needed]
quotes: [2, double, avoid-escape]
semi: [2, always]
space-before-blocks: 2
space-before-function-paren: [2, never]
space-infix-ops: 2
spaced-comment: [2, always]
strict: 2
globals:
log: false
extends: eslint:recommended
| Make sure multiline chains of calls are correctly indented | Make sure multiline chains of calls are correctly indented
Without this rule, the following examples are passing ESLint:
```js
foo()
.bar(); // 0 tabs
foo()
.bar() // 2 tabs
.baz(); // 1 tab
foo()
.bar() // 2 spaces
.baz(); // 1 tab
```
| YAML | mit | metsjeesus/lounge,MaxLeiter/lounge,FryDay/lounge,ScoutLink/lounge,rockhouse/lounge,MaxLeiter/lounge,realies/lounge,FryDay/lounge,libertysoft3/lounge-autoconnect,ScoutLink/lounge,williamboman/lounge,FryDay/lounge,realies/lounge,sebastiencs/lounge,metsjeesus/lounge,thelounge/lounge,rockhouse/lounge,ScoutLink/lounge,libertysoft3/lounge-autoconnect,williamboman/lounge,sebastiencs/lounge,thelounge/lounge,metsjeesus/lounge,realies/lounge,libertysoft3/lounge-autoconnect,sebastiencs/lounge,rockhouse/lounge,williamboman/lounge,MaxLeiter/lounge |
4955203be3f76b40479180fe7dfc80e95223ad88 | database.yml | database.yml | db:
adapter: postgresql
encoding: utf8
database: pg_generate_series
pool: 5
username: postgres
password: postgres
host: "<%= /\Atcp:\/\/([0-9.]+):/.match(ENV['DOCKER_HOST']) ? $1 : 'localhost' %>"
| db:
adapter: postgresql
encoding: utf8
database: pg_generate_series
pool: 5
username: "<%= ENV.fetch('POSTGRES_USER_NAME', 'postgres') %>"
password: "<%= ENV.fetch('POSTGRES_PASSWORD', 'postgres') %>"
host: "<%= ENV.fetch('POSTGRES_HOST', /\Atcp:\/\/([0-9.]+):/.match(ENV['DOCKER_HOST']) ? $1 : 'localhost') %>"
| Set data parameters via env vars | Set data parameters via env vars
| YAML | mit | ryu39/active_record-pg_generate_series,ryu39/active_record-pg_generate_series |
57bb9caefe2851b70e4c9976dd4518a676d6df60 | Configuration/Settings.yaml | Configuration/Settings.yaml | Neos:
Flow:
security:
authentication:
providers:
'Neos.Neos:Backend':
requestPatterns:
'Flowpack.Neos.FrontendLogin:NeosBackend':
pattern: Flowpack\Neos\FrontendLogin\Security\NeosRequestPattern
'Flowpack.Neos.FrontendLogin:Frontend':
provider: PersistedUsernamePasswordProvider
requestPatterns:
'Flowpack.Neos.FrontendLogin:NeosFrontend':
pattern: Flowpack\Neos\FrontendLogin\Security\NeosRequestPattern
patternOptions:
matchFrontend: true
Neos:
userInterface:
translation:
autoInclude:
Flowpack.Neos.FrontendLogin:
- 'NodeTypes/*'
fusion:
autoInclude:
Flowpack.Neos.FrontendLogin: true
modules:
management:
submodules:
frontenduser:
label: 'Flowpack.Neos.FrontendLogin:Modules:module.label'
controller: '\Flowpack\Neos\FrontendLogin\Controller\ModuleController'
description: 'Flowpack.Neos.FrontendLogin:Modules:module.description'
icon: 'fa fa-users'
resource: 'Flowpack.Neos.FrontendLogin:Backend.Module'
privilegeTarget: 'Flowpack.Neos.FrontendLogin:Module'
Flowpack:
Neos:
FrontendLogin:
translation:
packageKey: 'Flowpack.Neos.FrontendLogin'
sourceName: 'Main'
| Neos:
Flow:
security:
authentication:
providers:
'Neos.Neos:Backend':
requestPatterns:
'Flowpack.Neos.FrontendLogin:NeosBackend':
pattern: Flowpack\Neos\FrontendLogin\Security\NeosRequestPattern
'Flowpack.Neos.FrontendLogin:Frontend':
provider: PersistedUsernamePasswordProvider
requestPatterns:
'Flowpack.Neos.FrontendLogin:NeosFrontend':
pattern: Flowpack\Neos\FrontendLogin\Security\NeosRequestPattern
patternOptions:
matchFrontend: true
Neos:
userInterface:
translation:
autoInclude:
Flowpack.Neos.FrontendLogin:
- Main
- Modules
- 'NodeTypes/*'
fusion:
autoInclude:
Flowpack.Neos.FrontendLogin: true
modules:
management:
submodules:
frontenduser:
label: 'Flowpack.Neos.FrontendLogin:Modules:module.label'
controller: '\Flowpack\Neos\FrontendLogin\Controller\ModuleController'
description: 'Flowpack.Neos.FrontendLogin:Modules:module.description'
icon: 'fa fa-users'
resource: 'Flowpack.Neos.FrontendLogin:Backend.Module'
privilegeTarget: 'Flowpack.Neos.FrontendLogin:Module'
Flowpack:
Neos:
FrontendLogin:
translation:
packageKey: 'Flowpack.Neos.FrontendLogin'
sourceName: 'Main'
| Configure Main and Modules translation | TASK: Configure Main and Modules translation
To be able to use the labels in the new UI we need the configuration bit different.
Otherwise the labels don't show up in the xliff.json | YAML | mit | Flowpack/Flowpack.Neos.FrontendLogin,Flowpack/Flowpack.Neos.FrontendLogin |
bf9a137d27c8c56fcf154745198afc6090022c2a | hieradata/class/api_mongo.yaml | hieradata/class/api_mongo.yaml | ---
govuk_safe_to_reboot::can_reboot: 'overnight'
govuk_safe_to_reboot::reason: 'Secondaries will reboot overnight if cluster is healthy'
lv:
mongodb:
pv:
- '/dev/sdb1'
- '/dev/sdd1'
- '/dev/sdf1'
vg: 'backup'
data:
pv: '/dev/sdc1'
vg: 'mongodb'
s3backups:
pv: '/dev/sde1'
vg: 'mongo'
mount:
/var/lib/mongodb:
disk: '/dev/mapper/mongodb-data'
govuk_lvm: 'data'
mountoptions: 'defaults'
/var/lib/automongodbbackup:
disk: '/dev/mapper/backup-mongodb'
govuk_lvm: 'mongodb'
mountoptions: 'defaults'
/var/lib/s3backup:
disk: '/dev/mapper/mongo-s3backups'
govuk_lvm: 's3backups'
mountoptions: 'defaults'
mongodb::server::replicaset_members:
'api-mongo-1':
'api-mongo-2':
'api-mongo-3':
'api-mongo-4':
hidden: true
priority: 0
icinga::client::checks::disk_time_window_minutes: 10
| ---
govuk_safe_to_reboot::can_reboot: 'overnight'
govuk_safe_to_reboot::reason: 'Secondaries will reboot overnight if cluster is healthy'
lv:
mongodb:
pv:
- '/dev/sdb1'
- '/dev/sdd1'
- '/dev/sdf1'
vg: 'backup'
data:
pv:
- '/dev/sdc1'
- '/dev/sdg1'
vg: 'mongodb'
s3backups:
pv: '/dev/sde1'
vg: 'mongo'
mount:
/var/lib/mongodb:
disk: '/dev/mapper/mongodb-data'
govuk_lvm: 'data'
mountoptions: 'defaults'
/var/lib/automongodbbackup:
disk: '/dev/mapper/backup-mongodb'
govuk_lvm: 'mongodb'
mountoptions: 'defaults'
/var/lib/s3backup:
disk: '/dev/mapper/mongo-s3backups'
govuk_lvm: 's3backups'
mountoptions: 'defaults'
mongodb::server::replicaset_members:
'api-mongo-1':
'api-mongo-2':
'api-mongo-3':
'api-mongo-4':
hidden: true
priority: 0
icinga::client::checks::disk_time_window_minutes: 10
| Add additional disk to API Mongo boxes | Add additional disk to API Mongo boxes
This additional 64GB disk has been added to each api-mongo machine on
production and I'm in the process of adding this to staging. Currently
this has been configured manually on production and this will allow it
to be configured by puppet again.
| YAML | mit | alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet |
dc8af7313c12fba8965c612c7c60941ff3c0f289 | config/mongoid.yml | config/mongoid.yml | defaults: &defaults
options:
use_utc: true
use_activesupport_time_zone: true
identity_map_enabled: true
development:
<<: *defaults
sessions:
default:
database: cloudsdale
hosts:
- <%= ENV['MONGO_URL'] || "localhost:27017" %>
options:
safe: false
consistency: :strong
production:
<<: *defaults
sessions:
default:
database: cloudsdale
username: cloudsdale
password: 62148f9b9158ead23c8ace8c1b081055d068a216d3096b95f6399508f6674d6e3bf6ebbfcdbe85b126b431a8674a1d59370918683781976be5cfeba2c89f94b4
hosts:
- 198.27.74.148:27017
- 167.114.0.157:27017
options:
safe: false
consistency: :strong
options:
read: :secondary
write:
w: :majority | defaults: &defaults
options:
use_utc: true
use_activesupport_time_zone: true
identity_map_enabled: true
development:
<<: *defaults
sessions:
default:
database: cloudsdale
hosts:
- <%= ENV['MONGO_URL'] || "localhost:27017" %>
options:
safe: false
consistency: :strong
production:
<<: *defaults
sessions:
default:
database: cloudsdale
username: cloudsdale
password: 62148f9b9158ead23c8ace8c1b081055d068a216d3096b95f6399508f6674d6e3bf6ebbfcdbe85b126b431a8674a1d59370918683781976be5cfeba2c89f94b4
hosts:
- <%= ENV['MONGO_URL'] || "mongo:27017" %>
options:
safe: false
consistency: :strong
options:
read: :secondary
write:
w: :majority | Connect to mongodb on a host specified by the environment. | Connect to mongodb on a host specified by the environment.
| YAML | mit | cloudsdaleapp/cloudsdale-web,cloudsdaleapp/cloudsdale-web,cloudsdaleapp/cloudsdale-web,cloudsdaleapp/cloudsdale-web |
8ba9bb3f67026b0430fce861402fca40e5fca771 | config/sidekiq.yml | config/sidekiq.yml | :verbose: false
:concurrency: 12
:queues:
- [rollbacks, 2]
- [sync, 2]
- [default, 5]
:schedule:
#
# Syntax:
#
# mm hh dd mt wd command
#
# mm minute 0-59
# hh hour 0-23
# dd day of month 1-31
# mt month 1-12
# wd day of week 0-7 (Sunday = 0 or 7)
#
# Online converter: https://crontab.guru/#0_22_*_*_*
#
UpdatesSynchronizerWorker:
cron: "0 22 * * *" # 10 PM every days
description: "UpdatesSynchronizerWorker will run every day at 10pm."
RecacheModelsWorker:
cron: "0 0 * * *" # 0 AM every day
description: "RecacheModelsWorker will run every day at 0am."
ReindexModelsWorker:
cron: "0 0 * * *" # 0 AM every day
description: "ReindexModelsWorker will run every day at 0am."
RunChapterPdfWorker:
cron: "0 2 * * *" # 2 AM every day
description: "RunChapterPdfWorker produces the Tariff PDF."
| :verbose: false
:concurrency: 12
:queues:
- [rollbacks, 2]
- [sync, 2]
- [default, 5]
:schedule:
#
# Syntax:
#
# mm hh dd mt wd command
#
# mm minute 0-59
# hh hour 0-23
# dd day of month 1-31
# mt month 1-12
# wd day of week 0-7 (Sunday = 0 or 7)
#
# Online converter: https://crontab.guru/#0_22_*_*_*
#
UpdatesSynchronizerWorker:
cron: "0 22 * * *" # 10 PM every days
description: "UpdatesSynchronizerWorker will run every day at 10pm."
RecacheModelsWorker:
cron: "0 1 * * *" # 0 AM every day
description: "RecacheModelsWorker will run every day at 0am."
ReindexModelsWorker:
cron: "0 1 * * *" # 0 AM every day
description: "ReindexModelsWorker will run every day at 0am."
RunChapterPdfWorker:
cron: "0 2 * * *" # 2 AM every day
description: "RunChapterPdfWorker produces the Tariff PDF."
| Update scheduled time for Recache and Reindex tasks | Update scheduled time for Recache and Reindex tasks
We discovered while testing on dev and staging that the times on both
appear to be out by an hour due to the app running in UTC meaning that
they run during the previous day and are then not available.
| YAML | mit | bitzesty/trade-tariff-backend,bitzesty/trade-tariff-backend,bitzesty/trade-tariff-backend |
9d447cb969db59d112e717f2938b718f5260d78f | config/sidekiq.yml | config/sidekiq.yml | :verbose: true
:concurrency: 8
:logfile: ./log/sidekiq.json.log
:queues:
- scheduled_publishing
- default
- publishing_api
- asset_manager
- email_alert_api_signup
- bulk_republishing
- sync_checks
- link_checks
- asset_migration
:schedule:
check_all_organisations_links_worker:
cron: '0 1 * * *' # Runs at 1 a.m every day
class: CheckAllOrganisationsLinksWorker
| :verbose: true
:concurrency: 8
:logfile: ./log/sidekiq.json.log
:queues:
- scheduled_publishing
- default
- publishing_api
- asset_manager
- email_alert_api_signup
- bulk_republishing
- link_checks
- asset_migration
:schedule:
check_all_organisations_links_worker:
cron: '0 1 * * *' # Runs at 1 a.m every day
class: CheckAllOrganisationsLinksWorker
| Remove the sync_check Sidekiq queue | Remove the sync_check Sidekiq queue
As the code using it has been removed.
| YAML | mit | alphagov/whitehall,alphagov/whitehall,alphagov/whitehall,alphagov/whitehall |
922906639cdb15c8bc09e0e9daa276a2610bb523 | packages/cl/classyplate.yaml | packages/cl/classyplate.yaml | homepage: ''
changelog-type: markdown
hash: af22c006dd50c3f840e61c3418360ea35bb00f6563b3f0e1cb41a032c4285f83
test-bench-deps: {}
maintainer: nboldi@elte.hu
synopsis: Fuseable type-class based generics
changelog: ! "# Revision history for classyplate\r\n\r\n## 0.1.0.0 -- YYYY-mm-dd\r\n\r\n*
First version. Released on an unsuspecting world.\r\n"
basic-deps:
base: ! '>=4.9 && <4.10'
type-list: ! '>=0.5 && <0.6'
template-haskell: ! '>=2.11 && <2.12'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
author: Nemeth Boldizsar
latest: '0.2.2.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: ''
changelog-type: markdown
hash: 5d32225dc3c445b132d6fc10e7169d15d441007bb3c96e42a7fecbb086caa450
test-bench-deps: {}
maintainer: nboldi@elte.hu
synopsis: Fuseable type-class based generics
changelog: ! "# Revision history for classyplate\r\n\r\n## 0.1.0.0 -- YYYY-mm-dd\r\n\r\n*
First version. Released on an unsuspecting world.\r\n"
basic-deps:
base: ! '>=4.9 && <4.10'
type-list: ! '>=0.5 && <0.6'
template-haskell: ! '>=2.11 && <2.12'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
- '0.3.0.0'
author: Nemeth Boldizsar
latest: '0.3.0.0'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2016-12-05T08:49:27Z | Update from Hackage at 2016-12-05T08:49:27Z | YAML | mit | commercialhaskell/all-cabal-metadata |
ea98b37ecaf74bed67f51869a823e3f7e12bd5fa | packages/li/linux-evdev.yaml | packages/li/linux-evdev.yaml | homepage: http://github.com/bgamari/linux-evdev
changelog-type: ''
hash: 133cb7b0784af72a62aa1336eadccb630097048cb45478c5263717c8795afe68
test-bench-deps: {}
maintainer: bgamari.foss@gmail.com
synopsis: Bindings to Linux evdev input device interface.
changelog: ''
basic-deps:
bytestring: ! '>=0.9 && <0.11'
unix: ! '>=2.6 && <2.8'
base: ! '>=4.0 && <5.0'
time: ! '>=1.4 && <1.9'
all-versions:
- '0.1'
- '0.2'
- '0.3'
- 0.3.1
- 0.3.2
author: Ben Gamari
latest: 0.3.2
description-type: haddock
description: Bindings to Linux evdev input device interface.
license-name: BSD-3-Clause
| homepage: http://github.com/bgamari/linux-evdev
changelog-type: ''
hash: 021bc71880cba6ca10da787763f6455c9e04f98a1c0a33ea0506f78311f3d2be
test-bench-deps: {}
maintainer: bgamari.foss@gmail.com
synopsis: Bindings to Linux evdev input device interface.
changelog: ''
basic-deps:
bytestring: ! '>=0.9 && <0.11'
unix: ! '>=2.6 && <2.8'
base: ! '>=4.0 && <5.0'
time: ! '>=1.4 && <1.10'
all-versions:
- '0.1'
- '0.2'
- '0.3'
- 0.3.1
- 0.3.2
author: Ben Gamari
latest: 0.3.2
description-type: haddock
description: Bindings to Linux evdev input device interface.
license-name: BSD-3-Clause
| Update from Hackage at 2019-12-09T17:12:15Z | Update from Hackage at 2019-12-09T17:12:15Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9f126af8e3f86cc2ebf2bd0d559b5a400e12afb8 | docker-compose.yml | docker-compose.yml | processor:
build: .
links:
- queue
- db
environment:
VIP_DP_AWS_ACCESS_KEY:
VIP_DP_AWS_SECRET_KEY:
VIP_DP_S3_BUCKET:
VIP_DP_SQS_REGION:
VIP_DP_SQS_QUEUE:
VIP_DP_SQS_FAIL_QUEUE:
VIP_DP_RABBITMQ_EXCHANGE:
queue:
image: rabbitmq:3.4.3-management
ports:
- "15672"
environment:
RABBITMQ_NODENAME: vip_data_processor
db:
image: postgres:9.4.1
ports:
- "5432"
environment:
POSTGRES_USER:
POSTGRES_PASSWORD:
| processor:
build: .
links:
- queue
- db
environment:
VIP_DP_AWS_ACCESS_KEY:
VIP_DP_AWS_SECRET_KEY:
VIP_DP_S3_BUCKET:
VIP_DP_SQS_REGION:
VIP_DP_SQS_QUEUE:
VIP_DP_SQS_FAIL_QUEUE:
VIP_DP_RABBITMQ_EXCHANGE:
queue:
image: rabbitmq:3.4.3-management
ports:
- "15672"
hostname: qa-engine-rabbit
db:
image: postgres:9.4.1
ports:
- "5432"
environment:
POSTGRES_USER:
POSTGRES_PASSWORD:
| Fix queue container across runs | [CS] Fix queue container across runs
See docker-library/rabbitmq#6 for more info.
| YAML | bsd-3-clause | votinginfoproject/data-processor |
ac6c644bf5ba853c80621876b35d81674494e346 | recipes/codecarbon/meta.yaml | recipes/codecarbon/meta.yaml | {% set name = "codecarbon" %}
{% set version = "1.2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/codecarbon-{{ version }}.tar.gz
sha256: 8a89a321f6ce371abc20b9e9faf2d743d9276cdcd474c1960f194043532d0412
build:
number: 0
skip: true # [py2k]
entry_points:
- carbonboard = codecarbon.viz.carbonboard:main
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python
run:
- apscheduler
- dash
- dash-bootstrap-components
- dataclasses # [py<37]
- fire
- pandas
- py-cpuinfo
- pynvml
- python
- requests
test:
imports:
- codecarbon
- codecarbon.core
commands:
- pip check
- carbonboard --help
requires:
- pip
about:
home: https://pypi.org/project/codecarbon/
license_file: PLEASE_ADD_LICENSE_FILE
extra:
recipe-maintainers:
- PertuyF
| {% set name = "codecarbon" %}
{% set version = "1.2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/codecarbon-{{ version }}.tar.gz
sha256: 8a89a321f6ce371abc20b9e9faf2d743d9276cdcd474c1960f194043532d0412
build:
number: 0
noarch: python
entry_points:
- carbonboard = codecarbon.viz.carbonboard:main
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=3.7
run:
- apscheduler
- dash
- dash-bootstrap-components
- fire
- pandas
- py-cpuinfo
- pynvml
- python >=3.7
- requests
test:
imports:
- codecarbon
- codecarbon.core
commands:
- pip check
- carbonboard --help
requires:
- pip
about:
home: https://pypi.org/project/codecarbon/
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- PertuyF
| UPDATE make noarch and add license | UPDATE make noarch and add license
| YAML | bsd-3-clause | igortg/staged-recipes,johanneskoester/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.