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 |
|---|---|---|---|---|---|---|---|---|---|
12f75cf3a79da49bf2d5f15ca48b19139f91c9a1 | .rubocop.yml | .rubocop.yml | inherit_from:
- '.rubocop_core.yml'
# Put your project-specifc Rubocop config here
Style/IndentationWidth:
Enabled: false
| inherit_from:
- '.rubocop_core.yml'
# Put your project-specifc Rubocop config here
Style/IndentationWidth:
Enabled: false
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/SymbolArray:
Enabled: false
Style/Lambda:
Enabled: false
| Configure Rubocop for Ruby 1.8 compatible style | Style: Configure Rubocop for Ruby 1.8 compatible style
| YAML | mit | jfelchner/ruby-progressbar,jfelchner/ruby-progressbar |
bca98de1a687dc255d90858cdbead01f059f6c9a | config/locales/enumerations.pt-BR.yml | config/locales/enumerations.pt-BR.yml | pt-BR:
enumerations:
week_days:
monday: 'Segunda-feira'
tuesday: 'Terça-feira'
wednesday: 'Quarta-feira'
thursday: 'Quinta-feira'
friday: 'Sexta-feira'
saturday: 'Sábado'
sunday: 'Domingo'
worker_kind:
pf: 'Pessoa física'
pj: 'Pessoa jurídica'
| pt-BR:
enumerations:
week_days:
monday: 'Segunda-feira'
tuesday: 'Terça-feira'
wednesday: 'Quarta-feira'
thursday: 'Quinta-feira'
friday: 'Sexta-feira'
saturday: 'Sábado'
sunday: 'Domingo'
worker_kind:
pf: 'Pessoa física'
pj: 'Pessoa jurídica'
points_k... | Move texto do enumeration de points kind para locale | Move texto do enumeration de points kind para locale
| YAML | mit | lucasrcdias/controle-pontos,lucasrcdias/controle-pontos,lucasrcdias/controle-pontos |
39d8b9a6c0cfcb6e690d475a1e5bf3b320b39f39 | .pyup.yml | .pyup.yml | # PyUp config
# https://pyup.io/docs/bot/config/
# Check dependencies in _only_ requirements-app, and open PRs with PyUp prefix.
search: False
schedule: "every week on sunday"
requirements:
- requirements-app.txt:
update: all
pin: True
- requirements-dev.txt:
update: False
pin: True
-... | # PyUp config
# https://pyup.io/docs/bot/config/
# Check dependencies in _only_ requirements-app, and open PRs with PyUp prefix.
search: False
schedule: "every week on sunday"
requirements:
- requirements.in:
update: all
pin: True
- requirements-dev.in:
update: False
pin: True
- requi... | Update PyUp configuration for pip-tools | Update PyUp configuration for pip-tools
| YAML | mit | alphagov/digitalmarketplace-admin-frontend,alphagov/digitalmarketplace-admin-frontend,alphagov/digitalmarketplace-admin-frontend,alphagov/digitalmarketplace-admin-frontend |
b0d33fdd03e5e1ebec40dc36d43c075af9180ed2 | .zuul.yml | .zuul.yml | ui: tape
browsers:
- name: chrome
version: 32..latest
# - name: safari
# version: latest
# - name: ie
# version: 9..latest
- name: firefox
version: 26..latest
server: ./test/server.js | ui: tape
browsers:
- name: chrome
version: 32..latest
# - name: safari
# version: latest
# - name: ie
# version: 9..latest
- name: firefox
version: 27..latest
server: ./test/server.js | Remove firefox 26 from testing | Remove firefox 26 from testing
| YAML | apache-2.0 | eightyeight/rtc-signaller,rtc-io/rtc-signaller |
2c211aa20fec597349401023fba82f2ccf18deb0 | .ci/buildkite/pipeline.template.yml | .ci/buildkite/pipeline.template.yml | steps:
-
name: ":fastlane: Test iOS"
command: .ci/scripts/test-ios
agents:
name: "$BUILDKITE_AGENT_META_DATA_NAME"
-
name: ":fastlane: Test iOS Extension"
command: .ci/scripts/test-ios-extension
agents:
name: "$BUILDKITE_AGENT_META_DATA_NAME"
-
type: "waiter"
-
name:... | steps:
# -
# name: ":fastlane: Test iOS"
# command: .ci/scripts/test-ios
# agents:
# name: "$BUILDKITE_AGENT_META_DATA_NAME"
# -
# name: ":fastlane: Test iOS Extension"
# command: .ci/scripts/test-ios-extension
# agents:
# name: "$BUILDKITE_AGENT_META_DATA_NAME"
# -
# type:... | Remove the extension tests from CI | [OPR-118]: Remove the extension tests from CI
Currently there are just a few too many annoying unit tests which fail. They all get run in the main iOS test suite - so, having them run 2, 3 or 4 times increases the likelihood that any one will fail.
| YAML | mit | cezarywojcik/Operations,blg-andreasbraun/ProcedureKit,ProcedureKit/ProcedureKit,blg-andreasbraun/Operations,ProcedureKit/ProcedureKit,ProcedureKit/ProcedureKit,blg-andreasbraun/Operations,danthorpe/Operations,cezarywojcik/Operations,cezarywojcik/Operations,danthorpe/Operations,danthorpe/Operations,blg-andreasbraun/Oper... |
f3007586ca52e6984ca083fb52b8b4634b0716e7 | .github/workflows/linux_mkspecs.yml | .github/workflows/linux_mkspecs.yml | name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/actio... | name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/actio... | Update Linux C++ make-specs to new version 3.0.0 | Update Linux C++ make-specs to new version 3.0.0 | YAML | bsd-3-clause | steinwurf/stub,steinwurf/stub |
08bc7f34be79b8531ee44f23f16fa00d686cfd58 | .github/workflows/linux_mkspecs.yml | .github/workflows/linux_mkspecs.yml | name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/actio... | name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/actio... | Update Linux C++ make-specs to new version 5.0.0 | Update Linux C++ make-specs to new version 5.0.0 | YAML | bsd-3-clause | steinwurf/recycle,steinwurf/recycle |
2b4707515bb084e5b24a29cb66aaacadf9a23197 | .github/workflows/documentation.yml | .github/workflows/documentation.yml | name: documentation
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
checks:
if: github.event_name != 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
... | name: documentation
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
checks:
if: github.event_name != 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
... | Make sure we install from npm | Make sure we install from npm
| YAML | mit | chartjs/Chart.smith.js |
2fd3ccfc4d745f2f19b4fdf87fadbb08dab23a24 | .github/workflows/macos_mkspecs.yml | .github/workflows/macos_mkspecs.yml | name: MacOS C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
MacOS-mkspecs:
uses: steinwurf/macos-mkspecs-action/.github/workflows/actio... | name: MacOS C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
MacOS-mkspecs:
uses: steinwurf/macos-mkspecs-action/.github/workflows/actio... | Update MacOS C++ make-specs to new version 4.0.0 | Update MacOS C++ make-specs to new version 4.0.0 | YAML | bsd-3-clause | steinwurf/recycle,steinwurf/recycle |
b5be647ce7579de7b4e2f711e4d19d2a9267a51c | azure-pipelines.yml | azure-pipelines.yml | # Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displa... | # Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displa... | Set up CI with Azure Pipelines | Set up CI with Azure Pipelines
[skip ci]
| YAML | mit | storybooks/storybook,storybooks/react-storybook,storybooks/storybook,storybooks/storybook,storybooks/storybook,storybooks/storybook,storybooks/storybook,kadirahq/react-storybook,storybooks/storybook,kadirahq/react-storybook,storybooks/react-storybook,storybooks/react-storybook,storybooks/react-storybook |
9892822ef3fc171ce2432d992ad7d1109c669588 | playbook/roles/varnish/tasks/main.yml | playbook/roles/varnish/tasks/main.yml | ---
#- include: "yum.yml"
- yum:
name={{ item }}
state=present
with_items:
- varnish
- template:
src=default.vcl.j2
dest=/etc/varnish/default.vcl
backup=yes
notify:
- restart varnish
- template:
src=varnish.params.j2
dest=/etc/varnish/varnish.params
backup=yes
notify:
... | ---
#- include: "yum.yml"
- yum:
name={{ item }}
state=present
with_items:
- varnish
- template:
src=default.vcl.j2
dest=/etc/varnish/default.vcl
backup=yes
notify:
- restart varnish
- template:
src=varnish.params.j2
dest=/etc/varnish/varnish.params
backup=yes
notify:
... | Fix varnish role with_items variable escaping. | Fix varnish role with_items variable escaping.
| YAML | mit | wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina |
a67c294828b53a0afcdcb16af317225e16b1d779 | tasks/aws_repo_ops.yml | tasks/aws_repo_ops.yml | ---
# Tag
- name: Invoke aws_repo.py to do the {{ aws_repo_op }} for {{ aws_image }}:{{ aws_tag }}
vars:
aws_account_id: "{{ ansible_aws_instance_params.account_id }}"
script: "../files/aws_repo_ops.py {{ aws_repo_op }}
{{ ansible_aws_region }}
{{ aws_account_id }}.dkr.ecr.{{ ansible_aws_region... | ---
# Tag
- name: Invoke aws_repo.py to do the {{ aws_repo_op }} for {{ aws_image }}:{{ aws_tag }}
vars:
aws_account_id: "{{ ansible_aws_instance_params.account_id }}"
script: "roles/ansible_aws/files/aws_repo_ops.py {{ aws_repo_op }}
{{ ansible_aws_region }}
{{ aws_account_id }}.dkr.ecr.{{ ans... | Clarify path since task can be invoked form other roles | Clarify path since task can be invoked form other roles
| YAML | bsd-2-clause | dieswaytoofast/ansible_aws |
a9b2240b5546ad499f56703e23430ba63697b8eb | ansible/roles/notebook_host/tasks/setup_system.yml | ansible/roles/notebook_host/tasks/setup_system.yml | - name: Disable auto-updates on Pouta
file: name=/etc/cron.daily/automatic_updates state=absent
# fixes for centos 7.6 image, roll everything back to 7.5
- name: Move existing yum repo
command: mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.back
- name: optionally lock operating system min... | - name: Disable auto-updates on Pouta
file: name=/etc/cron.daily/automatic_updates state=absent
# fixes for centos 7.6 image, roll everything back to 7.5
- name: optionally lock operating system minor version in repo config
yum_repository:
name: "{{ item.name }}"
baseurl: "http://vault.centos.org/7.5.1804/... | Rectify error when centos base repo is not present in pool_vms. | Rectify error when centos base repo is not present in pool_vms.
| YAML | mit | CSC-IT-Center-for-Science/pouta-blueprints,CSC-IT-Center-for-Science/pouta-blueprints,CSC-IT-Center-for-Science/pouta-blueprints,CSC-IT-Center-for-Science/pouta-blueprints |
8b84877d8557d7792cf199d9217c079bd28e36bb | install.yml | install.yml | ---
# Here we describe every software we may want to install
- hosts: all
vars:
oh_my_zsh_theme: agnoster
roles:
- role: osxc.packages
brew_taps:
- caskroom/fonts
- motemen/ghq
- peco/peco
brew_packages:
- cask
- ghq
- git
- go
- hub
- peco
- tig
- wget
... | ---
# Here we describe every software we may want to install
- hosts: all
vars:
oh_my_zsh_theme: agnoster
roles:
- role: osxc.packages
brew_taps:
- caskroom/fonts
- motemen/ghq
- peco/peco
brew_packages:
- brew-cask
- ghq
- git
- go
- hub
- peco
- tig
- wget... | Add brew-cask for brew upgrade | Add brew-cask for brew upgrade
| YAML | mit | nettabo/starter |
f1948df2cb6793ba232197979dae8e8a389aa722 | install.yml | install.yml | ---
- name: Playbook
hosts: localhost
gather_facts: no
connection: local
| ---
- name: Playbook
hosts: localhost
gather_facts: no
connection: local
tasks:
- name: "Install apt dependencies"
apt:
name: espeak
update_cache: yes | Add ansible dependencies for espeak | Add ansible dependencies for espeak
| YAML | mit | Ultchad/kalliope-espeak |
e0447e9e74a1ccd30fcf2996cb1b4a39aa6382f8 | conf/letsencrypt.yml | conf/letsencrypt.yml | ---
- hosts: [ dev, qa, prod ]
remote_user: ubuntu
become: yes
roles:
- role: thefinn93.letsencrypt
tags: letsencrypt
letsencrypt_email: "{{letsencrypt_email_addr}}"
letsencrypt_cert_domains: [ "{{server_name}}" ]
letsencrypt_renewal_command_args: '--renew-hook "systemctl restart ngin... | ---
- hosts: [ dev, qa, prod ]
remote_user: ubuntu
become: yes
roles:
- role: thefinn93.letsencrypt
tags: letsencrypt
letsencrypt_email: "{{letsencrypt_email_addr}}"
letsencrypt_cert_domains: [ "{{server_name}}" ]
letsencrypt_renewal_command_args: '--renew-hook "systemctl restart ngin... | Fix Nginx not restarting after cert renewal | Fix Nginx not restarting after cert renewal
| YAML | agpl-3.0 | Tradenomiliitto/tradenomiitti,Tradenomiliitto/tradenomiitti,Tradenomiliitto/tradenomiitti |
f6e9452eadfeaab0ff9277b837bd2d2021235ab6 | azure-pipelines.yml | azure-pipelines.yml | # ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- master
pr:
- master
pool:
vmImage: 'windows-latest'
variab... | # ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- master
pr:
- master
pool:
vmImage: 'windows-latest'
variab... | Remove tests from main build (they are moved to separate build) | Remove tests from main build (they are moved to separate build) | YAML | mit | leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,joinrpg/joinrpg-net |
c7c80d1595e750307b9a5e0457e18f5621dddf97 | .github/workflows/python-publish.yml | .github/workflows/python-publish.yml | name: Publish
on:
# Dependency to a testing workflow
workflow_run:
workflows: ["Testing"]
branches: [ master ]
types:
- completed
jobs:
publish:
# Prevent Publish from running on forks.
if: |
github.repository == 'tensorflow/similarity' &&
${{ github.event.workflow_run.conc... | name: Publish
on:
workflow_dispatch: # Allow manual triggers
jobs:
publish:
# Prevent Publish from running on forks.
if: |
github.ref == 'refs/heads/master' &&
github.repository == 'tensorflow/similarity'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set ... | Make master publish a manual event. | Make master publish a manual event.
| YAML | apache-2.0 | tensorflow/similarity |
9aeed1baaeb2eaa763474648f7feacfc56e4c8c3 | app/config/services.yml | app/config/services.yml | # Learn more about services, parameters and containers at
# http://symfony.com/doc/current/book/service_container.html
parameters:
# parameter_name: value
services:
# service_name:
# class: AppBundle\Directory\ClassName
# arguments: ["@another_service_name", "plain_value", "%parameter_name%"]
a... | # Learn more about services, parameters and containers at
# http://symfony.com/doc/current/book/service_container.html
parameters:
# parameter_name: value
services:
# service_name:
# class: AppBundle\Directory\ClassName
# arguments: ["@another_service_name", "plain_value", "%parameter_name%"]
a... | Use parameters.secret to generate short codes | Use parameters.secret to generate short codes
| YAML | mit | veloxy/purl,veloxy/purl,veloxy/purl |
5fed7f17d8a9e905bfe4e3ff4dcad21e797cbd4f | config/database.yml | config/database.yml | # SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
pool: 5
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
# Warning: The database defined as "test" will be erased and
# re-gene... | # SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
pool: 5
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
# Warning: The database defined as "test" will be erased and
# re-gene... | Add more to postgres pool for sneakers. | Add more to postgres pool for sneakers.
| YAML | apache-2.0 | pulibrary/pomegranate,pulibrary/pomegranate,pulibrary/pomegranate,pulibrary/pomegranate |
e9a01799f081841ba3c1448ed83b1cb42f9ee134 | exercises/scrabble-score/metadata.yml | exercises/scrabble-score/metadata.yml | ---
blurb: "Write a program that, given a word, computes the scrabble score for that word."
source: "Inspired by the Extreme Startup game"
source_url: "https://github.com/rchatley/extreme_startup"
| ---
blurb: "Given a word, compute the scrabble score for that word."
source: "Inspired by the Extreme Startup game"
source_url: "https://github.com/rchatley/extreme_startup"
| Remove "write a program" from scrabble-score exercise | Remove "write a program" from scrabble-score exercise
| YAML | mit | petertseng/x-common,jmluy/x-common,kgengler/x-common,petertseng/x-common,rpottsoh/x-common,Vankog/problem-specifications,jmluy/x-common,ErikSchierboom/x-common,ErikSchierboom/x-common,kgengler/x-common,jmluy/x-common,exercism/x-common,rpottsoh/x-common,exercism/x-common,Vankog/problem-specifications |
7ebfbb0253a8ec6be361c3a7388113df0e2276be | src/OpenConext/EngineBlockBundle/Resources/config/routing_api.yml | src/OpenConext/EngineBlockBundle/Resources/config/routing_api.yml | # This routing file is separated due to being hosted on a different sub-domain
# see app/config/routing.yml
api_heartbeat:
path: /
defaults:
_controller: engineblock.controller.api.heartbeat:itWorksAction
api_connections:
path: /api/connections
methods: [POST]
defaults:
... | # This routing file is separated due to being hosted on a different sub-domain
# see app/config/routing.yml
api_heartbeat:
path: /
defaults:
_controller: engineblock.controller.api.heartbeat:itWorksAction
api_connections:
path: /api/connections
methods: [POST]
defaults:
... | Add POST route for ARP API | Add POST route for ARP API
| YAML | apache-2.0 | thijskh/OpenConext-engineblock,thijskh/OpenConext-engineblock,thijskh/OpenConext-engineblock,thijskh/OpenConext-engineblock |
94496e7dfffdba1446df364dad1760faaa628b1a | examples/encrypted/service_group.yml | examples/encrypted/service_group.yml | apiVersion: v1
kind: Secret
metadata:
name: ring-key-20170816102049
labels:
habitat: "true"
ring-key: "true"
type: Opaque
data:
# base64-encoded ring key
ring-key: U1lNLVNFQy0xCnJpbmcta2V5LTIwMTcwODE2MTAyMDQ5CgpyTmtKbkJxZHppVWdmdnYweEVhaWpzMWxHUGZUdHBLdFg0L0xaMmpQcWdJPQ==
---
apiVersion: habitat.sh/v1
k... | apiVersion: v1
kind: Secret
metadata:
name: ring-key-20170816102049
labels:
habitat: "true"
ring-key: "true"
type: Opaque
data:
# base64-encoded ring key
ring-key: U1lNLVNFQy0xCnJpbmcta2V5LTIwMTcwODE2MTAyMDQ5CgpyTmtKbkJxZHppVWdmdnYweEVhaWpzMWxHUGZUdHBLdFg0L0xaMmpQcWdJPQo=
---
apiVersion: habitat.sh/v1
k... | Update encoded key in example to match name | Update encoded key in example to match name
| YAML | apache-2.0 | kinvolk/habitat-operator,kinvolk/habitat-operator |
a87946d9f91a753c1320c342dd6738de0deb266e | .pre-commit-config.yaml | .pre-commit-config.yaml | exclude: ^(tests/data/)
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: name-tests-test
- id: requirements-txt-... | exclude: ^(tests/data/)
repos:
- repo: https://github.com/psf/black
rev: 19.10b0
hooks:
- id: black
args: [-S, --line-length=79, --safe, --quiet]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.1.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
... | Update pre-commit hooks to latest versions | Update pre-commit hooks to latest versions | YAML | apache-2.0 | madmaze/pytesseract |
94748fc87665e793af840df61a4d7c7df785add7 | src/fifth_robot_pkgs/fifth_robot_2dnav/config/costmap/costmap_common_params.yaml | src/fifth_robot_pkgs/fifth_robot_2dnav/config/costmap/costmap_common_params.yaml | obstacle_range: 5.0
raytrace_range: 10.0
# footprint for KIT-C5 new model
footprint: [[0.20, -0.30], [0.20, 0.30], [-0.50, 0.30], [-0.50, -0.30]]
# inflation_radius: 0.5
cost_scaling_factor: 5.0
rigin_z: 0.0
z_resolution: 0.02
z_voxels: 0.02
publish_voxel_map: false
observation_sources: velodyne_sensor
velodyne_sens... | obstacle_range: 5.0
raytrace_range: 10.0
# footprint for KIT-C5 new model
footprint: [[0.20, -0.30], [0.20, 0.30], [-0.50, 0.30], [-0.50, -0.30]]
# inflation_radius: 0.5
cost_scaling_factor: 5.0
rigin_z: 0.0
z_resolution: 0.02
z_voxels: 0.02
publish_voxel_map: false
observation_sources: velodyne_sensor
velodyne_sens... | Modify param of minimum height of obstacles | Modify param of minimum height of obstacles
| YAML | bsd-3-clause | CIR-KIT/fifth_robot_pkg,CIR-KIT/fifth_robot_pkg,CIR-KIT/fifth_robot_pkg |
06a6607b513ae5adb91f0fd35e017c1d52c1b014 | packages/ar/arithmatic.yaml | packages/ar/arithmatic.yaml | homepage: ''
changelog-type: ''
hash: 23a6e4baeade5a2c9f17bebaea1c877cf9102632faa7bacc827f6ffb802bbb55
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: do things with numbers
changelog: ''
basic-deps:
base: <10000
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Alan Hawkins
latest: '0.1.0.2'
de... | homepage: ''
changelog-type: ''
hash: 51f7d45b4bd5972aa7c933fae8a8c73a6273fb563f5294baf95ac45058c4fef6
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: do things with numbers
changelog: ''
basic-deps:
base: <10000
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
author: Alan Hawkins
latest: ... | Update from Hackage at 2017-01-26T03:29:02Z | Update from Hackage at 2017-01-26T03:29:02Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
30e21a89289c30491b606be8f7bba75c8060adee | packages/fu/fuzzy-time.yaml | packages/fu/fuzzy-time.yaml | homepage: https://github.com/NorfairKing/fuzzy-time
changelog-type: markdown
hash: bd2eba0448be8c36441dbe34daa05b5825bc7afdc6252ffc3e9f731ee79e4d8e
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: ''
changelog: |
# Changelog
## [0.2.0.0] - 2021-11-21
### Changed
- Got rid of CPP: Now requires `time >=... | homepage: https://github.com/NorfairKing/fuzzy-time
changelog-type: markdown
hash: 769fc273e9c4be85c2bb1315e6e09326789a9873f83dc354c1eed888b7f1b27a
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: ''
changelog: |
# Changelog
## [0.2.0.2] - 2022-09-24
### Changed
* Compatibility with GHC 9.4
## [0.2... | Update from Hackage at 2022-09-24T18:50:55Z | Update from Hackage at 2022-09-24T18:50:55Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e1d13ca2ff65fbec2ebc7e8c471d9d94ad4d87bb | packages/ne/netlib-ffi.yaml | packages/ne/netlib-ffi.yaml | homepage: http://hub.darcs.net/thielema/netlib-ffi/
changelog-type: ''
hash: a7062e0d875724271ddd463a96de1658a466e8dc1219f22af107065fad27ae5f
test-bench-deps: {}
maintainer: Henning Thielemann <haskell@henning-thielemann.de>
synopsis: Helper modules for FFI to BLAS and LAPACK
changelog: ''
basic-deps:
base: ! '>=4.5 ... | homepage: http://hub.darcs.net/thielema/netlib-ffi/
changelog-type: ''
hash: d81fa5dadf88de069b56cceb5f7d1fb2cb4555ecf555686e1664ce87af85b229
test-bench-deps: {}
maintainer: Henning Thielemann <haskell@henning-thielemann.de>
synopsis: Helper modules for FFI to BLAS and LAPACK
changelog: ''
basic-deps:
base: ! '>=4.5 ... | Update from Hackage at 2019-01-05T22:51:26Z | Update from Hackage at 2019-01-05T22:51:26Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d5e8c03f2d6e38229c83ed3bb6df959ad846ca89 | packages/se/servant-oauth2-examples.yaml | packages/se/servant-oauth2-examples.yaml | homepage: https://github.com/tweag/servant-oauth2#readme
changelog-type: ''
hash: 27eaa9ab02c8489efff162f1feb8c92f9b5fcbda948d89d4e4488c46db3b8dbf
test-bench-deps: {}
maintainer: noon.vandersilk@tweag.io
synopsis: Example applications using this library in three ways.
changelog: ''
basic-deps:
shakespeare: -any
war... | homepage: https://github.com/tweag/servant-oauth2#readme
changelog-type: ''
hash: 6180e554ac720a3355f2aa9998a3384302b239d9bc294fc6c8784ee307fdec0d
test-bench-deps: {}
maintainer: noon.vandersilk@tweag.io
synopsis: Example applications using this library in three ways.
changelog: ''
basic-deps:
shakespeare: -any
war... | Update from Hackage at 2022-07-18T12:31:30Z | Update from Hackage at 2022-07-18T12:31:30Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0f637bb582eef938467c154fe1c2a090983af518 | .github/workflows/repo-check.yml | .github/workflows/repo-check.yml | name: repo-check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
copyright-check:
runs-on: ubuntu-latest
steps:
- name: checkout MFEM
uses: actions/checkout@v2
with:
path: MFEM
- name: copyright check
run: |
cd MFEM
... | name: repo-check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
copyright-check:
runs-on: ubuntu-latest
steps:
- name: checkout MFEM
uses: actions/checkout@v2
with:
path: MFEM
- name: copyright check
run: |
cd MFEM
... | Fix action so that it captures 2020 in copyrights | Fix action so that it captures 2020 in copyrights
| YAML | bsd-3-clause | mfem/mfem,mfem/mfem,mfem/mfem,mfem/mfem,mfem/mfem |
fca613b3812a42da9f3b15ce6b485279c0148515 | .azure-pipelines/jobs/package.yml | .azure-pipelines/jobs/package.yml | parameters:
vmImage:
jobs:
- job: Package
dependsOn:
- Test_Primary
- Test_Secondary
pool:
vmImage: ${{ parameters.vmImage }}
steps:
- task: UsePythonVersion@0
displayName: Use Python 3 latest
inputs:
versionSpec: '3'
- bash: pip install twine nox setuptools wheel
displayNam... | parameters:
vmImage:
jobs:
- job: Package
dependsOn:
- Test_Primary
- Test_Secondary
pool:
vmImage: ${{ parameters.vmImage }}
steps:
- task: UsePythonVersion@0
displayName: Use Python 3 latest
inputs:
versionSpec: '3'
- bash: |
git config --global user.email "pypa-dev@goog... | Build a dummy release on Azure Pipelines | Build a dummy release on Azure Pipelines
| YAML | mit | pradyunsg/pip,xavfernandez/pip,pypa/pip,sbidoul/pip,xavfernandez/pip,xavfernandez/pip,pradyunsg/pip,pfmoore/pip,pfmoore/pip,pypa/pip,sbidoul/pip |
cbdb0b8fa9561a7c503bc01e483bcdc2cdc08b36 | .github/workflows/depsreview.yaml | .github/workflows/depsreview.yaml | name: 'Dependency Review'
on: [pull_request]
permissions:
contents: read
jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
- name: 'Dependency Review'
uses: actions/dependency-review-action@v2
| name: 'Dependency Review'
on: [pull_request]
permissions:
contents: read
jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
| Bump actions/dependency-review-action from 2 to 3 | Bump actions/dependency-review-action from 2 to 3
Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 2 to 3.
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](https://github.com/actions/dependency-review-action/compare/v2...v3)
... | YAML | mit | rspec/rspec-rails,rspec/rspec-rails,rspec/rspec-rails |
31731e145a0667356ebe7c0aab88ff34602adc8f | zuul.d/layout.yaml | zuul.d/layout.yaml | - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-yoga-jobs
- release-notes-jobs-python3
post:
jobs:
- publish-openstack-python-branch-tarball
| - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-zed-jobs
- release-notes-jobs-python3
post:
jobs:
- publish-openstack-python-branch-tarball
| Use python job template for Zed | Use python job template for Zed
the current master should be compatible with the Zed
release of the other projects.
Related-Bug: #1974244
Signed-off-by: Chandan Kumar (raukadah) <37614c4f126be5146599b9d19fe2ba37ae0ea495@redhat.com>
Change-Id: I4ae059fe095378c3ee3b072b6216908a8988bf26
| YAML | apache-2.0 | openstack/tripleo-image-elements,openstack/tripleo-image-elements |
0009afc2b31031f6cd50e60aec096421f7a9d3c7 | .github/FUNDING.yml | .github/FUNDING.yml | open_collective: catalyst-cooperative
custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PZBZDFNKBJW5E&source=url
| open_collective: catalyst-cooperative
github: catalyst-cooperative
custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PZBZDFNKBJW5E&source=url
| Add GitHub Sponsors to funding options. | Add GitHub Sponsors to funding options.
| YAML | mit | catalyst-cooperative/pudl,catalyst-cooperative/pudl |
5d8c66d6ca6a588b8b7ecdc455117ccf99d3fc75 | roles/apigee-bootstrap/tasks/selinux.yml | roles/apigee-bootstrap/tasks/selinux.yml | ---
- name: Install SELinux support
yum:
name: '{{ item }}'
state: present
with_items:
- libselinux-python
- selinux-policy
- name: Disable SELinux
selinux:
state: disabled
| ---
- name: Install SELinux support
yum:
name:
- libselinux-python
- selinux-policy
state: present
- name: Disable SELinux
selinux:
state: disabled
| Change yum module syntax from loop to list | Change yum module syntax from loop to list
| YAML | apache-2.0 | apigee/ansible-install,apigee/ansible-install |
a9dae7cb5306ec75c978337dc3db3603acbffa3f | scripts/roles/cikit-php/tasks/xdebug.yml | scripts/roles/cikit-php/tasks/xdebug.yml | ---
- name: Set name of directory for XDebug
set_fact:
cikit_php_xdebug: "xdebug-{{ php.xdebug }}"
- name: Download XDebug
get_url:
url: "https://xdebug.org/files/{{ cikit_php_xdebug }}.tgz"
dest: "/tmp/{{ cikit_php_xdebug }}.tgz"
- name: Unarchive XDebug
shell: "tar -xf /tmp/{{ cikit_php_xdebug }}.... | ---
- name: Set name of directory for XDebug
set_fact:
cikit_php_xdebug: "xdebug-{{ php.xdebug }}"
- name: Download XDebug
get_url:
url: "https://xdebug.org/files/{{ cikit_php_xdebug }}.tgz"
dest: "/tmp/{{ cikit_php_xdebug }}.tgz"
- name: Unarchive XDebug
shell: "tar -xf /tmp/{{ cikit_php_xdebug }}.... | Check only environment variable name presence instead of possibly mutating value | [PHP] Check only environment variable name presence instead of possibly mutating value
| YAML | apache-2.0 | BR0kEN-/cikit,BR0kEN-/cikit,BR0kEN-/cikit,BR0kEN-/cikit,BR0kEN-/cikit |
619c8b81a5fe3205167f3159bdb02f49a01af58c | zuul.d/layout.yaml | zuul.d/layout.yaml | ---
- project:
name: openstack/os-net-config
templates:
- tripleo-multinode-baremetal-minimal
- tripleo-multinode-container-minimal
- tripleo-ovb-check
- tripleo-ovb-experimental
| ---
- project:
name: openstack/os-net-config
templates:
- tripleo-multinode-baremetal-minimal
- tripleo-multinode-container-minimal
| Remove RH1 OVB jobs from configuration | Remove RH1 OVB jobs from configuration
Remove OVB RH1 jobs from configuration for this repo
Related-Bug: #1744763
Change-Id: I1850dfe4835d43fe9fe148aee1434d3a327a7231
| YAML | apache-2.0 | openstack/os-net-config |
0a6aeebdbcec78f3b207703ab8a52b0b947fb561 | .github/FUNDING.yml | .github/FUNDING.yml | # These are supported funding model platforms
github: [richardwilkes] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift:... | # These are supported funding model platforms
github: [richardwilkes] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift:... | Add link for one-time donations | Add link for one-time donations
| YAML | mpl-2.0 | richardwilkes/gcs,richardwilkes/gcs |
f9870eceb9d02dddb63608fa7d83986792ffbaf8 | .github/FUNDING.yml | .github/FUNDING.yml | custom:
["http://paypal.me/mattmajor14", https://www.buymeacoffee.com/mattmajordev]
| custom:
["http://paypal.me/mattmajor14", "https://www.buymeacoffee.com/mattmajordev"]
| Add BMC to funding options | Add BMC to funding options
| YAML | mit | matt-major/do-wrapper,matt-major/do-wrapper |
2485ca79d765cfdc667614c9cb71d5d892bdb73f | prow/monitoring/grafana_expose.yaml | prow/monitoring/grafana_expose.yaml | ---
apiVersion: v1
kind: Service
metadata:
labels:
app: grafana
name: grafana
namespace: prow-monitoring
spec:
type: NodePort
ports:
- name: http
port: 3001
targetPort: http
selector:
app: grafana
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
kubernetes.io/i... | ---
apiVersion: v1
kind: Service
metadata:
labels:
app: grafana
name: grafana
namespace: prow-monitoring
spec:
type: NodePort
ports:
- name: http
port: 3001
targetPort: http
selector:
app: grafana
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
kubernetes.io/i... | Fix grafana ingress static ip name. | Fix grafana ingress static ip name.
| YAML | apache-2.0 | cblecker/test-infra,krzyzacy/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,brahmaroutu/test-infra,pwittrock/test-infra,brahmaroutu/test-infra,monopole/test-infra,dims/test-infra,jessfraz/test-infra,ixdy/kubernetes-test-infra,krzyzacy/test-infra,krzyzacy/test-infra,monopole/test-infra,BenTheElder/test-infra,f... |
084916caf800625cd96d95a0fefd231b59fcd474 | app.yaml | app.yaml | application: mallinson-shreddies
version: 1
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "5d"
builtins:
- appstats: on
- admin_redirect: on
- deferred: on
- remote_api: on
libraries:
- name: jinja2
version: "2.6"
- name: markupsafe
version: "0.15"
- name: pycrypto
version: "2.6"
inbou... | application: mallinson-shreddies
version: 1
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "5d"
cron:
- description: keep instance alive
url: /
schedule: every 2 minutes
builtins:
- appstats: on
- admin_redirect: on
- deferred: on
- remote_api: on
libraries:
- name: jinja2
version: "2.6... | Add cron job to keep instance alive | Add cron job to keep instance alive
If site is quiet, Google App Engine will close the instance, creating an initial latency to the user in the range of seconds. This pings the server every 2 minutes to prevent this. | YAML | artistic-2.0 | danielchatfield/shreddi.es,danielchatfield/shreddi.es,danielchatfield/shreddi.es |
557954ba0aeb13d79542fdebe5e710784f723643 | app.yaml | app.yaml | application: oppia-test-server
version: 2
runtime: python27
api_version: 1
threadsafe: false
builtins:
- remote_api: on
handlers:
- url: /favicon.ico
static_files: static/images/favicon.ico
upload: static/images/favicon.ico
secure: always
- url: /images
static_dir: static/images
secure: always
- url: /img
... | application: oppia-test-server
version: 2
runtime: python27
api_version: 1
threadsafe: false
builtins:
- remote_api: on
handlers:
- url: /favicon.ico
static_files: static/images/favicon.ico
upload: static/images/favicon.ico
secure: always
- url: /images
static_dir: static/images
secure: always
- url: /img
... | Make static/ directory in data/widgets accessible for static file loading | Make static/ directory in data/widgets accessible for static file loading
| YAML | apache-2.0 | CMDann/oppia,jestapinski/oppia,souravbadami/oppia,gale320/oppia,MaximLich/oppia,aldeka/oppia,sunu/oppia,Atlas-Sailed-Co/oppia,felipecocco/oppia,sdulal/oppia,paulproteus/oppia-test-3,sbhowmik89/oppia,dippatel1994/oppia,jestapinski/oppia,michaelWagner/oppia,asandyz/oppia,virajprabhu/oppia,openhatch/oh-missions-oppia-beta... |
1fba89fe39ebef74681b5188713c29e699dc2e3d | app.yaml | app.yaml | application: myeventbot
version: testing
runtime: python
api_version: 1
default_expiration: "4h"
handlers:
- url: /_ah/mail/.+
script: incoming_mail.py
- url: /.*\.html|/
script: static_html.py
- url: /static
static_dir: static
- url: /version.txt
static_files: version.txt
upload: version.txt
expiration... | application: myeventbot
version: testing
runtime: python
api_version: 1
default_expiration: "4h"
handlers:
- url: /_ah/mail/.+
script: incoming_mail.py
- url: /.*\.html|/
script: static_html.py
- url: /static
static_dir: static
- url: /version.txt
static_files: version.txt
upload: version.txt
expiration... | Rename stats dashboard to 'Stats' when shown in App Engine dashboard | Rename stats dashboard to 'Stats' when shown in App Engine dashboard
| YAML | mit | eentzel/myeventbot,eentzel/myeventbot,eentzel/myeventbot,eentzel/myeventbot,eentzel/myeventbot |
ea12b5871553b4aaeb008e0fca8c9010d347797e | environment.yml | environment.yml | name: memex-explorer
channels:
- blaze
dependencies:
- blaze=0.6.7
- Flask=0.10.1
- bokeh=0.7
- pip
- pip:
- Flask-WTF==0.8.2
- flask-mail==0.9.1
- flask-sqlalchemy==2.0
- flask-migrate
- tld==0.7.2
- WTForms==2.0.1
- supervisor==3.0
- unicodecsv==0.9.4
- webhelpers==1.3 | name: memex-explorer
channels:
- blaze
dependencies:
- blaze=0.6.7
- Flask=0.10.1
- bokeh=0.7
- pip
- pip:
- Flask-WTF==0.8.2
- flask-mail==0.9.1
- flask-sqlalchemy==2.0
- flask-migrate
- flask-restful
- tld==0.7.2
- WTForms==2.0.1
- supervisor==3.0
- unicodecsv==0.9.4
... | Add flask-restful as pip dependency | Add flask-restful as pip dependency
| YAML | bsd-2-clause | 0x0mar/memex-explorer,YongchaoShang/memex-explorer,0x0mar/memex-explorer,memex-explorer/memex-explorer,0x0mar/memex-explorer,kod3r/memex-explorer,memex-explorer/memex-explorer,YongchaoShang/memex-explorer,0x0mar/memex-explorer,memex-explorer/memex-explorer,0x0mar/memex-explorer,YongchaoShang/memex-explorer,YongchaoShan... |
c189e109a98de3cffaa5fff14bb140a53e0d7eaa | roles/mounts/tasks/main.yml | roles/mounts/tasks/main.yml | ---
- name: Ensure efivars is mounted RO
become: yes
mount:
name: /sys/firmware/efi/efivars
src: efivars
fstype: efivars
opts: ro,nosuid,nodev,noexec,noatime
state: present
tags:
- mounts
- name: Ensure NFS share is mounted
become: yes
mount:
name: /shared
src: spookcentral.{{... | ---
# efivars is chattr +i since linux 4.5
- name: Ensure efivars are not mounted ro in fstab
become: yes
lineinfile:
path: /etc/fstab
state: absent
regexp: '^efivars'
tags:
- mounts
- name: Ensure NFS share is mounted
become: yes
mount:
name: /shared
src: spookcentral.{{ network.loca... | Remove efivars mount from fstab | Remove efivars mount from fstab
| YAML | mit | henrik-farre/ansible,henrik-farre/ansible,henrik-farre/ansible |
ff4e86c736576b25a4e8d938356f8c1f3b62c1e5 | learn2.yaml | learn2.yaml | enabled: true
root_page: # optional: set root page of documentation
top_level_version: false # Use versions for top level navigation
google_analytics_code: # Enter your `UA-XXXXXXXX-X` code here
home_url: ... | enabled: true
root_page: # optional: set root page of documentation
top_level_version: false # Use versions for top level navigation
google_analytics_code: # Enter your `UA-XXXXXXXX-X` code here
home_url: ... | Remove unneeded streams from Theme YAML | Remove unneeded streams from Theme YAML | YAML | mit | getgrav/grav-theme-learn2,getgrav/grav-theme-learn2,getgrav/grav-theme-learn2,getgrav/grav-theme-learn2 |
e77595835406190d98473482347e388620a7d4e4 | ansible/roles/prechecks/tasks/package_checks.yml | ansible/roles/prechecks/tasks/package_checks.yml | ---
- name: Checking docker-py version
command: python -c "import docker; print docker.__version__"
register: result
changed_when: false
failed_when: result | failed or
result.stdout | version_compare(docker_py_version_min, '<')
- name: Checking Ansible version
local_action: command ansible --... | ---
- name: Checking docker-py version
command: python -c "import docker; print docker.__version__"
register: result
changed_when: false
failed_when: result | failed or
result.stdout | version_compare(docker_py_version_min, '<')
- name: Checking Ansible version
local_action: fail msg="Current ... | Use ansible_version when available for precheck | Use ansible_version when available for precheck
Use the ansible_version variable introduced in Ansible 1.8. It is a far
more accurate check.
TrivialFix
Change-Id: I1265ca3de583ff6f9335b8e5e8fe4ea4aadf565b
| YAML | apache-2.0 | rahulunair/kolla,mrangana/kolla,intel-onp/kolla,coolsvap/kolla,dardelean/kolla-ansible,stackforge/kolla,mandre/kolla,intel-onp/kolla,coolsvap/kolla,stackforge/kolla,mandre/kolla,GalenMa/kolla,dardelean/kolla-ansible,dardelean/kolla-ansible,GalenMa/kolla,coolsvap/kolla,mrangana/kolla,nihilifer/kolla,nihilifer/kolla,mand... |
8ab8503a15ad5cfe504777647922be301ddac911 | zuul.d/project.yaml | zuul.d/project.yaml | ---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | ---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | Make CentOS 8 metal voting again | Make CentOS 8 metal voting again
Change-Id: I54e615b94573e602dbad404ca23669d4605bc1c2
Depends-On: https://review.opendev.org/c/openstack/openstack-ansible/+/766244
| YAML | apache-2.0 | openstack/openstack-ansible-openstack_hosts,openstack/openstack-ansible-openstack_hosts |
ef6430aa35d6c00e33e9eb4e48cf347302aa7699 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
test:
docker:
- image: circleci/golang:1.12
environment:
GO111MODULE: 'on'
GOPROXY: https://proxy.golang.org
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run: go test -race -v ./...
workflows:
ve... | version: 2
jobs:
test:
docker:
- image: circleci/golang:1.12
environment:
GO111MODULE: 'on'
GOPROXY: https://proxy.golang.org
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run:
command: go test -race -v ./.... | Extend CI no output timeout | Extend CI no output timeout
This prevents spurious failures caused by CircleCI cutting off the build
when it goes too long without output, which happens sometimes since the
tests don't output anything until they've been completed.
| YAML | mit | lightstep/lightstep-tracer-go,lightstep/lightstep-tracer-go |
d2cce6649e5cbcc02c59aeeea0492c3ed0241edb | .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:
... | Use -U when install requirement.txt | Use -U when install requirement.txt
This ensures that we get the latest versions.
| YAML | bsd-3-clause | OpenChemistry/mongochemserver |
7f7fa7a9acbd96c02dd357c5a619267906386a03 | .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:7.2.2-apache-node-browsers
# Specify service dependencies here if necessary
# CircleCI... | Use different image for build | Use different image for build
| YAML | agpl-3.0 | SamarkandDesign/samarkand-web,SamarkandDesign/samarkand-web,SamarkandDesign/samarkand-web |
843c210ba1081f8c93dc16145ae044190dadd24a | .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: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI ma... | # 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: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI ma... | Remove maven testing, add JUnit testing | Remove maven testing, add JUnit testing
| YAML | mit | ajchili/sync,ajchili/sync,ajchili/sync |
e66f4e2e4cfc3c1559407cfc1ced1facc67e3aae | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: mattbdean/helium-test:latest
- image: circleci/mysql:5.7-ram
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=true
- MYSQL_HOST=127.0.0.1
- MYSQL_ROOT_HOST=%
- MYSQ... | version: 2
jobs:
build:
docker:
- image: mattbdean/helium-test:latest
- image: circleci/mysql:5.7-ram
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=true
- MYSQL_HOST=127.0.0.1
- MYSQL_ROOT_HOST=%
- MYSQ... | Move uploading code coverage to before e2e tests | CI: Move uploading code coverage to before e2e tests
yarn e2e runs `build`, which runs `clean`, which removes the coverage dir,
so the reports never got uploaded
| YAML | mit | mattbdean/Helium,mattbdean/Helium,mattbdean/Helium,mattbdean/Helium |
cb890a87c17e5069ceb88bf2b538c79bef5a6e2c | .circleci/config.yml | .circleci/config.yml | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.3@sha256:73bb7458645773fd49d951088b2c443fde6e160465cb18599cd64ff65f484bc9
working_directory: ~/repo
steps:
- checko... | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.3@sha256:44b1339fa4110af1ea53fd29ce755817b369058a04e187a62bb159ed9dcd245d
working_directory: ~/repo
steps:
- checko... | Update circleci/python:3.7.3 Docker digest to 44b1339 | Update circleci/python:3.7.3 Docker digest to 44b1339
| YAML | bsd-3-clause | kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler |
a3841d6e35a82496a5afae4cc3725efe055311eb | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
# fallback to using the latest cache ... | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
# fallback to using the latest cache ... | Update workspace settings in CircleCI | Update workspace settings in CircleCI
| YAML | mit | Vovas11/courses,Vovas11/courses,Vovas11/courses |
ab10068d906fca320ae53ab0e947c36de3b3bd23 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8
steps:
- checkout
- setup_remote_docker
- run: ssh-keygen -t ecdsa -f id_rsa_test -N ''
- run: docker-compose up -d
- run: docker-compose ps
- restore_cache:
key: v1-gradle-{{ checksum "build.grad... | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8
working_directory: ~/embulk-input-remote
steps:
- checkout
- setup_remote_docker
- run: ssh-keygen -t ecdsa -f id_rsa_test -N ''
- run: docker-compose up -d
- run: docker-compose ps
- restore_cache:
... | Set working_directory to pass tests. It is needed to run docker containers with proper name. | Set working_directory to pass tests.
It is needed to run docker containers with proper name.
| YAML | mit | kamatama41/embulk-input-remote,kamatama41/embulk-input-remote,kamatama41/embulk-input-remote |
a3193c262c9e4736ca1554c7a7883f0441448181 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:9
- image: circleci/mongo:3
- image: redis:4@sha256:d4eef66199e66049090f8bc90cdd1a5316613c33bff5f45fbe488e7f01c5abc9
- image: circleci/postgres:10.7
environment:
POSTGRES_USER: accounts-js
POSTGRES_DB: acco... | version: 2
jobs:
build:
docker:
- image: circleci/node:9
- image: circleci/mongo:3
- image: redis:4@sha256:7ba6704401d1d7e90d19e872c5095f7182dee59b0706eaa891e8eab836c790cd
- image: circleci/postgres:10.7
environment:
POSTGRES_USER: accounts-js
POSTGRES_DB: acco... | Update redis:4 Docker digest to 7ba6704 | Update redis:4 Docker digest to 7ba6704
| YAML | mit | js-accounts/accounts |
0ee5e7961b28a9333341eca0fa312efb68f566f2 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:8-browsers
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- yarn-cache-{{ checksum "yarn.lock" }}
- save_cache:
paths:
- node_modules
key: yarn-cache-{{ ... | version: 2
jobs:
build:
docker:
- image: circleci/node:8-browsers
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- yarn-cache-{{ checksum "yarn.lock" }}
- run: yarn install
- save_cache:
paths:
- node_modules
... | Add yarn install to circle instructions | Add yarn install to circle instructions
| YAML | mit | vigetlabs/react-ink,vigetlabs/react-ink |
8b9a6d4904715734fbb0b388be0bfd2f89ac7333 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/python:stretch-browsers
steps:
- checkout
- run:
name: Installation
command: |
sudo apt-get update
sudo apt-get install -y cmake python-pytest bison valgrind xsltproc
- run:
na... | version: 2
jobs:
build:
docker:
- image: circleci/python:stretch-browsers
steps:
- checkout
- run:
name: Installation
command: |
sudo apt-get update
sudo apt-get install -y cmake python-pytest bison valgrind xsltproc
- run:
na... | Convert ctest to junit xml. | Convert ctest to junit xml.
Fixes #48.
| YAML | bsd-2-clause | pyohannes/dayplan,pyohannes/dayplan |
c39cfb7a510defb3c8e380a349c15bd287ded6c8 | jenkins/jobs/infra-publish-jobs.yaml | jenkins/jobs/infra-publish-jobs.yaml | - job-template:
name: '{name}-infra-docs'
node: 'ubuntu-trusty'
builders:
- print-template-name:
template-name: "{template-name}"
- gerrit-git-prep
- install-distro-packages
- revoke-sudo
- docs
publishers:
- console-log
- ftp:
... | - job-template:
name: '{name}-infra-docs'
node: 'ubuntu-trusty'
builders:
- print-template-name:
template-name: "{template-name}"
- gerrit-git-prep
- install-distro-packages
- revoke-sudo
- docs
publishers:
- console-log
- ftp:
... | Fix target path on publish-infra-docs-index publisher | Fix target path on publish-infra-docs-index publisher
Change-Id: Icb749e951481059e8e111d4957a7d1fe787ced80
Signed-off-by: Paul Belanger <e7139c8e6c4ea75cc1c287ce081b2dc0f3ab39ec@redhat.com>
| YAML | apache-2.0 | Tesora/tesora-project-config,dongwenjuan/project-config,openstack-infra/project-config,openstack-infra/project-config,dongwenjuan/project-config,Tesora/tesora-project-config |
f7615bb0390ebe392efeeb0b86cb7dcdebab58b3 | azure-pipelines.yml | azure-pipelines.yml | # C/C++ with GCC
# Build your C/C++ project with GCC using make.
# Add steps that publish test results, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- script: |
make
displayName: 'make'
| # C/C++ with GCC
# Build your C/C++ project with GCC using make.
# Add steps that publish test results, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc
trigger:
- master
pool:
vmImage: 'windows-2019'
steps:
- script: |
make
displayName: 'make'
| Set up CI with Azure Pipelines | Set up CI with Azure Pipelines
[skip ci] | YAML | bsd-2-clause | dg1an3/WarpTPS,dg1an3/WarpTPS,dg1an3/WarpTPS,dg1an3/WarpTPS |
6f33d6d509649c31a7612d2f3fed3ba6b0ace9e4 | azure-pipelines.yml | azure-pipelines.yml |
trigger:
- packaging_pipeline
jobs:
- job: commands_zip
displayName: "Build commands.zip"
pool:
vmImage: 'Ubuntu-16.04'
steps:
- script: yarn install
displayName: 'Yarn install'
- script: yarn run package-commands-zip
displayName: 'Run yarn package-commands-zip'
- task: Cop... |
trigger:
- packaging_pipeline
jobs:
- job: commands_zip
displayName: "Build commands.zip"
pool:
vmImage: 'Ubuntu-16.04'
steps:
- script: yarn install
displayName: 'Yarn install'
- script: yarn run package-commands-zip
displayName: 'Run yarn package-commands-zip'
- task: Cop... | Remove the extra folder in the artifact publishing part on Pipelines. | Remove the extra folder in the artifact publishing part on Pipelines.
| YAML | mit | sedwards2009/extraterm,sedwards2009/extraterm,sedwards2009/extraterm,sedwards2009/extraterm,sedwards2009/extraterm |
c257ea567eb0aaa4149237df1e2a774ff16f2d0a | azure-pipelines.yml | azure-pipelines.yml | resources:
repositories:
- repository: templates
type: github
name: NSLS-II/profile-collection-ci
# ref: refs/heads/<branch-name> # for future testings on a branch of NSLS-II/profile-collection-ci
endpoint: github
jobs:
- template: azure-linux.yml@templates # Template reference
parame... | resources:
repositories:
- repository: templates
type: github
name: NSLS-II/profile-collection-ci
ref: refs/heads/main
endpoint: github
jobs:
- template: collection-2021-1.2.yml@templates
parameters:
beamline_acronym: HXN
- template: nsls2-collection-2021-2.2.yml@templates
... | Set up CI with Azure Pipelines | Set up CI with Azure Pipelines
[skip ci] | YAML | bsd-2-clause | NSLS-II-HXN/ipython_ophyd,NSLS-II-HXN/ipython_ophyd |
5ece3248efe1f213f4b3c030ac564276ac5dd03e | requirements.yml | requirements.yml | - src: git+https://git.forgeservicelab.fi/ansible-roles/forge_hostname.git
path: roles/
- src: mstrisoline.ruby-builder
path: roles/
- src: git+https://git.forgeservicelab.fi/ansible-roles/firewallder.git
path: roles/
- src: git+https://git.forgeservicelab.fi/ansible-roles/casino.git
path: roles/
- src: git... | - src: git+https://git.forgeservicelab.fi/ansible-roles/forge_hostname.git
path: roles/
- src: mstrisoline.ruby-builder
path: roles/
- src: git+ssh://gitlab@git.forgeservicelab.fi:10022/ansible-roles/firewallder.git
path: roles/
- src: git+https://git.forgeservicelab.fi/ansible-roles/casino.git
path: roles/
... | Change repo protocol to ssh to workaround error in CI | Change repo protocol to ssh to workaround error in CI
| YAML | mit | forgeservicelab/ansible.identity-backend |
8e1a0486170cc4705e271dc70c4da48a8cdd5770 | metadata/moe.dic1911.urlsanitizer.yml | metadata/moe.dic1911.urlsanitizer.yml | Categories:
- Internet
License: GPL-3.0-only
AuthorName: dic1911
AuthorEmail: d69873@gmail.com
AuthorWebSite: https://dic1911.github.io/
SourceCode: https://github.com/dic1911/android_URLSanitizer
IssueTracker: https://github.com/dic1911/android_URLSanitizer/issues
AutoName: URLSanitizer
RepoType: git
Repo: https:/... | Categories:
- Internet
License: GPL-3.0-only
AuthorName: dic1911
AuthorEmail: d69873@gmail.com
AuthorWebSite: https://dic1911.github.io/
SourceCode: https://github.com/dic1911/android_URLSanitizer
IssueTracker: https://github.com/dic1911/android_URLSanitizer/issues
AutoName: URLSanitizer
RepoType: git
Repo: https:/... | Update URLSanitizer to 1.2.0 (5) | Update URLSanitizer to 1.2.0 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
da876635c55210c36f9d5682a7a7b989f4a51f20 | i3/.local/share/zenfig/vars/12-i3.yml | i3/.local/share/zenfig/vars/12-i3.yml | ---
############################
# i3wm settings
############################
# Basic key bindings
i3_key_mod: Mod4
i3_key_alt: Mod1
# Startup programs
i3_startup_exec:
- dot-xrandr-setup
- compton
- wicd-gtk --tray
- xautolock -time 8 -locker $autolock
- pulseaudio --start
- dot-stow-manager
... | ---
############################
# i3wm settings
############################
# Basic key bindings
i3_key_mod: Mod4
i3_key_alt: Mod1
# Startup programs
i3_startup_exec:
- dot-xrandr-setup
- xautolock -time 8 -locker $autolock
- pulseaudio --start
- dot-stow-manager
- dunst --config ~/.config/dunst... | Remove annoying wicd-gtk for good :) | Remove annoying wicd-gtk for good :)
| YAML | mit | axltxl/dotfiles,axltxl/dotfiles,axltxl/dotfiles |
52c70ecd7248c106329f344c5f1c88a0402016a1 | appveyor.yml | appveyor.yml | os: Visual Studio 2015
# Version format
version: 1.0.0.{build}
cache:
- packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
branches:
only:
- develop
- master
tests: on
build_script:
- cd Packaging
- build.bat... | os: Visual Studio 2015
# Version format
version: 1.0.0.{build}
cache:
- packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
branches:
only:
- develop
#- master
tests: on
build_script:
- cd Packaging
- build.ba... | Disable building on master for now | Disable building on master for now
| YAML | mit | dawoe/umbraco-nexu,dawoe/umbraco-nexu,dawoe/umbraco-nexu |
69cd2034f22e1ffe1ace3540ce8ff3251195d99d | appveyor.yml | appveyor.yml | ---
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- bundle install
build: off
test_script:
- bundle exec rake ci
environment:
matrix:
- ruby_version: "200"
- ruby_version: "200-x64"
- ruby_version: "21"
- ruby_version: "21-x64"
- ruby_version: "22"... | ---
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem install bundler -v '< 2.0'
- bundle install
before_test:
- ruby -v
- gem -v
- bundle -v
build: off
test_script:
- bundle exec rake ci
environment:
matrix:
- ruby_version: "200"
- ruby_version: "200-x64"
- ruby_version: "21"
-... | Change to restrict bundler and use latest ruby | Change to restrict bundler and use latest ruby
| YAML | mit | peter-murach/tty-prompt,piotrmurach/tty-prompt |
5e0d34c3a900b15bf3a2f43eb1b5e8e1deb781a2 | appveyor.yml | appveyor.yml | version: 1.2.3.{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}'
install:
- cmd: >-
set PATH=C:\Program Fi... | version: 1.2.4.{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}'
install:
- cmd: >-
set PATH=C:\Program Fi... | Increment patch number for bug fix. | Increment patch number for bug fix.
| YAML | mit | psibernetic/Susanoo |
3f7b7d49e4ea361ef5333ced26d51142da5a3d25 | appveyor.yml | appveyor.yml | build:
verbosity: detailed
build_script:
- cmd: .\gradlew.bat assemble --no-daemon
test_script:
- cmd: .\gradlew.bat check --no-daemon
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
- JAVA_HOME: C:\Program Files\Java\jdk10
skip_commits:
files:
- README*
- .travis.yml
on_succ... | build:
verbosity: detailed
build_script:
- cmd: .\gradlew.bat assemble --no-daemon
test_script:
- cmd: .\gradlew.bat check --no-daemon
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
- JAVA_HOME: C:\Program Files\Java\jdk11
skip_commits:
files:
- README*
- .travis.yml
on_succ... | Test with JDK 11 on AppVeyor | Test with JDK 11 on AppVeyor
…and no longer test with JDK 10. | YAML | apache-2.0 | tbroyer/gradle-apt-plugin,tbroyer/gradle-apt-plugin |
4c602a6053bacfd5f5cdc2259c0955e14837bf2b | appveyor.yml | appveyor.yml | # http://www.appveyor.com/docs/appveyor-yml
# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
environment:
matrix:
- nodejs_version: "0.10"
# 4.6.1 fails on Node 0.10 with "Object [...] has no method 'toLowerCase'"
... | # http://www.appveyor.com/docs/appveyor-yml
# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
environment:
matrix:
- nodejs_version: "0.10"
# 4.6.1 fails on Node 0.10 with "Object [...] has no method 'toLowerCase'"
... | Use latest node version with AppVeyor | Use latest node version with AppVeyor
If the version is not specified, the latest version is installed. That
is the version I want to test against, so do that.
Signed-off-by: Kevin Locke <ffb4761cba839470133bee36aeb139f58d7dbaa9@kevinlocke.name>
| YAML | mit | kevinoid/git-branch-is,kevinoid/promised-read,kevinoid/git-branch-is,kevinoid/promised-read,kevinoid/stream-compare,kevinoid/promised-read,kevinoid/stream-compare,kevinoid/stream-compare,kevinoid/git-branch-is |
f979a8f33f71ded79db134dd9a32c7c6144ed5ef | appveyor.yml | appveyor.yml | os: Visual Studio 2015 CTP
init:
build_script:
- cmd: appveyor-build.cmd
# scripts that run after cloning repository
install:
# by default, all script lines are interpreted as batch
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
test: off
version: 0.0.1.{build}
artifacts:
- path: Debug
na... | os: Visual Studio 2015 CTP
init:
build_script:
- cmd: appveyor-build.cmd
# scripts that run after cloning repository
install:
# by default, all script lines are interpreted as batch
- set PATH=%ProgramFiles(x86)%\MSBuild\14.0\Bin;%PATH%
test: off
version: 0.0.1.{build}
artifacts:
- path: Debug
name:... | Set program files using the environment variable rather than the hard coded path. | Set program files using the environment variable rather than the hard coded path.
| YAML | apache-2.0 | sergey-tihon/FSharp.Compiler.Service,Jand42/FSharp.Compiler.Service,brettfo/visualfsharp,rojepp/FSharp.Compiler.Service,rojepp/FSharp.Compiler.Service,In2TheWild/fsharp,yever/FSharp.Compiler.Service,ncave/FSharp.Compiler.Service,alfonsogarciacaro/FSharp.Compiler.Service,fsharp/fsharp,0x53A/FSharp.Compiler.Service,vasil... |
ed28733b17c8e8f4aae34f3437d8db75da2c8bcf | appveyor.yml | appveyor.yml | environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\devtools\\appveyor-ci\\run_with_env.cmd"
PYTHONUNBUFF... | environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\devtools\\appveyor-ci\\run_with_env.cmd"
PYTHONUNBUFF... | Drop support for Python 2.7 on Windows | Drop support for Python 2.7 on Windows
| YAML | lgpl-2.1 | dwhswenson/mdtraj,gph82/mdtraj,gph82/mdtraj,msultan/mdtraj,jchodera/mdtraj,tcmoore3/mdtraj,mdtraj/mdtraj,msultan/mdtraj,mdtraj/mdtraj,jchodera/mdtraj,mattwthompson/mdtraj,tcmoore3/mdtraj,dwhswenson/mdtraj,mattwthompson/mdtraj,leeping/mdtraj,dwhswenson/mdtraj,leeping/mdtraj,jchodera/mdtraj,mattwthompson/mdtraj,ctk3b/mdt... |
7b9a39195cc4a1e6b284f2480e0ef9946678176c | appveyor.yml | appveyor.yml | # stolen from https://github.com/jakubroztocil/httpie/blob/master/appveyor.yml
build: false
environment:
matrix:
- PYTHON: "C:/Python27"
- PYTHON: "C:/Python35"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- "%PYTHON%/Scripts/pip.exe install --no-index -f https://users.getnikola.com/static/nik... | # stolen from https://github.com/jakubroztocil/httpie/blob/master/appveyor.yml
build: false
environment:
matrix:
- PYTHON: "C:/Python27"
- PYTHON: "C:/Python35"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- "%PYTHON%/python.exe -m pip install -U pip"
- "%PYTHON%/Scripts/pip.exe install --no... | Upgrade pip before installing things in AppVeyor | Upgrade pip before installing things in AppVeyor | YAML | mit | gwax/nikola,gwax/nikola,xuhdev/nikola,andredias/nikola,wcmckee/nikola,wcmckee/nikola,andredias/nikola,wcmckee/nikola,knowsuchagency/nikola,okin/nikola,x1101/nikola,knowsuchagency/nikola,xuhdev/nikola,getnikola/nikola,x1101/nikola,getnikola/nikola,x1101/nikola,okin/nikola,getnikola/nikola,getnikola/nikola,knowsuchagency... |
6edce5865bb42be6cdee3c29645e268afd65c7b4 | appveyor.yml | appveyor.yml | branches:
only:
- release
- pre-release
environment:
COLUMNS: 999
matrix:
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python37-x86"
- PYTHON: "C:\\Python38-x64"
install:
- "%PYTHON%\\python.exe -m pip install -U setuptools"
... | branches:
only:
- release
- pre-release
environment:
COLUMNS: 999
matrix:
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python38-x64"
install:
- "%PYTHON%\\python.exe -m pip install -U setuptools"
- "%PYTHON%\\python.exe -m pip ... | Remove 32 bit Windows target | Remove 32 bit Windows target
| YAML | apache-2.0 | guildai/guild,guildai/guild,guildai/guild,guildai/guild |
335841c484c1a6f592e7745789ec43f400b75973 | appveyor.yml | appveyor.yml | environment:
# When this was added there were revocation check failures when using the
# libcurl backend as libcurl checks by default, but rustup doesn't provide the
# switch to turn this off. Switch to Hyper which looks to not check for
# revocation by default like libcurl does.
RUSTUP_USE_HYPER: 1
CARGO_H... | environment:
# When this was added there were revocation check failures when using the
# libcurl backend as libcurl checks by default, but rustup doesn't provide the
# switch to turn this off. Switch to Reqwest which looks to not check for
# revocation by default like libcurl does.
RUSTUP_USE_REQWEST: 1
CAR... | Use Reqwest backend for Appveyor, not Hyper which is deprecated | Use Reqwest backend for Appveyor, not Hyper which is deprecated
| YAML | apache-2.0 | rust-lang/libc,rust-lang-nursery/libc,rust-lang-nursery/libc,rust-lang/libc,rust-lang/libc,rust-lang-nursery/libc |
2db266381eca98752e5f865bbbc72b52eaf0519b | appveyor.yml | appveyor.yml | version: "#{build}"
os: Visual Studio 2015
configuration: Release
before_build:
- del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
| version: "#{build}"
os: Visual Studio 2015
configuration: Release
before_build:
- del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
- nuget restore
| Add Appveyor Nuget package restore | Add Appveyor Nuget package restore
| YAML | apache-2.0 | cyberlect/yargon-parser |
12f566f30c0888082fe9f71fd13030fb325c1e9b | appveyor.yml | appveyor.yml | version: 0.0.{build}
image:
- Visual Studio 2017
- Ubuntu
shallow_clone: true
init:
- ps: if ($env:APPVEYOR_REPO_TAG_NAME) { Update-AppveyorBuild -Version $env:APPVEYOR_REPO_TAG_NAME.Substring(1) }
platform:
- Any CPU
configuration:
- Release
matrix:
fast_finish: true
dotnet_csproj:
patch: true
f... | version: 0.0.{build}
image:
- Visual Studio 2019
shallow_clone: true
init:
- ps: if ($env:APPVEYOR_REPO_TAG_NAME) { Update-AppveyorBuild -Version $env:APPVEYOR_REPO_TAG_NAME.Substring(1) }
platform:
- Any CPU
configuration:
- Release
matrix:
fast_finish: true
dotnet_csproj:
patch: true
file: '**\*.... | Build cross platform binaries in AppVeyor. | Build cross platform binaries in AppVeyor.
| YAML | mit | lijunle/Vsxmd |
f638e540d277890dcbe447540cc9a1fc97482e77 | appveyor.yml | appveyor.yml | skip_branch_with_pr: true
branches:
except:
- staging.tmp
environment:
global:
PATH: '%PATH%;C:\msys64\mingw64\bin;C:\msys64\usr\bin;%USERPROFILE%\.cargo\bin'
RUST_BACKTRACE: full
matrix:
- CHANNEL: stable
TARGET: x86_64-pc-windows-msvc
- CHANNEL: stable
TARGET: x86_64-pc-windows-gnu
- C... | skip_branch_with_pr: true
branches:
except:
- staging.tmp
environment:
global:
PATH: '%PATH%;C:\msys64\mingw64\bin;C:\msys64\usr\bin;%USERPROFILE%\.cargo\bin'
RUST_BACKTRACE: full
matrix:
- CHANNEL: stable
TARGET: x86_64-pc-windows-msvc
- CHANNEL: stable
TARGET: x86_64-pc-windows-gnu
- C... | Add skip_commits section to AppVeyor | Add skip_commits section to AppVeyor
| YAML | apache-2.0 | gfx-rs/gfx-rs |
31d672c432e5be67169d6f3128ce3cdc0fc60e7f | appveyor.yml | appveyor.yml | version: 0.1.0.{build}
install:
# Grab a compiled version of compare-test and add it to the PATH variable.
- curl -L https://github.com/jonathanvdc/compare-test/releases/download/v0.1.2/compare-test.zip > compare-test.zip
- mkdir compare-test
- 7z x compare-test.zip -ocompare-test
- set PATH=%PATH%;%cd%\comp... | version: 0.1.0.{build}
install:
# Grab a compiled version of compare-test and add it to the PATH variable.
- curl -L https://github.com/jonathanvdc/compare-test/releases/download/v0.1.3/compare-test.zip > compare-test.zip
- mkdir compare-test
- 7z x compare-test.zip -ocompare-test
- set PATH=%PATH%;%cd%\comp... | Update the AppVeyor compare-test version | Update the AppVeyor compare-test version
| YAML | mit | jonathanvdc/cs-wasm,jonathanvdc/cs-wasm |
ff30233e96b8ec883a0c4d430656339eea23e91e | appveyor.yml | appveyor.yml | os: 'Visual Studio 2015'
init:
- 'git config --global core.autocrlf input'
environment:
matrix:
- platform: x64
configuration: Release
- platform: x86
configuration: Release
- platform: x64
configuration: Debug
- platform: x86
configuration: Debug
before_build:
- >-
... | os: 'Visual Studio 2015'
init:
- 'git config --global core.autocrlf input'
environment:
matrix:
- platform: x64
configuration: Release
- platform: x86
configuration: Release
- platform: x64
configuration: Debug
- platform: x86
configuration: Debug
before_build:
- >-
... | Check exit code of programs in PowerShell test script | Check exit code of programs in PowerShell test script
| YAML | isc | DemiMarie/SlipRock,DemiMarie/SlipRock,DemiMarie/SlipRock,DemiMarie/SlipRock,DemiMarie/SlipRock |
8c4226da4508d6ab41002ee9041a26af3bd57dd0 | metadata/com.jim.sharetocomputer.yml | metadata/com.jim.sharetocomputer.yml | Categories:
- Connectivity
- Multimedia
License: GPL-3.0-or-later
SourceCode: https://github.com/jimmod/ShareToComputer
IssueTracker: https://github.com/jimmod/ShareToComputer/issues
Changelog: https://github.com/jimmod/ShareToComputer/releases
AutoName: Share to Computer
Description: |-
'Main Features'
*... | Categories:
- Connectivity
- Multimedia
License: GPL-3.0-or-later
SourceCode: https://github.com/jimmod/ShareToComputer
IssueTracker: https://github.com/jimmod/ShareToComputer/issues
Changelog: https://github.com/jimmod/ShareToComputer/releases
AutoName: Share to Computer
Description: |-
'Main Features'
*... | Update Share to Computer to 1.1.1 (1110) | Update Share to Computer to 1.1.1 (1110)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
0df4255103cb0e2be3405cc76db4d6ddc8d37edd | packages/ci/cimple.yaml | packages/ci/cimple.yaml | homepage: https://toktok.github.io/
changelog-type: ''
hash: d1e49143567d33320c50125fd1e0c20e3fecaf68c5cd1f3f94462e58e8cb4f63
test-bench-deps:
base: <5
hspec: -any
cimple: -any
maintainer: Iphigenia Df <iphydf@gmail.com>
synopsis: Simple C-like programming language
changelog: ''
basic-deps:
bytestring: -any
c... | homepage: https://toktok.github.io/
changelog-type: ''
hash: a692f5dfda37c1f99f180fbaa7d7984d0d076c6469c5ea7566e65ccf2c6bec60
test-bench-deps:
ansi-wl-pprint: -any
base: <5
hspec: -any
text: -any
cimple: -any
maintainer: Iphigenia Df <iphydf@gmail.com>
synopsis: Simple C-like programming language
changelog: '... | Update from Hackage at 2021-12-15T19:37:17Z | Update from Hackage at 2021-12-15T19:37:17Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2f8fd109db58ad4a405da568d5bbb7203cefefb7 | packages/li/libzfs.yaml | packages/li/libzfs.yaml | homepage: ''
changelog-type: ''
hash: adc3263ad1e5a55e33ac7aece1b2393285247ff44ea3f37a7ed863ed8d1ac2e2
test-bench-deps: {}
maintainer: libzfs.hs@mcohrs.eu
synopsis: Bindings to libzfs, for dealing with the Z File System and Zpools.
changelog: ''
basic-deps:
base: ! '>=4.8 && <5.0'
mtl: ! '>=2.0'
transformers: -an... | homepage: ''
changelog-type: ''
hash: d8854a4433c2ca0959f34b8c90a28747d6f4af279c9d608ba24f0b0d07229bbe
test-bench-deps: {}
maintainer: libzfs.hs@mcohrs.eu
synopsis: Bindings to libzfs, for dealing with the Z File System and Zpools.
changelog: ''
basic-deps:
base: ! '>=4.8 && <5.0'
mtl: ! '>=2.0'
transformers: -an... | Update from Hackage at 2017-03-02T02:04:30Z | Update from Hackage at 2017-03-02T02:04:30Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9c52b17e0e9f2f5b2631496fb4666dc60dde1b51 | packages/no/nowdoc.yaml | packages/no/nowdoc.yaml | homepage: https://github.com/YoshikuniJujo/nowdoc#readme
changelog-type: markdown
hash: b38f69b32ff16222a5deac87da8622c0ce0bda129dfaa213b106a35713a193ab
test-bench-deps:
base: ! '>=4.7 && <5'
nowdoc: -any
template-haskell: -any
maintainer: PAF01143@nifty.ne.jp
synopsis: Here document without variable expansion li... | homepage: https://github.com/YoshikuniJujo/nowdoc#readme
changelog-type: markdown
hash: 33c218defe70fcf193e5fb80277cb713413981016ff8a9136385daabbd12ffaf
test-bench-deps:
base: ! '>=4.7 && <5'
nowdoc: -any
template-haskell: -any
maintainer: PAF01143@nifty.ne.jp
synopsis: Here document without variable expansion li... | Update from Hackage at 2018-08-29T04:35:19Z | Update from Hackage at 2018-08-29T04:35:19Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6fc16785b273f7f7847a9d5d1ff397057c0520ce | packages/un/unique.yaml | packages/un/unique.yaml | homepage: http://github.com/ekmett/unique/
changelog-type: markdown
hash: 68933757e4bd3e7f53f226bd344f8ee980e86fe74eed20fa19edb5867c51035f
test-bench-deps: {}
maintainer: Edward A. Kmett <ekmett@gmail.com>
synopsis: Fully concurrent unique identifiers
changelog: ! '## 0
* Repository initialized
'
basic-deps:
bas... | homepage: http://github.com/ekmett/unique/
changelog-type: markdown
hash: cbac09fc80d77605357a246b10a3dbd9250f39ce451a3f57ac24bf234d93b279
test-bench-deps: {}
maintainer: Edward A. Kmett <ekmett@gmail.com>
synopsis: Fully concurrent unique identifiers
changelog: |
## 0
* Repository initialized
basic-deps:
base: ... | Update from Hackage at 2019-06-17T14:00:59Z | Update from Hackage at 2019-06-17T14:00:59Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d8fd275d2bc77480c336b699b1d4ef41705191b5 | _data/navigation.yml | _data/navigation.yml | # Site navigation links
- title: Start
url: /
- title: Blog
url: /blog/
- title: Vorträge
url: /vortraege/
- title: Portfolio
url: /portfolio/
- title: Kontakt
url: /kontakt/
- title: Datenschutz
url: /datenschutz/
| # Site navigation links
- title: Start
url: /
- title: Blog
url: /blog/
- title: Portfolio
url: /portfolio/
- title: Kontakt
url: /kontakt/
- title: Datenschutz
url: /datenschutz/
| Remove direct link to vortraege | Remove direct link to vortraege
| YAML | mit | BenjaminHerbert/BenjaminHerbert.github.io,BenjaminHerbert/BenjaminHerbert.github.io,BenjaminHerbert/BenjaminHerbert.github.io,BenjaminHerbert/BenjaminHerbert.github.io |
11ed4166c654c3a1f30bd844bb53d928b5ecd083 | packages/co/contravariant-extras.yaml | packages/co/contravariant-extras.yaml | homepage: https://github.com/nikita-volkov/contravariant-extras
changelog-type: ''
hash: 739d7f4b47781516fa22f899bf25aaa2e93c095f9cb127a623c16a9ff5348ad2
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Extras for the "contravariant" package
changelog: ''
basic-deps:
base-prelude: ! '... | homepage: https://github.com/nikita-volkov/contravariant-extras
changelog-type: ''
hash: 589721a10cdc12da758d6bdc067a5d2031a0a1f4ba3c387c865c104161cd491f
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Extras for the "contravariant" package
changelog: ''
basic-deps:
base: ! '>=4.10 &... | Update from Hackage at 2019-12-28T13:26:01Z | Update from Hackage at 2019-12-28T13:26:01Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8a9a72b8c597fc52d4906c8f7a730ea3d2469834 | dotfiles.yml | dotfiles.yml | #! /usr/bin/env ansible-playbook --ask-vault-pass
## ---------------------------------------------
## Ansible playbook for setting up a new machine
## ---------------------------------------------
---
- name: Configure a new machine
hosts: localhost
# include all variables first to allow overriding
vars_files:
... | #! /usr/bin/env ansible-playbook --ask-vault-pass
## ---------------------------------------------
## Ansible playbook for setting up a new machine
## ---------------------------------------------
---
- name: Configure a new machine
hosts: localhost
# include all variables first to allow overriding
vars_files:
... | Add `become` for Ubuntu tasks | Add `become` for Ubuntu tasks
| YAML | mit | jradtilbrook/dotfiles,jradtilbrook/dotfiles,jradtilbrook/dotfiles |
4fb91b0e1ee980b6fb89d1982201b5e2d50212db | .forestry/front_matter/templates/post.yml | .forestry/front_matter/templates/post.yml | ---
label: Post
hide_body: false
fields:
- type: text
name: title
label: Title
config:
required: true
- type: datetime
name: date
label: Date
config:
date_format: YYYY-MM-DD
required: true
- type: text
name: tags
label: Tags
- type: file
name: image
label: Image
- type: boolean
name: p... | ---
label: Post
hide_body: false
fields:
- type: text
name: title
label: Title
config:
required: true
- type: datetime
name: date
label: Date
config:
date_format: YYYY-MM-DD
required: true
- name: tags
type: tag_list
default: []
label: Tags
- type: file
name: image
label: Image
- type:... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | Narno/narno.com,Narno/narno.com |
d2af0d9a04ba332fc09844cf9cec4112cffaa1ac | recipes/ytree/meta.yaml | recipes/ytree/meta.yaml | {% set name = "ytree" %}
{% set version = "3.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/ytree-{{ version }}.tar.gz
sha256: a820141831d3403056d4fd19555ff33ca3c126b5222c0bbef7a61d9f0d27e789
build:
noarch: python
scrip... | {% set name = "ytree" %}
{% set version = "3.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/ytree-{{ version }}.tar.gz
sha256: a820141831d3403056d4fd19555ff33ca3c126b5222c0bbef7a61d9f0d27e789
build:
noarch: python
scrip... | Switch to licence file included with the distribution. | Switch to licence file included with the distribution.
| YAML | bsd-3-clause | jakirkham/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes |
84a40f14b34cc5aea9fb9bf2960031e3c0218bd9 | packages/al/alg.yaml | packages/al/alg.yaml | homepage: ''
changelog-type: ''
hash: 026d651cf1986446406ae52498ee59ec1f66cf52f00e13a7ac3fb25aac6ce926
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Algebraic structures
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
util: ! '>=0.1.9 && <0.2'
all-versions:
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
- '0.2... | homepage: ''
changelog-type: ''
hash: 78bdd2280384ec8cdbe2f44e49ca26e37dcef65a50b82ba45e64019e6feccd51
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Algebraic structures
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
util: ! '>=0.1.9 && <0.2'
all-versions:
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
- '0.2... | Update from Hackage at 2018-05-07T07:31:32Z | Update from Hackage at 2018-05-07T07:31:32Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
578571bda6bef804ea20a8e22b4a9c7155ab2291 | kube/json2html.yaml | kube/json2html.yaml | apiVersion: v1
kind: Service
metadata:
name: json2html
spec:
ports:
- port: 80
targetPort: 8080
selector:
app: json2html
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: json2html
spec:
selector:
matchLabels:
app: json2html
replicas: 1
template:
metadata:
labels:
... | apiVersion: v1
kind: Service
metadata:
name: json2html
spec:
ports:
- port: 80
targetPort: 8080
selector:
app: json2html
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: json2html
spec:
selector:
matchLabels:
app: json2html
replicas: 1
template:
metadata:
labels:
... | Increase memory limit to allow the user to proxy larger JSON documents | Increase memory limit to allow the user to proxy larger JSON documents
| YAML | mit | bloopletech/json2html,bloopletech/json2html,bloopletech/json2html |
d4342557e1397a1d00c650a9ad9613ed742a9037 | meta.yaml | meta.yaml | package:
name: statdyn
version: {{ GIT_DESCRIBE_TAG }}
about:
home: https://github.com/malramsay64/MD-Molecules-Hoomd
license: MIT
license_file: LICENSE
source:
path: .
requirements:
build:
- python {{ python }}
- setuptools 36.2.2
- setuptools_scm 1.15.6
-... | package:
name: statdyn
version: {{ GIT_DESCRIBE_TAG }}
about:
home: https://github.com/malramsay64/MD-Molecules-Hoomd
license: MIT
license_file: LICENSE
source:
path: .
requirements:
build:
- python {{ python }}
- setuptools 36.2.2
- setuptools_scm 1.15.6
-... | Update dependencies to include voro | Update dependencies to include voro
| YAML | mit | malramsay64/MD-Molecules-Hoomd,malramsay64/MD-Molecules-Hoomd |
58414363aee8c63e6fbfb696fa05a977a3b39f29 | deployments/stat89a/config/common.yaml | deployments/stat89a/config/common.yaml | jupyterhub:
auth:
type: google
admin:
users:
# infrastructure
- rylo
- yuvipanda
- felder
# List of other admin users
# Professor
- mahoneymw
# GSIs
- krinsman
- theisen
# UGSI
- wqixu... | jupyterhub:
auth:
type: google
admin:
users:
# infrastructure
- rylo
- yuvipanda
- felder
# List of other admin users
# Professor
- mahoneymw
# GSIs
- krinsman
- theisen
# UGSI
- wqixu... | Revert "Revert "Temporarily nerf nbgitpuller to debug"" | Revert "Revert "Temporarily nerf nbgitpuller to debug""
| YAML | bsd-3-clause | ryanlovett/datahub,berkeley-dsep-infra/datahub,berkeley-dsep-infra/datahub,ryanlovett/datahub,berkeley-dsep-infra/datahub,ryanlovett/datahub |
ed183b90f04b9df1a357859c3ca70226e2574e61 | config/python-libs.yaml | config/python-libs.yaml | ---
# Configuration file defining python specific libraries on pypi to install
# using easy install
pypi:
# infrastructure
- amqplib
- BeautifulSoup
- boto
- fabric
- ipython
- Logbook
- lxml
- mako
- nose
- numpy
- paste
- pastescript
#- pycrypto # build failure with 2.4
- python-cjson
... | ---
# Configuration file defining python specific libraries on pypi to install
# using easy install
pypi:
# infrastructure
- amqplib
- BeautifulSoup
- boto
- fabric
- ipython
- Logbook
- lxml
- mako
- nose
- numpy
- paste
- pastescript
- pycrypto
- python-cjson
- pyOpenSSL
- pyyaml
-... | Clean up python libraries and include StarCluster distribution | Clean up python libraries and include StarCluster distribution
| YAML | mit | chapmanb/cloudbiolinux,chapmanb/cloudbiolinux,chapmanb/cloudbiolinux,joemphilips/cloudbiolinux,heuermh/cloudbiolinux,heuermh/cloudbiolinux,lpantano/cloudbiolinux,lpantano/cloudbiolinux,joemphilips/cloudbiolinux,rchekaluk/cloudbiolinux,AICIDNN/cloudbiolinux,AICIDNN/cloudbiolinux,elkingtonmcb/cloudbiolinux,averagehat/clo... |
3720e90ff6eb2f31ab8624b0512b0753b7e73384 | metadata/com.redcoracle.episodes.yml | metadata/com.redcoracle.episodes.yml | Categories:
- Multimedia
License: GPL-3.0-or-later
AuthorName: red-coracle
SourceCode: https://github.com/red-coracle/episodes
IssueTracker: https://github.com/red-coracle/episodes/issues
AutoName: Episodes
RepoType: git
Repo: https://github.com/red-coracle/episodes
Builds:
- versionName: 0.13.2
versionCode:... | Categories:
- Multimedia
License: GPL-3.0-or-later
AuthorName: red-coracle
SourceCode: https://github.com/red-coracle/episodes
IssueTracker: https://github.com/red-coracle/episodes/issues
AutoName: Episodes
RepoType: git
Repo: https://github.com/red-coracle/episodes
Builds:
- versionName: 0.13.2
versionCode:... | Update Episodes to 0.13.4 (17) | Update Episodes to 0.13.4 (17)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
9de38169a4158b8fc14cfa656305fde8a21f934d | tests/ansible-role-requirements.yml | tests/ansible-role-requirements.yml | - name: apt_package_pinning
src: https://git.openstack.org/openstack/openstack-ansible-apt_package_pinning
scm: git
version: master
| - name: apt_package_pinning
src: https://git.openstack.org/openstack/openstack-ansible-apt_package_pinning
scm: git
version: master
- name: pip_install
src: https://git.openstack.org/openstack/openstack-ansible-pip_install
scm: git
version: master
| Add missing pip_install role dependency | tests: Add missing pip_install role dependency
This fixes the following problem:
ERROR! the role 'pip_install' was not found in
/vagrant/tests/common/roles:/home/vagrant/.ansible/roles:/home/vagrant/.ansible/testing-role:/vagrant/tests/common
The error appears to have been in '/vagrant/tasks/main.yml': line 74,
colum... | YAML | apache-2.0 | openstack/openstack-ansible-openstack_hosts,openstack/openstack-ansible-openstack_hosts |
d447132d808bfe38b764510fe1f6ceae6b3e8221 | config/kubernetes/wg-structured-logging/teams.yaml | config/kubernetes/wg-structured-logging/teams.yaml | teams:
wg-structured-logging-leads:
description: ""
members:
- serathius
- shubheksha
privacy: closed
wg-structured-logging-members:
description: ""
members:
- MadhavJivrajani
- navidshaikh
- Priyankasaggu11929
- serathius
- shubheksha
- yangjunmyf... | teams:
wg-structured-logging-leads:
description: ""
members:
- serathius
- shubheksha
privacy: closed
wg-structured-logging-members:
description: ""
members:
- MadhavJivrajani
- navidshaikh
- Priyankasaggu11929
- serathius
- shubheksha
- yangjunmyf... | Add yuzhiquan to wg structured logging | Add yuzhiquan to wg structured logging
Add yuzhiquan to wg structured logging | YAML | apache-2.0 | kubernetes/org,kubernetes/org,kubernetes/org |
eeb45dc2815b2edbbcc6d75d331d81392c683e76 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- test
- build
- release
python2:
image: python:2.7
stage: test
script:
- pip install tox
- tox -e py27
python34:
image: python:3.4
stage: test
script:
- pip install tox
- tox -e py34
python35:
image: python:3.5
stage: test
script:
- pip install tox
- tox -e py35
python36:
i... | stages:
- test
- build
- release
python2:
image: python:2.7
stage: test
script:
- apt-get install pygtk
- pip install tox
- tox -e py27
python34:
image: python:3.4
stage: test
script:
- apt-get install pygtk
- pip install tox
- tox -e py34
python35:
image: python:3.5
stage: test
script... | Fix CI error for pygtk not available | Fix CI error for pygtk not available
| YAML | lgpl-2.1 | amolenaar/gaphor,amolenaar/gaphor |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.