commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
ec0b84315e3e0fe8acd6fb24c40661330840a9f2 | .travis.yml | .travis.yml | sudo: required
language: ruby
addons:
apt:
packages:
- lftp
cache:
directories:
- bash
before_script:
- whereis bash
- bash --version
- ./spec/install_bash.sh
- bash --version
after_script:
- cane --style-exclude 'spec/**/*.rb'
- yard stats --list-undoc
os:
- linux
rvm:
- 2.2.5
- 2.3.1... | sudo: required
language: ruby
addons:
apt:
packages:
- lftp
cache:
directories:
- bash
before_script:
- whereis bash
- bash --version
- ./spec/install_bash.sh
- bash --version
after_script:
- cane --style-exclude 'spec/**/*.rb'
- yard stats --list-undoc
os:
- linux
rvm:
- 2.2.5
- 2.3.1... | Test against default Bash version | Test against default Bash version
| YAML | mit | infertux/bashcov,infertux/bashcov,infertux/bashcov |
295e2c188928c440d85bd7b861dd3055585c4d1d | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
branches:
only:
- master
- development
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- ... | sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- development
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm... | Build on Travis CI without `sudo`. | Build on Travis CI without `sudo`.
| YAML | mit | bigeasy/locket,bigeasy/locket |
4d674231706f0b2b335608e8cb2b93e1586372d6 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
branches:
except:
- gh-pages
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev
install: make gtest-bootstrap
script: make && make test
| language: cpp
compiler:
- gcc
- clang
branches:
except:
- gh-pages
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev
install: make gtest-bootstrap
script: make && make test && make clean && make ENABLE64BIT=Yes && make test
| Add 64bit builds to Travis | Add 64bit builds to Travis
| YAML | bsd-2-clause | ondev/openh264,hioop/losslessh264,jasonzhong/losslessh264,rzhangma/openh264,eastlhu/losslessh264,shyamalschandra/openh264,kevinzhang1986/losslessh264,ruil2/openh264,maxming2333/losslessh264,treble37/losslessh264,GuangweiWang/openh264,maxming2333/losslessh264,zyhh/losslessh264,shihuade/openh264,sunfei/losslessh264,eastl... |
ffcdddb7d2d1720c908a42fe387e6ff73736eea1 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- jruby
cache: bundler
branches:
only:
- master
| language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- jruby
cache: bundler
services:
- mysql
- postgresql
| Add databases to Travis config | Add databases to Travis config
| YAML | mit | liveh2o/spectacles |
c6d43d295f828b48003aedf012506f4d5cba55f3 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rspec"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0.pre"
- "RAILS_VERSION=master"
... | language: ruby
script: "bundle exec rspec"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0.pre"
- "RAILS_VERSION=master"
... | Exclude certain builds for rails 4 | Exclude certain builds for rails 4
| YAML | mit | fphilipe/warden-github-rails,fphilipe/warden-github-rails,indirect/warden-github-rails,indirect/warden-github-rails |
0562fa4828adab7e6dc9b3913511897ba4cc7924 | .travis.yml | .travis.yml | language: elixir
elixir:
- 1.3.0
- 1.4.0
otp_release:
- 19.0
- 18.3
branches:
only:
- "master"
- "develop"
script:
- MIX_ENV=test mix compile --warnings-as-errors && MIX_ENV=test mix test
- MIX_ENV=test_phoenix mix compile --warnings-as-errors && MIX_ENV=test_phoenix mix test
- MIX_ENV=test_no_n... | language: elixir
elixir:
- 1.3.0
- 1.4.0
otp_release:
- 19.0
- 18.3
branches:
only:
- "master"
- "develop"
- "phoenix-pre"
script:
- MIX_ENV=test mix compile --warnings-as-errors && MIX_ENV=test mix test
- MIX_ENV=test_phoenix mix compile --warnings-as-errors && MIX_ENV=test_phoenix mix test
... | Add phoenix-pre to CI branches | Add phoenix-pre to CI branches
| YAML | mit | appsignal/appsignal-elixir,appsignal/appsignal-elixir,appsignal/appsignal-elixir,appsignal/appsignal-elixir |
1febd03c36f484bcca01679d3c9aa7b184a65947 | .travis.yml | .travis.yml | language: python
env:
- TASK_VERSION=2.2.0
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install:
- pip install -e .
- sudo apt-get install -qq build-essential cmake
- wget http://www.taskwarrior.org/download/task-$TASK_VERSION.tar.gz
- tar -zxvf task-$TASK_VERSION.tar.gz
- cd task-$TASK_VERSION
- cmake... | language: python
env:
- TASK_VERSION=2.2.0
- TASK_VERSION=2.3.0.beta2
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install:
- pip install -e .
- sudo apt-get install -qq build-essential cmake
- wget http://www.taskwarrior.org/download/task-$TASK_VERSION.tar.gz
- tar -zxvf task-$TASK_VERSION.tar.gz
- cd... | Add taskwarrior 2.3.0.beta2 to test matrix | Add taskwarrior 2.3.0.beta2 to test matrix
| YAML | bsd-3-clause | robgolding63/tasklib,robgolding/tasklib,tbabej/tasklib |
009019bf49efe2ea395a4eed49970b1b2fe08fe2 | .travis.yml | .travis.yml | language: python
sudo: required
dist: xenial
# install dependencies
install:
- pip install --upgrade setuptools pip
- |
if [[ ! -z "$KUBE_PY" ]]; then
# install pinned kubernetes
pip install -e ".[test]" "kubernetes==$KUBE_PY.*"
else
# add --pre so that we test with prereleases of depende... | language: python
sudo: required
dist: xenial
# install dependencies
install:
- pip install --upgrade setuptools pip
- |
if [[ ! -z "$KUBE_PY" ]]; then
# install pinned kubernetes
pip install -e ".[test]" "kubernetes==$KUBE_PY.*"
else
# add --pre so that we test with prereleases of depende... | Test py35-py38 and Kubernetes 7-10 | Test py35-py38 and Kubernetes 7-10
| YAML | bsd-3-clause | jupyterhub/kubespawner,yuvipanda/jupyterhub-kubernetes-spawner |
23eac7fb48b9918f0bcef0135140dcc8b77c5421 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0
- 2.1
- 2.2
gemfile:
- gemfiles/jekyll_3.1.gemfile
- gemfiles/jekyll_3.gemfile
- gemfiles/jekyll_2.gemfile
addons:
code_climate:
repo_token: 6b81e393ea6ad38560386f650ea2fb0e57a7beb5e20f8c8364fabee30d5bff07
| language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
gemfile:
- gemfiles/jekyll_3.1.gemfile
- gemfiles/jekyll_3.gemfile
- gemfiles/jekyll_2.gemfile
addons:
code_climate:
repo_token: 6b81e393ea6ad38560386f650ea2fb0e57a7beb5e20f8c8364fabee30d5bff07
| Test against Ruby 2.3 and 2.4 | Test against Ruby 2.3 and 2.4
| YAML | mit | toshimaru/jekyll-toc |
2f630c2cacf31520d7e479775dd0a2ba3da473be | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- 1.9.3
- 3.0
- jruby
| language: ruby
sudo: false
rvm:
- 2.5.8
- 2.6.6
- 2.7.2
- 3.0
- jruby
| Update Travis matrix to currently supported Rubies | Update Travis matrix to currently supported Rubies
as per https://www.ruby-lang.org/en/downloads
| YAML | mit | ryw/pinboard |
a76f5c6c377f91dfe83595dafa0e8ba472598710 | .travis.yml | .travis.yml | sudo: false
language: csharp
solution: FileHelpers.OnlyLibs.sln
install:
- nuget restore FileHelpers.OnlyLibs.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Debug FileHelpers.OnlyLibs.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.... | sudo: false
language: csharp
solution: FileHelpers.OnlyLibs.sln
install:
- nuget restore FileHelpers.OnlyLibs.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Debug FileHelpers.OnlyLibs.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.... | Exclude ClassBuilder Tests in MONO | Exclude ClassBuilder Tests in MONO
| YAML | mit | jbparker/FileHelpers,tablesmit/FileHelpers,regisbsb/FileHelpers,guillaumejay/FileHelpers,jawn/FileHelpers,phaufe/FileHelpers,modulexcite/FileHelpers,CarbonEdge/FileHelpers,p07r0457/FileHelpers,tablesmit/FileHelpers,mcavigelli/FileHelpers,rucila/FileHelpers,merkt/FileHelpers,phaufe/FileHelpers,regisbsb/FileHelpers,rucil... |
ce03b855404a97c4488ef3a7379718e052644410 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
before_install:
- export DJANGO_SETTINGS_MODULE=celery_haystack.test_settings
install:
- pip install -e .
- pip install -r requirements/$HAYSTACK.txt Django==$DJANGO
before_script:
- flake8 celery_haystack --ignore=E501
script:
- coverage run --branch --source=cele... | language: python
python:
- "2.6"
- "2.7"
before_install:
- export DJANGO_SETTINGS_MODULE=celery_haystack.test_settings
install:
- pip install -e .
- pip install -r requirements/$HAYSTACK.txt Django==$DJANGO
before_script:
- flake8 celery_haystack --ignore=E501
script:
- coverage run --branch --source=cele... | Stop limiting tests to develop branch. | Stop limiting tests to develop branch.
| YAML | bsd-3-clause | barseghyanartur/celery-haystack,roverdotcom/celery-haystack,iXioN/celery-haystack,frewsxcv/celery-haystack,strongholder/celery-haystack,stefanw/celery-haystack |
0882bc1bf8c8c237f1a89afc6bd666a78f88ec53 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
services:
- postgresql
addons:
postgresql: "9.3"
env:
global:
- DJANGO_SETTINGS_MODULE="projman.settings.ci"
sudo: false
install:
- pip install -r requirements/testing.txt
- pip install coveralls
bef... | language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
matrix:
allow_failures:
- python: "3.5-dev"
- python: "nightly"
services:
- postgresql
addons:
postgresql: "9.3"
env:
global:
- DJANGO_SETTINGS_MODULE="projman.settings.ci"
sudo: false
in... | Fix more errors in Travis config, let experimental browsers fail | Fix more errors in Travis config, let experimental browsers fail
| YAML | mit | XeryusTC/projman,XeryusTC/projman,XeryusTC/projman |
d7e6c7d25fa118a6108bb86f9bd04734cfa0de85 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
services:
- rabbitmq
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby
- rbx
gemfile:
- gemfiles/Gemfile.rails-3-2
- gemfiles/Gemfile.rails-4-0
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-19mode
before_install:
- gem install json -v '1.8.1'
- gem i... | language: ruby
bundler_args: --without development
services:
- rabbitmq
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby
- rbx
gemfile:
- gemfiles/Gemfile.rails-3-2
- gemfiles/Gemfile.rails-4-0
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx
before_install:
- gem install json -v '1.8.1'
- gem install ... | Move rbx to allowed failures again (due to internal rspec errors) | Move rbx to allowed failures again (due to internal rspec errors)
| YAML | mit | jgraichen/msgr,jgraichen/msgr |
ddfc0cac117e57100f4a7946d977bca303ac8403 | .travis.yml | .travis.yml | language: java
sudo: false
install: mvn -T 2 -Ptravis -DskipTests=true -B -V install
script: mvn -T 2 -Ptravis ${JACOCO} test
matrix:
include:
# Covers Java 7, Open JDK, and code coverage
- jdk: openjdk7
env: JACOCO=-Pjacoco
# Covers Java 8, Oracle JDK
- jdk: oraclejdk8
cache:
directories:
- $HO... | language: java
sudo: false
install: mvn -T 2 -Ptravis -DskipTests=true -B -V install
script: mvn -T 2 -Ptravis ${JACOCO} test
matrix:
include:
# Covers Java 7, Open JDK, and code coverage
- jdk: openjdk7
env: JACOCO=-Pjacoco
# Covers Java 8, Oracle JDK, Android apps
- jdk: oraclejdk8
env: ANDROID... | Allow building of Android apps on Travis | Allow building of Android apps on Travis
| YAML | apache-2.0 | tanelihuuskonen/zxing,zxing/zxing,DavidLDawes/zxing,daverix/zxing,qingsong-xu/zxing,zxing/zxing,shixingxing/zxing,Solvoj/zxing,daverix/zxing,DavidLDawes/zxing,lijian17/zxing,daverix/zxing,l-dobrev/zxing,l-dobrev/zxing,shixingxing/zxing,tanelihuuskonen/zxing,qingsong-xu/zxing,daverix/zxing,lijian17/zxing,daverix/zxing,S... |
cc0b3aa39de8f4dce823b95066365a0c25104b48 | .travis.yml | .travis.yml | language: ruby
cache: bundler
before_install: gem install bundler
sudo: false
gemfile:
- gemfiles/standalone.gemfile
- gemfiles/binding_of_caller.gemfile
- gemfiles/delayed_job.gemfile
- gemfiles/rails.gemfile
- gemfiles/rack.gemfile
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
- jruby-19mode
matrix:
fast... | language: ruby
cache: bundler
before_install: gem install bundler
sudo: false
gemfile:
- gemfiles/standalone.gemfile
- gemfiles/binding_of_caller.gemfile
- gemfiles/delayed_job.gemfile
- gemfiles/rails.gemfile
- gemfiles/rack.gemfile
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
- 2.3.0
- jruby-19mode
matr... | Add Ruby 2.3.0 to test matrix | Add Ruby 2.3.0 to test matrix
| YAML | mit | kylerippey/honeybadger-ruby,kylerippey/honeybadger-ruby,honeybadger-io/honeybadger-ruby,honeybadger-io/honeybadger-ruby |
cf82647e9b2fd90a91380d65f46a3e585b3a0785 | .forestry/front_matter/templates/review-no.yml | .forestry/front_matter/templates/review-no.yml | ---
label: review-no
hide_body: false
is_partial: false
fields:
- type: text
name: title
label: Title
- type: include
name: date
label: date
template: partial-date
- name: attribution
label: Attribution
type: text
hidden: false
default: ''
- type: select
name: book
config:
source:
type: ... | ---
label: review-no
hide_body: false
is_partial: false
fields:
- type: text
name: title
label: Title
- type: include
name: date
label: date
template: partial-date
- name: attribution
label: Attribution
type: text
hidden: false
default: ''
- type: select
name: book
config:
source:
type: ... | Update from Forestry.io - Updated kirkus-review-usa-on-før-du-sovner.md | Update from Forestry.io - Updated kirkus-review-usa-on-før-du-sovner.md | YAML | mit | sonnetmedia/linnullmann,sonnetmedia/linnullmann,sonnetmedia/linnullmann |
f82f76c362129b27e947a416aaace1e2a2e28f0b | tasks/install.deb.yml | tasks/install.deb.yml | ---
- include_vars: "{{ansible_distribution}}.yml"
- name: Install Ansible dependencies
apt: name={{item}}
with_items: nodejs_packages
- name: Add APT repository
apt_repository: repo={{nodejs_repository}}
when: nodejs_repository != False
- name: Install nodejs
apt: name=nodejs
# Latest packages doesn't h... | ---
- include_vars: "{{ansible_distribution}}.yml"
- name: Install Ansible dependencies
apt: name={{item}}
with_items: nodejs_packages
- name: Add APT repository
apt_repository: repo={{nodejs_repository}}
when: nodejs_repository != False
- name: Install nodejs
apt: name=nodejs
- name: Install npm
apt: ... | Install npm (was not installed on ubuntu trusty) | Install npm (was not installed on ubuntu trusty) | YAML | mit | MaximeThoonsen/Stouts.nodejs,Stouts/Stouts.nodejs,wiredcraft-ops/role-wcl-nodejs |
19e6a98ec30e73a68eb9558c4d9dba9a05a329df | pubspec.yaml | pubspec.yaml | name: streamy
version: 0.0.1
description: >
An experimental client API generator for services described using Google's API
discovery format (https://developers.google.com/discovery/v1/using#discovery-doc).
The generator comes with templates that generate streaming API via dart:async's
Stream object.
authors:
- ... | name: streamy
version: 0.0.1
description: >
An experimental client API generator for services described using Google's API
discovery format (https://developers.google.com/discovery/v1/using#discovery-doc).
The generator comes with templates that generate streaming API via dart:async's
Stream object.
authors:
- ... | Fix pub package homepage to have the correct github URL. | Fix pub package homepage to have the correct github URL.
| YAML | apache-2.0 | ronlobo/streamy-dart,ronlobo/streamy-dart,google/streamy-dart,google/streamy-dart,google/streamy-dart,ronlobo/streamy-dart,srawlins/streamy-dart,srawlins/streamy-dart,srawlins/streamy-dart,google/streamy-dart,ronlobo/streamy-dart,srawlins/streamy-dart |
c7d0682f2dae14e40ca059dbfa7b3f6074c5d63b | ncp.yml | ncp.yml | # manifest for NCP version testing
#
# `bosh -d ncp deploy ncp.yml`
name: ncp
releases: []
stemcells:
- alias: 621.84
os: ubuntu-xenial
version: 621.84
- alias: 621.85
os: ubuntu-xenial
version: 621.85
update:
canaries: 0
max_in_flight: 10
canary_watch_time: 30000-600000
update_watch_time: 5000-60000... | # manifest for NCP version testing
#
# `bosh -d ncp deploy ncp.yml`
name: ncp
releases: []
stemcells:
- alias: 621.84
os: ubuntu-xenial
version: 621.84
- alias: 621.85
os: ubuntu-xenial
version: 621.85
- alias: 621.87
os: ubuntu-xenial
version: 621.87
update:
canaries: 0
max_in_flight: 10
canary_wa... | Test NCP 3.0.2.2 + Stemcell 621.87 | Test NCP 3.0.2.2 + Stemcell 621.87
| YAML | apache-2.0 | cunnie/deployments,cunnie/deployments |
93ba7bde2fbd5e30aa879cffba2abbc9532aaedd | packages/ta/tak-ai.yaml | packages/ta/tak-ai.yaml | homepage: http://bitbucket.org/sffubs/tak
changelog-type: ''
hash: faaa6b200232dc5fcfc520254c8932218cb35c05fd51d24c4454142bbbb46dfd
test-bench-deps:
base: <5
matrix: -any
parsec: -any
HUnit: -any
random-shuffle: -any
tak: -any
maintainer: henry@elsie.org.uk
synopsis: AI(s) for playing Tak on playtak.com
cha... | homepage: http://bitbucket.org/sffubs/tak
changelog-type: ''
hash: c0c4053e5af3d3caafbca15d9cd2c62eed74bf6425d8337b80c3bbe72a57b81e
test-bench-deps:
base: <5
matrix: -any
parsec: -any
HUnit: -any
random-shuffle: -any
tak: -any
maintainer: henry@elsie.org.uk
synopsis: AI(s) for playing Tak on playtak.com
cha... | Update from Hackage at 2016-06-08T06:22:26+0000 | Update from Hackage at 2016-06-08T06:22:26+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
6fce419ac4570f12d4fcdf16f83fc6b0910352fb | packages/ta/tardis.yaml | packages/ta/tardis.yaml | homepage: https://github.com/DanBurton/tardis
changelog-type: ''
hash: 638f33438da09c98f601b4840917a4f530f2cffe05a0dbafd120bcf6b02033cf
test-bench-deps:
base: '>=4.8 && <5'
tardis: -any
maintainer: danburton.email@gmail.com
synopsis: Bidirectional state monad transformer
changelog: ''
basic-deps:
base: '>=4.8 && ... | homepage: https://github.com/DanBurton/tardis
changelog-type: ''
hash: 0675817aeb12ffb7e3dfd143a6b0556803509d11a668097638f7bca5fc118c89
test-bench-deps:
base: '>=4.8 && <5'
tardis: -any
maintainer: danburton.email@gmail.com
synopsis: Bidirectional state monad transformer
changelog: ''
basic-deps:
base: '>=4.8 && ... | Update from Hackage at 2022-05-08T17:06:08Z | Update from Hackage at 2022-05-08T17:06:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f9fe0bce212d5bd0dfea47499cc6ba2ef344f7ee | .readthedocs.yaml | .readthedocs.yaml | version: 2
sphinx:
configuration: doc/source/conf.py
python:
install:
- method: pip
path: .
| version: 2
sphinx:
configuration: doc/source/conf.py
python:
version: "3.10"
install:
- method: pip
path: .
| Upgrade Python version on RTD | Upgrade Python version on RTD
| YAML | bsd-3-clause | jobovy/galpy,jobovy/galpy,jobovy/galpy,jobovy/galpy |
49c586162eb6f1afe5370c2cba0a4d20d95d9204 | meta/main.yml | meta/main.yml | galaxy_info:
author: Emilien Kenler <ekenler@wizcorp.jp>
description: Installs Facette
company: Wizcorp K.K.
license: MIT
min_ansible_version: 1.8.1
platforms:
- name: EL
versions:
- 6
- 7
- name: Debian
versions:
- wheezy
categories:
- monitoring
dependenci... | galaxy_info:
author: Emilien Kenler <ekenler@wizcorp.jp>
description: Installs Facette
company: Wizcorp K.K.
license: MIT
min_ansible_version: 1.8.1
platforms:
- name: EL
versions:
- 6
- 7
- name: Debian
versions:
- wheezy
categories:
- monitoring
dependenci... | Replace service_name by role_name in the firewall role | Replace service_name by role_name in the firewall role
| YAML | mit | tokyowizard/ansible-facette,AerisCloud/ansible-facette |
b33377652ab50101d5a792bb38962dd9817ba497 | config/kubernetes-sigs/sig-node/teams.yaml | config/kubernetes-sigs/sig-node/teams.yaml | teams:
node-feature-discovery-operator-admins:
description: Admin access to node-feature-discovery-operator repo
members:
- ArangoGutierrez
- marquiz
- zvonkok
privacy: closed
node-feature-discovery-operator-maintainers:
description: Write access to node-feature-discovery-operator repo
... | teams:
node-feature-discovery-operator-admins:
description: Admin access to node-feature-discovery-operator repo
members:
- ArangoGutierrez
- marquiz
- zvonkok
privacy: closed
node-feature-discovery-operator-maintainers:
description: Write access to node-feature-discovery-operator repo
... | Add JAORMX and jhrozek as admins | security-profiles-operator: Add JAORMX and jhrozek as admins
Signed-off-by: Juan Antonio Osorio Robles <d8dc07dad5d21128befc050da3d4f0626ea7fe63@redhat.com>
| YAML | apache-2.0 | kubernetes/org,kubernetes/org,kubernetes/org |
961e3f019065281afdd1376974d4febd6ffeca3f | jenkins/core/tasks/install-jenkins.yml | jenkins/core/tasks/install-jenkins.yml | ---
- name: JENKINS | SETUP | DROP INTO TOMCAT
# =====================================================================
action: copy
args:
src: "{{download_cache}}/jenkins/jenkins-core/jenkins-{{jenkins_download_version}}.war"
dest: "{{apache_tomcat_home}}/webapps/jenkins.war"
register: r_jenkins_wa... | ---
- name: JENKINS | SETUP | DROP INTO TOMCAT
# =====================================================================
action: copy
args:
src: "{{download_cache}}/jenkins/jenkins-core/jenkins-{{jenkins_download_version}}.war"
dest: "{{apache_tomcat_home}}/webapps/jenkins.war"
register: r_jenkins_wa... | Remove implicit tomcat start from role. | jenkins-core: Remove implicit tomcat start from role.
| YAML | bsd-3-clause | jansenm/ansible-jenkins-roles |
ab19016adf49722440c7e11691c4e1dbf396085b | packages/ga/gargoyle-postgresql-nix.yaml | packages/ga/gargoyle-postgresql-nix.yaml | homepage: ''
changelog-type: markdown
hash: 40bae12ca9985c88b5d0969f1cb07ec7b83f85b2797fe0982e8cb839b85a9106
test-bench-deps: {}
maintainer: maintainer@obsidian.systems
synopsis: Manage PostgreSQL servers with gargoyle and nix
changelog: |
# Revision history for gargoyle-postgresql-nix
## 0.3
* Initial hackage ... | homepage: ''
changelog-type: markdown
hash: 76ab7cf187048c830bd9650af2e48fbcee9a3109a2cd5b16ce6efc11a9ea2883
test-bench-deps: {}
maintainer: maintainer@obsidian.systems
synopsis: Manage PostgreSQL servers with gargoyle and nix
changelog: |
# Revision history for gargoyle-postgresql-nix
## 0.3.0.1
* Add support ... | Update from Hackage at 2022-07-01T14:00:08Z | Update from Hackage at 2022-07-01T14:00:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2298077fc87693ad26b308a4d6fe4f1ec72fbbc0 | packages/gl/gloss-raster-accelerate.yaml | packages/gl/gloss-raster-accelerate.yaml | homepage: ''
changelog-type: ''
hash: 2f5fd19319933b579ae461886695a2e08c0209a3847b06303cb84e154636851d
test-bench-deps: {}
maintainer: Trevor L. McDonell <tmcdonell@cse.unsw.edu.au>
synopsis: Parallel rendering of raster images using Accelerate
changelog: ''
basic-deps:
gloss: ! '>=1.9'
colour-accelerate: ! '>=0.1'... | homepage: ''
changelog-type: ''
hash: 12aa63c0409950aad7dd0b4a9927c102223851d6e4befbd39070228585290a4c
test-bench-deps: {}
maintainer: Trevor L. McDonell <tmcdonell@cse.unsw.edu.au>
synopsis: Parallel rendering of raster images using Accelerate
changelog: ''
basic-deps:
gloss: ! '>=1.9'
colour-accelerate: ! '>=0.1'... | Update from Hackage at 2018-04-04T01:05:49Z | Update from Hackage at 2018-04-04T01:05:49Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8fc6b625c9d61255181228077bf19214306a95b2 | metadata/me.impa.knockonports.yml | metadata/me.impa.knockonports.yml | Categories:
- Security
License: Apache-2.0
SourceCode: https://github.com/impalex/knockonports
IssueTracker: https://github.com/impalex/knockonports/issues
AutoName: Knock on Ports
RepoType: git
Repo: https://github.com/impalex/knockonports
Builds:
- versionName: 1.0.3
versionCode: 6
commit: 1.0.3
su... | Categories:
- Security
License: Apache-2.0
SourceCode: https://github.com/impalex/knockonports
IssueTracker: https://github.com/impalex/knockonports/issues
AutoName: Knock on Ports
RepoType: git
Repo: https://github.com/impalex/knockonports
Builds:
- versionName: 1.0.3
versionCode: 6
commit: 1.0.3
su... | Update Knock on Ports to 1.0.6 (9) | Update Knock on Ports to 1.0.6 (9)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata |
ec66a1567af723f843cad82d2dfb98def6ec8bd6 | shippable.yml | shippable.yml | env:
global:
- REPOPATH=`pwd`
# command to install dependencies
before_install:
- pwd
# Install octave with apt-get
- sudo add-apt-repository -y ppa:octave/stable
- sudo apt-get update -qq
- sudo apt-get install octave
# go up one level to retrieve MOxUnit
- cd ..
- git clone git://github.com/MO... | # command to install dependencies
before_install:
- pwd
- REPOPATH=`pwd`
# Install octave with apt-get
- sudo add-apt-repository -y ppa:octave/stable
- sudo apt-get update -qq
- sudo apt-get install octave
# go up one level to retrieve MOxUnit
- cd ..
- git clone git://github.com/MOxUnit/MOxUnit.git... | Fix Shippable cd after installing MOxUnit | Fix Shippable cd after installing MOxUnit
| YAML | mit | scottclowe/matlab-continuous-integration |
9e0b5073c99bda8a2c3a1745994ade2553da5b34 | ci/.github/workflows/ci.yml | ci/.github/workflows/ci.yml | name: RSpec CI
on: [pull_request, push]
jobs:
test:
name: Ruby ${{ matrix.ruby }}
runs-on: ubuntu-20.04
strategy:
matrix:
ruby:
- 3.0.0-preview1
- 2.7
- 2.6
- 2.5
- 2.4
- 2.3
- 2.2
- 2.1.9
- ruby-head
... | name: RSpec CI
on:
push:
branches:
- 'main'
- '*-maintenance'
- '*-dev'
pull_request:
branches:
- '*'
jobs:
test:
name: Ruby ${{ matrix.ruby }}
runs-on: ubuntu-20.04
strategy:
matrix:
ruby:
- 3.0.0-preview1
- 2.7
- 2.6
... | Set allowed branches for push but all pull requests | Set allowed branches for push but all pull requests
| YAML | mit | rspec/rspec-dev,rspec/rspec-dev,rspec/rspec-dev |
2e02e509f70c6d8be263efb853f5a7018a999aba | src/Oro/Bundle/WorkflowBundle/Resources/config/assemblers.yml | src/Oro/Bundle/WorkflowBundle/Resources/config/assemblers.yml | parameters:
oro_workflow.pass.parameter.class: Oro\Bundle\WorkflowBundle\Model\Pass\ParameterPass
oro_workflow.condition_assembler.class: Oro\Bundle\WorkflowBundle\Model\Condition\ConditionAssembler
oro_workflow.post_action_assembler.class: Oro\Bundle\WorkflowBundle\Model\PostAction\PostActionAssembler
se... | parameters:
oro_workflow.pass.parameter.class: Oro\Bundle\WorkflowBundle\Model\Pass\ParameterPass
oro_workflow.condition_assembler.class: Oro\Bundle\WorkflowBundle\Model\Condition\ConditionAssembler
oro_workflow.post_action_assembler.class: Oro\Bundle\WorkflowBundle\Model\PostAction\PostActionAssembler
se... | Create basic post actions - updated configuration | BAP-1217: Create basic post actions
- updated configuration
| YAML | mit | trustify/oroplatform,2ndkauboy/platform,Djamy/platform,umpirsky/platform,2ndkauboy/platform,geoffroycochard/platform,geoffroycochard/platform,Djamy/platform,umpirsky/platform,hugeval/platform,hugeval/platform,akeneo/platform,hugeval/platform,northdakota/platform,trustify/oroplatform,geoffroycochard/platform,northdakota... |
4e821c23c0aaa61e28a982ab7f4a4af962023974 | .github/ISSUE_TEMPLATE/config.yml | .github/ISSUE_TEMPLATE/config.yml | # Ref: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
blank_issues_enabled: true # default
contact_links:
- name: '💬 IRC: #pypa @ Freenode'
url: https://webchat.freenode.net/#pypa
about: Chat with devs
- name: 🤷💻🤦 D... | # Ref: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
blank_issues_enabled: true # default
contact_links:
- name: '💬 IRC: #pypa @ Freenode'
url: https://webchat.freenode.net/#pypa
about: Chat with devs
- name: 🤷💻🤦 D... | Extend the description of the discourse ref | Extend the description of the discourse ref
| YAML | mit | pypa/pip,sbidoul/pip,pfmoore/pip,sbidoul/pip,pradyunsg/pip,pfmoore/pip,pradyunsg/pip,pypa/pip |
e9761cc12a17052eae6b6825e8815ca81384b36d | .github/workflows/npm-publish.yml | .github/workflows/npm-publish.yml | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
release:
types: [created]
jobs:
build:
runs-on: ... | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
release:
types: [created]
jobs:
build:
runs-on: ... | Make npm publish workflow use --tag next | Make npm publish workflow use --tag next
Until we take v5 out of beta
| YAML | agpl-3.0 | internetarchive/bookreader,internetarchive/bookreader |
838c8402527cbbc9e63321e75005302aeaafd10c | examples/puppet_status.yml | examples/puppet_status.yml | module: value_file
period: 1
object: '/home/max/dev/last_run_summary.yaml'
use_stat: True
use_text: True
items:
- runtime:
type: 'integer'
regex: 'time:.*?total:\s*(\d+)'
- success:
type: 'integer'
regex: 'events:.*?success:\s*(\d+)'
- failure:
type: 'integer... | module: value_file
period: 1
object: '/var/lib/puppet/state/last_run_summary.yaml'
use_stat: True
use_text: True
items:
- runtime:
type: 'integer'
regex: 'time:.*?total:\s*(\d+)'
- success:
type: 'integer'
regex: 'events:.*?success:\s*(\d+)'
- failure:
type: ... | Fix puppet plugin example path to state file. | Fix puppet plugin example path to state file.
| YAML | mit | mk23/snmpy,mk23/snmpy |
57c2ce0ca3fd8fe94da99ff9f12c7b41728a8fa9 | jenkins/jobs/kolla.yaml | jenkins/jobs/kolla.yaml | - job-template:
name: '{pipeline}-kolla-functional-f21'
node: '{node}'
builders:
- link-logs
- net-info
- gerrit-git-prep
- shell: |
#!/bin/bash -xe
sudo tests/setup_docker.sh
sudo tox -e images
publishers:
- console-log
| - job-template:
name: '{pipeline}-kolla-functional-f21'
node: '{node}'
wrappers:
- build-timeout:
timeout: 90
- timestamps
builders:
- link-logs
- net-info
- gerrit-git-prep
- shell: |
#!/bin/bash -xe
sudo tests/setup_docker.sh
... | Set the Kolla build timeout to 90 minutes | Set the Kolla build timeout to 90 minutes
We believe the Kolla build will take between 1 and 3 hours. We
are not certain exactly how long it will take, so we plan to
start with 90 minutes and later tune the timer to match our
average run-times + 20%.
Note our gate functional job builds about 40 docker images which
t... | YAML | apache-2.0 | Tesora/tesora-project-config,noorul/os-project-config,anbangr/osci-project-config,dongwenjuan/project-config,coolsvap/project-config,anbangr/osci-project-config,Tesora/tesora-project-config,coolsvap/project-config,citrix-openstack/project-config,openstack-infra/project-config,openstack-infra/project-config,noorul/os-pr... |
6962f392d514131fb33cdb3b0aeeeb26163ed153 | packages/al/algebraic-graphs-io.yaml | packages/al/algebraic-graphs-io.yaml | homepage: https://github.com/ocramz/algebraic-graphs-io
changelog-type: markdown
hash: decaed7200f05e2d9c04209e3a8df032bd8d7f5bbfffa9d6399f8160212f819c
test-bench-deps:
base: -any
hspec: -any
algebraic-graphs-io: -any
QuickCheck: -any
maintainer: ocramz
synopsis: I/O utilities for algebraic-graphs
changelog: |+... | homepage: https://github.com/ocramz/algebraic-graphs-io
changelog-type: markdown
hash: b825412ed6ece261f2c57930acc0562bffc441e222d95ba4595492ef30df0070
test-bench-deps:
base: -any
hspec: -any
algebraic-graphs-io: -any
QuickCheck: -any
maintainer: ocramz
synopsis: I/O utilities for algebraic-graphs
changelog: |+... | Update from Hackage at 2020-12-20T19:04:43Z | Update from Hackage at 2020-12-20T19:04:43Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3add12ad26ee3092b3ad32df7d47ee878694e005 | packages/co/core-webserver-warp.yaml | packages/co/core-webserver-warp.yaml | homepage: https://github.com/aesiniath/unbeliever#readme
changelog-type: ''
hash: a7c41188e560c6f2f38ad21a2b697aa4bd2d7a0062d66798601fa78884d7eaaa
test-bench-deps: {}
maintainer: Andrew Cowie <istathar@gmail.com>
synopsis: Interoperability with Wai/Warp
changelog: ''
basic-deps:
warp: -any
bytestring: -any
wai: -... | homepage: https://github.com/aesiniath/unbeliever#readme
changelog-type: ''
hash: df6e5f99b8d8474b781707d4e220d9628fc63214a15336e38ef9b9ee647b77c6
test-bench-deps: {}
maintainer: Andrew Cowie <istathar@gmail.com>
synopsis: Interoperability with Wai/Warp
changelog: ''
basic-deps:
warp: -any
bytestring: -any
wai: -... | Update from Hackage at 2022-04-28T08:50:02Z | Update from Hackage at 2022-04-28T08:50:02Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6e16265d8a3506d2220b95bfe85079ab86e09eaa | packages/he/hexpat-streamparser.yaml | packages/he/hexpat-streamparser.yaml | homepage: ''
changelog-type: ''
hash: 3226bf62cebff461c02b70715e884552827651575d7c97bddbad53d23bf72f62
test-bench-deps: {}
maintainer: kristof@resonata.be
synopsis: ''
changelog: ''
basic-deps:
bytestring: '>=0.10 && <0.11'
List: '>=0.6 && <0.7'
base: '>=4.9 && <5'
parser-combinators: '>=1.2 && <1.3'
text: '>... | homepage: ''
changelog-type: ''
hash: b957af97fdfa5b04e183b7c8ad07526afe42b707a15fa6ff2e5eae60f42c075e
test-bench-deps: {}
maintainer: kristof@resonata.be
synopsis: ''
changelog: ''
basic-deps:
bytestring: '>=0.10 && <0.11'
List: '>=0.6 && <0.7'
base: '>=4.9 && <5'
parser-combinators: '>=1.2 && <1.3'
text: '>... | Update from Hackage at 2021-01-31T18:57:23Z | Update from Hackage at 2021-01-31T18:57:23Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
77126e5b85d666d376f1e8a981609d89d1e17525 | recipes/cytoolz/meta.yaml | recipes/cytoolz/meta.yaml | {% set version = "0.7.5" %}
package:
name: cytoolz
version: {{ version }}
source:
fn: cytoolz-{{ version }}.tar.gz
url: https://pypi.io/packages/source/c/cytoolz/cytoolz-{{ version }}.tar.gz
md5: 15fbc1c56fca80cbca0e89f37c93d432
build:
number: 0
script: python setup.py install --record=record.txt
requ... | {% set version = "0.8.0" %}
package:
name: cytoolz
version: {{ version }}
source:
fn: cytoolz-{{ version }}.tar.gz
url: https://pypi.io/packages/source/c/cytoolz/cytoolz-{{ version }}.tar.gz
md5: 432f0a17e04223942ebb5312d8f895ad
build:
number: 0
script: python setup.py install --no-cython --single-vers... | Update cytoolz recipe for 0.8.0 | Update cytoolz recipe for 0.8.0
| YAML | bsd-3-clause | ReimarBauer/staged-recipes,johannesring/staged-recipes,larray-project/staged-recipes,data-exp-lab/staged-recipes,mcernak/staged-recipes,Cashalow/staged-recipes,jerowe/staged-recipes,chrisburr/staged-recipes,basnijholt/staged-recipes,sannykr/staged-recipes,barkls/staged-recipes,kwilcox/staged-recipes,glemaitre/staged-re... |
e73b3f214bbbfb30a6d3dfda173c3a0462820c97 | packages/fo/foldable-ix.yaml | packages/fo/foldable-ix.yaml | homepage: https://hackage.haskell.org/package/foldable-ix
changelog-type: markdown
hash: dab10f9756d8ea0c09e3ad64d4e39a2fda853970b0a03d781db1ae61aca4608d
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Functions to find out the indices of the elements in the Foldable structures
changelog: |
# Revision... | homepage: https://hackage.haskell.org/package/foldable-ix
changelog-type: markdown
hash: dab10f9756d8ea0c09e3ad64d4e39a2fda853970b0a03d781db1ae61aca4608d
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Functions to find out the indices of the elements in the Foldable structures
changelog: |
# Revision... | Update from Hackage at 2021-02-18T10:34:17Z | Update from Hackage at 2021-02-18T10:34:17Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2ddaf4664d10a3fd99a26b4c616142e9b28526f1 | packages/sh/show-please.yaml | packages/sh/show-please.yaml | homepage: https://github.com/ddssff/show-please
changelog-type: ''
hash: 32618ee74251038034de1cf1b51625b53b0be5ea8f3c7f920cbfa90608a27084
test-bench-deps: {}
maintainer: David Fox <dsf@seereason.com>
synopsis: A wrapper type V with improved Show instances
changelog: ''
basic-deps:
base: ! '>=4 && <5'
time: ! '>=1.5... | homepage: https://github.com/ddssff/show-please
changelog-type: ''
hash: 8d91b13dbfcf4f598998fd1c692da12046f5e74adfbd18afeb675b8d05553b35
test-bench-deps: {}
maintainer: David Fox <dsf@seereason.com>
synopsis: A wrapper type V with improved Show instances
changelog: ''
basic-deps:
base: ! '>=4 && <5'
time: ! '>=1.5... | Update from Hackage at 2018-02-02T02:47:47Z | Update from Hackage at 2018-02-02T02:47:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2ed255fb133ce4beb3b5fc3830c4c0b62943b5fb | _bookdown.yml | _bookdown.yml | book_filename: "RProgrammingForResearch"
chapter_name: "Chapter "
rmd_files: ["index.Rmd", "00-course_info.Rmd", "01-prelim.Rmd", "02-databasics.Rmd", "vocabulary.Rmd", "homework.Rmd"]
repo: https://github.com/geanders/RProgrammingForResearch/
edit:
link: https://github.com/geanders/RProgrammingForResearch/edit/maste... | book_filename: "RProgrammingForResearch"
chapter_name: "Chapter "
rmd_files: ["index.Rmd", "00-course_info.Rmd", "01-prelim.Rmd", "02-databasics.Rmd", "03-exploringdata1.Rmd", "vocabulary.Rmd", "homework.Rmd"]
repo: https://github.com/geanders/RProgrammingForResearch/
edit:
link: https://github.com/geanders/RProgramm... | Add Chapter 3 to book | Add Chapter 3 to book
| YAML | cc0-1.0 | geanders/RProgrammingForResearch,geanders/RProgrammingForResearch,geanders/RProgrammingForResearch |
1570ed6a01a65f1dda3ecca2a6f0adb589f40026 | metadata/com.beemdevelopment.aegis.yml | metadata/com.beemdevelopment.aegis.yml | Categories:
- Security
License: GPL-3.0-only
SourceCode: https://github.com/beemdevelopment/Aegis
IssueTracker: https://github.com/beemdevelopment/Aegis/issues
RepoType: git
Repo: https://github.com/beemdevelopment/Aegis
Builds:
- versionName: '0.2'
versionCode: 3
commit: v0.2
subdir: app
gradle:
... | Categories:
- Security
License: GPL-3.0-only
SourceCode: https://github.com/beemdevelopment/Aegis
IssueTracker: https://github.com/beemdevelopment/Aegis/issues
AutoName: Aegis
RepoType: git
Repo: https://github.com/beemdevelopment/Aegis
Builds:
- versionName: '0.2'
versionCode: 3
commit: v0.2
subdir:... | Update Aegis to 0.2.2 (5) | Update Aegis to 0.2.2 (5)
| YAML | agpl-3.0 | f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata |
91f01f9fc052259356e8e46b05ccdb20e59e6635 | config/settings.yml | config/settings.yml | title: <%= ENV["APP_TITLE"] || 'Spread Beaver' %>
latest_entries_per_feed: <%= ENV["LATEST_ENTRIES_PER_FEED"] || 1 %>
duration_for_common_stream: <%= ENV["DURATION_FOR_COMMON_STREAM"] || 4 %>
duration_for_ranking: <%= ENV["DURATION_FOR_RANKING"] || 2 %>
feedly_target: <%= ENV["FEEDLY_TARGET"] || 'sandbox' %>
twitter... | title: <%= ENV["APP_TITLE"] || 'Spread Beaver' %>
latest_entries_per_feed: <%= ENV["LATEST_ENTRIES_PER_FEED"] || 3 %>
duration_for_common_stream: <%= ENV["DURATION_FOR_COMMON_STREAM"] || 4 %>
duration_for_ranking: <%= ENV["DURATION_FOR_RANKING"] || 2 %>
feedly_target: <%= ENV["FEEDLY_TARGET"] || 'sandbox' %>
twitter... | Change default LATEST_ENTRIES_PER_FEED to 3 | Change default LATEST_ENTRIES_PER_FEED to 3
| YAML | mit | kumabook/spread_beaver,kumabook/spread_beaver,kumabook/spread_beaver |
1c01990d47ced492cb1d5ed4dfcdc4667ea59873 | packages/un/unpacked-maybe-numeric.yaml | packages/un/unpacked-maybe-numeric.yaml | homepage: https://github.com/andrewthad/unpacked-maybe-numeric#readme
changelog-type: ''
hash: 92ae159b2e5f9079cec4004b01e0ae070022b5072dca70b14a9619b3f2f15951
test-bench-deps:
base: -any
quickcheck-classes: -any
unpacked-maybe-numeric: -any
QuickCheck: -any
maintainer: andrew.thaddeus@gmail.com, chessai1996@gm... | homepage: https://github.com/andrewthad/unpacked-maybe-numeric#readme
changelog-type: ''
hash: 932e8b5cc2b0579adef427ca2c67888bbf19698c990e8d6b8f69df02871b8925
test-bench-deps:
base: -any
quickcheck-classes: -any
unpacked-maybe-numeric: -any
QuickCheck: -any
maintainer: andrew.thaddeus@gmail.com, chessai1996@gm... | Update from Hackage at 2022-05-23T12:09:52Z | Update from Hackage at 2022-05-23T12:09:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0cf8a0e0bf2c1e05a531543d86c5d95ae1ce9f2c | build.yaml | build.yaml | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.8.1
# Mocking library used in tests
mockito: org.mockito:mockito-all:jar:1.9.5
| repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_annotation: com.google.code.findbugs:jsr305:jar:3.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.8.1
# Mocking library used in tests
mockito: org.mockito:mockito-all:jar:1.9.5
| Move to latest findbugs dep | Move to latest findbugs dep
| YAML | apache-2.0 | realityforge/gwt-eventsource,realityforge/gwt-eventsource |
75d5db1399cd16da2203298d2579ace196e0da5c | 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.5"
- "com.github.rundeck-plugins:py-winrm-plugin:2.0.10"
- "com.github.rundeck-plugins:openssh-node-execution:2.0.1"
- "com.github.rundeck-plugins:multilin... | ---
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.5"
- "com.github.rundeck-plugins:py-winrm-plugin:2.0.11"
- "com.github.rundeck-plugins:openssh-node-execution:2.0.1"
- "com.github.rundeck-plugins:multilin... | Update pywinrm plugin. Added a function to remove/replace simple quotes when execute CMD command | Update pywinrm plugin. Added a function to remove/replace simple quotes when execute CMD command
| YAML | apache-2.0 | rundeck/rundeck,variacode/rundeck,variacode/rundeck,rundeck/rundeck,rundeck/rundeck,variacode/rundeck,variacode/rundeck,variacode/rundeck,rundeck/rundeck,rundeck/rundeck |
81a53ac8648076977326df62b34f9a3f4d4925ca | build.yaml | build.yaml | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_javaee: javax:javaee-api:jar:7.0
javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.5.1
gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1
javax_validation: javax.validation:validation-api:jar... | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_javaee: javax:javaee-api:jar:7.0
javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.5.1
gwt_dev: com.google.gwt:gwt-dev:jar:2.5.1
javax_validation: javax.validation:validation-api:jar... | Move to released version of gwt-eventsource | Move to released version of gwt-eventsource
| YAML | apache-2.0 | realityforge/gwt-eventsource-example,realityforge/gwt-eventsource-example,realityforge/gwt-eventsource-example |
9f92f1f3e03c362d1e194e648cc35ff8f847a5ee | shard.yml | shard.yml | name: atcoder
version: 0.1.0
authors:
- Koki Takahashi <hakatasiloving@gmail.com>
description: |
Implementation of ac-library in Crystal language
crystal: 0.33.0
repository: https://github.com/hakatashi/ac-library.cr.git
homepage: https://github.com/hakatashi/ac-library.cr
documentation: https://github.com/ha... | name: atcoder
version: 0.1.0
authors:
- Koki Takahashi <hakatasiloving@gmail.com>
description: |
Implementation of ac-library in Crystal language
crystal: 0.33.0
repository: https://github.com/google/ac-library.cr.git
homepage: https://github.com/google/ac-library.cr
documentation: https://github.com/google/a... | Rename github username with google | Rename github username with google
| YAML | apache-2.0 | google/ac-library.cr |
dd6273f45b7cd49f5bd9be85f1ab467efd12f81f | scripts/jenkins/cloud/ansible/roles/setup_amphora_image/defaults/main.yml | scripts/jenkins/cloud/ansible/roles/setup_amphora_image/defaults/main.yml | #
# (c) Copyright 2018 SUSE LLC
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | #
# (c) Copyright 2018 SUSE LLC
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, s... | Fix amphora image rpm selection process (SOC-11407) | Fix amphora image rpm selection process (SOC-11407)
The linux find command returns the list of files found in a directory
in the order they are found in the directory listing which is usually
some form of inode order, and not necessarily lexically sorted.
This patch fixes the issue by including a 'sort --version-sort... | YAML | apache-2.0 | SUSE-Cloud/automation,gosipyan/automation,gosipyan/automation,SUSE-Cloud/automation,SUSE-Cloud/automation,gosipyan/automation,gosipyan/automation,SUSE-Cloud/automation |
f9037af2d3b7a15472e79ce63fc2fb48eeb90582 | circle.yml | circle.yml | dependencies:
post:
- cp .env.example .env
- php artisan key:generate
| dependencies:
post:
- cp .env.example .env
- php artisan key:generate
- gulp
| Add gulp as dependency (post) | CI: Add gulp as dependency (post)
| YAML | mit | chrismccluskey/chris.mccluskey.us,chrismccluskey/chris.mccluskey.us,chrismccluskey/chris.mccluskey.us |
42d1797f1cd4e7df9ae460832ca63623a772bafc | circle.yml | circle.yml | machine:
environment:
GO15VENDOREXPERIMENT: 1
GOROOT: "/home/ubuntu/go"
PATH: "/home/ubuntu/go/bin:$PATH"
dependencies:
cache_directories:
- "/home/ubuntu/go"
pre:
- mkdir -p /home/ubuntu/go
test:
override:
- go version
- go test ./...
general:
branches:
ignore:
- gh-p... | machine:
environment:
GO15VENDOREXPERIMENT: 1
test:
override:
- go version
- go test ./...
general:
branches:
ignore:
- gh-pages
| Clean up old CircleCI environment work arounds | Clean up old CircleCI environment work arounds
| YAML | isc | inceptionllc/go-lights |
3926593d7bcad405fb91358fb1bdca46f06948a8 | circle.yml | circle.yml | machine:
ruby:
version: 2.2.3
dependencies:
pre:
- gem install bundler -v 1.10.6
| machine:
ruby:
version: 2.2.3
dependencies:
pre:
- gem install bundler -v 1.10.6
| Test commit to try to trigger Circle hooks | Test commit to try to trigger Circle hooks
| YAML | apache-2.0 | academia-edu/dejunk,academia-edu/dejunk |
f1969a9ae19d1135808722b1221f96faf83d3283 | circle.yml | circle.yml | dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tools,platform-tools,android-23"
- echo y | android update sdk --no-ui --all --filter "build-tools-23.0.2"
test:
override:
# run lint (tests will come next ...)
- ./gradlew :library:check
# copy results
- cp -r librar... | dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tools,platform-tools,android-23"
- echo y | android update sdk --no-ui --all --filter "build-tools-23.0.2"
test:
override:
# run lint (tests will come next ...)
- ./gradlew :library:check
# copy results
- cp -r librar... | Include just lint and test output | Include just lint and test output
| YAML | mit | eggheadgames/android-realm-asset-helper |
b36ca5e1ed21e6dfd943020d9c8d58dbc339d4b2 | circle.yml | circle.yml | machine:
timezone:
America/Los_Angeles
python:
version: 3.5.1
dependencies:
override:
- pip install -q numpy
- pip install -r requirements-travis.txt
- python setup.py develop
test:
override:
- find . -name "*.pyc" -exec rm '{}' \;
- find . -name "test_*.py" -exec chmod -x '{}' \;
... | machine:
timezone:
America/Los_Angeles
python:
version: 3.5.1
dependencies:
override:
- pip install -q numpy
- pip install -r requirements-travis.txt
- python setup.py develop
test:
override:
- find . -name "*.pyc" -exec rm '{}' \;
- find . -name "test_*.py" -exec chmod -x '{}' \;
... | Test only monty and tests dir. | Test only monty and tests dir.
| YAML | mit | davidwaroquiers/monty,materialsvirtuallab/monty,materialsvirtuallab/monty,davidwaroquiers/monty,gmatteo/monty,gmatteo/monty |
b3cccd8aa98bac4491ba98725e88c442ca2831b9 | circle.yml | circle.yml | machine:
xcode:
version: 8.3
dependencies:
pre:
- mdfind "kMDItemCFBundleIdentifier == 'com.apple.dt.Xcode'" | awk '{print "echo "$1" && defaults read "$1"/Contents/Info.plist CFBundleShortVersionString\0"}' | xargs -0 bash -c
- xcodebuild -version -sdk
- xcrun simctl list
- sudo gem install sc... | machine:
xcode:
version: 8.3
dependencies:
pre:
- mdfind "kMDItemCFBundleIdentifier == 'com.apple.dt.Xcode'" | awk '{print "echo "$1" && defaults read "$1"/Contents/Info.plist CFBundleShortVersionString\0"}' | xargs -0 bash -c
- xcodebuild -version -sdk
- xcrun simctl list
- sudo gem install sc... | Enable verbose output for codecov script | Enable verbose output for codecov script
Trying to diagnose why "Processing Xcode plists" does not find anything on CircleCI.
| YAML | mit | mingsai/XCDYouTubeVideoPlayerViewController,twobitlabs/XCDYouTubeKit,creationst/XCDYouTubeKit,twobitlabs/XCDYouTubeKit,mingsai/XCDYouTubeVideoPlayerViewController,mingsai/XCDYouTubeVideoPlayerViewController,morrisirrom/XCDYouTubeKit,twobitlabs/XCDYouTubeKit,0xced/XCDYouTubeKit,morrisirrom/XCDYouTubeKit,0xced/XCDYouTube... |
9fafdec4d114da28c15ebfb690ee0f3d70ff9ef4 | recipes/traja/meta.yaml | recipes/traja/meta.yaml | {% set name = "traja" %}
{% set version = "0.0.8" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 873c671ccb48a79b1e6e48c70ab9b43819f96241bb339aabacc1ed2e6afd3896
build:
number: 0
s... | {% set name = "traja" %}
{% set version = "0.0.8" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 873c671ccb48a79b1e6e48c70ab9b43819f96241bb339aabacc1ed2e6afd3896
build:
number: 0
s... | Fix python version to 3.6 (for now) | Fix python version to 3.6 (for now)
| YAML | bsd-3-clause | stuertz/staged-recipes,isuruf/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,cpaulik/staged-recipes,conda-forge/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,jjhelmus/staged-... |
a09bfdb051172d9b782fb68c2b4529fb30240bfb | deployment/playbook.yml | deployment/playbook.yml | ---
- hosts: app
become: yes
vars:
network: "{{project_name}}"
roles:
- name: common
- name: docker_network
networks:
- "{{network}}"
- name: memcached
version: "1.6"
- name: forum
version: "{{app_version}}"
network: "{{project_name}}"
- name: certbot-ovh
... | ---
- hosts: app
become: yes
vars:
network: "{{project_name}}"
roles:
- name: common
- name: docker_network
networks:
- "{{network}}"
- name: memcached
version: "1.6"
- name: forum
version: "{{app_version}}"
network: "{{project_name}}"
- name: certbot-ovh
... | Add changed_when: no to docker cleanup step | Add changed_when: no to docker cleanup step
Always diffs otherwise which doesn't give much information
| YAML | apache-2.0 | maur1th/naxos,maur1th/naxos,maur1th/naxos,maur1th/naxos |
8e482172701fa1ae1d16991031324dc6a5c24ea2 | provisioning/roles/common/vars/main.yml | provisioning/roles/common/vars/main.yml | ---
system_packages:
- build-essential
- autoconf
- re2c
- git-core
- python-mysqldb
- nodejs
| ---
system_packages:
- build-essential
- autoconf
- re2c
- curl
- git-core
- python-mysqldb
- nodejs
| Add curl as default module | Add curl as default module
| YAML | mit | evolution/genesis-wordpress,jalevin/wordpress,jalevin/wordpress,evolution/genesis-wordpress,evolution/wordpress,genesis/wordpress,jalevin/wordpress,evolution/genesis-wordpress,evolution/wordpress,genesis/wordpress,jalevin/wordpress,evolution/wordpress,evolution/genesis-wordpress,genesis/wordpress,genesis/wordpress,gene... |
3d3371a6017f629b192b6d3be25095150317e328 | .appveyor.yml | .appveyor.yml | version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
image: Visual Studio 2015
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
cache:
- c:\projects\vcpkg\installed -> bigtable\api\ci\install-windows.ps1
install:
- git submodule update --init --recursive
- powershell -exec bypass bigtab... | version: 1.0.{build}
init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
pull_requests:
do_not_increment_build_number: true
image: Visual Studio 2015
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
cache:
- c:\projects\v... | Enable RDP to debug build. | Enable RDP to debug build.
| YAML | apache-2.0 | GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples |
6e90401fa4481f64a449cdc8cbe2ba40eff26790 | .appveyor.yml | .appveyor.yml | clone_depth: 1
environment:
matrix:
- nodejs_version: 6
- nodejs_version: 7
- nodejs_version: 8
install:
- choco install googlechrome
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
- node --version
- npm --version
- npm test
build: off
cache:
- node_module... | clone_depth: 1
environment:
matrix:
- nodejs_version: 6
- nodejs_version: 7
- nodejs_version: 8
install:
- choco install googlechrome
- ps: Install-Product node $env:nodejs_version
- node --version
- npm --version
- npm install
test_script:
- npm test
build: off
cache:
- node_module... | Move informational commands to install phase. | Move informational commands to install phase.
| YAML | mit | westy92/html-pdf-chrome,westy92/html-pdf-chrome |
e2f4d2c76d0b1bef36655658594a0365e8444c40 | .appveyor.yml | .appveyor.yml | branches:
only:
- master
- develop
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: ""
install:
- ps: Install-Product node $env:nodejs_version
- npm install
- npm run prepare
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- np... | branches:
only:
- master
- develop
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: ""
install:
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
build: off
| Upgrade "old" lts version to 8 | Upgrade "old" lts version to 8
| YAML | mit | JohnRGee/arm,JohnRGee/forest-arborist,JohnRGee/forest-arborist |
79e76d8329b655d9cce03989a88b0d38e523dd6f | .appveyor.yml | .appveyor.yml | os: Visual Studio 2015
environment:
HOME: "%HOMEDRIVE%%HOMEPATH%"
PYTHON: C:\Python27
SCONS_CACHE_ROOT: "%HOME%\\scons_cache"
SCONS_CACHE_LIMIT: 512
matrix:
- VS: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat
GD_PLATFORM: windows
TOOLS: yes
TARGET: release_debug
... | os: Visual Studio 2015
environment:
HOME: "%HOMEDRIVE%%HOMEPATH%"
PYTHON: C:\Python27
SCONS_CACHE_ROOT: "%HOME%\\scons_cache"
SCONS_CACHE_LIMIT: 512
matrix:
- VS: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat
GD_PLATFORM: windows
TOOLS: yes
TARGET: release_debug
... | Fix scons installation on AppVeyor | Fix scons installation on AppVeyor
Seems like AppVeyor just upgraded pip and finally removed the
deprecated --egg switch.
| YAML | mit | honix/godot,Faless/godot,groud/godot,godotengine/godot,josempans/godot,Paulloz/godot,okamstudio/godot,Shockblast/godot,akien-mga/godot,vnen/godot,Faless/godot,ZuBsPaCe/godot,Valentactive/godot,Valentactive/godot,BastiaanOlij/godot,NateWardawg/godot,akien-mga/godot,groud/godot,firefly2442/godot,Zylann/godot,MarianoGnu/g... |
78a250a30d48bac304553d4e8f8f4683dea6653a | .appveyor.yml | .appveyor.yml | version: 0.3.0.{build}
branches:
except:
- gh-pages
image: Visual Studio 2015
configuration:
- Debug
- Release
before_build: |
cmake . -DSAL_UNITTESTS=yes -G "Visual Studio 14 2015 Win64"
build_script: |
set
cmake --build . --config %CONFIGURATION%
test_script: |
ps: scripts\appveyor_test_script... | version: 0.3.0.{build}
branches:
except:
- gh-pages
image: Visual Studio 2015
configuration:
- Debug
- Release
before_build: |
'C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat' x64 10.0.10240.0
cmake . -DSAL_UNITTESTS=yes -G "Visual Studio 14 2015 Win64"
build_script: |
cmake -... | Use explicitly Windows SDK 10.0.10240.0 | Use explicitly Windows SDK 10.0.10240.0
| YAML | mit | svens/sal,svens/sal |
88f85ac878d88af1aecafbcffb3569c643a71586 | .pipeline.yml | .pipeline.yml | ---
resources:
- name: stethoscope
type: git
source:
uri: https://github.com/hsienchiaolee/stethoscope.git
jobs:
- name: unit-test
public: true
plan:
- get: stethoscope
trigger: true
- task: test
config:
platform: darwin
inputs:
- name: stethoscope
run:
path: sh
... | ---
resources:
- name: stethoscope
type: git
source:
uri: https://github.com/ericTsiliacos/stethoscope.git
jobs:
- name: unit-test
public: true
plan:
- get: stethoscope
trigger: true
- task: test
config:
platform: darwin
inputs:
- name: stethoscope
run:
path: sh
... | Change concourse origin to main repo | Change concourse origin to main repo
| YAML | bsd-3-clause | ericTsiliacos/stethoscope,ericTsiliacos/stethoscope,hsienchiaolee/stethoscope,hsienchiaolee/stethoscope |
b9d61d62d977c849f9f8d2a0428cd26d0f6a15b7 | .slackbot.yml | .slackbot.yml | releaseSchedule:
dbagnell: 2/4/2019
ggetz: 3/4/2019
hpinkos: 4/1/2019
lilleyse: 5/2/2019
gary: 6/3/2019
mamato: 7/1/2019
tfili: 8/1/2019
greetings:
- Happy Friday everyone!
- Can you believe Friday is already here?
- I hope you all had awesome week!
- I skipped breakfast, so I hope Gary baked som... | releaseSchedule:
dbagnell: 2/1/2019
ggetz: 3/1/2019
hpinkos: 4/1/2019
lilleyse: 5/1/2019
gary: 6/3/2019
mamato: 7/1/2019
tfili: 8/2/2019
greetings:
- Happy Friday everyone!
- Can you believe Friday is already here?
- I hope you all had awesome week!
- I skipped breakfast, so I hope Gary baked som... | Make release schedule dates not on a weekend | Make release schedule dates not on a weekend | YAML | apache-2.0 | CesiumGS/cesium,jasonbeverage/cesium,likangning93/cesium,YonatanKra/cesium,kaktus40/cesium,josh-bernstein/cesium,AnalyticalGraphicsInc/cesium,jasonbeverage/cesium,geoscan/cesium,CesiumGS/cesium,YonatanKra/cesium,hodbauer/cesium,YonatanKra/cesium,likangning93/cesium,AnalyticalGraphicsInc/cesium,progsung/cesium,hodbauer/... |
3664314531448f05ed553f0aa89b267ce4a0cc1c | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: src/_posts
label: Posts
create: all
match: "**/*"
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
install_dependencies_co... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: document
path: src/index.html
label: Home page
match: "**/*"
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
install_dependencies_command: ... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | lewisnyman/lewisnyman.co.uk-source,lewisnyman/lewisnyman.co.uk-source,lewisnyman/lewisnyman.co.uk-source |
d572816ff878b4afd2bd7686526d2aee32ebbb21 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: assets/cms
public_path: "/assets/cms"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
instan... | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: assets
public_path: "/assets"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
instant_previe... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | StartupShell/web-2017,StartupShell/web-2017,StartupShell/web-2017 |
54518a4b7efded169855bc08b39859dd464e3ee9 | .github/dependabot.yml | .github/dependabot.yml | version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: weekly
day: "monday"
time: "00:00"
timezone: Europe/London
open-pull-requests-limit: 10
ignore:
- dependency-name: govuk-colours
versions:
- ">= 0"
- dependency-name: govuk-frontend
versions:
- ">... | version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: weekly
day: "monday"
time: "00:00"
timezone: Europe/London
open-pull-requests-limit: 10
ignore:
- dependency-name: govuk-colours
versions:
- ">= 0"
- dependency-name: govuk-frontend
versions:
- ">... | Remove image-webpack-loader from Dependabot ignore list | Remove image-webpack-loader from Dependabot ignore list | YAML | mit | uktrade/data-hub-frontend,uktrade/data-hub-fe-beta2,uktrade/data-hub-fe-beta2,uktrade/data-hub-frontend,uktrade/data-hub-frontend |
731d75e0001927a25a5b32370d38d5a7684788ee | data/sites/homeoffice_rds.yml | data/sites/homeoffice_rds.yml | ---
site: homeoffice_rds
host: rds.homeoffice.gov.uk
redirection_date: 27th March 2013
tna_timestamp: 20120603160241
title: Home Office
homepage: https://www.gov.uk/government/organisations/home-office
global: =410
css: home-office
---
| ---
site: homeoffice_rds
host: rds.homeoffice.gov.uk
redirection_date: 27th March 2013
tna_timestamp: 20110314171826
title: Home Office
homepage: https://www.gov.uk/government/organisations/home-office
global: =410
css: home-office
---
| Update archive link for rds | Update archive link for rds
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
2147ccfc1749b26d19d3a5112ae092b918adf733 | cluster/manifests/kube-janitor/deployment.yaml | cluster/manifests/kube-janitor/deployment.yaml | {{ if ne .Environment "production" }}
apiVersion: apps/v1
kind: Deployment
metadata:
name: kube-janitor
namespace: kube-system
labels:
application: kube-janitor
version: v0.2.2
spec:
replicas: 1
selector:
matchLabels:
application: kube-janitor
template:
metadata:
labels:
... | {{ if ne .Environment "production" }}
apiVersion: apps/v1
kind: Deployment
metadata:
name: kube-janitor
namespace: kube-system
labels:
application: kube-janitor
version: v0.2.2
spec:
replicas: 1
selector:
matchLabels:
application: kube-janitor
template:
metadata:
labels:
... | Add a missing priority class | Add a missing priority class
Signed-off-by: Alexey Ermakov <6610c7e1c26fb4c3222ac4f760cb43a9f3c01622@zalando.de>
| YAML | mit | zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws |
62910b378a151f0c43d267fea2dadf3f21afed01 | META.yml | META.yml | ---
abstract: 'DSV parser and serializer.'
author:
- 'Michal Špaček <skim@cpan.org>'
build_requires:
English: 0
ExtUtils::MakeMaker: 6.42
File::Object: 0.01
Test::More: 0
Test::Pod: 0
Test::Pod::Coverage: 0
configure_requires:
ExtUtils::MakeMaker: 6.42
distribution_type: module
generated_by: 'Module::In... | ---
abstract: 'DSV parser and serializer.'
author:
- 'Michal Špaček <skim@cpan.org>'
build_requires:
English: 0
ExtUtils::MakeMaker: 6.42
File::Object: 0.05
Test::More: 0
Test::Pod: 0
Test::Pod::Coverage: 0
configure_requires:
ExtUtils::MakeMaker: 6.42
distribution_type: module
generated_by: 'Module::In... | Update to actual version of my modules. | Update to actual version of my modules.
| YAML | bsd-2-clause | tupinek/Text-DSV |
383f76982a96a1efb83beba513f86a8be4c75314 | hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2843-treat-canonicals-as-local.yaml | hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2843-treat-canonicals-as-local.yaml | ---
type: change
issue: 2843
title: "HAPi-FHIR provides indexing on Canonical Types as references. However, the option to [treat absolute references as local](/docs/server_jpa/configuration.html#jpa-server-configuration-options)
was being ignored for those indexed canonicals. This has been corrected. Now, if you have ... | ---
type: change
issue: 2843
title: "HAPI-FHIR provides indexing on Canonical Types as references. However, the option to [treat absolute references as local](/hapi-fhir/docs/server_jpa/configuration.html#jpa-server-configuration-options)
was being ignored for those indexed canonicals. This has been corrected. Now, if... | Fix broken link in yaml | Fix broken link in yaml
| YAML | apache-2.0 | aemay2/hapi-fhir,jamesagnew/hapi-fhir,jamesagnew/hapi-fhir,jamesagnew/hapi-fhir,aemay2/hapi-fhir,jamesagnew/hapi-fhir,jamesagnew/hapi-fhir,jamesagnew/hapi-fhir,aemay2/hapi-fhir,aemay2/hapi-fhir,aemay2/hapi-fhir,aemay2/hapi-fhir |
2046ebbb3e570715ec0cb0f721153c6a0c62ec23 | dep/cloudbuild.yaml | dep/cloudbuild.yaml | # In this directory, run the following command to build this builder.
# $ gcloud container builds submit . --config=cloudbuild.yaml
steps:
# Build the alpine and debian versions.
- name: 'gcr.io/cloud-builders/docker'
args: ['build', '-f', 'Dockerfile.alpine', '--tag=gcr.io/$PROJECT_ID/dep:alpine', '.']
- name: 'gcr... | # In this directory, run the following command to build this builder.
# $ gcloud container builds submit . --config=cloudbuild.yaml
steps:
# Build the alpine and debian versions.
- name: 'gcr.io/cloud-builders/docker'
args: ['build', '-f', 'Dockerfile.alpine', '--tag=gcr.io/$PROJECT_ID/dep:alpine', '.']
- name: 'gcr... | Add GOPATH to dep step | Add GOPATH to dep step
| YAML | apache-2.0 | GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,GoogleCloudPlatform/cloud-builders-community,Googl... |
4d638d973f4308c142a4272a02686b866af8d675 | .bazelci/presubmit.yml | .bazelci/presubmit.yml | ---
platforms:
ubuntu1404:
build_targets:
- "..."
test_targets:
- "..."
ubuntu1604:
build_targets:
- "..."
test_targets:
- "..."
macos:
build_targets:
- "..."
test_targets:
- "..."
windows:
build_targets:
- "..."
test_targets:
- "..."
| ---
platforms:
ubuntu1404:
build_targets:
- "..."
test_targets:
- "..."
ubuntu1604:
build_targets:
- "..."
test_targets:
- "..."
macos:
build_targets:
- "..."
test_targets:
- "..."
windows:
build_targets:
# Escape hyphens on later args
- "--"
- "//... | Exclude skydoc build on Windows CI | Exclude skydoc build on Windows CI
| YAML | apache-2.0 | bazelbuild/rules_sass,bazelbuild/rules_sass |
ce8a8b83970db0c72d02916ec575e39953b9d9f2 | .bazelci/presubmit.yml | .bazelci/presubmit.yml | ---
platforms:
macos:
build_flags:
# For historical reasons, the default platform for Apple builds is iOS. This
# ensures that we build artifacts that run on macOS.
- "--cpu=darwin_x86_64"
- "--apple_platform_type=macos"
build_targets:
- "//examples/..."
test_flags:
# For historica... | ---
platforms:
macos:
build_flags:
# For historical reasons, the default platform for Apple builds is iOS. This
# ensures that we build artifacts that run on macOS.
- "--cpu=darwin_x86_64"
- "--apple_platform_type=macos"
build_targets:
- "//examples/..."
test_flags:
# For historica... | Add "--" to the targets to fix the label parsing. | Add "--" to the targets to fix the label parsing.
Unfortunately the bazelci.py script doesn't insert the argument separator yet, so we have to add it manually in the test_targets for now.
Closes #125.
RELNOTES: None.
PiperOrigin-RevId: 228336865
| YAML | apache-2.0 | bazelbuild/rules_swift,bazelbuild/rules_swift |
87808fdb8960c0083493afffb2fa2d10887c6e13 | .dependabot/config.yml | .dependabot/config.yml | # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdepe... | # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdepe... | Allow auto merge for rubocop-xxx | Allow auto merge for rubocop-xxx [ci skip] | YAML | mit | sue445/cure-mastodon-bots,sue445/cure-mastodon-bots |
4258740f0887677028fcad368cc21d52ebd4d66a | recipes/authlib/meta.yaml | recipes/authlib/meta.yaml | {% set name = "authlib" %}
{% set version = "0.10" %}
{% set sha256 = "b61c6c6fd230c4ba8602fd85ee9a40e6dc859387699a1cd1f7247c4b109dcc17" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://files.pythonhosted.org/packages/c8/03/6c676d80761f5194ef343679240bb3cfabb4122f9ee1c068ef83fec4ef... | {% set name = "authlib" %}
{% set version = "0.10" %}
{% set sha256 = "b61c6c6fd230c4ba8602fd85ee9a40e6dc859387699a1cd1f7247c4b109dcc17" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name|capitalize }}-{{ version }}.tar.gz
s... | Update URL on PR recommendation. | Update URL on PR recommendation. | YAML | bsd-3-clause | ocefpaf/staged-recipes,rmcgibbo/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,rmcgibbo/staged-recipes,scopatz/staged-... |
b135f2fe705d97707c0c119f90c7eb8963983265 | metadata/com.github.andreyasadchy.xtra.yml | metadata/com.github.andreyasadchy.xtra.yml | AntiFeatures:
- NonFreeNet
- Tracking
Categories:
- Internet
- Multimedia
License: AGPL-3.0-only
AuthorName: crackededed
SourceCode: https://github.com/crackededed/Xtra/
IssueTracker: https://github.com/crackededed/Xtra/issues/
AutoName: Xtra
RepoType: git
Repo: https://github.com/crackededed/Xtra/
Builds:
... | AntiFeatures:
- NonFreeNet
- Tracking
Categories:
- Internet
- Multimedia
License: AGPL-3.0-only
AuthorName: crackededed
SourceCode: https://github.com/crackededed/Xtra/
IssueTracker: https://github.com/crackededed/Xtra/issues/
AutoName: Xtra
RepoType: git
Repo: https://github.com/crackededed/Xtra/
Builds:
... | Update Xtra to 2.0.2 (107) | Update Xtra to 2.0.2 (107)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
f1c8235d1226ee5d57f86ba7b1255c0f4846d479 | config/openxpki/config.d/realm/ca-one/workflow/global/field/error_code.yaml | config/openxpki/config.d/realm/ca-one/workflow/global/field/error_code.yaml | label: I18N_OPENXPKI_UI_FIELD_ERROR_CODE
name: error_code
format: styled
template: "[% IF value %]failed:[% value %][% END %]"
| label: I18N_OPENXPKI_UI_FIELD_ERROR_CODE
name: error_code
format: styled
template: "[% IF value %]failed:[% value %][% END %]"
api_type: Str
| Fix sample config to return valid OpenAPI spec | Fix sample config to return valid OpenAPI spec
| YAML | apache-2.0 | oliwel/openxpki,oliwel/openxpki,openxpki/openxpki,oliwel/openxpki,oliwel/openxpki,openxpki/openxpki,oliwel/openxpki,oliwel/openxpki,openxpki/openxpki,openxpki/openxpki |
5ca2bbf44435501bc38941a29c62c189beb964c7 | scripts/ci/run_driver_unit.build.yml | scripts/ci/run_driver_unit.build.yml | ---
platform: linux
image_resource:
type: docker-image
source:
repository: cloudfoundry/inigo-ci
tag: latest
inputs:
- name: nfs-volume-release-concourse-tasks
- name: nfs-volume-release
run:
path: nfs-volume-release-concourse-tasks/scripts/ci/run_driver_unit
| ---
platform: linux
image_resource:
type: docker-image
source:
repository: cfpersi/nfs-unit-tests
tag: latest
inputs:
- name: nfs-volume-release-concourse-tasks
- name: nfs-volume-release
run:
path: nfs-volume-release-concourse-tasks/scripts/ci/run_driver_unit
| Stop using diego's docker image when running driver unit tests | Stop using diego's docker image when running driver unit tests
[#166247382](https://www.pivotaltracker.com/story/show/166247382)
Signed-off-by: Paul Warren <381ebbe39e97b92332c450533d9eabb9a873db86@emc.com>
Co-authored-by: Paul Warren <381ebbe39e97b92332c450533d9eabb9a873db86@emc.com>
| YAML | apache-2.0 | cloudfoundry-incubator/nfs-volume-release,cloudfoundry-incubator/nfs-volume-release,cloudfoundry-incubator/nfs-volume-release |
cd1885fabd15a70b72a156a1210afec7a3da3d00 | setup/roles/neovim/tasks/main.yml | setup/roles/neovim/tasks/main.yml | ---
# See https://github.com/neovim/neovim/wiki/Installing-Neovim
- name: Add Neovim repository
become: yes
apt_repository:
repo: 'ppa:neovim-ppa/unstable'
state: present
update_cache: yes
- name: Install prerequisites for the Python modules
become: yes
apt: name={{item}} state=installed
with_it... | ---
# See https://github.com/neovim/neovim/wiki/Installing-Neovim
- name: Add Neovim repository
become: yes
apt_repository:
repo: 'ppa:neovim-ppa/unstable'
state: present
update_cache: yes
codename: '{{ distrib_codename }}'
- name: Install prerequisites for the Python modules
become: yes
apt: ... | Fix for installing neovim on Linux Mint | Fix for installing neovim on Linux Mint
| YAML | mit | fernandoacorreia/homefiles,fernandoacorreia/homefiles |
63e6c97def01f64492363f1ceb726c72719e7918 | ecs-task-definition.yml | ecs-task-definition.yml | rra-postgis:
image: mdillon/postgis
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: rra
POSTGRES_USER: rra
POSTGRES_DB: rra
volumes:
- /var/lib/postgresql/data:/var/lib/postgresql/data
rra-api:
image: wbtransport/rra-api
ports:
- 80:4000
command: node index.js
links:
- rra... | rra-postgis:
image: mdillon/postgis
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: rra
POSTGRES_USER: rra
POSTGRES_DB: rra
volumes:
- /var/lib/postgresql/data:/var/lib/postgresql/data
rra-api:
image: wbtransport/rra-api
ports:
- 80:4000
command: node index.js
volumes:
- /... | Add volume to ECS config | Add volume to ECS config
| YAML | mit | WorldBank-Transport/Rural-Road-Accessibility,WorldBank-Transport/Rural-Road-Accessibility,WorldBank-Transport/ram-backend,WorldBank-Transport/ram-backend,WorldBank-Transport/ram-backend,WorldBank-Transport/Rural-Road-Accessibility |
4c3f776985ae0f7f76c696e96c1021fc111d04d0 | packages/po/polysemy-uncontrolled.yaml | packages/po/polysemy-uncontrolled.yaml | homepage: ''
changelog-type: markdown
hash: 9b359e7dfa3fafcc0e3c06052ee44d49eabab0f43c88c98631c5f0394791f129
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Uncontrolled toy effect for polysemy.
changelog: |
# Changelog for polysemy-uncontrolled
## v0.1.0.0
* An insane way to represent evil s... | homepage: ''
changelog-type: markdown
hash: a149fe0974d880639098aaaa42a4e0b5faa67e22c7205d2608dfb8aff2b64df1
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Uncontrolled toy effect for polysemy.
changelog: |
# Changelog for polysemy-uncontrolled
## v0.1.0.0
* An insane way to represent evil s... | Update from Hackage at 2021-07-25T09:43:55Z | Update from Hackage at 2021-07-25T09:43:55Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
16c74ad62fd94906d9f4453493227accd134717f | roles/setup-selenium-tests/defaults/main.yaml | roles/setup-selenium-tests/defaults/main.yaml | ---
geckodriver_url: "https://github.com/mozilla/geckodriver/releases/download/v0.23.0/geckodriver-v0.23.0-linux64.tar.gz"
| ---
geckodriver_url: "https://github.com/mozilla/geckodriver/releases/download/v0.27.0/geckodriver-v0.27.0-linux64.tar.gz"
| Update geckodriver version to v0.27.0. | Update geckodriver version to v0.27.0.
This patch updates geckodriver version to v0.27.0
from v0.23.0 to fix horizon-integration job.
Fo more info. please refer [1].
[1] https://github.com/mozilla/geckodriver/issues/1771
Change-Id: Ie550beddf54e5bc43c34046bb18970638d10f303
| YAML | apache-2.0 | ChameleonCloud/horizon,openstack/horizon,openstack/horizon,ChameleonCloud/horizon,ChameleonCloud/horizon,ChameleonCloud/horizon,openstack/horizon,openstack/horizon |
5f996ac0b6e8686d7fb3e90b4eef6d5d46a40ae4 | roles/mysql/vars/main.yml | roles/mysql/vars/main.yml | ---
_prefix: "-h{{ mysql_login_host }} -u{{ mysql_login_user }} -p{{ mysql_login_password }}"
| ---
_prefix: "--host={{ mysql_login_host }} --user={{ mysql_login_user }} --password={{ mysql_login_password }}"
| Fix parameter's names to allow use empty values /e.g: empty default password/ | Fix parameter's names to allow use empty values /e.g: empty default password/
| YAML | mit | kraksoft/ansible-roles |
a051f8de8ba2b585a094aa5a9a9d7160feb6817e | roles/xfce/tasks/main.yml | roles/xfce/tasks/main.yml | ---
- name: Ensure that xfce config directory exists
file:
path: "{{ ansible_user_dir }}/.config/xfce4/xfconf/xfce-perchannel-xml/"
owner: "{{ ansible_user_id }}"
state: directory
mode: 0700
tags:
- xfce
- name: Copy xfce config files
copy:
src: "{{ item }}"
dest: "{{ ansible_user_dir... | ---
- name: Ensure that xfce config directory exists
file:
path: "{{ ansible_user_dir }}/.config/xfce4/xfconf/xfce-perchannel-xml/"
owner: "{{ ansible_user_id }}"
state: directory
mode: 0700
tags:
- xfce
- name: Copy xfce config files
copy:
src: "{{ item }}"
dest: "{{ ansible_user_dir... | Set light locker as screen locker | Set light locker as screen locker
| YAML | mit | henrik-farre/ansible,henrik-farre/ansible,henrik-farre/ansible |
45f1d36504a09c7b1685fa714fac6e892d1143aa | test/fixtures/cert-manager-values.yaml | test/fixtures/cert-manager-values.yaml | replicaCount: 1
global:
logLevel: "4"
image:
tag: build
pullPolicy: Never
resources:
requests:
cpu: 500m
memory: 200Mi
limits:
cpu: 1
memory: 200Mi
extraArgs:
- --leader-election-lease-duration=10s
- --leader-election-renew-deadline=3s
- --leader-election-retry-period=2s
- --feature-gates=... | replicaCount: 1
global:
logLevel: "4"
image:
tag: build
pullPolicy: Never
resources:
requests:
cpu: 500m
memory: 200Mi
limits:
cpu: 1
memory: 200Mi
extraArgs:
- --leader-election-lease-duration=10s
- --leader-election-renew-deadline=3s
- --leader-election-retry-period=2s
webhook:
enable... | Remove old feature gate in test fixture | Remove old feature gate in test fixture
Signed-off-by: James Munnelly <474ba67bdb289c6263b36dfd8a7bed6c85b04943@munnelly.eu>
| YAML | apache-2.0 | jetstack-experimental/cert-manager,cert-manager/cert-manager,cert-manager/cert-manager,jetstack/cert-manager,jetstack/cert-manager,jetstack-experimental/cert-manager,jetstack-experimental/cert-manager,cert-manager/cert-manager,jetstack/cert-manager |
9b291799a6f0d4243d9250ab66ed99b66413a1cd | test/rql_test/src/regression/2709.yaml | test/rql_test/src/regression/2709.yaml | desc: 2709 -- Guarantee failed with [max_els >= min_els]
tests:
- py: r.table_create('2709')
ot: ({'created':1})
- def: tbl = r.table('2709')
- py: tbl.insert([{'result':i} for i in range(1,1000)]).pluck('first_error', 'inserted')
runopts:
batch_conf: "{'min_els':10,'max_els':13}"
ot: ({'inser... | desc: 2709 -- Guarantee failed with [max_els >= min_els]
tests:
- py: r.table_create('2709')
ot: ({'created':1})
- def: tbl = r.table('2709')
- py: tbl.insert([{'result':i} for i in range(1,1000)]).pluck('first_error', 'inserted')
runopts:
batch_conf: "{'min_els':10,'max_els':13}"
ot: ({'inser... | Add test for when user is a dork and sets min_els > max_els | Add test for when user is a dork and sets min_els > max_els
| YAML | apache-2.0 | urandu/rethinkdb,yaolinz/rethinkdb,ajose01/rethinkdb,urandu/rethinkdb,spblightadv/rethinkdb,yakovenkodenis/rethinkdb,gdi2290/rethinkdb,wojons/rethinkdb,grandquista/rethinkdb,alash3al/rethinkdb,AntouanK/rethinkdb,robertjpayne/rethinkdb,sbusso/rethinkdb,JackieXie168/rethinkdb,ajose01/rethinkdb,alash3al/rethinkdb,dparnell... |
a201960dbcc81f6687e77c11b34ae665346e0160 | config/contact.form.contact_sw.yml | config/contact.form.contact_sw.yml | uuid: 5afeb256-5fab-4ccd-8d4d-7ad8b37ecb92
langcode: en
status: true
dependencies: { }
id: contact_sw
label: 'Contact SW'
recipients:
- info@socialistworker.org
reply: ''
weight: -5
message: 'Thank you, your message has been sent.'
redirect: ''
| uuid: 5afeb256-5fab-4ccd-8d4d-7ad8b37ecb92
langcode: en
status: true
dependencies: { }
id: contact_sw
label: 'Contact SW'
recipients:
- webdept@socialistworker.org
reply: ''
weight: -5
message: 'Thank you, your message has been sent.'
redirect: ''
| Change forwarding address to webdept@sw.org for main contact form. | Contact: Change forwarding address to webdept@sw.org for main contact form.
| YAML | mit | ISO-tech/sw-d8,ISO-tech/sw-d8,ISO-tech/sw-d8,ISO-tech/sw-d8 |
ebbad7420c522e5fa9c44c584140abe1a41e4281 | roles/rciam-utils/tasks/install-Debian.yml | roles/rciam-utils/tasks/install-Debian.yml | # file: rciam-utils/tasks/install-Debian.yml
#
---
- name: Ensure util dependencies are installed
apt:
name:
- git
- python3-venv
state: present
install_recommends: no
update_cache: yes
cache_valid_time: 86400
become: yes
- name: Ensure PPA is installed for MaxMind (required for rc... | # file: rciam-utils/tasks/install-Debian.yml
#
---
- name: Ensure util dependencies are installed
apt:
name:
- git
- python3-venv
state: present
install_recommends: no
update_cache: yes
cache_valid_time: 86400
become: yes
- name: Ensure PPA is installed for MaxMind (required for rc... | Add missing packages for legacy version of ip2country | Add missing packages for legacy version of ip2country
| YAML | apache-2.0 | rciam/rciam-deploy,rciam/rciam-deploy |
009f5f716a7414e5c0cc17aa5549a6d002560704 | lib/ansible/modules/extras/.travis.yml | lib/ansible/modules/extras/.travis.yml | sudo: false
language: python
python:
- "2.7"
addons:
apt:
sources:
- deadsnakes
packages:
- python2.4
- python2.6
- python3.5
before_install:
- git config user.name "ansible"
- git config user.email "ansible@ansible.com"
- if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then git re... | sudo: false
language: python
python:
- "2.7"
addons:
apt:
sources:
- deadsnakes
packages:
- python2.4
- python2.6
- python3.5
before_install:
- git config user.name "ansible"
- git config user.email "ansible@ansible.com"
- if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then git re... | Add vmware and lxc to python3 checks | Add vmware and lxc to python3 checks
| YAML | mit | thaim/ansible,thaim/ansible |
bb4c230489e93e72505668a2929400fbcad60b20 | .codeclimate.yml | .codeclimate.yml | ---
engines:
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
exclude_paths:
- "server-express-mvc/"
- "spec/"
- "test-... | ---
engines:
csslint:
enabled: true
duplication:
enabled: false
config:
languages:
- javascript
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
exclude_paths:
- "server-express-mvc/"
- "spec/"
- "test... | Disable Code Climate duplication analysis | Disable Code Climate duplication analysis
| YAML | mit | mhaidarh/super-workshop-js,mhaidarh/super-workshop-js,mhaidarh/super-workshop-js |
f687457b59f223532b8000f45ae69143c79b9618 | .codeclimate.yml | .codeclimate.yml | ---
languages:
JavaScript: true
Python: true
engines:
eslint:
enabled: true
ratings:
paths:
- "**.py"
- "**.js"
- "**.jsx"
exclude_paths: []
| ---
languages:
JavaScript: true
Python: true
engines:
eslint:
enabled: true
scss-lint:
enabled: true
ratings:
paths:
- "**.py"
- "**.scss"
- "**.js"
- "**.jsx"
exclude_paths: []
| Enable SCSS liniting in CodeClimate | Enable SCSS liniting in CodeClimate
| YAML | mpl-2.0 | beavyHQ/beavy,beavyHQ/beavy,beavyHQ/beavy,beavyHQ/beavy |
51b7399b9af3422374c8b9d21c652dd8680d3dbd | .pullapprove.yml | .pullapprove.yml | approve_by_comment: true
approve_regex: ^LGTM
reject_regex: ^Rejected
reset_on_push: true
reviewers:
teams:
- image-spec-maintainers
name: default
required: 2
| approve_by_comment: true
approve_regex: '^(Approved|lgtm|LGTM|:shipit:|:star:|:\+1:|:ship:)'
reject_regex: ^Rejected
reset_on_push: true
reviewers:
teams:
- image-spec-maintainers
name: default
required: 2
| Fix the PullApprove approve_regex to cover more cases | Fix the PullApprove approve_regex to cover more cases
'^(Approved|lgtm|LGTM|:shipit:|:star:|:\+1:|:ship:)'
Signed-off-by: Chris Aniszczyk <2a3e0ec6821d10bf53e535c46e422f24d94584b5@gmail.com>
| YAML | apache-2.0 | jbouzane/image-spec,runcom/image-spec,opencontainers/image-tools,opencontainers/image-spec,xiekeyang/image-tools,xiekeyang/image-tools,jbouzane/image-spec,opencontainers/image-tools,opencontainers/image-spec,mattspencer-arm/image-spec,vbatts/oci-image-spec,jonboulle/image-spec,jonboulle/image-spec,runcom/image-spec,vba... |
3b576ee9a311d6430eb6ccb892db530dac83a3a9 | .readthedocs.yml | .readthedocs.yml | # .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html
# for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: true
# Build documentation with M... | # .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html
# for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: true
# Build documentation with M... | Install testing extra in RTD | Install testing extra in RTD
| YAML | bsd-3-clause | cherrypy/cheroot |
045cd2dd68775d67f40268fde3307318b3e4a156 | .scrutinizer.yml | .scrutinizer.yml | build:
dependencies:
override:
- "pip install -r requirements.txt -r requirements-test.txt"
nodes:
analysis:
tests:
override:
- js-scrutinizer-run
- py-scrutinizer-run
| build:
environment:
python: 3.7.7
dependencies:
override:
- "pip install -r requirements.txt -r requirements-test.txt"
nodes:
analysis:
tests:
override:
- js-scrutinizer-run
- py-scrutinizer-run
| Upgrade Python on Scrutinizer to v3.7.7 (from currently default v3.7.2) | Upgrade Python on Scrutinizer to v3.7.7 (from currently default v3.7.2)
| YAML | bsd-3-clause | homeworkprod/byceps,homeworkprod/byceps,homeworkprod/byceps |
7ea1c4598d918ffe4ad731f02384cd5fa308ec62 | .scrutinizer.yml | .scrutinizer.yml | build:
tests:
override:
-
command: 'vendor/bin/phpunit'
coverage:
file: 'logs/clover.xml'
format: 'clover'
| build:
tests:
override:
-
command: 'composer test'
coverage:
file: 'logs/clover.xml'
format: 'clover'
| Update Scrutinizer configs to use PHPUnit via the Composer script | Update Scrutinizer configs to use PHPUnit via the Composer script
| YAML | mit | TransitScreen/php-heroku-client |
d936441ccda345169fa5c443521554501a2b378b | .scrutinizer.yml | .scrutinizer.yml | # This file is part of the Lug package.
#
# (c) Eric GELOEN <geloen.eric@gmail.com>
#
# For the full copyright and license information, please read the LICENSE
# file that was distributed with this source code.
tools:
external_code_coverage:
timeout: 1800
| # This file is part of the Lug package.
#
# (c) Eric GELOEN <geloen.eric@gmail.com>
#
# For the full copyright and license information, please read the LICENSE
# file that was distributed with this source code.
tools:
external_code_coverage:
timeout: 1800
runs: 6
| Add number of travis builds | [Scrutinizer] Add number of travis builds
| YAML | mit | php-lug/lug,php-lug/lug,php-lug/lug,php-lug/lug |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.