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
|
---|---|---|---|---|---|---|---|---|---|
0346636440832965e0b7b4a1f4a088eae205f053
|
.travis.yml
|
.travis.yml
|
language: cpp
addons:
apt:
packages:
- python3
- python3-pip
matrix:
include:
# We need use to Ubuntu Trusty to get pip3.
- os: linux
dist: trusty
compiler: clang
env:
- BUILD_TYPE=Debug
- os: linux
dist: trusty
compiler: clang
env:
- BUILD_TYPE=Release
- os: linux
dist: trusty
compiler: gcc
env:
- BUILD_TYPE=Debug
- os: linux
dist: trusty
compiler: gcc
env:
- BUILD_TYPE=Release
- os: osx
compiler: clang
env:
- BUILD_TYPE=Debug
- os: osx
compiler: clang
env:
- BUILD_TYPE=Release
- os: osx
compiler: gcc
env:
- BUILD_TYPE=Debug
- os: osx
compiler: gcc
env:
- BUILD_TYPE=Release
install:
- pip3 install canon --user
- export PATH=$HOME/.local/bin:$PATH
- conan user
- conan --version
script:
- mkdir build
- cd build
- conan install ..
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
- make -j 4
- ctest -V
|
language: cpp
addons:
apt:
packages:
- python3
- python3-pip
matrix:
include:
# We need use to Ubuntu Trusty to get pip3.
- os: linux
dist: trusty
compiler: clang
env:
- BUILD_TYPE=Debug
- os: linux
dist: trusty
compiler: clang
env:
- BUILD_TYPE=Release
- os: linux
dist: trusty
compiler: gcc
env:
- BUILD_TYPE=Debug
- os: linux
dist: trusty
compiler: gcc
env:
- BUILD_TYPE=Release
- os: osx
compiler: clang
env:
- BUILD_TYPE=Debug
- os: osx
compiler: clang
env:
- BUILD_TYPE=Release
- os: osx
compiler: gcc
env:
- BUILD_TYPE=Debug
- os: osx
compiler: gcc
env:
- BUILD_TYPE=Release
install:
- pip3 install canon --user --upgrade
- export PATH=$HOME/.local/bin:$PATH
- conan user
- conan --version
script:
- mkdir build
- cd build
- conan install ..
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
- make -j 4
- ctest -V
|
Install latest Conan on Travis
|
Install latest Conan on Travis
|
YAML
|
isc
|
thejohnfreeman/autocheck,thejohnfreeman/autocheck
|
7c1a8cc682ce6fb10552ef74771832711ba55e33
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "7"
dist: trusty
sudo: false
addons:
chrome: stable
before_install:
- npm install -g [email protected]
script:
- npm run test
|
language: node_js
node_js:
- "7"
dist: trusty
sudo: false
addons:
chrome: stable
before_install:
- npm install -g [email protected]
script:
- npm run test
notifications:
email: false
|
Remove Travis CI email notifications
|
Remove Travis CI email notifications
|
YAML
|
mit
|
parisk/xterm-terminal,parisk/xterm-terminal
|
81e1993d64b54adf7c2438bf1e018e8fad13dd1c
|
helm_deploy/cla-frontend/templates/ingress.yaml
|
helm_deploy/cla-frontend/templates/ingress.yaml
|
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "cla-frontend.fullname" . -}}
{{- $svcPort := .Values.service.port -}}
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
{{- include "cla-frontend.labels" . | nindent 4 }}
annotations:
nginx.ingress.kubernetes.io/whitelist-source-range: "{{ include "cla-frontend.whitelist" . }}"
nginx.ingress.kubernetes.io/server-snippets: |
location /socket.io {
proxy_pass http://nodejs';
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
# proxy_set_header X-Forwarded-Host $http_host;
# proxy_set_header X-Forwarded-Proto $scheme;
# proxy_set_header X-Forwarded-For $remote_addr;
# proxy_cache_bypass $http_upgrade;
}
spec:
tls:
- hosts:
- "{{ .Values.host }}"
{{- if .Values.secretName }}
secretName: {{ .Values.secretName }}
{{- end }}
rules:
- host: "{{ .Values.host }}"
http:
paths:
- path: "/"
backend:
serviceName: {{ $fullName }}-app
servicePort: {{ .Values.service.port }}
- path: "/socket.io/"
backend:
serviceName: {{ $fullName }}-socket-server
servicePort: {{ .Values.socketServer.service.port }}
{{- end }}
|
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "cla-frontend.fullname" . -}}
{{- $svcPort := .Values.service.port -}}
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: {{ $fullName }}
labels:
{{- include "cla-frontend.labels" . | nindent 4 }}
annotations:
nginx.ingress.kubernetes.io/whitelist-source-range: "{{ include "cla-frontend.whitelist" . }}"
nginx.ingress.kubernetes.io/server-snippets: |
location /socket.io {
proxy_pass http://nodejs';
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
spec:
tls:
- hosts:
- "{{ .Values.host }}"
{{- if .Values.secretName }}
secretName: {{ .Values.secretName }}
{{- end }}
rules:
- host: "{{ .Values.host }}"
http:
paths:
- path: "/"
backend:
serviceName: {{ $fullName }}-app
servicePort: {{ .Values.service.port }}
- path: "/socket.io/"
backend:
serviceName: {{ $fullName }}-socket-server
servicePort: {{ .Values.socketServer.service.port }}
{{- end }}
|
Remove unused bits of nginx annotation
|
Remove unused bits of nginx annotation
|
YAML
|
mit
|
ministryofjustice/cla_frontend,ministryofjustice/cla_frontend,ministryofjustice/cla_frontend,ministryofjustice/cla_frontend
|
dd612a85292332f69822ad6b543826786c3e676f
|
hieradata/class/staging/postgresql_primary.yaml
|
hieradata/class/staging/postgresql_primary.yaml
|
lv:
postgresql:
pv:
- '/dev/sdb1'
- '/dev/sdd1'
- '/dev/sde1'
- '/dev/sdf1'
- '/dev/sdg1'
vg: 'backups'
data:
pv: '/dev/sdc1'
vg: 'postgresql'
govuk_postgresql::server::max_connections: 200
|
lv:
postgresql:
pv:
- '/dev/sdb1'
- '/dev/sdd1'
- '/dev/sde1'
- '/dev/sdf1'
- '/dev/sdg1'
- '/dev/sdh1'
vg: 'backups'
data:
pv: '/dev/sdc1'
vg: 'postgresql'
govuk_postgresql::server::max_connections: 200
|
Add an extra disk to staging
|
Add an extra disk to staging
We're seeing alerts about there not being enough space in staging
so we're going to add another disk.
|
YAML
|
mit
|
alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet
|
8f8304fad853dc3724200ebe7ea86a0498d19530
|
.travis.yml
|
.travis.yml
|
language: python
# pick the appropriate requirements file for 2.7 or 3.x
matrix:
include:
- python: "2.7"
env: REQUIREMENTS=requirements2.txt
- python: "3.5"
env: REQUIREMENTS=requirements.txt
- python: "3.6"
env: REQUIREMENTS=requirements.txt
branches:
only:
- master
- development
# install system dependencies
before_install:
- sudo apt-get update
- sudo apt-get install -y build-essential muscle mafft cd-hit
# command to install dependencies
install:
- pip install -r $REQUIREMENTS
# command to run tests
script:
- pytest # or py.test for Python versions 3.5 and below
|
language: python
# pick the appropriate requirements file for 2.7 or 3.x
matrix:
include:
- python: "2.7"
env: REQUIREMENTS=requirements2.txt
- python: "3.5"
env: REQUIREMENTS=requirements.txt
- python: "3.6"
env: REQUIREMENTS=requirements.txt
- python: "3.7"
env: REQUIREMENTS=requirements.txt
- python: "3.8"
env: REQUIREMENTS=requirements.txt
branches:
only:
- master
- development
# install system dependencies
before_install:
- sudo apt-get update
- sudo apt-get install -y build-essential muscle mafft cd-hit
# command to install dependencies
install:
- pip install -r $REQUIREMENTS
# command to run tests
script:
- pytest # or py.test for Python versions 3.5 and below
|
Add Python versions 3.7 and 3.8 to TravisCI
|
Add Python versions 3.7 and 3.8 to TravisCI
|
YAML
|
mit
|
briney/abstar
|
38a09f5425503c2891468c38b22e4a23e649e22a
|
.travis.yml
|
.travis.yml
|
# Config file for automatic testing at travis-ci.org
language: python
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: py.test
|
# Config file for automatic testing at travis-ci.org
sudo: true
language: python
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- sudo add-apt-repository ppa:adamansky/ejdb -y
- sudo apt-get update -qq
- sudo apt-get install ejdb -qqy
- pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: py.test
|
Install EJDB binary for testing
|
Install EJDB binary for testing
|
YAML
|
bsd-2-clause
|
uranusjr/ctypes-ejdb
|
c58c3f07cf7bbe950e4bbcb16bc577abaad5af81
|
.travis.yml
|
.travis.yml
|
# Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "python setup.py sdist"
- "pip install dist/skyfield-*.tar.gz[tests]"
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
- "pip install unittest2"
- "mkdir tmp"
- "cd tmp && curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de405.bsp"
- "cd tmp && curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de421.bsp"
- "cd tmp && curl -O ftp://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/satellites/jup310.bsp"
script:
- "cd tmp && assay --batch skyfield.tests"
|
# Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "python setup.py sdist"
- "pip install $(echo dist/skyfield-*.tar.gz)'[tests]'"
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
- "pip install unittest2"
- "mkdir tmp"
- "cd tmp && curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de405.bsp"
- "cd tmp && curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de421.bsp"
- "cd tmp && curl -O ftp://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/satellites/jup310.bsp"
script:
- "cd tmp && assay --batch skyfield.tests"
|
Fix wildcard in Travis CI script
|
Fix wildcard in Travis CI script
|
YAML
|
mit
|
skyfielders/python-skyfield,skyfielders/python-skyfield
|
3ff0a519cce4d8bfb42b4724baa9c1a5f11644d8
|
src/main/resources/config/application.yml
|
src/main/resources/config/application.yml
|
faf-api:
version: #faf-api.version#
map:
folder-zip-files: ${MAP_UPLOAD_PATH:/content/faf/vault/maps}
folder-preview-path-small: ${MAP_PREVIEW_PATH_SMALL:/content/faf/vault/map_previews/small}
folder-preview-path-large: ${MAP_PREVIEW_PATH_LARGE:/content/faf/vault/map_previews/large}
spring:
application:
name: FAF Java API Prototype
mvc:
favicon:
enabled: false
datasource:
type: com.zaxxer.hikari.HikariDataSource
hikari:
connection-test-query: SELECT 1 FROM DUAL
minimum-idle: 2
maximum-pool-size: 8
jpa:
hibernate:
naming:
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
properties:
hibernate:
current_session_context_class: org.springframework.orm.hibernate5.SpringSessionContext
dialect: org.hibernate.dialect.MySQL5Dialect
profiles:
active: ${API_PROFILE:dev}
server:
port: ${API_PORT:8080}
security:
enable-csrf: true
management:
context-path: /management
port: 8081
security:
enabled: false
|
faf-api:
version: #faf-api.version#
map:
folder-zip-files: ${MAP_UPLOAD_PATH:/content/faf/vault/maps}
folder-preview-path-small: ${MAP_PREVIEW_PATH_SMALL:/content/faf/vault/map_previews/small}
folder-preview-path-large: ${MAP_PREVIEW_PATH_LARGE:/content/faf/vault/map_previews/large}
spring:
application:
name: FAF Java API Prototype
mvc:
favicon:
enabled: false
datasource:
type: com.zaxxer.hikari.HikariDataSource
hikari:
connection-test-query: SELECT 1 FROM DUAL
minimum-idle: 2
maximum-pool-size: 8
jpa:
hibernate:
naming:
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
properties:
hibernate:
current_session_context_class: org.springframework.orm.hibernate5.SpringSessionContext
dialect: org.hibernate.dialect.MySQL5Dialect
profiles:
active: ${API_PROFILE:dev}
server:
port: ${API_PORT:8010}
security:
enable-csrf: true
management:
context-path: /management
port: 8081
security:
enabled: false
|
Use same port as faf-stack
|
Use same port as faf-stack
|
YAML
|
mit
|
FAForever/faf-java-api,FAForever/faf-java-api,FAForever/faf-java-api,micheljung/faf-java-api,micheljung/faf-java-api
|
286e4616fb249a58ece0cb175833998e1a1a8a84
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.6
install:
- pip install codecov
script:
- ./setup.py test
after_success:
- codecov
|
language: python
python:
- 3.6
install:
- pip install codecov
script:
- ./setup.py test
after_success:
- codecov
before_install:
- chmod +x setup.py
|
Fix permisiion denied problem in build
|
Fix permisiion denied problem in build
|
YAML
|
mit
|
truelatysh/hangman
|
fda2d79aa027d9b3b22314e69925294d9a23e7f0
|
.travis.yml
|
.travis.yml
|
language: node_js
services:
- couchdb
node_js:
- "14"
sudo: false
script: npm run $COMMAND
before_script:
- "npm install add-cors-to-couchdb"
- "./node_modules/.bin/add-cors-to-couchdb"
env:
matrix:
- COMMAND=test
- CLIENT=selenium:phantomjs COMMAND=test
- COMMAND=coverage
branches:
only:
- master
|
language: node_js
node_js:
- "14"
sudo: false
script: npm run $COMMAND
env:
matrix:
- COMMAND=test
- CLIENT=selenium:phantomjs COMMAND=test
- COMMAND=coverage
branches:
only:
- master
|
Remove couchdb service from CI
|
Remove couchdb service from CI
|
YAML
|
apache-2.0
|
nolanlawson/pouchdb-all-dbs,nolanlawson/pouchdb-all-dbs,nolanlawson/pouchdb-all-dbs
|
390181005612e2f8ec04b884948850d55d48c196
|
.travis.yml
|
.travis.yml
|
sudo: false
language: rust
rust:
- stable
- beta
- nightly
- 1.19.0
script:
- cargo build
- cargo test
|
sudo: false
language: rust
rust:
- stable
- beta
- nightly
- 1.31.0
script:
- cargo build
- cargo test
matrix:
include:
- rust: 1.19.0
script:
- cargo build
|
Raise minimum tested version to rustc 1.31
|
Raise minimum tested version to rustc 1.31
|
YAML
|
apache-2.0
|
dtolnay/erased-serde
|
abe0d9e4a55926a46a28fb79688def7362ee54c8
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test && sudo $(which npm) run test-root && npm run test:install"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
notifications:
email: false
irc:
channels:
- "chat.freenode.net#pump.io"
on_success: change
on_failure: change
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test && sudo $(which npm) run test-root && npm run test:install"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
notifications:
email: false
irc:
channels:
- "chat.freenode.net#pump.io"
on_success: change
on_failure: change
|
Test Node 6 in Travis
|
Test Node 6 in Travis
|
YAML
|
apache-2.0
|
e14n/pump.io,e14n/pump.io,pump-io/pump.io,pump-io/pump.io,pump-io/pump.io,e14n/pump.io
|
b6469f95d4efc68463b85008742a7aae54f3f3ec
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
sudo: required
services:
- docker
env:
global:
- DOCKER_VERSION=1.12.0-0~trusty
- DOCKER_COMPOSE_VERSION=1.6.2
before_install:
- apt-cache madison docker-engine
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
cache:
directories:
- $HOME/.cache/pip
- /var/lib/docker
before_script:
- docker-compose up -d db
- docker-compose run documentregister setuplocaldb
script:
- docker-compose run documentregister test
|
language: python
python:
- "2.7"
sudo: required
services:
- docker
env:
global:
- DOCKER_VERSION=1.12.0-0~trusty
- DOCKER_COMPOSE_VERSION=1.6.2
before_install:
- apt-cache madison docker-engine
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
- sudo rm -f /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
cache:
directories:
- $HOME/.cache/pip
- /var/lib/docker
before_script:
- docker-compose up -d db
- docker-compose run documentregister setuplocaldb
script:
- docker-compose run documentregister test
|
Remove docker-compose only if it exists
|
Remove docker-compose only if it exists
force the removal of docker-compose so it does not error if the file
does not exist
|
YAML
|
mit
|
nkhumphreys/django-documentregister,nkhumphreys/django-documentregister,nkhumphreys/django-documentregister
|
af419278b8fb1cbde4cb0b2cb93cd29e9be47ecd
|
install_files/ansible-base/roles/ansible-securedrop/tasks/display_onions.yml
|
install_files/ansible-base/roles/ansible-securedrop/tasks/display_onions.yml
|
---
- name: fetch securedrop source ths
fetch: src=/var/lib/tor/services/source/hostname dest=./app-source-ths flat=yes
- name: fetch securedrop document aths
fetch: src=/var/lib/tor/services/source/hostname dest=./app-document-aths flat=yes
- name: fetch securedrop ssh aths
fetch: src=/var/lib/tor/services/ssh/hostname dest=./app-ssh-aths flat=yes
|
---
- name: fetch securedrop source ths
fetch: src=/var/lib/tor/services/source/hostname dest=./app-source-ths flat=yes
- name: fetch securedrop document aths
fetch: src=/var/lib/tor/services/document/hostname dest=./app-document-aths flat=yes
- name: fetch securedrop ssh aths
fetch: src=/var/lib/tor/services/ssh/hostname dest=./app-ssh-aths flat=yes
|
Copy correct hostname for document ATHS
|
Copy correct hostname for document ATHS
|
YAML
|
agpl-3.0
|
jrosco/securedrop,ehartsuyker/securedrop,jaseg/securedrop,micahflee/securedrop,harlo/securedrop,conorsch/securedrop,ageis/securedrop,pwplus/securedrop,harlo/securedrop,chadmiller/securedrop,kelcecil/securedrop,garrettr/securedrop,chadmiller/securedrop,kelcecil/securedrop,GabeIsman/securedrop,jrosco/securedrop,GabeIsman/securedrop,ehartsuyker/securedrop,micahflee/securedrop,pwplus/securedrop,ageis/securedrop,heartsucker/securedrop,jeann2013/securedrop,ageis/securedrop,chadmiller/securedrop,garrettr/securedrop,conorsch/securedrop,kelcecil/securedrop,heartsucker/securedrop,jaseg/securedrop,heartsucker/securedrop,pwplus/securedrop,chadmiller/securedrop,heartsucker/securedrop,conorsch/securedrop,jeann2013/securedrop,pwplus/securedrop,chadmiller/securedrop,GabeIsman/securedrop,harlo/securedrop,jeann2013/securedrop,micahflee/securedrop,kelcecil/securedrop,conorsch/securedrop,ageis/securedrop,ehartsuyker/securedrop,garrettr/securedrop,harlo/securedrop,jeann2013/securedrop,pwplus/securedrop,ehartsuyker/securedrop,garrettr/securedrop,harlo/securedrop,GabeIsman/securedrop,jeann2013/securedrop,jaseg/securedrop,ehartsuyker/securedrop,GabeIsman/securedrop,kelcecil/securedrop,jeann2013/securedrop,jaseg/securedrop,jrosco/securedrop,pwplus/securedrop,conorsch/securedrop,jrosco/securedrop,jaseg/securedrop,harlo/securedrop,heartsucker/securedrop,jrosco/securedrop,chadmiller/securedrop,jaseg/securedrop,GabeIsman/securedrop,kelcecil/securedrop,ehartsuyker/securedrop,micahflee/securedrop,jrosco/securedrop
|
0f2e72668d1a07c71988c8e20f4f90f356de70c8
|
.travis.yml
|
.travis.yml
|
sudo: false
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
os:
- linux
- osx
script:
- ./autogen.sh && ./configure && make -j2
- cd java && mvn test && cd ..
- cd javanano && mvn test && cd ..
- cd python && python setup.py build && python setup.py google_test
- LD_LIBRARY_PATH=../src/.libs cd python && python setup.py build --cpp_implementation && python setup.py google_test --cpp_implementation
- make distcheck -j2
notifications:
email: false
|
sudo: false
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
os:
- linux
- osx
script:
- ./autogen.sh && ./configure && make -j2
- cd java && mvn test && cd ..
- cd javanano && mvn test && cd ..
- cd python && python setup.py build && python setup.py google_test && cd ..
- LD_LIBRARY_PATH=../src/.libs cd python && python setup.py build --cpp_implementation && python setup.py google_test --cpp_implementation && cd ..
- make distcheck -j2
notifications:
email: false
|
Fix for current directory in Travis tests.
|
Fix for current directory in Travis tests.
|
YAML
|
bsd-3-clause
|
google/protobuf,google/protobuf,google/protobuf,Livefyre/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,Livefyre/protobuf,google/protobuf,Livefyre/protobuf,Livefyre/protobuf,google/protobuf,google/protobuf,Livefyre/protobuf,google/protobuf
|
1213e2b1b059f2f72dc4a0a63f3af60dabcf806d
|
.travis.yml
|
.travis.yml
|
language: java
install: true
before_install:
- chmod +x gradlew
- sudo apt-get -y install at-spi2-core
jdk:
- openjdk8
git:
depth: false
addons:
sonarcloud:
organization: "gurkenlabs-github"
services:
- xvfb
cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.sonar/cache'
- '$HOME/.gradle/caches/'
- '$HOME/.gradle/wrapper/'
jobs:
include:
- stage: "Fullbuild"
name: "Build, report coverage, and create Docs"
script: ./gradlew fullbuild --warning-mode all
- stage: "Scan"
name: "Sonarqube Scan"
jdk: openjdk11
script:
export JAVA_HOME= "/usr/local/lib/jvm/openjdk11"
if [ $TRAVIS_PULL_REQUEST = 'false' ]; then
sonar-scanner;
fi
|
language: java
install: true
before_install:
- chmod +x gradlew
- sudo apt-get -y install at-spi2-core
jdk:
- openjdk8
git:
depth: false
addons:
sonarcloud:
organization: "gurkenlabs-github"
services:
- xvfb
cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.sonar/cache'
- '$HOME/.gradle/caches/'
- '$HOME/.gradle/wrapper/'
jobs:
include:
- stage: "Fullbuild"
name: "Build, report coverage, and create Docs"
script: ./gradlew fullbuild --warning-mode all
- stage: "Scan"
name: "Sonarqube Scan"
jdk: openjdk15
script:
if [ $TRAVIS_PULL_REQUEST = 'false' ]; then
sonar-scanner;
fi
|
Use jdk15 for sonar scan and fix syntax error.
|
Use jdk15 for sonar scan and fix syntax error.
|
YAML
|
mit
|
gurkenlabs/litiengine,gurkenlabs/litiengine
|
c51c6e85870a2ff331fcebb7eab6a1ee70b6efd8
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
matrix:
include:
- node_js: iojs-v1
- node_js: iojs-v2
- node_js: "0.10"
- node_js: "0.12"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
notifications:
email:
- [email protected]
- [email protected]
|
sudo: false
language: node_js
matrix:
include:
- node_js: "4.1.x"
- node_js: "iojs"
- node_js: "0.12"
- node_js: "0.10"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
notifications:
email:
- [email protected]
- [email protected]
|
Change list of nodejs versions for testing
|
Change list of nodejs versions for testing
|
YAML
|
mpl-2.0
|
bem-site/gorshochek,bem-site/builder-core
|
214bfdb0dfd1758ee75865a850aa4c6d7b5b5577
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
|
language: ruby
rvm:
- 2.0.0
- 2.1.5
- 2.2.1
|
Update the Rubies we're testing against
|
Update the Rubies we're testing against
|
YAML
|
mit
|
loco2/lolsoap
|
ad41a9c0cc6e3c969e84aa1ba645c85562de80c7
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
script:
- bundle exec jekyll build
- rake 'draft[Hello\, world]'
- rake undraft[hello-world.md]
- grep johnotander/pixyll _site/index.html
- grep post-title _site/index.html
- grep pagination-item _site/index.html
- grep johnotander/pixyll _site/css/pixyll.css
- grep 404 _site/404.html
|
language: ruby
cache: bundler
rvm:
- 2.4
- 2.5
- 2.6
script:
- bundle exec jekyll build
- rake 'draft[Hello\, world]'
- rake undraft[hello-world.md]
- grep johnotander/pixyll _site/index.html
- grep post-title _site/index.html
- grep pagination-item _site/index.html
- grep johnotander/pixyll _site/css/pixyll.css
- grep 404 _site/404.html
|
Remove Ruby 2.3 from Travis
|
Remove Ruby 2.3 from Travis
|
YAML
|
mit
|
kongove/kongove.github.com,kongove/kongove.github.com,galeone/galeone.github.io,kongove/kongove.github.com,galeone/galeone.github.io,galeone/galeone.github.io,tanmaybinaykiya/tanmaybinaykiya.github.io,kongove/kongove.github.com,galeone/galeone.github.io,faustovaz/faustovaz.github.io,grimsa/grimsa.github.io,kongove/kongove.github.com,galeone/galeone.github.io,muodov/blog,deepredsky/deepredsky.github.io,muodov/blog,muodov/blog,faustovaz/faustovaz.github.io,tanmaybinaykiya/tanmaybinaykiya.github.io,deepredsky/deepredsky.github.io,tanmaybinaykiya/tanmaybinaykiya.github.io,grimsa/grimsa.github.io
|
194dd3f040debe8e05a6301fafe0751461e7cbc2
|
.rmt.yml
|
.rmt.yml
|
vcs: git
prerequisites:
- working-copy-check
- display-last-changes
- composer-json-check:
composer: composer
- command:
cmd: composer update
- tests-check:
command: vendor/bin/phpunit --stop-on-failure
- composer-security-check
- composer-stability-check
- command:
cmd: git remote -v
pre-release-actions:
composer-update: ~
changelog-update:
format: simple
dump-commits: true
exclude-merge-commits: true
vcs-commit: ~
version-generator: semantic
version-persister: vcs-tag
post-release-actions:
vcs-publish:
ask-remote-name: true
|
vcs: git
prerequisites:
- working-copy-check
- display-last-changes
- composer-json-check:
composer: composer
- command:
cmd: composer update
- tests-check:
command: phpunit --stop-on-failure
- composer-security-check
- composer-stability-check
- command:
cmd: git remote -v
pre-release-actions:
composer-update: ~
changelog-update:
format: simple
dump-commits: true
exclude-merge-commits: true
vcs-commit: ~
version-generator: semantic
version-persister: vcs-tag
post-release-actions:
vcs-publish:
ask-remote-name: true
|
Use global phpunit version when calling RMT
|
Use global phpunit version when calling RMT
|
YAML
|
mit
|
core23/PiwikBundle,core23/PiwikBundle,core23/PiwikBundle
|
af266c0b83e1b769fd9d90a3fa34a982fec051b2
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: required
env:
matrix:
- TEST_TARGET: test-debian
- TEST_TARGET: test-alpine
before_install:
- sudo apt-get remove docker docker-engine
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt-get update
- sudo apt-get -y install docker-ce
- docker version
- docker info
# prepare docker test requirements
- make update-dependencies
script:
- make $TEST_TARGET
|
dist: trusty
sudo: required
env:
matrix:
- TEST_TARGET: test-debian
- TEST_TARGET: test-alpine
before_install:
- sudo apt-get -y remove docker docker-engine docker-ce
- sudo rm /etc/apt/sources.list.d/docker.list
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt-get update
- sudo apt-get -y install docker-ce
- docker version
- docker info
# prepare docker test requirements
- make update-dependencies
script:
- make $TEST_TARGET
|
Remove old docker.list to avoid getting unstable Docker version
|
Remove old docker.list to avoid getting unstable Docker version
|
YAML
|
mit
|
itsafire/nginx-proxy,kamermans/nginx-proxy,jwilder/nginx-proxy,jwilder/nginx-proxy,itsafire/nginx-proxy,kamermans/nginx-proxy
|
06a71b55344dbe9c38477822951419decc03bd4c
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- jruby-19mode
|
sudo: false
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- jruby-19mode
|
Configure Travis for better build performance
|
[TASK] Configure Travis for better build performance
* set sudo: false so Travis can use their new container-based infrastructure
* enable bundler caching
|
YAML
|
mit
|
EpicCoders/valid_email,KMK-ONLINE/valid_email,badosu/valid_email,silo-co/valid_email,Hacker0x01/valid_email,hallelujah/valid_email
|
c07395b2168c6d0c4c79fd3ee72875230302d1ea
|
.travis.yml
|
.travis.yml
|
sudo: false
language: go
before_script:
- go get -u golang.org/x/tools/cmd/vet
- go get -u github.com/golang/lint/golint
go: tip
script:
- test -z "$(gofmt -s -l -w ./autorest/. | tee /dev/stderr)"
- test -z "$(golint ./... | grep -v 'should have comment' | grep -v 'stutters' | tee /dev/stderr)"
- go vet ./...
- go build -v ./...
- go test -v ./...
|
sudo: false
language: go
before_script:
- go get -u golang.org/x/tools/cmd/vet
- go get -u github.com/golang/lint/golint
go: 1.5
script:
- test -z "$(gofmt -s -l -w ./autorest/. | tee /dev/stderr)"
- test -z "$(golint ./... | grep -v 'should have comment' | grep -v 'stutters' | tee /dev/stderr)"
- go vet ./...
- go build -v ./...
- go test -v ./...
|
Update test go build to 1.5
|
Update test go build to 1.5
|
YAML
|
apache-2.0
|
garimakhulbe/go-autorest,colemickens/go-autorest,Azure/go-autorest
|
f4c07d8c577213e0367f93e99bfc3ad7da276d49
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "5"
- "4"
- "0.12"
- "0.10"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- libsnappy-dev
- realpath
install:
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- mkdir deps
- git clone https://github.com/openvenues/libpostal
- cd libpostal
- ./bootstrap.sh
- ./configure --datadir=$(pwd)/data --prefix=$(realpath $(pwd)/../deps) --bindir=$(realpath $(pwd)/../deps)
- make install
- cd ..
- export CXXFLAGS=-I$(pwd)/deps/include
- export LDFLAGS=-L$(pwd)/deps/lib
- npm install
script:
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/deps/lib
- npm test
|
language: node_js
node_js:
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- libsnappy-dev
- realpath
install:
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- mkdir deps
- git clone https://github.com/openvenues/libpostal
- cd libpostal
- ./bootstrap.sh
- ./configure --datadir=$(pwd)/data --prefix=$(realpath $(pwd)/../deps) --bindir=$(realpath $(pwd)/../deps)
- make install
- cd ..
- export CXXFLAGS=-I$(pwd)/deps/include
- export LDFLAGS=-L$(pwd)/deps/lib
- npm install
script:
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/deps/lib
- npm test
|
Add Node 6 to Travis build
|
[test] Add Node 6 to Travis build
|
YAML
|
mit
|
openvenues/node-postal,openvenues/node-postal,openvenues/node-postal
|
69ed612938f844164b5170731c64df050eebde7a
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
|
language: node_js
node_js:
- "6"
- "5"
- "4"
|
Remove 0.10 and 0.12 tests
|
Remove 0.10 and 0.12 tests
|
YAML
|
mit
|
silas/hapi-fields
|
26b07bafec285d68529f209bf37a6caffa71d356
|
.travis.yml
|
.travis.yml
|
language: clojure
notifications:
irc: "jcsi.ms#qualityclj"
|
language: clojure
notifications:
irc:
channels:
- "jcsi.ms#qualityclj"
use_notice: true
|
Use a notice instead of join/message.
|
Use a notice instead of join/message.
|
YAML
|
epl-1.0
|
quality-clojure/qualityclj
|
bbb8da98ee147aa7e1e4f7981f75bf3462e7a4d8
|
.travis.yml
|
.travis.yml
|
dist: trusty
language: node_js
node_js:
- 8
- 6
- 4
before_install:
- yarn global add greenkeeper-lockfile@1
- npm install -g npm@5
- npm install -g greenkeeper-lockfile@1
install:
- npm install
before_script: greenkeeper-lockfile-update
script: npm run build
# Only the node version 6 job will upload the lockfile
after_script: greenkeeper-lockfile-upload
after_success:
- npm run-script doc
- echo 'node_modules' > .gitignore
- cp node_modules/openlayers/dist/ol-debug.js dist/ol-debug.js
- echo $CNAME > CNAME
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
on:
branch: master
node: '8'
|
dist: trusty
language: node_js
node_js:
- 8
- 6
- 4
before_install:
- yarn global add greenkeeper-lockfile@1
- npm install -g npm@5
- npm install -g greenkeeper-lockfile@1
install:
- npm install
before_script: greenkeeper-lockfile-update
script: npm run build
# Only the node version 6 job will upload the lockfile
after_script: greenkeeper-lockfile-upload
after_success:
- npm run-script doc
- echo 'node_modules' > .gitignore
- echo $CNAME > CNAME
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
on:
branch: master
node: '8'
|
Remove unused ol-debug.js file from Travis build.
|
Remove unused ol-debug.js file from Travis build.
|
YAML
|
bsd-2-clause
|
geops/ole2,geops/ole2
|
f1f3f5ccb6844d0f5c99e82677e8a8a4389bed19
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- "1.9.2"
- "1.9.3"
# - jruby-19mode # JRuby in 1.9 mode - Sinatra fails. Disabled on Mar/15'13
# Disabled for the time being, see https://github.com/dmytro/nagira/issues/9
# - rbx-19mode
env:
- RACK_ENV=test
branches:
only:
- master
script: bundle exec rspec spec
|
language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
# - jruby-19mode # JRuby in 1.9 mode - Sinatra fails. Disabled on Mar/15'13
# Disabled for the time being, see https://github.com/dmytro/nagira/issues/9
# - rbx-19mode
env:
- RACK_ENV=test
branches:
only:
- master
script: bundle exec rspec spec
|
Add ruby 2.0.0 to Travis
|
Add ruby 2.0.0 to Travis
|
YAML
|
mit
|
dmytro/nagira,dmytro/nagira
|
9961d2aa5ab1d4a5a83a219a2018e95dd2bcc95b
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- "pip install -r requirements.txt"
script:
- robot --exclude skip --pythonpath src tests
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- "pip install -r requirements.txt"
script:
- robot --exclude skip --pythonpath src tests
|
Drop support for Python 3.3 (EOL) in Travis
|
Drop support for Python 3.3 (EOL) in Travis
PEP 398 Python 3.3 Release Schedule
https://www.python.org/dev/peps/pep-0398/#id21
|
YAML
|
mit
|
bulkan/robotframework-requests,bulkan/robotframework-requests
|
37b4e5c0bde1f14391598a3b84c63c186c413f78
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
notifications:
email: false
before_install:
- npm install -g grunt-cli
before_script:
- grunt
sudo: false
|
language: node_js
node_js:
- "5.1"
notifications:
email: false
before_install:
- npm install -g grunt-cli
before_script:
- grunt
sudo: false
|
Use NodeJS 5.1 as Travis engine.
|
Use NodeJS 5.1 as Travis engine.
|
YAML
|
mit
|
wilsonodk/xwing,geordanr/xwing,geordanr/xwing,elistevens/xwing,elistevens/xwing,strikegun/xwing,strikegun/xwing,geordanr/xwing,wilsonodk/xwing,strikegun/xwing,wilsonodk/xwing,elistevens/xwing
|
75ff8d48b5f08e3cd5dc18838dc500cd5c3a4514
|
.github/workflows/deploy-documentation.yml
|
.github/workflows/deploy-documentation.yml
|
name: Deploy documentation
on:
push:
branches:
- master
jobs:
deploy_github_pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- name: Cache npm packages
uses: actions/cache@v1
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: NPM install
run: npm ci
- name: Lint TypeScript sources
run: npm run lint
- name: Bootstrap packages
run: npm run bootstrap
- name: Build packages
run: npm run build
- name: Deploy to Github Pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages-test
FOLDER: packages/modelviewer.dev
|
name: Deploy documentation
on:
push:
branches:
- master
jobs:
deploy_github_pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- name: Cache npm packages
uses: actions/cache@v1
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: NPM install
run: npm ci
- name: Lint TypeScript sources
run: npm run lint
- name: Bootstrap packages
run: npm run bootstrap
- name: Build packages
run: npm run build
- name: Prepare documentation artifacts
run: ./packages/modelviewer.dev/scripts/ci-before-deploy.sh
- name: Deploy to Github Pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages-test
FOLDER: packages/modelviewer.dev
|
Add before-deploy step for docs
|
Add before-deploy step for docs
|
YAML
|
apache-2.0
|
google/model-viewer,google/model-viewer,google/model-viewer,google/model-viewer,PolymerLabs/model-viewer,PolymerLabs/model-viewer
|
0d8026ebf7c048a65f30b053f3ce22e7d5e738ee
|
.github/workflows/renovate-go-mod-fix.yaml
|
.github/workflows/renovate-go-mod-fix.yaml
|
#
# DO NOT EDIT THIS FILE
#
# It is automatically copied from https://github.com/pion/.goassets repository.
# If this repository should have package specific CI config,
# remove the repository name from .goassets/.github/workflows/assets-sync.yml.
#
# If you want to update the shared CI config, send a PR to
# https://github.com/pion/.goassets instead of this repository.
#
name: go-mod-fix
on:
push:
branches:
- renovate/*
jobs:
go-mod-fix:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: fix
uses: at-wat/go-sum-fix-action@v0
with:
git_user: Pion Bot
git_email: [email protected]
github_token: ${{ secrets.GITHUB_TOKEN }}
commit_style: squash
push: force
|
#
# DO NOT EDIT THIS FILE
#
# It is automatically copied from https://github.com/pion/.goassets repository.
# If this repository should have package specific CI config,
# remove the repository name from .goassets/.github/workflows/assets-sync.yml.
#
# If you want to update the shared CI config, send a PR to
# https://github.com/pion/.goassets instead of this repository.
#
name: go-mod-fix
on:
push:
branches:
- renovate/*
jobs:
go-mod-fix:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: fix
uses: at-wat/go-sum-fix-action@v0
with:
git_user: Pion Bot
git_email: [email protected]
github_token: ${{ secrets.PIONBOT_PRIVATE_KEY }}
commit_style: squash
push: force
|
Update CI configs to v0.4.6
|
Update CI configs to v0.4.6
Update lint scripts and CI configs.
|
YAML
|
mit
|
pion/rtp
|
3759b57b7e626ca9e446dcf3ec5d05b30f9c9e9a
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "pypy"
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
install:
- pip install coveralls
script:
- coverage run --source=jsonmerge setup.py test
after_success:
- coveralls
|
dist: xenial
language: python
python:
- "pypy"
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
install:
- pip install coveralls
script:
- coverage run --source=jsonmerge setup.py test
after_success:
- coveralls
|
Add Python 3.7, remove 3.3 test from Travis.
|
Add Python 3.7, remove 3.3 test from Travis.
|
YAML
|
mit
|
avian2/jsonmerge
|
27682c92eb7ebc353cb672839edcca1e14290054
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
|
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
|
YAML
|
mit
|
cliffano/nestor,cliffano/nestor
|
b20fe668d0d43a0638c7543b32aebee0ce8e2e93
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.2
script:
- bundle exec rspec
- bundle exec rubocop
install: bundle install --jobs=3 --retry=3
sudo: false
|
language: ruby
rvm:
- 2.2.2
- 2.3
- 2.4
script:
- bundle exec rspec
- bundle exec rubocop
install: bundle install --jobs=3 --retry=3
sudo: false
|
Add Ruby 2.3, 2.4 for testing on Travis
|
Add Ruby 2.3, 2.4 for testing on Travis
|
YAML
|
mit
|
gyng/betabot,gyng/Hudda,gyng/Hudda,gyng/betabot,gyng/betabot
|
3a3735e7cd1fdab04907388139cce3d272a776b9
|
.travis.yml
|
.travis.yml
|
# Configuration for CI build
language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
|
# Configuration for CI build
language: java
jdk:
- oraclejdk8
|
Revert "Also test against openjdk7 and oraclejdk7 (in addition to oraclejdk8)"
|
Revert "Also test against openjdk7 and oraclejdk7 (in addition to oraclejdk8)"
This reverts commit c571553d6ee3ea7dcf1e9d222a75003bb2b7de14.
|
YAML
|
apache-2.0
|
bep/hello-travis
|
dcb34e224d7bab4b53e11c52eea4b4ea40c72725
|
.github/workflows/check_new_versions.yml
|
.github/workflows/check_new_versions.yml
|
---
name: Check new exporter releases
on:
schedule:
- cron: "15 8,16 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
check_new_releases:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup python environment
uses: actions/setup-python@v2
with:
python-version: "3.8"
architecture: "x64"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install ruamel.yaml PyGithub packaging
- name: Run script to update auto package versions
run: python update_templating_versions.py
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
---
name: Check new exporter releases
on:
schedule:
- cron: "15 8,16 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
check_new_releases:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup python environment
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Python dependencies
run: pip install ruamel.yaml PyGithub packaging
- name: Run script to update auto package versions
run: python update_templating_versions.py
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
Update python action to v4.
|
Update python action to v4.
|
YAML
|
apache-2.0
|
lest/prometheus-rpm,lest/prometheus-rpm
|
f8b52968b0ce076e89bd13e3b4758d8a4459b5b3
|
cu-compose/cu-elk/elasticsearch/config/elasticsearch.yml
|
cu-compose/cu-elk/elasticsearch/config/elasticsearch.yml
|
network.host: 0.0.0.0
# this value is required because we set "network.host"
# be sure to modify it appropriately for a production cluster deployment
discovery.zen.minimum_master_nodes: 1
|
network.host: 0.0.0.0
# this value is required because we set "network.host"
# be sure to modify it appropriately for a production cluster deployment
discovery.zen.minimum_master_nodes: 1
script.inline: true
|
Fix groovy script popup error un Kibana
|
Fix groovy script popup error un Kibana
|
YAML
|
agpl-3.0
|
Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit,Treeptik/cloudunit
|
00c35551d864e751cdb1b58809d37661464b82ee
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js: "0.10"
install:
- mkdir nsq
- curl -s 'https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.3.2.linux-amd64.go1.4.1.tar.gz' | tar --strip-components 1 -C nsq -xvz
- npm install
before_script:
- nsq/bin/nsqlookupd >/dev/null 2>&1 &
- nsq/bin/nsqd -lookupd-tcp-address=localhost:4160 >/dev/null 2>&1 &
script:
- npm test
|
language: node_js
node_js: "0.10"
install:
- mkdir nsq
- curl -s 'https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.3.2.linux-amd64.go1.4.1.tar.gz' | tar --strip-components 1 -C nsq -xvz
- npm install
before_script:
- nsq/bin/nsqlookupd >/dev/null 2>&1 &
- nsq/bin/nsqd -lookupd-tcp-address=localhost:4160 >/dev/null 2>&1 &
script:
- npm run lint
- npm test
|
Add linting as a test
|
Add linting as a test
|
YAML
|
mit
|
Bondza/nsqjs-streams
|
6defe4783d21c66c00b3d19253a3ec0f439bcf4b
|
.travis.yml
|
.travis.yml
|
before_install:
- sudo apt-get -qq update
compiler:
- clang
install:
- wget https://github.com/uncrustify/uncrustify/archive/uncrustify-0.61.tar.gz -O /tmp/uncrustify.tar.gz
- tar zxvf /tmp/uncrustify.tar.gz
- pushd uncrustify-uncrustify-0.61 && ./configure --prefix=/usr && make && sudo make install && popd
language: c
script: cd src && make format && make
|
before_install:
- sudo apt-get -qq update
compiler:
- clang
- gcc
install:
- wget https://github.com/uncrustify/uncrustify/archive/uncrustify-0.61.tar.gz -O /tmp/uncrustify.tar.gz
- tar zxvf /tmp/uncrustify.tar.gz
- pushd uncrustify-uncrustify-0.61 && ./configure --prefix=/usr && make && sudo make install && popd
language: c
script: cd src && make format && make
|
Include gcc in compiler matrix
|
Include gcc in compiler matrix
|
YAML
|
bsd-3-clause
|
rcthomas/resist,rcthomas/resist
|
bbae613951170b94a22d143855c1899df882b9c2
|
.travis.yml
|
.travis.yml
|
# brian's standard Travis CI config for Perl 5 modules
# https://github.com/briandfoy/brians_perl_modules_travis_config
# This file is licensed under the Artistic License 2.0
sudo: false
language: perl
perl:
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
env:
- OLD_DEVEL_COVER=0
matrix:
include:
- perl: 5.8
env: OLD_DEVEL_COVER=1
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- if [ "$OLD_DEVEL_COVER" = "0" ]; then cpanm --quiet --notest Devel::Cover; fi
- if [ "$OLD_DEVEL_COVER" = "1" ]; then cpanm --quiet --notest Devel::[email protected]; fi
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
|
# brian's standard Travis CI config for Perl 5 modules
# https://github.com/briandfoy/brians_perl_modules_travis_config
# This file is licensed under the Artistic License 2.0
sudo: false
language: perl
perl:
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
env:
- OLD_DEVEL_COVER=0
matrix:
include:
- perl: 5.8
env: OLD_DEVEL_COVER=1
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- if [ "$OLD_DEVEL_COVER" = "0" ]; then cpanm --quiet --notest Devel::Cover; fi
- if [ "$OLD_DEVEL_COVER" = "1" ]; then cpanm --quiet --notest Devel::[email protected]; fi
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
|
Update Travis up to v5.30
|
Update Travis up to v5.30
|
YAML
|
artistic-2.0
|
briandfoy/PPI-App-ppi_version-BDFOY,briandfoy/PPI-App-ppi_version-BDFOY
|
ef88e69b9317b44f2462f56a3acc218a5bab42fa
|
.travis.yml
|
.travis.yml
|
language: c # whatever
install: sudo apt-get install -qq --no-install-recommends curl devscripts git libyaml-perl man-db perl
script: make all maintainer-check check && sudo make install && sudo make uninstall
|
language: c # whatever
before_install: sudo apt-get update
install: sudo apt-get install -qq --no-install-recommends curl devscripts git libyaml-perl man-db perl
script: make all maintainer-check check && sudo make install && sudo make uninstall
|
Call apt-get update in Travis CI configuration
|
Call apt-get update in Travis CI configuration
Apparently, some build machines are provided without up to date APT
lists.
|
YAML
|
mit
|
petere/pex
|
f74bcba20cf39a01f6d281687867dfac922252eb
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.4
install:
- gem install scss-lint
- pip install flake8
- npm install
script:
- npm test
|
language: python
python:
- 3.4
install:
- gem install scss-lint
- pip install flake8
- pip install -r requirements.txt
- npm install
script:
- npm test
|
Add dependencies installation to Travis build
|
Add dependencies installation to Travis build
|
YAML
|
mit
|
judsonsam/tekautoday,judsonsam/tekautoday,judsonsam/tekautoday,judsonsam/tekautoday
|
35b4cf2d58873839eace62a29b5e5f4640f1ebe6
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
|
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
before_script:
"pushd spec/dummy && RAILS_ENV=test bundle exec rake db:create; popd"
|
Set up test DB before running tests.
|
Travis: Set up test DB before running tests.
|
YAML
|
agpl-3.0
|
oneclickorgs/rticles,chrismear/rticles,oneclickorgs/rticles,oneclickorgs/rticles,chrismear/rticles
|
eaf6ca7e879966cf1f56ae3d87ddb09da0c6557c
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
env:
- MONGO_DRIVER=mongo
matrix:
include:
- php: 5.6
env: MONGO_DRIVER=mongo COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: 7.0
env: ADAPTER_VERSION="^1.0.0" MONGO_DRIVER=mongodb
sudo: false
cache:
directories:
- $HOME/.composer/cache
services: mongodb
before_install:
- yes '' | pecl -q install -f $MONGO_DRIVER
- if [ "x${ADAPTER_VERSION}" != "x" ]; then composer require "alcaeus/mongo-php-adapter=${ADAPTER_VERSION}" --ignore-platform-reqs; fi
install:
- composer update $COMPOSER_FLAGS
script:
- ./vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
global:
- DRIVER_VERSION="stable"
- ADAPTER_VERSION="^1.0.0"
matrix:
include:
- php: 5.6
env: DRIVER_VERSION="1.5.8" PREFER_LOWEST="--prefer-lowest"
cache:
directories:
- $HOME/.composer/cache
services: mongodb
install:
- composer self-update
- if [[ ${TRAVIS_PHP_VERSION:0:2} == "5." ]]; then yes '' | pecl -q install -f mongo-${DRIVER_VERSION}; fi
- if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then pecl install -f mongodb-${DRIVER_VERSION}; fi
- if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then composer require "alcaeus/mongo-php-adapter=${ADAPTER_VERSION}" --ignore-platform-reqs; fi
- composer update ${PREFER_LOWEST}
script:
- ./vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
Test against PHP 7.1 as well
|
Test against PHP 7.1 as well
|
YAML
|
mit
|
alcaeus/DoctrineMongoDBBundle,malarzm/DoctrineMongoDBBundle,malarzm/DoctrineMongoDBBundle,alcaeus/DoctrineMongoDBBundle,doctrine/DoctrineMongoDBBundle
|
6067394aa7d472efb497a0dfa8098d4f45b80ff3
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby-19mode # JRuby in 1.9 mode
- rbx-2
before_install:
- gem update bundler
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
matrix:
exclude:
- rvm: rbx
gemfile: gemfiles/4.0.gemfile
include:
- rvm: 2.3.1
gemfile: gemfiles/5.0.gemfile
|
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby-19mode # JRuby in 1.9 mode
- rbx-2
before_install:
- gem update bundler
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
matrix:
exclude:
- rvm: rbx
gemfile: gemfiles/4.0.gemfile
include:
- rvm: 2.2.2
gemfile: gemfiles/5.0.gemfile
- rvm: 2.3.1
gemfile: gemfiles/5.0.gemfile
|
Add Ruby 2.2.2 + Rails 5 test combination
|
Add Ruby 2.2.2 + Rails 5 test combination
|
YAML
|
mit
|
nathanl/authority,nathanl/authority
|
36e2b8930b1c7fca9bc8077e0ac97bee940ad3eb
|
wercker.yml
|
wercker.yml
|
box: pjvds/[email protected]
|
box: pjvds/[email protected]
services:
- wercker/[email protected]
build:
steps:
- script:
name: set environment variables
code: export REDIS_ADDR=$WERCKER_REDIS_URL
|
Add redis service with environment variables
|
Wercker: Add redis service with environment variables
|
YAML
|
mit
|
canthefason/r2dq
|
9f73ce48a41c6876d98433f729f2fab51ddd406e
|
docker/docker-compose.yml
|
docker/docker-compose.yml
|
---
version: '2.2'
services:
redis:
build:
context: ../
dockerfile: docker/redis/Dockerfile
command: redis-server
ports:
- 6379:6379
base:
build:
context: ../
dockerfile: docker/base/Dockerfile
worker:
build:
context: ../
dockerfile: docker/worker/Dockerfile
depends_on:
- base
- redis
command: bash -c 'sleep 20 && /app/bin/worker'
scale: 3
engine:
build:
context: ../
dockerfile: docker/engine/Dockerfile
depends_on:
- base
- redis
command: bash -c 'sleep 20 && /app/bin/engine'
volumes:
- data:/app/data
bootstrap:
build:
context: ../
dockerfile: docker/bootstrap/Dockerfile
command: python3.5 /app/bin/populate_db --overwrite-db
volumes:
- data:/app/data
nginx:
build:
context: ../
dockerfile: docker/nginx/Dockerfile
depends_on:
- flask
command: /usr/sbin/nginx
ports:
- 80:80
networks:
- default
flask:
build:
context: ../
dockerfile: docker/flask/Dockerfile
command: python3.5 /app/run.py
ports:
- 5000:5000
networks:
- default
volumes:
- data:/app/data
volumes:
data:
networks:
default:
|
---
version: '2.2'
services:
redis:
build:
context: ../
dockerfile: docker/redis/Dockerfile
command: redis-server
# ports:
# - 6379:6379
networks:
- default
base:
build:
context: ../
dockerfile: docker/base/Dockerfile
worker:
build:
context: ../
dockerfile: docker/worker/Dockerfile
depends_on:
- base
- redis
command: bash -c 'sleep 20 && /app/bin/worker'
scale: 3
networks:
- default
engine:
build:
context: ../
dockerfile: docker/engine/Dockerfile
depends_on:
- base
- redis
command: bash -c 'sleep 20 && /app/bin/engine'
volumes:
- data:/app/data
networks:
- default
bootstrap:
build:
context: ../
dockerfile: docker/bootstrap/Dockerfile
command: python3.5 /app/bin/populate_db --overwrite-db
volumes:
- data:/app/data
nginx:
build:
context: ../
dockerfile: docker/nginx/Dockerfile
depends_on:
- flask
command: /usr/sbin/nginx
ports:
- 80:80
networks:
- default
flask:
build:
context: ../
dockerfile: docker/flask/Dockerfile
command: python3.5 /app/run.py
networks:
- default
volumes:
- data:/app/data
volumes:
data:
networks:
default:
|
Fix networking in docker compose
|
Fix networking in docker compose
|
YAML
|
mit
|
pwnbus/scoring_engine,pwnbus/scoring_engine,pwnbus/scoring_engine,pwnbus/scoring_engine
|
2e62e364726000c72d31ebbd5311bc01b280029b
|
wercker.yml
|
wercker.yml
|
box: wercker/nodejs
build:
steps:
- npm-install
deploy:
steps:
- add-to-known_hosts:
hostname: server.octohost.io
- add-ssh-key:
keyname: KEY
- script:
name: Push to octohost
code: |
git push $GIT_REMOTE master
after-steps:
- sherzberg/slack-notify:
subdomain: ouisirfudge
token: $SLACK_TOKEN
channel: "#general"
|
box: wercker/nodejs
build:
steps:
- npm-install
after-steps:
- wantedly/pretty-slack-notify:
webhook_url: $SLACK_WEBHOOK_URL
deploy:
steps:
- add-to-known_hosts:
hostname: server.octohost.io
- add-ssh-key:
keyname: KEY
- script:
name: Push to octohost
code: |
git push $GIT_REMOTE master
after-steps:
- wantedly/pretty-slack-notify:
webhook_url: $SLACK_WEBHOOK_URL
|
Switch to alternate Slack Notify.
|
Switch to alternate Slack Notify.
|
YAML
|
apache-2.0
|
octohost/www
|
a1579dfabcf07eeb863dc803926220c8ffeb5f7f
|
docs/devsite-help/toc.yml
|
docs/devsite-help/toc.yml
|
- name: Client library help
items:
- name: Getting started
href: getting-started.md
- name: Troubleshooting
href: troubleshooting.md
- name: Emulator support
href: emulators.md
- name: Supported platforms
href: platforms.md
- name: Package names
href: package-names.md
- name: Page streaming
href: page-streaming.md
- name: Resource names and IDs
href: resource-names.md
- name: API layers
href: api-layers.md
- name: Call settings
href: call-settings.md
- name: Resource clean-up
href: cleanup.md
- name: Versioning
href: versioning.md
|
- name: Client library help
items:
- name: Getting started
href: getting-started.md
- name: Troubleshooting
href: troubleshooting.md
- name: Emulator support
href: emulators.md
- name: Supported platforms
href: platforms.md
- name: Package names
href: package-names.md
- name: Page streaming
href: page-streaming.md
- name: Resource names and IDs
href: resource-names.md
- name: API layers
href: api-layers.md
- name: Call settings
href: call-settings.md
- name: Resource clean-up
href: cleanup.md
- name: Versioning
href: versioning.md
- name: GAX v4 breaking changes
href: breaking-gax4.md
|
Add TOC entry for GAX v4 breaking changes
|
docs: Add TOC entry for GAX v4 breaking changes
Without this, it looks like the file isn't actually published on
cloud.google.com.
|
YAML
|
apache-2.0
|
jskeet/gcloud-dotnet,googleapis/google-cloud-dotnet,googleapis/google-cloud-dotnet,googleapis/google-cloud-dotnet
|
fd7bb0ae9aa9b0188e8c3b95aad889399695e9a0
|
.badwolf.yml
|
.badwolf.yml
|
script:
- pip install -i http://pypi.douban.com/simple/ --trusted-host=pypi.douban.com -r dev-requirements.txt
- python setup.py develop
- py.test --cov=badwolf -v
notification:
email: [email protected]
|
script:
- pip install -i http://pypi.douban.com/simple/ --trusted-host=pypi.douban.com -r dev-requirements.txt
- python setup.py develop
- py.test --cov=badwolf -v
notification:
email: [email protected]
|
Send notification email to tech group
|
Send notification email to tech group
|
YAML
|
mit
|
bosondata/badwolf,bosondata/badwolf,bosondata/badwolf
|
6aa9e020c225422edc67aa199063214e8b55810d
|
packages/co/continued-fraction.yaml
|
packages/co/continued-fraction.yaml
|
homepage: https://hub.darcs.net/vmchale/continued-fraction#readme
changelog-type: ''
hash: 450e6d11c9877cbb0afd8bab3a20da3bbe687fd728483d165d298f458198f6bf
test-bench-deps:
continued-fraction: -any
base: -any
hspec: -any
criterion: -any
maintainer: [email protected]
synopsis: Types and functions for working with continued fractions in Haskell
changelog: ''
basic-deps:
free: -any
base: ! '>=4.9 && <5'
recursion-schemes: ! '>=5.0'
all-versions:
- '0.1.0.0'
- '0.1.0.3'
author: Vanessa McHale
latest: '0.1.0.3'
description-type: markdown
description: ! "# continued-fraction\n\nThis is a library for working with continued
fractions and rational\napproximations in Haskell.\n\n## The pitch\n\n * Simple,
easy to use library\n * Documentation with examples\n\n## The anti-pitch\n\n *
Not optimized for performance\n * Missing some features present in other libraries\n"
license-name: BSD3
|
homepage: https://hub.darcs.net/vmchale/continued-fraction#readme
changelog-type: ''
hash: 8b45ed830b0c4283155a556090b810d1e831af5727f7ca1196ccef2f87c50bb2
test-bench-deps:
continued-fraction: -any
base: -any
hspec: -any
criterion: -any
maintainer: [email protected]
synopsis: Types and functions for working with continued fractions in Haskell
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
recursion-schemes: ! '>=5.0'
all-versions:
- '0.1.0.0'
- '0.1.0.3'
- '0.1.0.4'
author: Vanessa McHale
latest: '0.1.0.4'
description-type: markdown
description: ! "# continued-fraction\n\nThis is a library for working with continued
fractions and rational\napproximations in Haskell. You can find documentation\n[here](https://hackage.haskell.org/package/continued-fraction).\n\n##
The pitch\n\n * Simple, easy to use library\n * Documentation with examples\n\n##
The anti-pitch\n\n * Not optimized for performance\n * Missing some features present
in other libraries\n"
license-name: BSD3
|
Update from Hackage at 2018-01-08T20:10:26Z
|
Update from Hackage at 2018-01-08T20:10:26Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
058718953187c361ec9c0217fecd60ded4cb0a41
|
.rubocop.yml
|
.rubocop.yml
|
AllCops:
Exclude:
- db/schema.rb
- web/node_modules/**/*
Documentation:
Enabled: false
Metrics/LineLength:
Max: 120
Exclude:
- db/**/*.rb
- spec/**/*.rb
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/NestedParenthesizedCalls:
Enabled: false
Style/BlockDelimiters:
Exclude:
- config/routes.rb
|
AllCops:
Exclude:
- db/schema.rb
- web/node_modules/**/*
Documentation:
Enabled: false
Metrics/LineLength:
Max: 120
Exclude:
- db/**/*.rb
- spec/**/*.rb
Metrics/BlockLength:
Exclude:
- spec/**/*.rb
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/NestedParenthesizedCalls:
Enabled: false
Style/BlockDelimiters:
Exclude:
- config/routes.rb
|
Exclude specs from RuboCop BlockLength rule
|
Exclude specs from RuboCop BlockLength rule
|
YAML
|
mit
|
RailsRoading/wissle,RailsRoading/wissle,RailsRoading/wissle
|
7e33938ae46bc36edc0832324b34ec5b6284862f
|
.rubocop.yml
|
.rubocop.yml
|
inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 1.9
Include:
- "**/*.cap"
- "Gemfile"
- "Rakefile"
- "appsignal.gemspec"
Exclude:
- "tmp/**/*"
- "gemfiles/vendor/**/*"
- "vendor/**/*"
- "benchmark.rake"
DisplayCopNames: true
UseCache: true
CacheRootDirectory: ./tmp
Style/Documentation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
Layout/AlignParameters:
EnforcedStyle: with_fixed_indentation
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
Layout/MultilineOperationIndentation:
EnforcedStyle: indented
Style/HashSyntax:
EnforcedStyle: hash_rockets
Layout/AlignHash:
EnforcedLastArgumentHashStyle: ignore_implicit
Layout/IndentArray:
EnforcedStyle: consistent
Style/EmptyMethod:
EnforcedStyle: expanded
Style/MethodMissing:
Exclude:
- "lib/appsignal/extension.rb"
- "lib/appsignal/transaction.rb"
Style/TrailingUnderscoreVariable:
Enabled: false
Style/FileName:
Exclude:
- "ext/Rakefile"
Metrics/BlockLength:
Exclude:
- "Rakefile"
# Metrics/LineLength:
# Max: 80
|
inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 1.9
Include:
- "**/*.cap"
- "Gemfile"
- "Rakefile"
- "appsignal.gemspec"
Exclude:
- "pkg/**/*"
- "tmp/**/*"
- "gemfiles/vendor/**/*"
- "vendor/**/*"
- "benchmark.rake"
DisplayCopNames: true
UseCache: true
CacheRootDirectory: ./tmp
Style/Documentation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
Layout/AlignParameters:
EnforcedStyle: with_fixed_indentation
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
Layout/MultilineOperationIndentation:
EnforcedStyle: indented
Style/HashSyntax:
EnforcedStyle: hash_rockets
Layout/AlignHash:
EnforcedLastArgumentHashStyle: ignore_implicit
Layout/IndentArray:
EnforcedStyle: consistent
Style/EmptyMethod:
EnforcedStyle: expanded
Style/MethodMissing:
Exclude:
- "lib/appsignal/extension.rb"
- "lib/appsignal/transaction.rb"
Style/TrailingUnderscoreVariable:
Enabled: false
Style/FileName:
Exclude:
- "ext/Rakefile"
Metrics/BlockLength:
Exclude:
- "Rakefile"
# Metrics/LineLength:
# Max: 80
|
Exclude `pkg/` dir in RuboCop
|
Exclude `pkg/` dir in RuboCop [ci skip]
Used by `rake publish` to build different gem versions. No need to
validate them locally, as we wouldn't commit this directory either.
|
YAML
|
mit
|
appsignal/appsignal-ruby,appsignal/appsignal,appsignal/appsignal-ruby,appsignal/appsignal,appsignal/appsignal-ruby,appsignal/appsignal-ruby,matrinox/appsignal-ruby,matrinox/appsignal-ruby,matrinox/appsignal-ruby
|
499f08946c35d5b23df692bb70ded9cdfd49c790
|
.rubocop.yml
|
.rubocop.yml
|
---
inherit_from: .rubocop_todo.yml
require: rubocop-performance
AllCops:
TargetRubyVersion: 2.5
NewCops: enable
Layout/LineLength:
Max: 123
Exclude:
- 'lib/gitlab/client/*'
- 'spec/**/*'
Metrics/BlockLength:
Exclude:
- 'spec/**/*'
Metrics/ParameterLists:
MaxOptionalParameters: 4
Style/Documentation:
Enabled: false
Style/ClassAndModuleChildren:
Exclude:
- 'lib/gitlab/*'
- 'lib/gitlab/client/*'
Lint/NonDeterministicRequireOrder:
Enabled: false
|
---
inherit_from: .rubocop_todo.yml
require: rubocop-performance
AllCops:
TargetRubyVersion: 2.5
NewCops: disable
Layout/LineLength:
Max: 123
Exclude:
- 'lib/gitlab/client/*'
- 'spec/**/*'
Metrics/BlockLength:
Exclude:
- 'spec/**/*'
Metrics/ParameterLists:
MaxOptionalParameters: 4
Style/Documentation:
Enabled: false
Style/ClassAndModuleChildren:
Exclude:
- 'lib/gitlab/*'
- 'lib/gitlab/client/*'
Lint/NonDeterministicRequireOrder:
Enabled: false
|
Disable new cops in Rubocop
|
Disable new cops in Rubocop
|
YAML
|
bsd-2-clause
|
nanofi/gitlab,NARKOZ/gitlab,nanofi/gitlab,NARKOZ/gitlab
|
1012a6544d623b6b2a231c9d89aeb2c0efedf85d
|
cloudbuild.yaml
|
cloudbuild.yaml
|
# See https://cloud.google.com/cloud-build/docs/build-config
steps:
- name: gcr.io/cloud-builders/docker
entrypoint: "/usr/bin/make"
args:
- "push-images"
- "TAG=$_GIT_TAG"
- name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
entrypoint: "/usr/bin/make"
args:
- "deploy"
- "TAG=$_GIT_TAG"
substitutions:
# variables set by kubernetes/test-infra/images/builder
# set by image-builder to vYYYYMMDD-hash
_GIT_TAG: "12345"
|
# See https://cloud.google.com/cloud-build/docs/build-config
steps:
- id: build-image
name: gcr.io/cloud-builders/docker
entrypoint: "/usr/bin/make"
args:
- "push-images"
- "TAG=$_GIT_TAG"
- id: deploy-staging
name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
entrypoint: "/usr/bin/make"
args:
- "deploy"
- "TAG=$_GIT_TAG"
waitFor:
- build-image
substitutions:
# variables set by kubernetes/test-infra/images/builder
# set by image-builder to vYYYYMMDD-hash
_GIT_TAG: "12345"
|
Add stage ids and wait for image build
|
Add stage ids and wait for image build
|
YAML
|
apache-2.0
|
kubernetes/registry.k8s.io,kubernetes/registry.k8s.io
|
583e110e5731c19ca53da52de361b14d407726a7
|
data/deployments/production/sesi_rocquencourt.yaml
|
data/deployments/production/sesi_rocquencourt.yaml
|
---
mountpoints:
/srv/storage/space:
device: saam:/srv/storage/space
fstype: nfs
options:
- rw
- soft
- intr
- rsize=8192
- wsize=8192
- noauto
- x-systemd.automount
- x-systemd.device-timeout=10
/srv/softwareheritage/objects:
device: saam:/srv/softwareheritage/objects
fstype: nfs
options:
- rw
- soft
- intr
- rsize=8192
- wsize=8192
- noauto
- x-systemd.automount
- x-systemd.device-timeout=10
|
---
tmpfs::size: "%{::memory.swap.total_bytes}"
tmpfs::nr_inodes: 1m
mountpoints:
/srv/storage/space:
device: saam:/srv/storage/space
fstype: nfs
options:
- rw
- soft
- intr
- rsize=8192
- wsize=8192
- noauto
- x-systemd.automount
- x-systemd.device-timeout=10
/srv/softwareheritage/objects:
device: saam:/srv/softwareheritage/objects
fstype: nfs
options:
- rw
- soft
- intr
- rsize=8192
- wsize=8192
- noauto
- x-systemd.automount
- x-systemd.device-timeout=10
swap:
device: LABEL="swap"
fstype: swap
options:
- sw
/tmp:
device: tmpfs
fstype: tmpfs
options:
- "size=%{lookup('tmpfs::size')}"
- "nr_inodes=%{lookup('tmpfs::nr_inodes')}"
- noexec
- nosuid
- nodev
- relatime
- rw
|
Add swap and tmp on tmpfs for Rocquencourt prod workers
|
Add swap and tmp on tmpfs for Rocquencourt prod workers
|
YAML
|
apache-2.0
|
SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site
|
6b71493b39af5119c01250b089c6ff58c7dcc953
|
metadata/com.fabienli.dokuwiki.yml
|
metadata/com.fabienli.dokuwiki.yml
|
Categories:
- Internet
License: GPL-3.0-or-later
SourceCode: https://github.com/fabienli/DokuwikiAndroid
IssueTracker: https://github.com/fabienli/DokuwikiAndroid/issues
AutoName: Dokuwiki
Description: Android application to access a dokuwiki and keep pages in local cache.
RepoType: git
Repo: https://github.com/fabienli/DokuwikiAndroid
Builds:
- versionName: v0.8
versionCode: 52
commit: v0.8
subdir: app
gradle:
- yes
- versionName: v0.10
versionCode: 54
commit: v0.10
subdir: app
gradle:
- yes
- versionName: v0.11
versionCode: 55
commit: v0.11
subdir: app
gradle:
- yes
- versionName: v0.14
versionCode: 58
commit: v0.14
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags v\d+\.\d+
CurrentVersion: v0.14
CurrentVersionCode: 58
|
Categories:
- Internet
License: GPL-3.0-or-later
SourceCode: https://github.com/fabienli/DokuwikiAndroid
IssueTracker: https://github.com/fabienli/DokuwikiAndroid/issues
AutoName: Dokuwiki
Description: Android application to access a dokuwiki and keep pages in local cache.
RepoType: git
Repo: https://github.com/fabienli/DokuwikiAndroid
Builds:
- versionName: v0.8
versionCode: 52
commit: v0.8
subdir: app
gradle:
- yes
- versionName: v0.10
versionCode: 54
commit: v0.10
subdir: app
gradle:
- yes
- versionName: v0.11
versionCode: 55
commit: v0.11
subdir: app
gradle:
- yes
- versionName: v0.14
versionCode: 58
commit: v0.14
subdir: app
gradle:
- yes
- versionName: v0.16
versionCode: 60
commit: v0.16
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags v\d+\.\d+
CurrentVersion: v0.16
CurrentVersionCode: 60
|
Update Dokuwiki to v0.16 (60)
|
Update Dokuwiki to v0.16 (60)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
932294a59b1ee4cb348ae309a6d30aea69cd5b1a
|
metadata/slowscript.warpinator.yml
|
metadata/slowscript.warpinator.yml
|
Categories:
- Internet
License: GPL-3.0-only
SourceCode: https://github.com/slowscript/warpinator-android
IssueTracker: https://github.com/slowscript/warpinator-android/issues
Changelog: https://github.com/slowscript/warpinator-android/releases
AutoName: Warpinator
RepoType: git
Repo: https://github.com/slowscript/warpinator-android.git
Builds:
- versionName: '1.3'
versionCode: 1030
commit: v1.3
subdir: app
gradle:
- yes
- versionName: 1.3.1
versionCode: 1031
commit: 1845359ed79470cd7d66de784eb04af4c5e50900
subdir: app
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 1.3.1
CurrentVersionCode: 1031
|
Categories:
- Internet
License: GPL-3.0-only
SourceCode: https://github.com/slowscript/warpinator-android
IssueTracker: https://github.com/slowscript/warpinator-android/issues
Changelog: https://github.com/slowscript/warpinator-android/releases
AutoName: Warpinator
RepoType: git
Repo: https://github.com/slowscript/warpinator-android.git
Builds:
- versionName: '1.3'
versionCode: 1030
commit: v1.3
subdir: app
gradle:
- yes
- versionName: 1.3.1
versionCode: 1031
commit: 1845359ed79470cd7d66de784eb04af4c5e50900
subdir: app
gradle:
- yes
- versionName: 1.3.2
versionCode: 1032
commit: e5d1ea32d9fa6edf622466ec9a81a03a495336d9
subdir: app
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 1.3.2
CurrentVersionCode: 1032
|
Update Warpinator to 1.3.2 (1032)
|
Update Warpinator to 1.3.2 (1032)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
a445093ce091b05dc0ea687b121361aa0b74d49d
|
ansible/roles/etcd/tasks/github-release.yml
|
ansible/roles/etcd/tasks/github-release.yml
|
---
- name: etcd version
set_fact:
etcd_version: "v2.2.0"
- name: Create download dir
file: path="/tmp/.ansible/files" state=directory
- name: Download tar file
get_url:
url: "https://github.com/coreos/etcd/releases/download/{{ etcd_version }}/etcd-{{ etcd_version }}-linux-amd64.tar.gz"
dest: /tmp/.ansible/files
validate_certs: False
environment:
http_proxy: "{{ http_proxy|default('') }}"
https_proxy: "{{ https_proxy|default('') }}"
- name: Extract tar file
unarchive:
src: "/tmp/.ansible/files/etcd-{{ etcd_version }}-linux-amd64.tar.gz"
dest: /usr/local
copy: no
- name: Create symlinks
file:
src: /usr/local/etcd-{{ etcd_version }}-linux-amd64/{{ item }}
dest: /usr/local/bin/{{ item }}
state: link
with_items:
- etcd
- etcdctl
- name: Create upstart script
copy: src=etcd.upstart dest=/etc/init/etcd.conf
- name: Create config directory
file: path="/etc/etcd" state=directory
|
---
- name: etcd version
set_fact:
etcd_version: "v2.2.3"
- name: Create download dir
file: path="/tmp/.ansible/files" state=directory
- name: Download tar file
get_url:
url: "https://github.com/coreos/etcd/releases/download/{{ etcd_version }}/etcd-{{ etcd_version }}-linux-amd64.tar.gz"
dest: /tmp/.ansible/files
validate_certs: False
environment:
http_proxy: "{{ http_proxy|default('') }}"
https_proxy: "{{ https_proxy|default('') }}"
- name: Extract tar file
unarchive:
src: "/tmp/.ansible/files/etcd-{{ etcd_version }}-linux-amd64.tar.gz"
dest: /usr/local
copy: no
- name: Create symlinks
file:
src: /usr/local/etcd-{{ etcd_version }}-linux-amd64/{{ item }}
dest: /usr/local/bin/{{ item }}
state: link
with_items:
- etcd
- etcdctl
- name: Create upstart script
copy: src=etcd.upstart dest=/etc/init/etcd.conf
- name: Create config directory
file: path="/etc/etcd" state=directory
|
Update ansible etcd version to 2.2.3
|
Update ansible etcd version to 2.2.3
|
YAML
|
apache-2.0
|
piosz/contrib,k8s-packages-power/contrib,jojimt/contrib,kow3ns/contrib,Q-Lee/contrib,eastbanctech/kubernetes-contrib,Wattpad/kubernetes-contrib,vishpat/contrib,lavalamp/contrib,chiradeep/contrib,k8s-packages-power/contrib,lavalamp/contrib,rchicoli/kubernetes-contrib,gemini-project/contrib,jojimt/contrib,marketlogicsoftware/contrib,Q-Lee/contrib,luxas/contrib,moul/contrib,girishkalele/contrib,Q-Lee/contrib,simonswine/kubernetes-contrib,grodrigues3/contrib,mikedanese/contrib,jojimt/contrib,vishpat/contrib,vishpat/contrib,devlinmr/contrib,adamschaub/contrib,danushkaf/contrib,ixdy/kubernetes-contrib,lewislyou/contrib,pwittrock/contrib,ingvagabund/contrib,Q-Lee/contrib,widgetpl/contrib,Pensu/contrib,atosatto/kubernetes-contrib,piosz/contrib,gmarek/contrib,stephenrlouie/contrib,luxas/contrib,krzyzacy/contrib,gemini-project/contrib,aledbf/contrib,kow3ns/contrib,krzyzacy/contrib,timstclair/kube-contrib,danehans/contrib,upmc-enterprises/contrib,vishpat/contrib,chiradeep/contrib,mikedanese/contrib,aledbf/contrib,gouyang/contrib,grodrigues3/contrib,timstclair/kube-contrib,thockin/contrib,foxish/contrib,rmmh/kubernetes-contrib,kskalski/contrib,x13n/contrib,foxish/contrib,grodrigues3/contrib,pwittrock/contrib,danehans/contrib,fcvarela/contrib,eparis/contrib,jojimt/contrib,ixdy/kubernetes-contrib,danushkaf/contrib,olark/kubernetes-contrib,danehans/contrib,gouyang/contrib,eparis/contrib,adamschaub/contrib,verb/contrib,lewislyou/contrib,adamschaub/contrib,jcmoraisjr/k8s-contrib,gmarek/contrib,kokhang/contrib,verb/contrib,olark/kubernetes-contrib,freehan/contrib,jdavis7257/contrib,piosz/contrib,kskalski/contrib,danushkaf/contrib,eastbanctech/kubernetes-contrib,gmarek/contrib,xialonglee/contrib,jcmoraisjr/k8s-contrib,jdavis7257/contrib,aknuds1/contrib,widgetpl/contrib,aknuds1/contrib,eparis/contrib,andrew-j-price/contrib,grodrigues3/contrib,olark/kubernetes-contrib,spxtr/contrib,caesarxuchao/contrib,atosatto/kubernetes-contrib,hongchaodeng/contrib,Wattpad/kubernetes-contrib,verb/contrib,rchicoli/kubernetes-contrib,lavalamp/contrib,girishkalele/contrib,ingvagabund/contrib,Wattpad/kubernetes-contrib,krzyzacy/contrib,fcvarela/contrib,thockin/contrib,gemini-project/contrib,aknuds1/contrib,upmc-enterprises/contrib,gemini-project/contrib,danushkaf/contrib,danehans/contrib,thockin/contrib,upmc-enterprises/contrib,moul/contrib,jdavis7257/contrib,krzyzacy/contrib,moul/contrib,micheleorsi/contrib,pwittrock/contrib,kokhang/contrib,foxish/contrib,kow3ns/contrib,caesarxuchao/contrib,cdemers/contrib,hongchaodeng/contrib,moul/contrib,rmmh/kubernetes-contrib,stephenrlouie/contrib,girishkalele/contrib,olark/kubernetes-contrib,widgetpl/contrib,hongchaodeng/contrib,freehan/contrib,jasonbishop/contrib,freehan/contrib,luxas/contrib,krzyzacy/contrib,k8s-packages-power/contrib,micheleorsi/contrib,jdavis7257/contrib,spxtr/contrib,piosz/contrib,devlinmr/contrib,ingvagabund/contrib,ingvagabund/contrib,ingvagabund/contrib,danehans/contrib,marketlogicsoftware/contrib,andrew-j-price/contrib,girishkalele/contrib,gouyang/contrib,luxas/contrib,simonswine/kubernetes-contrib,lavalamp/contrib,endocode/contrib,x13n/contrib,thockin/contrib,kokhang/contrib,fcvarela/contrib,Wattpad/kubernetes-contrib,gmarek/contrib,micheleorsi/contrib,fcvarela/contrib,jcmoraisjr/k8s-contrib,danushkaf/contrib,devlinmr/contrib,aknuds1/contrib,stephenrlouie/contrib,marketlogicsoftware/contrib,cdemers/contrib,chiradeep/contrib,thockin/contrib,andrew-j-price/contrib,rmmh/kubernetes-contrib,endocode/contrib,piosz/contrib,Pensu/contrib,mikedanese/contrib,aledbf/contrib,kokhang/contrib,cdemers/contrib,aknuds1/contrib,atosatto/kubernetes-contrib,widgetpl/contrib,grodrigues3/contrib,eparis/contrib,girishkalele/contrib,krousey/contrib,upmc-enterprises/contrib,Pensu/contrib,vishpat/contrib,verb/contrib,upmc-enterprises/contrib,adamschaub/contrib,rmmh/kubernetes-contrib,devlinmr/contrib,kow3ns/contrib,Pensu/contrib,eastbanctech/kubernetes-contrib,atosatto/kubernetes-contrib,cdemers/contrib,aknuds1/contrib,kokhang/contrib,gmarek/contrib,xialonglee/contrib,timstclair/kube-contrib,simonswine/kubernetes-contrib,jasonbrooks/contrib,andrew-j-price/contrib,kow3ns/contrib,xialonglee/contrib,caesarxuchao/contrib,adamschaub/contrib,xialonglee/contrib,cdemers/contrib,timstclair/kube-contrib,freehan/contrib,upmc-enterprises/contrib,chiradeep/contrib,micheleorsi/contrib,eparis/contrib,vishpat/contrib,endocode/contrib,lewislyou/contrib,atosatto/kubernetes-contrib,caesarxuchao/contrib,lewislyou/contrib,gmarek/contrib,jasonbrooks/contrib,eastbanctech/kubernetes-contrib,gemini-project/contrib,spxtr/contrib,x13n/contrib,jcmoraisjr/k8s-contrib,luxas/contrib,stephenrlouie/contrib,jasonbishop/contrib,xialonglee/contrib,Wattpad/kubernetes-contrib,lavalamp/contrib,stephenrlouie/contrib,x13n/contrib,caesarxuchao/contrib,kskalski/contrib,ixdy/kubernetes-contrib,verb/contrib,simonswine/kubernetes-contrib,mikedanese/contrib,k8s-packages-power/contrib,krousey/contrib,spxtr/contrib,cdemers/contrib,jojimt/contrib,jcmoraisjr/k8s-contrib,jasonbishop/contrib,spxtr/contrib,moul/contrib,andrew-j-price/contrib,piosz/contrib,pwittrock/contrib,jdavis7257/contrib,pwittrock/contrib,ixdy/kubernetes-contrib,foxish/contrib,girishkalele/contrib,aledbf/contrib,andrew-j-price/contrib,jdavis7257/contrib,ixdy/contrib,ixdy/contrib,k8s-packages-power/contrib,jasonbishop/contrib,x13n/contrib,gouyang/contrib,fcvarela/contrib,hongchaodeng/contrib,chiradeep/contrib,devlinmr/contrib,rchicoli/kubernetes-contrib,rchicoli/kubernetes-contrib,fcvarela/contrib,marketlogicsoftware/contrib,Pensu/contrib,simonswine/kubernetes-contrib,eastbanctech/kubernetes-contrib,jasonbrooks/contrib,jcmoraisjr/k8s-contrib,rchicoli/kubernetes-contrib,widgetpl/contrib,k8s-packages-power/contrib,eparis/contrib,freehan/contrib,verb/contrib,ixdy/kubernetes-contrib,jasonbrooks/contrib,gouyang/contrib,aledbf/contrib,kow3ns/contrib,krousey/contrib,pwittrock/contrib,micheleorsi/contrib,endocode/contrib,hongchaodeng/contrib,timstclair/kube-contrib,jojimt/contrib,x13n/contrib,endocode/contrib,widgetpl/contrib,mikedanese/contrib,marketlogicsoftware/contrib,jasonbishop/contrib,chiradeep/contrib,Wattpad/kubernetes-contrib,devlinmr/contrib,foxish/contrib,freehan/contrib,eastbanctech/kubernetes-contrib,gemini-project/contrib,thockin/contrib,kokhang/contrib,lavalamp/contrib,kskalski/contrib,kskalski/contrib,ixdy/kubernetes-contrib,stephenrlouie/contrib,grodrigues3/contrib,olark/kubernetes-contrib,endocode/contrib,micheleorsi/contrib,rchicoli/kubernetes-contrib,hongchaodeng/contrib,olark/kubernetes-contrib,caesarxuchao/contrib,Q-Lee/contrib,spxtr/contrib,marketlogicsoftware/contrib,rmmh/kubernetes-contrib,Pensu/contrib,krousey/contrib,kskalski/contrib,luxas/contrib,ixdy/contrib,lewislyou/contrib,jasonbrooks/contrib,rmmh/kubernetes-contrib,aledbf/contrib,timstclair/kube-contrib,foxish/contrib,krousey/contrib,gouyang/contrib,jasonbrooks/contrib,adamschaub/contrib,atosatto/kubernetes-contrib,danushkaf/contrib,jasonbishop/contrib,chiradeep/contrib,simonswine/kubernetes-contrib,danehans/contrib,ingvagabund/contrib,krousey/contrib,lewislyou/contrib,krzyzacy/contrib,Q-Lee/contrib,xialonglee/contrib,mikedanese/contrib
|
849e7edf115ebd44c683099b3333db336a342e7c
|
metadata/com.marcdonald.hibi.yml
|
metadata/com.marcdonald.hibi.yml
|
Categories:
- Science & Education
- Writing
License: Apache-2.0
AuthorName: Marc Donald
AuthorWebSite: https://marcdonald.com/
WebSite: https://marcdonald.com/hibi
SourceCode: https://github.com/marcdonald/hibi
IssueTracker: https://github.com/marcdonald/hibi/issues
Changelog: https://github.com/MarcDonald/Hibi/releases
AutoName: Hibi
RepoType: git
Repo: https://github.com/marcdonald/hibi
Builds:
- versionName: 1.3.2
versionCode: 34
commit: v1.3.2;34
subdir: app
gradle:
- yes
- versionName: 1.3.3
versionCode: 35
commit: v1.3.3;35
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v;%c
UpdateCheckMode: Tags
CurrentVersion: 1.3.3
CurrentVersionCode: 35
|
Categories:
- Science & Education
- Writing
License: Apache-2.0
AuthorName: Marc Donald
AuthorWebSite: https://marcdonald.com/
WebSite: https://marcdonald.com/hibi
SourceCode: https://github.com/marcdonald/hibi
IssueTracker: https://github.com/marcdonald/hibi/issues
Changelog: https://github.com/MarcDonald/Hibi/releases
AutoName: Hibi
RepoType: git
Repo: https://github.com/marcdonald/hibi
Builds:
- versionName: 1.3.2
versionCode: 34
commit: v1.3.2;34
subdir: app
gradle:
- yes
- versionName: 1.3.3
versionCode: 35
commit: v1.3.3;35
subdir: app
gradle:
- yes
- versionName: 1.4.0
versionCode: 36
commit: v1.4.0;36
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v;%c
UpdateCheckMode: Tags
CurrentVersion: 1.4.0
CurrentVersionCode: 36
|
Update Hibi to 1.4.0 (36)
|
Update Hibi to 1.4.0 (36)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
7a1003acb62b8591f7e7eca5307393bb252bf9c4
|
metadata/com.omgodse.notally.yml
|
metadata/com.omgodse.notally.yml
|
Categories:
- Writing
License: GPL-3.0-only
AuthorName: Om Godse
AuthorEmail: [email protected]
SourceCode: https://github.com/OmGodse/Notally
IssueTracker: https://github.com/OmGodse/Notally/issues
Donate: https://www.patreon.com/omgodse
AutoName: Notally
RepoType: git
Repo: https://github.com/OmGodse/Notally
Builds:
- versionName: '3.0'
versionCode: 25
commit: v3.0
subdir: app
gradle:
- yes
- versionName: '3.2'
versionCode: 27
commit: v3.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '3.2'
CurrentVersionCode: 27
|
Categories:
- Writing
License: GPL-3.0-only
AuthorName: Om Godse
AuthorEmail: [email protected]
SourceCode: https://github.com/OmGodse/Notally
IssueTracker: https://github.com/OmGodse/Notally/issues
Donate: https://www.patreon.com/omgodse
AutoName: Notally
RepoType: git
Repo: https://github.com/OmGodse/Notally
Builds:
- versionName: '3.0'
versionCode: 25
commit: v3.0
subdir: app
gradle:
- yes
- versionName: '3.2'
versionCode: 27
commit: v3.2
subdir: app
gradle:
- yes
- versionName: '3.3'
versionCode: 28
commit: v3.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '3.3'
CurrentVersionCode: 28
|
Update Notally to 3.3 (28)
|
Update Notally to 3.3 (28)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
588491efb66e97fd06132a6114fc0e9f95196916
|
metadata/de.pixart.messenger.yml
|
metadata/de.pixart.messenger.yml
|
Categories:
- Internet
License: GPL-3.0-only
AuthorName: Christian Schneppe
SourceCode: https://github.com/kriztan/Pix-Art-Messenger
IssueTracker: https://github.com/kriztan/Pix-Art-Messenger/issues
Changelog: https://github.com/kriztan/Pix-Art-Messenger/blob/HEAD/CHANGELOG.md
AutoName: Pix-Art Messenger
RepoType: git
Repo: https://github.com/kriztan/Pix-Art-Messenger
Builds:
- versionName: 2.0.2
versionCode: 233
commit: 2.0.2
gradle:
- standard
- versionName: 2.1.0 (beta 2018-07-15)
versionCode: 237
commit: 2.1.0.3
gradle:
- standard
- versionName: 2.1.0
versionCode: 238
commit: 2.1.0
gradle:
- standard
AutoUpdateMode: Version %v
UpdateCheckMode: Tags ^[0-9.]+$
CurrentVersion: 2.1.0
CurrentVersionCode: 238
|
Categories:
- Internet
License: GPL-3.0-only
AuthorName: Christian Schneppe
SourceCode: https://github.com/kriztan/Pix-Art-Messenger
IssueTracker: https://github.com/kriztan/Pix-Art-Messenger/issues
Changelog: https://github.com/kriztan/Pix-Art-Messenger/blob/HEAD/CHANGELOG.md
AutoName: Pix-Art Messenger
RepoType: git
Repo: https://github.com/kriztan/Pix-Art-Messenger
Builds:
- versionName: 2.0.2
versionCode: 233
commit: 2.0.2
gradle:
- standard
- versionName: 2.1.0 (beta 2018-07-15)
versionCode: 237
commit: 2.1.0.3
gradle:
- standard
- versionName: 2.1.0
versionCode: 238
commit: 2.1.0
gradle:
- standard
- versionName: 2.1.1
versionCode: 243
commit: 2.1.1
gradle:
- standard
AutoUpdateMode: Version %v
UpdateCheckMode: Tags ^[0-9.]+$
CurrentVersion: 2.1.1
CurrentVersionCode: 243
|
Update Pix-Art Messenger to 2.1.1 (243)
|
Update Pix-Art Messenger to 2.1.1 (243)
|
YAML
|
agpl-3.0
|
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
|
2ec71f80babfea71f127136a1f4f0c7c512da679
|
packages/li/lightstep-haskell.yaml
|
packages/li/lightstep-haskell.yaml
|
homepage: https://github.com/ethercrow/lightstep-haskell#readme
changelog-type: ''
hash: 748c6f764ba3694eebc8385c2e7f2c23eac8ce9ea31bfc92538b0b024f9a5cc7
test-bench-deps: {}
maintainer: Dmitry Ivanov <[email protected]>
synopsis: LightStep OpenTracing client library
changelog: ''
basic-deps:
stm: -any
base: ! '>=4.12 && <5'
http2-client-grpc: -any
unordered-containers: -any
text: -any
safe-exceptions: -any
http2-client: -any
async: -any
containers: -any
lens: -any
chronos: -any
proto-lens: -any
mtl: -any
lightstep-haskell: -any
transformers: -any
proto-lens-runtime: -any
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
- 0.1.3
- 0.1.4
- 0.1.5
author: ''
latest: 0.1.5
description-type: haddock
description: LightStep OpenTracing client library. Uses GRPC transport via proto-lens.
license-name: Apache-2.0
|
homepage: https://github.com/ethercrow/lightstep-haskell#readme
changelog-type: ''
hash: 36315a3a74c0e81c7436b7d23bcb635157e4f985f22e571bb8fa555fb3d84f2c
test-bench-deps: {}
maintainer: Dmitry Ivanov <[email protected]>
synopsis: LightStep OpenTracing client library
changelog: ''
basic-deps:
stm: -any
base: ! '>=4.12 && <5'
http2-client-grpc: -any
unordered-containers: -any
text: -any
safe-exceptions: -any
http2-client: -any
async: -any
containers: -any
lens: -any
chronos: -any
proto-lens: -any
mtl: -any
lightstep-haskell: -any
transformers: -any
proto-lens-runtime: -any
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
- 0.1.3
- 0.1.4
- 0.1.5
- 0.1.6
author: ''
latest: 0.1.6
description-type: haddock
description: LightStep OpenTracing client library. Uses GRPC transport via proto-lens.
license-name: Apache-2.0
|
Update from Hackage at 2019-10-29T13:20:39Z
|
Update from Hackage at 2019-10-29T13:20:39Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
968e96f0a67a09040dffc2803558ab812aa44455
|
config/automation/front_door_opened.yaml
|
config/automation/front_door_opened.yaml
|
- alias: 'Main door open'
initial_state: True
trigger:
- platform: state
entity_id: binary_sensor.door_window_sensor_158d00016d6ddb
to: 'on'
action:
- service: light.turn_on
data:
entity_id: light.gateway_light_34ce0088d9ad
- service: xiaomi.play_ringtone
data:
gw_sid: 14cc20ec7106
ringtone_id: 20
ringtone_vol: 20
- alias: 'Main door close'
initial_state: True
trigger:
- platform: state
entity_id: binary_sensor.door_window_sensor_158d00016d6ddb
to: 'off'
action:
- service: light.turn_off
data:
entity_id: light.gateway_light_34ce0088d9ad
- service: xiaomi.stop_ringtone
data:
gw_sid: 14cc20ec7106
|
- alias: 'Main door open'
initial_state: True
trigger:
- platform: state
entity_id: binary_sensor.door_window_sensor_158d00016d6ddb
to: 'on'
action:
- service: light.turn_on
data:
entity_id: light.gateway_light_34ce0088d9ad
# - service: xiaomi.play_ringtone
# data:
# gw_sid: 14cc20ec7106
# ringtone_id: 20
# ringtone_vol: 20
- alias: 'Main door close'
initial_state: True
trigger:
- platform: state
entity_id: binary_sensor.door_window_sensor_158d00016d6ddb
to: 'off'
action:
- service: light.turn_off
data:
entity_id: light.gateway_light_34ce0088d9ad
# - service: xiaomi.stop_ringtone
# data:
# gw_sid: 14cc20ec7106
|
Comment out front door ringtone-malfunctioning.
|
Comment out front door ringtone-malfunctioning.
|
YAML
|
mit
|
pluskal/Home-AssistantConfig,pluskal/Home-AssistantConfig
|
de135748bccc3d0403a098a3bcb9067fb844ea78
|
.github/workflows/gh-pages.yml
|
.github/workflows/gh-pages.yml
|
name: Deploy Documentation
on:
pull_request:
branches:
- release
jobs:
deploy-docs:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
# Install dependencies
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install -r requirements/pip_requirements.txt
pip install -r requirements/doc_requirements.txt
# Build the documentation
- name: Build the documentation
run: |
cd docs
make html
# Push the documentation's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
cname: openpnm.org
|
name: Deploy Documentation
on:
workflow_dispatch:
pull_request:
branches:
- release
jobs:
deploy-docs:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
# Install dependencies
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install -r requirements/pip_requirements.txt
pip install -r requirements/doc_requirements.txt
# Build the documentation
- name: Build the documentation
run: |
cd docs
make html
# Push the documentation's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
cname: openpnm.org
|
Add option to docs action to run on demand
|
Add option to docs action to run on demand
|
YAML
|
mit
|
PMEAL/OpenPNM
|
d1ed3ff34a7319c56bab8cff98134d7aa814a5b9
|
.github/workflows/prettier.yml
|
.github/workflows/prettier.yml
|
name: Prettier
on:
push:
branches: [ master, next ]
pull_request:
branches: [ master, next ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Prettify code
uses: creyD/[email protected]
with:
dry: True
prettier_options: --write **/*{.php,.md,.js,.css,.html}
prettier_plugins: '@prettier/plugin-php'
|
name: Prettier
on:
push:
branches: [ master, next ]
pull_request:
branches: [ master, next ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Prettify code
uses: creyD/[email protected]
with:
dry: True
prettier_options: --write **/*{.php,.md,.js,.css,.html}
prettier_plugins: '@prettier/plugin-php'
|
Fix version to be with a "v"
|
Fix version to be with a "v"
|
YAML
|
mit
|
sebastianks/volcano
|
4c22d7e9f1d98bf8e734440cef30ad5cfe093c51
|
jetstreamdockerenv/group_vars/imageinstances.yml
|
jetstreamdockerenv/group_vars/imageinstances.yml
|
---
image: "{{ base_name }}"
volume_name: galaxy-gie-all-20170417
image_names:
- bgruening/docker-jupyter-notebook:16.01.1
- shiltemann/ethercalc-galaxy-ie
|
---
image: "{{ base_name }}"
volume_name: galaxy-gie-all-20170419
image_names:
- bgruening/docker-jupyter-notebook:17.05
- shiltemann/ethercalc-galaxy-ie
|
Update GIE Docker image volume
|
Update GIE Docker image volume
|
YAML
|
mit
|
galaxyproject/infrastructure-playbook,galaxyproject/infrastructure-playbook
|
9e87ee1fb0819b2db33546a9c240f400e3dfa2b8
|
test/config/default.yml
|
test/config/default.yml
|
app:
port: 6789
# namespace:
# The base path for this application. Leave empty or omit for none.
namespace: /test
# trustProxy:
# Whether to set the Express 'trust proxy' setting, which tells Express to
# use the X-Forwarded-* headers to get client information like IP address and
# protocol.
trustProxy: true
# secret:
# The secret key to use for Express sessions.
secret: please use something better than this
# mongoUrl:
# The connection URL to use for MongoDB (to store sessions).
mongoUrl: mongodb://localhost/test-connect-sessions
logging:
# level:
# The minimum log level that will be shown in console output. Levels are:
# silly:0, input:1, verbose:2, prompt:3, debug:4, http:4.5, info:5, data:6,
# help:7, warn:8, error:9
level: http
auth:
# digestFile:
# The file containing usernames and hashed passwords in htdigest format
# (lines like 'user:realm:hash' where hash = md5(username:realm:password))
digestFile: test/config/test-users.digest
|
app:
port: 9099
# namespace:
# The base path for this application. Leave empty or omit for none.
namespace: /test
# trustProxy:
# Whether to set the Express 'trust proxy' setting, which tells Express to
# use the X-Forwarded-* headers to get client information like IP address and
# protocol.
trustProxy: true
# secret:
# The secret key to use for Express sessions.
secret: please use something better than this
# mongoUrl:
# The connection URL to use for MongoDB (to store sessions).
mongoUrl: mongodb://localhost/test-connect-sessions
logging:
# level:
# The minimum log level that will be shown in console output. Levels are:
# silly:0, input:1, verbose:2, prompt:3, debug:4, http:4.5, info:5, data:6,
# help:7, warn:8, error:9
level: http
auth:
# digestFile:
# The file containing usernames and hashed passwords in htdigest format
# (lines like 'user:realm:hash' where hash = md5(username:realm:password))
digestFile: test/config/test-users.digest
|
Change test port to 9099
|
Change test port to 9099
|
YAML
|
mit
|
nylen/node-web-template,nylen/node-web-media-player
|
a9b759dbfb01a0de50da531f4552d578160a044b
|
.zuul.yaml
|
.zuul.yaml
|
- project:
check:
jobs:
- monasca-tempest-python-mysql:
voting: false
- monasca-tempest-python-postgresql:
voting: false
- monasca-tempest-java-mysql:
voting: false
- monasca-tempest-java-postgresql:
voting: false
- legacy-monasca-thresh-maven-build
gate:
jobs:
- legacy-monasca-thresh-maven-build
post:
jobs:
- legacy-monasca-thresh-localrepo-upload
|
- project:
check:
jobs:
- monasca-tempest-python-influxdb:
voting: false
- monasca-tempest-python-cassandra:
voting: false
- monasca-tempest-java-influxdb:
voting: false
- monasca-tempest-java-cassandra:
voting: false
- legacy-monasca-thresh-maven-build
gate:
jobs:
- legacy-monasca-thresh-maven-build
post:
jobs:
- legacy-monasca-thresh-localrepo-upload
|
Fix Zuul job names to enable tempest tests
|
Fix Zuul job names to enable tempest tests
Zuul job names have been changed in 877f3d60. Update Zuul configuration
to reflect these changes, so that tempest tests are run.
Change-Id: I0b706627eafb7c1d4651679c28b61436e34138ba
Depends-On: https://review.openstack.org/550795
|
YAML
|
apache-2.0
|
stackforge/monasca-thresh,stackforge/monasca-thresh,openstack/monasca-thresh,openstack/monasca-thresh,openstack/monasca-thresh
|
1fb3ea69436f242eb570255ce101310438fe2a9a
|
example/src/main/resources/application.yml
|
example/src/main/resources/application.yml
|
spring:
profiles:
active: receiver,ssl
hono:
client:
host: localhost
tenant:
id: DEFAULT_TENANT
device:
id: 4711
---
spring:
profiles: receiver
hono:
client:
port: 15671
---
spring:
profiles: ssl
hono:
client:
hostnameVerificationRequired: false
trustStorePath: target/config/hono-demo-certs-jar/trusted-certs.pem
|
spring:
jmx:
enabled: false
profiles:
active: receiver,ssl
hono:
client:
host: localhost
tenant:
id: DEFAULT_TENANT
device:
id: 4711
---
spring:
profiles: receiver
hono:
client:
port: 15671
---
spring:
profiles: ssl
hono:
client:
hostnameVerificationRequired: false
trustStorePath: target/config/hono-demo-certs-jar/trusted-certs.pem
|
Disable JMX exporter for command line consumer.
|
Disable JMX exporter for command line consumer.
Signed-off-by: Kai Hudalla <[email protected]>
|
YAML
|
epl-1.0
|
dejanb/hono,dejanb/hono,dejanb/hono
|
3e615f77cd2a004d88b4f0e927884ed5ae597c93
|
.github/workflows/copy-pr-template-to-dependabot-prs.yaml
|
.github/workflows/copy-pr-template-to-dependabot-prs.yaml
|
name: Copy PR template to Dependabot PRs
on:
pull_request_target:
types: [opened]
jobs:
copy_pr_template:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- name: Fetch PR template
id: fetch-pr-template
uses: juliangruber/read-file-action@v1
with:
path: .github/pull_request_template.md
- name: Create comment
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: ${{ github.event.number }}
body: ${{ steps.fetch-pr-template.outputs.content }}
|
name: Copy PR template to Dependabot PRs
on:
pull_request_target:
types: [opened]
permissions:
contents: read
pull-requests: write
jobs:
copy_pr_template:
name: Copy PR template to Dependabot PR
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- name: Post PR template as a comment
uses: actions/github-script@v6
with:
script: |
const fs = require('fs')
const body = [
"pull_request_template.md",
".github/pull_request_template.md",
"docs/pull_request_template.md",
].
filter(path => fs.existsSync(path)).
map(path => fs.readFileSync(path)).
join("\n")
if (body !== "") {
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body
})
}
|
Create workflow to copy PR template onto Dependabot PRs
|
Create workflow to copy PR template onto Dependabot PRs
|
YAML
|
mit
|
alphagov/frontend,alphagov/frontend,alphagov/frontend,alphagov/frontend
|
9ab0e5ce12610fd6912d26e55533c17f3fad5bf4
|
packages/de/DeepDarkFantasy.yaml
|
packages/de/DeepDarkFantasy.yaml
|
homepage: ''
changelog-type: ''
hash: 536eb5ccdb14b53963fd9fbc90f357f7c3e2f4da88c4d2c17d6a2e4123b9f877
test-bench-deps:
base: ! '>=4.9.0.0 && <=4.9.1.0'
constraints: -any
mtl: -any
random: -any
DeepDarkFantasy: -any
maintainer: [email protected]
synopsis: A DSL for creating neural network.
changelog: ''
basic-deps:
base: ! '>=4.9.0.0 && <=4.9.1.0'
constraints: -any
mtl: -any
random: -any
all-versions:
- '0.0.1'
- '0.0.1.1'
- '0.2017.3.28'
- '0.2017.3.30'
author: ''
latest: '0.2017.3.30'
description-type: haddock
description: Deep Dark Fantasy(DDF) is a domain specific language that allow one to
automatically derive derivative of program in DDF. Hence, one can write neural network
in DDF and use the derivative program for gradient descend.
license-name: Apache
|
homepage: ''
changelog-type: ''
hash: 0dbd16368edcf4cf67ec98a506923cd4500d6ba2f72cca07b469a66a3abdefe4
test-bench-deps:
base: ! '>=4.9.0.0 && <=4.9.1.0'
constraints: -any
mtl: -any
random: -any
DeepDarkFantasy: -any
maintainer: [email protected]
synopsis: A DSL for creating neural network.
changelog: ''
basic-deps:
base: ! '>=4.9.0.0 && <=4.9.1.0'
constraints: -any
mtl: -any
random: -any
all-versions:
- '0.0.1'
- '0.0.1.1'
- '0.2017.3.28'
- '0.2017.3.30'
- '0.2017.4.1'
author: ''
latest: '0.2017.4.1'
description-type: haddock
description: Deep Dark Fantasy(DDF) is a domain specific language that allow one to
automatically derive derivative of program in DDF. Hence, one can write neural network
in DDF and use the derivative program for gradient descend.
license-name: Apache
|
Update from Hackage at 2017-04-01T23:36:21Z
|
Update from Hackage at 2017-04-01T23:36:21Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
841882a693e69da8249bb75e7f42497ff599b6e0
|
test/fixtures/profiles.yml
|
test/fixtures/profiles.yml
|
one:
id: 1
firstname: Ada
lastname: Lovelace
email: [email protected]
encrypted_password: <%= Profile.new.send(:password_digest, 'Testpassword') %>
languages: Deutsch
city: New York
talks: CCC
published: true
two:
id: 2
firstname: Inge
lastname: lastname
email: [email protected]
languages: Deutsch
city: Berlin
talks: Repuclica
three:
id: 3
firstname: Anon
lastname: lastname
email: [email protected]
languages: Deutsch
city: Hintertupfingen
talks:
jane:
id: 4
firstname: Jane
lastname: Admin
email: [email protected]
encrypted_password: <%= Profile.new.send(:password_digest, 'Testpassword') %>
languages: MyString
city: MyString
admin: true
|
one:
id: 1
firstname: Ada
lastname: Lovelace
email: [email protected]
encrypted_password: <%= Profile.new.send(:password_digest, 'Testpassword') %>
languages: Deutsch
talks: CCC
published: true
two:
id: 2
firstname: Inge
lastname: lastname
email: [email protected]
languages: Deutsch
talks: Repuclica
three:
id: 3
firstname: Anon
lastname: lastname
email: [email protected]
languages: Deutsch
talks:
jane:
id: 4
firstname: Jane
lastname: Admin
email: [email protected]
encrypted_password: <%= Profile.new.send(:password_digest, 'Testpassword') %>
languages: MyString
admin: true
|
Remove city from the fixtures in the rakes tests
|
Remove city from the fixtures in the rakes tests
|
YAML
|
mit
|
rubymonsters/speakerinnen_liste,1000miles/speakerinnen_liste,rubymonsters/speakerinnen_liste,rubymonsters/speakerinnen_liste,1000miles/speakerinnen_liste,1000miles/speakerinnen_liste
|
16c31990c232625f99df6ff4fddab320b092c73e
|
metadata/com.securefilemanager.app.yml
|
metadata/com.securefilemanager.app.yml
|
Categories:
- Security
- System
License: GPL-3.0-or-later
SourceCode: https://github.com/Secure-File-Manager/Secure-File-Manager
IssueTracker: https://github.com/Secure-File-Manager/Secure-File-Manager/issues
Changelog: https://github.com/Secure-File-Manager/Secure-File-Manager/blob/HEAD/CHANGELOG.md
RepoType: git
Repo: https://github.com/Secure-File-Manager/Secure-File-Manager
Builds:
- versionName: 0.1.2-beta2
versionCode: 4
commit: v0.1.2-beta2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.1.2-beta2
CurrentVersionCode: 4
|
Categories:
- Security
- System
License: GPL-3.0-or-later
SourceCode: https://github.com/Secure-File-Manager/Secure-File-Manager
IssueTracker: https://github.com/Secure-File-Manager/Secure-File-Manager/issues
Changelog: https://github.com/Secure-File-Manager/Secure-File-Manager/blob/HEAD/CHANGELOG.md
AutoName: Secure File Manager Beta
RepoType: git
Repo: https://github.com/Secure-File-Manager/Secure-File-Manager
Builds:
- versionName: 0.1.2-beta2
versionCode: 4
commit: v0.1.2-beta2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.1.2-beta2
CurrentVersionCode: 4
|
Set autoname of Secure File Manager Beta
|
Set autoname of Secure File Manager Beta
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
488279c5c9d082a0b7b71c8cee67a942e2cb81f0
|
packages/la/latex-formulae-hakyll.yaml
|
packages/la/latex-formulae-hakyll.yaml
|
homepage: https://github.com/liamoc/latex-formulae#readme
changelog-type: ''
hash: 6e21582d5e8f5b5a0e3671becabcf7a35bab8600a7da7b79717cd204902a8ee2
test-bench-deps: {}
maintainer: [email protected]
synopsis: Use actual LaTeX to render formulae inside Hakyll pages
changelog: ''
basic-deps:
lrucache: ! '>=1.2 && <1.3'
base: ! '>=4.7 && <4.9'
latex-formulae-image: ! '>=0.1.1.0 && <0.2'
latex-formulae-pandoc: ! '>=0.2.0.1 && <0.3'
pandoc-types: ! '>=1.12 && <1.13'
hakyll: ! '>=4.6 && <4.8'
all-versions:
- '0.1.0.0'
author: Liam O'Connor
latest: '0.1.0.0'
description-type: haddock
description: ! 'This library provides functions to render all math formulae inside
Pandoc-processed Hakyll pages using
real LaTeX.
It also provides a simple LRU cache to avoid recompiling the same formulae repeatedly
during a @watch@
session.'
license-name: BSD3
|
homepage: https://github.com/liamoc/latex-formulae#readme
changelog-type: ''
hash: f33ba39349e3f633cfb07f6ab5dc8564cb4d017560c0c44ba7f3156ce0b9e0db
test-bench-deps: {}
maintainer: [email protected]
synopsis: Use actual LaTeX to render formulae inside Hakyll pages
changelog: ''
basic-deps:
lrucache: ! '>=1.2 && <1.3'
base: ! '>=4.7 && <4.9'
latex-formulae-image: ! '>=0.1.1.0 && <0.2'
latex-formulae-pandoc: ! '>=0.2.0.1 && <0.3'
pandoc-types: ! '>=1.12 && <1.13'
hakyll: ! '>=4.6 && <4.8'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Liam O'Connor
latest: '0.2.0.0'
description-type: haddock
description: ! 'This library provides functions to render all math formulae inside
Pandoc-processed Hakyll pages using
real LaTeX.
It also provides a simple LRU cache to avoid recompiling the same formulae repeatedly
during a @watch@
session.'
license-name: BSD3
|
Update from Hackage at 2015-11-13T03:36:30+0000
|
Update from Hackage at 2015-11-13T03:36:30+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
5a64086e50bb2fcce1e9384bad965e2e0b42509e
|
metadata/me.ranko.autodark.yml
|
metadata/me.ranko.autodark.yml
|
Categories:
- System
License: MIT
AuthorName: 0ranko0P
AuthorEmail: [email protected]
SourceCode: https://github.com/0ranko0P/AutoDark
IssueTracker: https://github.com/0ranko0P/AutoDark/issues
Changelog: https://github.com/0ranko0P/AutoDark/releases
AutoName: AutoDark
RepoType: git
Repo: https://github.com/0ranko0P/AutoDark
Builds:
- versionName: 2.0.3
versionCode: 6
commit: v2.0.3
subdir: app
submodules: true
gradle:
- yes
- versionName: 2.1.1
versionCode: 9
commit: v2.1.1
subdir: app
submodules: true
gradle:
- yes
- versionName: 3.0.0
versionCode: 10
commit: v3.0.0
subdir: app
submodules: true
gradle:
- yes
- versionName: 3.0.1
versionCode: 11
commit: v3.0.1
subdir: app
submodules: true
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 3.0.1
CurrentVersionCode: 11
|
Categories:
- System
License: MIT
AuthorName: 0ranko0P
AuthorEmail: [email protected]
SourceCode: https://github.com/0ranko0P/AutoDark
IssueTracker: https://github.com/0ranko0P/AutoDark/issues
Changelog: https://github.com/0ranko0P/AutoDark/releases
AutoName: AutoDark
RepoType: git
Repo: https://github.com/0ranko0P/AutoDark
Builds:
- versionName: 2.0.3
versionCode: 6
commit: v2.0.3
subdir: app
submodules: true
gradle:
- yes
- versionName: 2.1.1
versionCode: 9
commit: v2.1.1
subdir: app
submodules: true
gradle:
- yes
- versionName: 3.0.0
versionCode: 10
commit: v3.0.0
subdir: app
submodules: true
gradle:
- yes
- versionName: 3.0.1
versionCode: 11
commit: v3.0.1
subdir: app
submodules: true
gradle:
- yes
- versionName: 3.0.2
versionCode: 12
commit: v3.0.2
subdir: app
submodules: true
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 3.0.2
CurrentVersionCode: 12
|
Update AutoDark to 3.0.2 (12)
|
Update AutoDark to 3.0.2 (12)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
ef56269034baeff74f07475dcce3428cf19f41f8
|
changelogs/unreleased/1870-impersonation-stuck-on-password-change.yml
|
changelogs/unreleased/1870-impersonation-stuck-on-password-change.yml
|
---
title: Impersonation no longer gets stuck on password change.
merge_request: 2904
author:
type: fixed
|
---
title: Impersonation no longer gets stuck on password change.
merge_request: 15497
author:
type: fixed
|
Fix MR IID in changelog item
|
Fix MR IID in changelog item
[ci skip]
|
YAML
|
mit
|
stoplightio/gitlabhq,iiet/iiet-git,jirutka/gitlabhq,stoplightio/gitlabhq,mmkassem/gitlabhq,jirutka/gitlabhq,iiet/iiet-git,iiet/iiet-git,mmkassem/gitlabhq,dreampet/gitlab,iiet/iiet-git,stoplightio/gitlabhq,dreampet/gitlab,axilleas/gitlabhq,jirutka/gitlabhq,stoplightio/gitlabhq,mmkassem/gitlabhq,dreampet/gitlab,jirutka/gitlabhq,axilleas/gitlabhq,axilleas/gitlabhq,mmkassem/gitlabhq,dreampet/gitlab,axilleas/gitlabhq
|
f46e002eac7693f69c8749491f70d936f767bfb3
|
packages/ca/canteven-http.yaml
|
packages/ca/canteven-http.yaml
|
homepage: https://github.com/SumAll/canteven-http
changelog-type: ''
hash: 935dcd783a91086ca4437e461b16ebe666358d7ec6cc98c4ec64575e16c37e55
test-bench-deps: {}
maintainer: [email protected]
synopsis: Utilities for HTTP programming.
changelog: ''
basic-deps:
exceptions: ! '>=0.8.2 && <0.9'
bytestring: ! '>=0.10 && <0.11'
wai: ! '>=3.2 && <3.3'
base: ! '>=4.7 && <4.9'
time: ! '>=1.5.0.1 && <1.6'
text: ! '>=1.2 && <1.3'
uuid: ! '>=1.3.12 && <1.4'
canteven-log: ! '>=1.0 && <1.1'
monad-logger: ! '>=0.3.19 && <0.4'
transformers: ! '>=0.4.2.0 && <0.5'
http-types: ! '>=0.9.1 && <0.10'
all-versions:
- '0.1.1.0'
- '0.1.1.1'
author: Rick Owens
latest: '0.1.1.1'
description-type: haddock
description: ''
license-name: MIT
|
homepage: https://github.com/SumAll/canteven-http
changelog-type: ''
hash: 93ec0e7fe7a761149eb51292f78988cefc1ba5a1eccc4864f434f8e61e5a92b9
test-bench-deps: {}
maintainer: [email protected]
synopsis: Utilities for HTTP programming.
changelog: ''
basic-deps:
exceptions: ! '>=0.8.2 && <0.9'
bytestring: ! '>=0.10 && <0.11'
wai: ! '>=3.2 && <3.3'
base: ! '>=4.7 && <4.10'
time: ! '>=1.5.0.1 && <1.7'
text: ! '>=1.2 && <1.3'
uuid: ! '>=1.3.12 && <1.4'
canteven-log: ! '>=1.0 && <2.1'
monad-logger: ! '>=0.3.19 && <0.4'
transformers: ! '>=0.4.2.0 && <0.6'
http-types: ! '>=0.9.1 && <0.10'
all-versions:
- '0.1.1.0'
- '0.1.1.1'
- '0.1.1.2'
author: Rick Owens
latest: '0.1.1.2'
description-type: haddock
description: ''
license-name: MIT
|
Update from Hackage at 2016-10-01T03:41:11+00:00
|
Update from Hackage at 2016-10-01T03:41:11+00:00
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
4611ab5a2976dd01d3f647113784fff673e19da9
|
packages/th/th-reify-many.yaml
|
packages/th/th-reify-many.yaml
|
homepage: http://github.com/mgsloan/th-reify-many
changelog-type: ''
hash: fe00ca5b122ab4faa12f8ba41c59b83dba5ce28573bfef0f92e051cfca6976d0
test-bench-deps:
base: -any
th-reify-many: -any
template-haskell: -any
maintainer: Michael Sloan <mgsloan at gmail>
synopsis: Recurseively reify template haskell datatype info
changelog: ''
basic-deps:
base: ! '>=4 && <5'
containers: -any
th-expand-syns: -any
mtl: -any
template-haskell: ! '>=2.5.0.0'
safe: -any
all-versions:
- '0.1.1'
- '0.1.2'
- '0.1.3'
author: Michael Sloan
latest: '0.1.3'
description-type: haddock
description: ! '@th-reify-many@ provides functions for recursively reifying top
level declarations. The main intended use case is for enumerating
the names of datatypes reachable from an initial datatype, and
passing these names to some function which generates instances.'
license-name: BSD3
|
homepage: http://github.com/mgsloan/th-reify-many
changelog-type: ''
hash: 61020b3bbb609d80962494775bcbc2c2d02fde68f744a9794439c9e9c11168ef
test-bench-deps:
base: -any
th-reify-many: -any
template-haskell: -any
maintainer: Michael Sloan <mgsloan at gmail>
synopsis: Recurseively reify template haskell datatype info
changelog: ''
basic-deps:
base: ! '>=4 && <5'
containers: -any
th-expand-syns: -any
mtl: -any
template-haskell: ! '>=2.5.0.0'
safe: -any
all-versions:
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
author: Michael Sloan
latest: '0.1.4'
description-type: haddock
description: ! '@th-reify-many@ provides functions for recursively reifying top
level declarations. The main intended use case is for enumerating
the names of datatypes reachable from an initial datatype, and
passing these names to some function which generates instances.'
license-name: BSD3
|
Update from Hackage at 2016-01-19T00:15:13+0000
|
Update from Hackage at 2016-01-19T00:15:13+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
b0d69292ee4ca0b94047501b73f81397021ade82
|
ci/pipelines/shared/shared_jinja.yml
|
ci/pipelines/shared/shared_jinja.yml
|
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
#
{%- macro alpine_tools_config() %}
{{- docker_config() }}
{%- endmacro %}
{%- macro docker_config(repository_url) %}
config:
platform: linux
image_resource:
type: docker-image
source:
username: ((!docker-username))
password: ((!docker-password))
repository: gcr.io/((gcp-project))/((pipeline-prefix))alpine-tools
tag: latest
{%- endmacro %}
{%- macro github_access(public) -%}
uri: https://github.com/((geode-fork))/((geode-repo-name)).git
{%- if repository.public == "false" %}
username: ((github-username))
password: ((github-password))
{%- endif %}
{%- endmacro %}
|
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
#
{%- macro alpine_tools_config() %}
{{- docker_config() }}
{%- endmacro %}
{%- macro docker_config(repository_url) %}
config:
platform: linux
image_resource:
type: docker-image
source:
username: ((!docker-username))
password: ((!docker-password))
repository: gcr.io/((gcp-project))/((pipeline-prefix))alpine-tools
tag: latest
{%- endmacro %}
{%- macro github_access(public) -%}
uri: https://github.com/((geode-fork))/((geode-repo-name)).git
{%- if not repository.public %}
username: ((github-username))
password: ((github-password))
{%- endif %}
{%- endmacro %}
|
Fix jinja logic for concourse-to-github creds
|
GEODE-6483: Fix jinja logic for concourse-to-github creds
Authored-by: Robert Houghton <[email protected]>
|
YAML
|
apache-2.0
|
jdeppe-pivotal/geode,PurelyApplied/geode,jdeppe-pivotal/geode,davinash/geode,davebarnes97/geode,masaki-yamakawa/geode,smgoller/geode,davebarnes97/geode,davebarnes97/geode,smgoller/geode,masaki-yamakawa/geode,smgoller/geode,davinash/geode,davinash/geode,davebarnes97/geode,davinash/geode,jdeppe-pivotal/geode,masaki-yamakawa/geode,davebarnes97/geode,smgoller/geode,jdeppe-pivotal/geode,davinash/geode,PurelyApplied/geode,davebarnes97/geode,jdeppe-pivotal/geode,smgoller/geode,jdeppe-pivotal/geode,PurelyApplied/geode,PurelyApplied/geode,davinash/geode,masaki-yamakawa/geode,smgoller/geode,masaki-yamakawa/geode,jdeppe-pivotal/geode,PurelyApplied/geode,PurelyApplied/geode,PurelyApplied/geode,masaki-yamakawa/geode,smgoller/geode,masaki-yamakawa/geode,davinash/geode,davebarnes97/geode
|
25705d95256b842cd996cc3beafc3427a95080a2
|
kubernetes_deploy/staging/deployment.yml
|
kubernetes_deploy/staging/deployment.yml
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
annotations:
kubernetes.io/change-cause: "<to be filled in deploy_to_kubernetes script>"
name: laa-legal-adviser-api
spec:
replicas: 2
template:
metadata:
labels:
app: laa-legal-adviser-api
env: staging
service_area: laa-get-access
service_team: cla-fala
spec:
containers:
- image: "<to be set by deploy_to_kubernetes>"
name: app
readinessProbe:
httpGet:
path: /ping.json
port: 80
initialDelaySeconds: 5
timeoutSeconds: 1
periodSeconds: 10
livenessProbe:
httpGet:
path: /ping.json
port: 80
initialDelaySeconds: 10
timeoutSeconds: 1
periodSeconds: 10
ports:
- containerPort: 80
name: http
env:
- name: LOG_LEVEL
value: INFO
- name: SECRET_KEY
valueFrom:
secretKeyRef:
name: secret-key
key: SECRET_KEY
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
annotations:
kubernetes.io/change-cause: "<to be filled in deploy_to_kubernetes script>"
name: laa-legal-adviser-api
spec:
replicas: 2
template:
metadata:
labels:
app: laa-legal-adviser-api
env: staging
service_area: laa-get-access
service_team: cla-fala
spec:
containers:
- image: "<to be set by deploy_to_kubernetes>"
name: app
env:
- name: LOG_LEVEL
value: INFO
- name: SECRET_KEY
valueFrom:
secretKeyRef:
name: secret-key
key: SECRET_KEY
|
Remove as-yet-not-useful sections of container spec
|
Remove as-yet-not-useful sections of container spec
They were copied across, but as they're not actually doing anything yet
it's probably best to remove them until we're ready to define them,
rather than have them hanging about incorrectly
|
YAML
|
mit
|
ministryofjustice/laa-legal-adviser-api,ministryofjustice/laa-legal-adviser-api,ministryofjustice/laa-legal-adviser-api
|
3adfc31e95c03e257c837740a045f20a13876ffa
|
build.yaml
|
build.yaml
|
---
rundeck:
plugins: # Extra plugins to bundle
- "com.github.Batix:rundeck-ansible-plugin:3.1.0"
- "com.github.rundeck-plugins:aws-s3-model-source:v1.0.6"
- "com.github.rundeck-plugins:py-winrm-plugin:2.0.12"
- "com.github.rundeck-plugins:openssh-node-execution:2.0.1"
- "com.github.rundeck-plugins:multiline-regex-datacapture-filter:1.0.0"
- "com.github.rundeck-plugins:attribute-match-node-enhancer:v0.1.5"
- "com.github.rundeck-plugins:sshj-plugin:v0.1.2"
|
---
rundeck:
plugins: # Extra plugins to bundle
- "com.github.Batix:rundeck-ansible-plugin:3.1.0"
- "com.github.rundeck-plugins:aws-s3-model-source:v1.0.6"
- "com.github.rundeck-plugins:py-winrm-plugin:2.0.13"
- "com.github.rundeck-plugins:openssh-node-execution:2.0.1"
- "com.github.rundeck-plugins:multiline-regex-datacapture-filter:1.0.0"
- "com.github.rundeck-plugins:attribute-match-node-enhancer:v0.1.5"
- "com.github.rundeck-plugins:sshj-plugin:v0.1.2"
|
Upgrade pywinrm plugin. Excluded RD_EXEC_COMMAND from environment variables due to it presents an issue when the command is a special character like %
|
Upgrade pywinrm plugin. Excluded RD_EXEC_COMMAND from environment variables due to it presents an issue when the command is a special character like %
|
YAML
|
apache-2.0
|
rundeck/rundeck,variacode/rundeck,variacode/rundeck,variacode/rundeck,rundeck/rundeck,rundeck/rundeck,rundeck/rundeck,variacode/rundeck,variacode/rundeck,rundeck/rundeck
|
4c05f16a7f126af137df052c3dc269fd06ebb108
|
circle.yml
|
circle.yml
|
machine:
node:
version: 4.3.1
general:
artifacts:
- "./coverage/lcov-report/"
|
machine:
node:
version: 4.3.1
dependencies:
pre:
# Clean out node-modules to prevent issues with circle-ci's caching.
- rm -rf node_modules
general:
artifacts:
- "./coverage/lcov-report/"
|
Clean out node_modules before install on CI.
|
Clean out node_modules before install on CI.
|
YAML
|
mit
|
rangle/angular2-starter,rangle/angular2-starter,rangle/angular2-starter
|
2191bc0ecdf2b2a6d6a454a42dadbd2ea09fece4
|
circle.yml
|
circle.yml
|
machine:
node:
version: 4.4.7
test:
post:
# Ensure steps leading up to publishing work.
- node_modules/.bin/builder run transpile-dev
|
machine:
node:
version: 4.4.7
test:
post:
# Ensure steps leading up to publishing work.
- node_modules/.bin/builder run build-dist
|
Use correct script in Circle
|
Use correct script in Circle
|
YAML
|
mit
|
plotly/dash-core-components
|
202b676b1e91620df7c55a6be0e02962dcb8b601
|
circle.yml
|
circle.yml
|
general:
artifacts:
- "build/reports" # relative to the build directory
branches:
ignore:
- gh-pages # list of branches to ignore
- /release\/.*/ # or ignore regexes
machine:
environment:
TERM: dumb
CI_BUILD: true
java:
version: oraclejdk7
test:
pre:
- ./create-coveralls-config.sh
override:
- ./gradlew clean check jacocoTestReport --info
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/build/.*-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
|
general:
artifacts:
- "build/reports" # relative to the build directory
branches:
ignore:
- gh-pages # list of branches to ignore
- /release\/.*/ # or ignore regexes
machine:
environment:
TERM: dumb
CI_BUILD: true
java:
version: oraclejdk7
test:
pre:
- ./create-coveralls-config.sh
override:
- ./gradlew clean check jacocoTestReport coveralls --info
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/build/.*-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
|
Add coveralls to test execution
|
Add coveralls to test execution
|
YAML
|
apache-2.0
|
mmichaelis/hamcrest-nextdeed,mmichaelis/hamcrest-nextdeed
|
db3da44e675bdbcbdee365b200868f72bff5cfd6
|
circle.yml
|
circle.yml
|
#general:
# build_dir: koordinates
machine:
python:
version: 2.7.9
test:
override:
- python setup.py test
|
#general:
# build_dir: koordinates
#machine:
# python:
# version: 2.7.9
#test:
# override:
# - python setup.py test
machine:
python:
version: 3.4.2
dependencies:
pre:
- if [ $CIRCLE_NODE_INDEX == "1" ] ; then pyenv global 2.7.9 ; fi
test:
override:
- make test
|
Support 2.x/3.x testing via Parallel testing in CI
|
Support 2.x/3.x testing via Parallel testing in CI
This change will cause CircleCI to run two sets of tests in parallel.
The first container will use 3.4.3 (which has been set as the default
in the circle.yml 'machine' section. The second contain will, by testing
the env var 'CIRCLE_NODE_INDEX' switch to 2.7.9
|
YAML
|
bsd-3-clause
|
koordinates/python-client,koordinates/python-client
|
2e37fddefb10bead2fac312d5a414c45e8eecc31
|
packages/te/test-framework-th-prime.yaml
|
packages/te/test-framework-th-prime.yaml
|
homepage: ''
changelog-type: ''
hash: 00b348473c411661809d90507150b6d128aed45f58be3562bfdc97b8a6da3160
test-bench-deps: {}
maintainer: Kazu Yamamoto <[email protected]>
synopsis: Template Haskell for test framework
changelog: ''
basic-deps:
test-framework: -any
base: ! '>=4 && <5'
haskell-src-exts: -any
cpphs: ! '>=0.2.1'
template-haskell: -any
all-versions:
- '0.0.0'
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
- '0.0.7'
- '0.0.8'
- '0.0.9'
author: Kazu Yamamoto <[email protected]>
latest: '0.0.9'
description-type: haddock
description: ! 'Automatically generates a Test list for
HUnit, doctest and QuickCheck2.'
license-name: BSD3
|
homepage: ''
changelog-type: ''
hash: faee4da570533c3304b2239b218f6284eb24c6535e2c862f938f44cc99db5e5a
test-bench-deps: {}
maintainer: Kazu Yamamoto <[email protected]>
synopsis: Template Haskell for test framework
changelog: ''
basic-deps:
test-framework: -any
base: ! '>=4 && <5'
haskell-src-exts: -any
cpphs: ! '>=0.2.1'
template-haskell: -any
all-versions:
- '0.0.0'
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
- '0.0.7'
- '0.0.8'
- '0.0.9'
- '0.0.10'
author: Kazu Yamamoto <[email protected]>
latest: '0.0.10'
description-type: haddock
description: ! 'Automatically generates a Test list for
HUnit, doctest and QuickCheck2.'
license-name: BSD3
|
Update from Hackage at 2017-09-11T06:15:02Z
|
Update from Hackage at 2017-09-11T06:15:02Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
d880b9294bdf2e5f95dfd3cefde0ae482ac45afd
|
recipes/parquet-python/meta.yaml
|
recipes/parquet-python/meta.yaml
|
{% set name = "parquet-python" %}
{% set version = "1.3.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/p/parquet/parquet-{{ version }}.tar.gz
sha256: fb1c90768c1b9159d4d6a9b3112ea8107b0b46d7491c5ac452ba7350f333bf0a
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . --no-deps -vv
entry_points:
- parquet = parquet.__main__:main',
requirements:
host:
- python
run:
- python
outputs:
- name: parquet-python
requirements:
host:
- python
- pip
run:
- python
- thriftpy2
test:
imports:
- parquet
- name: parquet_python
requirements:
host:
- python
run:
- {{ pin_subpackage("parquet-python", exact=True) }}
test:
imports:
- parquet
about:
home: https://github.com/jcrobak/parquet-python
license: Apache-2.0
license_family: Apache
license_file: LICENSE
summary: Python implementation of the parquet columnar file format.
dev_url: https://github.com/jcrobak/parquet-python
extra:
recipe-maintainers:
- timkpaine
|
{% set name = "parquet-python" %}
{% set version = "1.3.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/p/parquet/parquet-{{ version }}.tar.gz
sha256: fb1c90768c1b9159d4d6a9b3112ea8107b0b46d7491c5ac452ba7350f333bf0a
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . --no-deps -vv
entry_points:
- parquet = parquet.__main__:main',
requirements:
host:
- python
- pip
run:
- python
- thriftpy2
test:
imports:
- parquet
outputs:
- name: parquet-python
- name: parquet_python
build:
noarch: generic
requirements:
run:
- {{ pin_subpackage("parquet-python", exact=True) }}
test:
imports:
- parquet
about:
home: https://github.com/jcrobak/parquet-python
license: Apache-2.0
license_family: Apache
license_file: LICENSE
summary: Python implementation of the parquet columnar file format.
dev_url: https://github.com/jcrobak/parquet-python
extra:
recipe-maintainers:
- timkpaine
|
Use top level as first output
|
Use top level as first output
|
YAML
|
bsd-3-clause
|
jakirkham/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes
|
58c678aaede9fb87d4396242ada1d7ed90f7090a
|
parameters/Endogenous_BASL_11-params.yml
|
parameters/Endogenous_BASL_11-params.yml
|
---
wall_channel: 1
marker_channel: 0
surface_percentile: 95
wall_percentile_filter_percentile: 95
wall_percentile_filter_size: 2
wall_zabove: -2
wall_zbelow: 6
wall_threshold_adaptive_block_size: 51
wall_remove_small_objects_in_cell_min_size: 5
wall_remove_small_objects_in_wall_min_size: 50
wall_erode_step: True
marker_zabove: -2
marker_zbelow: 6
marker_min_intensity: 0
|
---
wall_channel: 1
marker_channel: 0
surface_percentile: 95
wall_percentile_filter_percentile: 95
wall_percentile_filter_size: 2
wall_zabove: 0
wall_zbelow: 6
wall_threshold_adaptive_block_size: 151
wall_remove_small_objects_in_cell_min_size: 30
wall_remove_small_objects_in_wall_min_size: 50
wall_erode_step: True
marker_zabove: -2
marker_zbelow: 6
marker_min_intensity: 0
|
Fix params for endogenous basl 11
|
Fix params for endogenous basl 11
|
YAML
|
mit
|
JIC-Image-Analysis/cells-from-leaves,JIC-Image-Analysis/cells-from-leaves,JIC-Image-Analysis/cells-from-leaves
|
c6c197c0e35af5d7ff43eecc8f33f3858c1c6bfd
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on:
push:
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: debian-latest
env:
DATABASE_URL: postgres://postgres@localhost:5433/flatshare_app_test
services:
db:
image: postgres:10.13
ports: ["5433:5432"]
env:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_DB: flatshare_app_test
steps:
- name: Checkout code
id: checkout-code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.5
bundler-cache: true
# - name: Install bundler
# id: install-bundler
# run: gem install bundler
# - name: Install dependencies
# id: install-dependencies
# run: bundle install
- name: Run Spec
id: run-spec
env:
RAILS_ENV: test
run: |
cp config/database.yml.sample config/database.yml
bundle exec rake
|
name: CI
on:
push:
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: ubuntu-20.04
env:
DATABASE_URL: postgres://postgres@localhost:5433/flatshare_app_test
services:
db:
image: postgres:10.13
ports: ["5433:5432"]
env:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_DB: flatshare_app_test
steps:
- name: Checkout code
id: checkout-code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.5
bundler-cache: true
# - name: Install bundler
# id: install-bundler
# run: gem install bundler
# - name: Install dependencies
# id: install-dependencies
# run: bundle install
- name: Run Spec
id: run-spec
env:
RAILS_ENV: test
run: |
cp config/database.yml.sample config/database.yml
bundle exec rake
|
Change OS label to ubuntu-20.04
|
Change OS label to ubuntu-20.04
|
YAML
|
mit
|
casi/flatshare_app,casi/flatshare_app,casi/flatshare_app,casi/flatshare_app
|
e1637a41b24d7da36e55b117a83d167de16a9677
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push, pull_request]
jobs:
phpspec:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.2, 7.3, 7.4, 8.0]
steps:
- uses: actions/checkout@v1
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Validate Composer files
run: composer validate --no-check-all --strict
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run tests
run: php vendor/bin/phpspec run
|
name: CI
on: [push, pull_request]
jobs:
phpspec:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.2, 7.3, 7.4, 8.0]
steps:
- uses: actions/checkout@v1
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Validate Composer files
run: composer validate --no-check-all --strict
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: php vendor/bin/phpspec run
|
Stop using deprecated Composer option
|
CI: Stop using deprecated Composer option
|
YAML
|
mit
|
franzliedke/studio
|
1d70065c5029cd7e3f3abd70702b1f84058b42b5
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
env:
RUSTFLAGS: '-Dwarnings'
jobs:
test:
name: Rust ${{matrix.rust}} on ${{matrix.os}}
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.34.0]
os: [ubuntu, macos, windows]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo test
clippy:
name: Clippy
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@clippy
- run: cargo clippy -- -Dclippy::all -Dclippy::pedantic
outdated:
name: Outdated
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3
- uses: dtolnay/install@cargo-outdated
- run: cargo outdated --exit-code 1
|
name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
env:
RUSTFLAGS: -Dwarnings
jobs:
test:
name: Rust ${{matrix.rust}} on ${{matrix.os}}
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.34.0]
os: [ubuntu, macos, windows]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo test
clippy:
name: Clippy
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@clippy
- run: cargo clippy -- -Dclippy::all -Dclippy::pedantic
outdated:
name: Outdated
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3
- uses: dtolnay/install@cargo-outdated
- run: cargo outdated --exit-code 1
|
Drop unneeded quoting from env variable in workflows yaml
|
Drop unneeded quoting from env variable in workflows yaml
|
YAML
|
apache-2.0
|
dtolnay/link-cplusplus
|
355b4b774b9fff657be4e0245824934fbdcfa61a
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: ci
env:
PROJECT_NAME: Lunet
on:
push:
paths-ignore:
- 'doc/**'
- 'img/**'
- 'changelog.md'
- 'readme.md'
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install .NET 5.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
- name: Install .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Build & test (Release)
run: dotnet test src -c Release
- name: Pack
run: |
dotnet pack src -c Release
- name: Publish
if: github.event_name == 'push'
run: |
if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+" ) {
dotnet nuget push src\${{env.PROJECT_NAME}}\bin\Release\*.nupkg -s nuget.org -k ${{secrets.NUGET_TOKEN}}
} else {
echo "publish is only enabled by tagging with a release tag"
}
|
name: ci
env:
PROJECT_NAME: Lunet
on:
push:
paths-ignore:
- 'doc/**'
- 'img/**'
- 'changelog.md'
- 'readme.md'
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Build & test (Release)
run: dotnet test src -c Release
- name: Pack
run: |
dotnet pack src -c Release
- name: Publish
if: github.event_name == 'push'
run: |
if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+" ) {
dotnet nuget push src\${{env.PROJECT_NAME}}\bin\Release\*.nupkg -s nuget.org -k ${{secrets.NUGET_TOKEN}}
} else {
echo "publish is only enabled by tagging with a release tag"
}
|
Fix CI to use net6.0
|
Fix CI to use net6.0
|
YAML
|
bsd-2-clause
|
lunet-io/lunet,lunet-io/lunet
|
21e9d9743588d3a0f961fefee5113c7abc6199fc
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
---
name: CI
on:
- push
- pull_request
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 2.7.x
- 2.6.x
- 2.5.x
rails:
- rails_5.2.4
- rails_6.0.3
- rails_6.1.0
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Setup Ruby cache
uses: actions/cache@v2
with:
path: "${GITHUB_WORKSPACE}/vendor/bundle"
key: ${{ runner.os }}-gems-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-${{ matrix.ruby }}-${{ matrix.rails }}-
- name: Bundle
env:
RAILS_VERSION: ${{ matrix.rails }}
run: |
export BUNDLE_GEMFILE="${GITHUB_WORKSPACE}/gemfiles/${RAILS_VERSION}.gemfile"
gem install bundler -v 2.1.4
bundle config path "${GITHUB_WORKSPACE}/vendor/bundle"
bundle install --jobs 4 --retry 3
- name: RSpec
env:
RAILS_VERSION: ${{ matrix.rails }}
run: |
export BUNDLE_GEMFILE="${GITHUB_WORKSPACE}/gemfiles/${RAILS_VERSION}.gemfile"
bundle exec rake
|
---
name: CI
on:
- push
- pull_request
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 2.7.x
- 2.6.x
- 2.5.x
rails:
- rails_5.2.4
- rails_6.0.3
- rails_6.1.0
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Setup Ruby cache
uses: actions/cache@v2
with:
path: "${GITHUB_WORKSPACE}/vendor/bundle"
key: ${{ runner.os }}-gems-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-${{ matrix.ruby }}-${{ matrix.rails }}-
- name: Bundle
env:
RAILS_VERSION: ${{ matrix.rails }}
run: |
export BUNDLE_GEMFILE="${GITHUB_WORKSPACE}/gemfiles/${RAILS_VERSION}.gemfile"
gem install bundler
bundle config path "${GITHUB_WORKSPACE}/vendor/bundle"
bundle install --jobs 4 --retry 3
- name: RSpec
env:
RAILS_VERSION: ${{ matrix.rails }}
run: |
export BUNDLE_GEMFILE="${GITHUB_WORKSPACE}/gemfiles/${RAILS_VERSION}.gemfile"
bundle exec rake
|
Use latest bundler version in CI
|
Use latest bundler version in CI
|
YAML
|
mit
|
crohr/syslogger
|
d698309100ae72cdb9ff0508bd451b9ea77c08d5
|
.github/workflows/go.yml
|
.github/workflows/go.yml
|
name: Go
on:
push:
pull_request:
schedule:
- cron: '6 15 * * SUN'
jobs:
build:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
name: "Build ${{ matrix.go-version }} test on ${{ matrix.platform }}"
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...
|
name: Go
on:
push:
pull_request:
schedule:
- cron: '6 15 * * SUN'
jobs:
build:
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
name: "Build ${{ matrix.go-version }} test on ${{ matrix.platform }}"
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...
|
Test on newer versions of Go
|
Test on newer versions of Go
|
YAML
|
apache-2.0
|
maxmind/geoip2-csv-converter,maxmind/geoip2-csv-converter
|
db9af74aaadf9111b24ecdf96e679ab8955666e2
|
.github/workflows/sw.yml
|
.github/workflows/sw.yml
|
name: sw
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-20.04, macOS-latest]
steps:
- uses: actions/checkout@v1
- uses: egorpugin/sw-action@master
- name: build
if: matrix.os == 'windows-latest'
run: ./sw -static -shared -platform x86,x64 -config d,r build
- name: build
if: matrix.os != 'windows-latest'
run: ./sw -static -shared -config d,r build
|
name: sw
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-20.04, macOS-latest]
steps:
- uses: actions/checkout@v1
- uses: egorpugin/sw-action@master
- name: build
if: matrix.os == 'windows-latest'
run: ./sw -static -shared -platform x86,x64 -config d,r build
- name: build
if: matrix.os != 'windows-latest'
run: ./sw -static -shared -config d,r build -Dwith-tests=1
|
Build unit tests on github ci on linux/macos.
|
[ci] Build unit tests on github ci on linux/macos.
|
YAML
|
apache-2.0
|
amitdo/tesseract,UB-Mannheim/tesseract,stweil/tesseract,amitdo/tesseract,amitdo/tesseract,UB-Mannheim/tesseract,stweil/tesseract,UB-Mannheim/tesseract,UB-Mannheim/tesseract,stweil/tesseract,stweil/tesseract,tesseract-ocr/tesseract,amitdo/tesseract,amitdo/tesseract,stweil/tesseract,UB-Mannheim/tesseract,tesseract-ocr/tesseract,tesseract-ocr/tesseract,tesseract-ocr/tesseract,tesseract-ocr/tesseract
|
7faaa5e4178c95ed2423e181f6cfb19b39757d2c
|
test/dummy/config/database.yml
|
test/dummy/config/database.yml
|
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
pool: 5
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *default
database: db/test.sqlite3
production:
<<: *default
database: db/production.sqlite3
|
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
development:
<<: *default
database: ':memory:'
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *default
database: ':memory:'
production:
<<: *default
database: ':memory:'
|
Move to sqlite memory db
|
Move to sqlite memory db
|
YAML
|
mit
|
simplelogica/gintonic-rails,simplelogica/gintonic-rails,simplelogica/gintonic-rails
|
f2ef2327f900081daffc92462b0a7b0e439ff72a
|
manifests/cf-manifest/env-specific/prod.yml
|
manifests/cf-manifest/env-specific/prod.yml
|
---
cell_instances: 30
router_instances: 6
api_instances: 6
doppler_instances: 24
log_api_instances: 6
adapter_instances: 2
cc_hourly_rate_limit: 20000
paas_region_name: ireland
|
---
cell_instances: 30
router_instances: 12
api_instances: 6
doppler_instances: 24
log_api_instances: 6
adapter_instances: 2
cc_hourly_rate_limit: 20000
paas_region_name: ireland
|
Scale Ireland up from 6 to 12 routers
|
Scale Ireland up from 6 to 12 routers
We expect new services soon with lots of traffic. Doubling our routers now will give us plenty of capacity to serve traffic when that happens. My belief is these 12 routers will cope with 1,200–3,600rps. If CDN route caching is setup properly that should be enough. It's very possible this will expose other bottlenecks within PaaS.
|
YAML
|
mit
|
alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf
|
0c12a30f26188ec22c8a6bb79b289a6d53496585
|
hieradata/nodes/dev02-master-01.yaml
|
hieradata/nodes/dev02-master-01.yaml
|
---
profile::base::common::manage_networkifs: true
named_interfaces::config:
mgmt:
- eth0
transport:
- eth1
public:
- dummy0
network::interfaces_hash:
'eth0':
ipaddress: '10.171.92.6'
netmask: '255.255.255.0'
gateway: '10.171.92.1'
defroute: no
mtu: '1500'
'eth1':
ipaddress: '172.31.66.11'
netmask: '255.255.255.0'
gateway: '172.31.66.1'
defroute: yes
'dummy0':
ipaddress: '158.38.144.254'
netmask: '255.255.255.255'
defroute: no
|
---
profile::base::common::manage_networkifs: true
named_interfaces::config:
mgmt:
- eth0
transport:
- eth1
public:
- dummy0
network::interfaces_hash:
'eth0':
ipaddress: '10.171.92.6'
netmask: '255.255.255.0'
gateway: '10.171.92.1'
defroute: no
mtu: '1500'
'eth1':
ipaddress: '172.31.66.6'
netmask: '255.255.255.0'
gateway: '172.31.66.1'
defroute: yes
'dummy0':
ipaddress: '158.38.144.254'
netmask: '255.255.255.255'
defroute: no
|
Fix dev02 master transport IP
|
Fix dev02 master transport IP
|
YAML
|
apache-2.0
|
tanzr/himlar,tanzr/himlar,mikaeld66/himlar,raykrist/himlar,eckhart/himlar,eckhart/himlar,norcams/himlar,norcams/himlar,raykrist/himlar,norcams/himlar,TorLdre/himlar,mikaeld66/himlar,tanzr/himlar,mikaeld66/himlar,TorLdre/himlar,norcams/himlar,mikaeld66/himlar,mikaeld66/himlar,tanzr/himlar,TorLdre/himlar,raykrist/himlar,norcams/himlar,tanzr/himlar,eckhart/himlar,raykrist/himlar,TorLdre/himlar,raykrist/himlar,TorLdre/himlar,eckhart/himlar
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.