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 |
|---|---|---|---|---|---|---|---|---|---|
837d465fa57c266df95258dcbcd8e7a44332f5fe | .travis.yml | .travis.yml | dist: xenial
sudo: required
# Not technically required but suppresses 'Ruby' in Job status message.
language: java
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
OS=linux
fi
BAZEL=$(cat ".... | dist: xenial
sudo: required
language: python3
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
OS=linux
fi
BAZELISK_VERSION=v1.5.0
if [ ! -d "${HOME}/bin" ]; then
mkdir "${HOME}/b... | Use Bazelisk to select and download Bazel version | Use Bazelisk to select and download Bazel version
Closes https://github.com/google/j2cl/pull/69
PiperOrigin-RevId: 318006301
| YAML | apache-2.0 | google/j2cl,google/j2cl,google/j2cl,google/j2cl,google/j2cl |
453d223ddb6adb5376cd69903732e8185d83c99d | .travis.yml | .travis.yml | language: java
notifications:
# Email notifications are disabled to not annoy anybody.
# See http://about.travis-ci.org/docs/user/build-configuration/ to learn more
# about configuring notification recipients and more.
email: false
| language: java
script: mvn -Pitest -DargLine="-Dcom.basho.riak.search=true -Dcom.basho.riak.2i=true" clean verify
notifications:
# Email notifications are disabled to not annoy anybody.
# See http://about.travis-ci.org/docs/user/build-configuration/ to learn more
# about configuring notification recipients and mo... | Enable chat bot hook and integration tests on Travis. | Enable chat bot hook and integration tests on Travis.
| YAML | apache-2.0 | basho/riak-java-client,basho/riak-java-client |
4f8b37b824d8cb90b4b73920b61d6c6899ebd212 | .travis.yml | .travis.yml | language: go
go:
- tip
- "1.13"
- "1.12"
- "1.11"
- "1.10"
before_install:
- go get golang.org/x/tools/cmd/cover
script:
- go test -coverprofile=coverage.txt -covermode=atomic ./ ./completion/ ./option ./help
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- tip
- "1.14"
- "1.13"
- "1.12"
- "1.11"
- "1.10"
before_install:
- go get golang.org/x/tools/cmd/cover
script:
- go test -coverprofile=coverage.txt -covermode=atomic ./ ./completion/ ./option ./help
after_success:
- bash <(curl -s https://codecov.io/bash)
| Add Go 1.14 to test matrix | Add Go 1.14 to test matrix
| YAML | mpl-2.0 | DavidGamba/go-getoptions |
6c02f6601e9c4ece0c1b237b27fff7b183610e67 | .travis.yml | .travis.yml | language: python
python: 3.5
env:
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=docs
install:
- pip install tox coveralls
script:
- tox -e $TOX_ENV
after_success:
- coveralls
notifications:
slack:
secure: XZ9C7sBBWsCBKWZY2nDBkaCaePqbb3ham+FLtXTiaRCq+rfl5Q3Effm91YvKmT2i/7rqXjgDb8moVA9NEBF1SLsZlMMVdvY... | language: python
matrix:
include:
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- env: TOXENV=docs
install: pip install tox coveralls
script: tox -e $TOX_ENV
after_success: coveralls
notifications:
slack:
secure: XZ9C7sBBWsCBKWZY2nDBkaCaePqbb3ha... | Fix test matrix (how long has py34 been using 3.5 >.<) | Fix test matrix (how long has py34 been using 3.5 >.<)
| YAML | mit | numberoverzero/bloop,numberoverzero/bloop |
a59f2d5f1873289935ad43eab6dbf2b397aae199 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
matrix:
allow_failures:
- node_js: "0.11"
| sudo: false
language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
matrix:
allow_failures:
- node_js: "0.11"
compiler: clang-3.6
env:
- CXX=clang-3.6
addons:
apt:
sources:
- llvm-toolchain-precise-3.6
- ubuntu-toolchain-r-test
packages:
- clang-3.6
... | Update Travis config to include compiler info | [tools] Update Travis config to include compiler info
See https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements
| YAML | mit | tonyganch/gonzales-pe,tonyganch/gonzales-pe |
1729a4e4b75b95dcb77537070f2f8f2df83c6734 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
before_install:
- "npm update -g npm"
- "( pushd $(dirname `which npm`)/../lib/; npm update npm; popd; )"
- "npm install -g grunt-cli"
| language: node_js
node_js:
- "iojs"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
- node_js: "0.8"
before_install:
- "npm install -g grunt-cli"
| Remove NPM self-updating NPM from Travis CI config but allow Node.js 0.8.x runs to fail | Remove NPM self-updating NPM from Travis CI config but allow Node.js 0.8.x runs to fail
| YAML | mit | JamesMGreene/node-partty,JamesMGreene/node-partty,JamesMGreene/node-partty |
96e1cadfafd0900e53104678e928aaeceb1d50b9 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
script:
- yarn test
cache: yarn
| language: node_js
node_js:
- "10"
- "8"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
- npm install -g npm@latest
- npm install -g greenkeeper-lockfile
install: npm install
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
script:
- npm tes... | Add greenkeeper support with lockfile tracking | Add greenkeeper support with lockfile tracking
| YAML | mit | z-kit/z-checkbox |
c7c62e9ffe5fe529e0e54c873381254bca872acc | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.3"
- "2.7"
install: pip install -r requirements/dev.txt
script: py.test tests
| # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.3"
- "2.7"
install: pip install -r requirements/dev.txt
script: py.test tests
addons:
postgresql: "9.3"
env:
global:
- SQLALCHEMY_DATABASE_URI=postgres://postgres@localhost/clearstate
| Add env variable for Travis test | Add env variable for Travis test
| YAML | bsd-3-clause | sharoonthomas/clearstate,sharoonthomas/clearstate,sharoonthomas/clearstate |
b04d935be598ad827f3afaffcce0ef2141963615 | .travis.yml | .travis.yml | sudo: false
language: java
after_success:
- if [[ "${TRAVIS_JDK_VERSION}" == "oraclejdk8" ]]; then mvn -B jacoco:report coveralls:report; fi
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
| sudo: false
language: java
after_success:
- if [[ "${TRAVIS_JDK_VERSION}" == "oraclejdk8" ]]; then mvn -B jacoco:report coveralls:report; fi
jdk:
- openjdk7
- oraclejdk8
| Remove Oracle JDK7 from Travis CI build | Remove Oracle JDK7 from Travis CI build | YAML | apache-2.0 | joschi/JadConfig |
2381b789ab4860f9ed34d6cd6e302de449d35471 | examples/event-interceptors/github-validate.yaml | examples/event-interceptors/github-validate.yaml | # Copyright 2019 The Tekton Authors
#
# 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 by applicable law or agreed to in w... | # Copyright 2019 The Tekton Authors
#
# 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 by applicable law or agreed to in w... | Fix image path in github validate yaml | Fix image path in github validate yaml
| YAML | apache-2.0 | tektoncd/triggers,tektoncd/triggers |
cdf64a679b76b904799ef02468ede0510db3f165 | ide/pubspec.yaml | ide/pubspec.yaml | name: spark
author: Chrome Team <apps-dev@chromium.org>
version: 0.1.4-dev
homepage: https://github.com/GoogleChrome/spark
description: A Chrome app based development environment.
dependencies:
ace: '>=0.1.3'
analyzer: any
bootjack: any
browser: any
chrome_gen: '>=0.3.0'
crc32: 0.1.3
crypto: any
intl: a... | name: spark
author: Chrome Team <apps-dev@chromium.org>
version: 0.1.4-dev
homepage: https://github.com/GoogleChrome/spark
description: A Chrome app based development environment.
dependencies:
ace: '>=0.1.3'
analyzer: any
bootjack: any
browser: any
chrome_gen: '>=0.3.0'
crc32: 0.1.3
crypto: any
intl: a... | Make polymer_elements a direct dependency (was indirect via spark_widgets) | Make polymer_elements a direct dependency (was indirect via spark_widgets)
| YAML | bsd-3-clause | 2947721120/choredev,devoncarew/spark,googlearchive/chromedeveditor,devoncarew/spark,ussuri/chromedeveditor,vivalaralstin/chromedeveditor,valmzetvn/chromedeveditor,googlearchive/chromedeveditor,vivalaralstin/chromedeveditor,ussuri/chromedeveditor,vivalaralstin/chromedeveditor,2947721120/choredev,yikaraman/chromedevedito... |
2d32ed1b614dbce9c13d85819bc2db8aa68dee5f | metadata/com.oF2pks.kalturadeviceinfos.yml | metadata/com.oF2pks.kalturadeviceinfos.yml | Categories:
- System
License: Unlicense
WebSite: https://bitbucket.org/oF2pks/kaltura-device-info-android
SourceCode: https://bitbucket.org/oF2pks/kaltura-device-info-android/src
IssueTracker: https://forum.xda-developers.com/android/apps-games/appfoss-googleserviceframework-gsf-t3849908
AutoName: (F-Droid) Kaltura ... | Categories:
- System
License: Unlicense
WebSite: https://bitbucket.org/oF2pks/kaltura-device-info-android
SourceCode: https://bitbucket.org/oF2pks/kaltura-device-info-android/src
IssueTracker: https://forum.xda-developers.com/android/apps-games/appfoss-googleserviceframework-gsf-t3849908
AutoName: (F-Droid) Kaltura ... | Update (F-Droid) Kaltura Device Info to 1.3.1-4 (4) | Update (F-Droid) Kaltura Device Info to 1.3.1-4 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata |
299148c60f9a5cb4f50fb82cd4a61316953d771a | recipes/statmorph/meta.yaml | recipes/statmorph/meta.yaml |
{% set name = "statmorph" %}
{% set version = "0.1.0" %}
{% set sha256 = "5e92600867b3ddbd3bd1194ca8689c5e99e214d909588e29860c05be5f14712e" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ na... |
{% set name = "statmorph" %}
{% set version = "0.1.0" %}
{% set sha256 = "5e92600867b3ddbd3bd1194ca8689c5e99e214d909588e29860c05be5f14712e" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ na... | Add numpy and scipy requirements. | [statmorph] Add numpy and scipy requirements.
| YAML | bsd-3-clause | goanpeca/staged-recipes,rvalieris/staged-recipes,isuruf/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,scopatz/staged-recipes,sodre/staged-recipes,asmeurer/staged-recipes,cpaulik/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,Cashalow/staged-recipes,pmlandwehr/staged-recipes,cehol... |
f7531d1a3d5621a5c03fe31febc0b2fa0c11604f | config/govuk_index/migrated_formats.yaml | config/govuk_index/migrated_formats.yaml | migrated:
- help_page
indexable:
- answer
- guide
- licence
- transaction
- simple_smart_answer
| migrated:
- help_page
indexable:
- answer
- guide
- licence
- local_transaction
- transaction
- simple_smart_answer
| Make local transaction format indexable | Make local transaction format indexable
| YAML | mit | alphagov/rummager,alphagov/rummager |
09992b09470051a610643c77712c79a38f4a8aec | examples/multi-user-chat/swindon.yaml | examples/multi-user-chat/swindon.yaml |
listen:
- 127.0.0.1:8080
debug-routing: true
routing:
localhost/empty.gif: empty-gif
localhost/favicon.ico: public
localhost: chat
# we can't proxy websockets for now, so we disable websocket to webpack
localhost/sockjs-node: html
handlers:
chat: !SwindonChat
session-pool: chat
http-route: ht... |
listen:
- 127.0.0.1:8080
debug-routing: true
routing:
localhost/empty.gif: empty-gif
localhost/favicon.ico: public
localhost: chat
localhost/sockjs-node: socksjs
handlers:
chat: !SwindonChat
session-pool: chat
http-route: html
message-handlers:
"*": chat
empty-gif: !EmptyGif
pu... | Fix config of MUC example | Fix config of MUC example
| YAML | apache-2.0 | swindon-rs/swindon,swindon-rs/swindon,swindon-rs/swindon,swindon-rs/swindon |
bfe862f438a304c9a1bcb37473f30227b677fd90 | recipes/benchmark-4dn/meta.yaml | recipes/benchmark-4dn/meta.yaml | {% set name = "Benchmark-4dn" %}
{% set version = "0.5.6" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "f44a5d8274710828045955dae92e7ee093174ed88cdc695840f4a250ab9003a3"
build:
n... | {% set name = "Benchmark-4dn" %}
{% set version = "0.5.6" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "f44a5d8274710828045955dae92e7ee093174ed88cdc695840f4a250ab9003a3"
build:
n... | Make benchmark-4dn a noarch package | Make benchmark-4dn a noarch package | YAML | bsd-3-clause | patricksnape/staged-recipes,birdsarah/staged-recipes,isuruf/staged-recipes,dschreij/staged-recipes,SylvainCorlay/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,petrushy/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,o... |
1e87b19a9cd62a989dca2d6feab7e87918b84e72 | recipes/progressbar33/meta.yaml | recipes/progressbar33/meta.yaml | package:
name: progressbar33
version: "2.4"
source:
fn: progressbar33-2.4.tar.gz
url: https://files.pythonhosted.org/packages/71/fc/7c8e01f41a6e671d7b11be470eeb3d15339c75ce5559935f3f55890eec6b/progressbar33-2.4.tar.gz
md5: 94c114ea62aaae93489848f5bdb0bbe7
build:
number: 0
requirements:
build:
- pyt... | package:
name: progressbar33
version: "2.4"
source:
fn: progressbar33-2.4.tar.gz
url: https://files.pythonhosted.org/packages/71/fc/7c8e01f41a6e671d7b11be470eeb3d15339c75ce5559935f3f55890eec6b/progressbar33-2.4.tar.gz
md5: 94c114ea62aaae93489848f5bdb0bbe7
build:
number: 0
requirements:
build:
- pyt... | Remove word License from license | Remove word License from license
| YAML | bsd-3-clause | kwilcox/staged-recipes,sodre/staged-recipes,conda-forge/staged-recipes,scopatz/staged-recipes,dschreij/staged-recipes,jjhelmus/staged-recipes,synapticarbors/staged-recipes,isuruf/staged-recipes,mcs07/staged-recipes,kwilcox/staged-recipes,birdsarah/staged-recipes,basnijholt/staged-recipes,synapticarbors/staged-recipes,S... |
59c27a8e00e610e3318747c70e5f2fd079bec67a | packages/ca/category.yaml | packages/ca/category.yaml | homepage: ''
changelog-type: ''
hash: d7abb2e1c8d1d05da2e7afd7b3ba0750a0b4ee82147fa8eafaf67e003a8a30a8
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Categorical types and classes
changelog: ''
basic-deps:
alg: ! '>=0.2 && <0.3'
base: ! '>=4.10 && <5'
transformers: ! '>=0.5 && <0.6'
all-versions:
-... | homepage: ''
changelog-type: ''
hash: 20acf2112dab0fa6d887429669529d766439f351e4bd02350e2b81f84e353d72
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Categorical types and classes
changelog: ''
basic-deps:
alg: ! '>=0.2 && <0.3'
base: ! '>=4.10 && <5'
transformers: ! '>=0.5 && <0.6'
all-versions:
-... | Update from Hackage at 2019-07-26T18:32:34Z | Update from Hackage at 2019-07-26T18:32:34Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
662b0a4ca1f3d6b2f1a273ed8e17d575dc7cd5c4 | roles/programming/python/pyenv/tasks/main.yml | roles/programming/python/pyenv/tasks/main.yml | ---
- name: Install Pyenv from git repo
git:
repo: https://github.com/pyenv/pyenv.git
dest: "{{ pyenv_install_dir }}"
- name: Install pyenv-virtualenv plugin
git:
repo: https://github.com/pyenv/pyenv-virtualenv.git
dest: "{{ virtualenv_install_dir }}"
- name: Change owner and group of pyenv and vi... | ---
# See https://github.com/pyenv/pyenv/wiki/Common-build-problems for complete
# list of dependencies.
- name: Install dependencies for building python with pyenv
package: name={{ item }} state=present
with_items:
- make
- build-essential
- libssl-dev
- zlib1g-dev
- libbz2-dev
- libreadlin... | Install dependencies for building python | pyenv: Install dependencies for building python
| YAML | cc0-1.0 | kulla/my-ansible-scripts,kulla/my-ansible-scripts |
0291b156804b8e46eaece040381ebf11e2882bd6 | packages/en/entangle.yaml | packages/en/entangle.yaml | homepage: ''
changelog-type: ''
hash: 5a298994fdc943e5614621d6e5f136b5be74cc36e56ab8230cf257f5bd5d858a
test-bench-deps: {}
maintainer: leonardo.taglialegne@gmail.com
synopsis: An application (and library) to convert quipper circuits into Qpmc models.
changelog: ''
basic-deps:
base: ! '>=4.0 && <5.0'
matrix: ! '>=0.... | homepage: ''
changelog-type: ''
hash: 5d23f9a8472911bf859084e04999ccef13561b723d6df6a608abd995fb5d8cac
test-bench-deps: {}
maintainer: leonardo.taglialegne@gmail.com
synopsis: An application (and library) to convert quipper circuits into Qpmc models.
changelog: ''
basic-deps:
base: ! '>=4.0 && <5.0'
matrix: ! '>=0.... | Update from Hackage at 2017-01-06T22:37:45Z | Update from Hackage at 2017-01-06T22:37:45Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
65755757ab5daa4865a1f9cbd84ff69fc4f13ea9 | packages/lights_tuya.yaml | packages/lights_tuya.yaml | ##################################################
## Customize
##################################################
homeassistant:
customize:
light.2424806784f3eb2103c8:
friendly_name: "Spot Light 1"
icon: mdi:spotlight-beam
light.12204702807d3a252d9b:
friendly_name: "Spot Light 2"
icon... | ##################################################
## Customize
##################################################
homeassistant:
customize:
light.2424806784f3eb2103c8:
friendly_name: "Spot Light 1"
icon: mdi:spotlight-beam
light.12204702ecfabc20a0a1:
friendly_name: "Spot Light 2"
icon... | Update IDs for replacement bulb | Update IDs for replacement bulb
| YAML | mit | shortbloke/home_assistant_config |
b53295bcb44dcc184a8ee38ceb37c31389f6fa78 | packages/sd/sdl2-fps.yaml | packages/sd/sdl2-fps.yaml | homepage: https://github.com/jxv/sdl2-fps#readme
changelog-type: ''
hash: e228fbadb0bd39787955f3277e74f085cfcb32ef82959d8b97909e64f168593e
test-bench-deps: {}
maintainer: Joe Vargas
synopsis: Run of the mill, frames per second timer implementation
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
sdl2: ! '>=2.4.0.1 &... | homepage: https://github.com/jxv/sdl2-fps#readme
changelog-type: ''
hash: 94235beb4a1d9facd448324e924b9655941b5e0903bb53e08c63a60ffdce753a
test-bench-deps: {}
maintainer: Joe Vargas
synopsis: Run of the mill, frames per second timer implementation
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
sdl2: ! '>=2.4.0.1 &... | Update from Hackage at 2018-05-20T01:10:37Z | Update from Hackage at 2018-05-20T01:10:37Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1fbbeb651e9886f8b12f9d8d290bc3e4883adbcc | packages/se/seqalign.yaml | packages/se/seqalign.yaml | homepage: ''
changelog-type: ''
hash: c16973e935950d6dde791d92fb3d463bde992886b4100acf1af66b4e2228772a
test-bench-deps: {}
maintainer: ropoctl@gmail.com
synopsis: Sequence Alignment
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.6 && <5'
vector: -any
all-versions:
- '0.2.0.0'
- '0.2.0.1'
- '0.2.0.2'
- '0... | homepage: ''
changelog-type: ''
hash: dbf574ed677f0db7dd023a549ab3ee8c8bdb3559433fd03b098f1f90eae21f25
test-bench-deps: {}
maintainer: ropoctl@gmail.com
synopsis: Sequence Alignment
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.6 && <5'
vector: -any
all-versions:
- '0.2.0.0'
- '0.2.0.1'
- '0.2.0.2'
- '0... | Update from Hackage at 2015-07-03T14:19:43+0000 | Update from Hackage at 2015-07-03T14:19:43+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
7346a05624dcca8529333dd3ded993552fab2151 | app/config/config_test.yml | app/config/config_test.yml | imports:
- { resource: functional_testing.yml }
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
router:
resource: "%kernel.root_dir%/config/routing_test.yml"
strict_requirements: true
profiler:
collect: false
liip... | imports:
- { resource: functional_testing.yml }
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
router:
resource: "%kernel.root_dir%/config/routing_test.yml"
strict_requirements: true
profiler:
collect: false
liip... | Add test user without any roles for functional testing | Add test user without any roles for functional testing
| YAML | apache-2.0 | thijskh/OpenConext-engineblock,thijskh/OpenConext-engineblock,thijskh/OpenConext-engineblock,thijskh/OpenConext-engineblock |
ab4082a2b7a4898bc0d2ad7a2801f73719910a13 | paypal/merchant-sdk-php/CVE-2017-6099.yaml | paypal/merchant-sdk-php/CVE-2017-6099.yaml | title: Cross-site scripting (XSS) vulnerability in Paypal-Merchant-SDK-PHP
link: https://github.com/paypal/merchant-sdk-php/tree/v3.9.1
cve: CVE-2017-6099
branches:
2.x:
time: 2017-03-31,
versions: ['<2.1.96']
master:
time: 2017-03-31,
versions: ['<3.10.0... | title: Cross-site scripting (XSS) vulnerability in Paypal-Merchant-SDK-PHP
link: https://github.com/paypal/merchant-sdk-php/tree/v3.9.1
cve: CVE-2017-6099
branches:
2.x:
time: 2017-03-31,
versions: ['<=2.11.118']
master:
time: 2017-03-31,
versions: ['<3.1... | Fix version constraints and version number. | Fix version constraints and version number. | YAML | unlicense | marcomenzel/security-advisories,FriendsOfPHP/security-advisories,markstory/security-advisories,kdambekalns/security-advisories |
796f3dceaf941dcd6693940d65d8d29531aded4a | stack.yaml | stack.yaml | resolver: lts-4.1
packages:
- '.'
flags:
idris:
FFI: true
GMP: True
curses: True
extra-deps:
- annotated-wl-pprint-0.7.0
- cheapskate-0.1.0.4
- hscurses-1.4.2.0
- libffi-0.1
| resolver: lts-4.1
packages:
- '.'
flags:
idris:
FFI: true
GMP: True
curses: True
extra-deps:
- annotated-wl-pprint-0.7.0
- cheapskate-0.1.0.4
- hscurses-1.4.2.0
- libffi-0.1
nix:
enable: false
packages: [ libffi, zlib, ncurses, gmp, pkgconfig ]
| Add the Nix package dependencies | Stack: Add the Nix package dependencies
| YAML | bsd-3-clause | Heather/Idris-dev,enolan/Idris-dev,ben-schulz/Idris-dev,ben-schulz/Idris-dev,jmitchell/Idris-dev,FranklinChen/Idris-dev,mpkh/Idris-dev,bravit/Idris-dev,tpsinnem/Idris-dev,markuspf/Idris-dev,kojiromike/Idris-dev,ozgurakgun/Idris-dev,ben-schulz/Idris-dev,Heather/Idris-dev,FranklinChen/Idris-dev,ozgurakgun/Idris-dev,mpkh/... |
0f38e1a3be6e1363f4aa3310e47bf5acbf2f2d63 | stack.yaml | stack.yaml | flags: {}
extra-package-dbs: []
packages:
- '.'
resolver: nightly-2016-04-17
| flags: {}
extra-package-dbs: []
packages:
- '.'
resolver: lts-6.0
| Move to Stack LTS 6. | Move to Stack LTS 6.
| YAML | isc | diku-dk/futhark,mrakgr/futhark,diku-dk/futhark,diku-dk/futhark,diku-dk/futhark,ihc/futhark,HIPERFIT/futhark,mrakgr/futhark,mrakgr/futhark,diku-dk/futhark,ihc/futhark,ihc/futhark,HIPERFIT/futhark,HIPERFIT/futhark |
6f202023f0c04457b49552d0e21080fab9c9b686 | _data/navigation.yml | _data/navigation.yml | # Site navigation links
- title: Home
url: /
- title: Blog
url: /blog/
- title: Eko
url: /eko/
- title: Let's Developer
url: http://letsdeveloper.com
- title: Publications
url: /publications/
- title: Contact
url: /contact/ | # Site navigation links
- title: Home
url: /
- title: Publications
url: /publications/
- title: Blog
url: /blog/
- title: Academics code
url: http://academicscode.com
- title: Let's Developer
url: http://letsdeveloper.com
- title: Eko
url: /eko/
- title: Contact
url: /contact/
| Add “Academics code” to menu. | Add “Academics code” to menu.
| YAML | mit | salsolatragus/sven-amann.de,salsolatragus/sven-amann.de,salsolatragus/sven-amann.de,salsolatragus/sven-amann.de |
140217d0fed02c869a9919947f2151f530ea6a8c | .travis.yml | .travis.yml | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="54.0b"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2esr" ]; then
wget -O tarball "https://archive.moz... | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="54.0b"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2esr" ]; then
wget -O tarball "https://archive.moz... | Fix Firefox 54 download on Travis | Fix Firefox 54 download on Travis
| YAML | agpl-3.0 | gracile-fr/zotero,gracile-fr/zotero,gracile-fr/zotero |
2e31e6c8b30addb48c0390f06a06cea572ec99c2 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "4.2.2"
| language: node_js
sudo: false
node_js:
- "4"
- "5"
| Use latest node version on Travis | Use latest node version on Travis
| YAML | mit | suitcss/components-grid,suitcss/components-grid |
4ff432a33b69de2068be4d0b2fd2cbdea43baac1 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '7'
- '8'
branches:
only:
- master
cache:
directories:
- node_modules
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
install:
- npm prune
- npm install
notifications:
email: false
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '7'
branches:
only:
- master
cache:
directories:
- node_modules
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
install:
- npm prune
- npm install
notifications:
email: false
| Revert "test(node): add node 8 to test versions" | Revert "test(node): add node 8 to test versions"
This reverts commit ba291645a3f0c0149dc2e9c0d79f2c72acd7d8b1.
We'll revisit this later.
| YAML | mit | citycide/trilogy |
06b9799089aea434a12ce216d8319106bcead83c | playbooks/ci_servers.yaml | playbooks/ci_servers.yaml | ---
- hosts: ci_log_servers
template:
src: templates/puppet_manifests/log_server_common.yaml.j2
dest: /etc/puppet/environments/common.yaml
- hosts: ci_jenkins_servers
template:
src: templates/puppet_manifests/ci_server_common.yaml.j2
dest: /etc/puppet/environments/common.yaml
| ---
- hosts: ci_log_servers
tasks:
- name: "Render out puppet environment"
template:
src: templates/puppet_manifests/log_server_common.yaml.j2
dest: /etc/puppet/environments/common.yaml
- hosts: ci_jenkins_servers
tasks:
- name: "Render out puppet environment"
template:
... | Fix issue with ci servers playbook | Fix issue with ci servers playbook
Change-Id: I0145b0a259a506e46b3aefc7ccbf99de5498cbe3
| YAML | apache-2.0 | CiscoSystems/project-config-third-party,CiscoSystems/project-config-third-party |
09f59fcd49d4171e4606392c10154dbd68e778e2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
addons:
firefox: "29.0"
| language: node_js
node_js:
- "4"
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
addons:
firefox: "latest"
| Use "latest" Firefox version in Travis test run | Use "latest" Firefox version in Travis test run
| YAML | mit | alexgibson/notify.js,alexgibson/notify.js |
54d964ff2d8e868c3610d0cf4226fcffd1eb6520 | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
env:
- DB=mysql
- DB=postgresql
before_script:
- mysql -e 'create database redirector_dummy_test; create database redirector_dummy_development;'
- psql -c 'create database redirector_dummy_... | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
env:
- DB=mysql
- DB=postgresql
before_script:
- mysql -e 'create database redirector_dummy_test; create database redirector_dummy_development;'
- psql -c 'create database redir... | Add Ruby 2.1.1 version to test against | Add Ruby 2.1.1 version to test against
| YAML | mit | vigetlabs/redirector,vigetlabs/redirector,vigetlabs/redirector |
89cb5ad5379d863c9aed367aa15610086444010b | .travis.yml | .travis.yml | language:
cpp
sudo:
required
notifications:
email: true
services:
- docker
before_install:
- docker build -t nazara .
script:
- docker run --name Nazara -v `pwd`:/NazaraEngine nazara
sh -c "
cd build &&
./premake5-linux64 --cc=clang gmake &&
cd gmake &&
make -j4
... | language:
cpp
sudo:
required
notifications:
email: true
services:
- docker
before_install:
- docker build -t nazara .
script:
- docker run --name Nazara -v `pwd`:/NazaraEngine nazara
sh -c "
cd build &&
./premake5-linux64 --cc=clang gmake &&
cd gmake &&
make -j4 &&... | Fix execution of units tests | Travis: Fix execution of units tests
| YAML | mit | DigitalPulseSoftware/NazaraEngine |
51b70205c61bb96d935beaa5719c1be12efb64df | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install nose
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# Enable 3.7 without globally enabling `dist: xenial` for other build jobs.
matrix:
include:
- python: "3.7"
dist: xenial
install:
- pip install nose
script: nosetests
| Enable Python 3.7 to be tested against | ci: Enable Python 3.7 to be tested against
Now that Python 3.7 is available, enable CI to run tests against it.
| YAML | mit | matze/pkgconfig |
ce9add4b6b97525875ab3e3b46ceec6279af5367 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --dev
script: phpunit
| language: php
php:
- 5.4
- 5.5
- hhvm
before_script:
- composer self-update || echo ''
- composer install --prefer-source --dev
script: phpunit
| Allow composer self-update to fail | Allow composer self-update to fail
| YAML | mit | hannesvdvreken/guzzle-clockwork |
aa6872be27acccad6f1ac5b9c7cf03698669ff5a | .travis.yml | .travis.yml | language: nix
sudo: true
git:
depth: 1
env:
global:
matrix:
- GHCVERSION=ghc822
- GHCVERSION=ghc842
matrix:
allow_failures:
exclude:
script:
- nix-build --argstr compiler $GHCVERSION
branches:
only:
- master
| language: nix
sudo: true
git:
depth: 1
env:
global:
matrix:
- GHCVERSION=ghc802
- GHCVERSION=ghc822
- GHCVERSION=ghc842
matrix:
allow_failures:
exclude:
script:
- nix-build --argstr compiler $GHCVERSION
branches:
only:
- master
| Add GHC 8.0.2 to the Travis build | Add GHC 8.0.2 to the Travis build
| YAML | bsd-3-clause | jwiegley/pipes-files |
aa69721b0d8c49c565b80051ea65288a7dcb66f1 | .travis.yml | .travis.yml | language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=conduit-conditional-get/index.html>' > target/doc/index.html &&
sudo pip install ghp-import &&
... | language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = nightly ] &&
echo '<meta http-equiv=refresh content=0;url=conduit-... | Test on rust 1.0.0, nightly, and beta | Test on rust 1.0.0, nightly, and beta
| YAML | mit | conduit-rust/conduit-conditional-get,conduit-rust/conduit |
7b44fef3fc5d25d0b58b645b1cae18a5e8c085da | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.7
- 1.8
- tip
before_install:
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
| language: go
sudo: false
go:
- 1.7
- 1.9
- tip
before_install:
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
| Replace tesetd go 1.8 by 1.9 in Travis CI | Replace tesetd go 1.8 by 1.9 in Travis CI
| YAML | mit | adlio/trello |
80c32934dd59ecbda7a12f36dc5855fdef40d533 | .travis.yml | .travis.yml | before_script:
- sudo apt-get install -qq doxygen
language: cpp
script: BOOST_ROOT=/usr cd build && cmake .. && make && make test
| before_script:
- sudo apt-get install -qq doxygen
- sudo apt-get install -qq libboost-dev
language: cpp
script: BOOST_ROOT=/usr cd build && cmake .. && make && make test
| Make sure boost dev is installed before compiling | Make sure boost dev is installed before compiling
| YAML | mit | naderman/pddl-qi |
4672de225897dc9bb01dc165d08d067c52b282e5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
# download test suite and run tests... submodule? meta testing project with
# all of the reference implementations?
script:
- npm run test
notifications:
email:
on_success: change
on_failure: change
| language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
sudo: false
# download test suite and run tests... submodule? meta testing project with
# all of the reference implementations?
script:
- npm run test
notifications:
email:
on_success: change
on_failure: change
| Use container build and more node versions. | Use container build and more node versions.
| YAML | bsd-3-clause | digitalbazaar/jsonld-signatures |
f24b2fe75ada6be66c7661284b15f4dbc504fd9e | .travis.yml | .travis.yml | language: node_js
node_js:
- 'stable'
- '8.10.0'
env:
global:
- TWILIO_ACCOUNT_SID=Your-Account-SID
- TWILIO_API_KEY=Your-Twilio-API-KEY
- TWILIO_API_SECRET=Your-Twilio-API-SECRET
- TWILIO_IPM_SERVICE_SID=Your-Twilio-IPM-SERVICE-SID
cache:
directories:
- node_modules
| language: node_js
node_js:
- 'stable'
- '8.10.0'
env:
global:
- TWILIO_ACCOUNT_SID=Your-Account-SID
- TWILIO_API_KEY=Your-Twilio-API-KEY
- TWILIO_API_SECRET=Your-Twilio-API-SECRET
- TWILIO_CHAT_SERVICE_SID=Your-Twilio-CHAT-SERVICE-SID
cache:
directories:
- node_modules
| Fix IPM Service ID reference | Fix IPM Service ID reference
| YAML | mit | TwilioDevEd/twiliochat-node,TwilioDevEd/twiliochat-node |
dea36141ce251ceeb0d2f54faaaa7959657ec56d | .travis.yml | .travis.yml | language: c
os:
- linux
- osx
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS='conda-forge'
- HDF5_VERSION=1.8
- HYPERION_HDF5_VERSION=18
- CONDA_DEPENDENCIES='numpy astropy h5py matplotlib yt mpich hdf5 gcc'
- SETUP_CMD='test'
- MPLBACKEND='Agg'
mat... | language: c
os:
- linux
- osx
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS='conda-forge'
- HDF5_VERSION=1.8
- HYPERION_HDF5_VERSION=18
- CONDA_DEPENDENCIES='numpy astropy h5py matplotlib yt mpich hdf5 gcc_linux-64'
- SETUP_CMD='test'
- MPLBACKEND='Agg... | Change which compiler we use on Travis | Change which compiler we use on Travis | YAML | bsd-2-clause | hyperion-rt/hyperion,hyperion-rt/hyperion,hyperion-rt/hyperion |
68468508763a2836ce8bc68ed007c22925d18600 | .travis.yml | .travis.yml | sudo: false
language: d
os:
- linux
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
matrix:
allow_failures:
- env: ARCH=x86
d: gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDFrMBMdhO0Obnr... | sudo: false
language: d
os:
- linux
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDFrMBMdhO0ObnrIb0GdvUsz0LEKxHerQN/+qSos5In5WI7ATddJyCxK1RvvzaxWdiMRurfQSSW5vAW0KCR... | Remove allow_failures from Travis config | Remove allow_failures from Travis config
| YAML | mit | JakobOvrum/Dirk |
08f612700adbf832a212be81cb535fe1bc69cdc8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
script:
"node tests/tests.js"
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
| Test in Node v0.12 and io.js | Test in Node v0.12 and io.js
| YAML | mit | mathiasbynens/Array.of |
d797d67aa8e92c78950daa1a8c15a748dec7a0f3 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- DJANGO=1.2.7
- DJANGO=1.3.7
- DJANGO=1.4.20
- DJANGO=1.5.12
- DJANGO=1.6.11
- DJANGO=1.7.8
- DJANGO=1.8.2
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install pep8 --use-mirrors
- pip install pyflakes
- pip install -q -e . --use-mirrors
#b... | language: python
python:
- "2.7"
env:
- DJANGO=1.4.20
- DJANGO=1.5.12
- DJANGO=1.6.11
- DJANGO=1.7.8
- DJANGO=1.8.2
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install pep8 --use-mirrors
- pip install pyflakes
- pip install -q -e . --use-mirrors
#before_script:
#- "pep8 --exclude... | Remove Django 1.2 and 1.3 from Travis Testing | Remove Django 1.2 and 1.3 from Travis Testing
| YAML | apache-2.0 | doganmeh/django-datatable-view,pivotal-energy-solutions/django-datatable-view,doganmeh/django-datatable-view,jangeador/django-datatable-view,greenbender/django-datatable-view,CloudNcodeInc/django-datatable-view,annaproch/django-datatable-view,annabed/django-datatable-view,jangeador/django-datatable-view,addgene/django-... |
7eff7710bcc67fcb7b4121320a6d7a5ac3380cf5 | .travis.yml | .travis.yml | {
"language": "node_js",
"node_js": 8.5.0,
"env": "CXX=g++-4.8",
"addons": {
"apt": {
"sources": ubuntu-toolchain-r-test,
"packages": ["g++-4.8", "libgif-dev"]
}
},
"install": [
"npm install typescript -g",
"npm install mocha -g",
"npm install ts-mocha -g",
"npm instal... | {
"language": "node_js",
"node_js": 8.5.0,
"env": "CXX=g++-4.8",
"addons": {
"apt": {
"sources": ubuntu-toolchain-r-test,
"packages": ["g++-4.8", "libgif-dev"]
}
},
"install": [
"npm install typescript -g",
"npm install mocha -g",
"npm install ts-mocha -g",
"npm instal... | Put specific version of canvas, since last version (2.0.0-alpha) has bugs. | Put specific version of canvas, since last version (2.0.0-alpha) has bugs.
| YAML | mit | Daru13/RubEns,Daru13/RubEns |
4eff047afca4d15dcf189e403a74035d136cfb04 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1
env:
matrix:
- SIDEKIQ_VERSION="~> 2.12.0"
- SIDEKIQ_VERSION="~> 2.17.0"
- SIDEKIQ_VERSION="~> 3.0.0"
branches:
only:
- master
services:
- redis
| language: ruby
rvm:
- 2.0
- 2.1
env:
matrix:
- SIDEKIQ_VERSION="~> 2.12"
- SIDEKIQ_VERSION="~> 2.17"
- SIDEKIQ_VERSION="~> 3.0"
- SIDEKIQ_VERSION="~> 3.1"
branches:
only:
- master
services:
- redis
| Test with Sidekiq 3.1 as well | Test with Sidekiq 3.1 as well
| YAML | mit | krasnoukhov/sidekiq-middleware |
c28d16994604a4fefdf9d27fde359eb17ed2b34b | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
- 7.2
sudo: false
services:
- mysql
before_install:
- mysql < tests/db-class-testing.sql
install:
- composer install
script:
- ./vendor/bin/phpunit --configuration phpunit.travis.xml
| language: php
php:
- 7.0
- 7.1
- 7.2
sudo: false
services:
- mysql
before_install:
- mysql < tests/db-class-testing.sql
install:
- if [[ ${TRAVIS_PHP_VERSION} >= '7.1' ]]; then composer install; fi
- if [[ ${TRAVIS_PHP_VERSION} == '7.0' ]]; then composer require --dev phpunit/phpunit ^6 phpunit/d... | Use different PHPUnit setup for PHP 7.0 | Use different PHPUnit setup for PHP 7.0 | YAML | mit | jr-cologne/db-class |
4f3a536eb011900b40600c9e70ebe10dc4052e60 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
branches:
only:
- master
| language: node_js
node_js:
- node
branches:
only:
- master
notifications:
slack:
secure: s0oc2e1NWqXhwsGtTQndL32Y222J01g0HuWS+BKRwDHxxSvgirhTxOrxDh89kpyukeUNrVg+bpW1lfBWvwcQXO/iuBgkHVgYd9mTwF0WaoOGaAmeY9yjprfN8EHwFyrc9VnCDqvLx34JHFdvGjW8fAuVNSjd53MnFu9U0//t+q5m8CqoMBFOsP/INHHxy2qfkt5xUsKNgvrBPe4OEFIdf2wGm1w0l... | Add slack integration for Travis | Add slack integration for Travis
| YAML | mit | pyr0tecnix/TasksManager |
8520c30d97d7273ab42f8927f7987434fed690bb | _config.yml | _config.yml | # Site settings
title: frippz
email: contact@frippz.se
description: >
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: ''
url: http://frippz.se
permalink... | # Site settings
title: frippz
email: contact@frippz.se
baseurl: ''
url: http://frippz.se
permalink: pretty
paginate: 5
# Default page settings
defaults:
-
scope:
path: ''
values:
author: Fredrik Frodlund
# Server settings
host: 0.0.0.0
# Build settings
markdown: kramdown
# Gems
gems: [
'jeky... | Remove description since it’s not used | Remove description since it’s not used
| YAML | mit | frippz/frippz.se,frippz/frippz.se,frippz/frippz.se |
c46a419a8667c107aedbbc629926acbbfcb9f538 | dev/config.yml | dev/config.yml | debug: true
site:
name: Warehouse (dev)
assets:
directory: "static"
database:
url: "postgresql://localhost/warehouse"
redis:
url: "redis://localhost:6379/0"
paths:
documentation: "data/packagedocs"
packages: "data/packages"
urls:
documentation: "http://pythonhosted.org/"
cache:
br... | debug: true
site:
name: Warehouse (dev)
assets:
directory: "data/static"
database:
url: "postgresql://localhost/warehouse"
redis:
url: "redis://localhost:6379/0"
paths:
documentation: "data/packagedocs"
packages: "data/packages"
urls:
documentation: "http://pythonhosted.org/"
cache:
... | Move the development static directory into the data/ directory | Move the development static directory into the data/ directory
| YAML | apache-2.0 | techtonik/warehouse,mattrobenolt/warehouse,robhudson/warehouse,robhudson/warehouse,mattrobenolt/warehouse,techtonik/warehouse,mattrobenolt/warehouse |
795f5dfb228fb0d9792d3bc6117334d11d9a81a3 | packages/sh/shentong.yaml | packages/sh/shentong.yaml | homepage: ''
changelog-type: ''
hash: af6f869df13d9b7c611f8a3152b40a939998891eddea62e951304801cefb4652
test-bench-deps: {}
maintainer: markjordanthom@gmail.com
synopsis: A Haskell implementation of the Shen programming language
changelog: ''
basic-deps:
bytestring: -any
base: ==4.*
time: -any
unordered-containe... | homepage: ''
changelog-type: ''
hash: 77261bdaf70f6e543bf9b3dd4c79907fba9ea3e00a5a6de5e452434aa22b3e8f
test-bench-deps: {}
maintainer: markjordanthom@gmail.com
synopsis: A Haskell implementation of the Shen programming language
changelog: ''
basic-deps:
bytestring: -any
base: ==4.*
time: -any
unordered-containe... | Update from Hackage at 2017-04-27T02:01:42Z | Update from Hackage at 2017-04-27T02:01:42Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
480a67af4df4d9d5085683e8c515700fd3687282 | packages/ty/type-fun.yaml | packages/ty/type-fun.yaml | homepage: https://github.com/s9gf4ult/type-fun
changelog-type: markdown
hash: 14240ce1def2ceb1ae5e57808cfac8b0025ae3bc37a9ba9e016dd9c77c550211
test-bench-deps:
base: -any
type-fun: -any
maintainer: s9gf4ult@gmail.com
synopsis: Collection of widely reimplemented type families
changelog: ! "# TODO\n* Add doctests\n* ... | homepage: https://github.com/s9gf4ult/type-fun
changelog-type: markdown
hash: c1d80758607192a27140fc2c5ed6877fd3a12793ce30735a829f17171e7a7d49
test-bench-deps:
base: -any
type-fun: -any
maintainer: s9gf4ult@gmail.com
synopsis: Collection of widely reimplemented type families
changelog: ! "# TODO\n* Add doctests\n* ... | Update from Hackage at 2016-06-11T09:22:25+0000 | Update from Hackage at 2016-06-11T09:22:25+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
8596c0daa32dab144210756a3bfddd4613554efe | packages/ye/yesod-ip.yaml | packages/ye/yesod-ip.yaml | homepage: https://github.com/andrewthad/yesod-ip#readme
changelog-type: ''
hash: 81af9c96c12a1a4e1e315c1851210b9369d9b61a5d8fbfcfa19ea0247fe00b70
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: Code for using the ip package with yesod
changelog: ''
basic-deps:
yesod-core: ! '>=1.4 && <1.7'
base:... | homepage: https://github.com/andrewthad/yesod-ip#readme
changelog-type: ''
hash: fd204ea8e576b7337265d850d505b0c06ad36c52dc5df97013c14f3b6b1d717b
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: Code for using the ip package with yesod
changelog: ''
basic-deps:
yesod-core: ! '>=1.4 && <1.7'
base:... | Update from Hackage at 2019-12-12T12:44:53Z | Update from Hackage at 2019-12-12T12:44:53Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
47b808fd68c2e11d47ed94c8a021143002089e36 | docker-compose.yml | docker-compose.yml | version: '2'
services:
web:
build: .
command: bundle exec puma -C config/puma.rb
volumes:
- .:/app
volumes_from:
- bundle
ports:
- "127.0.0.1:3000:3000"
depends_on:
- operationcode-psql
- redis
env_file:
- .env
bundle:
image: operationcodebackend_... | version: '2'
services:
web:
build: .
command: bundle exec puma -C config/puma.rb
volumes:
- .:/app
volumes_from:
- bundle
ports:
- "127.0.0.1:3000:3000"
depends_on:
- operationcode-psql
- redis
env_file:
- .env
bundle:
image: operationcodebackend_... | Add bundle prefix to sidekiq | Add bundle prefix to sidekiq
Resolves a "not found" error when running `make test` by adding the
`bundle exec` prefix
| YAML | mit | OperationCode/operationcode_backend,OperationCode/operationcode_backend,OperationCode/operationcode_backend |
ea0c45852327664969b50493fc3b2b791d4f5797 | docker-compose.yml | docker-compose.yml | version: "2"
services:
advent:
build: .
image: camphor/advent
expose:
- 8000
ports:
- 8000:8000
volumes:
- .:/app
command: bash -c 'python run.py --debug && cd output/ && python -m http.server'
| version: "2"
services:
advent:
build: .
image: camphor/advent
expose:
- 8000
ports:
- 8000:8000
volumes:
- .:/app
command: bash -c 'python -u run.py --debug && cd output/ && python -u -m http.server'
| Use 'python -u' to avoid buffering problems | Use 'python -u' to avoid buffering problems
| YAML | mit | camphor-/advent,camphor-/advent,camphor-/advent |
08f5da2ab27afc5aa43ee0981ad40ef0763e7ac0 | docker-compose.yml | docker-compose.yml | version: "3"
services:
varnish:
build: ./docker/varnish
ports:
- "${UCHAN_PORT}:80"
environment:
- UCHAN_VARNISH_MEMSIZE
depends_on:
- nginx
- app
- worker
nginx:
image: nginx:1.13-alpine
volumes:
- ./docker/nginx.conf:/etc/nginx/nginx.conf:ro
- ./uc... | version: "3"
services:
varnish:
build: ./docker/varnish
ports:
- "${UCHAN_PORT}:80"
environment:
- UCHAN_VARNISH_MEMSIZE
depends_on:
- nginx
- app
- worker
nginx:
image: nginx:1.13-alpine
volumes:
- ./docker/nginx.conf:/etc/nginx/nginx.conf:ro
- ./uc... | Make nginx depend on app | Make nginx depend on app
| YAML | mit | Floens/uchan,Floens/uchan,Floens/uchan,Floens/uchan,Floens/uchan |
99b8debbaaeef13c419e299c4528642abb0499ba | docker-compose.yml | docker-compose.yml | version: "3.7"
services:
web:
build: .
ports:
- "${WEB_PORT}:3000"
volumes:
- ./content/files:${APP}/content/files
mysql:
image: "mysql:latest"
environment:
- MYSQL_USERNAME=${MYSQL_USERNAME}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_DATABASE=${MYSQL_DATABASE}
... | version: "3.7"
services:
web:
build: .
ports:
- "${WEB_PORT}:3000"
volumes:
- ./content/files:${APP}/content/files
mysql:
image: "mysql:latest"
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=true
- MYSQL_USERNAME=${MYSQL_USERNAME}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
... | Apply random root password in mysql docker | Apply random root password in mysql docker
| YAML | mit | a1p4ca/2017-gongmo,a1p4ca/2017-gongmo |
344e37e8eec1f2b8c3855fa7c1a333a99e9c4861 | docker-compose.yml | docker-compose.yml | version: '2'
services:
web:
image: microcosm
build:
context: .
dockerfile: ./containers/Dockerfile.microcosm
ports:
- "80:80"
- "443:443"
volumes:
- .:/go/src/github.com/buro9/microcosm
depends_on:
- db
- cache
links:
- db
db:
image: "postgres... | version: '2'
services:
web:
image: microcosm
build:
context: .
dockerfile: ./containers/Dockerfile.microcosm
ports:
- "80:80"
- "443:443"
volumes:
- .:/go/src/github.com/buro9/microcosm
depends_on:
- db
- cache
links:
- db
db:
image: "postgres... | Update dependency postgres to v14 | Update dependency postgres to v14
| YAML | agpl-3.0 | buro9/microcosm,buro9/microcosm |
614e16cbeeacacdaec52ef3232fbf2cf13bd8159 | appveyor.yml | appveyor.yml | image: Visual Studio 2017
build: off
test_script:
- ps: build\build.ps1 -Script build\build.cake -Target AppVeyor
deploy: off
artifacts:
- path: output\**\*.nupkg
platform:
- x64 | image: Visual Studio 2017
build: off
test_script:
- ps: build\build.ps1 -Script build\build.cake -Target AppVeyor
deploy: off
artifacts:
- path: output\**\*.nupkg
| Revert "AppVeyor: try to run as x64" | Revert "AppVeyor: try to run as x64"
This reverts commit 4eada6edda38f854dd0631f862691cdeb088e3c9.
| YAML | mit | Abc-Arbitrage/Zebus |
54430653f79a15121f20503e42aae3de8f649f23 | packages/gh/ghc-gc-tune.yaml | packages/gh/ghc-gc-tune.yaml | homepage: http://code.haskell.org/~dons/code/ghc-gc-tune
changelog-type: ''
hash: 9df26546c9b6faff8b0926f87a9b7190b997ccfc9ba0a143addbbcce58f661ed
test-bench-deps: {}
maintainer: Don Stewart
synopsis: Graph performance of Haskell programs with different GC flags
changelog: ''
basic-deps:
base: ! '>=4 && <=5'
filepa... | homepage: https://github.com/ulysses4ever/ghc-gc-tune#readme
changelog-type: ''
hash: b81176bf9acfb1ce4931511156bcdc075099277e4e666dcefd3740327930852c
test-bench-deps: {}
maintainer: community
synopsis: Graph performance of Haskell programs with different GC flags
changelog: ''
basic-deps:
base: '>=4.7 && <5'
filep... | Update from Hackage at 2020-07-14T22:57:09Z | Update from Hackage at 2020-07-14T22:57:09Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
bb05853e2cfe7cda4b0d258e798e2d8a87c0ca6c | packages/in/include-env.yaml | packages/in/include-env.yaml | homepage: https://github.com/unfoldml/include-env
changelog-type: ''
hash: 315c060b0c3679958d2023a4408d353a5bd5973f3bd05b096e276cf82420cef4
test-bench-deps: {}
maintainer: oss@unfoldml.com
synopsis: Include the value of an environment variable at compile time
changelog: ''
basic-deps:
base: '>=4.7 && <5'
template-h... | homepage: https://github.com/unfoldml/include-env
changelog-type: markdown
hash: 85b8973ab9226d2ccaa0f5e3f5e64c59c54285a5659708add358267bbf9eecf6
test-bench-deps: {}
maintainer: oss@unfoldml.com
synopsis: Include the value of an environment variable at compile time
changelog: |
0.4.0.0
* add 'includeEnvMaybe'
basi... | Update from Hackage at 2021-10-26T08:31:30Z | Update from Hackage at 2021-10-26T08:31:30Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
395e9c6ac6fb72bd8d3c85598a06e6a46958ced7 | packages/un/union-angle.yaml | packages/un/union-angle.yaml | homepage: https://github.com/githubuser/union-angle#readme
changelog-type: markdown
hash: 0e4425bf99262b46958a599f96fa9060071d98695b218e059653c766de7d61ef
test-bench-deps:
base: '>=4.7 && <5'
union-angle: -any
maintainer: yoshikuni.jujo.pc@gmail.com
synopsis: Union type that include radian angle and degree angle
ch... | homepage: https://github.com/githubuser/union-angle#readme
changelog-type: markdown
hash: 1aad0108ec091196e0aeb1ba75a31bdeb8d0b8c5dbdb5656e7b5e17349c2bfc0
test-bench-deps:
base: '>=4.7 && <5'
union-angle: -any
maintainer: yoshikuni.jujo.pc@gmail.com
synopsis: Union type that include radian angle and degree angle
ch... | Update from Hackage at 2021-06-07T08:22:52Z | Update from Hackage at 2021-06-07T08:22:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
bd0ab5e65c48d37f1e9f951fc73f641169db60c1 | construi.yml | construi.yml | image: ruby:1.9
environment:
- CODECLIMATE_REPO_TOKEN
- COVERALLS_TOKEN
- GIT_COMMIT
- GIT_SSH_KEY
targets:
build:
- bundle install --path=vendor/bundle
- bundle exec rake spec
release:
- git merge --no-ff --commit origin/master
- git push origin ${GIT_COMMIT}:master
- bundle install ... | image: ruby:1.9
environment:
- CODECLIMATE_REPO_TOKEN
- COVERALLS_TOKEN
- GIT_COMMIT
- GIT_SSH_KEY
targets:
build:
- bundle install --path=vendor/bundle
- bundle exec rake spec
release:
- mkdir -p ~/.ssh
- cp ${GIT_SSH_KEY} ~/.ssh/id_rsa
- git merge --no-ff --commit origin/master
... | Copy GIT_SSH_KEY to correct location | Copy GIT_SSH_KEY to correct location
| YAML | apache-2.0 | lstephen/construi |
c89c3ed970a9509a6fcab5bb01cd04bea45d6ad9 | provisioning/run-vars.yml | provisioning/run-vars.yml | # Uses environment variables passed to the container on `docker run`
---
preferences_server_couchdb_host_address: "{{ lookup('env', 'COUCHDB_HOST_ADDRESS') | default('localhost:5984',true) }}"
preferences_server_environment: "{{ lookup('env', 'NODE_ENV') | default('preferencesServer.production',true) }}"
# self-test ... | # Uses environment variables passed to the container on `docker run`
---
preferences_server_couchdb_host_address: "{{ lookup('env', 'COUCHDB_HOST_ADDRESS') | default('localhost:5984',true) }}"
preferences_server_environment: "{{ lookup('env', 'NODE_ENV') | default('preferencesServer.production',true) }}"
# Although t... | Fix issue where supervisord config is not created. | Fix issue where supervisord config is not created.
| YAML | apache-2.0 | gpii-ops/docker-preferences-server |
c4277fcc3bf5e217675dfc8d532dceb658a4d877 | docker-compose.test.yml | docker-compose.test.yml | sut:
image: this
links:
- redis
command: echo "Test pass!"
redis:
image: redis | sut:
image: $IMAGE_NAME
links:
- redis
command: echo "Test pass!"
redis:
image: redis | Use $IMAGE_NAME instead of "this" | Use $IMAGE_NAME instead of "this"
| YAML | apache-2.0 | tutumcloud/quickstart-python,pchico83/quickstart-python |
2e3fb30faf83843435e9d57ba66eed18bdf7217b | recipes/esparto/meta.yaml | recipes/esparto/meta.yaml | {% set name = "esparto" %}
{% set version = "2.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/esparto-{{ version }}.tar.gz
sha256: 42983f2f83cd0a1c83cd336a6c4a73ea032e10c1cbc01edc1399080183b05691
build:
number: 0
noarc... | {% set name = "esparto" %}
{% set version = "2.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/esparto-{{ version }}.tar.gz
sha256: 42983f2f83cd0a1c83cd336a6c4a73ea032e10c1cbc01edc1399080183b05691
build:
number: 0
noarc... | Add dataclasses dep for all python versions | Add dataclasses dep for all python versions
Co-authored-by: Chris Burr <636cc37a360f5d769f3c27d51b72763be8b10f28@users.noreply.github.com> | YAML | bsd-3-clause | kwilcox/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,hadim/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/sta... |
1b3f5ab91fe2d69ca81203ea18b4ea5e35407502 | _data/en.yml | _data/en.yml | hero:
title: Hi there !
job_line_1: I'm a
job_line_2: helping other humans to commmunicate the value of what they do.
job_line_3: '[ "Designer", "Developer", "Entrepreneur", "Teacher" ]'
intro: |
Growth specialist with past experiences in product web design, engineering, and digital marketing.
I excel... | hero:
title: Hi there !
job_line_1: I'm a
job_line_2: helping other humans to commmunicate the value of what they do.
job_line_3: '[ "Designer", "Developer", "Entrepreneur", "Teacher" ]'
intro: |
Growth specialist with past experiences in product web design, engineering, and digital marketing.
<br/><br... | Add line break to bio | [Fix] Add line break to bio | YAML | mit | MathieuFortune/mathieufortune.github.io,MathieuFortune/mathieufortune.github.io |
bf4a95e5c996385e5796d6dbc140919a52644da2 | packages/le/left4deadrl.yaml | packages/le/left4deadrl.yaml | homepage: ''
changelog-type: ''
hash: c387a4eff3d0ea164441a432d317ef8d64219331abfa7106716ad45155c55854
test-bench-deps: {}
maintainer: andrew.pennebaker@gmail.com
synopsis: Wau codec
changelog: ''
basic-deps:
base: ! '>=4.3.1.0 && <5'
random-shuffle: ! '>=0.0.4 && <0.0.5'
random: ! '>=1.1 && <2'
hscharm: ! '>=0... | homepage: ''
changelog-type: ''
hash: 2ce52a572e3dfb2c0613e804403d038628ede522496d2b0df32340f4d403d5d1
test-bench-deps: {}
maintainer: andrew.pennebaker@gmail.com
synopsis: left4dead-inspired roguelike
changelog: ''
basic-deps:
base: ! '>=4.3.1.0 && <5'
random-shuffle: ! '>=0.0.4 && <0.0.5'
random: ! '>=1.1 && <2... | Update from Hackage at 2018-04-06T16:10:51Z | Update from Hackage at 2018-04-06T16:10:51Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7acad68e2f3a975f1a6fe6544293ca6d8c3cc8d2 | .gitlab-ci.yml | .gitlab-ci.yml | image: registry.roqua.nl/roqua/rq
before_script:
- docker login registry.roqua.nl -u "$REGISTRY_USERNAME" -p "$REGISTRY_PASSWORD"
docker:
retry: 2
script:
- rq build
- rq test shell bundle exec rake db:create
- rq test shell bin/rails db:environment:set RAILS_ENV=test
- rq test shell bundle exec... | image: registry.roqua.nl/roqua/rq
before_script:
- docker login registry.roqua.nl -u "$REGISTRY_USERNAME" -p "$REGISTRY_PASSWORD"
docker:
retry: 2
script:
- rq build
- rq test shell bundle exec rake db:create
- rq test shell bin/rails db:environment:set RAILS_ENV=test
- rq test shell bundle exec... | Update Docker image path for dependency scanning | Update Docker image path for dependency scanning | YAML | mit | roqua/screensmart,roqua/screensmart,roqua/screensmart |
d103ae34f22b68f180cff523af3f7fe68faa5616 | .gitlab-ci.yml | .gitlab-ci.yml | image: sorose/graphics:main
stages:
- build
- build_docs
- test
- deploy_docs
# - review
after_script:
- rm -rf dist build docs/build openlut.egg-info
build:
stage: build
before_script:
- apt-get update && apt-get -y install python3-pip gcc libmagickwand-dev
script:
... | image: debian:sid
stages:
- build
- build_docs
- test
- deploy_docs
# - review
after_script:
- rm -rf dist build docs/build openlut.egg-info
build:
stage: build
before_script:
- apt-get update && apt-get -y install python3-pip gcc libmagickwand-dev
script:
- p... | Use raw docker debian:sid image. | Use raw docker debian:sid image.
| YAML | mit | so-rose/openlut,so-rose/openlut,so-rose/openlut |
7b378b1550be5a91500fbaf074c2847fa601cee2 | .gitlab-ci.yml | .gitlab-ci.yml | image: ubuntu:latest
before_script:
- apt-get update
- apt-get install -qq git build-essential cmake doxygen cppcheck
my_project:
script:
- mkdir build && cd build
- cmake ..
- make | image: ubuntu:latest
stages:
- build
before_script:
- apt-get update
- apt-get install -qq git build-essential cmake doxygen cppcheck
build:linux:
stage: build
script:
- mkdir build && cd build
- cmake ..
- make
| Add stage info to gitlab | Add stage info to gitlab
| YAML | apache-2.0 | Mizux/snippets,Mizux/snippets |
c717966d9476440f7f0cb680c3f68cf7fc432f73 | .gitlab-ci.yml | .gitlab-ci.yml | # This file is a template, and might need editing before it works on your project.
# Template project: https://gitlab.com/pages/jekyll
# Docs: https://docs.gitlab.com/ce/pages/
image: ruby:2.3
variables:
JEKYLL_ENV: production
before_script:
- bundle install
test:
stage: test
script:
- bundle exec jekyll bui... | # This file is a template, and might need editing before it works on your project.
# Template project: https://gitlab.com/pages/jekyll
# Docs: https://docs.gitlab.com/ce/pages/
image: ruby:2.5
variables:
JEKYLL_ENV: production
before_script:
- gem install bundler -v 2.0.2
- bundle install
test:
stage: test
scr... | Install bundler 2, on ruby 2.5 | Install bundler 2, on ruby 2.5
| YAML | mit | Academany/academany.github.io,Academany/academany.github.io |
4cadad501e2fd5eee40bd225a7019b94db959806 | .swiftlint.yml | .swiftlint.yml | disabled_rules:
- file_length
- force_cast
- force_try
- function_body_length
- type_body_length
opt_in_rules:
- attributes
- closure_end_indentation
- closure_spacing
- conditional_returns_on_newline
- empty_count
- explicit_init
- first_where
- overridden_super_call
- private_outlet
- p... | disabled_rules:
- file_length
- force_cast
- force_try
- function_body_length
- identifier_name
- type_body_length
opt_in_rules:
- attributes
- closure_end_indentation
- closure_spacing
- conditional_returns_on_newline
- empty_count
- explicit_init
- fatal_error_message
- first_where
- im... | Disable Swiftlint identifier_name rule, and enable several other rules | Disable Swiftlint identifier_name rule, and enable several other rules
| YAML | mit | mattrubin/SwiftGit2,SwiftGit2/SwiftGit2,mattrubin/SwiftGit2,SwiftGit2/SwiftGit2 |
6322d5e4597be0002be713c396e5e1f5dc7f50fd | roles/logs/tasks/main.yml | roles/logs/tasks/main.yml | ---
- name: copy hdw info script
copy: src=hdw_info.sh dest=/tmp/hdw_info.sh mode=755
when: send_to_central_server|bool == True
- name: Collect hardware information
command: bash /tmp/hdw_info.sh
when: send_to_central_server|bool == True
- shell: rsync -azP -e 'ssh -p 443' /var/log/nginx/* /var/log/kern.log /... | ---
- name: copy hdw info script
copy: src=hdw_info.sh dest=/tmp/hdw_info.sh mode=755
when: send_to_central_server|bool == True
- name: Collect hardware information
command: bash /tmp/hdw_info.sh
when: send_to_central_server|bool == True
- name: A way to get the public IP of the device
shell: wget -qO- http... | Send also public IP address | Send also public IP address
| YAML | mit | ideascube/ansiblecube,ideascube/ansiblecube |
85f87f7f178e792061458185d076d46dcf5021b5 | metadata/com.mileskrell.texttorch.yml | metadata/com.mileskrell.texttorch.yml | Categories:
- Phone & SMS
License: GPL-3.0-or-later
AuthorName: Miles Krell
AuthorEmail: text.torch@mileskrell.com
AuthorWebSite: https://mileskrell.com
SourceCode: https://github.com/mileskrell/text-torch
IssueTracker: https://github.com/mileskrell/text-torch/issues
AutoName: Text Torch
RepoType: git
Repo: https:/... | Categories:
- Phone & SMS
License: GPL-3.0-or-later
AuthorName: Miles Krell
AuthorEmail: text.torch@mileskrell.com
AuthorWebSite: https://mileskrell.com
SourceCode: https://github.com/mileskrell/text-torch
IssueTracker: https://github.com/mileskrell/text-torch/issues
AutoName: Text Torch
RepoType: git
Repo: https:/... | Update Text Torch to 1.1.0 (3) | Update Text Torch to 1.1.0 (3)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
713a48b7096939a1de6e61761b4a958c36752fbd | appveyor.yml | appveyor.yml | version: 2.0.0-alpha{build}
branches:
only:
- master
- develop
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
nuget_user: dd4t
nuget_password:
se... | version: 2.0.0-alpha{build}
branches:
only:
- master
- develop
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
nuget_user: dd4t
nuget_password:
se... | Fix for AppVeyor nuget package upload. | Fix for AppVeyor nuget package upload.
| YAML | apache-2.0 | Ei8htSe7en/dd4t-2-net,dd4t/dd4t-2-net,dd4t/DD4T.Core |
166c09173efca5e407826e5cde361772fd5a9c3a | .github/workflows/ci.yml | .github/workflows/ci.yml | name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-16.04, ubuntu-18.04]
compiler: [gcc, clang]
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: apt-get
run: sudo apt-ge... | name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-16.04, ubuntu-18.04]
compiler: [gcc, clang]
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: apt-get
run: sudo apt-get install... | Tidy up and whitespace ocd | Tidy up and whitespace ocd
| YAML | bsd-2-clause | fgsch/libvmod-geoip2,fgsch/libvmod-geoip2,fgsch/libvmod-geoip2 |
6fcd662539590bd547733a4481dc790903eb2ff4 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
matrix:
java: [ '8', '11', '13', '14', 16 ]
os: [ 'ubuntu-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK
us... | name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
matrix:
java: [ '8', '11', '17' ]
os: [ 'ubuntu-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: action... | Use only LTS Java versions as of 2021-10 | Use only LTS Java versions as of 2021-10
I verified the build locally with Java 17.
| YAML | apache-2.0 | MutabilityDetector/MutabilityDetector,MutabilityDetector/MutabilityDetector |
4f5d672aff29a6d98223f9dcd7ff24436bd91d3e | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
branches:
- main
pull_request_target:
jobs:
stylelint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 12
- run: yarn
- name: Lint source files
run: yarn style... | name: CI
on:
push:
branches:
- main
pull_request_target:
jobs:
stylelint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
- run: yarn
- name: Lint source files
run: yarn stylelint
... | Use version instead of master | Use version instead of master | YAML | mit | primer/primer-css,primer/primer,primer/primer-css,primer/primer-css,primer/primer,primer/primer |
3c93e9af51b8943c0dc5497e42b3f363aaed771a | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Fish
run: |
sudo apt-add-repository -yn ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install -y fish
- name: Install Tools
ru... | name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Fish
run: |
sudo apt-add-repository -yn ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install -y fish
- name: Install Tools
ru... | Install just what we need | Install just what we need
| YAML | mit | fishery/shark |
c8c6be79c9cea710b72c77fcd31a6ea0b47b126a | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
pull_request:
workflow_dispatch:
env:
JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
strategy:
fail-fast: false
ma... | name: CI
on:
push:
pull_request:
workflow_dispatch:
env:
JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
strategy:
fail-fast: false
ma... | Allow errors on MacOS for now | Allow errors on MacOS for now
| YAML | mit | Codeforces/jrun,Codeforces/jrun |
633ffb596a65a8f528594fcb379e22d166decbb6 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Continuous Integration
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '10', '12', '13' ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with:
... | name: Continuous Integration
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- '10'
- '12'
# - '13'
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: actions/se... | Disable Node 13 for now | Disable Node 13 for now
| YAML | mit | jsumners/node-activedirectory |
560e4a11cc3d5c1820d56c2a85ec00dc81609864 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matr... | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matr... | Remove the duplicate cache action. | Remove the duplicate cache action.
| YAML | mit | tristandunn/pusher-fake,tristandunn/pusher-fake |
e38f3eb9778d02c862365b020795a4ac28f5778d | .github/workflows/ci.yml | .github/workflows/ci.yml | name: ci
on: [push, pull_request]
jobs:
lint-test:
name: lint and test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x]
steps:
- uses: actions/checkout@v2
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
... | name: ci
on: [push, pull_request]
jobs:
lint-test:
name: lint and test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x]
steps:
- uses: actions/checkout@v2
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
... | Set CC_TEST_REPORTER_ID in CI workflow | Set CC_TEST_REPORTER_ID in CI workflow
| YAML | mit | timkurvers/byte-buffer |
b44cf4e002b801b54a48c76314cce12f5da96180 | recipes/chemper/meta.yaml | recipes/chemper/meta.yaml | {% set name = "chemper" %}
{% set version = "1.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/mobleylab/chemper/archive/1.0.0.tar.gz
sha256: d8e1b0f29d005be6ba617f2dcb484706e4d06db1df1f6f4a26aa826e20472c7b
build:
noarch: python
number: 0
script: "{{ PYTHO... | {% set name = "chemper" %}
{% set version = "1.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/mobleylab/chemper/archive/1.0.0.tar.gz
sha256: d8e1b0f29d005be6ba617f2dcb484706e4d06db1df1f6f4a26aa826e20472c7b
build:
noarch: python
number: 0
script: "{{ PYTHO... | Add Horton as a maintainer | Add Horton as a maintainer
| YAML | bsd-3-clause | goanpeca/staged-recipes,hadim/staged-recipes,patricksnape/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,SylvainCorlay/staged-recipes,conda-forge/staged-recipes,scopatz/staged-recipes,kwilc... |
abbba5bbd1c5c3e7571933f763646074979ae218 | recipes/daemoniker/meta.yaml | recipes/daemoniker/meta.yaml | {% set name = "daemoniker" %}
{% set version = "0.2.3" %}
{% set hash = "d9b62c8d75227b3da88c0ca22b82e19d88d32dade4ffa838427235e0cdd5e578" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ ... | {% set name = "daemoniker" %}
{% set version = "0.2.3" %}
{% set hash = "d9b62c8d75227b3da88c0ca22b82e19d88d32dade4ffa838427235e0cdd5e578" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ ... | Fix license to be a valid identifier | Fix license to be a valid identifier
| YAML | bsd-3-clause | chrisburr/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,SylvainCorlay/staged-recipes,scopatz/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,chrisburr/sta... |
8a14f677f06a07543dff7aac998362630b87a7dd | playbooks/base-test/pre.yaml | playbooks/base-test/pre.yaml | - hosts: localhost
roles:
- role: emit-job-header
zuul_log_url: "http://logs.openstack.org"
- hosts: all
roles:
- add-build-sshkey
- start-zuul-console
- configure-unbound
- validate-host
- use-cached-repos
- mirror-workspace-git-repos
- mirror-info
- configure-mirrors
... | - hosts: localhost
roles:
- role: emit-job-header
zuul_log_url: "http://logs.openstack.org"
- hosts: all
roles:
- add-build-sshkey
- start-zuul-console
- configure-unbound
- validate-host
- use-cached-repos
- mirror-workspace-git-repos
- mirror-info
- configure-mirrors
| Remove fetch-zuul-cloner from base-test job | Remove fetch-zuul-cloner from base-test job
This has been moved into legacy-base, as it represents zuulv2
functionality. By moving it into legacy-base, we discourage native
zuulv3 jobs from using it, as it is not needed.
Once confirmed to be working, we'll promote the removal to base.
Change-Id: If32a373cdb8a4899cc... | YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
90754d0b780a74e83d3d1d3d5cd6184234d6009e | playbooks/docker-publish.yml | playbooks/docker-publish.yml | ---
- hosts: all
tasks:
- name: Login to Dockerhub
command: "docker login -u {{ doker_hub_login_api.user }} -p {{ doker_hub_login_api.password }}"
no_log: true
- name: List images
shell: "docker images --format '{% raw %}{{ .Repository }}:{{ .Tag }}{% endraw %}' | grep monasca"
- name:... | ---
- hosts: all
tasks:
- name: Login to Dockerhub
command: "docker login -u {{ doker_hub_login_api.user }} -p {{ doker_hub_login_api.password }}"
no_log: true
- name: List images
shell: "docker images --format '{% raw %}{{ .Repository }}:{{ .Tag }}{% endraw %}' | grep monasca"
- name:... | Fix zuul publish docker image job | Fix zuul publish docker image job
Change-Id: I019c24c8466b09da4632eea7dc7793aac223e3b5
| YAML | apache-2.0 | stackforge/monasca-api,openstack/monasca-api,stackforge/monasca-api,stackforge/monasca-api,openstack/monasca-api,openstack/monasca-api,stackforge/monasca-api |
cde8a10a9d01b4487e36ffb7b874e7a1d523eba5 | ansible/roles/common/tasks/create-user.yml | ansible/roles/common/tasks/create-user.yml | # ___ _
# ___ ___ _ __ ___ _ __ ___ ___ _ __ / / |_ __ _ ___| | _____
# / __/ _ \| '_ ` _ \| '_ ` _ \ / _ \| '_ \ / /| __/ _` / __| |/ / __|
# | (_| (_) | | | | | | | | | | | (_) | | | |/ / | || (_| \__ \ <\__ \
# \___\___/|_| |_| |_|_| |_... | # ___ _
# ___ ___ _ __ ___ _ __ ___ ___ _ __ / / |_ __ _ ___| | _____
# / __/ _ \| '_ ` _ \| '_ ` _ \ / _ \| '_ \ / /| __/ _` / __| |/ / __|
# | (_| (_) | | | | | | | | | | | (_) | | | |/ / | || (_| \__ \ <\__ \
# \___\___/|_| |_| |_|_| |_... | Create group: the value of groups | Create group: the value of groups
| YAML | bsd-2-clause | azumakuniyuki/make-server,azumakuniyuki/make-server,azumakuniyuki/make-server,azumakuniyuki/make-server |
55051561bce0dee31cc5200b6b6580bf9c0f9fd0 | site.yml | site.yml | ---
- hosts: all
gather_facts: no
roles:
- bootstrap
- { role: wipe, tags: [ "unsafe" ], when: "wipe | bool" }
- setup
- timedate
- { role: partition, tags: [ "unsafe" ] }
- { role: filesystem, tags: [ "unsafe" ],
when: "boot is defined or root is defined" }
- { role: mount,
... | ---
- hosts: all
gather_facts: no
roles:
- bootstrap
- { role: wipe, tags: [ "unsafe" ], when: "wipe | bool" }
- setup
- timedate
- { role: partition, tags: [ "unsafe" ] }
- { role: filesystem, tags: [ "unsafe" ],
when: "boot is defined or root is defined" }
- { role: mount,
... | Add prompt string for filesystem variable | Add prompt string for filesystem variable
| YAML | mit | crazyh/yasi |
a961fbb7593f2a1366d10ea3770443b4215c2556 | metadata/click.dummer.have_radiosion.yml | metadata/click.dummer.have_radiosion.yml | Categories:
- Multimedia
- Internet
License: GPL-3.0-only
AuthorName: deadlockz
WebSite: https://github.com/no-go/HaveRadiosion
SourceCode: https://github.com/no-go/HaveRadiosion
IssueTracker: https://github.com/no-go/HaveRadiosion/issues
Changelog: https://github.com/no-go/HaveRadiosion/releases
AutoName: HaveRad... | Categories:
- Multimedia
- Internet
License: GPL-3.0-only
AuthorName: deadlockz
WebSite: https://github.com/no-go/HaveRadiosion
SourceCode: https://github.com/no-go/HaveRadiosion
IssueTracker: https://github.com/no-go/HaveRadiosion/issues
Changelog: https://github.com/no-go/HaveRadiosion/releases
AutoName: HaveRad... | Update HaveRadiosion to 2.5 (25) | Update HaveRadiosion to 2.5 (25)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
bd34f65646d0a860152b67605ae81e58c8932164 | tasks/main.yml | tasks/main.yml | ---
- name: Install needed dependancies
action: "{{ ansible_pkg_mgr }} state=present name={{ item }}"
with_items:
- tar
- unzip
tags: ["packages","intellij"]
- name: Download intellij
get_url: url={{intellij_url}} dest={{intellij_tmp}}
tags: ["packages","intellij"]
- name: Ensure installation direct... | ---
- name: Install needed dependancies
action: "{{ ansible_pkg_mgr }} state=present name={{ item }}"
with_items:
- tar
- unzip
tags: ["packages","intellij"]
- name: Download intellij
get_url: url={{intellij_url}} dest={{intellij_tmp}}
tags: ["packages","intellij"]
- name: Ensure installation direct... | Correct install when new version is installed | Correct install when new version is installed
| YAML | isc | jdauphant/ansible-role-intellij |
efb8adcde0eeeebbfe1bd977e7ae453d1713e5b5 | manifests/toolbelt.yml | manifests/toolbelt.yml | name: toolbelt
instance_groups:
- name: all
instances: 1
azs: [z1]
vm_type: default
stemcell: default
networks:
- name: default
jobs:
- { name: toolbelt, release: toolbelt }
- { name: toolbelt-everything, release: toolbelt }
- name: quick
instances... | name: toolbelt
instance_groups:
- name: all
instances: 1
azs: [z1]
vm_type: default
stemcell: default
networks:
- name: default
jobs:
- { name: toolbelt, release: toolbelt }
- { name: toolbelt-everything, release: toolbelt }
- name: quick
instances... | Fix ci manifest. Thanks pipelines. | Fix ci manifest. Thanks pipelines.
| YAML | apache-2.0 | cloudfoundry-community/toolbelt-boshrelease,cloudfoundry-community/toolbelt-boshrelease |
1ce27e31bcb4d0a26c2b33b8b63e17f5b83c3cd8 | recipes/setuptools/meta.yaml | recipes/setuptools/meta.yaml | {% set name = "setuptools" %}
{% set version = "33.1.1" %}
package:
name: setuptools
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: 6b20352ed60ba08c43b3611bdb502286f7a869fbfcf472f40d7279f1e77d... | {% set name = "setuptools" %}
{% set version = "34.1.1" %}
package:
name: setuptools
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: be2108849161624b51b2a5cdba8117e2b3f7a9cf4301cf3839a55afc3a72... | Update setuptools recipe to version 34.1.1 | Update setuptools recipe to version 34.1.1
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
29564bc29927c7f9436a0a14a5d13d15ea84fabe | config/scgitx.yml | config/scgitx.yml | # Map github usernames to Socialcast usernames and assign review buddies
review_buddies:
janesmith:
socialcast_username: JaneSmith
buddy: johndoe
johndoe:
socialcast_username: JohnDoe
buddy: janesmith
specialty_reviewers:
a:
label: API
command: (a)pi
socialcast_username: JohnSmith
s... | # Map github usernames to Socialcast usernames and assign review buddies
review_buddies:
janesmith:
socialcast_username: JaneSmith
buddy: johndoe
johndoe:
socialcast_username: JohnDoe
buddy: janesmith
specialty_reviewers:
a:
label: API
command: (a)pi
socialcast_username: JohnSmith
s... | Make qa a default aggregate branch | Make qa a default aggregate branch
| YAML | mit | socialcast/socialcast-git-extensions |
90862a6dd942eb5e73100df88138c994babe68fc | roles/unbound/tasks/main.yml | roles/unbound/tasks/main.yml | ---
- yum: name=unbound state=latest
sudo: true
tags:
- packages
- yum: name=dnssec-trigger state=latest
sudo: true
tags:
- packages
when: '"gui" in group_names'
- file: path=/etc/unbound/{{ item }}/ state=directory mode=0755 owner=root group=unbound
with_items:
- local.d
- conf.d
sudo: True... | ---
- yum: name=unbound state=latest
sudo: true
tags:
- packages
- yum: name="{{ item }}" state=latest
sudo: true
with_items:
- dnssec-trigger
- dnssec-trigger-panel
tags:
- packages
when: '"gui" in group_names'
- file: path=/etc/unbound/{{ item }}/ state=directory mode=0755 owner=root group=u... | Install dnssec-trigger-panel on GUI workstations | Install dnssec-trigger-panel on GUI workstations
| YAML | mit | ryansb/workstation,ryansb/workstation,ryansb/workstation |
c8a6194eb55437fc7fd98c7e9f8613f6be55b432 | roles/vimfiles/vars/main.yml | roles/vimfiles/vars/main.yml | ---
vimfiles_repo: "git://github.com/mtchavez/vimfiles.git"
vimfiles_dir: "{{ documents_dir }}/vimfiles"
vimfiles_install_cmd: "./install.sh -u"
ycm_bundle_dir: "{{ home_dir }}/.vim/bundle/YouCompleteMe"
ycm_install_cmd: "./ycm-update.sh"
ycm_installed_file: "{{ home_dir }}/.ycm_installed"
macvim_install_options: "cus... | ---
vimfiles_repo: "git://github.com/mtchavez/vimfiles.git"
vimfiles_dir: "{{ documents_dir }}/vimfiles"
vimfiles_install_cmd: "./install.sh -u"
ycm_bundle_dir: "{{ home_dir }}/.vim/bundle/YouCompleteMe"
ycm_install_cmd: "./ycm-update.sh"
ycm_installed_file: "{{ home_dir }}/.ycm_installed"
macvim_install_options: ""
| Remove old macvim install options | Feat: Remove old macvim install options
| YAML | mit | mtchavez/mac-ansible |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.