commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266 values | license stringclasses 13 values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
2825c72067d4ca79ed0b1971c581a4faf3af1750 | .travis.yml | .travis.yml | sudo: false
cache: bundler
rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
gemfile:
- gemfiles/Gemfile-rails-5-0
- gemfiles/Gemfile-rails-5-1
- gemfiles/Gemfile-rails-5-2
- gemfiles/Gemfile-rails-master
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
exclude:
- rvm: 2.2.10
gemfile: gemfiles/Gemfile-rails-master
- rvm: 2.3.8
gemfile: gemfiles/Gemfile-rails-master
- rvm: 2.4.5
gemfile: gemfiles/Gemfile-rails-master
env:
global:
- "JRUBY_OPTS=-Xcext.enabled=true"
| cache: bundler
rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
gemfile:
- gemfiles/Gemfile-rails-5-0
- gemfiles/Gemfile-rails-5-1
- gemfiles/Gemfile-rails-5-2
- gemfiles/Gemfile-rails-master
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
exclude:
- rvm: 2.2.10
gemfile: gemfiles/Gemfile-rails-master
- rvm: 2.3.8
gemfile: gemfiles/Gemfile-rails-master
- rvm: 2.4.5
gemfile: gemfiles/Gemfile-rails-master
env:
global:
- "JRUBY_OPTS=-Xcext.enabled=true"
| Drop unused Travis sudo: false directive | CI: Drop unused Travis sudo: false directive | YAML | mit | rails/rails-controller-testing,rails/rails-controller-testing |
b96b1d8fab38b46de72f1feca055120a03a46e37 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: /go/src/github.com/SignifAi/snap-plugin-publisher-pubsub
docker:
- image: circleci/golang:1.8.1
steps:
- checkout
- run:
command: |
echo "---"
gcloud components install pubsub-emulator
echo "Fetching glide; note GOPATH is $GOPATH"
curl http://glide.sh/get | /bin/bash
echo "Building"
git config --global url.git@github.com:.insteadOf https://github.com/
make
echo "Testing"
make test
| version: 2
jobs:
build:
working_directory: /go/src/github.com/SignifAi/snap-plugin-publisher-pubsub
docker:
- image: circleci/golang:1.8.1
steps:
- checkout
- run:
command: |
echo "---"
curl -O https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-155.0.0-linux-x86_64.tar.gz
tar xzvf google-cloud-sdk-155.0.0-linux-x86_64.tar.gz
cd google-cloud-sdk
sh ./install.sh
cd ..
source ~/.bash_profile
gcloud components install pubsub-emulator
echo "Fetching glide; note GOPATH is $GOPATH"
curl http://glide.sh/get | /bin/bash
echo "Building"
git config --global url.git@github.com:.insteadOf https://github.com/
make
echo "Testing"
make test
| Install google-cloud-sdk to use pubsub-emulator | Install google-cloud-sdk to use pubsub-emulator
| YAML | apache-2.0 | SignifAi/snap-plugin-publisher-pubsub,SignifAi/snap-plugin-publisher-pubsub |
37a07ec24c93313c451a3c0fe15417d1376b33ca | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: dockerfile/java:oracle-java8
working_directory: ~/repo
environment:
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.gradle" }}
- v1-dependencies-
- run:
name: Download dependencies
command: ./gradlew dependencies
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "build.gradle" }}
- run:
name: Run tests
command: ./gradlew clean test
- run:
name: Save reports
command: |
mkdir -p ~/test-reports/
find . -type f -regex "./build/test-results/.*xml" -exec cp {} ~/test-reports/ \;
when: always
- store_test_results:
path: ~/test-reports/
- store_artifacts:
path: ~/test-reports/
| version: 2
jobs:
build:
docker:
- image: circleci/java:8-jdk
working_directory: ~/repo
environment:
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.gradle" }}
- v1-dependencies-
- run:
name: Download dependencies
command: ./gradlew dependencies
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "build.gradle" }}
- run:
name: Run tests
command: ./gradlew clean test
- run:
name: Save reports
command: |
mkdir -p ~/test-reports/
find . -type f -regex "./build/test-results/.*xml" -exec cp {} ~/test-reports/ \;
when: always
- store_test_results:
path: ~/test-reports/
- store_artifacts:
path: ~/test-reports/
| Use circleci official Oracle Java 8 | Use circleci official Oracle Java 8
| YAML | apache-2.0 | radarsh/gradle-test-logger-plugin,radarsh/gradle-test-logger-plugin |
df3f0b1d63ea6a8da7ce85c80f9b7f1622f5a1ce | .travis.yml | .travis.yml | language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- "pip install ."
- "pip install -r requirements-dev.txt"
# command to run tests, e.g. python setup.py test
script: py.test
services:
- redis-server
matrix:
allow_failures:
- python: "3.7"
| dist: xenial
language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- "pip install ."
- "pip install -r requirements-dev.txt"
# command to run tests, e.g. python setup.py test
script: py.test
services:
- redis-server
| Use 'dist: xenial' in Travis to add Python 3.7 testing | Use 'dist: xenial' in Travis to add Python 3.7 testing
Travis officially added support for Xenial (with Python 3.7) on
2018-11-08.
https://blog.travis-ci.com/2018-11-08-xenial-release
| YAML | mit | glasslion/redlock |
afc9098b5c522648ab3310fabe9a3567b0563b2f | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build_and_test:
working_directory: ~/project
docker:
- image: node:12
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
- yarn-packages-{{ .Branch }}
- yarn-packages-master
- yarn-packages-
- run:
name: Packager Version
command: yarn --version
- run:
name: Install Dependencies
command: yarn
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- node_modules/
- run:
name: Lint sources
command: yarn lint
- run:
name: Test
command: yarn test
workflows:
version: 2
build_and_test:
jobs:
- build_and_test
| version: 2
jobs:
build_and_test:
working_directory: ~/project
docker:
- image: node:12
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run:
name: Packager Version
command: yarn --version
- run:
name: Install Dependencies
command: yarn
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- node_modules/
- run:
name: Lint sources
command: yarn lint
- run:
name: Test
command: yarn test
workflows:
version: 2
build_and_test:
jobs:
- build_and_test
| Use same checksum for CI cache across branches | :new: Use same checksum for CI cache across branches
| YAML | mit | steelbrain/node-ssh |
4596b005b43f2d00e1fe73246d8b357d300f8d87 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
install:
- sudo apt-get update
- sudo apt-get install cmake libqt4-dev libuchardet-dev shntool ffmpeg
script:
- mkdir build
- cd build
- cmake -DBUILD_TESTS=Yes ..
- make
- tests/flacon_test
| language: cpp
compiler:
- gcc
- clang
install:
- sudo apt-get update
- sudo apt-get install cmake libqt4-dev libuchardet-dev shntool ffmpeg xvfb
script:
- mkdir build
- cd build
- cmake -DBUILD_TESTS=Yes ..
- make
- xvfb-run tests/flacon_test
| Use Xvfb for the flacon_test | Use Xvfb for the flacon_test
| YAML | lgpl-2.1 | flacon/flacon,flacon/flacon,flacon/flacon,flacon/flacon |
a1a7bbe8bc3afb4e45bed018e21ab73a4b55f79f | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build-arm:
machine:
image: ubuntu-2004:202101-01
resource_class: arm.medium
steps:
- checkout
- run: python run.py deps
- run: python run.py ci-driver
- run: python3 run.py ci-driver
workflows:
version: 2
Arm64 - Python 2.7/3.9:
jobs:
- build-arm
| version: 2
jobs:
python2.7:
machine:
image: ubuntu-2004:202101-01
resource_class: arm.medium
steps:
- checkout
- run: python run.py deps
- run: python run.py ci-driver
python3.9:
machine:
image: ubuntu-2004:202101-01
resource_class: arm.medium
steps:
- checkout
- run: python run.py deps
- run: python3 run.py ci-driver
workflows:
version: 2
arm64:
jobs:
- python2.7
- python3.9
| Revise CircleCI workflow to split Python versions | Revise CircleCI workflow to split Python versions
| YAML | mit | wbond/asn1crypto |
baa44dd121a38203eda1122ba7395cefa3bdafe5 | scripts/ci/run_driver_unit_windows.build.yml | scripts/ci/run_driver_unit_windows.build.yml | ---
platform: windows
inputs:
- name: nfs-volume-release
run:
path: powershell
args:
- "-ExecutionPolicy"
- "ByPass"
- "-File"
- "nfs-volume-release/scripts/ci/run_driver_unit_windows.ps1"
| ---
platform: windows
inputs:
- name: nfs-volume-release-concourse-tasks
- name: nfs-volume-release
run:
path: powershell
args:
- "-ExecutionPolicy"
- "ByPass"
- "-File"
- "nfs-volume-release-concourse-tasks/scripts/ci/run_driver_unit_windows.ps1"
| Use nfs-volume-release-concourse-task as input into new run_driver_unit_windows scripts | Use nfs-volume-release-concourse-task as input into new
run_driver_unit_windows scripts
Co-authored-by: Paul Warren <381ebbe39e97b92332c450533d9eabb9a873db86@emc.com>
| YAML | apache-2.0 | cloudfoundry-incubator/nfs-volume-release,cloudfoundry-incubator/nfs-volume-release,cloudfoundry-incubator/nfs-volume-release |
41f1200dbd0bdd3986423e8b38751b2419387ebc | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- sudo apt-get install gfortran
install:
- pip install scipy==0.12.0
- cat etc/requirements_dev.txt | grep -v "^#" | grep -v "^$" | grep -v ipython | grep -v nose== | xargs pip install --use-mirrors
- etc/ordered_pip.sh etc/requirements.txt
before_script:
- "flake8 zipline tests"
script:
- nosetests
| language: python
python:
- "2.7"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- sudo apt-get install gfortran
install:
- cat etc/requirements_dev.txt | grep -v "^#" | grep -v "^$" | grep -v ipython | grep -v nose== | grep -v scipy | grep -v matplotlib | grep -v statsmodels | grep -v patsy | xargs pip install --use-mirrors
- etc/ordered_pip.sh etc/requirements.txt
before_script:
- "flake8 zipline tests"
script:
- nosetests --exclude=^test_examples
| Exclude test_examples from Travis-CI, also exclude scipy. | BLD: Exclude test_examples from Travis-CI, also exclude scipy.
scipy build was getting too heavyweight for the Travis-CI build.
Removes test_examples from Travis-CI run, since the examples
depend on scipy and other compiled libraries.
Please, still run test_examples before submitting patches.
| YAML | apache-2.0 | AlirezaShahabi/zipline,aajtodd/zipline,enigmampc/catalyst,davidastephens/zipline,Scapogo/zipline,enigmampc/catalyst,stkubr/zipline,chrjxj/zipline,erikness/AlephOne,semio/zipline,umuzungu/zipline,nborggren/zipline,wilsonkichoi/zipline,dkushner/zipline,keir-rex/zipline,MonoCloud/zipline,michaeljohnbennett/zipline,kmather73/zipline,YuepengGuo/zipline,davidastephens/zipline,bartosh/zipline,sketchytechky/zipline,cmorgan/zipline,YuepengGuo/zipline,dhruvparamhans/zipline,StratsOn/zipline,umuzungu/zipline,ronalcc/zipline,CDSFinance/zipline,StratsOn/zipline,chrjxj/zipline,jordancheah/zipline,euri10/zipline,CDSFinance/zipline,euri10/zipline,gwulfs/zipline,jimgoo/zipline-fork,wubr2000/zipline,magne-max/zipline-ja,humdings/zipline,CarterBain/AlephNull,keir-rex/zipline,kmather73/zipline,Scapogo/zipline,stkubr/zipline,bartosh/zipline,CarterBain/AlephNull,aajtodd/zipline,dmitriz/zipline,cmorgan/zipline,mattcaldwell/zipline,jordancheah/zipline,wubr2000/zipline,dkushner/zipline,sketchytechky/zipline,iamkingmaker/zipline,AlirezaShahabi/zipline,DVegaCapital/zipline,ChinaQuants/zipline,michaeljohnbennett/zipline,quantopian/zipline,joequant/zipline,dhruvparamhans/zipline,quantopian/zipline,ronalcc/zipline,grundgruen/zipline,wilsonkichoi/zipline,otmaneJai/Zipline,jimgoo/zipline-fork,DVegaCapital/zipline,nborggren/zipline,iamkingmaker/zipline,ChinaQuants/zipline,gwulfs/zipline,morrisonwudi/zipline,joequant/zipline,florentchandelier/zipline,zhoulingjun/zipline,alphaBenj/zipline,florentchandelier/zipline,grundgruen/zipline,magne-max/zipline-ja,otmaneJai/Zipline,morrisonwudi/zipline,erikness/AlephOne,mattcaldwell/zipline,MonoCloud/zipline,alphaBenj/zipline,dmitriz/zipline,semio/zipline,zhoulingjun/zipline,humdings/zipline |
26c1779b5eb6f8e92f5bc0244e4fcfa5b4c18415 | .circleci/config.yml | .circleci/config.yml | version: 2.1
commands:
restore_npm_cache:
description: 'Restore npm cache'
steps:
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
save_npm_cache:
description: 'Save npm cache'
steps:
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
jobs:
build_test:
parallelism: 1
docker:
- image: circleci/node:12.17-browsers
working_directory: ~/repo
steps:
- checkout
- restore_npm_cache
- run: npm install
- run: npm rebuild node-sass
- run: npm run test_without_watch
# - run: npm run e2e
- run: npm run coveralls
- store_artifacts:
path: ~/repo/coverage
destination: coverage
deploy:
parallelism: 1
docker:
- image: circleci/node:12.17-browsers
working_directory: ~/repo
steps:
- checkout
- restore_npm_cache
- run: npm install
- run: git config --global user.name $GIT_USER_NAME
- run: git config --global user.email $GIT_USER_EMAIL
- run: npm run deploy
workflows:
version: 2
build-and-test:
jobs:
- build_test:
filters:
branches:
ignore:
- master
- gh-pages
deploy:
jobs:
- deploy:
filters:
branches:
only: master
| version: 2.1
commands:
restore_npm_cache:
description: 'Restore npm cache'
steps:
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
save_npm_cache:
description: 'Save npm cache'
steps:
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
jobs:
build_test:
parallelism: 1
docker:
- image: circleci/node:12.18-browsers
working_directory: ~/repo
steps:
- checkout
- restore_npm_cache
- run: npm install
- run: npm rebuild node-sass
- run: npm run test_without_watch
# - run: npm run e2e
- run: npm run coveralls
- store_artifacts:
path: ~/repo/coverage
destination: coverage
deploy:
parallelism: 1
docker:
- image: circleci/node:12.18-browsers
working_directory: ~/repo
steps:
- checkout
- restore_npm_cache
- run: npm install
- run: git config --global user.name $GIT_USER_NAME
- run: git config --global user.email $GIT_USER_EMAIL
- run: npm run deploy
workflows:
version: 2
build-and-test:
jobs:
- build_test:
filters:
branches:
ignore:
- master
- gh-pages
deploy:
jobs:
- deploy:
filters:
branches:
only: master
| Update circleci/node Docker tag to v12.18 | Update circleci/node Docker tag to v12.18
| YAML | mit | Tsuyoshi84/concentration,Tsuyoshi84/concentration,Tsuyoshi84/concentration |
3dbf68982332ff11e9c20ff2d782aa3d8abc7b6e | .travis.yml | .travis.yml | language: c
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y texinfo
script:
- ./autogen.sh && ./configure && make && make check
- ./autogen.sh && ./configure --enable-ucs4 && make && make check
notifications:
irc: "irc.oftc.net#liblouis" | language: c
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y texinfo
env:
- ENABLE_UCS4=
- ENABLE_UCS4=--enable-ucs4
script: "./autogen.sh && ./configure $ENABLE_UCS4 && make && make check"
notifications:
irc: "irc.oftc.net#liblouis"
| Make the ci server build two versions in parallel | Make the ci server build two versions in parallel
| YAML | lgpl-2.1 | BueVest/liblouis,vsmontalvao/liblouis,IndexBraille/liblouis,liblouis/liblouis,IndexBraille/liblouis,vsmontalvao/liblouis,hammera/liblouis,IndexBraille/liblouis,BueVest/liblouis,hammera/liblouis,BueVest/liblouis,liblouis/liblouis,IndexBraille/liblouis,vsmontalvao/liblouis,vsmontalvao/liblouis,liblouis/liblouis,BueVest/liblouis,vsmontalvao/liblouis,liblouis/liblouis,hammera/liblouis,hammera/liblouis,liblouis/liblouis,IndexBraille/liblouis,hammera/liblouis,hammera/liblouis,BueVest/liblouis,liblouis/liblouis,BueVest/liblouis |
039cc8d6647edea93f9bf4940e8dbead438b4b70 | .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:
# specify the version you desire here
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
- image: circleci/python:3.5.4
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements-test.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements-test.txt
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements-test.txt" }}
# run tests!
# this example uses Django's built-in test-runner
# other common Python testing frameworks include pytest and nose
# https://pytest.org
# https://nose.readthedocs.io
- run:
name: run tests
command: |
. venv/bin/activate
python -m pytest
- store_artifacts:
path: test-reports
destination: test-reports
| # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
- image: circleci/python:3.5.4
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements-test.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements-test.txt
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements-test.txt" }}
# run tests!
- run:
name: run tests
command: |
. venv/bin/activate
python -m pytest
- store_artifacts:
path: test-reports
destination: test-reports
| Remove out of date comments | Remove out of date comments
| YAML | mit | aurule/npc,aurule/npc |
d4b3d5dd2550b0e96f0c6bf622b3987efc7ba87a | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/circulate
docker:
- image: python:3.6.0
environment:
FLASK_CONFIG: testing
DATABASE_URL: postgresql://ubuntu@localhost/circle_test?sslmode=disable
- image: postgres:9.6.2
environment:
POSTGRES_USER: ubuntu
POSTGRES_DB: circle_test
POSTGRES_PASSWORD: ""
steps:
- checkout
- run:
name: Install Dependencies
command: pip install -r requirements/dev.txt | version: 2
jobs:
build:
working_directory: ~/circulate
docker:
- image: python:3.6.0
environment:
FLASK_CONFIG: testing
DATABASE_URL: postgresql://ubuntu@localhost/circle_test?sslmode=disable
- image: postgres:9.6.2
environment:
POSTGRES_USER: ubuntu
POSTGRES_DB: circle_test
POSTGRES_PASSWORD: ""
- image: selenium/standalone-chrome:3.1.0
steps:
- checkout
- run:
name: Install Dependencies
command: pip install -r requirements/dev.txt
- run:
name: Run Tests
command: python manage.py test | Add selenium and run tests | Add selenium and run tests
| YAML | mit | keybits/circulate,keybits/circulate,keybits/circulate |
0f6293cb8b584974a0db0e8515e763120bb6fcbb | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
hokusai: artsy/hokusai@0.7.2
not_staging_or_release: ¬_staging_or_release
filters:
branches:
ignore:
- staging
- release
only_master: &only_master
context: hokusai
filters:
branches:
only: master
only_release: &only_release
context: hokusai
filters:
branches:
only: release
workflows:
build-deploy:
jobs:
- hokusai/test:
<<: *not_staging_or_release
- hokusai/push:
name: push-staging-image
<<: *only_master
requires:
- hokusai/test
- hokusai/deploy-staging:
<<: *only_master
project-name: artsy-wwwify
requires:
- push-staging-image
- hokusai/deploy-production:
<<: *only_release | version: 2.1
orbs:
hokusai: artsy/hokusai@0.7.3
not_staging_or_release: ¬_staging_or_release
filters:
branches:
ignore:
- staging
- release
only_master: &only_master
context: hokusai
filters:
branches:
only: master
only_release: &only_release
context: hokusai
filters:
branches:
only: release
workflows:
build-deploy:
jobs:
- hokusai/test:
<<: *not_staging_or_release
- hokusai/push:
name: push-staging-image
<<: *only_master
requires:
- hokusai/test
- hokusai/deploy-staging:
<<: *only_master
project-name: artsy-wwwify
requires:
- push-staging-image
- hokusai/deploy-production:
<<: *only_release | Update hokusai orb from 0.7.2 to v0.7.3 | Update hokusai orb from 0.7.2 to v0.7.3
| YAML | mit | artsy/artsy-wwwify |
4075e6c07c71ea10e3114b65a64b8c2c81c7b21f | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
- "pypy"
- "3.5"
install:
- pip install .
- pip install -r requirements-dev.txt
- rm -rf build/
script: ./script/test -vv
# setting sudo to 'false' allows running on travis-ci new infra (docker)
sudo: false
| # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
- "pypy"
- "3.5"
- "3.6"
install:
- pip install .
- pip install -r requirements-dev.txt
- rm -rf build/
script: ./script/test -vv
# setting sudo to 'false' allows running on travis-ci new infra (docker)
sudo: false
| Add Python 3.6 to Travis tests | Add Python 3.6 to Travis tests
Signed-off-by: Yves Bastide <3b1fe340dba76bf37270abad774f327f50b5e1d8@botify.com>
| YAML | mit | botify-labs/simpleflow,botify-labs/simpleflow |
fcad271525c91e837dd6cd3d8270abd1c0ca7433 | .travis.yml | .travis.yml | language: ruby
before_install:
- gem i rubygems-update -v '3.0.4' && update_rubygems
- gem i bundler -v '2.0.2'
bundler_args: --without benchmark --jobs=3 --retry=3
matrix:
include:
- rvm: 2.4.6
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: jruby-9.2.7.0
env: JRUBY_OPTS=--debug
- rvm: ruby-head
- rvm: jruby-head
env: JRUBY_OPTS=--debug
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
env: JRUBY_OPTS=--debug
fast_finish: true
| language: ruby
before_install:
- gem i rubygems-update -v '3.0.4' && update_rubygems
- gem i bundler -v '2.0.2'
bundler_args: --without benchmark --jobs=3 --retry=3
matrix:
include:
- rvm: 2.4.6
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: jruby-9.2.7.0
env: JRUBY_OPTS=--debug
jdk: openjdk8
- rvm: ruby-head
- rvm: jruby-head
env: JRUBY_OPTS=--debug
jdk: openjdk8
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
env: JRUBY_OPTS=--debug
fast_finish: true
| Use JDK8 to avoid JDK11 problems/failures | Use JDK8 to avoid JDK11 problems/failures
https://github.com/jruby/jruby/issues/5736
| YAML | mit | colszowka/simplecov,colszowka/simplecov |
8515082276c70931ef81ffc0a2ea9f9f0740212c | .travis.yml | .travis.yml | language: ruby
script: bundle exec rspec spec
cache: bundler
rvm:
- 2.1
| language: ruby
script: bundle exec rspec spec
cache: bundler
rvm:
- 2.2
- 2.3.4
- 2.4.1
| Test on MRI 2.2, 2.3, 2.4. No more testing against 2.1. | Test on MRI 2.2, 2.3, 2.4. No more testing against 2.1.
| YAML | mit | pat/sliver |
c2db45a3d8881179e1b98372533f72360a13ce92 | .github/mcnotify.yml | .github/mcnotify.yml | # Configuration for McNotify - https://github.com/dessant/mcnotify
subscriptions:
- events:
# Events which trigger notifications
labeled: api-break
# Issue used for posting notifications
issue: 5560
# Comment to post on the notification thread. Optional placeholders: {label},
# {issue-author}, {issue-title} and {issue-url}
comment: >
@{issue-author} proposed the following change: "{issue-title}".
Please follow the changes or comment at {issue-url}.
| # Configuration for McNotify - https://github.com/kivy/mcnotify
subscriptions:
- events:
# Events which trigger notifications
labeled: api-break
# Issue used for posting notifications
issue: 5560
# Comment to post on the notification thread. Optional placeholders: {label},
# {issue-author}, {issue-title} and {issue-url}
comment: >
@{issue-author} proposed the following change: "{issue-title}".
Please follow the changes or comment at {issue-url}.
| Fix repo path in github app config comment | Fix repo path in github app config comment | YAML | mit | akshayaurora/kivy,LogicalDash/kivy,inclement/kivy,rnixx/kivy,akshayaurora/kivy,LogicalDash/kivy,matham/kivy,inclement/kivy,matham/kivy,kivy/kivy,matham/kivy,LogicalDash/kivy,inclement/kivy,rnixx/kivy,matham/kivy,kivy/kivy,rnixx/kivy,akshayaurora/kivy,kivy/kivy,LogicalDash/kivy |
31c1ae24f5ef99e794908b4c7fa965594a3e9433 | packages/op/opentype.yaml | packages/op/opentype.yaml | homepage: ''
changelog-type: ''
hash: d411e87ee176e63c11c13b44c7564608bcd77a0cf4ec5630e242043b569a4621
test-bench-deps: {}
maintainer: Kristof Bastiaensen
synopsis: Opentype loading and writing
changelog: ''
basic-deps:
ghc: ! '>=7.10.0'
bytestring: ! '>0.10.0'
base: ! '>=3 && <5'
time: ! '>1.4.0'
pretty-hex: ! '>=1.0'
containers: ! '>=0.5.3'
binary: ! '>=0.8.1.0'
vector: ! '>=0.10'
all-versions:
- '0.0.1'
author: Kristof Bastiaensen
latest: '0.0.1'
description-type: haddock
description: This library supports loading and writing of opentype files.
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: e7ddfdc5a0f6222ac3886fa2f9202a5aacc22cb77200480f82a56bb36d75de93
test-bench-deps: {}
maintainer: Kristof Bastiaensen
synopsis: Opentype loading and writing
changelog: ''
basic-deps:
ghc: ! '>=7.10.0'
microlens-th: ! '>0.4.0.0'
bytestring: ! '>0.10.0'
base: ! '>=3 && <5'
time: ! '>1.4.0'
unordered-containers: ! '>0.2.6.0'
pretty-hex: ! '>=1.0'
containers: ! '>=0.5.3'
binary: ! '>=0.8.1.0'
mtl: ! '>=2.2.1'
microlens: ! '>0.4.0.0'
vector: ! '>=0.10'
all-versions:
- '0.0.1'
- '0.1.0'
author: Kristof Bastiaensen
latest: '0.1.0'
description-type: haddock
description: This library supports loading and writing of opentype files.
license-name: BSD3
| Update from Hackage at 2016-11-30T13:59:08Z | Update from Hackage at 2016-11-30T13:59:08Z | YAML | mit | commercialhaskell/all-cabal-metadata |
e1e63e27ad963be85816e49b34e585af477c895e | packages/re/rerebase.yaml | packages/re/rerebase.yaml | homepage: https://github.com/nikita-volkov/rerebase
changelog-type: ''
hash: d9f62e3c79ea3ee69295d3475860ad1b306a1e716b56d77c5c129979b8a5a04e
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Reexports from "base" with a bunch of other standard libraries
changelog: ''
basic-deps:
rebase: ! '>=1.0.6 && <1.1'
all-versions:
- '1'
- '1.0.1'
author: Nikita Volkov <nikita.y.volkov@mail.ru>
latest: '1.0.1'
description-type: haddock
description: ! 'This package can be used as a drop-in replacement for \"base\",
with all the modules preserving the original APIs and
being located in the original namespaces.'
license-name: MIT
| homepage: https://github.com/nikita-volkov/rerebase
changelog-type: ''
hash: b4f125b83515f11952eca764c53973d8e82707648e7ce42650ac75594a06ff95
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Reexports from "base" with a bunch of other standard libraries
changelog: ''
basic-deps:
rebase: ! '>=1.0.6 && <1.1'
all-versions:
- '1'
- '1.0.1'
- '1.0.1.1'
author: Nikita Volkov <nikita.y.volkov@mail.ru>
latest: '1.0.1.1'
description-type: haddock
description: ! 'A rich drop-in replacement for \"base\".
For details and docs please visit
<https://github.com/nikita-volkov/rerebase the project''s GitHub page>.'
license-name: MIT
| Update from Hackage at 2016-11-30T23:53:56Z | Update from Hackage at 2016-11-30T23:53:56Z | YAML | mit | commercialhaskell/all-cabal-metadata |
415101182cde9a4eff3d32390da88b078b82a568 | entry_types/scrolled/package/documentation.yml | entry_types/scrolled/package/documentation.yml | toc:
- name: Frontend API
description: |
Main entry point of frontend API to register new content element types.
children:
- frontend_contentElementTypes
- name: Editor API
description: |
Main entry point of editor API to register new content element types.
children:
- editor_contentElementTypes
- name: Components
description: |
React components for building content elements.
children:
- Image
- InlineCaption
- Text
- Video
- name: Hooks
description: |
React hooks to obtain entry data.
children:
- useFile
- useI18n
- useEntryStructure
- useSectionStructure
- useEntryMetadata
- useFileRights
- useLegalInfo
- useCredits
- useShareProviders
- useShareUrl
- useMediaSettings
- name: Spec Support
description: |
Helper functions to use in specs.
children:
- normalizeSeed
- renderInEntry
- renderHookInEntry
- name: Storybook Support
description: |
Helper functions to use in content element stories.
children:
- filePermaId
- storiesOfContentElement
| toc:
- name: Frontend API
description: |
Main entry point of frontend API to register new content element types.
children:
- frontend_contentElementTypes
- name: Editor API
description: |
Main entry point of editor API to register new content element types.
children:
- editor_contentElementTypes
- name: Components
description: |
React components for building content elements.
children:
- Audio
- Image
- InlineCaption
- Text
- Video
- name: Hooks
description: |
React hooks to obtain entry data.
children:
- useFile
- useI18n
- useEntryStructure
- useSectionStructure
- useEntryMetadata
- useFileRights
- useLegalInfo
- useCredits
- useShareProviders
- useShareUrl
- useMediaSettings
- name: Spec Support
description: |
Helper functions to use in specs.
children:
- normalizeSeed
- renderInEntry
- renderHookInEntry
- name: Storybook Support
description: |
Helper functions to use in content element stories.
children:
- filePermaId
- storiesOfContentElement
| Document available test files in storybook support api doc | Document available test files in storybook support api doc
| YAML | mit | tf/pageflow,tf/pageflow,codevise/pageflow,tf/pageflow,codevise/pageflow,codevise/pageflow,tf/pageflow,codevise/pageflow |
91ef2b047d8e7cf0c851dfa82a336b55d07393db | packages/sh/shikensu.yaml | packages/sh/shikensu.yaml | homepage: https://github.com/icidasset/shikensu#README
changelog-type: ''
hash: 1a7f6b919e308819377373694f679d3b3df619d264522c1d8d1495d0b31f314c
test-bench-deps:
bytestring: -any
flow: -any
base: -any
unordered-containers: -any
text: ! '>=1.2 && <2'
filepath: -any
shikensu: -any
tasty-hunit: ==0.9.*
tasty: ==0.11.*
aeson: -any
directory: -any
maintainer: icid.asset@gmail.com
synopsis: A small toolset for building static websites
changelog: ''
basic-deps:
bytestring: ==0.10.*
flow: ==1.0.*
base: ==4.*
unordered-containers: ==0.2.*
filepath: ==1.4.*
Glob: ==0.7.*
aeson: ==0.11.*
directory: ! '>=1.2.6 && <2'
all-versions:
- '0.1.0'
- '0.1.1'
author: Steven Vandevelde
latest: '0.1.1'
description-type: haddock
description: Please see README.md
license-name: MIT
| homepage: https://github.com/icidasset/shikensu#README
changelog-type: ''
hash: 37f26a1c77420e05c3c4fa2a86aedb819474addde11f002b9ab9f53d42ef6ac8
test-bench-deps:
bytestring: -any
flow: -any
base: -any
unordered-containers: -any
text: ! '>=1.2 && <2'
filepath: -any
shikensu: -any
tasty-hunit: ==0.9.*
tasty: ==0.11.*
aeson: -any
directory: -any
maintainer: icid.asset@gmail.com
synopsis: A small toolset for building static websites
changelog: ''
basic-deps:
bytestring: ==0.10.*
flow: ==1.0.*
base: ==4.*
unordered-containers: ==0.2.*
filepath: ==1.4.*
Glob: ==0.7.*
aeson: ==0.11.*
directory: ! '>=1.2.6 && <2'
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
author: Steven Vandevelde
latest: '0.1.2'
description-type: haddock
description: Please see README.md
license-name: MIT
| Update from Hackage at 2016-11-16T13:16:10Z | Update from Hackage at 2016-11-16T13:16:10Z | YAML | mit | commercialhaskell/all-cabal-metadata |
782612fc98e9a2e4468603d2735ed725df0733ff | packages/to/tonatona.yaml | packages/to/tonatona.yaml | homepage: https://github.com/tonatona-project/tonatona#readme
changelog-type: ''
hash: 626dfedc50d4e0888823b2d7c105fd26d528c6c31f86e51c119eb3286b3fd8ff
test-bench-deps:
rio: ! '>=0.1'
base: ! '>=4.7 && <5'
tonatona: -any
tonaparser: ! '>=0.1'
doctest: -any
Glob: -any
maintainer: arow.okamoto+github@gmail.com
synopsis: meta application framework
changelog: ''
basic-deps:
rio: ! '>=0.1'
base: ! '>=4.7 && <5'
tonaparser: ! '>=0.1'
all-versions:
- 0.1.0.0
- 0.1.0.1
author: Kadzuya Okamoto, Dennis Gosnell
latest: 0.1.0.1
description-type: markdown
description: |
# tonatona
A main module for Tonatona, pluggable meta application framework.
license-name: MIT
| homepage: https://github.com/tonatona-project/tonatona#readme
changelog-type: ''
hash: 63f10b4b4ff0dd61d10458eb9557bdc6ee2f13afeccc5091df9aa65a85094ffb
test-bench-deps:
rio: ! '>=0.1'
base: ! '>=4.7 && <5'
tonatona: -any
tonaparser: ! '>=0.1'
doctest: -any
Glob: -any
maintainer: arow.okamoto+github@gmail.com
synopsis: meta application framework
changelog: ''
basic-deps:
rio: ! '>=0.1'
base: ! '>=4.7 && <5'
tonaparser: ! '>=0.1'
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.1.0
author: Kadzuya Okamoto, Dennis Gosnell
latest: 0.1.1.0
description-type: markdown
description: |
# tonatona
A main module for Tonatona, pluggable meta application framework.
license-name: MIT
| Update from Hackage at 2019-12-24T23:22:38Z | Update from Hackage at 2019-12-24T23:22:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3b1c6c807b95e0082e4cd24bc22fc7b6277f1711 | data/continuously_deployed_apps.yml | data/continuously_deployed_apps.yml | - account-api
- authenticating-proxy
- bouncer
- cache-clearing-service
- collections
- collections-publisher
- content-data-admin
- content-data-api
- content-publisher
- email-alert-frontend
- email-alert-service
- feedback
- finder-frontend
- frontend
- government-frontend
- govuk-account-manager-prototype
- govuk-attribute-service-prototype
- hmrc-manuals-api
- imminence
- info-frontend
- local-links-manager
- manuals-frontend
- manuals-publisher
- maslow
- publisher
- release
- service-manual-frontend
- service-manual-publisher
- short-url-manager
- sidekiq-monitoring
- smartanswers
- support
- travel-advice-publisher
- whitehall
| - account-api
- authenticating-proxy
- bouncer
- cache-clearing-service
- collections
- collections-publisher
- content-data-admin
- content-data-api
- content-publisher
- email-alert-frontend
- email-alert-service
- feedback
- finder-frontend
- frontend
- government-frontend
- govuk-account-manager-prototype
- govuk-attribute-service-prototype
- hmrc-manuals-api
- imminence
- info-frontend
- local-links-manager
- locations-api
- manuals-frontend
- manuals-publisher
- maslow
- publisher
- release
- service-manual-frontend
- service-manual-publisher
- short-url-manager
- sidekiq-monitoring
- smartanswers
- support
- travel-advice-publisher
- whitehall
| Mark Locations API as continuously deployed | Mark Locations API as continuously deployed
Trello: https://trello.com/c/gPRVvLXh/2848-set-up-remaining-infrastructure-for-locations-api-5 | YAML | mit | alphagov/release,alphagov/release,alphagov/release |
c232d419e6ce5d3f016e4548bf3121d005bc0475 | manifests/bosh-manifest/spec/fixtures/bosh-ssl-certificates.yml | manifests/bosh-manifest/spec/fixtures/bosh-ssl-certificates.yml | ---
secrets:
bosh_ca: |
-----BEGIN RSA PRIVATE KEY-----
BOS_CA_000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
-----END RSA PRIVATE KEY-----
| ---
secrets:
bosh_ca_cert: |
-----BEGIN RSA PRIVATE KEY-----
BOS_CA_000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
-----END RSA PRIVATE KEY-----
| Fix the test fixtures for the bosh ca | Fix the test fixtures for the bosh ca
| YAML | mit | alphagov/paas-cf,jimconner/paas-cf,alphagov/paas-cf,jimconner/paas-cf,jimconner/paas-cf,jimconner/paas-cf,alphagov/paas-cf,alphagov/paas-cf,jimconner/paas-cf,jimconner/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,jimconner/paas-cf,alphagov/paas-cf |
6e8d14c2ef96205507bbae51bab1ca939ee8c94c | deploy/roles/content/tasks/main.yml | deploy/roles/content/tasks/main.yml | ---
- name: Deploy the static HTML.
synchronize: src={{ srcroot }}/_site/ dest={{ docroot }}
archive=yes checksum=yes delete=yes
- name: Deploy the drc-backend backend.
synchronize: src={{ srcroot }}/src/drc-backend/ dest={{ backendroot }}
archive=yes checksum=yes delete=yes
notify:
- restart the drc-backend
- name: Install drc backend dependencies.
npm: path={{ backendroot }} production=yes
notify:
- restart the drc-backend
- name: Check the list of forever.js apps that are currently running.
command: forever list
register: forever_list
changed_when: false
- name: Start the backend service
command: forever start {{ foreverargs }} {{ backendroot }}/index.js
when: "forever_list.stdout.find('{{ backendroot }}') == -1"
| ---
- name: Deploy the static HTML.
synchronize: src={{ srcroot }}/_site/ dest={{ docroot }}
archive=yes checksum=yes
- name: Deploy the drc-backend backend.
synchronize: src={{ srcroot }}/src/drc-backend/ dest={{ backendroot }}
archive=yes checksum=yes
notify:
- restart the drc-backend
- name: Install drc backend dependencies.
npm: path={{ backendroot }} production=yes
notify:
- restart the drc-backend
- name: Check the list of forever.js apps that are currently running.
command: forever list
register: forever_list
changed_when: false
- name: Start the backend service
command: forever start {{ foreverargs }} {{ backendroot }}/index.js
when: "forever_list.stdout.find('{{ backendroot }}') == -1"
| Revert "Delete remote content that doesn't exist locally after build." | Revert "Delete remote content that doesn't exist locally after build."
| YAML | apache-2.0 | sigmavirus24/developer.rackspace.com,annegentle/developer.rackspace.com,wbentley15/developer.rackspace.com,sigmavirus24/developer.rackspace.com,rackerlabs/developer.rackspace.com,sigmavirus24/developer.rackspace.com,wbentley15/developer.rackspace.com,annegentle/developer.rackspace.com,smashwilson/developer.rackspace.com,sigmavirus24/developer.rackspace.com,ktbartholomew/developer.rackspace.com,wbentley15/developer.rackspace.com,annegentle/developer.rackspace.com,annegentle/developer.rackspace.com,rackerlabs/developer.rackspace.com,smashwilson/developer.rackspace.com,smashwilson/developer.rackspace.com,annegentle/developer.rackspace.com,wbentley15/developer.rackspace.com,wbentley15/developer.rackspace.com,rackerlabs/developer.rackspace.com,sigmavirus24/developer.rackspace.com,sigmavirus24/developer.rackspace.com,ktbartholomew/developer.rackspace.com,ktbartholomew/developer.rackspace.com,rackerlabs/developer.rackspace.com,smashwilson/developer.rackspace.com,smashwilson/developer.rackspace.com,annegentle/developer.rackspace.com,ktbartholomew/developer.rackspace.com,rackerlabs/developer.rackspace.com,ktbartholomew/developer.rackspace.com,ktbartholomew/developer.rackspace.com,rackerlabs/developer.rackspace.com |
81023541f8a8b8be008dd127c678bc3630fab292 | playbook-db.yml | playbook-db.yml | ---
- hosts: all
user: vagrant
sudo: true
sudo_user: root
vars:
mongodb_version: 3.0.0
cache_timeout: 259200
tasks:
- name: MongoDB | Fetch 10Gen signing key
shell: apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
- name: MongoDB | Add 10Gen repository
shell: echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list
- name: MongoDB | Install
apt: name=mongodb-org={{ mongodb_version }} state=present update_cache=yes
- name: MongoDB | Comment-out the bind_ip
lineinfile: dest=/etc/mongod.conf regexp=^bind_ip line="#bind_ip = 127.0.0.1"
- name: MongoDB | Ensure deamon is running correctly
service: name=mongod enabled=yes state=started
| ---
- hosts: all
user: vagrant
sudo: true
sudo_user: root
vars:
mongodb_version: 3.0.0
cache_timeout: 259200
tasks:
- name: MongoDB | Fetch 10Gen signing key
shell: apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
- name: MongoDB | Add 10Gen repository
shell: echo "deb http://repo.mongodb.org/apt/ubuntu "$(lsb_release -sc)"/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list
- name: MongoDB | Install
apt: name=mongodb-org={{ mongodb_version }} state=present update_cache=yes
- name: MongoDB | Comment-out the bind_ip
lineinfile: dest=/etc/mongod.conf regexp=^bind_ip line="#bind_ip = 127.0.0.1"
- name: MongoDB | Ensure deamon is running correctly
service: name=mongod enabled=yes state=started
| Create a list file for MongoDB 3.0 | Create a list file for MongoDB 3.0
| YAML | agpl-3.0 | SoftInstigate/restheart-ansible,SoftInstigate/restheart-vagrant |
4f4903979098a9f3f95e0a3087428fff71c2130a | _data/language.yml | _data/language.yml | info_website: "About Library Carpentry"
archive: "Archive"
blog_archive: "Blog Archive"
blog: "Blog"
comments_headline: "Dialogue & Discussion"
more: "More Information ›"
more_articles: "More Posts"
navigation_title: "Navigation"
new_blog_entries: "New Blog Posts"
next: "Next"
next_posts: "Next Posts"
previous: "Previous"
previous_posts: "Previous Posts"
read: "Read"
read_more: "Read Post ›"
if_you_are_not_redirected_automatically: "If you are not redirected automatically,"
click_here: "click here"
next_post_in: "Next Post in"
previous_post_in: "Previous Post in"
breadcrumb_start: "Home"
edit: "Edit"
this_content_is_open_source: "This content is open source."
help_improve_it: "Help improve it"
enter_search_term: "Enter search term and hit enter"
| info_website: "About Library Carpentry"
archive: "Archive"
blog_archive: "Blog Archive"
blog: "Blog"
comments_headline: "Dialogue & Discussion"
more: "More <span class='sr-only'>about {{ title }}</span> ›"
more_articles: "More Posts"
navigation_title: "Navigation"
new_blog_entries: "New Blog Posts"
next: "Next"
next_posts: "Next Posts"
previous: "Previous"
previous_posts: "Previous Posts"
read: "Read"
read_more: "Read More <span class='sr-only'>about {{ title }}</span>›"
if_you_are_not_redirected_automatically: "If you are not redirected automatically,"
click_here: "click here"
next_post_in: "Next Post in"
previous_post_in: "Previous Post in"
breadcrumb_start: "Home"
edit: "Edit"
this_content_is_open_source: "This content is open source."
help_improve_it: "Help improve it"
enter_search_term: "Enter search term and hit enter"
| Add span to read and read more to fix WAVE accessibility issue | Add span to read and read more to fix WAVE accessibility issue | YAML | mit | LibraryCarpentry/librarycarpentry.github.io,LibraryCarpentry/librarycarpentry.github.io,LibraryCarpentry/librarycarpentry.github.io |
c81280a327bdf072cbed7c4b378ef9b21c1e615f | packages/ac/acme-year.yaml | packages/ac/acme-year.yaml | homepage: http://github.com/joeyadams/hs-acme-year
changelog-type: ''
hash: dc3be1bad10f1ac89eeb461ee1b686e74b125515c4c3381234c3bc73ab534e67
test-bench-deps:
base: -any
time: -any
criterion: -any
acme-year: -any
maintainer: joeyadams3.14159@gmail.com
synopsis: Get the current year
changelog: ''
basic-deps:
base: <6
all-versions:
- '2013'
- '2014'
- '2015'
author: Joey Adams
latest: '2015'
description-type: haddock
description: ''
license-name: PublicDomain
| homepage: http://github.com/joeyadams/hs-acme-year
changelog-type: ''
hash: 201cbc6f0e326bc64ce283acbb52d70af29407c1e60101e9783dc76b3a40dc59
test-bench-deps:
base: -any
time: -any
criterion: -any
acme-year: -any
maintainer: joeyadams3.14159@gmail.com
synopsis: Get the current year
changelog: ''
basic-deps:
base: <6
all-versions:
- '2013'
- '2014'
- '2015'
- '2016'
author: Joey Adams
latest: '2016'
description-type: haddock
description: ''
license-name: PublicDomain
| Update from Hackage at 2016-11-28T03:34:31Z | Update from Hackage at 2016-11-28T03:34:31Z | YAML | mit | commercialhaskell/all-cabal-metadata |
d48b90ca94fa932141f7973f7af1e3a6565f0d1d | packages/hs/hsinspect.yaml | packages/hs/hsinspect.yaml | homepage: ''
changelog-type: ''
hash: db92f1adf9a9316393ec442c2c09e72bfdf5e5d76420ef0b36bd09a949406a86
test-bench-deps: {}
maintainer: Tseen She
synopsis: Inspect Haskell source files.
changelog: ''
basic-deps:
ghc: -any
base: '>=4.11 && <5'
time: -any
hsinspect: -any
text: -any
filepath: -any
containers: -any
ghc-boot: -any
directory: -any
all-versions:
- 0.0.1
- 0.0.2
- 0.0.3
- 0.0.4
- 0.0.5
- 0.0.6
- 0.0.7
- 0.0.8
- 0.0.9
- 0.0.10
- 0.0.11
- 0.0.12
- 0.0.13
- 0.0.14
author: Tseen She
latest: 0.0.14
description-type: haddock
description: Inspect @.hs@ files using the ghc api.
license-name: GPL-3.0-or-later
| homepage: ''
changelog-type: ''
hash: ed266cf9b93cfc0ac8c20d9d2b2f07fde8b1b686d1be2389aff524258bcef3a7
test-bench-deps: {}
maintainer: Tseen She
synopsis: Inspect Haskell source files.
changelog: ''
basic-deps:
ghc: -any
base: '>=4.11 && <5'
time: -any
hsinspect: -any
text: -any
filepath: -any
containers: -any
ghc-boot: -any
transformers: -any
directory: -any
all-versions:
- 0.0.1
- 0.0.2
- 0.0.3
- 0.0.4
- 0.0.5
- 0.0.6
- 0.0.7
- 0.0.8
- 0.0.9
- 0.0.10
- 0.0.11
- 0.0.12
- 0.0.13
- 0.0.14
- 0.0.15
author: Tseen She
latest: 0.0.15
description-type: haddock
description: Inspect @.hs@ files using the ghc api.
license-name: GPL-3.0-or-later
| Update from Hackage at 2020-10-07T10:18:48Z | Update from Hackage at 2020-10-07T10:18:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
fc52471eae58d84dd09e8711bda7623504dc862c | packages/in/indextype.yaml | packages/in/indextype.yaml | homepage: ''
changelog-type: ''
hash: 92e78f10a68bdaf26bf2c511b796a0591784fa91f6dcb0ecdb39e4f857c8192b
test-bench-deps:
base: ==4.9.*
hspec: ==2.4.*
maintainer: clintonmead@gmail.com
synopsis: A series of type families and constraints for "indexable" types.
changelog: ''
basic-deps:
base: ==4.9.*
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Clinton Mead
latest: '0.2.0.0'
description-type: haddock
description: ! 'This package deals with types that can roughly be "indexed" at compile
time by an integer.
For example, tuples and be indexed by their nth elements, and functions by their
nth argument.
A number of type functions allow one to extract these subtypes, i.e. the type of
the 2nd element of a given tuple.
Furthermore, constraints are defined which allow one to easily constrain types to
these index types,
e.g. a constraint that says "''t'' is a 3 tuple". ''Control.IndexT'' has more detail.'
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 3c6552545f53d0f7eb2f70a3e3df37b1625ae798f3927b25260506b73fe4c71b
test-bench-deps:
base: ==4.9.*
hspec: ==2.4.*
maintainer: clintonmead@gmail.com
synopsis: A series of type families and constraints for "indexable" types.
changelog: ''
basic-deps:
base: ==4.9.*
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.2.0'
author: Clinton Mead
latest: '0.2.2.0'
description-type: haddock
description: ! 'This package deals with types that can roughly be "indexed" at compile
time by an integer.
For example, tuples and be indexed by their nth elements, and functions by their
nth argument.
A number of type functions allow one to extract these subtypes, i.e. the type of
the 2nd element of a given tuple.
Furthermore, constraints are defined which allow one to easily constrain types to
these index types,
e.g. a constraint that says "''t'' is a 3 tuple". ''Control.IndexT'' has more detail.'
license-name: BSD3
| Update from Hackage at 2017-10-14T04:54:40Z | Update from Hackage at 2017-10-14T04:54:40Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ad8d2de6aef02f619d831cae79eabb7e0d1d7fa1 | hieradata/class/staging/api_elasticsearch.yaml | hieradata/class/staging/api_elasticsearch.yaml | ---
govuk_safe_to_reboot::can_reboot: 'overnight'
| ---
govuk_safe_to_reboot::can_reboot: 'overnight'
govuk_elasticsearch::version: '1.7.5'
| Prepare for api-elasticsearch upgrade to 1.7 | Prepare for api-elasticsearch upgrade to 1.7
| YAML | mit | alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet |
9b5704034284ea8f3f6fcd457b7f7973f4d8ce83 | packages/le/lenses.yaml | packages/le/lenses.yaml | homepage: http://github.com/jvranish/Lenses/tree/master
changelog-type: ''
hash: 460b859c20dc38ad0a8d3bd7ade69a6223bdd4f27e78eabc5b587a0dab9ef08d
test-bench-deps: {}
maintainer: jvranish@gmail.com
synopsis: Simple Functional Lenses
changelog: ''
basic-deps:
base: ! '>=4 && <6'
mtl: ! '>=1.1'
template-haskell: ! '>=2.10.0.0'
all-versions:
- '0.1.2'
- '0.1.3'
- '0.1.4'
- '0.1.5'
- '0.1.6'
- '0.1.7'
author: Job Vranish
latest: '0.1.7'
description-type: haddock
description: ! 'A simple but powerful implementation of function lenses (aka functional
references, accessors, etc..).
They allow an easy way to manipulate fields of records'
license-name: BSD3
| homepage: http://github.com/jvranish/Lenses/tree/master
changelog-type: ''
hash: 3ea7136f506826b8a623cdee58cc19512f9a56f50a4a842a29968e592cf4b54c
test-bench-deps: {}
maintainer: jvranish@gmail.com
synopsis: Simple Functional Lenses
changelog: ''
basic-deps:
base: ! '>=4 && <6'
mtl: ! '>=1.1'
template-haskell: ! '>=2.11.0.0'
all-versions:
- '0.1.2'
- '0.1.3'
- '0.1.4'
- '0.1.5'
- '0.1.6'
- '0.1.7'
- '0.1.8'
author: Job Vranish
latest: '0.1.8'
description-type: haddock
description: ! 'A simple but powerful implementation of function lenses (aka functional
references, accessors, etc..).
They allow an easy way to manipulate fields of records'
license-name: BSD3
| Update from Hackage at 2018-07-12T01:23:47Z | Update from Hackage at 2018-07-12T01:23:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a0b786c37e0c9fbde896a0a7f19be35ae80a1897 | roles/openshift_hosted_templates/meta/main.yml | roles/openshift_hosted_templates/meta/main.yml | ---
galaxy_info:
author: Andrew Butcher
description: OpenShift Hosted Templates
company: Red Hat, Inc.
license: Apache License, Version 2.0
min_ansible_version: 2.1
platforms:
- name: EL
versions:
- 7
categories:
- cloud
dependencies:
- role: lib_utils
| ---
galaxy_info:
author: Andrew Butcher
description: OpenShift Hosted Templates
company: Red Hat, Inc.
license: Apache License, Version 2.0
min_ansible_version: 2.1
platforms:
- name: EL
versions:
- 7
categories:
- cloud
dependencies:
- role: lib_utils
- role: openshift_facts
| Add missing dependency on openshift_facts | Add missing dependency on openshift_facts
| YAML | apache-2.0 | anpingli/openshift-ansible,aveshagarwal/openshift-ansible,kwoodson/openshift-ansible,maxamillion/openshift-ansible,anpingli/openshift-ansible,sdodson/openshift-ansible,markllama/openshift-ansible,sdodson/openshift-ansible,tagliateller/openshift-ansible,sosiouxme/openshift-ansible,liggitt/openshift-ansible,miminar/openshift-ansible,jwhonce/openshift-ansible,abutcher/openshift-ansible,ewolinetz/openshift-ansible,maxamillion/openshift-ansible,miminar/openshift-ansible,sosiouxme/openshift-ansible,akram/openshift-ansible,mwoodson/openshift-ansible,ewolinetz/openshift-ansible,twiest/openshift-ansible,bparees/openshift-ansible,abutcher/openshift-ansible,rjhowe/openshift-ansible,sdodson/openshift-ansible,miminar/openshift-ansible,sosiouxme/openshift-ansible,wbrefvem/openshift-ansible,bparees/openshift-ansible,aveshagarwal/openshift-ansible,kwoodson/openshift-ansible,rjhowe/openshift-ansible,abutcher/openshift-ansible,abutcher/openshift-ansible,maxamillion/openshift-ansible,ewolinetz/openshift-ansible,ewolinetz/openshift-ansible,twiest/openshift-ansible,rjhowe/openshift-ansible,wbrefvem/openshift-ansible,akram/openshift-ansible,maxamillion/openshift-ansible,twiest/openshift-ansible,akubicharm/openshift-ansible,akubicharm/openshift-ansible,jwhonce/openshift-ansible,jwhonce/openshift-ansible,wbrefvem/openshift-ansible,abutcher/openshift-ansible,rjhowe/openshift-ansible,nak3/openshift-ansible,aveshagarwal/openshift-ansible,tagliateller/openshift-ansible,akubicharm/openshift-ansible,openshift/openshift-ansible,akubicharm/openshift-ansible,liggitt/openshift-ansible,jwhonce/openshift-ansible,markllama/openshift-ansible,tagliateller/openshift-ansible,aveshagarwal/openshift-ansible,ewolinetz/openshift-ansible,markllama/openshift-ansible,rhdedgar/openshift-ansible,markllama/openshift-ansible,wbrefvem/openshift-ansible,tagliateller/openshift-ansible,miminar/openshift-ansible,liggitt/openshift-ansible,markllama/openshift-ansible,rjhowe/openshift-ansible,sosiouxme/openshift-ansible,sdodson/openshift-ansible,liggitt/openshift-ansible,gburges/openshift-ansible,mwoodson/openshift-ansible,openshift/openshift-ansible,rhdedgar/openshift-ansible,akubicharm/openshift-ansible,sdodson/openshift-ansible,aveshagarwal/openshift-ansible,jwhonce/openshift-ansible,tagliateller/openshift-ansible,nak3/openshift-ansible,twiest/openshift-ansible,wbrefvem/openshift-ansible,twiest/openshift-ansible,gburges/openshift-ansible,miminar/openshift-ansible,sosiouxme/openshift-ansible,maxamillion/openshift-ansible,liggitt/openshift-ansible |
6e60344f869c55bc811e742eea2a9b2aabb9b87e | packages/no/NoHoed.yaml | packages/no/NoHoed.yaml | homepage: https://github.com/pepeiborra/NoHoed
changelog-type: ''
hash: 402d80e3fff116152d1ca1cc41597820a8e62753905e4eb1ad475e7550d44a6d
test-bench-deps: {}
maintainer: pepeiborra@gmail.com
synopsis: Placeholder package to preserve debug ability via conditional builds
changelog: ''
basic-deps:
base: <5
all-versions:
- '0.1.0'
author: Jose Iborra
latest: '0.1.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: https://github.com/pepeiborra/NoHoed
changelog-type: ''
hash: 368f88e5d9f76ae6a9fd265e6b675f370214e37c9e9ce4aa0ff7872ae1999905
test-bench-deps: {}
maintainer: pepeiborra@gmail.com
synopsis: Placeholder package to preserve debug ability via conditional builds
changelog: ''
basic-deps:
base: <5
template-haskell: -any
all-versions:
- '0.1.0'
- '0.1.1'
author: Jose Iborra
latest: '0.1.1'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2017-08-31T22:01:00Z | Update from Hackage at 2017-08-31T22:01:00Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
475f4611780824a93beb42fd2c178401bba0e624 | packages/sp/spir-v.yaml | packages/sp/spir-v.yaml | homepage: https://github.com/expipiplus1/spir-v
changelog-type: ''
hash: 71fa7971fad8f2ce6d0eab96c2e817235822e5e0e048a844ac1288d35dee278f
test-bench-deps: {}
maintainer: spir.of.the.moment@monoid.al
synopsis: Some utilities for reading and writing SPIR-V files
changelog: ''
basic-deps:
base: ! '>=4.0 && <4.9'
all-versions:
- '0.0.0.1'
- '0.0.0.2'
author: Joe Hermaszewski
latest: '0.0.0.2'
description-type: markdown
description: ! '# spir-v
A package to help with the generation of Spir-V code from Haskell.
## Development info
Shortly after starting this I went traveling around the world without a computer,
hence this project''s immaturity. I''m back now, and hoping to restart this work
soon.
'
license-name: MIT
| homepage: https://github.com/expipiplus1/spir-v
changelog-type: ''
hash: abdc223cd4a183e48cd0a47c22c9334f53056fdf69f25419a51df7060583fa69
test-bench-deps: {}
maintainer: spir.of.the.moment@monoid.al
synopsis: Some utilities for reading and writing SPIR-V files
changelog: ''
basic-deps:
base: ! '>=4.0 && <4.9'
all-versions:
- '0.0.0.1'
- '0.0.0.2'
- '0.0.1.0'
author: Joe Hermaszewski
latest: '0.0.1.0'
description-type: markdown
description: ! "# spir-v\n\nA package to help with the generation of Spir-V code from
Haskell. Basically\nthis contains most of the important numbers in the SpirV Spec.\n\n##
Version\n\nThe version currently implemented here is Version 1.00 Revision 3.\n\nPlease
raise an issue if this package is out of date!\n\n## Generating \n\nThe \"generate\"
directory contains a program to generate much of this package's\nimplementation
from the html spir-v specification\n\n"
license-name: MIT
| Update from Hackage at 2016-02-16T21:21:02+0000 | Update from Hackage at 2016-02-16T21:21:02+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
faed4349eea3d7e191b8d4fc76571c0117a13413 | packages/ye/yeshql.yaml | packages/ye/yeshql.yaml | homepage: ''
changelog-type: ''
hash: 3f7e0f8c79b39a7b1da5702b7f84fcfbac49112df3b56932d7da978f1d74d163
test-bench-deps:
stm: -any
base: ! '>=4.6 && <5.0'
HDBC: -any
yeshql: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
maintainer: tdammers@gmail.com
synopsis: YesQL-style SQL database abstraction
changelog: ''
basic-deps:
base: ! '>=4.6 && <5.0'
HDBC: ! '>=2.4 && <3.0'
filepath: -any
parsec: ! '>=3.0 && <4.0'
containers: ! '>=0.5 && <1.0'
template-haskell: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Tobias Dammers
latest: '0.2.0.0'
description-type: haddock
description: ''
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 31031c14208320fd916b9e87c759131362633464891853e109d945a1656077b8
test-bench-deps:
stm: -any
base: ! '>=4.6 && <5.0'
HDBC: -any
yeshql: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
maintainer: tdammers@gmail.com
synopsis: YesQL-style SQL database abstraction
changelog: ''
basic-deps:
base: ! '>=4.6 && <5.0'
HDBC: ! '>=2.4 && <3.0'
filepath: -any
parsec: ! '>=3.0 && <4.0'
containers: ! '>=0.5 && <1.0'
template-haskell: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.0.1'
author: Tobias Dammers
latest: '0.2.0.1'
description-type: haddock
description: ''
license-name: MIT
| Update from Hackage at 2016-03-17T08:20:36+0000 | Update from Hackage at 2016-03-17T08:20:36+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
f0bd2d5ae11592a991065cc574da8bef34587934 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build
- test
- deploy
build:
image: docker
services:
- docker:dind
before_script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.gitlab.com
script:
- docker pull $CI_REGISTRY_IMAGE:CI_COMMIT_REF_NAME || true
- docker build --cache-from $CI_REGISTRY_IMAGE:CI_COMMIT_REF_NAME --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME .
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
deploy-beta:
stage: deploy
image:
name: alpine/helm:3.7.2
entrypoint: [""]
script:
- helm repo add kobo https://gitlab.com/api/v4/projects/32216873/packages/helm/stable
- helm -n beta upgrade kobo-beta kobo/kobo --atomic --set-string kpi.image.tag=${CI_COMMIT_SHORT_SHA} --reuse-values
environment:
name: beta
url: https://kf.beta.kobotoolbox.org
only:
refs:
- public-beta
variables:
- $CI_COMMIT_REF_PROTECTED
| stages:
- build
- test
- deploy
include:
- template: SAST.gitlab-ci.yml
build:
image: docker
services:
- docker:dind
before_script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.gitlab.com
script:
- docker pull $CI_REGISTRY_IMAGE:CI_COMMIT_REF_NAME || true
- docker build --cache-from $CI_REGISTRY_IMAGE:CI_COMMIT_REF_NAME --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME .
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
deploy-beta:
stage: deploy
image:
name: alpine/helm:3.7.2
entrypoint: [""]
script:
- helm repo add kobo https://gitlab.com/api/v4/projects/32216873/packages/helm/stable
- helm -n beta upgrade kobo-beta kobo/kobo --atomic --set-string kpi.image.tag=${CI_COMMIT_SHORT_SHA} --reuse-values
environment:
name: beta
url: https://kf.beta.kobotoolbox.org
only:
refs:
- public-beta
variables:
- $CI_COMMIT_REF_PROTECTED
| Add SAST to Gitlab pipeline | Add SAST to Gitlab pipeline | YAML | agpl-3.0 | kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi |
4f182d1b298df3071542c01172f2b8c5896fde7a | .gitlab-ci.yml | .gitlab-ci.yml | image: adaskit/libsgm:0.1
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
- test
.build_template: &build_definition
stage: build
tags:
- docker
script:
- cmake . -DENABLE_SAMPLES=${build_samples} -DLIBSGM_SHARED=${build_shared} -DENABLE_TESTS=${build_tests}
- make
build:samples_on:shared:
variables:
build_samples: "ON"
build_shared: "ON"
build_tests: "OFF"
<<: *build_definition
build:samples_on:static:
variables:
build_samples: "ON"
build_shared: "OFF"
build_tests: "OFF"
<<: *build_definition
build:samples_off:shared:
variables:
build_samples: "OFF"
build_shared: "ON"
build_tests: "OFF"
<<: *build_definition
build:samples_off:static:
variables:
build_samples: "OFF"
build_shared: "OFF"
build_tests: "OFF"
<<: *build_definition
build:test:
variables:
build_samples: "OFF"
build_shared: "OFF"
build_tests: "ON"
artifacts:
paths:
- ./test/sgm-test
expire_in: 1d
<<: *build_definition
test:
stage: test
tags:
- nvidia-docker
script:
- ./test/sgm-test
dependencies:
- build:test
| image: adaskit/libsgm:0.1
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
- test
.build_template: &build_definition
stage: build
tags:
- docker
script:
- cmake . -DWITH_OPENCV="ON" -DENABLE_SAMPLES=${build_samples} -DLIBSGM_SHARED=${build_shared} -DENABLE_TESTS=${build_tests}
- make
build:samples_on:shared:
variables:
build_samples: "ON"
build_shared: "ON"
build_tests: "OFF"
<<: *build_definition
build:samples_on:static:
variables:
build_samples: "ON"
build_shared: "OFF"
build_tests: "OFF"
<<: *build_definition
build:samples_off:shared:
variables:
build_samples: "OFF"
build_shared: "ON"
build_tests: "OFF"
<<: *build_definition
build:samples_off:static:
variables:
build_samples: "OFF"
build_shared: "OFF"
build_tests: "OFF"
<<: *build_definition
build:test:
variables:
build_samples: "OFF"
build_shared: "OFF"
build_tests: "ON"
artifacts:
paths:
- ./test/sgm-test
expire_in: 1d
<<: *build_definition
test:
stage: test
tags:
- nvidia-docker
script:
- ./test/sgm-test
dependencies:
- build:test
| Update GitLab CI for WITH_OPENCV option | Update GitLab CI for WITH_OPENCV option
| YAML | apache-2.0 | fixstars/libSGM,fixstars-jp/libSGM |
f21afc3182f04eb12b7122d152c0847721ab48b8 | metadata/at.h4x.awhip.yml | metadata/at.h4x.awhip.yml | Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Michael Pöhn
AuthorEmail: michael.poehn@fsfe.org
WebSite: https://codeberg.org/uniqx/AWhip
SourceCode: https://codeberg.org/uniqx/AWhip
IssueTracker: https://codeberg.org/uniqx/AWhip/issues
AutoName: A Whip
RepoType: git
Repo: https://codeberg.org/uniqx/AWhip.git
Builds:
- versionName: 1.0.0
versionCode: 10000
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.0.1
versionCode: 10001
commit: v1.0.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.1
CurrentVersionCode: 10001
| Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Michael Pöhn
AuthorEmail: michael.poehn@fsfe.org
WebSite: https://codeberg.org/uniqx/AWhip
SourceCode: https://codeberg.org/uniqx/AWhip
IssueTracker: https://codeberg.org/uniqx/AWhip/issues
AutoName: A Whip
RepoType: git
Repo: https://codeberg.org/uniqx/AWhip.git
Builds:
- versionName: 1.0.0
versionCode: 10000
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.0.1
versionCode: 10001
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 10100
commit: a37216e57792bd92dd7b7947429ffa696e1c1b41
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.1.0
CurrentVersionCode: 10100
| Update A Whip to 1.1.0 (10100) | Update A Whip to 1.1.0 (10100)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
5a674aff74defe02503ecaa54a7d7ae226322237 | src/stackdriver-spinner/manifest.yml | src/stackdriver-spinner/manifest.yml | ---
applications:
- name: spinner
buildpack: go_buildpack
memory: 1G
env:
GOPACKAGENAME: github.com/cloudfoundry-community/stackdriver-tools/src/stackdriver-spinner
GOVERSION: go1.8
GOOGLE_APPLICATION_CREDENTIALS: ./credentials.json
SPINNER_COUNT: 999
SPINNER_WAIT: 300
GCP_PROJECT: <project-name>
| ---
applications:
- name: spinner
buildpack: go_buildpack
memory: 1G
env:
GOPACKAGENAME: github.com/cloudfoundry-community/stackdriver-tools/src/stackdriver-spinner
GOVERSION: go1.11
GOOGLE_APPLICATION_CREDENTIALS: ./credentials.json
SPINNER_COUNT: 999
SPINNER_WAIT: 300
GCP_PROJECT: <project-name>
| Update stackdriver-spinner's to go 1.11 | Update stackdriver-spinner's to go 1.11
| YAML | apache-2.0 | cloudfoundry-community/stackdriver-tools,cloudfoundry-community/stackdriver-tools,cloudfoundry-community/stackdriver-tools,cloudfoundry-community/stackdriver-tools |
990bfcf4580ef707a8f4d56b8e79cf2e25927498 | roles/set_hostname/tasks/main.yml | roles/set_hostname/tasks/main.yml | ---
- name: set hostname
hostname: name={{ inventory_hostname }}{{ domain_to_set }}
| ---
- name: set hostname
hostname: name={{ inventory_hostname }}{{ domain_to_set }}
register: result
- name: update ansible_fqdn and ansible_hostname
set_fact:
ansible_fqdn: "{{ inventory_hostname }}{{ domain_to_set }}"
ansible_hostname: "{{ inventory_hostname }}"
when: result.changed
| Update facts when hostname is changed in set_hostname role. | Update facts when hostname is changed in set_hostname role.
| YAML | mit | hnakamur/ansible-playbooks,hnakamur/ansible-playbooks |
447caeea58c1b0224402b1e8bfe38d1239b8ddfe | .github/workflows/set-automatic-deploys-enabled.yaml | .github/workflows/set-automatic-deploys-enabled.yaml | name: Set automatic deploys
on:
workflow_dispatch:
inputs:
resetImageTag:
description: 'Reset image tag to main'
required: false
default: false
type: boolean
automaticDeploysEnabled:
description: 'Activate automatic deploys'
required: false
default: true
type: boolean
environment:
description: 'Environment to deploy to'
required: true
type: choice
options:
- integration
- staging
- production
default: 'integration'
jobs:
set_automatic_deploys_enabled:
name: Set automatic_deploys_enabled to ${{ github.event.inputs.environment }}
uses: alphagov/govuk-infrastructure/.github/workflows/set-automatic-deploys-enabled.yaml@main
with:
resetImageTag: ${{ github.event.inputs.resetImageTag == 'true' }}
automaticDeploysEnabled: ${{ github.event.inputs.automaticDeploysEnabled == 'true' }}
environment: ${{ github.event.inputs.environment }}
secrets:
WEBHOOK_TOKEN: ${{ secrets.GOVUK_INTEGRATION_ARGO_EVENTS_WEBHOOK_TOKEN }}
WEBHOOK_URL: ${{ secrets.GOVUK_INTEGRATION_ARGO_EVENTS_WEBHOOK_URL }}
GOVUK_CI_GITHUB_API_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
| name: Set automatic deploys
run-name: Set automatic deploys to ${{ inputs.setAutomaticDeploys }} in ${{ inputs.environment }}
on:
workflow_dispatch:
inputs:
setAutomaticDeploys:
description: 'Set automatic deploys'
required: false
type: choice
options:
- enabled
- disabled
default: 'enabled'
environment:
description: 'Environment'
required: true
type: choice
options:
- integration
- staging
- production
default: 'integration'
jobs:
set-automatic-deploys:
name: Set automatic deploys
uses: alphagov/govuk-infrastructure/.github/workflows/set-automatic-deploys.yaml@main
with:
automaticDeploysEnabled: ${{ github.event.inputs.automaticDeploys == 'enabled' }}
environment: ${{ github.event.inputs.environment }}
secrets:
WEBHOOK_TOKEN: ${{ secrets.GOVUK_ARGO_EVENTS_WEBHOOK_TOKEN }}
WEBHOOK_URL: ${{ secrets.GOVUK_ARGO_EVENTS_WEBHOOK_URL }}
GH_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
| Update set automatic deploy workflow | Update set automatic deploy workflow
This updates the workflow to use the changes in the resuable workflow.
| YAML | mit | alphagov/publisher,alphagov/publisher,alphagov/publisher |
f689c66337c8a2037329b04aac73bb46ef724fe4 | docs/docker-compose.yml | docs/docker-compose.yml | version: '3'
services:
site:
image: jekyll/jekyll:3.8.6
command: jekyll serve --livereload --verbose
ports:
- 4000:4000
volumes:
- .:/srv/jekyll
- ./vendor/bundle:/usr/local/bundle
| version: '3'
services:
site:
image: jekyll/jekyll:4.2.0
command: jekyll serve --incremental
ports:
- 4000:4000
volumes:
- .:/srv/jekyll
- ./vendor/bundle:/usr/local/bundle
| Update `jekyll/jekyll:3.8.6` to `4.2.0`. Also remove `--livereload --verbose` and add `--incremental` | Update `jekyll/jekyll:3.8.6` to `4.2.0`. Also remove `--livereload --verbose` and add `--incremental`
| YAML | apache-2.0 | google/evergreen-checker,google/evergreen-checker |
4ae3bbcf1336fbac92c1191bf00311a592bf0c47 | pkg/oauth2/pubspec.yaml | pkg/oauth2/pubspec.yaml | name: oauth2
version: 0.9.0
author: "Dart Team <misc@dartlang.org>"
homepage: http://www.dartlang.org
description: >
A client library for authenticating with a remote service via OAuth2 on
behalf of a user, and making authorized HTTP requests with the user's
OAuth2 credentials. Currently only works with dart:io.
dependencies:
http: ">=0.9.0 <0.10.0"
dev_dependencies:
unittest: ">=0.9.0 <0.10.0"
environment:
sdk: ">=0.8.10+6 <2.0.0"
| name: oauth2
version: 0.9.1
author: "Dart Team <misc@dartlang.org>"
homepage: http://www.dartlang.org
description: >
A client library for authenticating with a remote service via OAuth2 on
behalf of a user, and making authorized HTTP requests with the user's
OAuth2 credentials. Currently only works with dart:io.
dependencies:
http: ">=0.9.2 <0.10.0"
dev_dependencies:
unittest: ">=0.9.0 <0.10.0"
environment:
sdk: ">=0.8.10+6 <2.0.0"
| Update oauth2's dependency on http. | Update oauth2's dependency on http.
OAuth2 was upgraded to support the new HTTP API prior to the new
conventions for package versioning, and the upgraded version hasn't
been released yet.
R=rnystrom@google.com
BUG=15809
Review URL: https://codereview.chromium.org//98163005
git-svn-id: c93d8a2297af3b929165606efe145742a534bc71@31523 260f80e4-7a28-3924-810f-c04153c831b5
| YAML | bsd-3-clause | dartino/dart-sdk,dart-lang/sdk,dart-lang/sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-lang/sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk |
b9ede0b302c434fcd1fa0f79fb380a36ee268c83 | cluster/manifests/audittrail-adapter/daemonset.yaml | cluster/manifests/audittrail-adapter/daemonset.yaml | apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: audittrail-adapter
namespace: kube-system
labels:
application: audittrail-adapter
version: v0.1.0
spec:
selector:
matchLabels:
application: audittrail-adapter
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
application: audittrail-adapter
version: v0.1.0
annotations:
scheduler.alpha.kubernetes.io/critical-pod: ''
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: master
operator: Exists
tolerations:
- key: CriticalAddonsOnly
operator: Exists
hostNetwork: true
containers:
- name: audittrail-adapter
image: pierone.stups.zalan.do/teapot/audittrail-adapter:master-3
args:
- --cluster-id={{ .ID }}
- --dry-run
- --address=:8889
resources:
limits:
cpu: 50m
memory: 50Mi
requests:
cpu: 20m
memory: 20Mi
| apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: audittrail-adapter
namespace: kube-system
labels:
application: audittrail-adapter
version: v0.1.0
spec:
selector:
matchLabels:
application: audittrail-adapter
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
application: audittrail-adapter
version: v0.1.0
annotations:
scheduler.alpha.kubernetes.io/critical-pod: ''
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/role
operator: In
values:
- master
tolerations:
- key: CriticalAddonsOnly
operator: Exists
hostNetwork: true
containers:
- name: audittrail-adapter
image: pierone.stups.zalan.do/teapot/audittrail-adapter:master-3
args:
- --cluster-id={{ .ID }}
- --dry-run
- --address=:8889
resources:
limits:
cpu: 50m
memory: 50Mi
requests:
cpu: 20m
memory: 20Mi
| Use kubernetes.io/role label for nodeAffinity | Use kubernetes.io/role label for nodeAffinity
Uses the more "official" kubernetes.io/role label rather than our custom
master=true label.
| YAML | mit | zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws |
82c5f5db98a080cf199b5306cc390ccf423593bc | test/k8sT/manifests/netperf-deployment.yaml | test/k8sT/manifests/netperf-deployment.yaml | ---
apiVersion: v1
kind: Pod
metadata:
name: netperf-server
labels:
id: netperf-server
zgroup: testapp
spec:
terminationGracePeriodSeconds: 0
containers:
- name: netperf
image: docker.io/tgraf/netperf:v1.0
---
apiVersion: v1
kind: Pod
metadata:
name: netperf-client
labels:
id: netperf-client
zgroup: testapp
spec:
terminationGracePeriodSeconds: 0
containers:
- name: netperf
image: docker.io/tgraf/netperf:v1.0
---
apiVersion: v1
kind: Service
metadata:
name: netperf-service
spec:
ports:
- port: 12865
selector:
name: netperf-server
| ---
apiVersion: v1
kind: Pod
metadata:
name: netperf-server
labels:
id: netperf-server
zgroup: testapp
spec:
terminationGracePeriodSeconds: 0
containers:
- name: netperf
image: docker.io/tgraf/netperf:v1.0
readinessProbe:
exec:
command: ["netperf", "-H", "127.0.0.1", "-l", "1"]
---
apiVersion: v1
kind: Pod
metadata:
name: netperf-client
labels:
id: netperf-client
zgroup: testapp
spec:
terminationGracePeriodSeconds: 0
containers:
- name: netperf
image: docker.io/tgraf/netperf:v1.0
---
apiVersion: v1
kind: Service
metadata:
name: netperf-service
spec:
ports:
- port: 12865
selector:
name: netperf-server
| Add readiness probe to netperf server | test: Add readiness probe to netperf server
Signed-off-by: Thomas Graf <5f50a84c1fa3bcff146405017f36aec1a10a9e38@cilium.io>
| YAML | apache-2.0 | michi-covalent/cilium,michi-covalent/cilium,tklauser/cilium,tklauser/cilium,tklauser/cilium,michi-covalent/cilium,tklauser/cilium,tgraf/cilium,cilium-team/cilium,cilium/cilium,tgraf/cilium,tgraf/cilium,cilium/cilium,tgraf/cilium,michi-covalent/cilium,cilium/cilium,tgraf/cilium,cilium/cilium,michi-covalent/cilium,cilium-team/cilium,tgraf/cilium,tklauser/cilium,cilium/cilium |
24ffa5f230f99b0f3325659ff4b22554178884c4 | samples/test_blocks_of_blocks.yml | samples/test_blocks_of_blocks.yml | - hosts: localhost
gather_facts: no
tasks:
- block:
- block:
- block:
- block:
- debug: msg="are we there yet?"
always:
- debug: msg="a random always block"
- fail:
rescue:
- debug: msg="rescuing from the fail"
when: not skip_me|default(False)
| - hosts: localhost
gather_facts: no
tasks:
- block:
- block:
- block:
- block:
- debug: msg="are we there yet {{foo}}?"
always:
- debug: msg="a random always block"
- fail:
rescue:
- debug: msg="rescuing from the fail"
when: not skip_me|default(False)
- debug: msg="i am the last task"
vars:
foo: bar
| Tweak sample blocks of blocks a bit more | Tweak sample blocks of blocks a bit more
| YAML | mit | thaim/ansible,thaim/ansible |
87695af05808279cc3b2787e590f36c890c90fb8 | recipes/oslo.serialization/meta.yaml | recipes/oslo.serialization/meta.yaml | {% set name = "oslo.serialization" %}
{% set version = "2.20.0" %}
{% set sha256 = "fca6fbb350d560aab8a4fdc9a1128dac3b1d38b2fc9bf5ad22136ae090854802" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
- pbr
run:
- python
- six
test:
imports:
- oslo_serialization
about:
home: https://docs.openstack.org/oslo.serialization/
license: Apache-2.0
license_file: LICENSE
summary: 'Transmittable and serializable object representation for oslo libs'
description: |
The oslo serialization library provides support for representing objects
in transmittable and storable formats, such as JSON and MessagePack.
extra:
recipe-maintainers:
- brainstorm
| {% set name = "oslo.serialization" %}
{% set version = "2.20.0" %}
{% set sha256 = "fca6fbb350d560aab8a4fdc9a1128dac3b1d38b2fc9bf5ad22136ae090854802" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
- pbr
run:
- python
- six
test:
imports:
- oslo_serialization
about:
home: https://docs.openstack.org/oslo.serialization/
license: Apache-2.0
license_file: LICENSE
summary: 'Oslo Serialization library'
description: |
The oslo serialization library provides support for representing objects
in transmittable and storable formats, such as JSON and MessagePack.
extra:
recipe-maintainers:
- brainstorm
| Fix summary, thanks @jakirkham | Fix summary, thanks @jakirkham [ci skip]
| YAML | bsd-3-clause | birdsarah/staged-recipes,patricksnape/staged-recipes,jjhelmus/staged-recipes,ReimarBauer/staged-recipes,cpaulik/staged-recipes,rmcgibbo/staged-recipes,ceholden/staged-recipes,shadowwalkersb/staged-recipes,scopatz/staged-recipes,petrushy/staged-recipes,chohner/staged-recipes,dschreij/staged-recipes,pmlandwehr/staged-recipes,stuertz/staged-recipes,synapticarbors/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,sannykr/staged-recipes,conda-forge/staged-recipes,isuruf/staged-recipes,jjhelmus/staged-recipes,mariusvniekerk/staged-recipes,larray-project/staged-recipes,mariusvniekerk/staged-recipes,barkls/staged-recipes,NOAA-ORR-ERD/staged-recipes,chrisburr/staged-recipes,rvalieris/staged-recipes,cpaulik/staged-recipes,barkls/staged-recipes,ocefpaf/staged-recipes,guillochon/staged-recipes,glemaitre/staged-recipes,birdsarah/staged-recipes,jakirkham/staged-recipes,jochym/staged-recipes,patricksnape/staged-recipes,chohner/staged-recipes,synapticarbors/staged-recipes,asmeurer/staged-recipes,grlee77/staged-recipes,Cashalow/staged-recipes,jochym/staged-recipes,goanpeca/staged-recipes,asmeurer/staged-recipes,jakirkham/staged-recipes,larray-project/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,kwilcox/staged-recipes,mcs07/staged-recipes,sannykr/staged-recipes,stuertz/staged-recipes,pmlandwehr/staged-recipes,SylvainCorlay/staged-recipes,chrisburr/staged-recipes,igortg/staged-recipes,glemaitre/staged-recipes,petrushy/staged-recipes,grlee77/staged-recipes,NOAA-ORR-ERD/staged-recipes,rvalieris/staged-recipes,basnijholt/staged-recipes,sodre/staged-recipes,sodre/staged-recipes,kwilcox/staged-recipes,shadowwalkersb/staged-recipes,scopatz/staged-recipes,igortg/staged-recipes,johanneskoester/staged-recipes,basnijholt/staged-recipes,Juanlu001/staged-recipes,Juanlu001/staged-recipes,dschreij/staged-recipes,sodre/staged-recipes,Cashalow/staged-recipes,ceholden/staged-recipes,hadim/staged-recipes,mcs07/staged-recipes,isuruf/staged-recipes,guillochon/staged-recipes,ocefpaf/staged-recipes,rmcgibbo/staged-recipes,conda-forge/staged-recipes,SylvainCorlay/staged-recipes |
85359b303842b291e5cf053516df7a65b0a6a97e | test/fixtures/blogs.yml | test/fixtures/blogs.yml | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
default:
base_url: http://myblog.net
settings:
show_extended_on_rss: true
blog_name: test blog
title_prefix: 1
limit_article_display: 2
sp_url_limit: 3
use_gravatar: false
blog_subtitle: test subtitle
limit_rss_display: 10
ping_urls: |-
http://ping.example.com/ping
http://alsoping.example.com/rpc/ping
geourl_location: ""
default_allow_pings: false
send_outbound_pings: false
sp_global: true
default_allow_comments: true
email_from: scott@sigkill.org
theme: typographic
text_filter: textile
sp_article_auto_close: 300
link_to_author: false
comment_text_filter: markdown
permalink_format: /%year%/%month%/%day%/%title%
| # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
default:
base_url: http://myblog.net
settings: <%= {
"show_extended_on_rss" => true,
"blog_name" => "test blog",
"title_prefix" => 1,
"limit_article_display" => 2,
"sp_url_limit" => 3,
"use_gravatar" => false,
"blog_subtitle" => "test subtitle",
"limit_rss_display" => 10,
"ping_urls" => ["http://ping.example.com/ping" "http://alsoping.example.com/rpc/ping"],
"geourl_location" => "",
"default_allow_pings" => false,
"send_outbound_pings" => false,
"sp_global" => true,
"default_allow_comments" => true,
"email_from" => "scott@sigkill.org",
"theme" => "typographic",
"text_filter" => "textile",
"sp_article_auto_close" => 300,
"link_to_author" => false,
"comment_text_filter" => "markdown",
"permalink_format" => "/%year%/%month%/%day%/%title%"}.to_yaml.inspect %>
| Fix blog fixture's settings field. | Fix blog fixture's settings field.
In Rails 3, you can no longer use nested YAML to set a serialized Hash
field inside fixtures: You need to provide the actual serialized form.
Hat tip to
<http://code.alexreisner.com/articles/serialized-fixtures-in-rails-3.html>
| YAML | mit | K-and-R/publify,moneyadviceservice/publify,solanolabs/publify,tedfrazier/saas_typo,zsstor/Typo,P5hil/typo,LOSDev/CS169-Homework-5,felixitous/typoo,ACPK/typo,publify/publify,leminhtuan2015/test_temona,hmallett/publify,mrfosip/typo,ashrob/typo,alexhuang91/typo,Juuro/publify,LOSDev/CS169-Homework-5,leminhtuan2015/nginx_capuchino_rails,agiamas/publify,congchen5/typo,jcfausto/publify,hmallett/publify,jcfausto/publify,xwang191/-edX.CS169.2x.hw1,bsiebz/legacyhw,bsiebz/legacyhw,blairanderson/that-music-blog,tedfrazier/saas_typo,boostsup/HW5_typo,P5hil/typo,framgia/publify,freeranger/typo,leminhtuan2015/nginx_capuchino_rails,seyedrazavi/publify,babaa/foodblog,arramos84/cs169-hw5,kmathew96/typo,leminhtuan2015/temona_staging,silygose/typo,khlumzeemee/typo,seyedrazavi/publify,moneyadviceservice/publify,mplstar/blog,publify/publify,shrayus/hw-refactoring-legecy-code,xwang191/-edX.CS169.2x.hw1,nvgit/typo1,mplstar/blog,congchen5/typo,vivekv009/inuni-blog,mozzan/publify,telekomatrix/publify,drakontia/publify,wizzro/CS169.2x-hw1-2,sf-wdi-25/publify_debugging_lab,freeranger/typo,matthewliu/saas_hw5,backpackerhh/typo,waruboy/publify,shaomingtan/publify,ashleymichal/typo,nvgit/typo1,totzYuta/coding-diary-of-totz,shrayus/hw-refactoring-legecy-code,kmathew96/typo,ACPK/typo,randyramadhana/typo,ashleymichal/typo,kryptykfysh/saas_typo,whithajess/publify,sbstn-jmnz/typo,leminhtuan2015/temona_staging,backpackerhh/typo,totzYuta/coding-diary-of-totz,Juuro/publify,drakontia/publify,freibuis/publify,mrfosip/typo,aren19/HW_5,LOSDev/CS169-Homework-5,randyramadhana/typo,saasbook/typo,bsiebz/legacyhw,ndueber/cs-169_hw5,mozzan/publify,leminhtuan2015/test_temona,wizzro/CS169.2x-hw1-2,leminhtuan2015/temona_staging,freeranger/typo,edgarpng/typo-blog,matthewliu/saas_hw5,agiamas/publify,moneyadviceservice/publify,waruboy/publify,felixitous/typoo,Juuro/publify,shrayus/hw-refactoring-legecy-code,blairanderson/that-music-blog,bikmaeff/CS169.2_hw12,robinparadise/typo,agiamas/publify,silygose/typo,aren19/HW_5,SF-WDI-LABS/publify_debugging_lab,tinnywang/typo,Chickey2/typo,kildem/blog,jcfausto/publify,randyramadhana/typo,faraazkhan/myblog,boostsup/HW5_typo,kmathew96/typo,publify/publify,vincenttian/cs169hw5,bikmaeff/CS169.2_hw12,saasbook/typo,hmallett/publify,natesholland/typo,K-and-R/publify,ndueber/cs-169_hw5,whithajess/publify,sbstn-jmnz/typo,kildem/blog,telekomatrix/publify,solanolabs/publify,moneyadviceservice/publify,lbiedinger/cs_typo,vivekv009/inuni-blog,K-and-R/publify,nguyenduyta/deploy-test,sf-wdi-25/publify_debugging_lab,tinnywang/typo,faraazkhan/myblog,boostsup/HW5_typo,shimolshah/typo-backup,freibuis/publify,arramos84/cs169-hw5,vincenttian/cs169hw5,kryptykfysh/saas_typo,gvaquez/typo,mozzan/publify,amba178/legacy_code,freibuis/publify,burakicel/Burakicel.com,shaomingtan/publify,blairanderson/that-music-blog,zsstor/Typo,natesholland/typo,ashrob/typo,telekomatrix/publify,zsstor/Typo,robinparadise/typo,felixitous/typoo,edgarpng/typo-blog,vivekv009/inuni-blog,leminhtuan2015/portal_staging,nvgit/typo1,vincenttian/cs169hw5,gvaquez/typo,sf-wdi-25/publify_debugging_lab,nvgit/typo1,leminhtuan2015/nginx_capuchino_rails,Endymion1977/typo,leminhtuan2015/portal_staging,saasbook/typo,shimolshah/typo-backup,nguyenduyta/deploy-test,SF-WDI-LABS/publify_debugging_lab,kildem/blog,sbstn-jmnz/typo,shimolshah/typo-backup,Endymion1977/typo,bikmaeff/CS169.2_hw12,ashleymichal/typo,backpackerhh/typo,SF-WDI-LABS/publify_debugging_lab,leminhtuan2015/test_temona,lbiedinger/cs_typo,LOSDev/CS169-Homework-5,leminhtuan2015/portal_staging,waruboy/publify,leminhtuan2015/nginx_capuchino_rails,P5hil/typo,kildem/blog,ACPK/typo,whithajess/publify,natesholland/typo,lbiedinger/cs_typo,burakicel/Burakicel.com,amba178/legacy_code,ndueber/cs-169_hw5,seyedrazavi/publify,silygose/typo,Chickey2/typo,leminhtuan2015/portal_staging,babaa/foodblog,arramos84/cs169-hw5,khlumzeemee/typo,alexhuang91/typo,mplstar/blog,solanolabs/publify,framgia/publify,nguyenduyta/deploy-test |
37bcfe1c33e03fe65900bdf38f4bc57afca49aea | 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:9.6"
cache:
image: "memcached:latest"
| 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:13.2"
cache:
image: "memcached:latest"
| Update postgres Docker tag to v13 | Update postgres Docker tag to v13
| YAML | agpl-3.0 | microcosm-cc/microcosm-ui,buro9/microcosm,buro9/microcosm,microcosm-cc/microcosm-ui |
3b756ee8d3017685a7466862e5084d87f3c5d57a | docker-compose.yml | docker-compose.yml | authenticate:
build: .
ports:
# HOST:CONTAINER
# Flask defaults to listening on port 5000 but this is configurable.
# See http://flask.pocoo.org/docs/0.10/api/#flask.Flask.run
- "5000:5000"
volumes:
- /tmp/authentication:/data
environment:
- SQLALCHEMY_DATABASE_URI=sqlite:////data/authentication.db
- SECRET
command: python authentication/authentication.py
links:
- storage
storage:
build: .
ports:
# HOST:CONTAINER
# Flask defaults to listening on port 5000 but this is configurable.
# See http://flask.pocoo.org/docs/0.10/api/#flask.Flask.run
- "5001:5001"
container_name: authentication_storage
volumes:
- /tmp/authentication:/data
environment:
- SQLALCHEMY_DATABASE_URI=sqlite:////data/authentication.db
command: python storage/storage.py
| authenticate:
build: .
ports:
# HOST:CONTAINER
# Flask defaults to listening on port 5000 but this is configurable.
# See http://flask.pocoo.org/docs/0.10/api/#flask.Flask.run
- "5000:5000"
volumes:
- /tmp/authentication:/data
environment:
- SQLALCHEMY_DATABASE_URI=sqlite:////data/authentication.db
- SECRET
command: python authentication/authentication.py
links:
- storage
storage:
build: .
ports:
# HOST:CONTAINER
# Flask defaults to listening on port 5000 but this is configurable.
# See http://flask.pocoo.org/docs/0.10/api/#flask.Flask.run
# TODO Use an environment variable for the port to run on, so ``authenticate`` can see it
- "5001:5001"
container_name: authentication_storage
volumes:
- /tmp/authentication:/data
environment:
- SQLALCHEMY_DATABASE_URI=sqlite:////data/authentication.db
command: python storage/storage.py
| Add TODO for how we're going to know the storage port | Add TODO for how we're going to know the storage port
| YAML | mit | jenca-cloud/jenca-authentication |
4c31c3460b8be02fe1f79e50694f669e66ebb320 | docker-compose.yml | docker-compose.yml | version: '2'
services:
test:
build:
context: .
volumes:
- "coverage:/usr/src/app/coverage"
volumes:
coverage:
| version: '2'
services:
test:
build:
context: .
environment:
- NODE_ENV=test
- BABEL_ENV=test
volumes:
- "coverage:/usr/src/app/coverage"
volumes:
coverage:
| Make sure the test container has the proper env variables | Make sure the test container has the proper env variables
Test Plan:
- Automated tests pass
Change-Id: I980e9d7c1f7bf342195fed2c0bcf70429f112028
Reviewed-on: https://gerrit.instructure.com/111337
Tested-by: Jenkins
Reviewed-by: Steven Burnett <a0b450117c5d20a22d5c4d52bb8ae13adee003d8@instructure.com>
Reviewed-by: Dan Minkevitch <2591e5f46f28d303f9dc027d475a5c60d8dea17a@instructure.com>
Product-Review: Clay Diffrient <9dff2e5c98626d20d2848250c411e8009465bb87@instructure.com>
QA-Review: Clay Diffrient <9dff2e5c98626d20d2848250c411e8009465bb87@instructure.com>
| YAML | agpl-3.0 | instructure/canvas-planner,instructure/canvas-planner,instructure/canvas-planner |
a5e390c67a7d08b3c914671ecb2b81fc9e146b29 | docker-compose.yml | docker-compose.yml | version: '2'
services:
# Nginx Web Server
nginx:
build: './_docker/nginx'
volumes:
- ./logs/nginx/:/var/log/nginx
volumes_from:
- volumes_fe_source
ports:
- "80:80"
- "443:443"
links:
- "hhvm"
# HHVM
hhvm:
build: './_docker/hhvm'
expose:
- "9000"
volumes_from:
- volumes_be_source
# MariaDB Database Server
mariadb:
build: './_docker/mariadb'
ports:
- "3306:3306"
volumes_from:
- volumes_data
environment:
MYSQL_DATABASE: "btdev"
MYSQL_USER: "dev"
MYSQL_PASSWORD: "dev"
MYSQL_ROOT_PASSWORD: "root"
# Beanstalkd Queuing
beanstalkd:
build: './_docker/beanstalkd'
ports:
- "11300:11300"
privileged: true
# Front-end Code Container
volumes_fe_source:
image: tianon/true
volumes:
- ./frontend:/var/www/frontend
# API Code Container
volumes_be_source:
image: tianon/true
volumes:
- ./api:/var/www/api
# Databases/Data Container
volumes_data:
image: tianon/true
volumes:
- ./data/mysql:/var/lib/mysql
| version: '3'
services:
# Nginx Web Server
nginx:
build: './_docker/nginx'
volumes:
- ./logs/nginx/:/var/log/nginx
- ./frontend:/var/www/frontend
ports:
- "80:80"
- "443:443"
links:
- "hhvm"
# HHVM
hhvm:
build: './_docker/hhvm'
expose:
- "9000"
volumes:
- ./api:/var/www/api
# MariaDB Database Server
mariadb:
build: './_docker/mariadb'
ports:
- "3306:3306"
volumes:
- ./data/mysql:/var/lib/mysql
environment:
MYSQL_DATABASE: "btdev"
MYSQL_USER: "dev"
MYSQL_PASSWORD: "dev"
MYSQL_ROOT_PASSWORD: "root"
# Beanstalkd Queuing
beanstalkd:
build: './_docker/beanstalkd'
ports:
- "11300:11300"
privileged: true
| Upgrade docker compose file to v3 | Upgrade docker compose file to v3
| YAML | mit | bt/docker-starter,bt/docker-starter |
8c16afaa2136384ad59d52bbbdcffcd78e6e5910 | docker-compose.yml | docker-compose.yml | version: '3.0'
services:
lib: &default
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/usr/src/app
env_file: .secrets
| version: '3.0'
services:
lib: &default
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/usr/src/app
- registry:/root/.cargo/registry
env_file: .secrets
volumes:
registry:
driver: local
| Add registry volume to compose | Add registry volume to compose
Because the `Cargo.toml` changes frequently in development and
invalidates the image cache, this adds a volume to persist the
installed crates between builds.
| YAML | mit | blankenshipz/oanda-rs |
c07eae8fa72b540874988bf66ffe901ddf2c4ff6 | docker-compose.yml | docker-compose.yml | version: '2'
services:
db:
image: mongo
ports:
- "27017:27017"
nginx-php7.0:
build:
context: ./docker
dockerfile: ./Dockerfile-php7.0
ports:
- "8100:8100"
links:
- db
volumes:
- ./:/usr/share/nginx/html
command: ["bash", "/usr/share/nginx/html/docker/launch-f43me.sh"]
# nginx-php7.1:
# build:
# context: ./docker
# dockerfile: ./Dockerfile-php7.1
# ports:
# - "8100:8100"
# links:
# - db
# volumes:
# - ./:/usr/share/nginx/html
# command: ["bash", "/usr/share/nginx/html/docker/launch-f43me.sh"]
| version: '2'
services:
db:
image: mvertes/alpine-mongo
ports:
- "27017:27017"
nginx-php7.0:
build:
context: ./docker
dockerfile: ./Dockerfile-php7.0
ports:
- "8100:8100"
links:
- db
volumes:
- ./:/usr/share/nginx/html
command: ["bash", "/usr/share/nginx/html/docker/launch-f43me.sh"]
# nginx-php7.1:
# build:
# context: ./docker
# dockerfile: ./Dockerfile-php7.1
# ports:
# - "8100:8100"
# links:
# - db
# volumes:
# - ./:/usr/share/nginx/html
# command: ["bash", "/usr/share/nginx/html/docker/launch-f43me.sh"]
| Use alpine version of Mongo | Use alpine version of Mongo
mongo: 342.5 MB
mvertes/alpine-mongo: 75.33 MB
| YAML | mit | j0k3r/f43.me,j0k3r/f43.me,j0k3r/f43.me |
e1327ce5126397024b00c59caf4c9521cf597290 | docker-compose.yml | docker-compose.yml | version: '2'
services:
web:
build: .
ports:
- "9000:8000"
depends_on:
- dynamodb
- redis
environment:
- DIAMONDB_REDIS_ADDRS=redis:6379
- DIAMONDB_DYNAMODB_ENDPOINT=http://dynamodb:8000
redis:
image: redis:3.2.7
dynamodb:
image: deangiberson/aws-dynamodb-local:latest
volumes:
- ./tmp/dynamodb:/var/dynamodb_local
| version: '2'
services:
web:
build: .
ports:
- "9000:8000"
depends_on:
- dynamodb
- redis
environment:
- DIAMONDB_REDIS_ADDRS=redis:6379
- DIAMONDB_DYNAMODB_ENDPOINT=http://dynamodb:8000
redis:
image: redis:3.2.7
dynamodb:
image: dwmkerr/dynamodb:latest
command: [-dbPath, /data]
volumes:
- ./tmp/dynamodb:/data
| Use dwmkerr/dynamodb because it is newly updated | Use dwmkerr/dynamodb because it is newly updated
| YAML | apache-2.0 | yuuki/diamondb,yuuki/diamondb |
248510f38a167119cbbc21b7fd81bdcfb52d7c5a | packages/pe/pem.yaml | packages/pe/pem.yaml | homepage: http://github.com/vincenthz/hs-pem
changelog-type: ''
hash: 231f11a0a9a3079c7935cf6c81b0ffcd42f230c317ef71412746eaa3bc42c2a5
test-bench-deps:
test-framework-hunit: -any
bytestring: -any
test-framework: ! '>=0.3.3'
base: -any
pem: -any
test-framework-quickcheck2: -any
HUnit: -any
QuickCheck: ! '>=2.4.0.1'
maintainer: Vincent Hanquez <vincent@snarc.org>
synopsis: Privacy Enhanced Mail (PEM) format reader and writer.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=3 && <5'
memory: -any
mtl: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.2.0'
- '0.2.1'
- '0.2.2'
- '0.2.3'
author: Vincent Hanquez <vincent@snarc.org>
latest: '0.2.3'
description-type: haddock
description: Privacy Enhanced Mail (PEM) format reader and writer. long description
license-name: BSD3
| homepage: http://github.com/vincenthz/hs-pem
changelog-type: ''
hash: cc8e62118b783e284dc0fa032f54fe386a3861a948ec88079370a433c103a705
test-bench-deps:
test-framework-hunit: -any
bytestring: -any
test-framework: ! '>=0.3.3'
base: -any
pem: -any
test-framework-quickcheck2: -any
HUnit: -any
QuickCheck: ! '>=2.4.0.1'
maintainer: Vincent Hanquez <vincent@snarc.org>
synopsis: Privacy Enhanced Mail (PEM) format reader and writer.
changelog: ''
basic-deps:
bytestring: -any
basement: -any
base: ! '>=3 && <5'
memory: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.2.0'
- '0.2.1'
- '0.2.2'
- '0.2.3'
- '0.2.4'
author: Vincent Hanquez <vincent@snarc.org>
latest: '0.2.4'
description-type: haddock
description: Privacy Enhanced Mail (PEM) format reader and writer. long description
license-name: BSD3
| Update from Hackage at 2018-03-02T14:39:09Z | Update from Hackage at 2018-03-02T14:39:09Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c929e90dec31c98c530279e5855f882233b2472b | roles/swift-common/handlers/main.yml | roles/swift-common/handlers/main.yml | ---
- name: pip install swifttool
pip: name="/opt/stack/{{ swift.swifttool_dir }}" extra_args='-i https://pypi.python.org/simple/'
register: result
until: result|success
retries: 3
delay: 10
notify:
- update ca-certs
- name: update ca-certs
command: update-ca-certificates
- name: restart rsync
service: name=rsync state=restarted
- name: restart rsyslog
service: name=rsyslog state=restarted
- name: restart swift services
service: name={{ item }} state=restarted must_exist=false
when: restart|default('True')
with_items:
- swift-container
- swift-container-auditor
- swift-container-updater
- swift-container-replicator
- swift-account
- swift-account-auditor
- swift-account-reaper
- swift-account-replicator
- swift-proxy
- swift-object
- swift-object-expirer
- swift-object-auditor
- swift-object-replicator
- swift-object-updater
| ---
- name: pip install swifttool
pip: name="/opt/stack/{{ swift.swifttool_dir }}" extra_args='-i https://pypi.python.org/simple/'
register: result
until: result|success
retries: 3
delay: 10
notify:
- update ca-certs
- name: update ca-certs
command: update-ca-certificates
# Restarting rsync failing with pid file exists error
# Adding retry logic to workaround
- name: restart rsync
service: name=rsync state=restarted
register: result
until: result|success
retries: 3
delay: 10
- name: restart rsyslog
service: name=rsyslog state=restarted
- name: restart swift services
service: name={{ item }} state=restarted must_exist=false
when: restart|default('True')
with_items:
- swift-container
- swift-container-auditor
- swift-container-updater
- swift-container-replicator
- swift-account
- swift-account-auditor
- swift-account-reaper
- swift-account-replicator
- swift-proxy
- swift-object
- swift-object-expirer
- swift-object-auditor
- swift-object-replicator
- swift-object-updater
| Add retry logic to rsync restart | Add retry logic to rsync restart
| YAML | mit | zrs233/ursula,pgraziano/ursula,persistent-ursula/ursula,masteinhauser/ursula,knandya/ursula,nirajdp76/ursula,zrs233/ursula,ddaskal/ursula,pgraziano/ursula,zrs233/ursula,j2sol/ursula,panxia6679/ursula,persistent-ursula/ursula,persistent-ursula/ursula,fancyhe/ursula,masteinhauser/ursula,knandya/ursula,lihkin213/ursula,edtubillara/ursula,masteinhauser/ursula,twaldrop/ursula,lihkin213/ursula,wupeiran/ursula,zrs233/ursula,panxia6679/ursula,j2sol/ursula,ryshah/ursula,lihkin213/ursula,persistent-ursula/ursula,ryshah/ursula,wupeiran/ursula,lihkin213/ursula,pgraziano/ursula,channus/ursula,channus/ursula,blueboxgroup/ursula,ddaskal/ursula,narengan/ursula,sivakom/ursula,rongzhus/ursula,j2sol/ursula,nirajdp76/ursula,edtubillara/ursula,rongzhus/ursula,panxia6679/ursula,edtubillara/ursula,fancyhe/ursula,fancyhe/ursula,edtubillara/ursula,narengan/ursula,rongzhus/ursula,nirajdp76/ursula,knandya/ursula,fancyhe/ursula,twaldrop/ursula,wupeiran/ursula,channus/ursula,rongzhus/ursula,knandya/ursula,masteinhauser/ursula,blueboxgroup/ursula,narengan/ursula,ryshah/ursula,sivakom/ursula,channus/ursula,pgraziano/ursula,ryshah/ursula,panxia6679/ursula,ddaskal/ursula,blueboxgroup/ursula,nirajdp76/ursula,j2sol/ursula,blueboxgroup/ursula,narengan/ursula,wupeiran/ursula,ddaskal/ursula,sivakom/ursula,twaldrop/ursula,twaldrop/ursula |
2fe8ed1f432ed274e9b96608ee76d54dc01e0ae5 | recipes/qtpy-uic/meta.yaml | recipes/qtpy-uic/meta.yaml | {% set version = "2.0.1" %}
package:
name: qtpy-uic
version: {{ version }}
source:
url: https://github.com/hmaarrfk/qtpy-tools/archive/{{ version }}.tar.gz
fn: qtpy-tools-{{ version }}.tar.gz
sha256: 9506049f246ad87ea360aa0ada75144519bedcf1b479366152b726f7a734ba1d
build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv"
noarch: python
entry_points:
- qtpy-uic = qtpyuic:main
requirements:
host:
- python >=3
- pip
- setuptools
run:
- python >=3
test:
imports:
- qtpyuic
commands:
- qtpy-uic --help
about:
home: https://github.com/hmaarrfk/qtpy-tools/
summary: 'qtpy ui compiler: qtpy-uic'
license: GPLv2
license_file: LICENSE-uic
extra:
recipe-maintainers:
- hmaarrfk
| {% set version = "2.0.4" %}
package:
name: qtpy-uic
version: {{ version }}
source:
url: https://github.com/hmaarrfk/qtpy-tools/archive/{{ version }}.tar.gz
fn: qtpy-tools-{{ version }}.tar.gz
sha256: fb263b0b43db69bf209c5ce13af996876b25a6ac62c62f8b6a1efc5e06724601
build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv --disable-pip-version-check"
noarch: python
entry_points:
- qtpy-uic = qtpyuic:main
requirements:
host:
- python >=3
- pip
- setuptools
run:
- python >=3
test:
imports:
- qtpyuic
commands:
- qtpy-uic --help
about:
home: https://github.com/hmaarrfk/qtpy-tools/
summary: 'qtpy ui compiler: qtpy-uic'
license: GPLv2
license_file: LICENSE-uic
extra:
recipe-maintainers:
- hmaarrfk
| Add the hash for the updated version | Add the hash for the updated version
| YAML | bsd-3-clause | chrisburr/staged-recipes,rmcgibbo/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,cpaulik/staged-recipes,ceholden/staged-recipes,scopatz/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,asmeurer/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,goanpeca/staged-recipes,mcs07/staged-recipes,jjhelmus/staged-recipes,synapticarbors/staged-recipes,birdsarah/staged-recipes,basnijholt/staged-recipes,Juanlu001/staged-recipes,Juanlu001/staged-recipes,jakirkham/staged-recipes,sodre/staged-recipes,asmeurer/staged-recipes,ocefpaf/staged-recipes,ReimarBauer/staged-recipes,scopatz/staged-recipes,conda-forge/staged-recipes,SylvainCorlay/staged-recipes,hadim/staged-recipes,sodre/staged-recipes,chrisburr/staged-recipes,goanpeca/staged-recipes,isuruf/staged-recipes,jakirkham/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,jochym/staged-recipes,petrushy/staged-recipes,rmcgibbo/staged-recipes,mcs07/staged-recipes,cpaulik/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,isuruf/staged-recipes,synapticarbors/staged-recipes,stuertz/staged-recipes,igortg/staged-recipes,basnijholt/staged-recipes,kwilcox/staged-recipes,dschreij/staged-recipes,petrushy/staged-recipes,mariusvniekerk/staged-recipes,johanneskoester/staged-recipes,jjhelmus/staged-recipes,ceholden/staged-recipes,birdsarah/staged-recipes,sodre/staged-recipes,ReimarBauer/staged-recipes,dschreij/staged-recipes,igortg/staged-recipes |
5d9de5cda591c98bf7fd189bf39f27d8ac6e8fbc | auth-server/src/integration-test/resources/application-it.yaml | auth-server/src/integration-test/resources/application-it.yaml | spring:
jackson:
serialization.indent_output: true
datasource:
url: jdbc:h2:mem:auth-it-db;DB_CLOSE_ON_EXIT=FALSE
username: sa
password:
driver-class-name: org.h2.Driver
jpa:
show-sql: true
hibernate:
ddl-auto: none
liquibase:
contexts: integration-test
logging.level.liquibase: INFO
logging.level.org.hibernate.SQL: info
logging.level.org.hibernate.type.descriptor.sql: info | spring:
jackson:
serialization.indent_output: true
datasource:
url: jdbc:h2:mem:auth-it-db;DB_CLOSE_ON_EXIT=FALSE
username: sa
password:
driver-class-name: org.h2.Driver
jpa:
show-sql: true
hibernate:
ddl-auto: none
liquibase:
contexts: integration-test
logging.level.root: DEBUG
logging.level.liquibase: INFO
logging.level.org.hibernate.SQL: INFO
logging.level.org.hibernate.type.descriptor.sql: INFO | Set logging of integration test to DEBUG | Set logging of integration test to DEBUG
| YAML | apache-2.0 | roamingthings/security-server,roamingthings/security-server |
7a3bc39b58d9638bd72f4b14cea4b9225fd59188 | .github/workflows/continuous-integration.yml | .github/workflows/continuous-integration.yml | # See https://github.com/laminas/laminas-continuous-integration-action
# Generates a job matrix based on current dependencies and supported version
# ranges, then runs all those jobs
name: "Continuous Integration"
on:
pull_request:
push:
jobs:
matrix:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@1.19.0
qa:
name: QA Checks
needs: [ matrix ]
runs-on: ${{ matrix.operatingSystem }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@1.29.0
env:
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }}
"INFECTION_DASHBOARD_API_KEY": ${{ secrets.INFECTION_DASHBOARD_API_KEY }}
"STRYKER_DASHBOARD_API_KEY": ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
with:
job: ${{ matrix.job }}
| # See https://github.com/laminas/laminas-continuous-integration-action
# Generates a job matrix based on current dependencies and supported version
# ranges, then runs all those jobs
name: "Continuous Integration"
on:
pull_request:
push:
jobs:
matrix:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@1.20.0
qa:
name: QA Checks
needs: [ matrix ]
runs-on: ${{ matrix.operatingSystem }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@1.29.0
env:
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }}
"INFECTION_DASHBOARD_API_KEY": ${{ secrets.INFECTION_DASHBOARD_API_KEY }}
"STRYKER_DASHBOARD_API_KEY": ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
with:
job: ${{ matrix.job }}
| Update laminas/laminas-ci-matrix-action action to v1.20.0 | Update laminas/laminas-ci-matrix-action action to v1.20.0
| datasource | package | from | to |
| ----------- | -------------------------------- | ------ | ------ |
| github-tags | laminas/laminas-ci-matrix-action | 1.19.0 | 1.20.0 |
| YAML | mit | Ocramius/PackageVersions |
f60d95f856cd4deb0fc5b393deb6533b183d6b86 | .forestry/front_matter/templates/variados.yml | .forestry/front_matter/templates/variados.yml | ---
label: Variados
hide_body: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: ''
- name: title
label: Title
type: text
hidden: false
default: ''
- name: date
label: Date
type: datetime
hidden: false
default: ''
- name: img
label: Img
type: file
hidden: false
default: ''
- name: comments
label: Comments
type: boolean
hidden: false
default: ''
- name: tags
label: Tags
type: tag_list
hidden: false
default: ''
| ---
label: Variados
hide_body: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: post
- name: title
label: Title
type: text
hidden: false
default: title
- name: date
label: Date
type: datetime
hidden: false
default: 2019-03-15 00:00:00 -0300
- name: img
label: Img
type: file
hidden: false
default: "/variados.png"
- name: comments
label: Comments
type: boolean
hidden: false
default: true
- name: tags
label: Tags
type: tag_list
hidden: false
default: ''
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io |
70701e30d6d55ac165a7a91c7bc6be744e9456ff | .gitlab-ci.yml | .gitlab-ci.yml | test:
stage: test
script:
- python3.6 -m py_compile btsoot.py
| build:
stage: build
script:
- cd copy
- make
- cd ..
test:
stage: test
script:
- python3.6 -m py_compile btsoot.py
- cd copy
- make test
- cd ..
| Modify ci for new c files | Modify ci for new c files
| YAML | bsd-3-clause | paulkramme/btsoot |
867c5b93f653c5f7601bffb4c428138fde6f5291 | .gitlab-ci.yml | .gitlab-ci.yml |
before_script:
stages:
- test
unit_test_job:
stage: test
script:
- python3 -m unittest discover
only:
- master
functional_test_job:
stage: test
script:
- ./test.sh
only:
- master
|
stages:
- test
unit_test_job:
stage: test
script:
- python3 -m unittest discover
only:
- master
functional_test_job:
stage: test
script:
- ./test.sh
only:
- master
| Remove unnecessary before_script from Gitlab CI | Remove unnecessary before_script from Gitlab CI
| YAML | mit | AgalmicVentures/JTL,AgalmicVentures/JTL |
86672e0f7359dcc9a126133bf1c0b7dc814a2612 | .gitlab-ci.yml | .gitlab-ci.yml | image: ruby:2.3
pages:
stage: deploy
script:
- bundle install
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- pages
| image: ruby:2.3
pages:
stage: deploy
script:
- npm install
- bundle install
- grunt
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- pages
| Add grunt to deploy script | Add grunt to deploy script | YAML | mit | richardp2/travel,richardp2/travel |
855e1505082aa1279847502ab7c5f0c571684c95 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build
- test
- github
# Templates
.job_template: &job
tags:
- docker-runner
.build_template: &build
stage: build
before_script:
- mkdir -p $GOPATH/src/${CI_PROJECT_URL#https://}
- mv $CI_PROJECT_DIR/* $GOPATH/src/${CI_PROJECT_URL#https://}
- cd $GOPATH/src/${CI_PROJECT_URL#https://}
- go get
- go get .
# Build stages
build linux:
<<: *job
<<: *build
image: golang:1.8
script:
- go build
unit tests:
<<: *job
<<: *build
script:
- go test
push to github:
<<: *job
image: wurbanski/alpine-git
stage: github
script:
- if [ ! -n "$(grep "^github.com " ~/.ssh/known_hosts)" ]; then ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null; fi
- eval $(ssh-agent -s)
- echo "$GITHUB_SSH_KEY" > /tmp/ssh_key && chmod 600 /tmp/ssh_key
- ssh-add /tmp/ssh_key
- git push $GITHUB_REPO_URL HEAD:master
- ssh-agent -k || { ssh-agent -k ; exit 1; }
allow_failure: True
only:
- master | stages:
- build
- test
- github
# Templates
.job_template: &job
tags:
- docker-runner
.go_template: &go_setup
image: golang:1.8
before_script:
- mkdir -p $GOPATH/src/${CI_PROJECT_URL#https://}
- mv $CI_PROJECT_DIR/* $GOPATH/src/${CI_PROJECT_URL#https://}
- cd $GOPATH/src/${CI_PROJECT_URL#https://}
- go get
- go get .
# Build stages
build linux:
<<: *job
<<: *go_setup
stage: build
script:
- go build
unit tests:
<<: *job
<<: *go_setup
stage: test
script:
- go test
push to github:
<<: *job
image: wurbanski/alpine-git
stage: github
script:
- if [ ! -n "$(grep "^github.com " ~/.ssh/known_hosts)" ]; then ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null; fi
- eval $(ssh-agent -s)
- echo "$GITHUB_SSH_KEY" > /tmp/ssh_key && chmod 600 /tmp/ssh_key
- ssh-add /tmp/ssh_key
- git push $GITHUB_REPO_URL HEAD:master
- ssh-agent -k || { ssh-agent -k ; exit 1; }
allow_failure: True
only:
- master | Fix image for go test | Fix image for go test
| YAML | bsd-3-clause | wurbanski/i-must-go |
041d4d666eb1eace7ffbbfc4419ad21f2f6f6dbf | roles/bootstrap-os/tasks/bootstrap-centos.yml | roles/bootstrap-os/tasks/bootstrap-centos.yml | ---
- name: Check presence of fastestmirror.conf
stat:
path: /etc/yum/pluginconf.d/fastestmirror.conf
register: fastestmirror
# fastestmirror plugin actually slows down Ansible deployments
- name: Disable fastestmirror plugin
lineinfile:
dest: /etc/yum/pluginconf.d/fastestmirror.conf
regexp: "^enabled=.*"
line: "enabled=0"
state: present
when: fastestmirror.stat.exists
| ---
- name: Check presence of fastestmirror.conf
stat:
path: /etc/yum/pluginconf.d/fastestmirror.conf
register: fastestmirror
# fastestmirror plugin actually slows down Ansible deployments
- name: Disable fastestmirror plugin
lineinfile:
dest: /etc/yum/pluginconf.d/fastestmirror.conf
regexp: "^enabled=.*"
line: "enabled=0"
state: present
when: fastestmirror.stat.exists
- name: Install packages requirements for bootstrap
action:
module: "{{ ansible_pkg_mgr }}"
name: "{{ item }}"
state: latest
register: bs_pkgs_task_result
until: bs_pkgs_task_result|succeeded
retries: 4
delay: "{{ retry_stagger | random + 3 }}"
with_items: "libselinux-python"
| Install required selinux-python bindings in bootstrap on centos. The bootstrap tty fixup needs it. | Install required selinux-python bindings in bootstrap
on centos. The bootstrap tty fixup needs it.
| YAML | apache-2.0 | kubernetes-sigs/kubespray,galthaus/setup-kubernetes,Abdelsalam-Abbas/kubespray_fork,Lendico/kargo,sgm-media/kargo,Atoms/kubespray,insequent/kargo,Atoms/kubespray,kubespray/kargo,kubernetes-sigs/kubespray,kubernetes-incubator/kubespray,Atoms/kubespray,Lendico/kargo,Atoms/kubespray,kubernetes-sigs/kubespray,ayaz/kubespray,Abdelsalam-Abbas/kubespray_fork,kubernetes-incubator/kubespray,sgm-media/kargo,kubernetes-sigs/kubespray,insequent/kargo,ayaz/kubespray,kubespray/kargo,galthaus/setup-kubernetes,kubernetes-incubator/kargo,kubernetes-incubator/kargo |
6410c4cc9d0053c951831999d7563de4038d137b | recipes/crick/meta.yaml | recipes/crick/meta.yaml | {% set name = "crick" %}
{% set version = "0.0.3" %}
{% set md5 = "5e33357a3fd2c02ddbafac77e2b25d35" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: {{ md5 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- toolchain
- cython
- python
- setuptools
- numpy x.x
- setuptools
run:
- python
- numpy x.x
test:
requires:
- pytest
imports:
- crick
commands:
- py.test -v --pyargs crick
about:
home: https://github.com/jcrist/crick
license: BSD 3-Clause
license_file: LICENSE
summary: 'High performance approximate and streaming algorithms'
extra:
recipe-maintainers:
- jcrist
| {% set name = "crick" %}
{% set version = "0.0.3" %}
{% set md5 = "5e33357a3fd2c02ddbafac77e2b25d35" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: {{ md5 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- toolchain
- cython
- setuptools
- python
- numpy x.x
run:
- python
- numpy x.x
test:
requires:
- pytest
imports:
- crick
commands:
- py.test -v --pyargs crick
about:
home: https://github.com/jcrist/crick
license: BSD 3-Clause
license_file: LICENSE
summary: 'High performance approximate and streaming algorithms'
extra:
recipe-maintainers:
- jcrist
| Remove extra setuptools in requirements | Remove extra setuptools in requirements
| YAML | bsd-3-clause | kwilcox/staged-recipes,johanneskoester/staged-recipes,caspervdw/staged-recipes,asmeurer/staged-recipes,glemaitre/staged-recipes,dschreij/staged-recipes,rvalieris/staged-recipes,guillochon/staged-recipes,synapticarbors/staged-recipes,goanpeca/staged-recipes,hajapy/staged-recipes,planetarypy/staged-recipes,mariusvniekerk/staged-recipes,jjhelmus/staged-recipes,chohner/staged-recipes,planetarypy/staged-recipes,bmabey/staged-recipes,shadowwalkersb/staged-recipes,stuertz/staged-recipes,gqmelo/staged-recipes,chrisburr/staged-recipes,NOAA-ORR-ERD/staged-recipes,barkls/staged-recipes,jerowe/staged-recipes,gqmelo/staged-recipes,glemaitre/staged-recipes,sodre/staged-recipes,patricksnape/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,sannykr/staged-recipes,birdsarah/staged-recipes,larray-project/staged-recipes,basnijholt/staged-recipes,rmcgibbo/staged-recipes,Cashalow/staged-recipes,SylvainCorlay/staged-recipes,benvandyke/staged-recipes,igortg/staged-recipes,shadowwalkersb/staged-recipes,ceholden/staged-recipes,johannesring/staged-recipes,Juanlu001/staged-recipes,jakirkham/staged-recipes,mcernak/staged-recipes,guillochon/staged-recipes,petrushy/staged-recipes,ceholden/staged-recipes,rvalieris/staged-recipes,kwilcox/staged-recipes,chrisburr/staged-recipes,JohnGreeley/staged-recipes,sodre/staged-recipes,asmeurer/staged-recipes,JohnGreeley/staged-recipes,grlee77/staged-recipes,NOAA-ORR-ERD/staged-recipes,igortg/staged-recipes,caspervdw/staged-recipes,dharhas/staged-recipes,sannykr/staged-recipes,ocefpaf/staged-recipes,Savvysherpa/staged-recipes,mcs07/staged-recipes,johannesring/staged-recipes,patricksnape/staged-recipes,birdsarah/staged-recipes,ReimarBauer/staged-recipes,synapticarbors/staged-recipes,ReimarBauer/staged-recipes,hbredin/staged-recipes,dfroger/staged-recipes,dfroger/staged-recipes,mariusvniekerk/staged-recipes,pmlandwehr/staged-recipes,Cashalow/staged-recipes,conda-forge/staged-recipes,barkls/staged-recipes,petrushy/staged-recipes,isuruf/staged-recipes,ocefpaf/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,benvandyke/staged-recipes,cpaulik/staged-recipes,jakirkham/staged-recipes,hajapy/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,basnijholt/staged-recipes,dharhas/staged-recipes,sodre/staged-recipes,chohner/staged-recipes,dschreij/staged-recipes,jochym/staged-recipes,koverholt/staged-recipes,jerowe/staged-recipes,blowekamp/staged-recipes,scopatz/staged-recipes,isuruf/staged-recipes,larray-project/staged-recipes,rmcgibbo/staged-recipes,cpaulik/staged-recipes,Juanlu001/staged-recipes,blowekamp/staged-recipes,hadim/staged-recipes,bmabey/staged-recipes,jjhelmus/staged-recipes,Savvysherpa/staged-recipes,grlee77/staged-recipes,mcs07/staged-recipes,koverholt/staged-recipes,hbredin/staged-recipes,pmlandwehr/staged-recipes,scopatz/staged-recipes,mcernak/staged-recipes,conda-forge/staged-recipes |
f3151191c4ffcdf31985db29bba95ae08d2eab4c | recipes/emcee/meta.yaml | recipes/emcee/meta.yaml | {% set version = "2.1.0" %}
package:
name: emcee
version: {{ version }}
source:
fn: emcee-{{ version }}.tar.gz
url: https://pypi.io/packages/source/e/emcee/emcee-{{ version }}.tar.gz
md5: c6b6fad05c824d40671d4a4fc58dfff7
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- numpy
run:
- python
- numpy
test:
imports:
- emcee
requires:
- nose
commands:
- nosetests {{ environ.SRC_DIR }}/emcee -sv
about:
home: http://danfm.ca/emcee/
license: GNU General Public License (GPL)
summary: 'Kick ass affine-invariant ensemble MCMC sampling'
extra:
recipe-maintainers:
- ericdill
| {% set version = "2.1.0" %}
package:
name: emcee
version: {{ version }}
source:
fn: emcee-{{ version }}.tar.gz
url: https://pypi.io/packages/source/e/emcee/emcee-{{ version }}.tar.gz
md5: c6b6fad05c824d40671d4a4fc58dfff7
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- numpy
run:
- python
- numpy
test:
imports:
- emcee
requires:
- nose
commands:
- nosetests {{ environ.SRC_DIR }}/emcee -sv
about:
home: http://danfm.ca/emcee/
license: MIT
summary: 'Kick ass affine-invariant ensemble MCMC sampling'
extra:
recipe-maintainers:
- ericdill
| Change license to MIT. emcee was relicensed under MIT in version 2.0.0 | Change license to MIT. emcee was relicensed under MIT in version 2.0.0
| YAML | bsd-3-clause | gqmelo/staged-recipes,jakirkham/staged-recipes,jjhelmus/staged-recipes,Savvysherpa/staged-recipes,dschreij/staged-recipes,arokem/staged-recipes,nicoddemus/staged-recipes,vamega/staged-recipes,richardotis/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,rmcgibbo/staged-recipes,johannesring/staged-recipes,basnijholt/staged-recipes,asmeurer/staged-recipes,pstjohn/staged-recipes,gqmelo/staged-recipes,cpaulik/staged-recipes,OpenPIV/staged-recipes,bmabey/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,rolando-contrib/staged-recipes,hajapy/staged-recipes,kwilcox/staged-recipes,chohner/staged-recipes,isuruf/staged-recipes,shadowwalkersb/staged-recipes,shadowwalkersb/staged-recipes,pmlandwehr/staged-recipes,jcb91/staged-recipes,synapticarbors/staged-recipes,ocefpaf/staged-recipes,dharhas/staged-recipes,jochym/staged-recipes,rvalieris/staged-recipes,ceholden/staged-recipes,planetarypy/staged-recipes,valgur/staged-recipes,scopatz/staged-recipes,JohnGreeley/staged-recipes,valgur/staged-recipes,pstjohn/staged-recipes,SylvainCorlay/staged-recipes,johanneskoester/staged-recipes,rvalieris/staged-recipes,vamega/staged-recipes,NOAA-ORR-ERD/staged-recipes,johanneskoester/staged-recipes,johannesring/staged-recipes,bmabey/staged-recipes,dfroger/staged-recipes,mcernak/staged-recipes,mariusvniekerk/staged-recipes,sodre/staged-recipes,asmeurer/staged-recipes,chrisburr/staged-recipes,isuruf/staged-recipes,SylvainCorlay/staged-recipes,atedstone/staged-recipes,jjhelmus/staged-recipes,glemaitre/staged-recipes,jerowe/staged-recipes,tylere/staged-recipes,petrushy/staged-recipes,hadim/staged-recipes,dharhas/staged-recipes,sannykr/staged-recipes,birdsarah/staged-recipes,basnijholt/staged-recipes,grlee77/staged-recipes,barkls/staged-recipes,Juanlu001/staged-recipes,stuertz/staged-recipes,guillochon/staged-recipes,grlee77/staged-recipes,larray-project/staged-recipes,scopatz/staged-recipes,Cashalow/staged-recipes,koverholt/staged-recipes,hajapy/staged-recipes,benvandyke/staged-recipes,petrushy/staged-recipes,hbredin/staged-recipes,mcs07/staged-recipes,hadim/staged-recipes,pmlandwehr/staged-recipes,planetarypy/staged-recipes,chohner/staged-recipes,jcb91/staged-recipes,chrisburr/staged-recipes,rolando-contrib/staged-recipes,larray-project/staged-recipes,jerowe/staged-recipes,hbredin/staged-recipes,blowekamp/staged-recipes,ReimarBauer/staged-recipes,richardotis/staged-recipes,jakirkham/staged-recipes,caspervdw/staged-recipes,ceholden/staged-recipes,mariusvniekerk/staged-recipes,NOAA-ORR-ERD/staged-recipes,atedstone/staged-recipes,barkls/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,conda-forge/staged-recipes,mcernak/staged-recipes,mcs07/staged-recipes,blowekamp/staged-recipes,conda-forge/staged-recipes,dschreij/staged-recipes,OpenPIV/staged-recipes,tylere/staged-recipes,arokem/staged-recipes,nicoddemus/staged-recipes,Savvysherpa/staged-recipes,guillochon/staged-recipes,caspervdw/staged-recipes,data-exp-lab/staged-recipes,patricksnape/staged-recipes,sannykr/staged-recipes,jochym/staged-recipes,khallock/staged-recipes,ReimarBauer/staged-recipes,JohnGreeley/staged-recipes,rmcgibbo/staged-recipes,igortg/staged-recipes,cpaulik/staged-recipes,sodre/staged-recipes,dfroger/staged-recipes,synapticarbors/staged-recipes,Cashalow/staged-recipes,koverholt/staged-recipes,glemaitre/staged-recipes,data-exp-lab/staged-recipes,khallock/staged-recipes,benvandyke/staged-recipes,ocefpaf/staged-recipes,sodre/staged-recipes,Juanlu001/staged-recipes |
1e888ba57dc021fee7582c4f697e246c772e8be6 | .github/workflows/publish_on_pypi.yml | .github/workflows/publish_on_pypi.yml | name: Publish DBUtils on PyPI
on:
push:
tags:
- 'Release-*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Build wheel and source tarball
run: |
pip install wheel
python setup.py sdist bdist_wheel
- name: Publish a Python distribution to PyPI
if: matrix.python == 3.9
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
| name: Publish DBUtils on PyPI
on:
push:
tags:
- 'Release-*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.9, 2.7]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Build source tarball
if: matrix.python == 3.9
run: python setup.py sdist
- name: Build wheel
run: |
pip install wheel
python setup.py bdist_wheel
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
| Improve workflow for publishing on PyPI | Improve workflow for publishing on PyPI
We want to publish wheels for both Python 2 and 3
| YAML | mit | Cito/DBUtils,Cito/DBUtils |
065e3c39b94875d0ef059ce60e49bb5a238b0bfd | dsaas-services/f8-tenant.yaml | dsaas-services/f8-tenant.yaml | services:
- hash: 4dc6bfd5b5e8a69dcca9552a06d1ba9d491da9b9
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8io/fabric8-init-tenant/
| services:
- hash: d859722552376b3b7d84c90bc74677bd4f992150
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8io/fabric8-init-tenant/
| Update CheHost to point to prod sso | Update CheHost to point to prod sso | YAML | apache-2.0 | openshiftio/saas,openshiftio/saas |
562ceedfefdc0e2b9335488cf537ddc3bd8c897d | .github/workflows/python-package.yml | .github/workflows/python-package.yml | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [2.7,3.5,3.6,3.7, 3.8,3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -qq swig python-dev libxml2-dev libxmlsec1-dev
make install-req
make install-test
- name: Test
run: |
make pytest
make pycodestyle
make flake8
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [2.7,3.5,3.6,3.7, 3.8,3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -qq swig python-dev libxml2-dev libxmlsec1-dev
make install-req
make install-test
- name: Test
run: |
make pytest
make pycodestyle
make flake8
| Add Pip cache to CI | Add Pip cache to CI
| YAML | mit | onelogin/python3-saml,onelogin/python3-saml |
c9acca3082478ad5e6b19d8c8b427fe6f2d43606 | docker-compose-test-server.yml | docker-compose-test-server.yml | version: "2"
services:
rocketchat:
image: rocketchat/rocket.chat:0.68.3
ports:
- 127.0.0.1:3000:3000
restart: always
environment:
- PORT=3000
- ROOT_URL=http://localhost:3000
- MONGO_URL=mongodb://mongo:27017/rocketchat
depends_on:
- mongo
links:
- mongo:mongo
- mongo:secure.gravatar.com
mongo:
image: mongo:3.3
restart: always
command: mongod --smallfiles
ports:
- "27017:27017"
volumes:
- ./data/db:/data/db
| version: "2"
services:
rocketchat:
image: rocketchat/rocket.chat:0.70.3
ports:
- 127.0.0.1:3000:3000
restart: always
environment:
- PORT=3000
- ROOT_URL=http://localhost:3000
- MONGO_URL=mongodb://mongo:27017/rocketchat
depends_on:
- mongo
links:
- mongo:mongo
- mongo:secure.gravatar.com
mongo:
image: mongo:3.3
restart: always
command: mongod --smallfiles
ports:
- "27017:27017"
volumes:
- ./data/db:/data/db
| Update to version 0.70.3 of the Rocket.Chat server | Update to version 0.70.3 of the Rocket.Chat server
| YAML | mit | jadolg/rocketchat_API |
eb2b5c88c5bb5b6ad63ce11ca08ac548894cb119 | packages/lo/load-env.yaml | packages/lo/load-env.yaml | homepage: https://github.com/pbrisbin/load-env#readme
changelog-type: ''
hash: ac5e198faf9585e658085947fe2ed79eb00d54c929f6d15c1d865bc2fa1259ad
test-bench-deps:
base: ! '>=4.8.0 && <5'
hspec: -any
parsec: -any
load-env: -any
directory: -any
maintainer: Pat Brisbin <pbrisbin@gmail.com>
synopsis: Load environment variables from a file.
changelog: ''
basic-deps:
base: ! '>=4.8.0 && <5'
parsec: -any
directory: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.1.0'
- '0.1.1'
- '0.1.2'
author: Pat Brisbin <pbrisbin@gmail.com>
latest: '0.1.2'
description-type: haddock
description: Parse a .env file and load any declared variables into the current process's
environment. This allows for a .env file to specify development-friendly defaults
for configuration values normally set in the deployment environment.
license-name: BSD3
| homepage: https://github.com/pbrisbin/load-env#readme
changelog-type: ''
hash: 7bb23a812857b257c59fb01a133dcb7d029e688e6f145f336588b7648921f7da
test-bench-deps:
base: ! '>=4.8.0 && <5'
hspec: -any
parsec: -any
doctest: -any
temporary: -any
load-env: -any
directory: -any
maintainer: Pat Brisbin <pbrisbin@gmail.com>
synopsis: Load environment variables from a file.
changelog: ''
basic-deps:
base: ! '>=4.8.0 && <5'
filepath: -any
parsec: -any
directory: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.2.0.0'
author: Pat Brisbin <pbrisbin@gmail.com>
latest: '0.2.0.0'
description-type: haddock
description: Parse a .env file and load any declared variables into the current process's
environment. This allows for a .env file to specify development-friendly defaults
for configuration values normally set in the deployment environment.
license-name: BSD3
| Update from Hackage at 2018-05-24T21:46:57Z | Update from Hackage at 2018-05-24T21:46:57Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
269c9ad35d927e1666b1c35a168fdb4fce923484 | examples/example-togglz-mongo/src/main/resources/application.yml | examples/example-togglz-mongo/src/main/resources/application.yml | spring:
application:
name: example-togglz
jackson:
date-format: yyyy-MM-dd'T'hh:mm:ss.sssZ
serialization:
indent-output: true
thymeleaf:
cache: false
server:
servlet:
context-path: /
port: 8080
management:
endpoints:
web:
base-path: /actuator
expose: '*'
edison:
gracefulshutdown:
enabled: false
mongo:
db: edison-example
host: localhost:27017,localhost:27018,localhost:27019
passwd: ''
user: edison-example
status:
application:
description: Example service to show how to use edison-togglz together with edison-mongo in your microservices
title: Example Togglz Mongo
| spring:
application:
name: example-togglz
jackson:
date-format: yyyy-MM-dd'T'hh:mm:ss.sssZ
serialization:
indent-output: true
thymeleaf:
cache: false
server:
servlet:
context-path: /
port: 8080
management:
endpoints:
web:
base-path: /actuator
expose: '*'
edison:
togglz:
mongo:
enabled: true
gracefulshutdown:
enabled: false
mongo:
db: edison-example
host: localhost
passwd: ''
user: edison-example
status:
application:
description: Example service to show how to use edison-togglz together with edison-mongo in your microservices
title: Example Togglz Mongo
| Enable mongo repository for example-togglz-mongo and fix port property | Enable mongo repository for example-togglz-mongo and fix port property
| YAML | apache-2.0 | otto-de/edison-microservice,otto-de/edison-microservice,otto-de/edison-microservice,otto-de/edison-microservice |
5fb665064d92f8af9dbe8eaf9018d24da32260d4 | roles/git/vars/main.yml | roles/git/vars/main.yml | ---
hub_version: 2.2.9
hub_repo: https://github.com/github/hub
hub_folder: hub-linux-amd64-{{hub_version}}
hub_archive: "{{hub_folder}}.tar.gz"
hub_url: "{{hub_repo}}/releases/download/v{{hub_version}}/{{hub_archive}}"
| ---
hub_version: 2.2.9
hub_repo: https://github.com/github/hub
hub_folder: hub-linux-amd64-{{hub_version}}
hub_archive: "{{hub_folder}}.tgz"
hub_url: "{{hub_repo}}/releases/download/v{{hub_version}}/{{hub_archive}}"
| Fix hub download URL for newer versions | Fix hub download URL for newer versions
| YAML | mit | deivid-rodriguez/dotfiles,deivid-rodriguez/dotfiles |
a7a62cebe716d72cef9832096c3edb389ab8f6a3 | packages/po/polimorf.yaml | packages/po/polimorf.yaml | homepage: https://github.com/kawu/polimorf
changelog-type: ''
hash: cb2ad579c6f3c9862ad80287d4a251b537f3cbb22d80b793df9f6f6664499d30
test-bench-deps: {}
maintainer: waszczuk.kuba@gmail.com
synopsis: Working with the PoliMorf dictionary
changelog: ''
basic-deps:
text-binary: ! '>=0.1 && <0.2'
base: ! '>=4 && <5'
text: -any
containers: -any
binary: -any
all-versions:
- 0.1.0
- 0.2.0
- 0.3.0
- 0.3.1
- 0.4.0
- 0.4.1
- 0.5.0
- 0.6.0
- 0.7.0
- 0.7.1
- 0.7.2
- 0.7.3
author: Jakub Waszczuk
latest: 0.7.3
description-type: haddock
description: ! 'The library provides functionality for manipulating PoliMorf, the
morphological dictionary for Polish.'
license-name: BSD-3-Clause
| homepage: https://github.com/kawu/polimorf#readme
changelog-type: ''
hash: 5cf4605d08c4ca265c8eea6c3284deec712dc77917fbd908b080af8a591d1b70
test-bench-deps: {}
maintainer: waszczuk.kuba@gmail.com
synopsis: Handling the PoliMorf dictionary
changelog: ''
basic-deps:
base: ! '>=4 && <5'
text: -any
containers: -any
binary: -any
all-versions:
- 0.1.0
- 0.2.0
- 0.3.0
- 0.3.1
- 0.4.0
- 0.4.1
- 0.5.0
- 0.6.0
- 0.7.0
- 0.7.1
- 0.7.2
- 0.7.3
- 0.7.4
author: Jakub Waszczuk
latest: 0.7.4
description-type: haddock
description: Please see the README on GitHub at <https://github.com/kawu/polimorf#readme>
license-name: BSD-3-Clause
| Update from Hackage at 2019-11-30T20:22:41Z | Update from Hackage at 2019-11-30T20:22:41Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
483dc4023561102980922000d6ac6a4815654da0 | _config.yml | _config.yml | # Site settings
title: Quaintous
email:
author: Yan Foto
description: "Too many MCs, not enought mics"
baseurl: ""
url: "http://quaintous.com"
language: en
# Google analytics
google_analytics: UA-19069240-4
# Disqus post comments
# (leave blank to disable Disqus)
disqus_shortname: quaintous
# Social icons
show_social_icons: true
github_username: yan-foto
stackoverflow_id: 2295964
twitter_username: "@quaintous"
google_plus_id:
linkedin_username:
angellist_username:
bitcoin_url:
paypal_url:
flattr_button:
# Post sharing icons
show_sharing_icons: true
# Change to 'true' to enable individual icons
share_facebook: true
share_twitter: true
share_googleplus: true
share_linkedin: false
share_digg: false
share_tumblr: false
share_reddit: false
share_stumbleupon: false
# Build settings
highlighter: rouge
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
syntax_highlighter: rouge
permalink: /:year/:month/:day/:title/
paginate: 3
sass:
compressed: true
gems: [jekyll-paginate]
| # Site settings
title: Quaintous
email:
author: Yan Foto
description: "Too many MCs, not enought mics"
baseurl: ""
url: "https://quaintous.com"
language: en
# Google analytics
google_analytics: UA-19069240-4
# Disqus post comments
# (leave blank to disable Disqus)
disqus_shortname: quaintous
# Social icons
show_social_icons: true
github_username: yan-foto
stackoverflow_id: 2295964
twitter_username: "@quaintous"
google_plus_id:
linkedin_username:
angellist_username:
bitcoin_url:
paypal_url:
flattr_button:
# Post sharing icons
show_sharing_icons: true
# Change to 'true' to enable individual icons
share_facebook: true
share_twitter: true
share_googleplus: true
share_linkedin: false
share_digg: false
share_tumblr: false
share_reddit: false
share_stumbleupon: false
# Build settings
highlighter: rouge
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
syntax_highlighter: rouge
permalink: /:year/:month/:day/:title/
paginate: 3
sass:
compressed: true
gems: [jekyll-paginate]
| Update base URL in config (https) | Update base URL in config (https)
| YAML | mit | yan-foto/yan-foto.github.io,yan-foto/yan-foto.github.io |
c15e300b4e8559f36d5b1be61b0942c0438bd80c | _config.yml | _config.yml | # ----------- CONFIGURABLE START -----------
title: 2021 PACE NSC
description: The official website of the 2021 National Scholastic Championship.
logo: pace.png
url: https://pacensc.github.io
remote_theme: pmarsceill/just-the-docs
color_scheme: nsc
search_enabled: false
# ------------ CONFIGURABLE END ------------
permalink: /posts/:title
markdown: kramdown
defaults:
- values:
layout: "default"
| # ----------- CONFIGURABLE START -----------
title: 2021 PACE NSC
description: The official website of the 2021 National Scholastic Championship.
logo: pace.png
url: https://pacensc.github.io
remote_theme: pmarsceill/just-the-docs
color_scheme: nsc
search_enabled: false
# ------------ CONFIGURABLE END ------------
permalink: /posts/:title
markdown: kramdown
| Remove explicit default layout from config | Remove explicit default layout from config
Jekyll will apply it automatically to actual pages, and this stops it from being applied to js files (which is really bad!)
| YAML | mit | PACENSC/pacensc.github.io,PACENSC/pacensc.github.io |
97a1fe621d9c9552a87786bd01b0cdd60abcb7e5 | _config.yml | _config.yml | defaults:
-
scope:
path: ""
type: "posts"
values:
author: "jeaye"
layout: "default"
-
scope:
path: ""
type: "drafts"
values:
author: "jeaye"
layout: "default"
gems:
- jekyll-feed
- jekyll-seo-tag
title: "Jeaye's Blog"
permalink: pretty
home_url: "https://jeaye.com"
blog_url: "https://blog.jeaye.com"
url: "https://blog.jeaye.com"
baseurl: []
license_url: "https://github.com/jeaye/blog.jeaye.com/blob/gh-pages/LICENSE"
tagline: "This is my blog about GNU/Linux, functional programming, safety, and security."
feed:
path: feed.xml
nav-blog-class: current
markdown: kramdown
kramdown:
input: GFM
syntax_highligher: rouge
exclude: [.bundle, vendor, lib]
includes_dir: _includes
| defaults:
-
scope:
path: ""
type: "posts"
values:
author: "jeaye"
layout: "default"
-
scope:
path: ""
type: "drafts"
values:
author: "jeaye"
layout: "default"
gems:
- jekyll-feed
- jekyll-seo-tag
title: "Jeaye's Blog"
permalink: pretty
home_url: "https://jeaye.com"
blog_url: "https://blog.jeaye.com"
url: "https://blog.jeaye.com"
baseurl: ""
license_url: "https://github.com/jeaye/blog.jeaye.com/blob/gh-pages/LICENSE"
tagline: "This is my blog about GNU/Linux, functional programming, safety, and security."
feed:
path: feed.xml
nav-blog-class: current
markdown: kramdown
kramdown:
input: GFM
syntax_highligher: rouge
exclude: [.bundle, vendor, lib]
includes_dir: _includes
| Revert "Try setting baseurl to []" | Revert "Try setting baseurl to []"
This reverts commit 604a4760bb4527b82c20c6a0afdcc1fcaab637bc.
| YAML | mit | jeaye/jeaye.github.io,jeaye/jeaye.github.io |
8bfd950913c0c04a0496bd63e15437ae8b4e211d | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highlighter: true
# Permalinks
permalink: pretty
# Setup
title: Off by one
tagline: Programming for the rest of us
## url: http://blog.jedd-ahyoung.com
url: http://jedd-ahyoung.github.io/
paginate: 1
baseurl: /off-by-one/
author:
name: Jedd Ahyoung
url: http://www.jedd-ahyoung.com
email: jedd-ahyoung@gmail.com
# Custom vars
version: 1.0.0
github:
repo: https://github.com/jedd-ahyoung/off-by-one
| # Dependencies
markdown: redcarpet
pygment: true
# Permalinks
permalink: pretty
# Setup
title: Off by one
tagline: Programming for the rest of us
## url: http://blog.jedd-ahyoung.com
url: http://blog.jedd-ahyoung.com/
paginate: 1
baseurl: /
author:
name: Jedd Ahyoung
url: http://www.jedd-ahyoung.com
email: jedd-ahyoung@gmail.com
# Custom vars
version: 1.0.0
github:
repo: https://github.com/jedd-ahyoung/off-by-one
| Reconfigure for canonical domain and gh-pages settings. | Reconfigure for canonical domain and gh-pages settings.
| YAML | mit | jedd-ahyoung/off-by-one,jedd-ahyoung/off-by-one |
8797a517f76d100b1b715ba0b46ee500ed616132 | _config.yml | _config.yml | # Dependencies
markdown: rdiscount
pygments: true
# Permalinks
permalink: pretty
# Server
source: ./docs
destination: ./_gh_pages
host: 0.0.0.0
port: 9001
baseurl: /
url: http://localhost:9001
encoding: UTF-8
exclude: ["vendor"]
# Custom vars
current_version: 3.1.0
repo: https://github.com/twbs/bootstrap
sass_repo: https://github.com/twbs/bootstrap-sass
download:
source: https://github.com/twbs/bootstrap/archive/v3.1.0.zip
dist: https://github.com/twbs/bootstrap/releases/download/v3.1.0/bootstrap-3.1.0-dist.zip
sass: https://github.com/twbs/bootstrap-sass/archive/v3.1.0.0.tar.gz
blog: http://blog.getbootstrap.com
expo: http://expo.getbootstrap.com
cdn:
css: //netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css
css_theme: //netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap-theme.min.css
js: //netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js
| # Dependencies
markdown: rdiscount
pygments: true
# Permalinks
permalink: pretty
# Server
source: ./docs
destination: ./_gh_pages
host: 0.0.0.0
port: 9001
baseurl: /
url: http://localhost:9001
encoding: UTF-8
exclude: ["vendor"]
# Custom vars
current_version: 3.1.0
repo: https://github.com/twbs/bootstrap
sass_repo: https://github.com/twbs/bootstrap-sass
download:
source: https://github.com/twbs/bootstrap/archive/v3.1.0.zip
dist: https://github.com/twbs/bootstrap/releases/download/v3.1.0/bootstrap-3.1.0-dist.zip
sass: https://github.com/twbs/bootstrap-sass/archive/v3.1.0.tar.gz
blog: http://blog.getbootstrap.com
expo: http://expo.getbootstrap.com
cdn:
css: //netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css
css_theme: //netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap-theme.min.css
js: //netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js
| Apply eaa2b83 to master as well | Apply eaa2b83 to master as well
| YAML | mit | ammula88/bootstrap,ammula88/bootstrap,ammula88/bootstrap,ammula88/bootstrap |
33a83ce76056a1cbbd9a338600cd5da05bc34ff2 | _config.yml | _config.yml | # Site settings
title: Australian Chinese Tennis Association
header-img: img/home-bg.jpg
email: info@acta.net.au
description: "Write your site description here. It will be used as your sites meta description as well!"
baseurl: "/startbootstrap-clean-blog-jekyll"
url: "http://acta.net.au"
twitter_username: SBootstrap
github_username: davidtmiller
facebook_username: IronSummitMedia
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 5
exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"]
| # Site settings
title: Australian Chinese Tennis Association
header-img: img/home-bg.jpg
email: info@acta.net.au
description: "Write your site description here. It will be used as your sites meta description as well!"
baseurl: "/"
url: "http://acta.net.au"
twitter_username: SBootstrap
github_username: davidtmiller
facebook_username: IronSummitMedia
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 5
exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"]
| Update initial config to acta.net.au | Update initial config to acta.net.au
| YAML | apache-2.0 | tennis4acta/tennis4acta.github.io,tennis4acta/tennis4acta.github.io,tennis4acta/tennis4acta.github.io,tennis4acta/tennis4acta.github.io |
ad5dc42e4e16e04d980f5de1f2511cdaf8e2128d | _config.yml | _config.yml | #
# This file contains configuration flags to customize your site
#
# Name of your site (displayed in the header)
name: Nathan Rutman
# Short bio or description (displayed in the header)
description: My random musings...
# Site Logo
logo: https://raw.githubusercontent.com/barryclark/jekyll-now/master/images/jekyll-logo.png
# Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co)
# Used for Sitemap.xml and your RSS feed
url: http://new.nathanrutman.com
# If you're hosting your site at a Project repository on GitHub pages
# (http://yourusername.github.io/repository-name)
# and NOT your User repository (http://yourusername.github.io)
# then add in the baseurl here, like this: "/repository-name"
baseurl: ""
#
# !! You don't need to change any of the configuration flags below !!
#
highlighter: pygments
permalink: /:title/
# Set the Sass partials directory, as we're using @imports
sass:
style: :compressed # You might prefer to minify using :compressed
# Use the following plug-ins
gems:
- jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem
# Exclude these files from your production _site
exclude:
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
- CNAME
| #
# This file contains configuration flags to customize your site
#
# Name of your site (displayed in the header)
name: Nathan Rutman
# Short bio or description (displayed in the header)
description: My random musings...
# Site Logo
logo: https://raw.githubusercontent.com/barryclark/jekyll-now/master/images/jekyll-logo.png
# Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co)
# Used for Sitemap.xml and your RSS feed
url: http://new.nathanrutman.com
# If you're hosting your site at a Project repository on GitHub pages
# (http://yourusername.github.io/repository-name)
# and NOT your User repository (http://yourusername.github.io)
# then add in the baseurl here, like this: "/repository-name"
baseurl: ""
#
# !! You don't need to change any of the configuration flags below !!
#
highlighter: rouge
permalink: /:title/
# Set the Sass partials directory, as we're using @imports
sass:
style: :compressed # You might prefer to minify using :compressed
# Use the following plug-ins
gems:
- jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem
# Exclude these files from your production _site
exclude:
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
- CNAME
| Update highligher per github's requirements | Update highligher per github's requirements
| YAML | mit | nrutman/nrutman.github.io |
9a4c3af37409b47b2782c83f1ba640cb501dd938 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Peter Wood
email: peternatewood@gmail.com
description: >
My personal website containing my projects, resume, and tech blog
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://peternatewood.com" # the base hostname & protocol for your site
github_username: peternatewood
linkedin_username: peternatewood
twitter_username: peternatewood
# Build settings
markdown: kramdown
theme: minima
sass:
sass_dir: _sass
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Peter Wood
email: peternatewood@gmail.com
description: >
My personal website containing my projects, resume, and tech blog
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://peternatewood.com" # the base hostname & protocol for your site
github_username: peternatewood
linkedin_username: peternatewood
twitter_username: peternatewood
# Build settings
markdown: kramdown
theme: minima
include: ['_pages']
sass:
sass_dir: _sass
| Include _pages directory in jekyll build | Include _pages directory in jekyll build
| YAML | mit | RoyTuesday/RoyTuesday.github.io,peternatewood/peternatewood.github.io,peternatewood/peternatewood.github.io,peternatewood/peternatewood.github.io,RoyTuesday/RoyTuesday.github.io |
1ae42a6146ffe53457e2b2ee9cc878147226fc40 | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: Ragu Pappu
tagline: 'Technical thoughts, mostly'
description: 'A blog of my technical activities'
url: http://www.ragupappu.com/
baseurl: /
paginate: 5
# Pages
pages:
Archive: '/archive'
About: '/about'
Feed: '/atom.xml'
# About/contact
author:
name: 'Ragu Pappu'
url: http://www.ragupappu.com/
github:
repo: github.com/ragupappu/ragupappu.github.io
# Theme
theme:
# Localization Strings
str_continue_reading: "Continue reading..."
# Custom vars
version: 1.0.0
| # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: Ragu Pappu
tagline: 'Technical thoughts, mostly'
description: 'A blog of my technical activities'
url: http://www.ragupappu.com/
baseurl: /
paginate: 5
# Pages
pages:
Archive: '/archive'
About: '/about'
Feed: '/atom.xml'
# About/contact
author:
name: 'Ragu Pappu'
url: http://www.ragupappu.com/
github:
repo: https://github.com/ragupappu/ragupappu.github.io
# Theme
theme:
# Localization Strings
str_continue_reading: "Continue reading..."
# Custom vars
version: 1.0.0
| Fix link to GitHub repo | Fix link to GitHub repo | YAML | mit | ragupappu/ragupappu.github.io,ragupappu/ragupappu.github.io |
a5da43f4097204a3ec24166a24f00514b51bae4e | _config.yml | _config.yml | title: "mov eax, 64"
author: "Kevin Soules"
description: "IT security, Hardware hacking, SDR"
more: "read more"
url: "http://libdev.so"
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
comments:
disqus: "eax64githubio"
style:
padding: 33%
anchor: "#46f"
serif-heading: true
nav: "#181818"
description: "white"
article:
odd: "#ffffff"
even: "#222222"
links:
- github: "https://github.com/eax64/"
- twitter: "https://twitter.com/eax64/"
excerpt_separator: "\n\n\n"
defaults: [{scope: {path: ""}, values: {layout: "default"}}, {scope: {path: "", type: "posts"}, values: {comments: true}}]
| title: "mov eax, 64"
author: "Kevin Soules"
description: "IT security, Hardware hacking, SDR"
more: "read more"
url: "http://eax64.github.io"
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
style:
padding: 33%
anchor: "#46f"
serif-heading: true
nav: "#181818"
description: "white"
article:
odd: "#ffffff"
even: "#222222"
links:
- github: "https://github.com/eax64/"
- twitter: "https://twitter.com/eax64/"
excerpt_separator: "\n\n\n"
defaults: [{scope: {path: ""}, values: {layout: "default"}}, {scope: {path: "", type: "posts"}, values: {comments: true}}]
| Update url field. Remove comment section. | Update url field. Remove comment section.
| YAML | mit | eax64/eax64.github.io,eax64/eax64.github.io |
561179dcca37122d47a21e0dfd3e77da186df6fb | _config.yml | _config.yml | name: Jean-Richard Lai
description: Code and other things
meta_keywords: web developer, ruby on rails developer, web, react, react-native, javascript
meta_description: "Jean-Richard Lai Ruby on Rails / React Native Developer"
aboutPage: true
markdown: kramdown
kramdown:
input: GFM
highlighter: pygments
paginate: 20
baseurl: /
domain_name: 'http://jrichardlai.com'
google_analytics: 'UA-15492959-1'
disqus: true
disqus_shortname: 'jrichardlai'
# Details for the RSS feed generator
url: 'http://www.jrichardlai.com'
author: 'Jean-Richard Lai'
authorTwitter: 'jrichardlai'
permalink: /:year/:month/:day/:title
defaults:
-
scope:
path: "" # empty string for all files
type: pages
values:
layout: default
-
scope:
path: "" # empty string for all files
type: posts
values:
layout: post
-
scope:
path: ""
type: drafts
values:
layout: post
exclude: [vendor]
gems:
- jemoji
| name: Jean-Richard Lai
description: Code and other things
meta_keywords: web developer, ruby on rails developer, web, react, react-native, javascript
meta_description: "Jean-Richard Lai Ruby on Rails / React Native Developer"
aboutPage: true
markdown: kramdown
kramdown:
input: GFM
highlighter: rouge
paginate: 20
baseurl: /
domain_name: 'http://jrichardlai.com'
google_analytics: 'UA-15492959-1'
disqus: true
disqus_shortname: 'jrichardlai'
# Details for the RSS feed generator
url: 'http://www.jrichardlai.com'
author: 'Jean-Richard Lai'
authorTwitter: 'jrichardlai'
permalink: /:year/:month/:day/:title
defaults:
-
scope:
path: "" # empty string for all files
type: pages
values:
layout: default
-
scope:
path: "" # empty string for all files
type: posts
values:
layout: post
-
scope:
path: ""
type: drafts
values:
layout: post
exclude: [vendor]
gems:
- jemoji
| Change highlighter from pygments to rouge | Change highlighter from pygments to rouge | YAML | mit | jrichardlai/jrichardlai.github.io,jrichardlai/jrichardlai.github.io,jrichardlai/jrichardlai.github.io |
89c0253094058999cba2be1098c83f0df127f14c | _config.yml | _config.yml | # top level stuff you probably don't need to touch
highlighter: pygments
markdown: redcarpet
rdiscount:
extensions: [smart]
permalink: /:title.html
paginate: 5
gems: [jekyll-paginate]
port: 3000
safe: true
# edit here to achieve your personal greatness
url: http://dkarter.github.io/
baseurl: /blog/
title: Dorian Karter
author: Dorian Karter
description: Personal blog and resume
avatar: profile.jpg
email: jobs@doriankerter.com
github: dkarter
twitter: dorian_escplan
linkedin: doriankarter
stackoverflow: users/77131/dorian
#Comment out if you don't want disqus
# disqus: username
google_analytics: UA-38677517-1
# needed for travis-ci build
exclude: [vendor]
| # top level stuff you probably don't need to touch
highlighter: pygments
markdown: redcarpet
rdiscount:
extensions: [smart]
permalink: /:title.html
paginate: 5
gems: [jekyll-paginate]
port: 4000
safe: true
# edit here to achieve your personal greatness
url: http://dkarter.github.io/
baseurl: /blog/
title: Dorian Karter
author: Dorian Karter
description: Personal blog and resume
avatar: profile.jpg
email: jobs@doriankerter.com
github: dkarter
twitter: dorian_escplan
linkedin: doriankarter
stackoverflow: users/77131/dorian
#Comment out if you don't want disqus
# disqus: username
google_analytics: UA-38677517-1
# needed for travis-ci build
exclude: [vendor]
| Change jekyll port to 4000 | Change jekyll port to 4000
so I can work on a rails app simultaneously
| YAML | mit | dkarter/blog,dkarter/blog,dkarter/blog |
2761622096e615eae6922193ed68175120fe3677 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Number By Colors
email: your-email@domain.com
description: > # this means to ignore newlines until "baseurl:"
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: "" # the subpath of your site, e.g. /blog
url: "http://yourdomain.com" # the base hostname & protocol for your site
twitter_username: numberbycolors
github_username: NumberByColors
# Build settings
markdown: kramdown
sass:
load_paths:
- _sass
- bootstrap-sass-3.3.6/assets/stylesheets
style: compressed
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Number By Colors
email: davidstephens92@gmail.com
description: > # this means to ignore newlines until "baseurl:"
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: "" # the subpath of your site, e.g. /blog
url: "http://numberbycolors.github.io" # the base hostname & protocol for your site
twitter_username: numberbycolors
github_username: NumberByColors
# Build settings
markdown: kramdown
sass:
load_paths:
- _sass
- bootstrap-sass-3.3.6/assets/stylesheets
style: compressed
| Add URL and email to config.yml | Add URL and email to config.yml
| YAML | mit | NumberByColors/numberbycolors.github.io,NumberByColors/numberbycolors.github.io |
cc7cd79d8a063cb220bdea7d26298d8034d2db8e | _config.yml | _config.yml | # Site settings
title: 三人行
email: hi@three.sh
description: > # this means to ignore newlines until "baseurl:"
「三人行」纯粹是 Sneezry、Huntersnk 和 Rebornix 三个人在某夜头脑发热的情况下决定共同开设的一档播客节目。三个人都是在软硬件行业摸爬滚打没多久的新手工程师,能带给大家的也不过是同事间茶余饭后的闲谈。
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://three.sh" # the base hostname & protocol for your site
twitter_username: CastThree
github_username: threecast
# Build settings
markdown: kramdown
| # Site settings
title: 三人行
email: hi@three.sh
description: > # this means to ignore newlines until "baseurl:"
「三人行」纯粹是 Sneezry、Huntersnk 和 Rebornix 三个人在某夜头脑发热的情况下决定共同开设的一档播客节目。三个人都是在软硬件行业摸爬滚打没多久的新手工程师,能带给大家的也不过是同事间茶余饭后的闲谈。
如果您碰巧喜欢我们的节目,不妨给我们写邮件(hi@three.sh)反馈,和我们一起把讨论与分享继续下去。同时也欢迎大家用支付宝支付消费至hi@three.sh,请我们喝杯啤酒或者打一次免费的 Uber 。
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://three.sh" # the base hostname & protocol for your site
twitter_username: CastThree
github_username: threecast
# Build settings
markdown: kramdown
| Update email feedback and donation description | Update email feedback and donation description | YAML | mit | threecast/threecast.github.io |
8133a8ea96b989c345846915428ed929ff2d69db | _config.yml | _config.yml | ---
port: 4000
host: 0.0.0.0
safe: false
### site serving configuration ###
exclude: [CNAME, README.md, .gitignore]
permalink: / ## disables post output
timezone: null
lsi: false
markdown: kramdown
highlighter: pygments
### content configuration ###
title: "SinglePaged - Simple Jekyll template"
keywords: "SinglePaged, jekyll, template, github, blog, single page"
description: "A single-page template for Jekyll based blogs (like what you'd use on github pages!)"
source_link: "https://github.com/t413/SinglePaged"
favicon: "img/favicon.ico"
touch_icon: "img/apple-touch-icon.png"
google_analytics_key: UA-49607422-1 ## put YOUR key here to enable tracking! (blank to disable)
### template colors, used site-wide via css ###
colors:
black: '#111111'
white: '#f8f8f8'
blue: '#49a7e9'
green: '#9bcf2f'
purple: '#c869bf'
orange: '#fab125'
turquoise: '#0fbfcf'
kramdown:
auto_ids: false
| ---
port: 4000
host: 0.0.0.0
safe: false
### site serving configuration ###
exclude: [CNAME, README.md, .gitignore]
permalink: / ## disables post output
timezone: null
lsi: false
markdown: kramdown
highlighter: pygments
### content configuration ###
title: "GAFE Mini Conference"
keywords: "Google, GAFE, PD,"
description: "Everything you need to know about the big event!"
source_link: "https://github.com/t413/SinglePaged"
favicon: "img/favicon.ico"
touch_icon: "img/apple-touch-icon.png"
google_analytics_key: UA-49607422-1 ## put YOUR key here to enable tracking! (blank to disable)
### template colors, used site-wide via css ###
colors:
black: '#111111'
white: '#f8f8f8'
blue: '#49a7e9'
green: '#9bcf2f'
purple: '#c869bf'
orange: '#fab125'
turquoise: '#0fbfcf'
kramdown:
auto_ids: false
| Update to Title & Description | Update to Title & Description
| YAML | mit | rfitz9/gafecon,rfitz9/gafecon |
86a849cafb710f2a332ead8279f637ff1d887895 | _config.yml | _config.yml | paginate: 10
include: [assets, css, js, img, do-not-track]
archive_dir: archive
category_dir: category
tag_dir: tag
highlighter: rouge
permalink: /archive/:year/:month/:day/:title
ga_tracking_code: UA-34829303-1
ga_domain: blog.orestes.io
url: http://blog.orestes.io
media_url: /media
source_url: http://github.com/orestes/blog.orestes.io
title: Orestes Carracedo
author_name: Orestes Carracedo
author_email: orestes.ca@gmail.com
copyright_years: 2009-2014
feed_title: Orestes Carracedo
feed_url: http://feeds.feedburner.com/orestes/blog
| paginate: 10
include: [assets, css, js, img, do-not-track]
archive_dir: archive
category_dir: category
tag_dir: tag
highlighter: rouge
permalink: /archive/:year/:month/:day/:title
ga_tracking_code: UA-34829303-1
ga_domain: blog.orestes.io
url: http://blog.orestes.io
media_url: http://blog.orestes.io/media
source_url: http://github.com/orestes/blog.orestes.io
title: Orestes Carracedo
author_name: Orestes Carracedo
author_email: orestes.ca@gmail.com
copyright_years: 2009-2014
feed_title: Orestes Carracedo
feed_url: http://feeds.feedburner.com/orestes/blog
| Make media_url a full URI. | Make media_url a full URI.
| YAML | mit | orestes/blog.orestes.io,orestes/blog.orestes.io,orestes/blog.orestes.io |
732f2e4fc27d1c235a7f88c354b77081cb864475 | Scripts/SaneDocReport/SaneDocReport.yml | Scripts/SaneDocReport/SaneDocReport.yml | args:
- default: true
description: sane report json file contents base64
isArray: false
name: sane_docx_report_base64
required: true
secret: false
- default: false
description: orientation of the report
isArray: false
name: orientation
required: false
secret: false
- default: false
description: the paper size of the report
isArray: false
name: paperSize
required: false
secret: false
comment: Parse Sane-json-reports and export them as docx files (used internally).
commonfields:
id: SaneDocReports
version: -1
enabled: true
name: SaneDocReports
script: '-'
system: false
tags:
- sane-doc-reports
- sane-reports
- docx
timeout: '0'
type: python
dockerimage: demisto/sane-doc-reports:1.0.0.1087
runas: DBotWeakRole
runonce: false
tests:
- No Test
deprecated: true
fromversion: 5.0.0
| args:
- default: true
description: sane report json file contents base64
isArray: false
name: sane_docx_report_base64
required: true
secret: false
- default: false
description: orientation of the report
isArray: false
name: orientation
required: false
secret: false
- default: false
description: the paper size of the report
isArray: false
name: paperSize
required: false
secret: false
comment: Parse Sane-json-reports and export them as docx files (used internally).
commonfields:
id: SaneDocReports
version: -1
enabled: true
name: SaneDocReports
script: '-'
system: false
tags:
- sane-doc-reports
- sane-reports
- docx
timeout: '0'
type: python
dockerimage: demisto/sane-doc-reports:1.0.0.1443
runas: DBotWeakRole
runonce: false
tests:
- No Test
deprecated: true
fromversion: 5.0.0
| Update the sane doc report docker image | Update the sane doc report docker image
| YAML | mit | demisto/content,demisto/content,demisto/content,demisto/content,VirusTotal/content,VirusTotal/content,VirusTotal/content,VirusTotal/content |
33160274f09b483e25794ebea8404118ad4680ef | _config.yml | _config.yml | name: '/dev/random'
description: 'Random thoughts on development and stuff'
author: Hans Kristian Flaatten
url: https://starefossen.github.io
ga_id: UA-38558206-2
license:
title: Creative Commons CC BY-SA 4.0 license
url: https://creativecommons.org/licenses/by-sa/4.0/
social: !!omap
- icon: twitter
url: https://twitter.com/starefossen
- icon: github
url: https://github.com/starefossen
- icon: linkedin
url: https://linkedin.com/hans.flaatten
relative_permalinks: false
permalink: /post/:year/:month/:day/:title/
excerpt_separator: <!--more-->
markdown: redcarpet
highlighter: pygments
timezone: NO
encoding: UTF-8
repository: Starefossen/starefossen.github.com
gems:
- jekyll-feed
- jekyll-github-metadata
- jekyll-mentions
- jekyll-redirect-from
- jekyll-sitemap
- jemoji
| name: '/dev/random'
description: 'Random thoughts on development and stuff'
author:
name: Hans Kristian Flaatten
email: hans@starefossen.com
url: https://starefossen.github.io
ga_id: UA-38558206-2
license:
title: Creative Commons CC BY-SA 4.0 license
url: https://creativecommons.org/licenses/by-sa/4.0/
social: !!omap
- icon: twitter
url: https://twitter.com/starefossen
- icon: github
url: https://github.com/starefossen
- icon: linkedin
url: https://linkedin.com/hans.flaatten
relative_permalinks: false
permalink: /post/:year/:month/:day/:title/
excerpt_separator: <!--more-->
markdown: redcarpet
highlighter: pygments
timezone: NO
encoding: UTF-8
repository: Starefossen/starefossen.github.com
gems:
- jekyll-feed
- jekyll-github-metadata
- jekyll-mentions
- jekyll-redirect-from
- jekyll-sitemap
- jemoji
| Add email to author information | Add email to author information
| YAML | mit | Starefossen/starefossen.github.com,Starefossen/starefossen.github.com |
3db996389dabbf7510b99ff3ce93b23389eb1574 | _config.yml | _config.yml | name: Alykhan Kanji
safe: true
exclude: [README.md, LICENSE.md]
| name: Alykhan Kanji
safe: true
exclude: [README.md, LICENSE.md, CNAME]
| Add CNAME to Jekyll excludes | Add CNAME to Jekyll excludes
| YAML | mit | alykhank/alykhank.github.io,alykhank/alykhank.github.io,alykhank/alykhank.github.io |
e22a58e3f771a941d70f1e09a9285414c79105a0 | _config.yml | _config.yml | title: 'Блог Анатолия Гуляева'
author: 'Анатолий Гуляев'
keywords: 'kaneru, блог, продуктивность, лайфлист, программирование, фронт-енд'
description: > # this means to ignore newlines until "note:"
Блог Анатолия Гуляева.
Тут в основном пишу свои наблюдения и заметки про программирование, фронт-енд, продуктивность и свою жизнь.
## note:
# use site.path in your templates to make it work for both protocols e.g. http and https
# use site.url only inside the web feed template (e.g. requires full url incl. protocol)
path: ''
url: 'https://kaneru.github.io'
permalink: :title/
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter_opts:
disable: true
highlighter: none
pagination:
enabled: true
collection: 'posts'
per_page: 5
permalink: '/page/:num/'
sort_field: 'date'
sort_reverse: true
exclude:
- README.md
safe: true
lsi: false
include: [_pages]
plugins: [rouge, jekyll-sitemap, jekyll-feed]
future: true
| title: 'Блог Анатолия Гуляева'
author: 'Анатолий Гуляев'
keywords: 'kaneru, блог, продуктивность, лайфлист, программирование, фронт-енд'
description: > # this means to ignore newlines until "note:"
Блог Анатолия Гуляева.
Тут в основном пишу свои наблюдения и заметки про программирование, фронт-енд, продуктивность и свою жизнь.
## note:
# use site.path in your templates to make it work for both protocols e.g. http and https
# use site.url only inside the web feed template (e.g. requires full url incl. protocol)
path: ''
url: 'https://kaneru.github.io'
permalink: :title/
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter_opts:
disable: true
pagination:
enabled: true
collection: 'posts'
per_page: 5
permalink: '/page/:num/'
sort_field: 'date'
sort_reverse: true
exclude:
- README.md
safe: true
lsi: false
include: [_pages]
plugins: [rouge, jekyll-sitemap, jekyll-feed]
future: true
| Delete highlighter property from config | Delete highlighter property from config
| YAML | mit | kaneru/kaneru.github.io,kaneru/kaneru.github.io,kaneru/kaneru.github.io |
d3ab3ddc26515096aee2c480d33c3e53f9f3b2aa | packages/fi/filtrable.yaml | packages/fi/filtrable.yaml | homepage: https://github.com/strake/filtrable.hs
changelog-type: ''
hash: 5b9c8246a89b0d9a97ff3827840e39c1a26a9adbf940e349defbb0eb25224871
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Class of filtrable containers
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
author: M Farkas-Dyck
latest: '0.1.0.5'
description-type: haddock
description: ''
license-name: BSD3
| homepage: https://github.com/strake/filtrable.hs
changelog-type: ''
hash: 7fb5ad5b0254d38b5716c1f1d8338f8273983154f056e10da3cce743fac602d7
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Class of filtrable containers
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
- '0.1.1.0'
author: M Farkas-Dyck
latest: '0.1.1.0'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2018-05-16T01:13:13Z | Update from Hackage at 2018-05-16T01:13:13Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8ab55a5d151b93830a26befc360d26a57a3df074 | packages/sh/shake-ats.yaml | packages/sh/shake-ats.yaml | homepage: https://github.com/vmchale/shake-ats#readme
changelog-type: ''
hash: d1c78760dc6208361c75ca15ab29f01f44e63b2c794082bdfd0d9aecc3ad0353
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: Utilities for building ATS projects with shake
changelog: ''
basic-deps:
shake: -any
base: ! '>=4.7 && <5'
text: -any
shake-ext: -any
language-ats: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.2.0.0'
author: Vanessa McHale
latest: '0.2.0.0'
description-type: markdown
description: ! '# shake-ats
## Installation
## Configuration
'
license-name: BSD3
| homepage: https://github.com/vmchale/shake-ats#readme
changelog-type: ''
hash: 808cd2f2320a59275a2c2af6b93514abbad35c49e1d90610d371fa81d9e0e812
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: Utilities for building ATS projects with shake
changelog: ''
basic-deps:
shake: -any
base: ! '>=4.7 && <5'
text: -any
shake-ext: -any
language-ats: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.2.0.0'
- '0.2.0.1'
author: Vanessa McHale
latest: '0.2.0.1'
description-type: markdown
description: ! '# shake-ats
## Installation
## Configuration
'
license-name: BSD3
| Update from Hackage at 2018-01-27T05:03:36Z | Update from Hackage at 2018-01-27T05:03:36Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.