Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add new slide that got left out of previous commit | id: 251
title: Talk page tutorial
summary:
content: |
Let's practice using a talk page. This link will take you to an example
talk page on Wikipedia and walk you through of replying — which you do by
making an edit, using wikicode.
When you're finished, you can return here to continue this training module.
<div class="training__button-container"><a target="_blank" class="btn btn-primary" href="https://en.wikipedia.org/wiki/Special:MyTalk/talk_page_tutorial?tour=wikiedtalkpage">
Launch "Talk Page" tutorial.
</a></div>
| |
Add build and deploy github action | # This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build and Deploy
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build a binary wheel and a source tarball
run: python -m build --sdist --wheel --outdir dist/
- name: Publish distribution to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
# uncomment to publish to PyPI
# - name: Publish distribution to PyPI
# uses: pypa/gh-action-pypi-publish@master
# with:
# password: ${{ secrets.PYPI_API_TOKEN }}
| |
Add Gamecraft config server file | # ===================================================================
# Gamecraft Spring Cloud Config.
# ===================================================================
# Property used on app startup to check the config server status
configserver:
name: Gamecraft config server
status: Connected to the Gamecraft config server, using GIT repository!
# Default JWT secret token (to be changed in production!)
jhipster:
security:
authentication:
jwt:
secret: 2e0950f5f59fc3842303adb41d5d75a7f15b0509 | |
Update from Hackage at 2016-11-14T00:53:54Z | homepage: https://github.com/y-kamiya/strips#readme
changelog-type: ''
hash: 8f0be9009cfa0257d9a85163bd721e11fa64f1ccf63a110ea77d095d4d55b875
test-bench-deps:
strips: -any
base: ! '>=4.6 && <5'
hspec: -any
containers: -any
mtl: -any
maintainer: y.kamiya0@gmail.com
synopsis: Initial project template from stack
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
containers: -any
mtl: -any
all-versions:
- '0.1.0.0'
author: Yuji Kamiya
latest: '0.1.0.0'
description-type: haddock
description: Please see README.md
license-name: BSD3
| |
Create chagelog for copying swedish fact to kanji table | databaseChangeLog:
- changeSet:
id: 62
author: Pontus Doverstav
changes:
- sql:
comment: Move swedish translations from fact to kanji table
sql:
UPDATE contentschema.kanjis AS k
SET swedish = data.data
FROM (
SELECT n.id, f.data
FROM contentschema.facts f
INNER JOIN contentschema.nuggets n ON n.id = f.nuggetid
WHERE n.type = 'kanji' AND f.type = 'swedish'
) data
WHERE k.id = data.id;
| |
Add muler to conda-forge with a new recipe | # Note: there are many handy hints in comments in this example -- remove them when you've finalized your recipe
# Jinja variables help maintain the recipe as you'll update the version only here.
# Using the name variable with the URL in line 14 is convenient
# when copying and pasting from another recipe, but not really needed.
{% set name = "muler" %}
{% set version = "0.2.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ee50e30aa955d1e6a033539eb28d1dab768b2b40d32b4659eab4eb5294964a01
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- python
- pip
run:
- python >=3.6
- astropy >=4.1
- specutils >=1.2
- numpy
- scipy
- celerite2
- pandas
- matplotlib
- h5py
test:
imports:
- muler
about:
home: https://muler.readthedocs.io
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'A Python package for working with pipeline-produced data from IGRINS and HPF'
description: |
muler is an easy to use Python package for post-processing echelle
spectroscopy from near-infrared astronomical spectrographs. We currently
support IGRINS, HPF, and Keck NIRSPEC.
doc_url: https://muler.readthedocs.io
dev_url: https://github.com/OttoStruve/muler
extra:
recipe-maintainers:
- gully
| |
Enforce repo yaml privacy key. | repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
| |
Set up CI with Azure Pipelines | # ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: VSTest@2
inputs:
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
| |
Update from Hackage at 2018-10-11T09:17:21Z | homepage: https://github.com/aspiwack/peppermint-prover
changelog-type: markdown
hash: 92a1290568611c758abbc97c77452150ebfbf345d5fb60366cf09363133694a0
test-bench-deps: {}
maintainer: arnaud@spiwack.net
synopsis: Unfixing and recursion schemes for data types with binders
changelog: ! '# Revision history for unfix-binders
## 0.1.0 -- 2017-10-10
* Bare minimum library, unstable API, for demonstration only
'
basic-deps:
base: ! '>=4.12 && <4.13'
all-versions:
- '0.1.0'
author: Arnaud Spiwack
latest: '0.1.0'
description-type: markdown
description: ! 'Unfix binders
=============
_when your substitutions are in a fix_
This library defines fixed points of endofunctors of the category of
endofunctors with the purpose of generalising recursion schemes for
data types with binders.
It is still in a very experimental state: for demonstration purpose only (though
contributions welcome!)
'
license-name: BSD3
| |
Make a release on PyPI via github actions | # This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: publish
on:
push:
tags:
- "v*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
| |
Change container to one with Ansible already installed | # CircleCI is used only for Ansible-Lint and Ansible Syntax checks
version: 2
jobs:
build:
docker:
- image: ansible/ansible:ubuntu1604
steps:
- checkout
- run:
name: Install ansible-lint
command: |
pip install ansible-lint
ansible-lint --version
- run:
name: Ansible YAML syntax check
command: |
ansible-playbook --syntax-check stackstorm.yml
- run:
name: Ansible-lint check
command: |
ansible-lint -v roles/*/*/*.yaml roles/*/*/*.yml stackstorm.yml
| # CircleCI is used only for Ansible-Lint and Ansible Syntax checks
version: 2
jobs:
build:
docker:
- image: williamyeh/ans:ubuntu16.04
steps:
- checkout
- run:
name: Install ansible-lint
command: |
pip install ansible-lint
ansible-lint --version
- run:
name: Ansible YAML syntax check
command: |
ansible-playbook --syntax-check stackstorm.yml
- run:
name: Ansible-lint check
command: |
ansible-lint -v roles/*/*/*.yaml roles/*/*/*.yml stackstorm.yml
|
Add config for Travis CI. | language: java
jdk:
- openjdk6
install: mvn clean -DbuildNumber=${TRAVIS_BUILD_NUMBER}
notifications:
irc:
channels:
- "irc.esper.net#droplet"
on_success: always
on_failure: always
| |
Update from Hackage at 2018-11-14T08:52:37Z | homepage: https://gitlab.com/igrep/pure-shuffle#readme
changelog-type: markdown
hash: a397a37d638b75cf0be80a24a40d62a926989258a6cbd1b2ee42aabb14edb4b5
test-bench-deps:
base: ! '>=4.7 && <5'
hspec: -any
pure-shuffle: -any
random-shuffle: -any
QuickCheck: -any
mono-traversable: -any
maintainer: yuji-yamamoto@iij.ad.jp
synopsis: ''
changelog: ! '# 0.1.0.0
Initial release.
'
basic-deps:
base: ! '>=4.7 && <5'
random-shuffle: -any
mono-traversable: -any
all-versions:
- '0.1.0.0'
author: Yuji Yamamoto
latest: '0.1.0.0'
description-type: markdown
description: ! '# pure-shuffle
Provides `shuffle` function (and its related ones) depending only on `Monad` (without
any specific random number generators).
'
license-name: Apache-2.0
| |
Add a github action for CI | name: CI
on: [push, pull_request]
jobs:
windows:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm ci
- run: npm test
linux:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm ci
- run: npm test
macos:
name: macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm ci
- run: npm test
| |
Update from Hackage at 2020-10-16T15:35:06Z | homepage: https://hackage.haskell.org/package/subG
changelog-type: markdown
hash: c5cb5dd0248214556f938d5d205c251a43892d7e5fcf5a6f9a178be03fb594fc
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Some extension to the Foldable and Monoid classes.
changelog: |
# Revision history for subG
## 0.1.0.0 -- 2020-10-16
* First version. Released on an unsuspecting world.
basic-deps:
base: '>=4.7 && <4.15'
all-versions:
- 0.1.0.0
author: OleksandrZhabenko
latest: 0.1.0.0
description-type: haddock
description: Some extension to the Foldable and Monoid classes. Introduces a new class
InsertLeft of the types that can be inserted with values from the left.
license-name: MIT
| |
Set up CI with Azure Pipelines | # ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
trigger:
- master
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@0
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: VSTest@2
inputs:
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
| |
Update from Hackage at 2019-09-12T15:41:08Z | homepage: https://github.com/andrewthad/array-builder
changelog-type: markdown
hash: cdbca14ebed86b3501a2ff8c52c16ed6c0ead866f0afc1e7f8c6d329e1db37cc
test-bench-deps:
base: -any
array-builder: -any
tasty-hunit: -any
tasty: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Builders for arrays
changelog: |
# Revision history for array-builder
## 0.1.0.0 -- 2019-09-12
* First version. Released on an unsuspecting world.
basic-deps:
base: ! '>=4.12 && <5'
run-st: ! '>=0.1 && <0.2'
array-chunks: ! '>=0.1 && <0.2'
primitive: ! '>=0.6.4 && <0.8'
all-versions:
- 0.1.0.0
author: Andrew Martin
latest: 0.1.0.0
description-type: haddock
description: ''
license-name: BSD-3-Clause
| |
Create Workflow for Github Actions | name: Compilation Workflow
on: [push, pull_request]
jobs:
build:
env:
GO111MODULE: auto
TARGET: amd64
strategy:
matrix:
go-version: [1.13.x]
os: [ubuntu-18.04, ubuntu-16.04]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout project
uses: actions/checkout@v2
- name: Copy SourceCode to GoPath
run: mkdir -p $HOME/go/src/github.com/sodafoundation && cp -r ../nbp $HOME/go/src/github.com/sodafoundation/
- name: Build
run: make
- name: Test & Coverage
run: go test -v github.com/sodafoundation/nbp/csi/... -cover
| |
Add new links to create new issue page | blank_issues_enabled: false
contact_links:
- name: How to extract log files from DBeaver
url: https://github.com/dbeaver/dbeaver/wiki/Log-files
about: Common things you should know before creating a bug report.
- name: Try advanced database management features in DBeaver PRO
url: https://dbeaver.com/download/?utm_source=github&utm_medium=social&utm_campaign=issue
about: Download a 14-day free trial on dbeaver.com. No credit card is needed.
- name: Learn how to use DBeaver effectively with our tutorial videos
url: https://www.youtube.com/channel/UC-yOjsQLSaJVEghg6UB3N7A
about: Subscribe to our youtube channel and watch new tutorials every week
- name: Follow us on the Facebook
url: https://www.facebook.com/DBeaverCorporation
about: Get everyday tips, detailed manuals, and DBeaver feature overviews.
| |
Add a jump-prevention passive example | nojump:
icon: feather{CustomModelData:18001}
icon_disabled: feather{CustomModelData:18002}
passive: true
triggers: jump
actions:
cast:
- class: Repeat
actions:
- class: Velocity
direction: 0,-1,0
- class: Delay
parameters:
target: self
repeat: 5 | |
Update from Hackage at 2018-12-12T04:13:30Z | homepage: ''
changelog-type: markdown
hash: 00d1a7b7ff0890a3e3cba4032be24fe377c26e5e45d73afcacd42c98abb3b7e3
test-bench-deps: {}
maintainer: lukec@themk.net
synopsis: Derive monoid instances for product types.
changelog: ! '# Revision history for generic-monoid
## 0.1.0.0 -- 2018-12-12
* Initial release.
'
basic-deps:
base: ! '>=4.12 && <4.13'
all-versions:
- '0.1.0.0'
author: Luke Clifton
latest: '0.1.0.0'
description-type: markdown
description: ! "# Generic Monoid (and Semigroup)\n\nThis library provides a method
of deriving `Semigroup` and `Monoid` instances\nfor your large product types. It
does this using GHC generics, and can provides\na mechanism for using the `DerivingVia`
extension to reduce boilerplate.\n\nIt only works if each field of your product
type is itself a `Semigroup`/`Monoid`.\n\n```haskell\n{-# LANGUAGE DerivingStrategies
#-}\n{-# LANGUAGE DerivingVia #-}\n{-# LANGUAGE DeriveGeneric #-}\n\nimport
GHC.Generics\nimport Data.Monoid.Generic\n\ndata BigProduct = BigProduct\n {
theList :: [Int]\n , theSum :: Sum Double\n , theString :: String\n }
deriving (Generic, Eq)\n deriving Semigroup via GenericSemigroup BigProduct\n
\ deriving Monoid via GenericMonoid BigProduct\n\nuseIt :: Bool\nuseIt = (mempty
<> mempty) == BigProduct [] 0 \"\"\n```\n"
license-name: BSD3
| |
Enable testing on Travis using Miniconda. | language: python
python:
# This is not actually used. Because it would take an overly long time
# to build scipy we cannot use the virtual env of travis. Instead, we
# use miniconda.
- "2.7"
sudo: false
install:
# Install miniconda
# -----------------
- if [[ "$TRAVIS_PYTHON_VERSION" == 2* ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
# Create the basic testing environment
# ------------------------------------
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
- conda update conda
- conda create -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
# Customise the testing environment
# ---------------------------------
- conda install --file requirements.txt
# Conda debug
#-----------
- conda list
# Install ocropy
# --------------
- wget -O models/en-default.pyrnn.gz http://www.tmbdev.net/en-default.pyrnn.gz
- python setup.py install
script:
- mkdir ../test_folder
- cd ../test_folder
- ../ocropy/run-test
| |
Remove annoying noisy backrace in Travis | language: ruby
rvm:
- 2.2.0
sudo: false
env:
global:
SPEC_OPTS=--backtrace --color
bundler_args: --deployment --without development
cache: bundler
before_install:
- gem install bundler
- bundle --version
before_script:
- cp config/database.ci.yml config/database.yml
- cp .env.example .env
- psql -c 'create database orientation_test;' -U postgres
- bundle exec rake db:migrate
script:
- bundle exec rspec spec/
branches:
only:
- master
notifications:
email: false
addons:
code_climate:
repo_token: 75408d377a0b3c1ab512bf3fb634617bccf2a1065f8c513e352139427ec8e1fb
| language: ruby
rvm:
- 2.2.0
sudo: false
env:
global:
SPEC_OPTS=--color
bundler_args: --deployment --without development
cache: bundler
before_install:
- gem install bundler
- bundle --version
before_script:
- cp config/database.ci.yml config/database.yml
- cp .env.example .env
- psql -c 'create database orientation_test;' -U postgres
- bundle exec rake db:migrate
script:
- bundle exec rspec spec/
branches:
only:
- master
notifications:
email: false
addons:
code_climate:
repo_token: 75408d377a0b3c1ab512bf3fb634617bccf2a1065f8c513e352139427ec8e1fb
|
Add configuration for Travis CI | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
before_install:
- sudo apt-get update
- sudo apt-get install libgirepository1.0-dev gobject-introspection gir1.2-gtk-3.0
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake test"
| |
Remove three-dot-two from Travis build | before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake test_app"
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- master
- three-dot-two
rvm:
- 1.8.7
- 1.9.3
- ree
| before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake test_app"
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- master
rvm:
- 1.8.7
- 1.9.3
- ree
|
Add workflow to auto-merge PRs | name: automerge
on:
pull_request:
types:
- edited
- labeled
- opened
- ready_for_review
- reopened
- synchronize
- unlabeled
- unlocked
pull_request_review:
types:
- submitted
check_suite:
types:
- completed
status: {}
jobs:
automerge:
runs-on: ubuntu-latest
steps:
- name: automerge
uses: "pascalgn/automerge-action@f81beb99aef41bb55ad072857d43073fba833a98"
env:
GITHUB_TOKEN: "${{ secrets.ACCESS_TOKEN }}"
MERGE_LABELS: "automerge,!blocked"
| |
Add GH Workflow to allow command run from issue comments | name: "Comment Run"
on:
issue_comment:
types:
- created
- edited
jobs:
comment-run:
if: contains(github.event.comment.body, '@github-actions run')
runs-on: ubuntu-latest
steps:
- name: Checkout Code (Deep)
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@master
- name: Install warcio
run: pip install warcio
- name: Execute Code in Comment
uses: ibnesayeed/actions-comment-run@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
allowed-associations: '["OWNER", "MEMBER", "COLLABORATOR", "CONTRIBUTOR"]'
| |
Add the Xena prelude section | ---
prelude: |
The 24.0.0 release includes many new features and bug fixes. Please be
sure to read the upgrade section which describes the required actions to
upgrade your cloud from 23.0.0 (Wallaby) to 24.0.0 (Xena).
There are a few major changes worth mentioning. This is not an exhaustive
list:
- The latest Compute API microversion supported for Xena is v2.90.
Details on REST API microversions added since the 23.0.0 Wallaby release
can be found in the `REST API Version History`__ page.
.. __: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html
- `Support for accelerators`__ in Nova servers has been improved. Now
Cyborg-managed SmartNICs can be attached as SR-IOV devices.
.. __: https://docs.openstack.org/api-guide/compute/accelerator-support.html
- Two new ``nova-manage`` CLI commands can be used for `checking`__ the
volume attachment connection information and for `refreshing`__ it if the
connection is stale (for example with a Ceph backing store and MON IP
addresses). Some documentation on how to use them can be found `here`__.
.. __: https://docs.openstack.org/nova/latest/cli/nova-manage.html#volume-attachment-get-connector
.. __: https://docs.openstack.org/nova/latest/cli/nova-manage.html#volume-attachment-refresh
.. __: https://docs.openstack.org/nova/latest/admin/manage-volumes.html#managing-volume-attachments
- Instance hostnames published by the metadata API service or config drives
can be explicitly defined at instance creation time thanks to the new
`2.90 API microversion`__. See the ``hostname`` field documentation on
the `API docs`__ for further details.
.. __: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#maximum-in-xena
.. __: https://docs.openstack.org/api-ref/compute/?expanded=create-server-detail#create-server
- Libvirt virt driver now supports any PCI device, not just virtual
GPUs, that are using the ``VFIO-mdev`` virtualization framework, like
network adapters or compute accelerators. `See more in the spec`__.
.. __: https://specs.openstack.org/openstack/nova-specs/specs/xena/approved/generic-mdevs.html
| |
Update from Hackage at 2017-03-30T04:04:08Z | homepage: https://github.com/CloudI/cloudi_api_haskell
changelog-type: ''
hash: 35aa00c308d80b3623aa592b63325206d74ead1d66acb92b317ed0a0a34f2760
test-bench-deps: {}
maintainer: mjtruog@gmail.com
synopsis: Haskell CloudI API
changelog: ''
basic-deps:
bytestring: ! '>=0.10.4'
unix: -any
base: ! '>=4.8.2.0 && <5'
time: -any
network: -any
array: -any
containers: -any
binary: ! '>=0.8.4.0'
zlib: -any
all-versions:
- '1.7.0'
author: Michael Truog
latest: '1.7.0'
description-type: markdown
description: ! "`cloudi_api_haskell`\n====================\n\nHaskell [CloudI API](http://cloudi.org/api.html#1_Intro)\n\nBuild\n-----\n\n
\ cabal sandbox init\n cabal update\n cabal install --only-dependencies\n
\ cabal configure\n cabal build\n\n"
license-name: BSD4
| |
Set up CI with Azure Pipelines | # ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
solution: '**/tools/Senparc.Weixin.CLI/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:DesktopBuildPackageLocation="$(build.artifactStagingDirectory)\WebApp.zip" /p:DeployIisAppPath="Default Web Site"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: NuGetCommand@2
displayName: Senparc.Weixin.CLI
inputs:
command: push
packagesToPush: '**/Senparc.Weixin.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
continueOnError: true
condition: succeededOrFailed()
# - task: VSTest@2
# inputs:
# platform: '$(buildPlatform)'
# configuration: '$(buildConfiguration)'
| |
Add playbook to create a Rackspace Cloud Server | # run with: ansible-playbook -i inventory.yml rax-create-server.yml -vvv
---
- name: Create a Rackspace Cloud Server
hosts: local
user: root
connection: local
gather_facts: False
vars:
- name: ansible-test
- flavor: 2
- image: 8d30638e-cb3e-43d1-897f-a5cd3ace521f
- region: DFW
- creds_file: /path/to/pyrax/creds_file
- files:
- /root/.ssh/authorized_keys=/home/localuser/.ssh/id_rsa.pub
- /root/test.txt=/home/localuser/test.txt
tasks:
- name: Make me that server
rax: creds_file=${creds_file} service=cloudservers name=${name} flavor=${flavor} files=${files}
image=${image} region=${region} state=present wait=yes wait_timeout=900
register: rax
- name: Add new instance to host group
local_action: add_host hostname=${item.accessIPv4} groupname=deploy
with_items: ${rax.instances}
- name: Install Packages
hosts: deploy
user: root
gather_facts: True
tasks:
- name: install packages
action: yum state=installed pkg=$item
with_items:
- vim
- git
- screen
tags:
- packages
| |
Enforce repo yaml privacy key. | repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
| |
Add virsh node definition for openshift tester node | name: openshift-tester
prefix: null
cpu: "2"
cpumodel: "host-passthrough"
memory: "4096"
swap: "0"
os:
type: "linux"
variant: "rhel7"
disks:
disk1:
import_url: null
path: null
dev: "/dev/vda"
size: "40G"
cache: "unsafe"
preallocation: "metadata"
interfaces: null
groups:
- openshift_tester
| |
Update from Hackage at 2018-05-24T21:39:39Z | homepage: ''
changelog-type: markdown
hash: 42e6cd6e70ec08d2092daf5f1658b0ea4a47aa9c30cac859805632ad47e84005
test-bench-deps: {}
maintainer: joelburget@gmail.com
synopsis: ! 'Plurality monad: Zero, one, or at least two.'
changelog: ! '# Revision history for plur
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
base: ! '>=4.11 && <4.12'
semigroups: ! '>=0.18'
all-versions:
- '0.1.0.0'
author: Joel Burget
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: BSD3
| |
Add workflow for Update Gradle Wrapper Action. | name: Update Gradle Wrapper
on:
schedule:
- cron: "36 6 * * MON"
jobs:
update-gradle-wrapper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
| |
Add releasenote to tag the Tempest for Rocky release | ---
prelude: >
This release is to tag the Tempest for OpenStack Rocky release.
After this release, Tempest will support below OpenStack Releases:
* Rocky
* Queens
* Pike
* Ocata
Current development of Tempest is for OpenStack Stein development
cycle. Every Tempest commit is also tested against master during
the Stein cycle. However, this does not necessarily mean that using
Tempest as of this tag will work against a Stein (or future release)
cloud.
To be on safe side, use this tag to test the OpenStack Rocky release. | |
Update from Hackage at 2021-07-26T15:54:23Z | homepage: https://github.com/bkomuves/polynomial-algebra
changelog-type: ''
hash: fe4fe9ec879678bc6a733714dae90ee9ab99d1c0661a742d46248d1baeb2083a
test-bench-deps: {}
maintainer: bkomuves (plus) hackage (at) gmail (dot) com
synopsis: Multivariate polynomial rings
changelog: ''
basic-deps:
base: '>=4 && <5'
array: '>=0.5'
containers: '>=0.6'
compact-word-vectors: '>=0.2.0.2'
all-versions:
- '0.1'
author: Balazs Komuves
latest: '0.1'
description-type: markdown
description: "polynomial-algebra Haskell library\n==================================\n\nThis
is a Haskell library to compute with multivariate polynomials.\n\nPolynomials are
implemented as free modules (with a coefficient ring)\nover the monoid of monomials.
The free module implementation is basically\na map from monomials to coefficients,
with the invariant that zero \ncoefficients should be never present. Different implementations
of monomials\nare available with different speed and usability tradeoffs:\n\n* generic
monomial over a variable set given by inhabitants of a type\n* monomials over x1,
x2 ... xn (two different in-memory representations)\n* monomials over an infinite
number of variables x1, x2, ...\n* univariate monomial (basically, an integer exponent)\n*
exterior monomial (for exterior algebra)\n\nType level parameters are used for the
variable names (used for pretty-printing)\nand number of variables where possible.\n\nA
type class interface allows the user to work uniformly over different\nimplementations."
license-name: BSD-3-Clause
| |
Add Git commit message best practices check to GHA | ---
name: Good commit messages
on: # yamllint disable-line rule:truthy
pull_request:
jobs:
check-commit-message:
runs-on: ubuntu-20.04
steps:
- name: Verify commit messages follow best practices in CI
uses: platisd/bad-commit-message-blocker@1.0.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
...
| |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
-d _site
| |
Update from Hackage at 2016-10-26T16:23:52Z | homepage: http://github.com/dredozubov/hreader-lens
changelog-type: markdown
hash: 3dee6cb32a07a047a2ff2b0bd499d493511ad656d3b11ba950a817b2e1803b40
test-bench-deps: {}
maintainer: denis.redozubov@gmail.com
synopsis: Optics for hreader package
changelog: ! '# Revision history for hreader-lens
## 0.1.0.0 -- 2016-10-26
* First version. Released on an unsuspecting world.
'
basic-deps:
base: ! '>=4.8 && <4.9'
hreader: ! '>=1.0 && <1.1'
lens: ! '>=4'
hset: ! '>=2.0.0 && <3.0.0'
profunctors: -any
all-versions:
- '0.1.0.0'
author: Denis Redozubov
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: MIT
| |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
install_dependencies_command: npm install
preview_docker_image: forestryio/node:12
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: npm run develop
| |
Set up CI with Azure Pipelines | pool:
vmImage: 'windows-latest'
variables:
buildConfiguration: 'Release'
steps:
- task: VSBuild@1
inputs:
configuration: '$(buildConfiguration)'
msbuildArgs: '/restore'
- task: VSTest@2
inputs:
configuration: '$(buildConfiguration)'
| |
Add the Travis CI config file | before_install: gem install bundler --pre
before_script: bundle exec rake db:migrate
bundler_args: --without assets:development:production
language: ruby
rvm:
- 1.9.3
| |
Update Travis to run against latest Ruby, Rails | language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
before_install:
- gem update --system
- gem install turn --version 0.8.2
- gem install turn --version 0.8.3
jdk:
- openjdk6
gemfile:
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
- gemfiles/rails4.1.gemfile
branches:
only:
- master
install:
- "travis_retry bundle install"
- "travis_retry bundle exec appraisal install"
| language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- jruby-19mode
jdk:
- openjdk6
branches:
only:
- master
install:
- "travis_retry bundle install"
- "bundle exec appraisal generate"
- "travis_retry bundle exec appraisal install"
|
Add supporting recipe for mizani | {% set name = "mizani" %}
{% set version = "0.3.0" %}
{% set bundle = "tar.gz" %}
{% set hash_type = "sha256" %}
{% set hash = "48fe6e47f13919efec6c1695879a71d9f98d3cc2bc94508d69750ca9fd50d10d" %}
{% set build = 0 %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.{{ bundle }}
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ bundle }}
{{ hash_type }}: {{ hash }}
build:
number: {{ build }}
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- numpy
- pandas >=0.19.0
- matplotlib
- palettable
test:
imports:
- mizani
- mizani.external
- mizani.tests
about:
home: https://github.com/has2k1/mizani
license_file: LICENSE
license: BSD 3-Clause
license_family: BSD
summary: 'Scales for Python'
dev_url: https://github.com/has2k1/mizani
doc_url: https://mizani.readthedocs.io/en/latest/
extra:
recipe-maintainers:
- pmlandwehr
| |
Update from Hackage at 2017-01-30T18:11:29Z | homepage: https://github.com/oisdk/nat-sized-numbers#readme
changelog-type: ''
hash: 4276d445edb78cc22cf2b6049b69b3306f67e9c37bf83e4421f4d22c66523e62
test-bench-deps:
nat-sized-numbers: -any
base: -any
doctest: ! '>=0.11'
smallcheck: ! '>=1.1'
QuickCheck: ! '>=2.8'
maintainer: mail@doisinkidney.com
synopsis: Variable-sized numbers from type-level nats.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
- '0.1.0.0'
author: Donnacha Oisín Kidney
latest: '0.1.0.0'
description-type: haddock
description: Variable-sized numbers from type-level nats.
license-name: MIT
| |
Put conda recipe (1 file) in root | # This is the recipe to create a noarch conda package for Flexx
package:
name: flexx
version: "0.3"
source:
fn: flexx-0.3.zip
url: https://pypi.python.org/packages/source/f/flexx/flexx-0.3.zip
md5: d4e7539bf06c130b70724198daa3e042
build:
script: python setup.py install
noarch_python: True
number: 5
entry_points:
- flexx = flexx.__main__:main
requirements:
build:
- python
- setuptools
run:
- python
- tornado
test:
# Python imports
imports:
- flexx
- flexx.app
- flexx.pyscript
- flexx.react
- flexx.ui
- flexx.webruntime
about:
home: http://flexx.readthedocs.org
license: BSD License
summary: "Pure Python toolkit for creating GUI's using web technology."
# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml
| |
Make the subscription id unique for the firehose-exporters | ---
- type: replace
path: /instance_groups/name=firehose/jobs/name=firehose_exporter/properties/firehose_exporter/doppler/use_unique_subscription_id?
value: true
| |
Add AppVeyor configuration to stress that this probably is OS related | version: '{build}'
skip_tags: true
environment:
TERM: dumb
install:
- SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0
- SET PATH=%JAVA_HOME%\bin;%PATH%
- echo %PATH%
- java -version
- mvnw.cmd --version
- mvnw.cmd dependency:go-offline
build_script:
- mvnw.cmd -Dmaven.javadoc.skip=true -B clean compile
test_script:
- mvnw.cmd -Dmaven.javadoc.skip=true verify
| |
Update from Forestry.io - Updated Forestry configuration | ---
upload_path: "/uploads/:year:/:month:/:day:"
frontmatter_file_url_template: "/uploads/:year:/:month:/:day:"
body_file_url_template: "/uploads/:year:/:month:/:day:"
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
collections:
| |
Update from Hackage at 2020-01-21T07:07:35Z | homepage: https://github.com/versioncloud/vformat-time#readme
changelog-type: markdown
hash: 9985d13e1a12c7567848c59046ad4d7c32b4418981acc6f3564601bf0a4244d8
test-bench-deps:
base: ! '>=4.7 && <5'
time: ! '>=1.4 && <2.0'
vformat: ! '>=0.12 && <1.0'
vformat-time: -any
maintainer: jorah@version.cloud
synopsis: Extend vformat to time datatypes
changelog: |
# Changelog for vformat-time
## Unreleased changes
basic-deps:
base: ! '>=4.7 && <5'
time: ! '>=1.4 && <2.0'
vformat: ! '>=0.12 && <1.0'
all-versions:
- 0.1.0.0
author: Jorah Gao
latest: 0.1.0.0
description-type: markdown
description: |
# vformat-time
Please see http://hackage.haskell.org/package/vformat-time
license-name: BSD-3-Clause
| |
Add automation for adding missing Terraform versions | name: Add New Terraform Casks
on:
schedule:
# Daily at 04:20 UTC
- cron: '20 4 * * *'
workflow_dispatch: {}
jobs:
add_new_casks:
name: Add New Terraform Casks
# Only run on the main repo
if: github.repository == 'Yleisradio/homebrew-terraforms'
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Configure git
run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Find and add new Casks
shell: bash
run: |
./scripts/add_new_terraform_casks | while read version; do
echo "Adding v$version"
git add "Casks/terraform-$version.rb"
git commit -m "Add Terraform v$version"
done
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
branch: new-terraform-versions
title: Add new Terraform versions
body: |
Generated by "${{ github.workflow }}" GitHub Action
delete-branch: true
author: github-actions <github-actions@github.com>
committer: github-actions <github-actions@github.com>
| |
Add workflow to test SCSS compilation | name: SCSS Compilation
on:
pull_request:
branches:
- 'develop'
- 'v4.x'
paths:
- '**.scss'
- '**.css'
- '.github/workflows/test-scss.yml'
push:
branches:
- 'develop'
- 'v4.x'
paths:
- '**.scss'
- '**.css'
- '.github/workflows/test-scss.yml'
jobs:
build:
name: Compilation of SCSS (Dart Sass)
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
# node version based on dart-sass test workflow
node-version: 16
- name: Install Dart Sass
run: |
npm install --global sass
sass --version
- name: Run Dart Sass
run: sass --no-source-map admin/css/debug-toolbar/toolbar.scss system/Debug/Toolbar/Views/toolbar.css
- name: Check for changed CSS files
run: |
if [[ -n "$(git status --porcelain 2>/dev/null)" ]]; then
echo "Your changes to the SCSS files did not match the expected CSS output."
git diff-files --patch
exit 1
fi
| |
Add paper info tev-00118 from 2006ApJ...636..777A | paper_id: 2006ApJ...636..777A
source_id: 118
data:
livetime: 7.3
significance: 8.4
pos:
glon: {val: 17.82, err: 0.03}
glat: {val: -0.74, err: 0.03}
morph:
type: gauss
sigma: {val: 0.16, err: 0.02}
spec:
type: pl2
norm: {val: 39.4, err: 2.2, err_sys: 0.3}
index: {val: 2.46, err: 0.08, err_sys: 0.2}
theta: 0.30
erange: {min: 0.2 , max: }
| |
Remove 2.2 mode JRuby option | language: ruby
sudo: false
bundler_args: --without development
rvm:
- 2.2.2
- 2.3.1
- jruby-1.7
- jruby-9.1.2.0
gemfile:
- Gemfile
env:
global:
- CI="travis"
- JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m --2.2"
matrix:
- MONGODB=2.4.14
- MONGODB=2.6.12
- MONGODB=3.0.12
- MONGODB=3.2.7
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB}.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null &
notifications:
email: false
irc:
on_success: change
on_failure: always
channels:
- "irc.freenode.org#mongoid"
| language: ruby
sudo: false
bundler_args: --without development
rvm:
- 2.2.2
- 2.3.1
- jruby-1.7
- jruby-9.1.2.0
gemfile:
- Gemfile
env:
global:
- CI="travis"
- JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m"
matrix:
- MONGODB=2.4.14
- MONGODB=2.6.12
- MONGODB=3.0.12
- MONGODB=3.2.7
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB}.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null &
notifications:
email: false
irc:
on_success: change
on_failure: always
channels:
- "irc.freenode.org#mongoid"
|
Add CI Test github action | name: CI Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Kustvakt
uses: actions/checkout@v2
with:
path: Kustvakt
- name: Checkout Krill
uses: actions/checkout@v2
with:
repository: KorAP/Krill
path: Krill
- name: Checkout Koral
uses: actions/checkout@v2
with:
repository: KorAP/Koral
path: Koral
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build and install Krill
run: mvn --file Krill/pom.xml install
- name: Build and install Koral
run: mvn --file Koral/pom.xml install
- name: Build and install Kustvakt core
run: mvn --file Kustvakt/core/pom.xml install
- name: Build and package Kustvakt lite
run: mvn --file Kustvakt/lite/pom.xml package
- name: Build and package Kustvakt full
run: mvn --file Kustvakt/full/pom.xml package
| |
Update to 1.0.0 with LICENSE | {%set name = "sentinels" %}
{%set version = "0.0.6" %}
{%set hash_type = "sha256" %}
{%set hash_val = "5d0501f5a938825c6c4154d9f98f05d9aa041265945aa9b27f71ec8bfa5f13b9" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash_val }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- sentinels
about:
home: https://github.com/vmalloc/sentinels
license: BSD 3-Clause
# license_file: No MANIFEST.in in project
license_family: BSD
summary: 'Various objects to denote special meanings in python'
extra:
recipe-maintainers:
- pmlandwehr
| {%set name = "sentinels" %}
{%set version = "1.0.0" %}
{%set hash_type = "sha256" %}
{%set hash_val = "7be0704d7fe1925e397e92d18669ace2f619c92b5d4eb21a89f31e026f9ff4b1" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash_val }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- sentinels
about:
home: https://github.com/vmalloc/sentinels
license: BSD 3-Clause
license_file: LICENSE
license_family: BSD
summary: 'Various objects to denote special meanings in python'
extra:
recipe-maintainers:
- pmlandwehr
|
Test cxroots can be installed from pip | name: Test pip
on:
schedule:
- cron: '0 1 * * 0'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install cxroots from pip
run: |
pip install cxroots
- name: Download and unzip cxroots
run: |
pip download cxroots --no-deps
tar -xzf cxroots-*.tar.gz
cd cxroots-*
- name: Test with pytest
run: python setup.py test --addopts "-v -m 'not slow'"
| |
Set up CI with Azure Pipelines | # Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'
| |
Drop support for Ruby 2.1 and 2.2 | env:
global:
- CC_TEST_REPORTER_ID=c9b8356df2031a5a72462555fe898245cf24d83c7bb82c40ddb5c6c6976c4319
sudo: false
language: ruby
cache: bundler
rvm:
- 2.1.10
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script: bundle exec rake
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
matrix:
allow_failures:
- rvm: ruby-head
| env:
global:
- CC_TEST_REPORTER_ID=c9b8356df2031a5a72462555fe898245cf24d83c7bb82c40ddb5c6c6976c4319
sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script: bundle exec rake
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
matrix:
allow_failures:
- rvm: ruby-head
|
Add continuous integration for GitHub. | name: JNI Bind CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: test
run: bazel test --cxxopt='-std=c++17' --repo_env=CC=clang ...
| |
Update from Hackage at 2019-09-28T19:49:38Z | homepage: https://github.com/LibreCybernetics/basen-hs#readme
changelog-type: ''
hash: 4bea1e86c1a682e1b275d5d26b7ad750f9102f161e02c3edf8bc4415b86cce0b
test-bench-deps:
bytestring: ! '>=0.10.8.2 && <1'
base: ! '>=4.12.0.0 && <5'
tasty-discover: -any
text: ! '>=1.2.3.1 && <2'
basen: -any
tasty-hspec: -any
quickcheck-instances: -any
tasty-quickcheck: -any
tasty: -any
maintainer: LibreCybernetics
synopsis: ''
changelog: ''
basic-deps:
bytestring: ! '>=0.10.8.2 && <1'
base: ! '>=4.12.0.0 && <5'
text: ! '>=1.2.3.1 && <2'
basen: -any
all-versions:
- 0.1.0.0
author: LibreCybernetics
latest: 0.1.0.0
description-type: markdown
description: ''
license-name: LicenseRef-OtherLicense
| |
Add sample config for shared stack. | roles:
stack_name: aem-roles-stack
publish_dispatcher: AEMStackPublishDispatcherRole
publish: AEMStackPublishRole
author: AEMStackAuthorRole
author_dispatcher: AEMStackAuthorDispatcherRole
orchestrator: AEMStackOrchestratorRole
chaos_monkey: AEMStackChaosMonkeyRole
| |
Test removing utest and fuzz-test from code coverage | codecov:
notify:
require_ci_to_pass: yes
coverage:
precision: 2
round: down
range: "70...100"
status:
project: yes
patch: yes
changes: no
parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no
comment:
layout: "header, diff"
behavior: default
require_changes: no
ignore:
- "utest"
- "fuzz-test"
| |
Update from Hackage at 2015-07-31T20:27:13+0000 | homepage: ''
changelog-type: ''
hash: e16b329b9947e1a489e2561bfb915c6753c6b35f47cca41c4421e83f0c0fd9f2
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: Bootstrap widgets for yesod
changelog: ''
basic-deps:
shakespeare: -any
email-validate: -any
either: -any
MonadRandom: -any
yesod-core: -any
base: ! '>=4.7 && <5.0'
time: -any
blaze-markup: -any
persistent: -any
text: -any
conduit: -any
lens-family-th: -any
yesod-markdown: -any
lens-family-core: -any
conduit-extra: -any
containers: -any
yesod-form: -any
mtl: -any
blaze-html: -any
transformers: -any
all-versions:
- '0.1.0.0'
author: Andrew Martin
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: MIT
| |
Add an AppVeyor settings file | version: "{build}"
platform: x64
branches:
only:
- master
clone_depth: 10
skip_tags: true
environment:
APM_TEST_PACKAGES:
matrix:
- ATOM_CHANNEL: stable
- ATOM_CHANNEL: beta
install:
- ps: Install-Product node 5
build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))
test: off
deploy: of
| |
Update from Hackage at 2021-08-25T19:39:17Z | homepage: ''
changelog-type: markdown
hash: e0428a41e297e0c5394f367a5b65e9d386321f89eaee1f9b08fe51e171ad4ca5
test-bench-deps: {}
maintainer: dan.firth@homtopic.tech
synopsis: Type-level computation for composite using first-class-families.
changelog: |
# Changelog for fcf-composite
## v0.1.0.0
* Add `ToComposite` and `FromComposite` FCF expressions.
* Add `Union`, `Difference` and `Intersection` FCF expressions.
basic-deps:
first-class-families: '>=0.8.0.0 && <0.9'
fcf-containers: '>=0.5.0 && <0.7'
base: '>=4.7 && <5'
composite-base: '>=0.7.0.0 && <0.8'
all-versions:
- 0.1.0.0
author: Daniel Firth
latest: 0.1.0.0
description-type: markdown
description: |
# fcf-composite
Fcf support for [composite](https://hackage.haskell.org/package/composite-base) records. This gives bidirection between a composite
style `[s :-> a]` and `MapC s a` from
[fcf-containers](https://hackage.haskell.org/package/fcf-containers).
Using this we can compute record types via the Map
[operations](https://hackage.haskell.org/package/fcf-containers-0.6.0/docs/Fcf-Data-MapC.html)
in Fcf.
```{.haskell}
data Difference :: [Type] -> [Type] -> Exp [Type]
type instance Eval (Difference xs ys) = Eval (ToComposite =<< Fcf.Data.MapC.Difference (Eval (FromComposite xs)) (Eval (FromComposite ys)))
type A = ["a" :-> Int, "b" :-> String, "c" :-> ()]
type B = ["a" :-> Int, "c" :-> ()]
myRec :: Record (Eval (Difference A B))
myRec = "foo" :*: RNil -- checks!
```
Note: Since `ToComposite` and `FromComposite` use `ToList` and `FromList` from
Fcf.Data.MapC, then the fields will always be returned in alphabetical order
according to the symbol name, so you may need to use `rcast`.
license-name: MIT
| |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
-d _site
| |
Set up CI with Azure Pipelines | # ASP.NET Core
# Build and test ASP.NET Core projects targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- develop
pool:
vmImage: 'Ubuntu-16.04'
variables:
buildConfiguration: 'Release'
steps:
- script: dotnet build --configuration $(buildConfiguration)
displayName: 'dotnet build $(buildConfiguration)'
| |
Set up CI with Azure Pipelines | # 查看更多配置信息:https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
pool:
vmImage: 'vs2017-win2016' # 使用azure devops提供的 vs2017+win2016 环境
variables:
hostBuildPath: '.\\MyBlog.Web\\MyBlog.Web.csproj' # 发布的项目的csproj
dotnetConfig: ' -c Release -f netcoreapp2.1 -o $(Build.ArtifactStagingDirectory)' # dotnet发布的命令
steps:
- task: DotNetCoreCLI@2 # 预定义的task,使用dotnet进行发布编译
inputs:
command: publish
publishWebProjects: False
arguments: ' $(hostBuildPath) $(dotnetConfig)'
zipAfterPublish: True
- task: PublishBuildArtifacts@1 # 预定义的task
displayName: 'publish artifact: drop'
inputs:
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
| |
Add for testing on Travis CI | language: node_js
node_js:
- 0.4
- 0.6
notifications:
email:
- travis@nodejitsu.com
irc: "irc.freenode.org#nodejitsu"
| |
Add flake8 checks to Travis-CI build | language: python
python:
#- 2.6
- 2.7
#- 3.2
- 3.3
install: pip install -r test-requirements.txt
script:
- nosetests --with-cov --cover-package=ddt
| language: python
python:
#- 2.6
- 2.7
#- 3.2
- 3.3
install: pip install -r test-requirements.txt
script:
- nosetests --with-cov --cover-package=ddt
- flake8 ddt.py test
|
Add config for automated testing using Travis CI | language: ruby
rvm:
- 2.2
cache:
directories:
- "$HOME/.berkshelf"
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
env:
matrix:
- TEST=cookstyle
- TEST="foodcritic ."
- TEST="chef exec rspec"
before_install:
- chef --version
- eval "$(chef shell-init bash)"
- cookstyle --version
- foodcritic --version
install:
- chef gem install kitchen-sync
- berks
script: "$TEST"
| |
Use make for Travis CI. | language: node_js
node_js:
- '0.10'
install:
- npm install
- npm install bower -g
- bower install
addons:
sauce_connect: true
env:
global:
- secure: WrorXhIe0hgRgvaBzNK6PSQEw2VTHKCxqkkNXqIY80eESXETC9nw0WkeALa6Neu06G2K6PxCXuVnaDAAtEarkawiY2OD1jrQEeYm9/2Mnqj8K2f92y57a3uVmUmo4+sqRTj6Ub3q0+/hLhluRWGTNia3kmW8cJKKG6cyWxCwb/o=
- secure: WwBqBCm1q/iIM11n3cBPCwt5X+q62WxlfQGK4KPHlikjUExgLgksc5/ae8TwFwHpL3cL5P4h4I5MfrIK++9vFrn7CICVMkI0LeLTgXCaeUThWP43FsPvG1GrWAJYeXeRk8kc/5gBT+/8x5FxZUunvivIu+gYrqX+Ip7xwfcbGlo=
| language: node_js
node_js:
- '0.10'
script: make test-ci
install:
- npm install
- npm install bower -g
- bower install
addons:
sauce_connect: true
env:
global:
- secure: WrorXhIe0hgRgvaBzNK6PSQEw2VTHKCxqkkNXqIY80eESXETC9nw0WkeALa6Neu06G2K6PxCXuVnaDAAtEarkawiY2OD1jrQEeYm9/2Mnqj8K2f92y57a3uVmUmo4+sqRTj6Ub3q0+/hLhluRWGTNia3kmW8cJKKG6cyWxCwb/o=
- secure: WwBqBCm1q/iIM11n3cBPCwt5X+q62WxlfQGK4KPHlikjUExgLgksc5/ae8TwFwHpL3cL5P4h4I5MfrIK++9vFrn7CICVMkI0LeLTgXCaeUThWP43FsPvG1GrWAJYeXeRk8kc/5gBT+/8x5FxZUunvivIu+gYrqX+Ip7xwfcbGlo=
|
Correct args for goapp tool; make unzip silent. | language: go
install:
- curl -sSo gae_sdk.zip https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.12.zip
- unzip gae_sdk.zip
script:
- ./go_appengine/goapp -v test ./endpoints
| language: go
install:
- curl -sSo gae_sdk.zip https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.12.zip
- unzip -q gae_sdk.zip
script:
- ./go_appengine/goapp test -v ./endpoints
|
Remove "--dev" from composer install | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
before_script:
- composer self-update
- composer install --dev --prefer-source
script:
# Only run code coverage and CS checks on 5.6
- if [[ $TRAVIS_PHP_VERSION != '5.6' ]]; then ./vendor/bin/phpunit ; fi
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then ./vendor/bin/phpunit --coverage-clover=coverage.clover ; fi
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then ./vendor/bin/phpcs --standard=PSR2 --ignore=test/Bootstrap.php src test ; fi
after_script:
# Only upload code coverage to scrutinizer for 5.6
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then wget https://scrutinizer-ci.com/ocular.phar ; fi
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; php ocular.phar code-coverage:upload --format=php-clover ./test/coverage.clover ; fi
notifications:
email: true
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source
script:
# Only run code coverage and CS checks on 5.6
- if [[ $TRAVIS_PHP_VERSION != '5.6' ]]; then ./vendor/bin/phpunit ; fi
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then ./vendor/bin/phpunit --coverage-clover=coverage.clover ; fi
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then ./vendor/bin/phpcs --standard=PSR2 --ignore=test/Bootstrap.php src test ; fi
after_script:
# Only upload code coverage to scrutinizer for 5.6
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then wget https://scrutinizer-ci.com/ocular.phar ; fi
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; php ocular.phar code-coverage:upload --format=php-clover ./test/coverage.clover ; fi
notifications:
email: true
|
Add project config for Typey-Type | # ~/.tmuxinator/typey-type.yml
name: typey-type
root: ~/steno/typey-type
# on_project_first_start:
# - git pull upstream master
# - git submodule update
# - yarn install
windows:
- editor: vim
- tests: yarn run test
- server: yarn start
- grip: grip
| |
Add workflow to test against sdists and wheels |
name: Test Distribution
on:
push:
branches: [ master ]
workflow_dispatch:
inputs:
allow_deploy:
description: 'Deploy with twine'
required: true
type: boolean
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Build dists
run: python setup.py sdist bdist_wheel
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: 'dists'
path: 'dist/*'
test:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
dist-type: [sdist, wheel]
fail-fast: false
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: |
python -m pip install --upgrade pip setuptools wheel
pip install pytest pytest-asyncio pytest-cov coveralls
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: 'dists'
path: dist
- name: Delete source directory
run: rm -Rf pydispatch
- name: Install wheel
if: ${{ matrix.dist-type == 'wheel' }}
run: pip install dist/*.whl
- name: Install sdist
if: ${{ matrix.dist-type == 'sdist' }}
run: pip install dist/*.tar.gz
- name: Test distribution
run: py.test tests/
deploy:
needs: test
if: ${{ success() && github.event.inputs.allow_deploy == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel twine
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: 'dists'
path: dist
- name: Publish to PyPI
env:
TWINE_REPOSITORY: ${{ secrets.TWINE_REPOSITORY }}
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: twine upload dist/*
| |
Add some additional SQL injection tests | ---
meta:
author: "Jose Nazario"
description: None
enabled: true
name: 942410.yaml
tests:
-
test_title: 942410-1
desc: "SQL Injection Attack"
stages:
-
stage:
input:
dest_addr: "localhost"
headers:
Host: "localhost"
Cache-Control: "no-cache, no-store, must-revalidate"
method: GET
port: 80
# variable name boundary attacks
uri: "/?'msdasql'"
version: HTTP/1.0
output:
log_contains: id "942410"
-
test_title: 942410-2
desc: "SQL Injection Attack"
stages:
-
stage:
input:
dest_addr: "localhost"
headers:
Host: "localhost"
Cache-Control: "no-cache, no-store, must-revalidate"
# variable name boundary attacks
Cookie: "'msdasql'"
method: POST
port: 80
version: HTTP/1.0
output:
log_contains: id "942410"
| |
Update from Hackage at 2021-09-18T22:45:50Z | homepage: https://github.com/cdsmith/explainable-predicates
changelog-type: markdown
hash: f15cff6d6cb711072cc103c7001d28715f7a1371aa6e61cd658e4488b1c974d1
test-bench-deps:
base: -any
hspec: -any
doctest-exitcode-stdio: -any
doctest-lib: -any
explainable-predicates: -any
maintainer: Chris Smith <cdsmith@gmail.com>
synopsis: Predicates that can explain themselves.
changelog: |
# Revision history for explainable-predicates
## 0.1.0.0 -- 2021-09-18
* First version. Released on an unsuspecting world.
basic-deps:
base: '>=4.11.0 && <4.16'
syb: '>=0.7.2 && <0.8'
array: '>=0.5.2 && <0.6'
regex-tdfa: '>=1.3.1 && <1.4'
template-haskell: '>=2.13.0 && <2.18'
mono-traversable: '>=1.0.15 && <1.1'
all-versions:
- 0.1.0.0
author: Chris Smith <cdsmith@gmail.com>
latest: 0.1.0.0
description-type: haddock
description: |-
Explainable predicates are essentially functions from types
to 'Bool' which can additionally describe themselves and
explain why an argument does or doesn't match. They are
intended to be used during unit tests to provide better
error messages when tests fail. For example, if a
collection is missing an element, an explainable predicate
can tell you which element is missing.
license-name: BSD-3-Clause
| |
Add Travis CI configuration file | sudo: false
language: node_js
node_js:
- stable
script:
- npm run build
- npm test-sauce
notifications:
email: false
slack:
secure: KMZdV6pnRPqcqxeZ0bHBM/4GXhBiJUPmONHWlrnCYaKnJyOvpBNHeL8ubdIKkYgc5X9LsHG7k5LGyfiRbmt/o1majMje/+Gadorb9DRJQ15ZbtPBllwOeLiFnr6WykSf7UbDnY5XgmD/eNRwU1KYSC+PvAJ53LlQy53BvZc7hcU=
| |
Add config for Travis CI | language: ruby
rvm:
- 2.1.5
- 2.2.0
- ruby-head
env:
- DB=postgresql
- DB=mysql
- DB=sqlite
before_install:
- '[ "$DB" = "postgresql" ] && echo "gem \"pg\"" >> Gemfile || :'
- '[ "$DB" = "mysql" ] && echo "gem \"mysql2\"" >> Gemfile || :'
- bundle install
before_script:
- mv config/database.$DB.yml config/database.yml
- bundle exec rake db:create RAILS_ENV=test
- bundle exec rake db:migrate RAILS_ENV=test
matrix:
allow_failures:
- rvm: ruby-head
| |
Add test action with macOS 11 and 10.15 | on:
push:
branches:
- osagnostic
- gh-actions
tags:
- '*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11.0, macos-10.15]
include:
- os: macos-11.0
- os: macos-10.15
steps:
- uses: actions/checkout@osagnostic
- name: Install dependencies
- run: |
- python3 -m pip install -r requirements.txt | |
Update from Hackage at 2020-09-27T02:53:48Z | homepage: https://github.com/SamuelSchlesinger/mtsl
changelog-type: ''
hash: 486d917577b1a7443b51cfed41e01c527168576cd20d08266731a617fd4698ee
test-bench-deps: {}
maintainer: sgschlesinger@gmail.com
synopsis: Reified monad transformer stacks
changelog: ''
basic-deps:
base: '>=4.12 && <4.15'
mtl: '>=2.2'
all-versions:
- 0.1.0.0
author: Samuel Schlesinger
latest: 0.1.0.0
description-type: markdown
description: |
# Monad Transformer Stack Library (mtsl)
A library for munging stacks of monad transformers.
license-name: MIT
| |
Update from Hackage at 2019-04-11T15:28:57Z | homepage: https://github.com/juhp/http-directory
changelog-type: markdown
hash: cdcdaa59b0d3b2f2acf3c5823b108923dcc1e9bd58626e2e2aada24a0e1e983f
test-bench-deps: {}
maintainer: juhpetersen@gmail.com
synopsis: http directory listing library
changelog: |
# Changelog
`http-directory` uses [PVP Versioning](https://pvp.haskell.org).
## 0.1.0
- initial release with httpDirectory, httpFileSize, and httpRedirect(s)
basic-deps:
http-client: -any
bytestring: -any
xml-conduit: -any
base: <5
text: -any
html-conduit: -any
http-types: -any
all-versions:
- 0.1.0
author: Jens Petersen
latest: 0.1.0
description-type: markdown
description: |
# http-directory
[](https://hackage.haskell.org/package/http-directory)
[](LICENSE)
[](http://stackage.org/lts/package/http-directory)
[](http://stackage.org/nightly/package/http-directory)
[](https://travis-ci.org/juhp/http-directory)
A simple library for reading http directories.
license-name: MIT
| |
Add a docker compose file that uses the published image | version: '3'
# skip the build process by using the image
services:
db:
image: postgres
web:
image: docker.pkg.github.com/batiste/django-page-cms/cms:latest
command: bash -c "python example/manage.py migrate && python example/manage.py runserver 0.0.0.0:8000"
volumes:
- .:/code/
ports:
- "8000:8000"
depends_on:
- db
| |
Update from Hackage at 2020-12-31T13:59:35Z | homepage: https://hackage.haskell.org/package/phonetic-languages-permutations-array
changelog-type: markdown
hash: 349837b3d2c938caa1766b4a32e3c36999756301c044747776ba0ad74277794b
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Permutations and universal set related functions for the phonetic-languages
series
changelog: |
# Revision history for phonetic-languages-permutations-array
## 0.1.0.0 -- 2020-12-31
* First version. Released on an unsuspecting world.
basic-deps:
base: '>=4.8 && <4.15'
subG: '>=0.4.2 && <1'
all-versions:
- 0.1.0.0
author: OleksandrZhabenko
latest: 0.1.0.0
description-type: haddock
description: Permutations-related to produce universal set of the task. Uses arrays
instead of vectors.
license-name: MIT
| |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
- type: jekyll-pages
label: Pages
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_command: bundle exec jekyll build --drafts --unpublished --future -d _site
publish_command: bundle exec jekyll build -d _site
preview_env:
- JEKYLL_ENV=staging
publish_env:
- JEKYLL_ENV=production
preview_output_directory: _site
output_directory: _site
| |
Add testing with Github Actions | name: delivery
on: [push, pull_request]
jobs:
delivery:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@master
- name: Run Chef Delivery
uses: actionshub/chef-delivery@master
env:
CHEF_LICENSE: accept-no-persist | |
Set up CI with Azure Pipelines | # Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
- releases/*
# variables:
# - group: AUAZE-CORP-DEV-CPS
pool:
name: Hosted Windows 2019 with VS2019
demands: azureps
steps:
- powershell: |
Write-Host "Code retreived"
displayName: 'Code retrieved'
| |
Update from Hackage at 2015-12-29T16:35:39+0000 | homepage: ''
changelog-type: ''
hash: b9c9981e2f1e31c36f5bdac08bbdda21d42fae70829838801b5b6f944980ad97
test-bench-deps: {}
maintainer: tekn04321@gmail.com
synopsis: Status line for i3bar.
changelog: ''
basic-deps:
bytestring: -any
dyre: -any
base: ==4.8.*
time: -any
text: -any
prefix-units: -any
process: -any
network: -any
binary: -any
dbus: -any
regex-pcre-builtin: -any
transformers: -any
hi3status: -any
aeson: -any
vector: -any
all-versions:
- '0.1.0.0'
author: Josh Kirklin
latest: '0.1.0.0'
description-type: haddock
description: Hi3status is a compact, lightweight, responsive and highly configurable
status line for i3bar.
license-name: MIT
| |
Update from Hackage at 2018-04-13T19:09:55Z | homepage: https://github.com/Ferdinand-vW/tuple-sop#readme
changelog-type: markdown
hash: 53987c5772f7bcbe622c51494c14c5288a2465810358575a1b2f13b418b43c41
test-bench-deps:
base: ! '>=4.7 && <5'
tuple-sop: -any
generics-sop: -any
maintainer: ferdinandvwalree@gmail.com
synopsis: functions on n-ary tuples using generics-sop
changelog: ! '# Changelog for tuple-sop
## 0.1.0.0 -- 2018-13-04
* Initial release
'
basic-deps:
base: ! '>=4.7 && <5'
generics-sop: -any
all-versions:
- '0.1.0.0'
author: Ferdinand van Walree
latest: '0.1.0.0'
description-type: markdown
description: ! '# tuple-sop
'
license-name: GPL-3
| |
Update from Hackage at 2018-09-29T20:42:00Z | homepage: ''
changelog-type: markdown
hash: 2457ba9f746fb5a1b0b9ab630c960f6e095cabc88334a1cd4c995d9cdaff4647
test-bench-deps: {}
maintainer: matthewtpickering@gmail.com
synopsis: A reimplementation of graphmod as a source plugin
changelog: ! '# Revision history for graphmod-plugin
## 0.1.0.0 -- 2018-09-29
* Initial Release
'
basic-deps:
ghc: ! '>=8.6'
base: ! '>=4.10 && <4.13'
syb: -any
dotgen: -any
filepath: -any
containers: -any
graphmod-plugin: -any
template-haskell: -any
directory: -any
all-versions:
- '0.1.0.0'
author: Matthew Pickering
latest: '0.1.0.0'
description-type: haddock
description: A reimplementation of graphmod as a source plugin.
license-name: BSD3
| |
Update from Hackage at 2021-08-26T14:45:02Z | homepage: https://github.com/patrickt/flexible-numeric-parsers
changelog-type: markdown
hash: 157ca71b142fb7027d3c3e65e1a078e15d5ca26ad094b9435d0993ff7245a7d4
test-bench-deps:
base: '>=4.12.0.0 && <5'
tasty-hedgehog: -any
text: -any
hedgehog: -any
parsers: ^>=0.12.10
flexible-numeric-parsers: -any
tasty-hunit: -any
attoparsec: -any
tasty: -any
scientific: ^>=0.3.6
maintainer: Patrick Thomson <patrickt@github.com>
synopsis: Flexible numeric parsers for real-world programming languages.
changelog: |
# Changelog
`flexible-numeric-parsers` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].
## 0.0.0.0
* Initially created.
[1]: https://pvp.haskell.org
[2]: https://github.com/patrickt/flexible-numeric-parsers/releases
basic-deps:
base: '>=4.12.0.0 && <5'
parsers: ^>=0.12.10
scientific: ^>=0.3.6
all-versions:
- 0.1.0.0
author: Patrick Thomson
latest: 0.1.0.0
description-type: markdown
description: |
# flexible-numeric-parsers
[](https://github.com/patrickt/flexible-numeric-parsers/actions)
[](https://hackage.haskell.org/package/flexible-numeric-parsers)
[](LICENSE)
Flexible numeric parsers for real-world programming languages. These parsers accept values such as `100_000_000`, `0B1_1`, and `0xa_bcd_ef0`.
This code was extracted from the [Semantic](http://github.com/github/semantic/) project.
Currently missing support for complex numbers, suffixes indicating signedness/size (`U` and `L` and friends), and hexadecimal floats. If you need the former, file an issue; if you need the latter, then I sure want to know what your use case is.
license-name: MIT
| |
Disable auto update Because versioning is weird | Categories:
- System
License: MIT
SourceCode: https://github.com/Eun/InitialVolume
IssueTracker: https://github.com/Eun/InitialVolume/issues
AutoName: InitialVolume
Summary: Set an initial volume after boot
Description: |-
Set an individual volume for the different sound channels of your device right
after boot.
RepoType: git
Repo: https://github.com/Eun/InitialVolume.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.2'
subdir: app
gradle:
- yes
AutoUpdateMode: None
UpdateCheckMode: None
CurrentVersion: '1.0'
CurrentVersionCode: 1
| |
Rename ewc_ldap to st2_ldap where it slipped on a task | ---
- name: Setup st2.conf auth backend to LDAP
become: yes
# Unfortunately, ``with_dict`` also logs the dict which could leak passwords.
no_log: yes
ini_file:
dest: /etc/st2/st2.conf
section: auth
option: backend
value: ldap
backup: yes
# Don't even setup LDAP if backend_kwargs is not defined
when: st2_ldap.backend_kwargs is defined and st2_ldap.backend_kwargs|length > 0
notify:
- restart st2auth
- name: Setup st2.conf auth backend_kwargs for LDAP
become: yes
# Unfortunately, ``with_dict`` also logs the dict which could leak passwords.
no_log: yes
ini_file:
dest: /etc/st2/st2.conf
section: auth
option: backend_kwargs
value: "{{ ewc_ldap.backend_kwargs | to_json | string }}"
backup: yes
# Don't even setup LDAP if backend_kwargs is not defined
when: st2_ldap.backend_kwargs is defined and st2_ldap.backend_kwargs|length > 0
notify:
- restart st2auth
| ---
- name: Setup st2.conf auth backend to LDAP
become: yes
# Unfortunately, ``with_dict`` also logs the dict which could leak passwords.
no_log: yes
ini_file:
dest: /etc/st2/st2.conf
section: auth
option: backend
value: ldap
backup: yes
# Don't even setup LDAP if backend_kwargs is not defined
when: st2_ldap.backend_kwargs is defined and st2_ldap.backend_kwargs|length > 0
notify:
- restart st2auth
- name: Setup st2.conf auth backend_kwargs for LDAP
become: yes
# Unfortunately, ``with_dict`` also logs the dict which could leak passwords.
no_log: yes
ini_file:
dest: /etc/st2/st2.conf
section: auth
option: backend_kwargs
value: "{{ st2_ldap.backend_kwargs | to_json | string }}"
backup: yes
# Don't even setup LDAP if backend_kwargs is not defined
when: st2_ldap.backend_kwargs is defined and st2_ldap.backend_kwargs|length > 0
notify:
- restart st2auth
|
Add linked-list yaml for generator | exercise: LinkedList
version: 1
plan: 7
modules:
- use: JSON::Tiny
methods: 'push-list pop-list shift-list unshift-list'
tests: |
for my @cases -> $case {
subtest $case.<name>, sub {
my $linkedlist = ::($exercise).new;
for |$case.<set> -> %set {
for %set {
my $value = $_.value;
given $_.key {
when 'push' { $linkedlist.?push-list( $value ) }
when 'unshift' { $linkedlist.?unshift-list( $value ) }
when 'pop' { is $linkedlist.?pop-list, $value, 'pop' }
when 'shift' { is $linkedlist.?shift-list, $value, 'shift' }
}
}
}
}
}
INIT {
@cases := from-json 「
[
{
"set" : [
{ "push" : 10 },
{ "push" : 20 },
{ "pop" : 20 },
{ "pop" : 10 }
],
"name" : "push_pop"
},
{
"set" : [
{ "push" : 10 },
{ "push" : 20 },
{ "shift" : 10 },
{ "shift" : 20 }
],
"name" : "push_shift"
},
{
"set" : [
{ "unshift" : 10 },
{ "unshift" : 20 },
{ "shift" : 20 },
{ "shift" : 10 }
],
"name" : "unshift_shift"
},
{
"set" : [
{ "unshift" : 10 },
{ "unshift" : 20 },
{ "pop" : 10 },
{ "pop" : 20 }
],
"name" : "unshift_pop"
},
{
"set" : [
{ "push" : 10 },
{ "push" : 20 },
{ "pop" : 20 },
{ "push" : 30 },
{ "shift" : 10 },
{ "unshift" : 40 },
{ "push" : 50 },
{ "shift" : 40 },
{ "pop" : 50 },
{ "shift" : 30 }
],
"name" : "example"
}
]
」
}
| |
Update from Hackage at 2017-05-23T20:53:46Z | homepage: ''
changelog-type: markdown
hash: 0271e373ce1cbdc0469fdaad882a64888c7bfbb30575052b7a8942a753dee184
test-bench-deps:
base: ! '>=4.9 && <4.10'
unordered-containers: -any
hspec: ! '>=2.2.0'
text: -any
hspec-core: -any
HUnit: -any
smallcheck: -any
singletons: -any
vinyl: -any
regex-compat: -any
validationt: ! '>=0.1.0.1'
schematic: -any
smallcheck-series: -any
hspec-discover: -any
aeson: ! '>=1'
hspec-smallcheck: -any
maintainer: denis.redozubov@gmail.com
synopsis: JSON-biased spec and validation tool
changelog: ! '# Revision history for schematic
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
base: ! '>=4.9 && <4.10'
deriving-compat: -any
unordered-containers: -any
text: -any
smallcheck: -any
singletons: -any
vinyl: -any
regex-compat: -any
validationt: ! '>=0.1.0.1'
smallcheck-series: -any
scientific: -any
aeson: ! '>=1'
vector: -any
all-versions:
- '0.1.0.0'
author: Denis Redozubov
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: BSD3
| |
Test on hhvm but ignore failures | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- composer install --dev --prefer-source
script: ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
after_script: php vendor/bin/coveralls
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install --dev --prefer-source
script: ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
after_script: php vendor/bin/coveralls
matrix:
allow_failures:
- php: hhvm
|
Add Ruby 2.1.3 to Travis | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- jruby-19mode
- rbx-2
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- jruby-19mode
- rbx-2
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.