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 |
|---|---|---|---|---|---|---|---|---|---|
2d5fb179fc7204ce5e3ea1cf62849fc0fcc93c56 | .travis.yml | .travis.yml | language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
script:
- bundle exec rspec ./spec
| language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.5
- 2.6
- 2.7
script:
- bundle exec rspec ./spec
| Remove Ruby 2.4 from Travis matrix | Remove Ruby 2.4 from Travis matrix
| YAML | mit | digitalocean/droplet_kit |
4f48999b0b951fdced108bf89ac40f9ef381c601 | .travis.yml | .travis.yml | language: objective-c
before_install:
- brew update
- brew install mongodb
- ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
- sleep 5
before_script:
- mongo mydb_test --eval 'db.addUser("travis", "test");'
script:... | language: objective-c
before_install:
- brew update
- brew install mongodb
- ln -s $(brew --prefix mongodb)/mongod.conf $(brew --prefix)/etc/mongod.conf
- ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
- launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
- sleep 5
b... | Work around MongoDB installer bug | Work around MongoDB installer bug
https://github.com/mxcl/homebrew/issues/23190
| YAML | apache-2.0 | paulmelnikow/ObjCMongoDB,money-alex2006hw/ObjCMongoDB |
3e50478a6bdd4e9a3e9d184402d99dd543e13f5a | .travis.yml | .travis.yml | language: ruby
rvm:
- '1.8.7'
- '1.9.2'
- '1.9.3'
- '2.0.0'
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec | language: ruby
rvm:
- '1.8.7'
- '1.9.2'
- '1.9.3'
- '2.0.0'
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx
script: bundle exec rspec | Use spec to run tests | Use spec to run tests
| YAML | mit | rikas/portuguese_validators |
6eed792503a74cfc6b92411aeb70589e4945687d | .travis.yml | .travis.yml | language: go
go:
- 1.7
- 1.8
- stable
- tip
script:
- go test -race -parallel 4 -timeout 30s -v ./... | language: go
go:
- 1.7
- 1.8
- tip
script:
- go test -race -parallel 4 -timeout 30s -v ./... | Remove version 'stable' from Travis build | Remove version 'stable' from Travis build
| YAML | mit | vapourismo/knx-go |
89204676b16a040ae4a9ecaa1f02d3fb469a5af9 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
node_js: "stable"
addons:
hosts:
- travis.dev
notifications:
email: false
before_install:
# Console
- stty cols 80
script:
# Main repo
- if [ $TRAVIS_PULL_REQUEST = "false" ]; then npm run test-remote; fi
# Forks (Travis blocks encrypted environment va... | sudo: required
dist: trusty
language: node_js
node_js: "stable"
addons:
chrome: stable
hosts:
- travis.dev
notifications:
email: false
before_install:
# Console
- stty cols 80
# Chrome
# - export CHROME_BIN=chromium-browser
# - export DISPLAY=:99.0
# - sh -e /etc/init.d/xvfb start
- google-ch... | Use headless Chrome for Travis+PRs | Use headless Chrome for Travis+PRs
| YAML | mit | jhildenbiddle/css-vars-ponyfill |
ed2defa29b5073f2e1dfd5c9fc70fffa34f1bdf4 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install:
- "pip install -r requirements/dev.txt"
- "pip install -r requirements/compiled.txt"
- "pip install rednose coverage coveralls"
script:
- PYTHONPATH=vendor/lib/python nosetests -v --rednose --force-color auslib/test
- coverage run -a scripts/test-rules.p... | language: python
python:
- "2.6"
- "2.7"
install:
- "pip install -r requirements/dev.txt"
- "pip install -r requirements/compiled.txt"
- "pip install rednose coverage coveralls"
script:
- PYTHONPATH=vendor/lib/python nosetests -v --with-coverage --rednose --force-color auslib/test
- coverage run -a scri... | Add coverage back into nosetests run | Add coverage back into nosetests run
| YAML | mpl-2.0 | mozbhearsum/balrog,aksareen/balrog,nurav/balrog,nurav/balrog,nurav/balrog,aksareen/balrog,tieu/balrog,aksareen/balrog,testbhearsum/balrog,tieu/balrog,aksareen/balrog,mozbhearsum/balrog,testbhearsum/balrog,mozbhearsum/balrog,nurav/balrog,testbhearsum/balrog,testbhearsum/balrog,tieu/balrog,tieu/balrog,mozbhearsum/balrog |
d83bc4da666df3ee188ffa16b90c23468ac1d4b9 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
install: travis_retry pip install 'requests>=2.9,<2.10' $DJANGO_VERSION
env:
global:
- PYTHONWARNINGS=all DJANGO_SETTINGS_MODULE=tests.django_settings
matrix:
- DJANGO_VERSION='Django>=1.8,<1.9'
- DJANGO_VERSION='Django>=1.9,<1.10'
matrix:
incl... | # Use the faster container-based infrastructure.
sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
install: travis_retry pip install 'requests>=2.9,<2.10' $DJANGO_VERSION
env:
global:
- PYTHONWARNINGS=all DJANGO_SETTINGS_MODULE=tests.django_settings
matrix:
- DJANGO_VERSION='Django>=1.8,... | Switch to the faster container-based Travis infrastructure | Switch to the faster container-based Travis infrastructure
By declaring that the tests do not require sudo, Travis can run the test
jobs on their newer/faster container-based infrastructure:
https://docs.travis-ci.com/user/migrating-from-legacy/
(Notably the builds start within seconds rather than needing to wait for... | YAML | mit | evansd/whitenoise,evansd/whitenoise,evansd/whitenoise |
431696a7f46ea0434fd430174708ba5501f08c09 | .travis.yml | .travis.yml | language: node_js
node_js:
- 11
- 10
cache: yarn
matrix:
fast_finish: true
notifications:
email: false
| language: node_js
node_js:
- 14
- 12
- 10
cache: yarn
matrix:
fast_finish: true
notifications:
email: false
| Remove broken node test environments | Remove broken node test environments
| YAML | mit | theplatapi/csv-loader |
751451828c17fda76bc453c99d8fd72e3a1611a0 | .kitchen.yml | .kitchen.yml | ---
provisioner:
name: ansible_playbook
hosts: test-kitchen
require_ansible_repo: false
require_ansible_omnibus: true
driver:
name: docker
platforms:
- name: debian-7.8
driver_config:
image: dynatrace/debian-testing:7.8
suites:
- name: default
| ---
provisioner:
name: ansible_playbook
hosts: test-kitchen
require_ansible_repo: false
require_ansible_omnibus: true
driver:
name: docker
platforms:
- name: centos-6
driver_config:
image: dynatrace/centos-testing:6
- name: debian-7.8
driver_config:
image: dynatrace/debian-testing:7.... | Add CentOS 6.5 and Ubuntu 12.04 as test platforms. | Add CentOS 6.5 and Ubuntu 12.04 as test platforms.
| YAML | mit | dynaTrace/Dynatrace-Collector-Ansible,dynaTrace/Dynatrace-Collector-Ansible |
e2367130964f725b93c153532274e3bfa8df3a8c | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.11.0"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- npm install
- npm install mocha -g
script:
- mocha test --recursive -u tdd | language: node_js
node_js:
- "6.9.2"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- npm install
- npm install mocha -g
script:
- mocha test --recursive -u tdd | Build with node 6.11.0 => 6.9.2 | Build with node 6.11.0 => 6.9.2
| YAML | mit | codingchili/kbn-authentication-plugin,codingchili/kbn-authentication-plugin |
9c0bb8d30b0eb2187b57be4e06439ef7a7ffcfda | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
before_script:
- npm install -g gulp
script: gulp travis
branches:
except:
- gh-pages | language: node_js
node_js:
- "7"
before_script:
- npm install -g gulp
script: gulp travis
branches:
except:
- gh-pages
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libcairo2-dev
- libjpeg8-dev
- libpango1.0-dev
- libgif-dev
- g++-4.9
- calibre... | Add full toolchain for node-canvas and ebook building | Add full toolchain for node-canvas and ebook building
| YAML | apache-2.0 | hybox/models |
4a55e6d3e23dd61e94895157e3d7cee3df40909f | .travis.yml | .travis.yml | ---
sudo: required
dist: trusty
language: python
cache: pip
python:
- "3.6"
services:
- docker
env:
- DJANGO_DATABASE_URL=postgresql://chaospizza:chaospizza@db:5432/chaospizza
install:
- pip install coveralls
- which coveralls >/dev/null 2>&1
- make build-image
- make check
before_script:
- mkdir -p bui... | ---
sudo: required
dist: trusty
language: python
cache: pip
python:
- "3.6"
services:
- docker
env:
- DJANGO_DATABASE_URL=postgresql://chaospizza:chaospizza@db:5432/chaospizza
install:
- pip install coveralls
- which coveralls >/dev/null 2>&1
- make build-image
- make check
before_script:
- mkdir -p bui... | Fix order bug when copying coverage results for coveralls | fix(build): Fix order bug when copying coverage results for coveralls
| YAML | mit | chaosdorf/chaospizza,chaosdorf/chaospizza,chaosdorf/chaospizza |
60668b6fdcd25e3301909e3188f0e3d1e515e4ee | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
- PHPUNIT_FLAGS="--coverage-clover build/coverage.xml"
- COVERAGE=true
install:
- trav... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
- PHPUNIT_FLAGS="--coverage-clover build/coverage.xml"
- COVERAGE=true
install:
- trav... | Fix PHP web server run | Fix PHP web server run
| YAML | mit | php-http/guzzle5-adapter |
3f2a4c38ac42f6756266ab3fcc6edfd9159e273a | auspice/s3_website.yml | auspice/s3_website.yml | s3_id: <%= ENV['S3_KEY'] %>
s3_secret: <%= ENV['S3_SECRET'] %>
s3_bucket: <%= ENV['S3_BUCKET'] %>
cloudfront_distribution_id: <%= ENV['CLOUDFRONT_ID'] %>
cloudfront_invalidate_root: true
gzip: true
| s3_id: <%= ENV['S3_KEY'] %>
s3_secret: <%= ENV['S3_SECRET'] %>
s3_bucket: <%= ENV['S3_BUCKET'] %>
cloudfront_distribution_id: <%= ENV['CLOUDFRONT_ID'] %>
cloudfront_invalidate_root: true
gzip:
- .html
- .css
- .tsv
- .json
- .js
- .png
- .jpg
| Fix gzip compression to work for more file types. | Fix gzip compression to work for more file types.
This results in much better compression, primarily through jsons.
Page loads should be much faster.
| YAML | agpl-3.0 | blab/nextflu,blab/nextflu,blab/nextflu,blab/nextflu,blab/nextflu |
c94b952dee8e3547cf1beb44b306cbf571682394 | .rubocop.yml | .rubocop.yml |
MethodLength:
Max: 200
LineLength:
Max: 160
FileName:
Enabled: false
PerceivedComplexity:
Enabled: false
CyclomaticComplexity:
Enabled: false
ClassLength:
Enabled: false
IfUnlessModifier:
Enabled: false
RegexpLiteral:
Enabled: false
|
MethodLength:
Max: 200
LineLength:
Max: 160
AbcSize:
Max: 50
FileName:
Enabled: false
PerceivedComplexity:
Enabled: false
CyclomaticComplexity:
Enabled: false
ClassLength:
Enabled: false
IfUnlessModifier:
Enabled: false
RegexpLiteral:
Enabled: false
| Exclude the ABC check from Rubocop | Exclude the ABC check from Rubocop
| YAML | mit | sensu-plugins/sensu-plugins-dhcp,opintanner/sensu-plugins-dhcp |
f8cdb3fcba22e9ba9e57e30ddad95afc4fb3993b | .rubocop.yml | .rubocop.yml | Layout/IndentArray:
EnforcedStyle: consistent
Metrics/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*.rb"
Style/Documentation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
| AllCops:
TargetRubyVersion: 2.3
Layout/IndentArray:
EnforcedStyle: consistent
Metrics/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*.rb"
Style/Documentation:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
| Add target ruby version to Rubocop | Add target ruby version to Rubocop
| YAML | mit | jcypret/hashid-rails,jcypret/hashid-rails |
6641b0463e501a8619bbb0aef9613f9695d3e588 | .rubocop.yml | .rubocop.yml | Style/StringLiterals:
EnforcedStyle: double_quotes
Style/IndentArray:
EnforcedStyle: consistent
Style/Documentation:
Enabled: false
Style/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*.rb"
| Style/StringLiterals:
EnforcedStyle: double_quotes
Style/IndentArray:
EnforcedStyle: consistent
Style/Documentation:
Enabled: false
Metrics/BlockLength:
Exclude:
- "*.gemspec"
- "spec/**/*.rb"
| Change block length linter to Metric | Change block length linter to Metric
| YAML | mit | jcypret/hashid-rails,jcypret/hashid-rails |
24499232a0535627acab7cc83604e45f5d617c08 | .travis.yml | .travis.yml | osx_image: xcode8.3
language: objective-c
sudo: required
env:
global:
- WORKSPACE="Umbrella.xcworkspace"
- SCHEME="Umbrella"
- IOS_SDK="iphonesimulator10.3"
- MACOS_SDK="macosx10.12"
- TVOS_SDK="appletvsimulator10.2"
- FRAMEWORK="Umbrella"
matrix:
- SDK="$IOS_SDK" DESTINATION="platf... | osx_image: xcode8.3
language: objective-c
sudo: required
env:
global:
- WORKSPACE="Umbrella.xcworkspace"
- SCHEME="Umbrella"
- IOS_SDK="iphonesimulator10.3"
- MACOS_SDK="macosx10.12"
- TVOS_SDK="appletvsimulator10.2"
- FRAMEWORK="Umbrella"
matrix:
- SDK="$IOS_SDK" DESTINATION="platf... | Use codecov with '-X xcodeplist' option | Use codecov with '-X xcodeplist' option
| YAML | mit | devxoul/Umbrella,devxoul/Umbrella |
aa522cebb917e2e67eb2b98bebd9badbc7fa38ed | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
| Use dynamic node versions on Travis CI | Test(config): Use dynamic node versions on Travis CI | YAML | unlicense | fvdm/nodejs-planetos |
7cc31b1004eb71766b410f52992e3b5099dc6f40 | .travis.yml | .travis.yml | ## language: java
## env:
## global:
## - MAVEN_OPTS="-Xmx2048m -XX:MaxPermSize=512m"
language: java
jdk:
- oraclejdk8
script:
- mvn clean install
| ## (C) Copyright IBM Corp. 2015, 2016
##
## 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 agree... | Add license header to build configuration | Add license header to build configuration
| YAML | apache-2.0 | SparkTC/stocator,ymoatti/pushdown-stocator,SparkTC/stocator |
1111d2929ea5fab00c0b15e288689c678613e6cb | kbase.yml | kbase.yml | module-name:
KBParallel
module-description:
A low level module for managing simple bulk execution in KBase
service-language:
python
module-version:
0.4.7
owners:
[mccorkle, wriehl, bsadkhin]
| module-name:
KBParallel
module-description:
A low level module for managing simple bulk execution in KBase
service-language:
python
module-version:
0.4.8
owners:
[mccorkle, wriehl, bsadkhin]
| Add fix for local jobs bump version | Add fix for local jobs bump version
| YAML | mit | sean-mccorkle/KBparallel,sean-mccorkle/KBparallel,sean-mccorkle/KBparallel,sean-mccorkle/KBparallel,sean-mccorkle/KBparallel,sean-mccorkle/KBparallel |
f030754c2c51d9bc3fc25eadfb9b604e84963633 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
git:
depth: 3
before_script:
- chmod +x gradlew
script:
- ./gradlew build
| language: java
jdk:
- oraclejdk8
- oraclejdk7
git:
depth: 3
before_script:
- chmod +x gradlew
script:
- echo 'Setup environment'
- ./gradlew setupCiWorkspace
- echo 'Build'
- ./gradlew build
| Make Travis using efficient build script | Make Travis using efficient build script
| YAML | mit | lion328/ThaiFixes |
b4c7f9446904c6f69ee590a903322e54e5cbd7a1 | install.conf.yaml | install.conf.yaml | - clean: ['~']
- link:
~/.dotfiles: ''
~/.gitconfig: git/gitconfig
~/.gitexcludes: git/gitexcludes
~/.tmux.conf: tmux.conf
~/.zprezto: zsh/plugins/prezto
~/.zlogin: zsh/plugins/prezto/runcoms/zlogin
~/.zlogout: zsh/plugins/prezto/runcoms/zlogout
~/.zpreztorc: ... | - clean: ['~']
- link:
~/.dotfiles: ''
~/.gitconfig: git/gitconfig
~/.gitexcludes: git/gitexcludes
~/.tmux.conf: tmux.conf
~/.zlogin: zsh/plugins/prezto/runcoms/zlogin
~/.zlogout: zsh/plugins/prezto/runcoms/zlogout
~/.zprezto: zsh/plugins/prezto
~/.zpreztorc: ... | Test for tmux before installing | Test for tmux before installing
| YAML | unlicense | cmcginty/dotfiles,cmcginty/dotfiles |
0d609c72cda1ffe8312940333507898ef66f1c36 | recipes/python-omero/meta.yaml | recipes/python-omero/meta.yaml | {% set OMERO_VERSION = "5.3.1" %}
package:
name: python-omero
version: {{ OMERO_VERSION }}
source:
fn: OMERO.py-{{ OMERO_VERSION }}-ice36-b61.zip
url: http://downloads.openmicroscopy.org/omero/{{ OMERO_VERSION }}/artifacts/OMERO.py-{{ OMERO_VERSION }}-ice36-b61.zip
sha1: b4485c382b8ad5d059c72b8cba272f7b2957... | {% set OMERO_VERSION = "5.3.1" %}
package:
name: python-omero
version: {{ OMERO_VERSION }}
source:
fn: OMERO.py-{{ OMERO_VERSION }}-ice36-b61.zip
url: http://downloads.openmicroscopy.org/omero/{{ OMERO_VERSION }}/artifacts/OMERO.py-{{ OMERO_VERSION }}-ice36-b61.zip
sha1: b4485c382b8ad5d059c72b8cba272f7b2957... | Set build number to 0. | Set build number to 0. | YAML | mit | shenwei356/bioconda-recipes,keuv-grvl/bioconda-recipes,shenwei356/bioconda-recipes,hardingnj/bioconda-recipes,mcornwell1957/bioconda-recipes,oena/bioconda-recipes,bebatut/bioconda-recipes,martin-mann/bioconda-recipes,phac-nml/bioconda-recipes,CGATOxford/bioconda-recipes,chapmanb/bioconda-recipes,mdehollander/bioconda-r... |
bdad50313c665a5271e0a94ec429379b0a521b05 | recipe/meta.yaml | recipe/meta.yaml | {% set version = "1.2.0" %}
package:
name: conda-smithy
version: {{ version }}
source:
fn: conda-smithy-v{{ version }}.tar.gz
url: https://github.com/conda-forge/conda-smithy/archive/v{{ version }}.tar.gz
sha256: 9c008025f3198b1f89f3fda48aca79b14773f6ae3d16271576cf893a34f489be
build:
number: 2
script: ... | {% set version = "1.3.0" %}
package:
name: conda-smithy
version: {{ version }}
source:
fn: conda-smithy-v{{ version }}.tar.gz
url: https://github.com/conda-forge/conda-smithy/archive/v{{ version }}.tar.gz
sha256: 95c7aa5324d3deeee682054d79b74fb3797e64a2376fd59a26492f2377d32415
build:
number: 2
script: ... | Update the version of conda-smithy, without rerendering... | Update the version of conda-smithy, without rerendering...
| YAML | bsd-3-clause | ocefpaf/conda-smithy-feedstock |
5d7ed70bfb500c8e8a611fdb5cd18da5c0e44e20 | metadata/com.ultramegasoft.flavordex2.yml | metadata/com.ultramegasoft.flavordex2.yml | Categories:
- Writing
License: MIT
WebSite: http://ultramegasoft.com
SourceCode: https://github.com/ultramega/flavordex
IssueTracker: https://github.com/ultramega/flavordex/issues
Changelog: https://github.com/ultramega/flavordex/blob/HEAD/CHANGELOG.md
AutoName: Flavordex
RepoType: git
Repo: https://github.com/ultr... | Categories:
- Writing
License: MIT
WebSite: http://ultramegasoft.com
SourceCode: https://github.com/ultramega/flavordex
IssueTracker: https://github.com/ultramega/flavordex/issues
Changelog: https://github.com/ultramega/flavordex/blob/HEAD/CHANGELOG.md
AutoName: Flavordex
RepoType: git
Repo: https://github.com/ultr... | Update CV of Flavordex to 2.5.0 (21) | Update CV of Flavordex to 2.5.0 (21)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
0f210e8db64c106df16c840ed2873f51b1c603c8 | install.conf.yaml | install.conf.yaml | - clean: ['~']
- shell: # Pre-install
-
command: mkdir -p ~/.config/nvim
stdout: true
stderr: true
- link:
~/.tmux.conf: tmux.conf
~/.gitconfig: gitconfig
~/.vimrc: vimrc
~/.zshrc: zshrc
~/.zshrc.local: zshrc.local
~/.Xresources: Xresources
~/.alias: alias
~... | - clean: ['~']
- shell: # Pre-install
-
command: mkdir -p ~/.gnupg
stdout: true
stderr: true
-
command: mkdir -p ~/.config/nvim
stdout: true
stderr: true
- link:
~/.tmux.conf: tmux.conf
~/.gitconfig: gitconfig
~/.vimrc: vimrc
~/.zshrc: zshrc
... | Add pre-install step to ensure presence of .gnupg | Add pre-install step to ensure presence of .gnupg
| YAML | mit | ouroboros8/dotfiles,ouroboros8/dotfiles |
ebd53d511f2f194beb0b3c4d84511efdc4e07030 | packages/in/index-core.yaml | packages/in/index-core.yaml | homepage: ''
changelog-type: ''
hash: 97808339bd2ac8a5c79ed99e716e2e8e941234421fde3930b370e0bbc734b063
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Indexed Types
changelog: ''
basic-deps:
base: ! '>=4 && <4.8'
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
author: Gabriel Gonzalez
latest: '1.0.2'
descr... | homepage: ''
changelog-type: ''
hash: f4d8953baf6811a2fc1872ecda0d7fa265bc0d933667c4d6b175977cd6d519b5
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Indexed Types
changelog: ''
basic-deps:
base: ! '>=4 && <5'
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
- '1.0.3'
author: Gabriel Gonzalez
latest: '1.0.... | Update from Hackage at 2016-04-10T23:40:11+0000 | Update from Hackage at 2016-04-10T23:40:11+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
fcae6ee227b35da805360f419844af9072bb7a28 | kubernetes/api_deployment.yaml | kubernetes/api_deployment.yaml | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: sdapi
spec:
replicas: 1
template:
metadata:
labels:
app: screwdriver
tier: api
spec:
containers:
- name: screwdriver-api
image: screwdrivercd/api
ports:
- containerPort: 8080
v... | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: sdapi
spec:
replicas: 1
template:
metadata:
labels:
app: screwdriver
tier: api
spec:
containers:
- name: screwdriver-api
image: screwdrivercd/api
ports:
- containerPort: 8080
v... | Remove apikey from volume mounts | Remove apikey from volume mounts
| YAML | bsd-3-clause | screwdriver-cd/api |
fec18e1a69322a611e84ff4bb7b2411adef95ec6 | docker/centos7/requirements.yml | docker/centos7/requirements.yml | ---
- src: openmicroscopy.ice
- src: openmicroscopy.omero-python-deps
- name: openmicroscopy.omero-common
src: https://github.com/openmicroscopy/ansible-role-omero-common.git
- name: openmicroscopy.omego
src: https://github.com/openmicroscopy/ansible-role-omego.git
| ---
- src: openmicroscopy.ice
version: 2.0.0
- src: openmicroscopy.omero-python-deps
version: 1.1.0
- name: openmicroscopy.omero-common
src: https://github.com/openmicroscopy/ansible-role-omero-common/archive/0.1.0.tar.gz
- name: openmicroscopy.omego
src: https://github.com/openmicroscopy/ansible-role-omeg... | Use versions for galaxy roles. Workaround galaxy bug. | Use versions for galaxy roles. Workaround galaxy bug.
| YAML | apache-2.0 | simleo/pydoop-features,simleo/pydoop-features,simleo/pydoop-features |
daf901a686656ad0a2546bdc242d090b05523b67 | conda/meta.yaml | conda/meta.yaml | package:
name: im-fusion
version: {{ environ.get('GIT_DESCRIBE_TAG', '')[1:]+ '+' + environ.get('GIT_DESCRIBE_NUMBER', '') }}
source:
path: ../
requirements:
build:
- setuptools
# Basic dependencies.
- python
- future
- pandas
- numexpr
- pysam ==0.8.4
- toolz
- scipy
... | package:
name: im-fusion
version: {{ environ.get('GIT_DESCRIBE_TAG', '')[1:] }}
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
source:
path: ../
requirements:
build:
- setuptools
# Basic dependencies.
- python
- future
- pandas
- numexpr
- pysam ==0.8.4
- toolz
... | Change build tag in conda. | Change build tag in conda.
| YAML | mit | jrderuiter/im-fusion,NKI-CCB/imfusion,jrderuiter/im-fusion,NKI-CCB/imfusion |
8505e2737e43f89c09fc9597889e56a6f8e114b9 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- nightly
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.1
env: STYLE
install:
- travis_retry composer install --prefer-dist --no-interaction --no-suggest
script: vendor/bin/php-cs-fixer fix . --dry-run --diff
allow_failures... | language: php
php:
- 7.1
- nightly
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.1
env: STYLE
install:
- composer config github-oauth.github.com $GITHUB_OAUTH
- travis_retry composer install --prefer-dist --no-interaction --no-suggest
script: ... | Add GitHub auth to pull dependencies via composer | Add GitHub auth to pull dependencies via composer
| YAML | mit | Parsemd/Parsemd |
23b861a43e4ff12bba72bb79be547230805450fd | skeleton/spec/acceptance/nodesets/debian-76-x64.yml | skeleton/spec/acceptance/nodesets/debian-76-x64.yml | HOSTS:
debian-76-x64:
roles:
- master
platform: debian-7-amd64
box: puppetlabs/debian-7.6-64-nocm
box_url: https://vagrantcloud.com/puppetlabs/boxes/debian-7.6-64-nocm
hypervisor: vagrantHOSTS:
CONFIG:
log_level: verbose
type: foss
| HOSTS:
debian-76-x64:
roles:
- master
platform: debian-7-amd64
box: puppetlabs/debian-7.6-64-nocm
box_url: https://vagrantcloud.com/puppetlabs/boxes/debian-7.6-64-nocm
hypervisor: vagrant
CONFIG:
log_level: verbose
type: foss
| Fix yaml for debian 7 beaker node | Fix yaml for debian 7 beaker node
| YAML | apache-2.0 | natemccurdy/puppet-module-skeleton,mmarseglia/puppet-module-skeleton,danieldreier/puppet-module-skeleton,garethr/puppet-module-skeleton,chartbeat-labs/puppet-module-skeleton,ITV/puppet-module-skeleton,fvoges/puppet-module-skeleton,pgomersbach/puppet-module-skeleton,jlambert121/puppet-module-skeleton,garethr/puppet-modu... |
03257aa14d1930e44c83f797c8a4fb0df3bd85b0 | .travis.yml | .travis.yml | language: php
php:
- '5.6'
install:
- composer install
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- cp test/php/.travis.config.php test/php/config.php
- npm install
- bower install
script:
- phpunit
- grunt jasmine
| language: php
php:
- '5.6'
install:
- composer install
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- cp test/php/.travis.config.php test/php/config.php
- npm install
- node_modules/bower/bin/bower install
script:
- phpunit
- grunt jasmine
| Adjust bower command to use local node version | Adjust bower command to use local node version
| YAML | mit | molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec |
884c102258cefeaadda02dcac1bac7bc8e469bf5 | .travis.yml | .travis.yml | # Travis performance customizations based on
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
# Use faster container-based infrastructure
sudo: false
language: scala
# These directories are cached to S3 at the end of the build
#cache:
# directories:
# - $HOME/.ivy2/cache
# - $HOME/.sbt/boot/
scala... | # Travis performance customizations based on
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
# Use faster container-based infrastructure
sudo: false
language: scala
# These directories are cached to S3 at the end of the build
#cache:
# directories:
# - $HOME/.ivy2/cache
# - $HOME/.sbt/boot/
scala... | Update spark to released version | Travis: Update spark to released version
| YAML | apache-2.0 | spark-notebook/spark-notebook,0asa/spark-notebook,spark-notebook/spark-notebook,antonkulaga/spark-notebook,maasg/spark-notebook,spark-notebook/spark-notebook,0asa/spark-notebook,antonkulaga/spark-notebook,andypetrella/spark-notebook,maasg/spark-notebook,maasg/spark-notebook,spark-notebook/spark-notebook,antonkulaga/spa... |
f6f603552b1119d1840b217582d6f5afdfc7df53 | data/plugin.yml | data/plugin.yml | name: UltraCommand
version: 0.5.2-flex
author: Kier Davis <kierdavis@gmail.com>
main: com.kierdavis.ultracommand.UltraCommand
commands:
uc:
description: UltraCommand
ultracommand:
description: UltraCommand
permissions:
ultracommand.configure:
description: Gives access to the /uc a... | name: UltraCommand
version: 0.5.3-flex
author: Kier Davis <kierdavis@gmail.com>
main: com.kierdavis.ultracommand.UltraCommand
commands:
uc:
description: UltraCommand
ultracommand:
description: UltraCommand
permissions:
ultracommand.configure:
description: Gives access to the /uc a... | Update version to rebuild with new upstream artifact | Update version to rebuild with new upstream artifact
| YAML | mit | kierdavis/UltraCommand |
7d3d792f345c634359ab6ab5ce53601b011c6b8d | .travis.yml | .travis.yml | language: go
go_import_path: aqwari.net/xml
go:
- 1.7
notifications:
email:
recipients: droyo@aqwari.net
on_success: change
on_failure: always
| language: go
go_import_path: aqwari.net/xml
go:
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11"
notifications:
email:
recipients: droyo@aqwari.net
on_success: change
on_failure: always
| Extend build to more go versions | Extend build to more go versions
| YAML | mit | droyo/go-xml |
7960eabca4dbd769daafd7a6661a4bc7ca2b5a1a | recipes/jobtastic/meta.yaml | recipes/jobtastic/meta.yaml | {% set name = "jobtastic" %}
{% set version = "0.3.1" %}
{% set hash_type = "md5" %}
{% set hash_val = "e43f1017fd76726955dd8afdf78a1a04" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://github.com/PolicyStat/{{ name }}/archive/v{{ version }}.t... | {% set name = "jobtastic" %}
{% set version = "0.3.1" %}
{% set hash_type = "md5" %}
{% set hash_val = "e43f1017fd76726955dd8afdf78a1a04" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://github.com/PolicyStat/{{ name }}/archive/v{{ version }}.t... | Correct hash_val typo. Add description | Correct hash_val typo. Add description
| YAML | bsd-3-clause | mariusvniekerk/staged-recipes,ceholden/staged-recipes,chohner/staged-recipes,basnijholt/staged-recipes,koverholt/staged-recipes,stuertz/staged-recipes,dharhas/staged-recipes,hbredin/staged-recipes,asmeurer/staged-recipes,ceholden/staged-recipes,jakirkham/staged-recipes,johannesring/staged-recipes,pmlandwehr/staged-reci... |
2c81a56a37aeecf719722092675eaa48595e47c4 | hieradata/role-backend-app.yaml | hieradata/role-backend-app.yaml | ---
classes:
- 'python'
- 'backdrop'
backdrop_apps:
read.backdrop:
port: 3038
app_module: 'backdrop.read.api:app'
user: 'deploy'
group: 'deploy'
write.backdrop:
port: 3039
app_module: 'backdrop.write.api:app'
user: 'de... | ---
classes:
- 'python'
- 'backdrop'
backdrop_apps:
read.backdrop:
port: 3038
app_module: 'backdrop.read.api:app'
user: 'deploy'
group: 'deploy'
write.backdrop:
port: 3039
app_module: 'backdrop.write.api:app'
user: 'de... | Install pip when installing python | Install pip when installing python
| YAML | mit | alphagov/pp-puppet,alphagov/pp-puppet,alphagov/pp-puppet,alphagov/pp-puppet |
aa91e9de6ce2b7443d26f4d060eab6bf4e2d34e8 | packages/ao/aop-prelude.yaml | packages/ao/aop-prelude.yaml | homepage: https://github.com/cutsea110/aop-prelude.git
changelog-type: markdown
hash: dfd76cf8d4656753ad7dada50b8aa711ad07412ee7dd295049c6b2a3fb3d652c
test-bench-deps:
base: ^>=4.12.0.0
ghc-prim: ^>=0.5.3
maintainer: cutsea110@gmail.com
synopsis: prelude for Algebra of Programming
changelog: |
# Revision history ... | homepage: https://github.com/cutsea110/aop-prelude.git
changelog-type: markdown
hash: 127b28ec00736c2bd10b516ceafa21eb7e27dc07c7a63a4f86e1c352af47a085
test-bench-deps:
base: ^>=4.12.0.0
ghc-prim: ^>=0.5.3
maintainer: cutsea110@gmail.com
synopsis: prelude for Algebra of Programming
changelog: |
# Revision history ... | Update from Hackage at 2020-04-12T00:13:16Z | Update from Hackage at 2020-04-12T00:13:16Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2d33402aba02148635b7cda269dd6ce93ea79cba | .builds/archlinux.yaml | .builds/archlinux.yaml | image: archlinux
packages:
- python-pip
- python-tox
- python-wheel
- python-pre-commit
- twine
sources:
- https://github.com/pimutils/todoman
secrets:
- 9a8d4d44-96f9-4365-beaa-aaa759c4f1c4
environment:
CODECOV_TOKEN: a4471483-7f55-411a-bf2f-f65a91013dc4
CI: true
tasks:
- setup: |
sudo pip in... | image: archlinux
packages:
- python-build
- python-pip
- python-pre-commit
- python-tox
- python-wheel
- python-setuptools-scm
- twine
sources:
- https://github.com/pimutils/todoman
secrets:
- 9a8d4d44-96f9-4365-beaa-aaa759c4f1c4
environment:
CODECOV_TOKEN: a4471483-7f55-411a-bf2f-f65a91013dc4
CI:... | Use PEP 517 for building wheels | Use PEP 517 for building wheels
| YAML | isc | pimutils/todoman |
1e0bcedaa1a54846e63d9e0403b029bb625c5425 | src/Oro/Bundle/ChartBundle/Resources/config/requirejs.yml | src/Oro/Bundle/ChartBundle/Resources/config/requirejs.yml | config:
shim:
'flotr2':
deps:
- 'jquery'
paths:
'flotr2': 'bundles/orochart/lib/flotr2/flotr2.amd.js'
'bean': 'bundles/orochart/lib/flotr2/bean.js'
'orochart/js/chart_form': 'bundles/orochart/js/chart_form.js'
'orochart/js/data_formatter': 'bu... | config:
shim:
'flotr2':
deps:
- 'jquery'
paths:
'flotr2': 'bundles/orochart/lib/flotr2/flotr2.amd.js'
'bean': 'bundles/orochart/lib/flotr2/bean.js'
'orochart/js/chart_form': 'bundles/orochart/js/chart_form.js'
'orochart/js/data_formatter': 'bu... | Add require js path for abstract chart widget | tiket/1726: Add require js path for abstract chart widget
| YAML | mit | 2ndkauboy/platform,ramunasd/platform,morontt/platform,ramunasd/platform,hugeval/platform,2ndkauboy/platform,Djamy/platform,hugeval/platform,trustify/oroplatform,Djamy/platform,hugeval/platform,northdakota/platform,orocrm/platform,northdakota/platform,geoffroycochard/platform,ramunasd/platform,orocrm/platform,2ndkauboy/... |
ce38981ba5cf69a2540f872d0a8b74124e164620 | packages/co/connections.yaml | packages/co/connections.yaml | homepage: https://github.com/cmk/connections
changelog-type: markdown
hash: b3461b73d3b77ee8554d0c97c6c996e02f65d242435b16ac9a4612f29f0028b6
test-bench-deps:
property: -any
base: ==4.*
connections: -any
hedgehog: -any
maintainer: chris.mckinlay@gmail.com
synopsis: Partial orders & Galois connections.
changelog:... | homepage: https://github.com/cmk/connections
changelog-type: markdown
hash: 11b5eb6de24d1049560689e639b60db1c73389e41a108d89894715dcd11373f5
test-bench-deps:
property: -any
base: ==4.*
connections: -any
hedgehog: -any
maintainer: chris.mckinlay@gmail.com
synopsis: Partial orders, lattices, & Galois connections.... | Update from Hackage at 2019-12-29T21:35:25Z | Update from Hackage at 2019-12-29T21:35:25Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1a237c9f98b37a29373a5865f275d2c883b5aee5 | packages/ec/ecta-plugin.yaml | packages/ec/ecta-plugin.yaml | homepage: ''
changelog-type: ''
hash: 7c06f993f5447ef737766be0196bbb0fbac34a38cc5a1793cf030d86abb2fdbd
test-bench-deps: {}
maintainer: mpg@mpg.is
synopsis: Hole-Fit Synthesis using ECTAs
changelog: ''
basic-deps:
ghc: '>8.10 && <9'
base: '>=4 && <5'
text: '>1.2 && <=1.3'
ecta: '>=1.0 && <1.1'
containers: '>0.... | homepage: ''
changelog-type: ''
hash: 343cd4873242553f4f01f309e7481eacc5989803d0d97f65b80224890aca0790
test-bench-deps: {}
maintainer: mpg@mpg.is
synopsis: Hole-Fit Synthesis using ECTAs
changelog: ''
basic-deps:
ghc: '>8.10 && <9'
base: '>=4 && <5'
text: '>1.2 && <=1.3'
ecta: '>=1.0 && <1.1'
containers: '>0.... | Update from Hackage at 2022-09-14T14:40:53Z | Update from Hackage at 2022-09-14T14:40:53Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
dc7190164a3585a164df86b1973711c2753f39a2 | .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 rspec gems | Allow auto merge rspec gems | YAML | mit | sue445/jenkins-backup-script,sue445/jenkins-backup-script |
8de3c648918a8ea0abc87b3195f60b580a7ccda6 | conda-recipe/meta.yaml | conda-recipe/meta.yaml | package:
name: filestore
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: ../
patches:
- config.patch
build:
number: 1
# Note that this will override the default build string with the Python
# and NumPy versions
string: {{ environ.get('GIT_BUILD... | package:
name: filestore
version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }}
source:
git_url: ../
patches:
- config.patch
build:
number: 1
# Note that this will override the default build string with the Python
# and NumPy versions
string: {{ environ.get('GIT_BUILD... | Include all modules in test imports | MNT: Include all modules in test imports
| YAML | bsd-3-clause | ericdill/fileStore,ericdill/fileStore,stuwilkins/filestore,danielballan/filestore,danielballan/filestore,ericdill/databroker,NSLS-II/filestore,stuwilkins/filestore,ericdill/databroker,tacaswell/filestore |
715c06fb99ee93888dcab0bef59a8461f5575987 | packages/sh/shake-cabal.yaml | packages/sh/shake-cabal.yaml | homepage: ''
changelog-type: ''
hash: a60667acb0e5e3cacbb65f3c27787856099e2bf7cc7fe7cab3155625c6edddf6
test-bench-deps: {}
maintainer: vanessa.mchale@iohk.io
synopsis: Shake library for use with cabal
changelog: ''
basic-deps:
shake: ! '>=0.14'
composition-prelude: -any
Cabal: ! '>=2.2'
base: ! '>=4.8 && <5'
... | homepage: ''
changelog-type: ''
hash: a059bbfe240274eb8dcaede1c2ce44fec3c7dae07641e8ef40cac0338e33b745
test-bench-deps: {}
maintainer: vanessa.mchale@iohk.io
synopsis: Shake library for use with cabal
changelog: ''
basic-deps:
shake: ! '>=0.14'
composition-prelude: -any
Cabal: ! '>=2.2'
base: ! '>=4.8 && <5'
... | Update from Hackage at 2018-07-28T21:28:48Z | Update from Hackage at 2018-07-28T21:28:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a94e8ae11d7ad5d102fc37def36b667020da8bce | conda.recipe/meta.yaml | conda.recipe/meta.yaml | package:
name: bokeh
version: 'nightly'
build:
number: {{ environ.get('BINSTAR_BUILD', 1) }}
extra:
channels:
- bokeh
- javascript
requirements:
build:
- python
- distribute
- setuptools
- gulp # in javascript channel
run:
# bokeh
- python
- numpy
- pandas
- ... | package:
name: bokeh
version: 'nightly'
build:
number: {{ environ.get('BINSTAR_BUILD', 1) }}
extra:
channels:
- bokeh
- javascript
requirements:
build:
- python
- distribute
- setuptools
- gulp # in javascript channel
run:
# bokeh
- python
- numpy
- pandas
- ... | Use pytest-cov 1.8.1 from our anaconda user. | Use pytest-cov 1.8.1 from our anaconda user.
| YAML | bsd-3-clause | ptitjano/bokeh,ptitjano/bokeh,mindriot101/bokeh,philippjfr/bokeh,percyfal/bokeh,dennisobrien/bokeh,ericmjl/bokeh,jplourenco/bokeh,aiguofer/bokeh,saifrahmed/bokeh,azjps/bokeh,azjps/bokeh,mindriot101/bokeh,paultcochrane/bokeh,msarahan/bokeh,draperjames/bokeh,draperjames/bokeh,jplourenco/bokeh,Karel-van-de-Plassche/bokeh,... |
a9cfb7812aba4631863b201624415ef5053b98e4 | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: directory
path: content/blog
label: Posts
create: documents
match: "**/*"
new_doc_ext: md
- type: directory
path: content/tags
label: Tags
create: documents
match: "**/*"
exclude: index.md
new_doc_ext: ".m... | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: directory
path: content/blog
label: Posts
create: documents
match: "**/*"
new_doc_ext: ".md"
- type: directory
path: content/tags
label: Tags
create: documents
match: "**/*"
exclude: index.md
new_doc_ext: ... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | Narno/narno.com,Narno/narno.com |
56d55168d0bfb0094d1a647d8fa9fa4ad1693a24 | packages/to/toml-parser.yaml | packages/to/toml-parser.yaml | homepage: https://github.com/glguy/toml-parser
changelog-type: markdown
hash: fd731b1a7f192710d3ffd37eab0695a05bd1d1d20a0c377dcac61e2bb78d1f8b
test-bench-deps: {}
maintainer: emertens@gmail.com
synopsis: Parser for the TOML configuration language
changelog: ! '# Revision history for toml-parser
## 0.1.0.0 -- YYYY-... | homepage: https://github.com/glguy/toml-parser
changelog-type: markdown
hash: 0e039e86377a1ef10d1339aef386fd7dcbef927f20cdb1ed0fc700f84cbebb70
test-bench-deps: {}
maintainer: emertens@gmail.com
synopsis: Parser for the TOML configuration language
changelog: ! '# Revision history for toml-parser
## 0.1.0.0 -- YYYY-... | Update from Hackage at 2018-11-13T03:27:15Z | Update from Hackage at 2018-11-13T03:27:15Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3028fdcb19fbd4a0f6c7ff91238e15a7dfa76551 | .github/workflows/update-transitive-dependenies.yaml | .github/workflows/update-transitive-dependenies.yaml | name: Update Transitive Dependencies
on:
schedule:
- cron: '15 11 * * 1' # weekly, on Monday morning (UTC)
jobs:
update:
name: Tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- name: remove and re-create... | name: Update Transitive Dependencies
on:
schedule:
- cron: '15 11 * * 0' # weekly, on Sunday morning (UTC)
jobs:
update:
name: Tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- name: remove and re-create... | Update our auto update action | Update our auto update action
The latest version of create-pull-request should fix some errors we're
seeing in our action runs now.
I also moved this to Sunday to decrease the likelihood of conflicts with
dependabot updates.
| YAML | mit | ilios/common,ilios/common |
b9559cdd7c7448d00b18ddddf135d08bf574b6c2 | config/development.dist.yml | config/development.dist.yml | application:
title: OpenCFP
url: http://localhost
email: contact@openconf.com
eventurl: http://localhost
enddate: Oct. 14th, 2016
show_submission_count: false
airport: MIA
arrival: 2014-10-26
departure: 2014-10-31
secure_ssl: false
api:
enabled: true
cache:
enabled: false
database:
host: 12... | application:
title: OpenCFP
url: http://localhost
email: contact@openconf.com
eventurl: http://localhost
enddate: Oct. 14th, 2016
show_submission_count: false
airport: MIA
arrival: 2014-10-26
departure: 2014-10-31
secure_ssl: false
api:
enabled: true
cache:
enabled: false
database:
host: 12... | Update default dev config to match phinx | Update default dev config to match phinx
| YAML | mit | PHPBenelux/opencfp,brynary/opencfp,monoku/opencfp,OpenWestConference/opencfp,DevOpsDaysChicago/opencfp,PHPBenelux/opencfp,PHPBenelux/opencfp,opencfp/opencfp,phphants/opencfp,DallasPHP/opencfp,opencfp/opencfp,brynary/opencfp,monoku/opencfp,sunshinephp/opencfp,opencfp/opencfp,GrUSP/opencfp,noahd1/opencfp,MidwestPHP/openc... |
01aa90cbd8544820178d933fdbb5aab4f24e38aa | packages/wo/word-compat.yaml | packages/wo/word-compat.yaml | homepage: ''
changelog-type: markdown
hash: c881977321de67d6f1d0cafe805e66d771a6e0614cafaa2104391f44cf4afd21
test-bench-deps: {}
maintainer: fumiexcel@gmail.com
synopsis: Compatibility shim for the Int/Word internal change in GHC 9.2
changelog: |
# Revision history for word-compat
## 0.0.2
* Fixed a bug where b... | homepage: ''
changelog-type: markdown
hash: 04ae1d01396fcc0f7fdb4c0db7c0caef5bc04b086438e464122a62090fcdc598
test-bench-deps:
word-compat: -any
base: -any
maintainer: fumiexcel@gmail.com
synopsis: Compatibility shim for the Int/Word internal change in GHC 9.2
changelog: |
# Revision history for word-compat
## ... | Update from Hackage at 2022-06-26T13:48:18Z | Update from Hackage at 2022-06-26T13:48:18Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c6906da0ddbe1001d1796cfcf2660784722b9f3d | pipelines/infrastructure.yml | pipelines/infrastructure.yml | groups:
- name: infrastructure
jobs:
- deploy-mega-ci-bosh
resources:
- name: deployments-runtime
type: git
source:
branch: master
private_key: {{private_key}}
uri: git@github.com:cloudfoundry/deployments-runtime.git
- name: mega-test
type: git
source:
branch: master
private_key: {{priv... | groups:
- name: infrastructure
jobs:
- deploy-mega-ci-bosh
resources:
- name: deployments-runtime
type: git
source:
branch: master
private_key: {{private_key}}
uri: git@github.com:cloudfoundry/deployments-runtime.git
- name: mega-ci
type: git
source:
branch: master
private_key: {{privat... | Deploy bosh now points to merged mega-ci | Deploy bosh now points to merged mega-ci
[#100857256]
Signed-off-by: Joseph Palermo <e623ceb69d4eba908c7aa121d8a6c4c407e290f1@pivotal.io>
| YAML | apache-2.0 | cloudfoundry/mega-ci,cloudfoundry/mega-ci |
5eafb500bcd262dbb946dcc2623a8d402242d88d | .gitlab-ci.yml | .gitlab-ci.yml | image: "ubuntu:18.04"
variables:
GIT_STRATEGY: "pull"
GIT_SUBMODULE_STRATEGY: "recursive"
GIT_CHECKOUT: "true"
before_script:
- |
apt-get update -qq &&
apt-get install -qq \
bison \
build-essential \
curl \
dosfstools \
flex \
fuse \
genisoimage \... | image: "ubuntu:18.04"
variables:
GIT_STRATEGY: "pull"
GIT_SUBMODULE_STRATEGY: "recursive"
GIT_CHECKOUT: "true"
before_script:
- |
apt-get update -qq &&
apt-get install -qq \
bison \
build-essential \
curl \
dosfstools \
flex \
fuse \
genisoimage \... | Install the exact versions required in CI | Install the exact versions required in CI
The requirements are checked in mk/depends.mk to be the exact versions
specified here. This way we don't run into version mismatches in CI.
| YAML | mit | redox-os/redox |
8f93625600dc38481e46d7f2c33efe5ba2b526c1 | environment.yml | environment.yml | name: oddt_env
channels:
- mwojcikowski
- rdkit
dependencies:
- python=2
- numpydoc
- numpy>=1.8
- scipy>=0.13.0
- scikit-learn>=0.13.0
- ffnet>=0.7.1
- joblib>=0.8
- networkx>=1.3
| name: oddt_env
channels:
- mwojcikowski
- rdkit
dependencies:
- python=2
- numpydoc
- numpy>=1.8
- scipy>=0.13.0
- scikit-learn>=0.13.0
- ffnet>=0.7.1
- joblib>=0.8
- networkx>=1.3
- rdkit
- openbabel
| Add OpenBabel and RDKit to RTFD conda env | Add OpenBabel and RDKit to RTFD conda env
| YAML | bsd-3-clause | oddt/oddt,oddt/oddt,mkukielka/oddt,mkukielka/oddt |
e4df457bf74551409903d7326798d4c2414f55cf | packages/qt/qtah-examples.yaml | packages/qt/qtah-examples.yaml | homepage: http://khumba.net/projects/qtah
changelog-type: ''
hash: d36bcaedfb2eea8d1d80fdc6e4bd7743323cf127ada9cf5fffae3467ebb50e68
test-bench-deps: {}
maintainer: Bryan Gardiner <bog@khumba.net>
synopsis: Example programs for Qtah Qt bindings
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
base: ! '>=4 &... | homepage: http://khumba.net/projects/qtah
changelog-type: ''
hash: 420f174011325dbaed85829964413c02dd17abb78f86120fe41001385db1dabd
test-bench-deps: {}
maintainer: Bryan Gardiner <bog@khumba.net>
synopsis: Example programs for Qtah Qt bindings
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
base: ! '>=4 &... | Update from Hackage at 2016-12-17T07:16:01Z | Update from Hackage at 2016-12-17T07:16:01Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
283e686894f5793d7586f3ef269c9f49c1616806 | setup.yml | setup.yml | ---
# Set up the system first with the following, with the hosts line (and file!) updated accordingly:
# ansible-playbook -c paramiko -i hosts setup.yml --ask-pass --sudo
- hosts: all
sudo: yes
user: "{{ ansible_ssh_user }}"
vars_prompt:
- name: new_password
prompt: "Enter new password"
private: ... | ---
# Set up the system first with the following, with the hosts line (and file!) updated accordingly:
# ansible-playbook -c paramiko -i hosts setup.yml --ask-pass --sudo
- hosts: all
sudo: yes
user: "{{ ansible_ssh_user }}"
vars_prompt:
- name: new_password
prompt: "Enter new password"
private: ... | Expand file system before passwd change | Expand file system before passwd change
| YAML | apache-2.0 | tkurki/marinepi-provisioning,hkapanen/sailpi |
168b2032312750c2f5f7150b94033788b3198cd1 | crowdin.yml | crowdin.yml | files:
- source: /occurrence-mail/src/main/resources/email/subjects/*.properties
ignore:
- /occurrence-mail/src/main/resources/email/subjects/*_??.properties
translation: /occurrence-mail/src/main/resources/email/subjects/%file_name%_%two_letters_code%.properties
- source: /occurrence-mail/src/main/re... | files:
- source: /occurrence-mail/src/main/resources/email/subjects/*.properties
ignore:
- /occurrence-mail/src/main/resources/email/subjects/*_??.properties
translation: /occurrence-mail/src/main/resources/email/subjects/%file_name%_%two_letters_code%.properties
languages_mapping:
two_letters... | Make language mapping explicit, rather than storing only in Crowdin. | Make language mapping explicit, rather than storing only in Crowdin.
| YAML | apache-2.0 | gbif/occurrence,gbif/occurrence,gbif/occurrence |
0228239cb35d5bc67120f00f3a889e0cd3f68520 | docker/docker-compose.yml | docker/docker-compose.yml | version: '2'
services:
eureka:
build: ../microservice-demo/microservice-demo-eureka-server
ports:
- "8761:8761"
customer:
build: ../microservice-demo/microservice-demo-customer
links:
- eureka
catalog:
build: ../microservice-demo/microservice-demo-catalog
links:
- eureka
... | version: '3'
services:
eureka:
build: ../microservice-demo/microservice-demo-eureka-server
ports:
- "8761:8761"
customer:
build: ../microservice-demo/microservice-demo-customer
links:
- eureka
catalog:
build: ../microservice-demo/microservice-demo-catalog
links:
- eureka
... | Update to Docker Compose 3 | Update to Docker Compose 3
| YAML | apache-2.0 | ewolff/microservice,ewolff/microservice,ewolff/microservice,ewolff/microservice |
4219d6fd9060241be4d0392f67fa24b6dcb94c1e | .github/dependabot.yml | .github/dependabot.yml | version: 2
updates:
- package-ecosystem: composer
directory: "/"
versioning-strategy: increase-if-necessary
schedule:
interval: daily
time: '04:00'
open-pull-requests-limit: 99
reviewers:
- core23
assignees:
- core23
labels:
- dependency
| version: 2
updates:
- package-ecosystem: composer
directory: "/"
versioning-strategy: increase-if-necessary
schedule:
interval: daily
time: '04:00'
open-pull-requests-limit: 10
reviewers:
- core23
assignees:
- core23
labels:
- dependency
- package-ecosystem: github-actions
directory: "/"
... | Add auto-update for GitHub Actions | Add auto-update for GitHub Actions | YAML | mit | core23/DompdfBundle |
73cb59fc494bb5e61c9648ec6fb86a168e56dedf | config/sidekiq.yml | config/sidekiq.yml | ---
:verbose: true
:concurrency: 2
:logfile: ./log/sidekiq.json.log
:queues:
- content_store_high # Deprecated, to be removed with PresentedContentStoreWorker
- content_store_low # Deprecated, to be removed with PresentedContentStoreWorker
- downstream_high
- downstream_low
- dependency_resolution
- experi... | ---
:verbose: true
:concurrency: 2
:logfile: ./log/sidekiq.json.log
:queues:
- content_store_high # Deprecated, to be removed with PresentedContentStoreWorker
- content_store_low # Deprecated, to be removed with PresentedContentStoreWorker
- downstream_high
- dependency_resolution
- downstream_low
- experi... | Move downstream_low job below dependency_resolution | Move downstream_low job below dependency_resolution
Dependency resolution generates downsteam_low jobs, which means that we
can queue more of the downsteam_low jobs when we run the
dependency_resolution job first, therefore we can reduce the number of
duplicates in that queue.
| YAML | mit | alphagov/publishing-api,alphagov/publishing-api |
a4a758f9bec62273c6a03ac4aa793cfe1520f140 | config/locales/medialinks.en.yml | config/locales/medialinks.en.yml | de:
medialinks:
edit: "Edit Previous Talk"
new: "Add Previous Talk"
delete: "Delete previous talk"
index: "Previous Talks"
show: "Show Previous Talks"
medialink_description: "Here you can add examples of your previous talks, panel discussions, TV shows or similar talking situations.
It would b... | en:
medialinks:
edit: "Edit Previous Talk"
new: "Add Previous Talk"
delete: "Delete previous talk"
index: "Previous Talks"
show: "Show Previous Talks"
medialink_description: "Here you can add examples of your previous talks, panel discussions, TV shows or similar talking situations.
It would b... | Fix locale in medialinks yml file | Fix locale in medialinks yml file
| YAML | mit | rubymonsters/speakerinnen_liste,rubymonsters/speakerinnen_liste,rubymonsters/speakerinnen_liste |
0f3e4941c19cf5634a3eef2186a5b10e0f43cbfd | .gitlab-ci.yml | .gitlab-ci.yml | image: felipelavratti/ubuntu-buildessentials-scons:16.04
stages:
- build
job1:
stage: build
script:
- cd dependencies && ./setup-cpputest.sh && cd ../
- scons -Q ./qf_demo_tests/build/qf_demo_dev_test
- ./qf_demo_tests/build/qf_demo_dev_test -v -c
- scons -Q coverage_report
| image: felipelavratti/ubuntu-buildessentials-scons:16.04
stages:
- build
build:
stage: build
script:
- cd dependencies && ./setup-cpputest.sh && cd ../
- scons -Q ./qf_demo_tests/build/qf_demo_dev_test
- ./qf_demo_tests/build/qf_demo_dev_test -v -c
- scons -Q coverage_report
| Update CI and build rules | Update CI and build rules
| YAML | mit | flplv/reacto,flplv/reacto,felipe-lavratti/reacto,felipe-lavratti/reacto,felipe-lavratti/reacto,flplv/reacto |
573f7b4832a5e36515c86e8fb1726e5d56f7eb49 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2
matrix:
include:
- rvm: 2.1
env: "RAILS_VERSION=4.1.8"
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
matrix:
- "RAILS_VERSION=4.1.8"
- "RAILS_VERSION=4.2.1"
notifications:
email:
recipients:
- "ul-dlt-hydra@lists.psu.ed... | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2
matrix:
include:
- rvm: 2.1
env: "RAILS_VERSION=4.2.1"
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
matrix:
- "RAILS_VERSION=4.1.10"
- "RAILS_VERSION=4.2.1"
notifications:
email:
recipients:
- "ul-dlt-hydra@lists.psu.e... | Update the test matrix to the latest versions of rails. | Update the test matrix to the latest versions of rails.
| YAML | apache-2.0 | samvera/hyrax,samvera/hyrax,samvera/hyrax,samvera/hyrax |
b8d5955260a1ec561ac151175225a2d1474ad201 | playbooks/pre-run-docker.yml | playbooks/pre-run-docker.yml | ---
- hosts: all
vars:
docker_group: docker
tasks:
# until docker-install role on redhat distros is fixed by:
# https://review.openstack.org/#/c/634934
- name: create docker group
become: true
group:
name: "{{ docker_group }}"
system: true
- name: Add user to docke... | ---
- hosts: all
vars:
docker_group: docker
tasks:
# until docker-install role on redhat distros is fixed by:
# https://review.openstack.org/#/c/634934
- name: create docker group
become: true
group:
name: "{{ docker_group }}"
system: true
- name: Add user to docke... | Use ensure-docker instead of install-docker role | Use ensure-docker instead of install-docker role
Install-docker role fails and tells it to switch to ensure-docker.
Doing the same fixes the issue.
Change-Id: I95ac9ccafa6eac2531b605926625feba10a9f52a
Signed-off-by: Chandan Kumar (raukadah) <37614c4f126be5146599b9d19fe2ba37ae0ea495@redhat.com>
| YAML | apache-2.0 | rdo-infra/ci-config,rdo-infra/ci-config,redhat-openstack/rdo-infra,redhat-openstack/rdo-infra,rdo-infra/ci-config,redhat-openstack/rdo-infra,redhat-openstack/rdo-infra,rdo-infra/ci-config |
dfcf0113922ffa9883d2c5707b204de4271856bc | .gitlab-ci.yml | .gitlab-ci.yml | image: node:8.5
cache:
paths:
- node_modules/
- public/content
- ~/.yarn-cache
stages:
- test
- deploy
test:
stage: test
script:
- yarn install
- npm run test-with-coverage
deploy_production:
stage: deploy
script:
- apt-get install -y gconf-service libasound2 libatk1.0-0 libc6 ... | image: node:8.5
cache:
paths:
- node_modules/
- public/content
- ~/.yarn-cache
stages:
- test
- deploy
test:
stage: test
script:
- yarn install
- npm run test-with-coverage
deploy_production:
stage: deploy
script:
- sudo apt-get install gconf-service libasound2 libatk1.0-0 libc... | Revert "Fix deploy installation extra packages..." | Revert "Fix deploy installation extra packages..."
This reverts commit f9f7f86060742167dad5bddf04a13e2c44380681.
| YAML | mit | reality-scheveningen/reality-website,reality-scheveningen/reality-website |
815e7802bc833c88ccbfb7472a7a019b2db979a7 | .gitlab-ci.yml | .gitlab-ci.yml |
stages:
- build
- unit_test
- functional_test
build_job:
stage: build
artifacts:
paths:
- build/bin/
- build/test/
expire_in: 3d
script:
- ./waf configure clean build
only:
- master
unit_test_job:
stage: unit_test
script:
- ./waf test
dependencies:
- build_job
... |
stages:
- build
- unit_test
- functional_test
build_job:
stage: build
artifacts:
paths:
- build/bin/
- build/test/
expire_in: 3d
script:
- ./waf configure clean build
only:
- master
unit_test_job:
stage: unit_test
script:
- ./waf test
dependencies:
- build_job
... | Remove hello world from CI | Remove hello world from CI
| YAML | mit | AgalmicVentures/Werk,AgalmicVentures/Werk |
a9211003e0a409eda6247057a443d71dec4978f1 | .gitlab-ci.yml | .gitlab-ci.yml | # Change pip's cache directory to be inside the project directory since we can
# only cache local items.
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache"
Discord:
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/python/tags/
image: python:3.7.0
# Pip'... | # Change pip's cache directory to be inside the project directory since we can
# only cache local items.
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache"
Discord:
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/python/tags/
image: python:3.7.0
# Pip'... | Add Telegram to Gitlab CI configuration | Add Telegram to Gitlab CI configuration
| YAML | mit | Harmon758/Harmonbot,Harmon758/Harmonbot |
a96304174f3c86299792187b627aa871880d579b | .travis.yml | .travis.yml | before_script:
- "bundle exec rake test_app"
script: "DISPLAY=:99.0 bundle exec rspec spec"
notifications:
email:
- jdyer@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- master
rvm:
- 1.8.7
- 1.9.3
- ree
| before_script:
- "bundle exec rake test_app"
script: "DISPLAY=:99.0 bundle exec rspec spec"
notifications:
email:
- jdyer@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- master
rvm:
- 1.9.3
- 2.0.0
| Build against Ruby 1.9.3 + now | Build against Ruby 1.9.3 + now | YAML | bsd-3-clause | bibisreebi/spree_wishlist,mcsweeneys/solidus_wishlist,anthonyto/spree_wishlist,deseretbook/solidus_wishlist,mcsweeneys/solidus_wishlist,Hates/spree_wishlist,anthonyto/spree_wishlist,anthonyto/spree_wishlist,spree-contrib/spree_wishlist,nishant-cyro/spree_wishlist,mcsweeneys/solidus_wishlist,deseretbook/solidus_wishlist... |
b9e00b4b20881ccca4c2e1984b15d9a31cfda55b | .gitlab-ci.yml | .gitlab-ci.yml | image: "python:3.8"
before_script:
- pip install invoke
- pip install pelican[Markdown]
build:
script: invoke build
stage: build | image: "python:3.8"
before_script:
- pip install invoke
- pip install pelican[Markdown]
build:
script: invoke build
stage: build
artifacts:
name : "rcenvironment.de-$CI_COMMIT_REF_NAME"
paths:
- output/
expire_in: 1 week | Define rendered website as downloadable artifact | Define rendered website as downloadable artifact
| YAML | cc0-1.0 | DLR-SC/rce-website,DLR-SC/rce-website,DLR-SC/rce-website,DLR-SC/rce-website,DLR-SC/rce-website |
f0a541ab7ea9790f374844c373d38d449bfc992d | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
| sudo: required
before_install: gem update --system
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
| Use latest Rubygems in Travis | Use latest Rubygems in Travis
A bug in Rubgems < 2.6.9 prevents the rainbow gem from being installed.
See: sickill/rainbow#44
| YAML | mit | mmozuras/pronto-haml |
18cbaee8c6e13ec6bb9016d84ec050d8e773323a | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- php /composer.phar install --no-progress --no-scripts
- cp app/config/parameters.yml.dist app/config/parameters.yml
run_tests:
image: php:7.1
script:
- SYMFONY_DEPRECATIONS_HELPER=weak bin/phpunit -c app/
stage: test
tags:
- php71
- docker
code_styles:
image: php:7.1
scrip... | stages:
- test
before_script:
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --no-scripts --quiet --ignore-platform-reqs
- cp app/config/parameters.yml.dist app/config/parameters.yml
run_tests:
image: sumocoders/framework-php71:latest
script:
- SYMFONY_DEPRECATIONS_HELP... | Test with our own images | Test with our own images
| YAML | mit | sumocoders/Framework,jonasdekeukelaere/Framework,sumocoders/Framework,jonasdekeukelaere/Framework,sumocoders/Framework,jonasdekeukelaere/Framework,sumocoders/Framework,jonasdekeukelaere/Framework |
e2374f4dea14b7040284ff45a37f48ed5d3a86a8 | .gitlab-ci.yml | .gitlab-ci.yml | build_android:
stage: build
script:
- ./fetch-keystore.sh && ./build_android.sh
tags:
- android
only:
- master
deploy_android_alpha:
stage: deploy
script:
- TARGET=publishRelease ./fetch-keystore.sh && ./build_android.sh
tags:
- android
only:
- android-alpha
build_ios:
stage:... | build_android:
stage: build
script:
- ./fetch-keystore.sh && ./build_android.sh
tags:
- android
only:
- master
deploy_android_alpha:
stage: deploy
script:
- TARGET=publishRelease ./fetch-keystore.sh && ./build_android.sh
tags:
- android
only:
- android-alpha
#build_ios:
# stag... | Disable iOS builds for now | Disable iOS builds for now
| YAML | agpl-3.0 | fkoester/tachograph-app,fkoester/tachograph-app,fkoester/tachograph-app,fkoester/tachograph-app |
f659f2bd7e7ccec441d13745c846e4e096c4b0a2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
before_install:
- gpg --keyserver hkp://keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A && gpg -a --export CD2EFD2A | sudo apt-key add -
- echo "deb http://repo.percona.com/apt `lsb_release -cs` main" | sudo tee -a /etc/apt/sources.list
- sudo apt-get update -qq
- sudo apt-get install... | language: ruby
rvm:
- 2.1.2
before_install:
- gpg --keyserver hkp://keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A && gpg -a --export CD2EFD2A | sudo apt-key add -
- echo "deb http://repo.percona.com/apt `lsb_release -cs` main" | sudo tee -a /etc/apt/sources.list
- sudo apt-get update -qq
- sudo apt-get install... | Fix specs when there is no test db defined | Fix specs when there is no test db defined
| YAML | mit | sdonataccio-handy/departure,redbooth/percona_migrator,sdonataccio-handy/departure,redbooth/departure,redbooth/percona_migrator,redbooth/departure |
42c1052f5eb3cdfb01e4daf957e30ae07a76a9ca | .gitlab-ci.yml | .gitlab-ci.yml | make_doc:
stage: build
image: ubuntu:17.10
script:
- "sh CI/make_siconos_doc.sh"
artifacts:
paths:
- build/docs/build/html
only:
- master
pages:
image: python:alpine
script:
- pwd
- ls
- mv build/docs/build/html public
artifacts:
paths:
- public
dependencies:
- make_d... | make_doc:
stage: build
image: ubuntu:18.04
script:
- "sh CI/make_siconos_doc.sh"
artifacts:
paths:
- build/docs/build/html
only:
- master
pages:
image: python:alpine
script:
- pwd
- ls
- mv build/docs/build/html public
artifacts:
paths:
- public
dependencies:
- make_d... | Test siconos doc, mirroring gitlab-github by Roger | Test siconos doc, mirroring gitlab-github by Roger
| YAML | apache-2.0 | siconos/siconos,radarsat1/siconos,siconos/siconos,radarsat1/siconos,siconos/siconos,radarsat1/siconos,radarsat1/siconos,radarsat1/siconos,siconos/siconos |
ba0d7eda376c9fad3598035cbcf8e137f89c260f | .travis.yml | .travis.yml | language: cpp
os:
- linux
- osx
osx_image: xcode8.2
# Use Ubuntu 14.04 LTS (Trusty) as the Linux testing environment.
sudo: required
dist: trusty
# We check out glslang at a specific revision to avoid test output mismatches
env:
- GLSLANG_REV=e4e8f7b7a31a751be285b64741465b769f5f146f
before_script:
- if [[ "$... | language: cpp
os:
- linux
- osx
osx_image: xcode8.2
# Use Ubuntu 14.04 LTS (Trusty) as the Linux testing environment.
sudo: required
dist: trusty
# We check out glslang at a specific revision to avoid test output mismatches
env:
- GLSLANG_REV=19ea56899cdcab0f480d257fcea100ad2160e833
before_script:
- if [[ "$... | Update Travis glslang revision to latest. | Update Travis glslang revision to latest.
| YAML | apache-2.0 | KhronosGroup/SPIRV-Cross,h3xl3r/SPIRV-Cross,KhronosGroup/SPIRV-Cross,h3xl3r/SPIRV-Cross,h3xl3r/SPIRV-Cross,KhronosGroup/SPIRV-Cross,KhronosGroup/SPIRV-Cross,KhronosGroup/SPIRV-Cross,h3xl3r/SPIRV-Cross,h3xl3r/SPIRV-Cross,KhronosGroup/SPIRV-Cross |
4bda5bfe2d1129fc7c29b5be90a953257a683431 | .gitlab-ci.yml | .gitlab-ci.yml | variables:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ""
POSTGRES_HOST_AUTH_METHOD: 'trust'
SP_VERSION: 11-10-stable
stages:
- test
services:
- postgres:latest
cache:
key: "$CI_PROJECT_NAME"
paths:
- $HOME/.cache/pip
include:
- project: thelabnyc/gitlab-ci-templates
... | variables:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ""
POSTGRES_HOST_AUTH_METHOD: 'trust'
stages:
- test
services:
- postgres:latest
cache:
key: "$CI_PROJECT_NAME"
paths:
- $HOME/.cache/pip
test_python37:
stage: test
tags:
- django-oscar
image: python:3.7
scri... | Remove SAST / DAST testing since it's never actionable and not worth the maintenence | Remove SAST / DAST testing since it's never actionable and not worth the maintenence
| YAML | isc | thelabnyc/django-oscar-api-checkout |
e92d25a3703a1f2173d914a9342c0c7b00447e18 | .gitlab-ci.yml | .gitlab-ci.yml | image: java:8-jdk
variables:
IMAGE_NAME: emcmongoose/darzee
IMAGE_TAG: ${DARZEE_VER}
stages:
- build_docker_image
- deploy
build_docker_image:
stage: build_docker_image
script:
- ./gradlew clean buildImage
release_to_docker_hub:
stage: deploy
script:
- docker login -u ${DOCKER_USER} -p ${DOC... |
variables:
IMAGE_NAME: emcmongoose/darzee
IMAGE_TAG: ${DARZEE_VER}
IMAGE_FILE_NAME: build/darzee.tar
stages:
- build
- deploy
create_dockerfile:
image: java:8-jdk
stage: build
script:
- ./gradlew clean createDockerfile
build_docker_image:
image: docker:stable
stage: build
script:
- doc... | Add usage of different images in gitlab CI. Images are depended on the stage. | Add usage of different images in gitlab CI. Images are depended on the stage.
| YAML | mit | emc-mongoose/console,emc-mongoose/console,emc-mongoose/console |
26164bd7651d469fb7a585c4061bc63678bee98f | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- test
- deploy
- post-deploy
test:
stage: test
only:
- tags
- master
artifacts:
name: test-${CI_COMMIT_REF_NAME}.log
untracked: true
when: on_failure
paths:
... | stages:
- test
- deploy
- post-deploy
test:
stage: test
only:
- tags
- master
artifacts:
name: test-${CI_COMMIT_REF_NAME}.log
untracked: true
when: on_failure
paths:
... | Remove repository mirror from CI | Remove repository mirror from CI
| YAML | apache-2.0 | smalldb/template-sloth |
d0db4c1081842775c3454fbe1750fb670031e525 | .gitlab-ci.yml | .gitlab-ci.yml | #
# Yet Another UserAgent Analyzer
# Copyright (C) 2013-2021 Niels Basjes
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required b... | #
# Yet Another UserAgent Analyzer
# Copyright (C) 2013-2021 Niels Basjes
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required b... | Update maven Docker tag to v3.8.2 | Update maven Docker tag to v3.8.2
| YAML | apache-2.0 | nielsbasjes/yauaa,nielsbasjes/yauaa,nielsbasjes/yauaa,nielsbasjes/yauaa |
0f9519f7413a818fbadc123a67a14026a8b4484e | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- test
trigger-ext-u:
stage: test
script:
- "curl -X POST -F token=$REPO_TOKEN -F ref=master -F variables[JOB_TYPE]=$JOB_TYPE -F variables[INITIATOR]=$GITLAB_USER_LOGIN -F variables[COMMIT]=$CI_COMMIT_SHORT_SHA -F variables[BRANCH]=$CI_COMMIT_REF_NAME $REPO_URL"
tags:
- docker
- ghidratest
... | stages:
- test
trigger-ext-u:
stage: test
script:
- "curl --with-ca-bundle=variables[CI_SERVER_TLS_CA_FILE] -X POST -F token=$REPO_TOKEN -F ref=master -F variables[JOB_TYPE]=$JOB_TYPE -F variables[INITIATOR]=$GITLAB_USER_LOGIN -F variables[COMMIT]=$CI_COMMIT_SHORT_SHA -F variables[BRANCH]=$CI_COMMIT_REF_NAME... | Use NeoForge CA certs for curl usage estabished by git-runner | Use NeoForge CA certs for curl usage estabished by git-runner | YAML | apache-2.0 | NationalSecurityAgency/ghidra,NationalSecurityAgency/ghidra,NationalSecurityAgency/ghidra,NationalSecurityAgency/ghidra,NationalSecurityAgency/ghidra,NationalSecurityAgency/ghidra,NationalSecurityAgency/ghidra |
028104febb32fa3fe9dc9c0bfe9f79f62f8084c8 | .gitlab-ci.yml | .gitlab-ci.yml | image: haskell:8.2
services:
- postgres:9.4
variables:
POSTGRES_DB: betty_test
POSTGRES_USER: betty
POSTGRES_PASSWORD: betty
cache:
untracked: true
paths:
- $(pwd)/.stack/
before_script:
- export STACK_ROOT=$(pwd)/.stack
- export PATH=${HOME}/.local/bin:$PATH
- apt-get update -qq && apt-get in... | image: haskell:8.2
services:
- postgres:9.4
variables:
POSTGRES_DB: betty_test
POSTGRES_USER: betty
POSTGRES_PASSWORD: betty
cache:
untracked: true
paths:
- $(pwd)/.stack/
before_script:
- export STACK_ROOT=$(pwd)/.stack
- apt-get update -qq && apt-get install -qq -y m4 libpq-dev make xz-utils
... | Use absolute path to stack binary in Gitlab CI. | Use absolute path to stack binary in Gitlab CI.
Unsure if setting up $PATH worked or not; don't want to speculate any
further.
| YAML | agpl-3.0 | sajith/betty-web |
f4186c1ab8ea0414a875247bfe59d9aa84bd6f9e | env/tacc/group_vars/galaxynodes.yml | env/tacc/group_vars/galaxynodes.yml | ---
# 500 GB why not
cvmfs_quota_limit: 512000
galaxynodes_group_authorized_key_users:
- name: g2test
authorized: "{{ galaxy_team_users }}"
- name: g2main
authorized: "{{ galaxy_team_users }}"
galaxynodes_group_packages:
- collectl
- lzo
- libcgroup-tools
| ---
# 500 GB why not
cvmfs_quota_limit: 512000
galaxynodes_group_authorized_key_users:
- name: g2test
authorized: "{{ galaxy_team_users }}"
- name: g2main
authorized: "{{ galaxy_team_users }}"
galaxynodes_group_packages:
- collectl
- lzo
- libcgroup-tools
# packages for older tools
- perl-Data-... | Install Data::Dumper perl module on nodes for older tools | Install Data::Dumper perl module on nodes for older tools
| YAML | mit | galaxyproject/infrastructure-playbook,galaxyproject/infrastructure-playbook |
44bcca0713e4cccd0fcc4f4e0058f9ea8f293554 | recipes/immutables/meta.yaml | recipes/immutables/meta.yaml | {% set name = "immutables" %}
{% set version = "0.5" %}
{% set hash_type = "sha256" %}
{% set hash_value = "57d17742fccec4c0466ab658053fab1a327df42241e7b1cab28e5b85e7066ac1" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.tar.gz'
url: https://pypi.io/package... | {% set name = "immutables" %}
{% set version = "0.5" %}
{% set hash_type = "sha256" %}
{% set hash_value = "57d17742fccec4c0466ab658053fab1a327df42241e7b1cab28e5b85e7066ac1" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.tar.gz'
url: https://pypi.io/package... | Apply compiler toolchain and fix license name | Apply compiler toolchain and fix license name | YAML | bsd-3-clause | synapticarbors/staged-recipes,Juanlu001/staged-recipes,johanneskoester/staged-recipes,jjhelmus/staged-recipes,pmlandwehr/staged-recipes,jjhelmus/staged-recipes,ceholden/staged-recipes,ocefpaf/staged-recipes,jochym/staged-recipes,mcs07/staged-recipes,kwilcox/staged-recipes,sodre/staged-recipes,cpaulik/staged-recipes,jak... |
2c320ae627d49f02f81e06e856061d13ae691801 | .github/workflows/deploy.yml | .github/workflows/deploy.yml | name: "Build and deploy"
on:
push:
branches:
- production
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
... | name: "Build and deploy"
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
... | Revert "Deploy only production branch" | Revert "Deploy only production branch"
This reverts commit 2f29006d21fbc131dafc00ff44911ee06a1788e4.
| YAML | apache-2.0 | jgarciao/linux-store-frontend,jgarciao/linux-store-frontend,jgarciao/linux-store-frontend |
24511ad1ff7610c582388ddda41b8558a9165157 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,15.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-ver... | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-ver... | Build with Node.js 16 on GitHub Actions. | Build with Node.js 16 on GitHub Actions.
| YAML | mit | bigeasy/destructible |
1baa1dd682ed98f9d45cd2492116759b15792cd5 | recipes/libconeangle/meta.yaml | recipes/libconeangle/meta.yaml | {% set name = "libconeangle" %}
{% set version = "0.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/kjelljorner/libconeangle/archive/v{{ version }}.tar.gz
sha256: 8045bce67e7c81485d165e36db59a9af4a9839aad5d419b171620e32922fd324
build:
skip: true # [win]
scr... | {% set name = "libconeangle" %}
{% set version = "0.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/kjelljorner/libconeangle/archive/v{{ version }}.tar.gz
sha256: 8045bce67e7c81485d165e36db59a9af4a9839aad5d419b171620e32922fd324
build:
skip: true # [win]
ski... | Fix recipe according to linter | Fix recipe according to linter
| YAML | bsd-3-clause | johanneskoester/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes |
07d5710fe98e5246a7b381cca3128d761148f082 | roles/docker/defaults/main.yml | roles/docker/defaults/main.yml | do_private_docker_registry: false
docker_lvm_backed_devicemapper: "{% if provider in ['gce', 'openstack', 'aws'] %} true {% else %} false {% endif %}"
## Refer to commentaries in ../templates/docker-storage-setup.conf.j2
## or `man lvcreate` for acceptable sizes, and their syntax
docker_lvm_data_volume_size: 40%FREE
... | do_private_docker_registry: false
docker_lvm_backed_devicemapper: "{% if provider in ['gce', 'openstack', 'aws'] %} true {% else %} false {% endif %}"
# Possible values: overlay, devicemapper
# Used with docker-storage-setup
docker_storage_driver: overlay
## Refer to commentaries in ../templates/docker-storage-setup.... | Add var for backend storage | Add var for backend storage
| YAML | apache-2.0 | abn/microservices-infrastructure,abn/microservices-infrastructure,KaGeN101/mantl,bitium/mantl,mantl/mantl,abn/microservices-infrastructure,phnmnl/mantl,ContainerSolutions/microservices-infrastructure,sehqlr/mantl,ContainerSolutions/microservices-infrastructure,CiscoCloud/microservices-infrastructure,CiscoCloud/mantl,ma... |
fde55045ef2acd2cc35d3bf657ecb20827655f2c | roles/jupyterhub/vars/main.yml | roles/jupyterhub/vars/main.yml | ---
jupyterhub_src_dir: /data/local/jupyterhub
| ---
jupyterhub_src_dir: /data/local/jupyterhub
jupyterhub_modules_dir: /data/local/jupyterhub/modules
| Define location for the extra modules for Jupyter. | Define location for the extra modules for Jupyter.
| YAML | apache-2.0 | nlesc-sherlock/emma,nlesc-sherlock/emma,nlesc-sherlock/emma |
03c09f448bf5949d0122156c97e998695e30fbf5 | ansible/webapp.yml | ansible/webapp.yml | ---
- name: Stand up application container host
hosts: web
sudo: true
user: ubuntu
pre_tasks:
- name: Install wget
apt: name=wget state=latest
- name: Install docker
shell: wget -qO- https://get.docker.com/ | sh
- name: Install pip
apt: name=python-pip
- name: Install docker py... | ---
- name: Stand up application container host
hosts: web
sudo: true
user: ubuntu
pre_tasks:
- name: Install wget
apt: name=wget state=latest
- name: Install docker
shell: wget -qO- https://get.docker.com/ | sh
- name: Install pip
apt: name=python-pip
- name: Install docker py... | Delete unused containers with ansible | [TASK] Delete unused containers with ansible
| YAML | isc | wilsonianb/dice-tower-top-ten,wilsonianb/dice-tower-top-ten,wilsonianb/dice-tower-top-ten |
05be734579ee3631bdc441178cd393c041346a9d | console/src/assets/configuration-examples/kubernetes/mongoose-base-service-2.yaml | console/src/assets/configuration-examples/kubernetes/mongoose-base-service-2.yaml | apiVersion: v1
kind: Service
metadata:
labels:
app: mongoose-base-2
name: mongoose-base-svc-2
spec:
ports:
# NOTE: Exposting ports
- name: nmongoose-base-port-1
port: 9991
targetPort: 9991
- name: nmongoose-base-port-2
port: 9992
targetPort: 9992
- name: nmongoose-base-... | apiVersion: v1
kind: Service
metadata:
labels:
app: mongoose-base-2
name: mongoose-base-svc-2
spec:
ports:
# NOTE: Exposting ports
- name: nmongoose-base-port-1
port: 9991
targetPort: 9991
- name: nmongoose-base-port-2
port: 9992
targetPort: 9992
- name: nmongoose-base-... | Fix intent within the second k8s service discription. | Fix intent within the second k8s service discription.
| YAML | mit | emc-mongoose/console,emc-mongoose/console,emc-mongoose/console |
9cc150f01f8c2f57b29bb074b2fc75b18416c9ce | cluster/addons/metadata-agent/stackdriver/metadata-agent-rbac.yaml | cluster/addons/metadata-agent/stackdriver/metadata-agent-rbac.yaml | apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: system:metadata-agent
labels:
kubernetes.io/cluster-service: "true"
addonmanager.kubernetes.io/mode: Reconcile
rules:
- apiGroups:
- ""
- "apps"
- "extensions"
resources:
- "*"
verbs:
- watch
- get
- list
---
apiVer... | apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: stackdriver:metadata-agent
labels:
kubernetes.io/cluster-service: "true"
addonmanager.kubernetes.io/mode: Reconcile
rules:
- apiGroups:
- ""
- "apps"
- "extensions"
resources:
- "*"
verbs:
- watch
- get
- list
---
a... | Remove 'system' prefix from Metadata Agent rbac configuration | Remove 'system' prefix from Metadata Agent rbac configuration
| YAML | apache-2.0 | kjvalencik/kubernetes,kjvalencik/kubernetes,kjvalencik/kubernetes,kjvalencik/kubernetes,kjvalencik/kubernetes,kjvalencik/kubernetes |
f94ff023e0126278691157db1ba68a403618ab9b | roles/keitaro/tasks/main.yml | roles/keitaro/tasks/main.yml | ---
- name: Prepare keitaro dir
file:
path={{ keitaro.path }}
state=directory
owner={{ os_user }}
group={{ os_user }}
mode=0777
- name: Download installer
tags: keitaro
get_url:
url=http://keitarotds.com/getfile/install
dest={{ keitaro.path }}/install.php
- name: Install Keitaro TDS
... | ---
- name: Prepare keitaro dir
file:
path={{ keitaro.path }}
state=directory
owner={{ os_user }}
group={{ os_user }}
mode=0777
- name: Download installer
tags: keitaro
get_url:
url=http://keitarotds.com/getfile/install
dest={{ keitaro.path }}/install.php
- name: Install Keitaro TDS
... | Fix for jinja2 temlate parsing error | Fix for jinja2 temlate parsing error
| YAML | mit | lda/centos_provision,lda/centos_provision |
5407c1b1b83bdfec64b9027a5ad0ca6b530d22a6 | roles/keitaro/tasks/main.yml | roles/keitaro/tasks/main.yml | ---
- name: Prepare keitaro dir
file:
path={{ keitaro.path }}
state=directory
owner={{ os_user }}
group={{ os_user }}
mode=0777
- name: Download installer
tags: keitaro
get_url:
url=http://keitarotds.com/getfile/install
dest={{ keitaro.path }}/install.php
- name: Install Keitaro TDS
... | ---
- name: Prepare keitaro dir
file:
path={{ keitaro.path }}
state=directory
owner={{ os_user }}
group={{ os_user }}
mode=0777
- name: Download installer
tags: keitaro
get_url:
url=http://keitarotds.com/getfile/install
dest={{ keitaro.path }}/install.php
- name: Install Keitaro TDS
... | Fix for jinja2 temlate parsing error | Fix for jinja2 temlate parsing error
| YAML | mit | keitarocorp/centos_provision,keitarocorp/centos_provision |
3030d15031c9854727a344564338ba15c3c4922b | packages/li/list-transformer.yaml | packages/li/list-transformer.yaml | homepage: https://github.com/Gabriel439/Haskell-List-Transformer-Library
changelog-type: ''
hash: e214728decb4844b1c6ea0e3243324cfc11ad6da5629d16f06b92f00b6a5bed0
test-bench-deps:
list-transformer: -any
base: -any
doctest: -any
maintainer: Gabriel439@gmail.com
synopsis: List monad transformer
changelog: ''
basic-... | homepage: https://github.com/Gabriel439/Haskell-List-Transformer-Library
changelog-type: ''
hash: 413a224742aa83ec3b4dbc744cad8b93e349cb21a9a354dc7dc73302744935d1
test-bench-deps:
list-transformer: -any
base: -any
doctest: -any
maintainer: Gabriel439@gmail.com
synopsis: List monad transformer
changelog: ''
basic-... | Update from Hackage at 2021-01-08T04:49:04Z | Update from Hackage at 2021-01-08T04:49:04Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7c44ef47ce36528908219cbecfd0992465ed455d | .github/workflows/run-checks.yml | .github/workflows/run-checks.yml | name: Run checks
on: [push, pull_request]
jobs:
tox:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
environment: ["py36", "py37", "py38", "flake8"]
include:
- environment: "py36"
python: "3.6"
- envi... | name: Run checks
on: [push, pull_request]
jobs:
tox:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
environment: ["py36", "py37", "py38", "py39", "flake8"]
include:
- environment: "py36"
python: "3.6"
... | Add Python 3.9 to GitHub workflow | Add Python 3.9 to GitHub workflow
| YAML | mit | hackebrot/pytest-cookies |
e9a5eb535dbe22263ac2871b6d87609ecff8d9db | packages/sy/sydtest-discover.yaml | packages/sy/sydtest-discover.yaml | homepage: https://github.com/NorfairKing/sydtest#readme
changelog-type: markdown
hash: c2fd2ceca6c47e15e0da065991150254719499a63d09b55abdf0727282009a1b
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: Automatic test suite discovery for sydtest
changelog: |
# [0.0.0.1] 2021-11-12
## Changed
* Made the exp... | homepage: https://github.com/NorfairKing/sydtest#readme
changelog-type: markdown
hash: 627c9c322a1ef61513948aa5b1880111543d2554d9d1cae7ebcd06a27449af5b
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: Automatic test suite discovery for sydtest
changelog: |
# Changelog
## [0.0.0.2] - 2022-08-05
### Change... | Update from Hackage at 2022-09-05T16:34:06Z | Update from Hackage at 2022-09-05T16:34:06Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7694f428dacc89cfd46af5491fcc730fabd91bac | ansible/roles/postgresql/tasks/install-pkg.yml | ansible/roles/postgresql/tasks/install-pkg.yml | # ____ _ ____ ___ _ ___ _
# | _ \ ___ ___| |_ __ _ _ __ ___/ ___| / _ \| | / / |_ __ _ ___| | _____
# | |_) / _ \/ __| __/ _` | '__/ _ \___ \| | | | | / /| __/ _` / __| |/ / __|
# | __/ (_) \__ \ || (_| | | | __/___) | |_| | |___ / / | || (_| \__ \ ... | # ____ _ ____ ___ _ ___ _
# | _ \ ___ ___| |_ __ _ _ __ ___/ ___| / _ \| | / / |_ __ _ ___| | _____
# | |_) / _ \/ __| __/ _` | '__/ _ \___ \| | | | | / /| __/ _` / __| |/ / __|
# | __/ (_) \__ \ || (_| | | | __/___) | |_| | |___ / / | || (_| \__ \ ... | Install python-psycopg2 for postgresql_* moduels | Install python-psycopg2 for postgresql_* moduels
| YAML | bsd-2-clause | azumakuniyuki/make-server,azumakuniyuki/make-server,azumakuniyuki/make-server,azumakuniyuki/make-server |
34f5f83005a4caae6ee3fc4ae34abf8e598e9277 | metadata/org.y20k.escapepod.yml | metadata/org.y20k.escapepod.yml | Categories:
- Multimedia
License: MIT
WebSite: https://github.com/y20k/escapepod/wiki
SourceCode: https://github.com/y20k/escapepod
IssueTracker: https://github.com/y20k/escapepod/issues
Changelog: https://github.com/y20k/escapepod/releases
AutoName: Escapepod
RepoType: git
Repo: https://github.com/y20k/escapepod
... | Categories:
- Multimedia
License: MIT
WebSite: https://github.com/y20k/escapepod/wiki
SourceCode: https://github.com/y20k/escapepod
IssueTracker: https://github.com/y20k/escapepod/issues
Changelog: https://github.com/y20k/escapepod/releases
AutoName: Escapepod
RepoType: git
Repo: https://github.com/y20k/escapepod
... | Update Escapepod to 0.7.3 (8) | Update Escapepod to 0.7.3 (8)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.