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 |
|---|---|---|---|---|---|---|---|---|---|
f3a4c31d3b603bd2430598f5705704e9bee14fd4 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- "2.1.10"
- "2.2.6"
- "2.3.3"
- "2.4.1"
- jruby
before_install:
- gem update bundler
env:
matrix:
- EMBER_SOURCE_VERSION="~> 1.0.0" # Uses handlebars-source 1.0.12
- EMBER_SOURCE_VERSION="~> 1.8.0" # Uses handlebars-source 1.3.0
- EMBER_SOURCE_VE... | language: ruby
sudo: false
cache: bundler
rvm:
- "2.1.10"
- "2.2.7"
- "2.3.4"
- "2.4.1"
- jruby
before_install:
- gem update bundler
env:
matrix:
- EMBER_SOURCE_VERSION="~> 1.0.0" # Uses handlebars-source 1.0.12
- EMBER_SOURCE_VERSION="~> 1.8.0" # Uses handlebars-source 1.3.0
- EMBER_SOURCE_VE... | Update Ruby versions on Travis CI | Update Ruby versions on Travis CI
| YAML | mit | tchak/barber,tchak/barber |
ece0b00c9519dcbc87e47668ee9dad98c10dd829 | .travis.yml | .travis.yml | language: java
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.gradle/go/
env:
global:
- GOGS_DIR=/home/travis/gogs
- JAVA_OPTS=-Xmx3072m -XX:MaxPermSize=256m
jdk:
- oraclejdk8
script: ./gradlew check --info --stacktrace
after_success:
- ./gradlew jacocoTestRepo... | language: java
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.gradle/go/
env:
global:
- GOGS_DIR=/home/travis/gogs
- JAVA_OPTS=-Xmx1024m -XX:MaxPermSize=256m
jdk:
- oraclejdk8
script: ./gradlew check --info --stacktrace
after_success:
- ./gradlew jacocoTestRepo... | Check memory usage before and after build | Check memory usage before and after build
| YAML | apache-2.0 | gogradle/gogradle,gogradle/gogradle,blindpirate/gogradle,blindpirate/gogradle,gogradle/gogradle,gogradle/gogradle |
b3f41cf74b4fab91a50237f10f956a5445984709 | configs/config.yaml | configs/config.yaml | # Reference all tools likely to be used in the application here
tools:
Logger: Backend\Core\Utilities\Logger
Render: Backend\Base\Utilities\Render
# Render: Backend\Base\Utilities\TwigRender
PearLogger:
- Backend\Base\Utilities\PearLogger
-
filename: '/tmp/backend-pear.log'
#... | # Reference all tools likely to be used in the application here
tools:
# Logger: Backend\Core\Utilities\Logger
# Render: Backend\Base\Utilities\Render
Render: Backend\Base\Utilities\TwigRender
PearLogger:
- Backend\Base\Utilities\PearLogger
-
filename: '/tmp/backend-pear.log'
... | Use Twig Rendering and PEAR Logging for now | Use Twig Rendering and PEAR Logging for now
| YAML | mit | backend/Backend-PHP,backend/Backend-PHP |
2324ad5d7f4f61d183d2a32eac9689180cadeba9 | roles/mongodb/tasks/mongodb_apt.yaml | roles/mongodb/tasks/mongodb_apt.yaml | ---
- name: apt | Add mongodb key
become: yes
apt_key:
# Don't use mongodb.org key location due to SNI verification problems under Ubuntu Trusty
keyserver: "hkp://keyserver.ubuntu.com:80"
id: "{{ mongodb_apt_keys[mongodb_major_minor_version] }}"
state: present
tags: [databases, mongodb]
- name: a... | ---
- name: apt | Add mongodb key
become: yes
apt_key:
# Don't use mongodb.org key location due to SNI verification problems under Ubuntu Trusty
keyserver: "hkp://keyserver.ubuntu.com:80"
id: "{{ mongodb_apt_keys[mongodb_major_minor_version] }}"
state: present
tags: [databases, mongodb]
- name: a... | Fix upgrade/downgrade path for deb Ubuntu | Fix upgrade/downgrade path for deb Ubuntu
When switching between 3.2 <> 3.4 <> etc mongo versions, role should ensure that all mongo packages are re-installed.
deb 'mongodb-org' meta package doesn't handle correct versions of dependencies and doesn't update or downgrade other mongo packages.
| YAML | apache-2.0 | StackStorm/ansible-st2,armab/ansible-st2 |
76b4770a4d586bff63f76540f6ded089c607354b | .jitpack.yml | .jitpack.yml | install:
- wget https://github.com/sormuras/bach/raw/master/install-jdk.sh
- source ./install-jdk.sh -F 11 -L GPL
- ./gradlew --version
- ./gradlew publishToMavenLocal -x test
| install:
- wget https://github.com/sormuras/bach/raw/master/install-jdk.sh
- source ./install-jdk.sh --feature 12
- ./gradlew --version
- ./gradlew publishToMavenLocal -x test
| Use JDK 12 in JitPack configuration | Use JDK 12 in JitPack configuration | YAML | epl-1.0 | sbrannen/junit-lambda,junit-team/junit-lambda |
792da4aa7eef7b913b772dbc0084da1ef3e5284f | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: centos-6.9
- name: centos-7.3
- name: debian-7.11
- name: debian-8.8
- name: fedora-25
- name: freebsd-10.3
- name: freebsd-11.0
- name: macosx-10.11
driver:
box... | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: centos-6
- name: centos-7
- name: debian-7
- name: debian-8.9
- name: fedora-26
- name: freebsd-10
- name: freebsd-11
- name: macosx-10.11
driver:
box: chef/maco... | Use Bento version slugs in Kitchen | Use Bento version slugs in Kitchen
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/users,wegtam/users,chef-cookbooks/users,wegtam/users,opscode-cookbooks/users,opscode-cookbooks/users |
1b802f7f2e99d47abb68659b1a6a19aa232b45da | .kitchen.yml | .kitchen.yml | driver:
name: vagrant
vagrantfiles:
- ./test/.Vagrantfile.cachier.rb
- ./test/.Vagrantfile.disable-berkshelf.rb
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.6
- name: centos-7.0
suites:
- name: cron
run_list:
- recipe[magento-ng::cron]
- name: etc-loc... | driver:
name: vagrant
vagrantfiles:
- ./test/.Vagrantfile.cachier.rb
- ./test/.Vagrantfile.disable-berkshelf.rb
provisioner:
name: chef_zero
require_chef_omnibus: 12.3
platforms:
- name: centos-5.11
- name: centos-6.6
- name: centos-7.0
suites:
- name: cron
run_list:
- recipe[magent... | Add configuration so the basics will get performed rather than 0 resources. | Add configuration so the basics will get performed rather than 0 resources.
| YAML | apache-2.0 | inviqa/chef-magento-ng,danielkmariam/chef-magento-ng,inviqa/chef-magento-ng,danielkmariam/chef-magento-ng |
ba98541c8190cefa6e9fd59e42725346779bfaf8 | .mergify.yml | .mergify.yml | rules:
default:
protection:
required_status_checks:
contexts:
- continuous-integration/travis-ci
# Because I'm not the only user of this repo, I don't care about
# reviews. This undocumented option allows merging with no reviews.
# See https://github.com/Mergifyio/mergi... | pull_request_rules:
- name: "Automatically merge pull requests that are green in Travis"
- conditions:
- "status-success=continuous-integration/travis-ci"
# Because I'm not the only user of this repo, I don't care about reviews.
- "#approved-reviews-by>=0"
- actions:
merge:
metho... | Create Mergify config for the V2 engine | Create Mergify config for the V2 engine
| YAML | mit | alexwlchan/alexwlchan.net,alexwlchan/alexwlchan.net,alexwlchan/alexwlchan.net,alexwlchan/alexwlchan.net,alexwlchan/alexwlchan.net |
f8fc2fe9ab91cb029a369c23f644d18b4e15815f | .rubocop.yml | .rubocop.yml | AllCops:
TargetRubyVersion: 2.2 | AllCops:
TargetRubyVersion: 2.2
Layout/IndentHeredoc:
Enabled: false
Metrics/AbcSize:
Max: 30
Metrics/BlockLength:
Exclude:
- 'test/**/*.rb'
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Max: 20
| Copy the Dimples config for Rubocop. | Copy the Dimples config for Rubocop.
| YAML | mit | ivuk/usesthis,waferbaby/usesthis,ivuk/usesthis,waferbaby/usesthis |
87bb1707ef04a22c5c558680519b5b62f23f6310 | .styleci.yml | .styleci.yml | preset: psr2
enabled:
- duplicate_semicolon
- extra_empty_lines
- logical_not_operators_with_successor_space
- phpdoc_scalar
- return
- short_array_syntax
- single_quote
- spaces_cast
- standardize_not_equal
- ternary_spaces
- trim_array_spaces
- unalign_double_arrow
- unalign_equals
- unne... | preset: laravel
enabled:
- concat_with_spaces
- unalign_double_arrow
disabled:
- concat_without_spaces
- phpdoc_short_description
linting: true
finder:
exclude:
- config
| Use the laravel preset, nearly | Use the laravel preset, nearly | YAML | mit | tymondesigns/jwt-auth,lucasmichot/jwt-auth,mazasb/jwt-auth |
4003535e702b74ede058acb45a5396458bca6f92 | manifest.yml | manifest.yml | ---
applications:
- name: flash
buildpacks:
- https://github.com/cloudfoundry/python-buildpack.git#v1.7.47
stack: cflinuxfs3
disk_quota: 256M
memory: 64M
random-route: true
env:
FLASK_SECRET_KEY: pleasechangeme
| ---
applications:
- name: flash
buildpacks:
- https://github.com/cloudfoundry/python-buildpack.git#v1.7.47
stack: cflinuxfs3
disk_quota: 512M
memory: 128M
random-route: true
env:
FLASK_SECRET_KEY: pleasechangeme
| Increase default resources in CF | Increase default resources in CF
- Build was failing due to full disk
| YAML | isc | textbook/flash,textbook/flash,textbook/flash |
94744dfe9cb59caf02bd016e40ddef69a8be6863 | .github/workflows/dotnet.yml | .github/workflows/dotnet.yml | name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
env:
GOOGLE_API_KEY: ${{s... | name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
env:
GOOGLE_API_KEY: ${{s... | Add the configuration to workflows script | Add the configuration to workflows script
| YAML | bsd-2-clause | maximn/google-maps,maximn/google-maps |
8cbc8ceb65f5f22defdad1ff55f94bc4236f9783 | .github/workflows/dotnet.yml | .github/workflows/dotnet.yml | name: .NET
on:
push:
branches: [ Integration ]
pull_request:
branches: [ Integration ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Publish NuGet
# You may pin to the exact commit or the version.
# uses: brandedoutcast/publish-nuget@c12b8546b67672ee38ac87bea491ac94a587f7c... | name: .NET
on:
push:
branches: [ Integration ]
pull_request:
branches: [ Integration ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Publish NuGet
# You may pin to the exact commit or the version.
# uses: brandedoutcast/publish-nuget@c12b8546b67672ee38ac87bea491ac94a587f7c... | Update project path in action | Update project path in action | YAML | mit | adamyeager/PushbulletSharp |
07596809ef9971b161011577a9aa1c3a07a720b4 | .github/workflows/erlang.yml | .github/workflows/erlang.yml | name: Erlang CI
on:
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
name: Build
strategy:
matrix:
erlang: ["18.3", "21.3", "latest"]
runs-on: ubuntu-latest
container:
image: erlang:${{... | name: Erlang CI
on:
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
name: Build
strategy:
matrix:
erlang: ["18.3", "21.3", "latest"]
runs-on: ubuntu-latest
container:
image: erlang:${{... | Add notification for test failure | Add notification for test failure | YAML | apache-2.0 | processone/fast_yaml |
dee19121cae5fedb4d437d292fb064dc9968d5ca | .github/workflows/gradle.yml | .github/workflows/gradle.yml |
on: [push, pull_request]
jobs:
build:
name: Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 1.8, 11 ]
steps:
- uses: actions/checkout@master
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ mat... |
on: [push, pull_request]
jobs:
build:
name: Java ${{ matrix.java-version }}
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 1.8, 11 ]
steps:
- uses: actions/checkout@master
- name: Setup java
uses: actions/setup-java@v1
with:
java-version:... | Build Java 1.8 and 11. | [Java] Build Java 1.8 and 11.
| YAML | apache-2.0 | real-logic/Agrona |
a1646748f97f25a5238eaf0d5afef177e2a1e814 | .github/workflows/issues.yml | .github/workflows/issues.yml | name: issue assignment
on:
issues:
types: [opened]
jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: 'auto-assign issue'
uses: pozil/auto-assign-issue@v1.7.1
with:
assignees: konstruktoid
| name: issue assignment
on:
issues:
types: [opened]
jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: 'auto-assign issue'
uses: pozil/auto-assign-issue@v1.7.2
with:
assignees: konstruktoid
| Update pozil/auto-assign-issue action to v1.7.2 | Update pozil/auto-assign-issue action to v1.7.2 | YAML | apache-2.0 | konstruktoid/hardening,konstruktoid/hardening |
dd4306c496398180a5709db77cc9f8321e22827c | .github/workflows/master.yml | .github/workflows/master.yml | name: Build & Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
SwiftyMocky-Tests:
runs-on: macos-11
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set Xcode version
uses: maxim-lobanov/setup-xcode@v1
... | name: Build & Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
SwiftyMocky-Tests:
runs-on: macos-11
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set Xcode version
uses: maxim-lobanov/setup-xcode@v1
... | Upgrade CI Xcode version up to 13.4.1 | Upgrade CI Xcode version up to 13.4.1
| YAML | mit | MakeAWishFoundation/SwiftyMocky,MakeAWishFoundation/SwiftyMocky,MakeAWishFoundation/SwiftyMocky |
7cf91ff0edb863de6d1939934e8635452203a543 | .bettercodehub.yml | .bettercodehub.yml | component_depth: 3
languages:
- python
exclude:
- /gaphor/UML/uml2\.py
- /utils/.*
- .*\.gaphor
- .*\.svg
| component_depth: 3
languages:
- python
exclude:
- /gaphor/UML/uml2\.py
- /utils/.*
- /win-installer/.*
- .*\.gaphor
- .*\.svg
| Exclude win-installer from BCH analysis | Exclude win-installer from BCH analysis
| YAML | lgpl-2.1 | amolenaar/gaphor,amolenaar/gaphor |
dac8e44a6ed1c1c4651b15f7487d23e0732c36d6 | template/foss/ext/build_defaults.yaml | template/foss/ext/build_defaults.yaml | ---
packaging_url: 'git://github.com/puppetlabs/packaging.git --branch=master'
packaging_repo: 'packaging'
default_cow: 'base-squeeze-i386.cow'
cows: 'base-lucid-i386.cow base-precise-i386.cow base-quantal-i386.cow base-squeeze-i386.cow base-stable-i386.cow base-testing-i386.cow base-wheezy-i386.cow base-saucy-i386.cow... | ---
packaging_url: 'git://github.com/puppetlabs/packaging.git --branch=master'
packaging_repo: 'packaging'
default_cow: 'base-squeeze-i386.cow'
cows: 'base-precise-i386.cow base-quantal-i386.cow base-raring-i386.cow base-saucy-i386.cow base-trusty-i386.cow base-stable-i386.cow base-wheezy-i386.cow base-testing-i386.cow... | Update build targets for foss builds | Update build targets for foss builds
| YAML | apache-2.0 | puppetlabs/ezbake,puppetlabs/ezbake,puppetlabs/ezbake |
3ad7b09b0930134613292bc5c100015d55b21b4c | config/database.yml | config/database.yml | default: &default
adapter: postgresql
encoding: unicode
host: 127.0.0.1
pool: 5
development:
<<: *default
database: pvb_development
test:
<<: *default
database: pvb_test
production:
adapter: postgresql
host: <%= ENV['DB_HOST'] %>
encoding: unicode
username: <%= ENV['DB_USERNAME'] %>
passwor... | default: &default
adapter: postgresql
encoding: unicode
pool: 5
development:
<<: *default
database: pvb_development
test:
<<: *default
database: pvb_test
production:
adapter: postgresql
host: <%= ENV['DB_HOST'] %>
encoding: unicode
username: <%= ENV['DB_USERNAME'] %>
password: <%= ENV['DB_PAS... | Allow PostgreSQL peer authentication in development | Allow PostgreSQL peer authentication in development
Specifying the local connection as an IP address prevents peer
authentication from working. This is the default configuration on Linux.
This does not affect production, where the environment overrides this.
| YAML | mit | ministryofjustice/prison-visits,matharden/prison-visits,matharden/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits,matharden/prison-visits |
38347165da078f880785ef7c6e7b83ef231d5444 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Android
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '8'
- name: Build debug
run: bash ./gradlew build jacocoTestReport assembleAndroidTest
- name: Ech... | name: Android
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '8'
- name: Build debug
run: bash ./gradlew build jacocoTestReport assembleAndroidTest
- name: Ech... | Update vars for android create | Update vars for android create
| YAML | apache-2.0 | codecov/example-android |
65d5ea47c42f27691e39f7470180aba37e1ae7ed | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Paysafe
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install rubygems
run: |
... | name: Paysafe
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install rubygems
run: |
... | Add --no-document flag on gem commands | Add --no-document flag on gem commands
| YAML | mit | javierjulio/paysafe,javierjulio/paysafe,javierjulio/optimal_payments,javierjulio/optimal_payments |
4fd254ee7f694ed8d7915d8dcc25d72f1c100b3f | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
- push
- pull_request
jobs:
test:
name: Test on Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '2.7'
- '2.6'
- '2.5'
- '2.4'
- head
continue-on-error: ${{ endsWith(matrix.... | name: CI
on:
- push
- pull_request
jobs:
test:
name: Test on Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- '2.5'
- '2.4'
- head
con... | Add Ruby 3.0 and 3.1 to test matrix | CI: Add Ruby 3.0 and 3.1 to test matrix
| YAML | mit | cvut/kosapi_client.rb,cvut/kosapi_client.rb |
9959bf474ebf2f2fa22dabd091ed69c46578d003 | config/settings.yml | config/settings.yml | Default: &defaults
host: "127.0.0.1"
port: 3000
approot: "http://localhost:3000"
copyright: "2012-2015 snowdrift contributors"
source: "https://git.gnu.io/snowdrift/snowdrift"
githubrepo: "snowdriftcoop/snowdrift"
siteproject: "snowdrift"
#analytics: UA-YOURCODE
Development:
host: "*"
<<: *defaults... | Default: &defaults
host: "127.0.0.1"
port: 3000
approot: "http://localhost:3000"
copyright: "2012-2015 snowdrift contributors"
source: "https://git.gnu.io/snowdrift/snowdrift"
githubrepo: "snowdriftcoop/snowdrift"
siteproject: "snowdrift"
#analytics: UA-YOURCODE
Development:
host: "*"
<<: *defaults... | Fix longstanding bug with production approot | Fix longstanding bug with production approot
| YAML | agpl-3.0 | chreekat/snowdrift,snowdriftcoop/snowdrift,akegalj/snowdrift,chreekat/snowdrift,akegalj/snowdrift |
b121854bf0c1685715260acf3cba154e797e9d8a | packages/hy/hyper.yaml | packages/hy/hyper.yaml | homepage: ''
changelog-type: ''
hash: d09281c498a8bd821542dcf3574f71b5fa115b573e14680b6d85f57f846219ba
test-bench-deps: {}
maintainer: Heinrich Apfelmus <apfelmus quantentunnel de>
synopsis: Display class for the HyperHaskell graphical Haskell interpreter
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.11'
text: ! '... | homepage: https://github.com/HeinrichApfelmus/hyper-haskell
changelog-type: ''
hash: e0f74b8a19957001202a25c2849c8e8cf7038029e38a952e7f4fd276378f8a76
test-bench-deps: {}
maintainer: Heinrich Apfelmus <apfelmus quantentunnel de>
synopsis: Display class for the HyperHaskell graphical Haskell interpreter
changelog: ''
bas... | Update from Hackage at 2018-08-05T11:07:48Z | Update from Hackage at 2018-08-05T11:07:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f59f7d560bda5df7c0ac1ed43a6f7b7d4ec8e49f | tests/files/gdm.yml | tests/files/gdm.yml | location: /tmp/gdm-test-dependencies
sources:
- repo: https://github.com/jacebrowning/gdm-demo
dir: gdm_1
rev: example-branch
- repo: https://github.com/jacebrowning/gdm-demo
dir: gdm_2
rev: example-tag
| location: /tmp/gdm-test-dependencies
sources:
- repo: https://github.com/jacebrowning/gdm-demo
dir: gdm_1
rev: example-branch
- repo: https://github.com/jacebrowning/gdm-demo
dir: gdm_2
rev: example-tag
- repo: https://github.com/jacebrowning/gdm-demo
dir: gdm_3
rev: 'master@{2015-02-12 18:30:00}'
| Add failing integration test for rev-parse | Add failing integration test for rev-parse
| YAML | mit | jacebrowning/gdm,jacebrowning/gitman |
333ac20d5bb195cc7bae7c6be1ba340407ec96e1 | packages/sa/safe-access.yaml | packages/sa/safe-access.yaml | homepage: http://darcs.redspline.com/safe-access
changelog-type: ''
hash: 086ed6b580b47ae066466f2e41ab10e8d4ccb79d51d751ec0427dedc1858ad70
test-bench-deps: {}
maintainer: tho.feron@gmail.com
synopsis: A simple environment to control access to data
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.11'
mtl: ! '>=2.2.1'
... | homepage: http://github.com/thoferon/safe-access
changelog-type: ''
hash: 64539c545eda57b634d5703a9f82334b452dc6b4455db1bb42af7aecd45d6c39
test-bench-deps: {}
maintainer: tho.feron@gmail.com
synopsis: A simple environment to control access to data
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
mtl: ! '>=2.2.1'
t... | Update from Hackage at 2020-02-21T09:34:03Z | Update from Hackage at 2020-02-21T09:34:03Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
44050aabba154ffd35b12b35e33621ccb143dd1a | .scrutinizer.yml | .scrutinizer.yml | build:
environment:
mysql: false
postgresql: false
mongodb: false
elasticsearch: false
redis: false
memcached: false
neo4j: false
rabbitmq: false
tests:
stop_on_failure: true
override:
-
command: vendor/... | build:
environment:
mysql: false
postgresql: false
mongodb: false
elasticsearch: false
redis: false
memcached: false
neo4j: false
rabbitmq: false
tests:
stop_on_failure: false
override:
-
command: vendor... | Add phpstan, allow all checks | Add phpstan, allow all checks
| YAML | mit | eclipxe13/buzoncfdi-cfdireader |
b4b0ebfed97a94edc0e7ddb176b4d9e754fac89b | .taskcluster.yml | .taskcluster.yml | version: 0
metadata:
name: "TaskCluster GitHub Tests"
description: "All non-integration tests for taskcluster github"
owner: "{{ event.head.user.email }}"
source: "{{ event.head.repo.url }}"
tasks:
- provisionerId: "{{ taskcluster.docker.provisionerId }}"
workerType: "{{ taskcluster.docker.workerType }}"
... | version: 0
metadata:
name: "TaskCluster GitHub Tests"
description: "All non-integration tests for taskcluster github"
owner: "{{ event.head.user.email }}"
source: "{{ event.head.repo.url }}"
tasks:
- provisionerId: "{{ taskcluster.docker.provisionerId }}"
workerType: "{{ taskcluster.docker.workerType }}"
... | Use the node:5 base image for testing | Use the node:5 base image for testing
| YAML | mpl-2.0 | taskcluster/taskcluster-github |
8f7f1e4f11eacfd3a323873d681ade5e501cace4 | metadata/ca.chancehorizon.paseo.yml | metadata/ca.chancehorizon.paseo.yml | Categories:
- Sports & Health
License: MIT
WebSite: https://gitlab.com/pardomi/paseo
SourceCode: https://gitlab.com/pardomi/paseo/tree/HEAD
IssueTracker: https://gitlab.com/pardomi/paseo/issues
AutoName: Paseo
RepoType: git
Repo: https://gitlab.com/pardomi/paseo.git
Builds:
- versionName: 1.1.0
versionCode: ... | Categories:
- Sports & Health
License: MIT
WebSite: https://gitlab.com/pardomi/paseo
SourceCode: https://gitlab.com/pardomi/paseo/tree/HEAD
IssueTracker: https://gitlab.com/pardomi/paseo/issues
AutoName: Paseo
RepoType: git
Repo: https://gitlab.com/pardomi/paseo.git
Builds:
- versionName: 1.1.0
versionCode: ... | Update Paseo to 1.2.3 (6) | Update Paseo to 1.2.3 (6)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
9122803d30cb69bd72958cb749e167bf324c6bd6 | playbooks/install-ambari.yml | playbooks/install-ambari.yml | # requires variables:
# - ambari_repo_base_url
# - ambari_version
- hosts: ambari-server ambari-agent
become: true
tasks:
- include_tasks: ../roles/ambari-common/tasks/install-repo-{{ ansible_os_family }}.yml
- hosts: ambari-server
become: true
tasks:
- include_tasks: ../roles/ambari-server/tasks/inst... | # requires variables:
# - ambari_repo_base_url
# - ambari_version
- hosts: ambari-server ambari-agent
become: true
vars_prompt:
- name: "ambari_repo_base_url"
prompt: "Set ambari repo base url"
private: no
tasks:
- include_tasks: ../roles/ambari-common/tasks/install-repo-{{ ansible_os_family ... | Add Prompt for set Repo Base URL | Add Prompt for set Repo Base URL
| YAML | apache-2.0 | oleewere/ansible-ambari-manager,oleewere/ansible-ambari-manager |
f530e668fa50665245988be2a00748b9b3ccc0a8 | doc/environment.yml | doc/environment.yml | name: xarray-docs
channels:
- conda-forge
- defaults
dependencies:
- python=3.5
- numpy=1.11.2
- pandas=0.21.0
- numpydoc=0.7.0
- matplotlib=2.0.0
- seaborn=0.8
- dask=0.16.0
- ipython=5.1.0
- sphinx=1.5
- netCDF4=1.3.1
- cartopy=0.15.1
- rasterio=0.36.0
- sphinx-gallery
- zarr
- iris
... | name: xarray-docs
channels:
- conda-forge
- defaults
dependencies:
- python=3.5
- numpy=1.11.2
- pandas=0.21.0
- numpydoc=0.7.0
- matplotlib=2.0.0
- seaborn=0.8
- dask=0.16.0
- ipython=6.2.1
- sphinx=1.5
- netCDF4=1.3.1
- cartopy=0.15.1
- rasterio=0.36.0
- sphinx-gallery
- zarr
- iris
... | Use newer ipython for doc build | Use newer ipython for doc build
| YAML | apache-2.0 | markelg/xray,shoyer/xarray,jhamman/xarray,jhamman/xarray,markelg/xray,shoyer/xray,markelg/xray,jcmgray/xarray,pydata/xarray,jhamman/xarray,chunweiyuan/xarray,pydata/xarray,shoyer/xarray,pydata/xarray,jhamman/xray,xray/xray |
5a905e49be91203c04a2546bfc292717b8e9bee9 | .github/ISSUE_TEMPLATE/bug_report.yml | .github/ISSUE_TEMPLATE/bug_report.yml | name: 'Bug report'
description: Create a bug report
body:
- type: markdown
attributes:
value: |
Thank you for reporting an issue.
This issue tracker is for bugs and issues found in ws.
General support questions should be raised on a channel like Stack Overflow.
Please fill ... | name: Bug report
description: Create a bug report
body:
- type: markdown
attributes:
value: |
Thank you for reporting an issue.
This issue tracker is for bugs and issues found in ws.
General support questions should be raised on a channel like Stack Overflow.
Please fill in... | Add missing label to the issue form | [minor] Add missing label to the issue form
Fixes #1974
| YAML | mit | websockets/ws |
9a69be8bf037646c566ff15794485d694a3f9ebc | zuul.d/project.yaml | zuul.d/project.yaml | - project:
templates:
- openstack-python35-jobs
- openstack-python36-jobs
- openstack-python-jobs
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
- openstackclient-plugin-jobs
check:
jobs:
- ironicclient-dsvm-functional
... | - project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-pytho... | Use templates for cover and lower-constraints | Use templates for cover and lower-constraints
Small cleanups:
* Use openstack-tox-cover template, this runs the cover job
in the check queue only. Remove individual cover jobs.
* Use openstack-lower-constraints-jobs template, remove individual
jobs.
* Sort list of templates
Change-Id: I75bf468d7e59282377bd78f4d2... | YAML | apache-2.0 | openstack/python-ironicclient,openstack/python-ironicclient |
41159e9771866e2012f94f37d3df9f7e15873409 | tasks/manage_cli.yml | tasks/manage_cli.yml | ---
# Tasks used to manange Jenkins CLI
- name : Ensure jenkins running
become : True
service :
name : "{{ jenkins_service_name }}"
state : started
- name : Ensure Jenkins is available
wait_for :
port : "{{ jenkins_config_http_port }}"
delay : "{{ jenkins_cli_waiting_available }}"
- name : ... | ---
# Tasks used to manange Jenkins CLI
- name : Ensure jenkins running
become : True
service :
name : "{{ jenkins_service_name }}"
state : started
- name : Ensure Jenkins is available
wait_for :
port : "{{ jenkins_config_http_port }}"
delay : "{{ jenkins_cli_waiting_available }}"
- name : ... | Add debug for Travis failure - 3 | Add debug for Travis failure - 3
| YAML | mit | infOpen/ansible-role-jenkins |
f2d7dc347e4483250140c45425e2fa6e5c64e199 | recipes/clr_loader/meta.yaml | recipes/clr_loader/meta.yaml | {% set name = "clr_loader" %}
{% set version = "0.1.7" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: bd1967d3cf80368c7d890a332704f169c5d2b5d7141635f1dae84d7d40346d51
build:
number: 0
... | {% set name = "clr_loader" %}
{% set version = "0.1.7" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: bd1967d3cf80368c7d890a332704f169c5d2b5d7141635f1dae84d7d40346d51
build:
number: 0
... | Add c-compiler as noted in docs | Add c-compiler as noted in docs
https://conda-forge.org/docs/maintainer/knowledge_base.html#using-centos-7
| YAML | bsd-3-clause | jakirkham/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/... |
d259fa5fae602b92e315af35126125bcb995f3e0 | recipes/itkwidgets/meta.yaml | recipes/itkwidgets/meta.yaml | {% set name = "itkwidgets" %}
{% set version = "0.15.1" %}
package:
name: {{ name }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 889e8a6328bb574148a8e62b89980e68178e10635c986fce2b117eee211112e2
build:
number: 0
scrip... | {% set name = "itkwidgets" %}
{% set version = "0.15.1" %}
package:
name: {{ name }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 889e8a6328bb574148a8e62b89980e68178e10635c986fce2b117eee211112e2
build:
number: 0
scrip... | Test using jupyter during build | Test using jupyter during build
| YAML | bsd-3-clause | chrisburr/staged-recipes,dschreij/staged-recipes,jjhelmus/staged-recipes,sodre/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,sodre/staged-recipes,isuruf/staged-recipes,jjhelmus/staged-recipes,mariusvniekerk/staged-recipes,basnijholt/staged-recipes,cpaulik/staged-recipes,rmcgibbo/staged-recipes,cpaulik/stage... |
c71fd1fe7ae94654b5064f28c1dc4b2e82d9db02 | recipes/mapdamage2/meta.yaml | recipes/mapdamage2/meta.yaml | package:
name: mapdamage2
version: "2.0.6"
build:
number: 0
source:
fn: 2.0.6.tar.gz
url: https://github.com/ginolhac/mapDamage/archive/2.0.6.tar.gz
md5: f14e1ca52d68fd9c7e42e1f4e6f40f8c
patches:
- makefile.patch
- composition.patch
requirements:
build:
- python >=2.7,<3
run:
- pyth... | package:
name: mapdamage2
version: "2.0.6"
build:
number: 1
source:
fn: 2.0.6.tar.gz
url: https://github.com/ginolhac/mapDamage/archive/2.0.6.tar.gz
md5: f14e1ca52d68fd9c7e42e1f4e6f40f8c
patches:
- makefile.patch
- composition.patch
requirements:
build:
- python >=2.7,<3
run:
- pyth... | Remove restriction on pysam version | Remove restriction on pysam version
Build issue due to use of CentOS5; see also #2519.
| YAML | mit | npavlovikj/bioconda-recipes,saketkc/bioconda-recipes,gvlproject/bioconda-recipes,jfallmann/bioconda-recipes,gregvonkuster/bioconda-recipes,shenwei356/bioconda-recipes,daler/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,shenwei356/bioconda-recipes,oena/bioconda-recipes,ostrokach/bioconda-recipes,colin... |
da29596608afab579949d76fcf1bfcfa9c7ad651 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker: # See https://docs.docker.com/get-started/#docker-concepts if you are new to Docker.
- image: circleci/python:3.4
environment:
PYTHONPATH: /usr/local/lib/python3.4/site-packages/
working_directory: ~/repo
steps:
- ... | version: 2
jobs:
build:
docker: # See https://docs.docker.com/get-started/#docker-concepts if you are new to Docker.
- image: circleci/python:3.4
environment:
PYTHONPATH: /usr/local/lib/python3.4/site-packages/
working_directory: ~/repo
steps:
- ... | Change update trinity in circle to one that logs to stdout | Change update trinity in circle to one that logs to stdout
| YAML | mit | hugsy/gef,hugsy/gef,hugsy/gef |
3bdb07cd6c1f080e2a9d3cd72647ed212e1650ff | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working-directory: ~/sonos_discovery
docker:
- image: liuchong/rustup:nightly
steps:
- checkout
- run: rustup update nightly
- run: rustup show
- run: rustup run nightly cargo run --bin sonos_discovery
| version: 2
jobs:
build:
working-directory: ~/sonos_discovery
docker:
- image: liuchong/rustup:nightly
steps:
- checkout
- run:
command: |
rustup update nightly
rustup show
rustup run nightly cargo run --bin sonos_discovery
| Put commands in single block | Put commands in single block
| YAML | mit | Chabare/sonos_discovery |
f76319686749d2876a05f3b9a761b33a9c99c960 | .circleci/config.yml | .circleci/config.yml | version: 2.1
jobs:
test:
working_directory: ~/terraform-aws-ecs-service
docker:
- image: ruby:2.6.0
steps:
- checkout
- run: ./scripts/ci/common/install-git-crypt.sh
- run: ./scripts/ci/steps/test.sh
prerelease:
working_directory: ~/terraform-aws-ecs-service
docker:
... | version: 2.1
jobs:
test:
working_directory: ~/terraform-aws-ecs-service
docker:
- image: ruby:2.6.0
steps:
- checkout
- run: ./scripts/ci/common/install-git-crypt.sh
- run: ./scripts/ci/steps/test.sh
prerelease:
working_directory: ~/terraform-aws-ecs-service
docker:
... | Disable branch tests for now | Disable branch tests for now [skip ci]
| YAML | mit | infrablocks/terraform-aws-ecs-service,infrablocks/terraform-aws-ecs-service |
d91000158b40c8372d942ceaa32af5867969c31a | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:6541a5bd51fd81f362dac9dd78cb9a5fc1d08bb46691bdca24e98558eba48276
- image: circleci/mongo:3@sha256:5466750cd80b12fb8cdbe2fae7c3a34b0f7cd85e9967f6b35f13768601c3e2ec
steps:
- checkout
- run: yarn install --frozen-lockfile
... | version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:6541a5bd51fd81f362dac9dd78cb9a5fc1d08bb46691bdca24e98558eba48276
- image: circleci/mongo:3@sha256:01437c21a1bd1b9346ba4a0fabf95b9bd5b37b3764b0d585db87003dd4e097fe
steps:
- checkout
- run: yarn install --frozen-lockfile
... | Update circleci/mongo:3 Docker digest to 01437c | Update circleci/mongo:3 Docker digest to 01437c | YAML | mit | js-accounts/accounts |
b80544ec8dfe659daaa0bddd757938ee8d67cc21 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
# this is a debian based image but this shouldn't be a problem.
- image: circleci/python:2.7-stretch
working_directory: ~/repo
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
# install some required pack... | version: 2
jobs:
build:
docker:
# this is a debian based image but this shouldn't be a problem.
- image: circleci/python:2.7-stretch
working_directory: ~/repo
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
# install some required pack... | Remove ubuntu build from circleci | Remove ubuntu build from circleci
| YAML | agpl-3.0 | privacyidea/privacyidea,privacyidea/privacyidea,privacyidea/privacyidea,privacyidea/privacyidea,privacyidea/privacyidea,privacyidea/privacyidea |
996232cb33aafde5ddf443476dfde3bf64257214 | .kitchen.vagrant.yml | .kitchen.vagrant.yml | ---
driver:
name: vagrant
provisioner:
name: chef_solo
require_chef_omnibus: 12.5.1
platforms:
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
- name: debian-8.6
- name: fedora-23
- name: fedora-24
- name: opensuse-leap-42.1
- name: opensu... | ---
driver:
name: vagrant
provisioner:
name: chef_solo
require_chef_omnibus: 12.5.1
platforms:
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
- name: debian-8.6
- name: fedora-23
- name: fedora-24
- name: opensuse-leap-42.1
- name: opensu... | Use the centos 7.3 bento box | Use the centos 7.3 bento box
| YAML | apache-2.0 | hardening-io/chef-ssh-hardening,hardening-io/chef-ssh-hardening,dev-sec/chef-ssh-hardening,dev-sec/chef-ssh-hardening |
1707e5d4c14be6849716ff3ab5a29c11e0b92f27 | modules/ldapclient/data/FreeBSD/10.0-RELEASE.yaml | modules/ldapclient/data/FreeBSD/10.0-RELEASE.yaml | ---
ldapclient::packages:
- 'openldap-client'
- 'nss_ldap'
- 'pam_ldap'
- 'pam_mkhomedir'
- 'zsh-5.0.5'
| ---
ldapclient::packages:
- 'openldap-client'
- 'nss_ldap'
- 'pam_ldap'
- 'pam_mkhomedir'
| Drop ZSH from here as testing is now done. | Drop ZSH from here as testing is now done.
| YAML | apache-2.0 | CamLib/puppet3,CamLib/puppet3 |
14858b62e2027ee8910a7908a37b09fdfb9b330b | .circleci/config.yml | .circleci/config.yml | # PHP CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-php/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/php:7.1.5-browsers
# Specify service dependencies here if necessary
# CircleCI maintains a... | # PHP CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-php/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/php:5.6-fpm
# Specify service dependencies here if necessary
# CircleCI maintains a librar... | Change PHP version from 7.1.5 to 5.6 | Change PHP version from 7.1.5 to 5.6
| YAML | mit | aiiro/ArrayBox |
75cb7c0dae1b195febac75b75031fdcb762e0e4e | plumgrid_playbooks/plumgrid_all.yml | plumgrid_playbooks/plumgrid_all.yml | ---
#
# Copyright (c) 2015, PLUMgrid Inc, http://plumgrid.com
#
# 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 applica... | ---
#
# Copyright (c) 2015, PLUMgrid Inc, http://plumgrid.com
#
# 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 applica... | Make enable_pg_extensions a standalone play | Make enable_pg_extensions a standalone play
Signed-off-by: Javeria Khan <09d287669e47feb54c0cb63e33022fc8a1434dfe@plumgrid.com>
| YAML | apache-2.0 | plumgrid/plumgrid-ansible |
b59188798c9ac33fadeddab93d1216f139ff065b | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: openchemistry/mongochemserver:latest
environment:
- CIRCLE_BRANCH: ${CIRCLE_BRANCH}
- CIRCLE_BUILD_NUM: ${CIRCLE_BUILD_NUM}
- image: mongo:latest
working_directory: /mongochemserver
steps:
- checkout
- run:
... | version: 2
jobs:
build:
docker:
- image: openchemistry/mongochemserver:latest
environment:
- CIRCLE_BRANCH: ${CIRCLE_BRANCH}
- CIRCLE_BUILD_NUM: ${CIRCLE_BUILD_NUM}
- image: mongo:latest
working_directory: /mongochemserver
steps:
- checkout
- run:
... | Remove requirements.txt installation from CircleCI | Remove requirements.txt installation from CircleCI
Signed-off-by: Patrick Avery <743342299f279e7a8c3ff5eb40671fce3e95f13a@kitware.com>
| YAML | bsd-3-clause | OpenChemistry/mongochemserver |
af88d6d968170f24afd2d301a1ffa539a04a65a5 | .circleci/config.yml | .circleci/config.yml | # Java Maven CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: aholyoke/traildb-java:circlebuild
# Specify service dependencies here if necessary
# ... | # Java Maven CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: aholyoke/traildb-java:latest
# Specify service dependencies here if necessary
# Circl... | Use latest tag instead of circlebuild | Use latest tag instead of circlebuild
| YAML | mit | aholyoke/traildb-java,aholyoke/traildb-java |
d29ef1f77223f107970f7a4e9dc8a6dcd8dcb533 | roles/knowhow/tasks/main.yml | roles/knowhow/tasks/main.yml | ---
- name: Install Node.js packages
action: npm name={{ item }} state=latest global=yes
with_items:
- gulp
- ember-cli
- name: Create app directories
action: file path={{ item }} state=directory
with_items:
- /u/apps/knowhow/frontend
- /u/apps/knowhow/backend
- name: Check out app repositorie... | ---
- name: Install Node.js packages
action: npm name={{ item }} state=latest global=yes
with_items:
- gulp
- ember-cli
- name: Create app directories
action: file path={{ item }} state=directory
with_items:
- /u/apps/knowhow/frontend
- /u/apps/knowhow/backend
- name: Check out app repositorie... | Allow HTTP traffic to the Knowhow hosts | Allow HTTP traffic to the Knowhow hosts
| YAML | mit | RitwikGupta/ansible,Pitt-CSC/ansible,RitwikGupta/ansible,RitwikGupta/ansible,Pitt-CSC/ansible,Pitt-CSC/ansible |
e99392daabd747dfc34a0317f997470eb6c70728 | rules/st2_add_librato_annotation_for_release.yaml | rules/st2_add_librato_annotation_for_release.yaml | ---
name: "st2_add_librato_annotation_for_release"
description: "Creates librato annotation when a release is created."
enabled: true
trigger:
type: "core.st2.generic.actiontrigger"
criteria:
trigger.body.ref:
pattern: "^refs/heads/v(\\d+\\.)(\\d+)$"
type: "ma... | ---
name: "st2_add_librato_annotation_for_release"
description: "Creates librato annotation when a release is created."
enabled: true
trigger:
type: "GitHubWebhook.github_event"
criteria:
trigger.body.ref:
pattern: "^refs/heads/v(\\d+\\.)(\\d+)$"
type: "matchr... | Fix trigger type for librato event | Fix trigger type for librato event
| YAML | apache-2.0 | StackStorm/st2cd,StackStorm/st2cd |
45d2f5f237279fe8b02d7b5b85c51b1d5288b22f | metadata.yaml | metadata.yaml | name: airtime
summary: <Fill in summary here>
maintainer: charles <charles@desktop>
description: |
<Multi-line description here>
categories:
- misc
subordinate: false
provides:
provides-relation:
interface: interface-name
requires:
requires-relation:
interface: interface-name
peers:
peer-relation:
... | name: airtime
summary: Airtime Radio Automation from SourceFabric
maintainer: Charles Butler <charles.butler@ubuntu.com>
description: |
Deploys the SourceFabric Radio Automation suite. RabbitMQ, IceCast, Monit
and Airtime on Apache2
categories:
- applications
subordinate: false
provides:
website:
interface:... | Add the relations, and meta for the charm | Add the relations, and meta for the charm
| YAML | mit | chuckbutler/airtime-charm,chuckbutler/airtime-charm |
b9631888c4660e1f7892ecd8fea053d76d152262 | config/database.yml | config/database.yml | default: &default
adapter: postgresql
host: <%= ENV.fetch("DS_AUTH_DATABASE_HOST", nil) %>
password: <%= ENV.fetch("DS_AUTH_DATABASE_PASSWORD", nil) %>
username: <%= ENV.fetch("DS_AUTH_DATABASE_USERNAME", nil) %>
pool: <%= ENV.fetch("DS_AUTH_DATABASE_POOL", 5) %>
development:
<<: *default
database: defen... | default: &default
adapter: postgresql
encoding: utf8
host: <%= ENV.fetch("DS_AUTH_DATABASE_HOST", nil) %>
password: <%= ENV.fetch("DS_AUTH_DATABASE_PASSWORD", nil) %>
username: <%= ENV.fetch("DS_AUTH_DATABASE_USERNAME", nil) %>
pool: <%= ENV.fetch("DS_AUTH_DATABASE_POOL", 5) %>
development:
<<: *default
... | Set default db encoding to utf8 | Set default db encoding to utf8
| YAML | mit | ministryofjustice/ds-auth,ministryofjustice/defence-request-service-auth,ministryofjustice/defence-request-service-auth,ministryofjustice/ds-auth,ministryofjustice/defence-request-service-auth,ministryofjustice/ds-auth,ministryofjustice/defence-request-service-auth,ministryofjustice/ds-auth |
905700fdfd1c8dcef2a10c9357467d872cb09f08 | config/database.yml | config/database.yml | default: &default
adapter: postgresql
encoding: unicode
pool: 25
development:
<<: *default
database: mnemosyne
# 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: &default
adapter: postgresql
encoding: unicode
pool: 25
development:
<<: *default
database: mnemosyne
prepared_statements: false
# 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 deve... | Disable prepared statement for better debugging | Disable prepared statement for better debugging
| YAML | agpl-3.0 | jgraichen/mnemosyne-server,jgraichen/mnemosyne-server,jgraichen/mnemosyne-server |
8fbe4c6a16088ee2c8404d1e93db23b875a1134e | config/database.yml | config/database.yml | development:
adapter: postgresql
encoding: unicode
database: hours_report_development
host: localhost
pool: 5
username: danevron
password:
test:
adapter: postgresql
encoding: unicode
database: hours_report_test
host: localhost
pool: 5
username: danevron
password:
production:
adapter: pos... | development:
adapter: postgresql
encoding: unicode
database: hours_report_development
host: localhost
pool: 5
username: <%= ENV['DB_USERNAME'] %>
password:
test:
adapter: postgresql
encoding: unicode
database: hours_report_test
host: localhost
pool: 5
username: <%= ENV['DB_USERNAME'] %>
pas... | Use .env variable for db username in local envs | Use .env variable for db username in local envs | YAML | mit | danevron/hours-report-app,danevron/hours-report-app,danevron/hours-report-app |
33357186648a622b1df05883ed8d9d06783592c2 | config/database.yml | config/database.yml |
development:
adapter: postgresql
encoding: unicode
database: parliamentary-questions_dev
host: localhost
pool: 10
test: &test
adapter: postgresql
encoding: unicode
database: parliamentary-questions_test
host: localhost
pool: 10
production:
adapter: postgresql
host: <%= ENV['DB_HOST'] || 'lo... |
development:
adapter: postgresql
encoding: unicode
database: parliamentary-questions_dev
username: <%= ENV['DB_USERNAME'] || ENV['PGUSER'] || 'postgres' %>
password: <%= ENV['DB_PASSWORD'] || ENV['PGPASSWORD'] || 'postgres' %>
host: <%= ENV['DB_HOST'] || 'localhost' %>
pool: 10
test: &test
adapter: ... | Allow further customisation of db through env | Allow further customisation of db through env
Adds more variables to database.yml and logic to allow
different levels of overrides and customisation as needed
for the new stack and docker-compose.
| YAML | mit | ministryofjustice/parliamentary-questions,ministryofjustice/parliamentary-questions,ministryofjustice/parliamentary-questions,ministryofjustice/parliamentary-questions,ministryofjustice/parliamentary-questions |
82da1d1accd404921f22a8f32e377481104f087e | etc/secrets-dev.yml | etc/secrets-dev.yml | ---
MYSQL_USER: root
MYSQL_PASSWORD: root
GOOGLE_OAUTH_CLIENT_ID: 986659776516-fg79mqbkbktf5ku10c215vdij918ra0a.apps.googleusercontent.com
GOOGLE_OAUTH_CLIENT_SECRET: zgY9wgwML0kmQ6mmYHYJE05d
MS_LIVE_OAUTH_CLIENT_ID: 000000004C12138C
MS_LIVE_OAUTH_CLIENT_SECRET: tjMNyu7ACbE8DOt0LE30Ptk7muNdPosG
# Hexl-encoded static ke... | ---
MYSQL_USER: root
MYSQL_PASSWORD: root
GOOGLE_OAUTH_CLIENT_ID: 986659776516-fg79mqbkbktf5ku10c215vdij918ra0a.apps.googleusercontent.com
GOOGLE_OAUTH_CLIENT_SECRET: zgY9wgwML0kmQ6mmYHYJE05d
MS_LIVE_OAUTH_CLIENT_ID: 0000000048157D75
MS_LIVE_OAUTH_CLIENT_SECRET: W69jkmY8Lp1CbRqn-H7TtRXLDLU7XBxb
# Hexl-encoded static ke... | Update Outlook.com OAuth test credentials to valid app "Nylas - Open Source Dev" | Update Outlook.com OAuth test credentials to valid app "Nylas - Open Source Dev"
| YAML | agpl-3.0 | gale320/sync-engine,PriviPK/privipk-sync-engine,ErinCall/sync-engine,wakermahmud/sync-engine,gale320/sync-engine,nylas/sync-engine,ErinCall/sync-engine,gale320/sync-engine,wakermahmud/sync-engine,ErinCall/sync-engine,wakermahmud/sync-engine,nylas/sync-engine,PriviPK/privipk-sync-engine,gale320/sync-engine,Eagles2F/sync... |
65aad32c8ecbecf7228e16e0a3025db6aa4a57a0 | _data/navigation.yml | _data/navigation.yml | - title: Home
url: "/"
side: left
- title: Blog
url: "/blog/"
side: left
dropdown:
- title: Blog
url: "/blog/"
- title: "Arquivos do Blog"
url: "/blog/arquivo/"
- title: "Galeria"
url: "/galeria/"
side: left
dropdown:
- title: Eventos e Palestras
url: "/galeria/eventos/"
- title: "S... | - title: Home
url: "/"
side: left
- title: Blog
url: "/blog/"
side: left
dropdown:
- title: Blog
url: "/blog/"
- title: "Arquivos do Blog"
url: "/blog/arquivo/"
- title: "Galeria"
url: "/galeria/"
side: left
dropdown:
- title: Eventos e Palestras
url: "/galeria/eventos/"
- title: "S... | Revert "retirando link doar para corrigir bug" | Revert "retirando link doar para corrigir bug"
This reverts commit 494d6fad7d20201248e6cadfac64dc0560d8333f.
| YAML | mit | inspiradanacomputacao/inspiradanacomputacao.github.io,teste-blog-inspirada/teste-blog-inspirada.github.io,teste-blog-inspirada/teste-blog-inspirada.github.io,teste-blog-inspirada/teste-blog-inspirada.github.io,inspiradanacomputacao/inspiradanacomputacao.github.io,inspiradanacomputacao/inspiradanacomputacao.github.io,te... |
eb66a153e2d8ee350b358c6b44194690cf6dae41 | conda-recipes/matrix_io-0.1/meta.yaml | conda-recipes/matrix_io-0.1/meta.yaml | package:
name: matrix_io
version: 0.1
source:
git_url: https://github.com/ExaScience/smurff
requirements:
build:
- python
- setuptools
run:
- scipy
about:
home: https://github.com/ExaScience/smurff
license: MIT
| package:
name: matrix_io
version: 0.1
source:
url: https://github.com/ExaScience/smurff/archive/master.zip
requirements:
build:
- python
- setuptools
run:
- scipy
about:
home: https://github.com/ExaScience/smurff
license: MIT
| Use zip file i.o. git url | Use zip file i.o. git url
| YAML | mit | ExaScience/smurff,ExaScience/smurff,ExaScience/smurff,ExaScience/smurff,ExaScience/smurff,ExaScience/smurff |
a39c259caca3105b49e2db481686b8dcc3599f42 | metadata/com.jpwolfso.privdnsqt.yml | metadata/com.jpwolfso.privdnsqt.yml | Categories:
- System
- Connectivity
License: GPL-3.0-only
AuthorName: Joshua Wolfsohn
AuthorEmail: jpwolfso@edu.uwaterloo.ca
SourceCode: https://github.com/joshuawolfsohn/Private-DNS-Quick-Tile
IssueTracker: https://github.com/joshuawolfsohn/Private-DNS-Quick-Tile/issues
Changelog: https://github.com/joshuawolfsohn... | Categories:
- System
- Connectivity
License: GPL-3.0-only
AuthorName: Joshua Wolfsohn
AuthorEmail: jpwolfso@edu.uwaterloo.ca
SourceCode: https://github.com/joshuawolfsohn/Private-DNS-Quick-Tile
IssueTracker: https://github.com/joshuawolfsohn/Private-DNS-Quick-Tile/issues
Changelog: https://github.com/joshuawolfsohn... | Update Private DNS Quick Tile to 1.3 (4) | Update Private DNS Quick Tile to 1.3 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
15143815d97a3afbbdfeaba198b25bd1f71a041f | dexter/config/production-logging.yaml | dexter/config/production-logging.yaml | version: 1
handlers:
file:
class: logging.handlers.TimedRotatingFileHandler
formatter: normal
filename: 'log/dexter.log'
when: 'd'
formatters:
normal:
format: '%(asctime)s %(process)-6d %(name)-12s %(userid)s %(levelname)-8s %(message)s'
loggers:
requests:
level: INFO
sqlalchemy.engine:
... | version: 1
handlers:
file:
class: logging.handlers.TimedRotatingFileHandler
formatter: normal
filename: 'log/dexter.log'
when: 'd'
filters: [userid]
filters:
userid:
(): dexter.logs.userIdFilterFactory
class: dexter.logs.UserIdFilter
formatters:
normal:
format: '%(asctime)s %(proce... | Add missing filter in production log config | Add missing filter in production log config
| YAML | apache-2.0 | Code4SA/mma-dexter,Code4SA/mma-dexter,Code4SA/mma-dexter |
8e343159de71ac4795381db45c0b7a94cd55ac25 | metadata/com.vaudibert.canidrive.yml | metadata/com.vaudibert.canidrive.yml | Categories:
- Sports & Health
License: Apache-2.0
AuthorName: Vincent AUDIBERT
SourceCode: https://github.com/VincentAudibert/CanIDrive
IssueTracker: https://github.com/VincentAudibert/CanIDrive/issues
AutoName: CanIDrive
RepoType: git
Repo: https://github.com/VincentAudibert/CanIDrive
Builds:
- versionName: 0.2... | Categories:
- Sports & Health
License: Apache-2.0
AuthorName: Vincent AUDIBERT
SourceCode: https://github.com/VincentAudibert/CanIDrive
IssueTracker: https://github.com/VincentAudibert/CanIDrive/issues
AutoName: CanIDrive
RepoType: git
Repo: https://github.com/VincentAudibert/CanIDrive
Builds:
- versionName: 0.2... | Update CanIDrive to 0.2.9 (22) | Update CanIDrive to 0.2.9 (22)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
904ea509747ed94274ca59855ca4070b71a9459b | metadata/org.droidtr.deletegapps.yml | metadata/org.droidtr.deletegapps.yml | Categories:
- System
License: GPL-3.0-only
SourceCode: https://gitlab.com/parduscix/disable-delete-gapps
IssueTracker: https://gitlab.com/parduscix/disable-delete-gapps/issues
AutoName: /d/gapps
Summary: Delete/disable GApps
Description: |-
This application is used to delete or disable gapps. It uses a regex to
... | Categories:
- System
License: GPL-3.0-only
SourceCode: https://gitlab.com/parduscix/disable-delete-gapps
IssueTracker: https://gitlab.com/parduscix/disable-delete-gapps/issues
AutoName: /d/gapps
Summary: Delete/disable GApps
Description: |-
This application is used to delete or disable gapps. It uses a regex to
... | Update /d/gapps to 4.0 (4) | Update /d/gapps to 4.0 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata,f-droid/fdroid-data |
2b0f8feb7cdedb7e9882bf1166220ba570a72ff3 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: images
public_path: "/images"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: heading
label: JTemporal
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: images
public_path: "/images"
front_matter_path: ''
use_front_matter_path: false
file_temp... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io |
e3b33fc0c9a8905dbc95a8efeeadf9b0666fbd10 | packages/jo/jot.yaml | packages/jo/jot.yaml | homepage: http://gitlab.com/locallycompact/jot
changelog-type: markdown
hash: cf9bb897220bc58d46973e5fe2871f57c415448cb44f6e262e05330c9a7bd5af
test-bench-deps: {}
maintainer: locallycompact@gmail.com
synopsis: Tiny markdown notebook
changelog: ! '# Changelog for Jot
## v0.1.0
Basic application creating markdown... | homepage: http://gitlab.com/locallycompact/jot
changelog-type: markdown
hash: 2eaea178460d88a1c4a40d7b880a719d33e66342b9e04e8d8a56f20402ad01a5
test-bench-deps: {}
maintainer: locallycompact@gmail.com
synopsis: Tiny markdown notebook
changelog: ! '# Changelog for Jot
## v0.1.0
Basic application creating markdown... | Update from Hackage at 2018-04-05T13:51:42Z | Update from Hackage at 2018-04-05T13:51:42Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c6b6466f079097271072c35720462eb6a7414de7 | environments/enable-internal-tls.yaml | environments/enable-internal-tls.yaml | # A Heat environment file which can be used to enable a
# a TLS for in the internal network via certmonger
parameter_defaults:
EnableInternalTLS: true
resource_registry:
OS::TripleO::Services::HAProxyInternalTLS: ../puppet/services/haproxy-internal-tls-certmonger.yaml
OS::TripleO::Services::ApacheTLS: ../puppet/s... | # A Heat environment file which can be used to enable a
# a TLS for in the internal network via certmonger
parameter_defaults:
EnableInternalTLS: true
# Required for novajoin to enroll the overcloud nodes
ServerMetadata:
ipa_enroll: True
resource_registry:
OS::TripleO::Services::HAProxyInternalTLS: ../pup... | Add novajoin entries to the TLS-everywhere environment file | Add novajoin entries to the TLS-everywhere environment file
These metadata settings (the hardcoded metadata and the hook override)
are used by the novajoin service when it's deployed in the undercloud,
and will tell it to enroll the overcloud nodes and the services that are
specified by the metadata hook.
bp novajoin... | YAML | apache-2.0 | openstack/tripleo-heat-templates,dprince/tripleo-heat-templates,openstack/tripleo-heat-templates,dprince/tripleo-heat-templates |
583a13b7d073ae05f34e8d3cf18b278e6df1744e | .drone.yml | .drone.yml | ---
kind: pipeline
name: npm_install
steps:
- name: npm_install
image: node:latest
commands:
- npm install
- npm audit --production
---
kind: pipeline
name: test
steps:
- name: build
image: python:2.7-slim
environment:
VIRTUAL_ENV: ".venv"
commands:
- apt-get update &&... | ---
kind: pipeline
name: npm_install
steps:
- name: npm_install
image: node:latest
commands:
- npm install
- name: npm_audit
image: node:latest
commands:
- npm audit --production
---
kind: pipeline
name: test
steps:
- name: build
image: python:2.7-slim
environment:
VI... | Split NPM steps in two | Split NPM steps in two
| YAML | mit | ukch/refugeedata,ukch/refugeedata,ukch/refugeedata,ukch/refugeedata |
73c440fe7aa617247ab20d9ee2f05385f225185f | .drone.yml | .drone.yml | kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: dockerhub_username
password:
from_secret: dockerhub_password
repo: ptarmiganlabs/butler
dockerfile: src/Dockerfile
context: src
# auto_tag: true
tags:
- latest
... | kind: pipeline
type: docker
name: butler-amd64
platform:
arch: amd64
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: dockerhub_username
password:
from_secret: dockerhub_password
repo: ptarmiganlabs/butler
dockerfile: src/Dockerfile
context: src
... | Build Arm64 image using Drone | Build Arm64 image using Drone
| YAML | mit | mountaindude/butler |
9ad3aaac2847a886e3ae2c4934d33da10c706025 | app/config/routing.yml | app/config/routing.yml | _perf:
resource: "@MoschiniPerfToolBundle/Controller/DefaultController.php"
type: annotation
prefix: /perf
_sites:
resource: "@MoschiniPerfToolBundle/Controller/SitesController.php"
type: annotation
prefix: /sites
| _perf:
resource: "@MoschiniPerfToolBundle/Controller/DefaultController.php"
type: annotation
prefix: /perf
_sites:
resource: "@MoschiniPerfToolBundle/Controller/SitesController.php"
type: annotation
prefix: /
| Remove prefix on /sites handler to be the default | Remove prefix on /sites handler to be the default
| YAML | mit | leibowitz/perfmonitor,leibowitz/perfmonitor,leibowitz/perfmonitor |
c4573ab72ab8730acbbdc5de7557ce03859d154f | .github/workflows/publish-workflow.yml | .github/workflows/publish-workflow.yml | name: Upload Python Package
on:
push:
tags:
- v*.*.*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python... | name: Upload Python Package
on:
push:
tags:
- v*.*.*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python... | Create GitHub release during publish | Create GitHub release during publish
| YAML | mit | msiemens/tinydb-serialization |
42bba9dca9a78ee917627343e01de8e1979dbd78 | build-directive.yaml | build-directive.yaml | username: lightsource2
numpy:
- '1.10'
- '1.11'
sources:
- url: https://github.com/nsls-ii/auto-build-tagged-recipes
folders:
- name: py2
python:
- 2.7
- name: py3
python:
- 3.4
- 3.5
- name: pyall
python:
- 2.7
- 3.4
... | username: lightsource2
numpy:
- '1.10'
sources:
- url: https://github.com/nsls-ii/auto-build-tagged-recipes
folders:
- name: py2
python:
- 2.7
- name: py3
python:
- 3.4
- 3.5
- name: pyall
python:
- 2.7
- 3.4
-... | Remove numpy 1.11 from the build matrix | Remove numpy 1.11 from the build matrix
| YAML | bsd-3-clause | NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/auto-build-tagged-recipes |
926247086625eaae212ccf95aacfd49b5196f811 | shippable.yml | shippable.yml | language: ruby
rvm:
- 2.6.3
env:
- secure: FGkU1b+kxBb5R3w+QIfHP6iGovcGm1mflg177mrCj6MIOlhYe9Sg80wgHE7oZDxLIpVv2ONpAkkecpw2bknJDnrJPPJvKekSedq8ZskoyRiVxVOKq/8IOYjucFkkifdAOAdFJGFNEz6zpCGoX99efQzwBGm8C/1GMYYrxJn2FtPjlmsYPmCs//uLJaRgSj9bEk8l0Ru3mRvF459BeK1GSjL6Yq0cHJWc2wSFp+7t5hvlvVRWaVsuxdbBW8Bm5k4sX/6s9TAeDHnl2qnQc1... | language: ruby
rvm:
- 2.6.3
env:
- secure: g6yK1GxsyYxM6s9YnOOHxEontOJKj9uE2WNGs2ib7/lmvsppwgysdAPnySm8OQrREqpeaPwiYgRo6ff7+ZcExAieAlx5Fpp/8JQDgXGAi6lkaT5NqEOcBajuSzXR/L7dAwARIhD9dfqpwQA7rJ8lX17R+PqJscEuTzqx2DJXbZBPKO2SU/O43hpxTiX185RYzyHoe7TIwu+2xSE74gNXj7VSJry0xfU62VmYd1iOoF52hp6/qby6q79axMF20Z7Ekt6b7zAfnl6n0Z+9+X... | Switch to correct FTP account. | Switch to correct FTP account.
| YAML | mit | salsolatragus/sven-amann.de,salsolatragus/sven-amann.de,salsolatragus/sven-amann.de,salsolatragus/sven-amann.de |
6c2b86100ba931a2ed233d690e4c1b731b2ff5b1 | shippable.yml | shippable.yml | # Painless deployment with Shippable.
# Visit the docs at http://docs.shippable.com/ci/shippableyml/
language: python
python:
- 3.7
env:
matrix: # $ tox -l | xargs -I ARG echo ' - TOXENV=ARG'
- TOXENV=flake8
- TOXENV=pylint
- TOXENV=bandit
- TOXENV=py35
- TOXENV=py36
- TOXENV=py37
- TOXENV=pypy3
... | # Painless deployment with Shippable.
# Visit the docs at http://docs.shippable.com/ci/shippableyml/
language: python
python:
- 3.7
env:
matrix: # $ tox -l | xargs -I ARG echo ' - TOXENV=ARG'
- TOXENV=flake8
- TOXENV=pylint
- TOXENV=bandit
- TOXENV=py35
- TOXENV=py36
- TOXENV=py37
- TOXENV=pypy3
... | Use alternative syntax for allow_failures | Use alternative syntax for allow_failures
| YAML | apache-2.0 | painless-software/painless-continuous-delivery,painless-software/painless-continuous-delivery,painless-software/painless-continuous-delivery,painless-software/painless-continuous-delivery |
7d9244f1ce7088a4cd23365f0ea7ede7d9a4028f | metadata/superfreeze.tool.android.yml | metadata/superfreeze.tool.android.yml | Categories:
- System
License: GPL-3.0-only
SourceCode: https://gitlab.com/SuperFreezZ/SuperFreezZ
IssueTracker: https://gitlab.com/SuperFreezZ/SuperFreezZ/issues
AutoName: SuperFreezZ
RepoType: git
Repo: https://gitlab.com/SuperFreezZ/SuperFreezZ.git
Builds:
- versionName: 0.0.1-alpha
versionCode: 1
comm... | Categories:
- System
License: GPL-3.0-only
SourceCode: https://gitlab.com/SuperFreezZ/SuperFreezZ
IssueTracker: https://gitlab.com/SuperFreezZ/SuperFreezZ/issues
AutoName: SuperFreezZ
RepoType: git
Repo: https://gitlab.com/SuperFreezZ/SuperFreezZ.git
Builds:
- versionName: 0.0.1-alpha
versionCode: 1
comm... | Update SuperFreezZ to 0.0.7-alpha (7) | Update SuperFreezZ to 0.0.7-alpha (7)
| YAML | agpl-3.0 | f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata |
7c8b8a358e34bb9cb26a3b4b3ecc76a45b5f89dc | packages/hs/hspec-smallcheck.yaml | packages/hs/hspec-smallcheck.yaml | homepage: http://hspec.github.io/
changelog-type: ''
hash: f89b869d2953b52e737bdbfe980ccca6775dfa8188e129f774a36e2091465fe7
test-bench-deps:
base: ! '>=4.5.0.0 && <5'
hspec: -any
hspec-core: ! '>=2.5.0'
HUnit: -any
smallcheck: ! '>=1.1'
QuickCheck: -any
call-stack: -any
hspec-smallcheck: -any
maintainer... | homepage: http://hspec.github.io/
changelog-type: ''
hash: a5bd898309fffbaa57ccdb0f3cef4cbf99b8b4aa2ea84133238a169bf5b4b51d
test-bench-deps:
base: ! '>=4.5.0.0 && <5'
hspec: -any
hspec-core: ! '>=2.5.0'
HUnit: -any
smallcheck: ! '>=1.1'
base-orphans: -any
QuickCheck: -any
call-stack: -any
hspec-smallc... | Update from Hackage at 2018-03-27T09:06:49Z | Update from Hackage at 2018-03-27T09:06:49Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2635655997518c5fedbe60af20e56f88231c6f2f | packages/ge/generics-mrsop-gdiff.yaml | packages/ge/generics-mrsop-gdiff.yaml | homepage: ''
changelog-type: ''
hash: e44c5426c50e956ad7e877114cadf12f112516d90b665627dfe2b83794cc34aa
test-bench-deps: {}
maintainer: arian.vanputten@gmail.com v.cacciarimiraldo@gmail.com
synopsis: Reimplementation of the `gdiff` algorithm for `generics-mrsop`
changelog: ''
basic-deps:
generics-mrsop: ! '>=2.2.0'
... | homepage: https://github.com/VictorCMiraldo/generics-mrsop-gdiff#readme
changelog-type: ''
hash: c8172829bd87dc2f52e44206d6c1f0e131e1d74415517baff2c5cde390fe571e
test-bench-deps: {}
maintainer: Victor Miraldo <v.cacciarimiraldo@gmail.com>
synopsis: Reimplementation of the gdiff algorithm for generics-mrsop
changelog: '... | Update from Hackage at 2019-10-14T08:44:18Z | Update from Hackage at 2019-10-14T08:44:18Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d0f47bd2085d12b9f7e07600086a41882bf84b9f | packages/od/oden-go-packages.yaml | packages/od/oden-go-packages.yaml | homepage: http://oden-lang.org
changelog-type: ''
hash: 435d550d00a8f4421f8f2d399f89ae4e23ce7dc95cf6bbdaa35d6977a4d2df93
test-bench-deps: {}
maintainer: Oskar Wickström <oskar.wickstrom@gmail.com>
synopsis: Provides Go package metadata.
changelog: ''
basic-deps:
bytestring: ! '>=0.10'
base: ! '>=4.8 && <4.9'
unor... | homepage: http://oden-lang.org
changelog-type: ''
hash: a55ebbbe25b84b04ff7a5b76e19bc06e4d8444be2d126d3a612a62cc92d9ae80
test-bench-deps: {}
maintainer: Oskar Wickström <oskar.wickstrom@gmail.com>
synopsis: Provides Go package metadata.
changelog: ''
basic-deps:
bytestring: ! '>=0.10'
base: ! '>=4.8 && <4.9'
unor... | Update from Hackage at 2016-02-25T09:21:35+0000 | Update from Hackage at 2016-02-25T09:21:35+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
137a697540d7cdee517e2c0388753410e7d4b296 | docker-compose.live.yml | docker-compose.live.yml | # Production configuration
version: "2"
volumes:
api_static: {}
cache_data: {}
services:
api:
build: ./api
container_name: api
depends_on:
- cache
volumes:
- api_static:/api/static
proxy:
build: ./proxy
container_name: proxy
depends_on:
- api
volumes:
- api... | # Production configuration
version: "2"
volumes:
api_static: {}
cache_data: {}
services:
api:
build: ./api
container_name: api
restart: always
depends_on:
- cache
volumes:
- api_static:/api/static
proxy:
build: ./proxy
container_name: proxy
restart: always
depends_... | Add restart policy for production | Add restart policy for production
| YAML | mit | svagi/httptest |
bdc4862a06eaa8c43043e7deb26a334247f1ed35 | environment-3.6.yml | environment-3.6.yml | name: cmac_env
channels:
- conda-forge
- defaults
dependencies:
- python=3.6
- arm_pyart
- basemap
- json
- wradlib
- cartopy
- coincbc
- cython=0.27.3
- pip:
- scikit-fuzzy
- git+https://github.com/EVS-ATMOS/xsapr_clutter_project.git
- git+https://github.com/CSU-Radarmet/CSU_RadarTool... | name: cmac_env
channels:
- conda-forge
- defaults
dependencies:
- python=3.6
- arm_pyart
- basemap
- json
- gcc
- cartopy
- coincbc
- cython=0.27.3
- scikit-fuzzy
- pip:
- git+https://github.com/ARM-DOE/pyart.git
- git+https://github.com/CSU-Radarmet/CSU_RadarTools.git
- git+https://... | Put Py-ART under pip git installs, removed xsapr_clutter and added gcc. For cmac, we want the most recent updates of Py-ART so it has been moved under pip installs. xsapr_clutter is no longer needed, because it is within the cmac code now, and gcc package is now required for a proper install due to cython and cartopy. | MAINT: Put Py-ART under pip git installs, removed xsapr_clutter and
added gcc.
For cmac, we want the most recent updates of Py-ART so it has been moved
under pip installs. xsapr_clutter is no longer needed, because it is
within the cmac code now, and gcc package is now required for a proper
install due to cython and ca... | YAML | bsd-3-clause | EVS-ATMOS/cmac2.0,zssherman/cmac2.0,zssherman/cmac2.0,EVS-ATMOS/cmac2.0 |
e39762eb00928b6562ffa5259c8d3e6f5c7ac9ec | appveyor.yml | appveyor.yml | platform:
- AnyCPU
configuration:
- Release
artifacts:
- path: '**\*.exe' | platform:
- Any CPU
configuration:
- Release
artifacts:
- path: '**\*.exe' | Use "Any CPU" instead of AnyCPU for platform | Use "Any CPU" instead of AnyCPU for platform
| YAML | apache-2.0 | imazen/Nuget.Bootstrapper |
d2c03279b0a159bfd9c2fbf9ba67955c59b75971 | appveyor.yml | appveyor.yml | # DO NOT CHANGE the "init" and "install" sections below
# Download script file from GitHub
init:
ps: |
$ErrorActionPreference = "Stop"
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
Import-Module '..\appveyor-tool.ps1... | # DO NOT CHANGE the "init" and "install" sections below
# Download script file from GitHub
init:
ps: |
$ErrorActionPreference = "Stop"
Invoke-WebRequest http://raw.github.com/krlmlr/r-appveyor/master/scripts/appveyor-tool.ps1 -OutFile "..\appveyor-tool.ps1"
Import-Module '..\appveyor-tool.ps1... | Test AppVeyor against develop branches of bcbio dependencies | Test AppVeyor against develop branches of bcbio dependencies
| YAML | mit | hbc/bcbioRnaseq,hbc/bcbioRnaseq,roryk/bcbioRnaseq |
35aba1f6db66a1dce68403e67167956ad1c454d1 | appveyor.yml | appveyor.yml | environment:
CARGO_TARGET: x86_64-pc-windows-gnu
matrix:
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-gnu
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rustc-nightly-${env:TARGET}.tar.gz"
- ps: Start-FileDownload "https://static.rust-lang.org/cargo-dist/cargo-nightly-${e... | environment:
matrix:
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-gnu
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
- rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- call "C:\Program Files (x86)\Micros... | Use combined installer for targets | Use combined installer for targets
| YAML | apache-2.0 | edunham/regex,rust-lang/regex,rust-lang/regex,SeanRBurton/regex,bluss/regex,rust-lang/regex,rust-lang-nursery/regex,rust-lang-nursery/regex,edunham/regex,SeanRBurton/regex,bluss/regex,SeanRBurton/regex,rust-lang-nursery/regex,rust-lang-nursery/regex,SeanRBurton/regex,rust-lang/regex,edunham/regex,golddranks/regex,SeanR... |
f0c4db8005eb1caec948c5e391f652ebaf1da3a2 | appveyor.yml | appveyor.yml | image: Visual Studio 2017
before_build:
- nuget restore src\SshNet.Security.Cryptography.VS2017.sln
build:
project: src\SshNet.Security.Cryptography.VS2017.sln
verbosity: minimal
test:
assemblies: test\SshNet.Security.Cryptography.NET40.Tests\bin\Debug\SshNet.Security.Cryptography.Tests.dll
| os: Visual Studio 2015
before_build:
- nuget restore src\SshNet.Security.Cryptography.VS2017.sln
build:
project: src\SshNet.Security.Cryptography.VS2017.sln
verbosity: minimal
test:
assemblies: test\SshNet.Security.Cryptography.NET40.Tests\bin\Debug\SshNet.Security.Cryptography.Tests.dll
| Revert "Use VS 2017 image in AppVeyor." | Revert "Use VS 2017 image in AppVeyor."
This reverts commit bdccd36420edb06e8b6a43f9c7c45f6a794e5a3b.
| YAML | mit | sshnet/Cryptography |
2e6109030776b6b8440ae3d7eb9e5b4e7f070b6c | appveyor.yml | appveyor.yml | version: 1.0.0.{build}
skip_tags: true
os: Visual Studio 2015
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
COVERALLS_REPO_TOKEN:
secu... | version: 1.0.0.{build}
skip_tags: true
os: Visual Studio 2015
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
COVERALLS_REPO_TOKEN:
secu... | FIX | Change coveralls token again | FIX | Change coveralls token again
| YAML | apache-2.0 | mseknibilel/Alfred |
bb36781c65d0db39e191a6908d981979a6148fb2 | appveyor.yml | appveyor.yml | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "2"
# Install scripts. (runs after repo cloning)
install:
#... | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "3"
# Install scripts. (runs after repo cloning)
install:
#... | Update io.js from 2 to 3 | AppVeyor: Update io.js from 2 to 3
| YAML | mit | EE/grunt-defs |
5d3b0b606905fca7efedff1cda8a059627124537 | appveyor.yml | appveyor.yml | version: 2.8.{build}
os: Visual Studio 2015
environment:
matrix:
- {}
clone_folder: c:\projects\bandit
install: git submodule update --init --recursive
build_script:
- mkdir build
- cd build
- cmake c:\projects\bandit -G "Visual Studio 14"
- cmake --build . --config Debug
| version: 2.8.{build}
os: Visual Studio 2015
branches:
except:
- coverity-scan
environment:
matrix:
- {}
clone_folder: c:\projects\bandit
install: git submodule update --init --recursive
build_script:
- mkdir build
- cd build
- cmake c:\projects\bandit -G "Visual Studio 14"
- cmake --bu... | Add AppVeyor exception for coverity-scan branch | Add AppVeyor exception for coverity-scan branch
| YAML | mit | joakimkarlsson/bandit,joakimkarlsson/bandit,joakimkarlsson/bandit |
faf9181ab6dd47c15454ff2c726d13240bb1de51 | appveyor.yml | appveyor.yml | # Test against this version of Node.js
environment:
nodejs_version: "0.12"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Post-install test scripts.
test_script:
# Ou... | # Test against this version of Node.js
environment:
nodejs_version: "4"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Post-install test scripts.
test_script:
# Outpu... | Test windoze against node 4 | Test windoze against node 4 | YAML | mit | jmarceli/asset-builder,austinpray/asset-builder,austinpray/asset-builder,jmarceli/asset-builder |
3014767ec6d2f1f98dd7bd00cfd25860fabdbf0c | appveyor.yml | appveyor.yml | version: "{build}"
os: Windows Server 2012 R2
install:
- choco install atom -y
- cd %APPVEYOR_BUILD_FOLDER%
- "%LOCALAPPDATA%/atom/bin/apm clean"
- "%LOCALAPPDATA%/atom/bin/apm install"
build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- "%LOCALAPPDATA%/atom/bin/apm test --path %LOCALAPPDATA%/atom/bin/atom.cmd"... | ### Project specific config ###
environment:
APM_TEST_PACKAGES:
ATOM_LINT_WITH_BUNDLED_NODE: "true"
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta
### Generic setup follows ###
build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-p... | Use latest Appveyor file from atom/ci | Use latest Appveyor file from atom/ci | YAML | mit | atom/autocomplete-html |
60d40674442aa1723f095dbd7da70b1d772fc9ab | appveyor.yml | appveyor.yml | version: 11.0.{build}
image: Visual Studio 2017
configuration: Release
install:
- ps: >-
cd src
nuget restore Scriban.sln
$env:SCRIBAN_BUILD_NUMBER = ([int]$env:APPVEYOR_BUILD_NUMBER).ToString("000")
$env:appveyor_nuget_push = 'false'
if(-Not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
if($env:ap... | version: 11.0.{build}
image: Visual Studio 2017
configuration: Release
install:
- ps: >-
cd src
nuget restore Scriban.sln
$env:SCRIBAN_BUILD_NUMBER = ([int]$env:APPVEYOR_BUILD_NUMBER).ToString("000")
$env:appveyor_nuget_push = 'false'
if(-Not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
if($env:ap... | Allow to tag version directly without v prefix | Allow to tag version directly without v prefix
| YAML | bsd-2-clause | lunet-io/scriban,textamina/scriban |
9448870e6c56ba103b5276dc1a12d00d7b924eca | example/_config.yml | example/_config.yml | target: _site
collections:
- name: posts
folder: _posts
- name: books
folder: _books
categories:
- features
- blogging
- uncategorized
data:
- _data
datasets:
- name: calendar
folder: _datasets/calendar
pageviews:
- _pages
theme: bootstrap
title: My First Stakx Website
highlighter:
... | target: _site
collections:
- name: posts
folder: _posts
- name: books
folder: _books
categories:
- features
- blogging
- uncategorized
data:
- _data
datasets:
- name: calendar
folder: _datasets/calendar
pageviews:
- _pages
theme: bootstrap
title: My First Stakx Website
templates:
r... | Add redirect template config option to sample | Add redirect template config option to sample
| YAML | mit | allejo/stakx,allejo/stakx,stakx-io/stakx,stakx-io/stakx |
6146f16553578632835889bc0e6f9100d986ad51 | docker-compose.yml | docker-compose.yml | version: '3'
services:
bugzilla:
image: registry.gitlab.com/unee-t/bugzilla
restart: on-failure
ports:
- 8081:80
environment:
SES_SMTP_USERNAME: ${SES_SMTP_USERNAME}
SES_SMTP_PASSWORD: ${SES_SMTP_PASSWORD}
SES_VERIFIED_SENDER: ${SES_VERIFIED_SENDER... | version: '2'
services:
bugzilla:
image: registry.gitlab.com/unee-t/bugzilla:master
restart: on-failure
ports:
- 8081:80
environment:
SES_SMTP_USERNAME: ${SES_SMTP_USERNAME}
SES_SMTP_PASSWORD: ${SES_SMTP_PASSWORD}
SES_VERIFIED_SENDER: ${SES_VERIFIED... | Drop down version and use :master by default | Drop down version and use :master by default [skip ci]
| YAML | agpl-3.0 | unee-t/bugzilla |
bacd9805546737b50e44bbac1db5f7c8a5facc27 | pkg/js/pubspec.yaml | pkg/js/pubspec.yaml | name: js
version: 0.6.1
authors:
- Dart Team <misc@dartlang.org>
description: Access JavaScript from Dart.
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/js
environment:
sdk: '>=1.13.0 <2.0.0'
dev_dependencies:
browser: '^0.10.0+2'
| name: js
version: 0.6.1
authors:
- Dart Team <misc@dartlang.org>
description: Access JavaScript from Dart.
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/js
environment:
sdk: '>=1.19.0-dev.0.0 <2.0.0'
dev_dependencies:
browser: '^0.10.0+2'
| Fix sdk version constraint for pkg:js 0.6.1 | Fix sdk version constraint for pkg:js 0.6.1
BUG=
R=kevmoo@google.com
Review URL: https://codereview.chromium.org/2175423004 .
| YAML | bsd-3-clause | dartino/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dartino/dart-... |
9824b6a0befa1da565f0e25dd4831f46377292ee | recipes/gh-scoped-creds/meta.yaml | recipes/gh-scoped-creds/meta.yaml | {% set name = "gh-scoped-creds" %}
{% set version = "4.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/gh-scoped-creds-{{ version }}.tar.gz
sha256: 23316842a135a14d2e0df7a99e2710d10590e04635f1536c351572d2bfff11ef
build:
entr... | {% set name = "gh-scoped-creds" %}
{% set version = "4.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/gh-scoped-creds-{{ version }}.tar.gz
sha256: 23316842a135a14d2e0df7a99e2710d10590e04635f1536c351572d2bfff11ef
build:
entr... | Fix spacing in python requirement | Fix spacing in python requirement
| YAML | bsd-3-clause | ocefpaf/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes |
6d43b3aebca52380310a03bec5734e21bf71b56b | datahub/secrets.yaml | datahub/secrets.yaml |