Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Update from Hackage at 2019-09-17T16:10:21Z
homepage: '' changelog-type: '' hash: fb4b9af506e945b32beb43ba3e522ed955664d7b9f600c8cbdf9c72ab873ea74 test-bench-deps: {} maintainer: jiasenwu@hotmail.com synopsis: FFI to MXNet changelog: '' basic-deps: base: ! '>=4.7 && <5' c2hs-extra: ==0.1.0.1 text: ! '>=1.2.0 && <1.3' filepath: ! '>=1.4 && <1.5' constraints: -any haskell-src-exts: ! '>=1.20' hslogger: ! '>=1.2' fei-base: -any mtl: -any optparse-applicative: ! '>=0.14 && <0.15' repa: -any vector: ! '>=0.11 && <0.13' tuple-ops: ==0.0.0.3 directory: ! '>=1.3 && <1.4' all-versions: - 0.2.0.0 author: Jiasen Wu latest: 0.2.0.0 description-type: markdown description: "# mxnet-hs\n## build\n+ LD_LIBRARY_PATH=<path-to-incubator-mxnet-lib> stack build fei-base\n\n## generate MXNet operators\n+ the repository ships pre-generated operators for various version MXNet.\n+ You can generate your own with the utility `mxnet-op-gen`: \n + `LD_LIBRARY_PATH=<path-to-incubator-mxnet-lib> mxnet-op-gen -o <directory-for-ops-code>`\n\n## see also\n+ https://github.com/pierric/fei-nn\n+ https://github.com/pierric/fei-dataiter\n+ https://github.com/pierric/fei-cocoapi\n+ https://github.com/pierric/fei-examples\n" license-name: BSD-3-Clause
Set up CI with Azure Pipelines
# Node.js # Build a general Node.js project with npm. # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: - main pool: vmImage: 'ubuntu-latest' steps: - task: NodeTool@0 inputs: versionSpec: '10.x' displayName: 'Install Node.js' - script: | npm install npm install -g gulp gulp displayName: 'npm install, build and test'
Update from Hackage at 2016-10-08T03:52:45+00:00
homepage: https://github.com/tmcdonell/nvvm changelog-type: markdown hash: 725a9f9bb54cbae87c49a307aff16fbffb35519be9e7b302ffa87ac9a4ade29b test-bench-deps: {} maintainer: Trevor L. McDonell <tmcdonell@cse.unsw.edu.au> synopsis: FFI bindings to NVVM changelog: ! '# Revision history for nvvm ## 0.7.5.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: -any base: ! '>=4.6 && <5' cuda: ! '>=0.7' template-haskell: -any all-versions: - '0.7.5.0' author: Trevor L. McDonell latest: '0.7.5.0' description-type: markdown description: ! "Haskell FFI Bindings to NVVM\n============================\n\n[![Build status](https://travis-ci.org/tmcdonell/nvvm.svg?branch=master)](https://travis-ci.org/tmcdonell/nvvm)\n\nThe NVVM library compiles [NVVM IR][nvvm-ir-spec] (a subset of LLVM IR) into PTX code which can\nthen be executed on NVIDIA GPUs.\n\nIn contrast to the standard [NVPTX][nvptx-spec] target built in to the LLVM\ntoolchain, NVVM includes a set of proprietary optimisations which are otherwise\nonly available by compiling CUDA code with the `nvcc` compiler. On the other\nhand, the version of LLVM that NVVM is internally based on typically lags the\npublic release by several generations (years), so these secret optimisations may\nor may not be worthwhile to your application.\n\nThe resulting PTX code can be loaded onto the GPU and executed using the [cuda\npackage][hs-cuda].\n\nThe NVVM library is a compiler component available a part of the CUDA toolkit:\n\n <https://developer.nvidia.com/cuda-toolkit>\n\nThe configure step will look for your CUDA installation in the standard places,\nand if the `nvcc` compiler is found in your `PATH`, relative to that.\n\n\n[nvptx-spec]: \ http://llvm.org/docs/NVPTXUsage.html\n[nvvm-ir-spec]: http://docs.nvidia.com/cuda/nvvm-ir-spec/index.html\n[hs-cuda]: \ https://github.com/tmcdonell/cuda\n\n" license-name: BSD3
Update from Hackage at 2021-07-25T05:51:00Z
homepage: '' changelog-type: markdown hash: b8ef3ac5115e1fb5c8c8e2046862194394b1d80b8e45d82eeab0a7ac5b8ff0c5 test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: Logging functions for polysemy-methodology. changelog: | # Changelog for polysemy-methodology-co-log ## v0.1.0.0 Add `logMethodologyStart`, `logMethodologyEnd` and `logMethodologyAround`. basic-deps: polysemy-plugin: '>=0.3 && <0.5' base: '>=4.7 && <4.16' co-log-polysemy: -any polysemy-methodology: '>=0.1 && <0.3' polysemy: '>=1.3.0.0 && <1.7' all-versions: - 0.1.0.0 author: Daniel Firth latest: 0.1.0.0 description-type: markdown description: | # polysemy-methodology-co-log Logging for [polysemy-methodology](https://hackage.haskell.org/package/polysemy-methodology). license-name: MIT
Add workflow for triggering WEC-Sim_Applications CI
name: Trigger repository dispatch event on: push: branches: - master - dev jobs: dispatch: name: Repository Dispatch runs-on: ubuntu-latest if: github.repository_owner == 'WEC-Sim' steps: - uses: peter-evans/repository-dispatch@v1 with: token: ${{ secrets.REPO_ACCESS_TOKEN }} repository: WEC-Sim/WEC-Sim_Applications event-type: wecsim-${{ github.ref_name }} client-payload: '{"sha": "${{ github.sha }}"}'
Set up CI with Azure Pipelines
# .NET Desktop # Build and run tests for .NET Desktop or Windows classic desktop solutions. # Add steps that publish symbols, save build artifacts, and more: # https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net 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)' platform: '$(buildPlatform)' configuration: '$(buildConfiguration)' - task: VSTest@2 inputs: platform: '$(buildPlatform)' configuration: '$(buildConfiguration)'
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
Add recipe for brs-utils 1.14.2
{% set name = "brs-utils" %} {% set version = "1.14.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/brsynth/{{ name }}/archive/{{ version }}.tar.gz sha256: b7c619d39d361b917bb45243227fe303afd19ae86d5d5975497dc1825529dcde build: number: 0 noarch: python script: {{ PYTHON }} -m pip install -vv . requirements: host: - python >=3.6 - pip run: - python >=3.6 - requests - colorlog - colored test: source_files: - tests imports: - {{ name|lower }} requires: - pytest - pytest-cov commands: - cd tests - pytest -v --cov --cov-report term-missing about: home: https://github.com/brsynth/{{ name|lower }} summary: "Utilities" license: MIT license_file: LICENSE extra: recipe-maintainers: - breakthewall
Add initial vegafusion package recipe
{% set name = "vegafusion" %} {% set version = "0.0.4rc1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/vegafusion-{{ version }}.tar.gz sha256: 3761bfe303d55dcf1f8c3e20edca45cd6d8ac2a29804ed70bdb7c1cb1f0a7504 build: noarch: python script: {{ PYTHON }} -m pip install . -vv number: 0 requirements: host: - pip - python >=3.7 run: - altair >=4.2.0 - pandas - pyarrow >=6 - python >=3.7 test: imports: - vegafusion commands: - pip check requires: - pip about: home: https://pypi.org/project/vegafusion/ summary: Core tools for using VegaFusion from Python license: AGPL-3.0-or-later license_file: LICENSE.txt extra: recipe-maintainers: - jonmmease
Update from Hackage at 2020-06-30T00:44:47Z
homepage: https://github.com/Fuuzetsu/parse-gcstats changelog-type: markdown hash: 709a95edbfe4b8abbfb2d72d5b040756a20b7118bd2dae07aea495d26f870931 test-bench-deps: base: '>=4.6.0.0 && <4.16.0.0' tasty-golden: -any parse-gcstats: -any text: -any filepath: -any conduit: -any conduit-extra: -any attoparsec: -any tasty: -any maintainer: fuuzetsu@fuuzetsu.co.uk synopsis: Parse machine-readable GHC GC stats. changelog: | # Revision history for parse-gcstats ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. basic-deps: base: '>=4.6.0.0 && <4.16.0.0' unordered-containers: -any text: -any attoparsec: -any all-versions: - 0.1.0.0 author: Mateusz Kowalczyk latest: 0.1.0.0 description-type: haddock description: Parse machine-readable GHC GC output stats from -t --machine-readable. license-name: BSD-3-Clause
Remove old scripts moved to own task file
--- - name: Pacman cache | Remove old cron script 1 cron: state: absent name: "Clean pacman cache" special_time: weekly job: "paccache -rv" user: root cron_file: paccache - name: Pacman cache | Remove old cron script 2 cron: state: absent name: "Clean pacman cache" special_time: weekly job: "paccache -rvuk0" user: root cron_file: paccache_uninstalled # Removed, does nothing - name: Ensure the pacman database is optimized monthly cron: state: absent name: "Optimize pacman database" special_time: monthly job: "pacman-optimize" user: root cron_file: pacman-optimize - name: Remove old cronjob cron: state: absent cron_file: pacman-mirrors-rank job: /usr/local/sbin/pacman-sort-mirrors.sh user: root special_time: daily name: pacman-mirrors-rank - name: Remove old cronjob script file: path: /usr/local/sbin/pacman-sort-mirrors.sh state: absent
Update from Hackage at 2020-07-14T14:46:19Z
homepage: https://github.com/urbit/azimuth-hs changelog-type: text hash: a2d5aadf52598c72efd86d0a4819f0e05831e737b67ca8a53c26a775e4120db4 test-bench-deps: shelly: -any base: '>=4.12 && <5' hspec: -any text: -any urbit-hob: -any azimuth-hs: -any maintainer: jared@jtobin.io synopsis: Interact with Azimuth from Haskell changelog: |+ # Changelog - 0.1.0 (2020-07-14) * Initial release. Supports the Azimuth and Ecliptic contracts, basic account management, and basic transaction submission. basic-deps: exceptions: '>=0.10' haskoin-core: ==0.13.4 base: '>=4.12 && <5' data-default-class: ==0.1.2.0 text: '>=1.2' web3: ==0.9.1.0 memory: '>=0.15' mtl: '>=2.2' urbit-hob: '>=0.3' all-versions: - 0.1.0 author: |- Brendan Hay, Jared Tobin latest: 0.1.0 description-type: haddock description: Haskell bindings for Azimuth (https://github.com/urbit/azimuth) license-name: MPL-2.0
Set up CI with Azure Pipelines
jobs: - job: Linux pool: vmImage: 'ubuntu-16.04' steps: - task: DotNetCoreInstaller@0 inputs: version: '2.1.401' - script: | export COREHOST_TRACE=0 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 export DOTNET_CLI_TELEMETRY_OPTOUT=1 which dotnet dotnet --info dotnet tool install -g Cake.Tool --version 0.30.0 export PATH="$PATH:$HOME/.dotnet/tools" dotnet cake build.cake -Target="Run-Unit-Tests-NetCore" -Platform="Any CPU" -Configuration="Release" - job: macOS pool: vmImage: 'xcode9-macos10.13' steps: - task: DotNetCoreInstaller@0 inputs: version: '2.1.401' - script: | export COREHOST_TRACE=0 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 export DOTNET_CLI_TELEMETRY_OPTOUT=1 which dotnet dotnet --info dotnet tool install -g Cake.Tool --version 0.30.0 export PATH="$PATH:$HOME/.dotnet/tools" dotnet cake build.cake -Target="Run-Unit-Tests-NetCore" -Platform="Any CPU" -Configuration="Release" - job: Windows pool: vmImage: 'vs2017-win2017' steps: - task: DotNetCoreInstaller@0 inputs: version: '2.1.401' - script: | set COREHOST_TRACE=0 set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 set DOTNET_CLI_TELEMETRY_OPTOUT=1 where dotnet dotnet --info dotnet tool install -g Cake.Tool --version 0.30.0 set PATH=%PATH%;%USERPROFILE%\.dotnet\tools dotnet cake build.cake -Target="Run-Unit-Tests-NetCore" -Platform="Any CPU" -Configuration="Release"
Update from Hackage at 2021-05-09T00:07:05Z
homepage: https://github.com/ocramz/rp-tree changelog-type: '' hash: 58271e21db4158058f47694db06a570b8d3c8e3338b8a28f3de6010bdfebfd63 test-bench-deps: base: -any hspec: -any rp-tree: -any splitmix-distributions: -any QuickCheck: -any maintainer: ocramz synopsis: Random projection trees changelog: '' basic-deps: exceptions: -any serialise: -any microlens-th: -any bytestring: -any base: '>=4.7 && <5' hspec: -any conduit: -any rp-tree: -any containers: '>=0.6.2.1' splitmix-distributions: '>=0.8' mtl: -any vector-algorithms: -any transformers: -any deepseq: '>=1.4.4.0' boxes: -any microlens: -any vector: '>=0.12.1.2' all-versions: - 0.1.0.0 author: Marco Zocca latest: 0.1.0.0 description-type: markdown description: | # rp-tree ![scatterplot](/r/scatter.png "scatterplot") Random projection trees license-name: BSD-3-Clause
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
Add GitHub Action for mdbook
name: github pages on: push: branches: - main pull_request: jobs: deploy: runs-on: ubuntu-20.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 - name: Setup mdBook uses: peaceiris/actions-mdbook@v1 with: mdbook-version: 'latest' - run: cargo install mdbook-mermaid - run: mdbook build docs/book/ - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./docs/book/book
Build using GitHub workfow (CI)
# This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python application on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 uses: actions/setup-python@v2 with: python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | pytest - name: Build run: | runestone build
Introduce continuous integration testing using GitHub Actions
name: CI on: push: branches: - '*' pull_request: branches: - '*' jobs: ci: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] java: [ 11 ] steps: - name: Checkout uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Cache local Maven repository uses: actions/cache@v2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Build with Maven run: mvn -B verify -DskipTests
Add github actions workflow file
name: Resolwe CI on: push: branches: - master tags: - "[0-9]+.[0-9]+.[0-9]+" pull_request: schedule: - cron: "30 2 * * *" jobs: test: runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: tox-env: [py36, py37, py38, linters, packaging, migrations] include: - tox-env: py36 python-version: 3.6 - tox-env: py37 python-version: 3.7 - tox-env: py38 python-version: 3.8 - tox-env: linters python-version: 3.6 - tox-env: packaging python-version: 3.6 - tox-env: migrations python-version: 3.6 services: postgres: image: postgres:alpine env: POSTGRES_USER: resolwe POSTGRES_DB: resolwe POSTGRES_PASSWORD: resolwe ports: - 5432/tcp redis: image: redis:alpine ports: - 6379/tcp 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 tox - name: Run Tests run: > RESOLWE_DOCKER_DISABLE_SECCOMP=1 tox -e ${{ matrix.tox-env }} --skip-missing-interpreters false --recreate env: RESOLWE_REDIS_PORT: ${{ job.services.redis.ports[6379] }} RESOLWE_POSTGRESQL_HOST: localhost RESOLWE_POSTGRESQL_NAME: resolwe RESOLWE_POSTGRESQL_USER: resolwe RESOLWE_POSTGRESQL_PASS: resolwe RESOLWE_POSTGRESQL_PORT: ${{ job.services.postgres.ports[5432] }} - name: Upload coverage to Codecov if: matrix.tox-env == 'py36' || matrix.tox-env == 'py37' || matrix.tox-env == 'py38' uses: codecov/codecov-action@v1 with: file: .coverage build: runs-on: ubuntu-20.04 needs: test if: "startsWith(github.ref, 'refs/tags')" steps: - uses: actions/checkout@v1 - name: Set up Python 3.8 uses: actions/setup-python@v1 with: python-version: 3.8 - name: Install pep517 run: python -m pip install --user pep517 - name: Build a binary wheel and a source tarball run: python -m pep517.build --source --binary --out-dir dist/ . - name: Publish distribution to PyPI uses: pypa/gh-action-pypi-publish@master with: password: ${{ secrets.pypi_password }}
Add role for pulp consumer.
--- - name: Disable sshd strict modes lineinfile: backrefs: yes dest: /etc/ssh/sshd_config regexp: "^#StrictModes yes" line: "StrictModes no" notify: restart sshd - name: Install Pulp dnf repository get_url: url: https://repos.fedorapeople.org/repos/pulp/pulp/fedora-pulp.repo dest: /etc/yum.repos.d/fedora-pulp.repo - name: Install required packages dnf: name={{ item }} state=present with_items: - "@pulp-consumer-qpid" - name: Start and enable goferd service: name=goferd state=started enabled=yes
Update from Hackage at 2018-05-05T18:04:27Z
homepage: https://github.com/andrewthad/prim-array#readme changelog-type: '' hash: 7ea95e3a9835f7f739ed0901af5f273a1a4eed175eaf7704e36576547cf2ef0d test-bench-deps: {} maintainer: andrew.thaddeus@gmail.com synopsis: Primitive byte array with type variable changelog: '' basic-deps: base: ! '>=4.5 && <5' semigroups: -any ghc-prim: ! '>=0.3 && <0.6' primitive: ! '>=0.6 && <0.7' all-versions: - '0.1' author: Andrew Martin latest: '0.1' description-type: markdown description: ! '# prim-array ' license-name: BSD3
Add initial Travis CI configuration
language: objective-c script: 'curl -s -H "Authorization: token $ATOM_ACCESS_TOKEN" -H "Accept: application/vnd.github.v3.raw" https://api.github.com/repos/atom/apm/contents/script/build-package | sh' env: global: secure: ccvduzw/17rOieEm+1j17sT8LIDmTKuRsxmntvV3RG3Vnuq9X6jYcY+TuQRTRZDuVEwZbhKK7GlD8sik+rbXjKAn56A6nU1yCxR15NTRg7ogkE1q7yEI2wf/oOHudm7aUg8zTP4jUqD2sdbz5k1TNrZ3/F1EeSOAILDZJ/bgP74=
Update from Hackage at 2017-05-15T19:08:56Z
homepage: '' changelog-type: '' hash: ab666ba62aed0f8d33d964a6ed9e2b378a50b54cd46449902b09733a761ca063 test-bench-deps: {} maintainer: micheleguerinirocco@me.com synopsis: Tool to keep namecoin names updated and well changelog: '' basic-deps: base: ==4.9.* text: -any namecoin-update: -any wreq: -any lens: -any attoparsec: -any aeson: -any all-versions: - '0.2.1.0' author: rnhmjoj latest: '0.2.1.0' description-type: haddock description: ! 'A small program that updates the names in a namecoin wallet to prevent expiration. It uses the JSON-RPC API provided by namecoind to scan and update the values of the name when needed. The tool is intended to be run regularly, for example from cron.' license-name: GPL-3
Update from Hackage at 2018-09-26T19:54:50Z
homepage: https://github.com/iokasimov/monopati changelog-type: '' hash: eb6bc8a805373ffef4878cc26349daf436a992c9eeca47567013801a7073c842 test-bench-deps: {} maintainer: Murat Kasimov <iokasimov.m@gmail.com> synopsis: Well-typed paths changelog: '' basic-deps: free: -any split: -any base: ==4.* comonad: -any directory: -any all-versions: - '0.1.0' author: Murat Kasimov latest: '0.1.0' description-type: haddock description: Despite the fact that there are a plenty of various well-typed "path" libraries in Haskell, I decided to write new one that I would like to use. license-name: BSD3
Update from Hackage at 2017-04-24T19:56:27Z
homepage: https://github.com/RobertFischer/cabalish#readme changelog-type: '' hash: 324a3a40d24a48137534953d0ae016db076a32ef9351ac0958f3cc4964cb8e39 test-bench-deps: {} maintainer: smokejumperit+stack@gmail.com synopsis: Provides access to the cabal file data for shell scripts changelog: '' basic-deps: Cabal: ! '>=1.24.2.0 && <2' base: ! '>=4.7 && <5' text: ! '>=1.2.2.1 && <2' filepath: ! '>=1.4.1.1 && <2' classy-prelude: ! '>=1.2.0.1 && <2' optparse-applicative: ! '>=0.13.2.0 && <0.14' directory: ! '>=1.3.0.0 && <2' all-versions: - '0.1.0.0' author: Robert Fischer latest: '0.1.0.0' description-type: markdown description: ! '# cabalish ' license-name: BSD3
Add pretend recipe to conda-forge.
{% set name = "pretend" %} {% set version = "1.0.8" %} {% set sha256 = "930f2c1e18503e8f8c403abe2e02166c4a881941745147e712cdd4f49f3fb964" %} 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 run: - python test: imports: - pretend about: home: https://github.com/alex/pretend license: BSD license_file: LICENSE.rst summary: 'A library for stubbing in Python' license_family: BSD dev_url: https://github.com/alex/pretend extra: recipe-maintainers: - sodre
Add github actions to run tests.
# .github/workflows/app.yaml name: PyTest on: push jobs: test: runs-on: ubuntu-latest timeout-minutes: 10 steps: - name: Check out repository code uses: actions/checkout@v2 # Setup Python (faster than using Python container) - name: Setup Python uses: actions/setup-python@v2 with: python-version: "3.7.12" - name: Install pipenv run: | python -m pip install --upgrade pipenv wheel - id: cache-pipenv uses: actions/cache@v1 with: path: ~/.local/share/virtualenvs key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} - name: Install dependencies if: steps.cache-pipenv.outputs.cache-hit != 'true' run: | pipenv install --deploy --dev - name: Run test suite run: | pipenv run test -v
# .github/workflows/app.yaml name: PyTest on: push jobs: test: runs-on: ubuntu-latest timeout-minutes: 10 steps: - name: Check out repository code uses: actions/checkout@v2 # Setup Python (faster than using Python container) - name: Setup Python uses: actions/setup-python@v2 with: python-version: "3.x" - name: Install pipenv run: | python -m pip install --upgrade pipenv wheel - id: cache-pipenv uses: actions/cache@v1 with: path: ~/.local/share/virtualenvs key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} - name: Install dependencies if: steps.cache-pipenv.outputs.cache-hit != 'true' run: | pipenv install --deploy --dev - name: Run test suite run: | pipenv run test -v
Fix broken cat of test-suite.log on Travis failure
# Use trusty environment for a up-to-date version of autotools sudo: required dist: trusty language: c os: - linux - osx compiler: - clang - gcc env: - CFLAGS=-fsanitize=address # GCC is linked to Clang on macOS matrix: exclude: - os: osx compiler: gcc script: - ./autogen.sh - ./configure || (cat config.log; exit 1) - make || exit 1 - make distcheck || (cat test-suite.log; exit 1)
# Use trusty environment for a up-to-date version of autotools sudo: required dist: trusty language: c os: - linux - osx compiler: - clang - gcc env: - CFLAGS=-fsanitize=address # GCC is linked to Clang on macOS matrix: exclude: - os: osx compiler: gcc script: - ./autogen.sh - ./configure || (cat config.log; exit 1) - make || exit 1 - make distcheck || (find . -name test-suite.log | xargs -t cat; exit 1)
Add support for Travis CI
language: node_js node_js: - '4' - '6' - '7' sudo: false script: npm run ci notifications: email: false slack: secure: jI3gt+t9s6NRCuMnEfQKqNziWpTVxKMAv2sXIukDzNgBzTl70oZcn4gGOoD+JWfPBDZV/3UFrKh3kEBKfIcfMbFaudfxPZLxeXwTtzvOxq1AfdH8mAZwqwSCtDu+1g6KfHtbyEHfJvJZGWKuGDgJUKq5rrkeU8v5rCALFZQbDKo= branches: only: - master - develop
Put back the sh running
language: haskell script: wget https://raw.github.com/ndmitchell/hoogle/master/travis.sh -O - --no-check-certificate --quiet
language: haskell script: wget https://raw.github.com/ndmitchell/hoogle/master/travis.sh -O - --no-check-certificate --quiet | sh
Update from Hackage at 2016-11-03T16:43:49Z
homepage: https://github.com/snoyberg/tar-conduit#readme changelog-type: markdown hash: b05f53ba570f7a22a919cec5065bf2bbcfe3698d67e713a2c06f38bac9847e4e test-bench-deps: {} maintainer: michael@snoyman.com, bartavelle@gmail.com synopsis: Parse tar files using conduit for streaming changelog: ! "## 0.1.0 - 2016-11-03\n\n * Initial release\n\n" basic-deps: conduit-combinators: ! '>=1.0.8.1' bytestring: -any base: ! '>=4.7 && <5' all-versions: - '0.1.0' author: Michael Snoyman latest: '0.1.0' description-type: markdown description: '' license-name: MIT
Add support for GitHub actions.
name: lpc_checksum on: - push jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [2.7, 3.5, 3.6, 3.7, 3.8] steps: - name: Cloning source 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 python -m pip install --upgrade wheel python -m pip install .[development] - name: Lint with flake8 run: | flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with nose run: | nosetests
Revert Travis CI config (build too long)
language: - objective-c install: - brew install cmake - brew install python3 # install cmake - CMAKE_VERSION="3.0.0-ios-universal" - wget "https://github.com/ruslo/CMake/archive/v${CMAKE_VERSION}.tar.gz" - openssl sha1 "v${CMAKE_VERSION}.tar.gz" - tar xf "v${CMAKE_VERSION}.tar.gz" - cd "CMake-${CMAKE_VERSION}" - cmake -H. -B_builds -DCMAKE_INSTALL_PREFIX="`pwd/_install`" -DCMAKE_BUILD_TYPE=Release -DCMAKE_USE_SYSTEM_CURL=YES - cmake --build _builds --target install - export PATH="`pwd`/_install/bin:${PATH}" - cd .. # -- end # verify installed cmake - which cmake - cmake --version # -- end script: - python3 ./jenkins.py
language: - objective-c before_install: - brew update install: - brew install cmake - brew install python3 - wget https://github.com/ruslo/CMake/archive/ios.universal.tar.gz - openssl sha1 ios.universal.tar.gz - tar xf ios.universal.tar.gz - cmake -HCMake-ios.universal -B_builds/cmake -DCMAKE_USE_SYSTEM_CURL=YES -DCMAKE_BUILD_TYPE=Release - cmake --build _builds/cmake --target install env: - TEST_DIR=cmake/schemes TEST_NAME=tests/url_sha1_boost - TEST_DIR=cmake/schemes TEST_NAME=tests/url_sha1_boost_ios_library - TEST_DIR=cmake/schemes TEST_NAME=tests/url_sha1_boost_library - TEST_DIR=cmake/schemes TEST_NAME=tests/url_sha1_combined_release_debug - TEST_DIR=cmake/schemes TEST_NAME=tests/url_sha1_no_install - TEST_DIR=cmake/schemes TEST_NAME=tests/url_sha1_openssl - TEST_DIR=cmake/schemes TEST_NAME=tests/url_sha1_openssl_ios - TEST_DIR=cmake/schemes TEST_NAME=tests/url_sha1_release_debug - TEST_DIR=examples TEST_NAME=Sugar - TEST_DIR=examples TEST_NAME=GTest - TEST_DIR=examples TEST_NAME=Boost - TEST_DIR=examples TEST_NAME=Boost-filesystem - TEST_DIR=examples TEST_NAME=Boost-system - TEST_DIR=examples TEST_NAME=Boost-stdlibcxx - TEST_DIR=examples TEST_NAME=Boost-ios # - TEST_DIR=examples TEST_NAME=CppNetlib TODO add cache (> 40 min) script: - which cmake - cmake --version - export DIR=`pwd` - cd .. - mkdir Source - mv ${DIR}/* Source - cd Source/${TEST_DIR} - python3 ./test.py --include ./${TEST_NAME}/
Use Travis-CI to automatically check coding standards and run tests.
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 include: - php: 5.4 env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"' before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - phpspec --coverage-text --coverage-clover=coverage.clover after_script: - if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
Add Travis CI config file
language: python python: - "2.7" install: - "pip install image lxml oath PyCrypto qrcode requests" script: - "python vipaccess.py"
Add config files to support Travis CI
language: python python: - '2.7' install: - pip install -e.[analyzer] script: - echo SUCCESS deploy: provider: pypi user: perfwhiz-admin password: secure: B6+kSJ+fmkLm6RF6FTeiTGLlHw2mdxE36P6FAK4qK7gyzC+fXNqP9ko6ZxbUjWNYDpttBf8FeBcfjoYM3Y99yL2muYBAmUR4S5WaiTb/zRePxun8pzt/EdyWGVSvmIpcf0GgDH/tj/LfcfVNetg9L+tIYCrODk5QPN1O12TCbQnDJqTaXMtVTqiHFI3Hd3NF1srRPWUq8utLib+6eMiS8q+32p4vdzWf9z2ki/KjUeRoo4iDnVWJXMSdomPI9SQtwmZP+vSghsut94QNLfQ3jI5oRRG7BEyeXbU57wxDKjx8GTTZMD5FY9IziyZ2UQzpqf8GfvlSlhc1WokO1rODhlUBFdwK6jQOS2xojqUuAaoeYU4ZTVs5IIXsSClceF1Yeqv9Afd4YGdiMp7NZxjsFQ3J2Ii3z/tegfZlHl0r5V4QunVNGk03pvwUx8gA9RfDUwD5TQYpq8gs49s6CimtSJFoYp7rD1qiBPBM53OfnkbTFesRR0epVSGXI5z3afUIKUoox55FGpMU18X01cxzvW/yL80kLLtlFsfAQQDy6vETIv/+DfrcyXQ6am2HwhI44KwP/Ygdg2pDkD/B5SthEnNs7/5uGFA0uFp8pBz4OsnpxHpWA7WlxgE+z5BeL0qUuP5t23dyTn+rR0H2b4dU/cnh6mVdVGb9v2/5iLYVTCc= on: tags: true repo: cisco-oss-eng/perfwhiz
Add Travis build to project
language: python python: - '2.7' - '3.3' - pypy install: - pip install -r requirements.txt script: - python example.py notifications: slack: secure: jbrRb54Epda/ra3j7B10zoOxl5sVxWQbyJtPVVuJ+mISDQJyt4FpJSl13ErtKrza5F++UAMs51qRwgicxTF7yN9mX/8RCDeCI+F4FmOWDTL7lPVCMlNyTAwE/UXL8XsAdoMN47gIkrYyUjnziwD//A+ZQ7pbTbMAzPBRyzH2tB5Ehp9eaU92T1oOGmh8j/rxBJuuQW3sfPb76IqR7F17vU5biDBN/FgWzTrWzS0J5VdbnvIfX+bMF+4VA/WRrCLg2GJyIuGeQtuKF4gBblsQVpu5ax8NnkM+ylWGrAgzzImJfhR+rt+VeZCImBvYiE8836mslqiu8lhQxQ96PbF8xdMy/qeKujPrHV6ilr5j3O2iVihd2vq48rAVwMoYtJL9+5I7g5G6lnlLLKhEahgTbT3GRc5r5bno8PhkqqQ3+YFyKbNeIqeH8SVF3sI740COK5MJ8/PHO9rc9kVhKrZ3n4Y6rPb7d92gW9XFcjKBukuJ7N0IeV+kSRvVZXJtN58bUkg4ZycEQ1jUUys4hMxh1opRn3IBBk4ZYyEMrswIdAjire3hE6Iq9aalSPDi0byg+skjT54VZgUMj/bFfUPzsLWr1PMXXmvCb4eskq9EoJVc43YrwaykMTx4phmqx+e2uBhd0LufFd8Kg2AfoyPMZplTpkV85uTvBy/5eCx1sG4=
Add a configuration file for Travis-CI
language: php php: - 5.6 - 7.0 env: global: - WP_VERSION=master - WP_VERSION=4.6 before_script: - composer install --prefer-source - mkdir -p build/logs script: - ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - ./vendor/bin/test-reporter cache: directories: - vendor/ notifications: email: false
Integrate with github funding/donation system ;)
github: [dpa99c] custom: ['https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZRD3W47HQ3EMJ']
Update CI to Xcode 8.3
language: objective-c os: osx osx_image: xcode8.2 env: matrix: - TEST_TYPE=iOS - TEST_TYPE=macOS - TEST_TYPE=tvOS -before_install: - | gem install xcpretty -N --no-ri --no-rdoc script: - | ./setup.sh if [ "$TEST_TYPE" = iOS ]; then set -o pipefail xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.1' -enableCodeCoverage YES | xcpretty elif [ "$TEST_TYPE" = macOS ]; then set -o pipefail xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher-macOS -sdk macosx -enableCodeCoverage YES | xcpretty elif [ "$TEST_TYPE" = tvOS ]; then set -o pipefail xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher-tvOS -destination "platform=tvOS Simulator,name=Apple TV 1080p" -enableCodeCoverage YES | xcpretty fi after_success: - | if [ "$TEST_TYPE" = iOS ] || [ "$TEST_TYPE" = macOS ] || [ "$TEST_TYPE" = tvOS ]; then bash <(curl -s https://codecov.io/bash) fi sleep 10
language: objective-c os: osx osx_image: xcode8.3 env: matrix: - TEST_TYPE=iOS - TEST_TYPE=macOS - TEST_TYPE=tvOS -before_install: - | gem install xcpretty -N --no-ri --no-rdoc script: - | ./setup.sh if [ "$TEST_TYPE" = iOS ]; then set -o pipefail xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.1' -enableCodeCoverage YES | xcpretty elif [ "$TEST_TYPE" = macOS ]; then set -o pipefail xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher-macOS -sdk macosx -enableCodeCoverage YES | xcpretty elif [ "$TEST_TYPE" = tvOS ]; then set -o pipefail xcodebuild clean test -workspace Kingfisher.xcworkspace -scheme Kingfisher-tvOS -destination "platform=tvOS Simulator,name=Apple TV 1080p" -enableCodeCoverage YES | xcpretty fi after_success: - | if [ "$TEST_TYPE" = iOS ] || [ "$TEST_TYPE" = macOS ] || [ "$TEST_TYPE" = tvOS ]; then bash <(curl -s https://codecov.io/bash) fi sleep 10
Set up CI with Azure Pipelines
# Node.js # Build a general Node.js project with npm. # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: - main pool: vmImage: 'ubuntu-latest' steps: - task: NodeTool@0 inputs: versionSpec: '14.x' checkLatest: true displayName: 'Install Node.js' - script: | npm install npm run build npm test displayName: 'npm install and build'
Update from Hackage at 2016-11-16T00:27:44Z
homepage: https://github.com/gatlin/oauth10a#readme changelog-type: '' hash: f5970b84499679c1f6bd7aeb8b18104d80dc0fae19fd5cd3215bb2323880ca09 test-bench-deps: bytestring: -any oauth10a: -any base: -any maintainer: gatlin@niltag.net synopsis: Simple utilities to create OAuth 1.0a headers changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any base64-bytestring: -any entropy: -any transformers: -any http-types: -any aeson: -any cryptohash: -any all-versions: - '0.1.0.0' author: Gatlin Johnson latest: '0.1.0.0' description-type: haddock description: ! 'Provides simple functions and types for generating OAuth 1.0a headers as simply and straightforwardly as possible. If you have credentials, a request method, a url, and extra parameters, you''ll get back a compliant ''ByteString'' to put in your @Authorization@ header. See the README.md for more details!' license-name: GPL-3
Add a release note on deprecation for removal of neutron CLI
--- deprecations: - | ``neutron`` CLI will be removed in 'Z' release. While it has been marked as deprecated for removal for long, all features in ``neutron`` CLI have been supported in ``openstack`` CLI (OpenStackClient) as of Xena release and the neutron team plans to remove it in 'Z' release. Consider using ``openstack`` CLI and `Mapping Guide <https://docs.openstack.org/python-openstackclient/latest/cli/decoder.html#neutron-cli>`__ in the OSC documentation would help you.
Update from Hackage at 2018-04-16T12:35:19Z
homepage: '' changelog-type: markdown hash: 6d80f63e6bb89973cd8ff422e24e8c877e7208b3fd7687d7bb097299f86fda45 test-bench-deps: {} maintainer: kiss.csongor.kiss@gmail.com synopsis: A friendly shorthand for an old friend changelog: ! '# Revision history for safe-coerce ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: base: ! '>=4.9 && <4.12' all-versions: - '0.1.0.0' author: Csongor Kiss latest: '0.1.0.0' description-type: haddock description: Safe? license-name: BSD3
Update from Hackage at 2018-06-07T08:32:27Z
homepage: https://gitlab.com/gonz/work-time#work-time changelog-type: '' hash: f574f25c0d171bb892f1d6510178f535e23643a9ac771b7d5619ca34da08349e test-bench-deps: {} maintainer: gonz@severnatazvezda.com synopsis: A library for parsing a chat-based work hour reporting scheme. changelog: '' basic-deps: base: ! '>=4.7 && <5' text: ! '>=1.2.3.0 && <1.3' containers: ! '>=0.5.10.2 && <0.6' attoparsec: ! '>=0.13.2.2 && <0.14' all-versions: - '0.1.0.0' author: Rickard Andersson latest: '0.1.0.0' description-type: markdown description: ! '# work-time A library for extracting work hours from an ad-hoc work hour reporting format in (for example) Slack. ## Reason for existing We had already established an ad-hoc format for reporting work hours and tasks and parsing these manually was getting tedious. Hence this library. ## Example entry An entire entry will look as follows: ```text Rickard Andersson [11:16 PM] [28.02] 8.5h worked on missile guidance system cleaned up parsing code ``` The first part is represented by a `MessageLine` and what follows is one `Workday` in this example. An entry can also look as follows: ```text steve [9:42 PM] [01.03] 9h fixed session management Rickard Andersson [11:16 PM] [28.02] 8.5h worked on missile guidance system cleaned up parsing code [01.03] 6h fixed critical bug in missile guidance system removed half of parsing code ``` In this example we have several `Workday` in one `WorkTime`. ## Example report functionality ```haskell > hoursFromText testData Right [("RickardAndersson",14.5),("steve",9.0)] ``` In the case of a `Left` being returned this will contain a more or less informative error message from the parsing stage of the process.' license-name: BSD3
Update from Hackage at 2022-01-28T22:17:13Z
homepage: '' changelog-type: markdown hash: 084e0253fe851eeb985d869fb3c7572e5343c100ed08fe54629466401db63163 test-bench-deps: {} maintainer: mainainer@obsidian.systems synopsis: Commutative semigroups changelog: | # Revision history for commutative-semigroups ## Unreleased Initial version, created from `groups` package. basic-deps: base: '>=4.6 && <5' all-versions: - 0.0.0.0 author: Nathan "Taneb" van Doorn latest: 0.0.0.0 description-type: markdown description: | # Commutative Semigroup [![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/commutative-semigroup.svg)](https://hackage.haskell.org/package/commutative-semigroup) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/commutative-semigroup/badge)](https://matrix.hackage.haskell.org/#/package/commutative-semigroup) [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/reflex-frp/commutative-semigroup/LICENSE) A commutative semigroup is a semigroup where the order of arguments to mappend does not matter. ```haskell class Semigroup g => Commutative g ``` license-name: BSD-3-Clause
Build with Actions, ship coverage to Codecov.
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: npm install run: npm install --no-package-lock - name: npm ls run: npm ls - name: npm install nyc, prove, codecov run: npm install -g nyc prove codecov - name: npm test run: nyc npm test env: CI: true - name: generate codecov report run: nyc report --reporter=text-lcov > coverage.lcov - name: ship coverage to codecov run: codecov --branch=${GITHUB_REF##*/} env: CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
Define initial workflow for project.
name: .NET Core on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.101 - name: Build with dotnet run: dotnet build --configuration Release
Update from Hackage at 2017-07-31T02:36:49Z
homepage: https://github.com/matt-noonan/justified-containers changelog-type: '' hash: 3c46be248f1a629b71fc7f0b3004534d0f2a16591ead4d938dd0a40e93d0be97 test-bench-deps: {} maintainer: matt.noonan@gmail.com synopsis: Keyed container types with verified keys. changelog: '' basic-deps: base: ! '>=4.7 && <5' containers: -any all-versions: - '0.1.0.0' author: Matt Noonan latest: '0.1.0.0' description-type: markdown description: ! '# justified-containers Standard containers, with keys that carry evidence of their own presence. ' license-name: BSD2
Update from Hackage at 2020-05-17T22:30:00Z
homepage: '' changelog-type: '' hash: f8362b4a68562b9afbcd727ff64c1a303970df3a032e0033d2f4c094c3501df3 test-bench-deps: bytestring: '>=0.10.4 && <0.11' base: '>=4.5 && <4.15' xor: -any criterion: ^>=1.5.6 ghc-byteorder: '>=4.11.0.0 && <4.12' tasty-quickcheck: ^>=0.10 tasty-hunit: ^>=0.10 tasty: ^>=1.2.3 QuickCheck: ^>=2.14 maintainer: hvr@gnu.org synopsis: Efficient XOR masking changelog: '' basic-deps: bytestring: ^>=0.10.4 base: '>=4.5 && <4.15' ghc-byteorder: ^>=4.11.0.0 all-versions: - 0.0.1.0 author: Herbert Valerio Riedel latest: 0.0.1.0 description-type: haddock description: |- This package provides efficient implementations of routines for applying <https://en.wikipedia.org/wiki/Bitwise_operation#XOR bitwise XOR> masks to binary data. The currently supported operations (see "Data.XOR" API documentation for more details) are applying * 8-bit wide XOR masks or * 32-bit wide XOR masks to binary data represented by * Strict @ByteString@s, * Lazy @ByteString@s, * @ShortByteString@s (i.e. @ByteArray#@s), or * @CStringLen@ (i.e. @Ptr@s). The performance is comparable to portable ISO C99 implementations but this library is implemented as pure Haskell and is thereby compatible with compile targets such as <https://github.com/ghcjs/ghcjs GHCJS>. license-name: GPL-2.0-or-later
Send Travis CI build results to IRC channel
language: c install: - sudo apt-get update > /dev/null - sudo apt-get install mono-devel > /dev/null script: - ./autogen.sh MCS=/usr/bin/dmcs - xbuild SmartIrc4net.sln - make clean; make distcheck MCS=/usr/bin/dmcs
language: c install: - sudo apt-get update > /dev/null - sudo apt-get install mono-devel > /dev/null script: - ./autogen.sh MCS=/usr/bin/dmcs - xbuild SmartIrc4net.sln - make clean; make distcheck MCS=/usr/bin/dmcs notifications: irc: channels: "irc.oftc.net#smuxi-devel" skip_join: true template: - "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}" - "Build details : %{build_url}"
Add starter TravisCI configuration. Will pick up Travis profile from new parent module when released.
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false jdk: - openjdk7 - oraclejdk8 after_success: - mvn clean cobertura:cobertura coveralls:report
Add redis and kemal dependencies
name: redis2ws version: 0.1.0 dependencies: kemal: github: kemalcr/kemal redis: github: stefanwille/crystal-redis version: ~> 1.9.0 authors: - Wander Hillen <wjw.hillen@gmail.com> targets: redis2ws: main: src/redis2ws.cr crystal: 0.23.1 license: MIT
Add shopware/shopware Unauthenticated Remote Code Execution Vulnerability
title: Unauthenticated Remote Code Execution Vulnerability link: http://community.shopware.com/_detail_1918.html cve: ~ branches: 4.3: time: 2016-04-08 08:56:56 versions: ['<4.3.7'] 5.0: time: 2016-04-08 08:56:56 versions: ['>=5.0.0', '<5.1.0'] 5.1: time: 2016-04-08 08:54:27 versions: ['>=5.1.0', '<5.1.5'] reference: composer://shopware/shopware
Update from Hackage at 2021-08-07T20:59:41Z
homepage: https://github.com/GambolingPangolin/lnurl changelog-type: markdown hash: e073c5f9e4b73b238f181a562a46b12e29088bca833277886e5d0a54a3ff36db test-bench-deps: {} maintainer: ics@gambolingpangolin.com synopsis: A command line tool to manage LNURL auth identities changelog: | # Revision history for lnurl-authenticator ## 0.1.0.0 -- 2021-07-29 * First version. Released on an unsuspecting world. basic-deps: http-client: ^>=0.7 haskoin-core: ^>=0.20 bytestring: '>=0.10 && <0.12' haskeline: ^>=0.8 base: '>=4.14 && <4.16' time: '>=1.9 && <1.13' bech32: ^>=1.1 text: ^>=1.2 filepath: ^>=1.4 memory: ^>=0.16 containers: ^>=0.6 Clipboard: ^>=2.3 http-client-tls: ^>=0.3 cryptonite: ^>=0.29 optparse-applicative: ^>=0.16 aeson: ^>=1.5 lnurl-authenticator: -any lnurl: ^>=0.1 directory: ^>=1.3 all-versions: - 0.1.0.0 author: Ian Shipman latest: 0.1.0.0 description-type: haddock description: See https://github.com/GambolingPangolin/lnurl/blob/master/lnurl-authenticator/README.md license-name: BSD-3-Clause
Update from Hackage at 2019-08-10T10:57:59Z
homepage: '' changelog-type: '' hash: b715c5e2eb65cfc22a4149d0b5d3584fa82607c02d9e59690d48f162c18bf532 test-bench-deps: bytestring: -any Cabal: -any base: -any tasty-golden: -any cabal-fmt-internal: -any filepath: -any process: -any tasty: -any maintainer: Oleg Grenrus <oleg.grenrus@iki.fi> synopsis: Format .cabal files changelog: '' basic-deps: bytestring: -any base: -any cabal-fmt-internal: -any filepath: -any optparse-applicative: ! '>=0.14.3.0 && <0.16' directory: ^>=1.3.1.5 all-versions: - '0.1' author: Oleg Grenrus <oleg.grenrus@iki.fi> latest: '0.1' description-type: haddock description: |- Format @.cabal@ files preserving the original ordering and comments. Tuned for Oleg's preference, but has some knobs still. license-name: GPL-3.0-or-later
Update from Hackage at 2017-03-12T06:14:39Z
homepage: https://github.com/louispan/javascript-stub#readme changelog-type: '' hash: b879946848e215c0ad4f4b17d75a7fd20961a7d08956279da91bed7bbcd1b17c test-bench-deps: {} maintainer: louis@pan.me synopsis: Allow GHCJS projects to compile under GHC and develop using intero. changelog: '' basic-deps: base: ! '>=4.7 && <5' unordered-containers: ! '>=0.2.7 && <1' text: ! '>=1.2 && <2' ghc-prim: -any attoparsec: ! '>=0.13 && <1' transformers: ! '>=0.5 && <0.6' deepseq: ! '>=1.4 && <2' scientific: ! '>=0.3.4 && <1' aeson: ! '>=0.11 && <1' primitive: ! '>=0.6 && <1' vector: ! '>=0.11 && <1' all-versions: - '0.1.0.0' author: Louis Pan latest: '0.1.0.0' description-type: markdown description: ! "[![Hackage](https://img.shields.io/hackage/v/ghcjs-base-stub.svg)](https://hackage.haskell.org/package/ghcjs-base-stub)\n\nFake stubs for GHCJS base to allow GHCJS projects to be compiled using GHC.\nThis also allows developing under intero, and generating haddocks.\n\nUsage:\n\nAdd the following to GHCJS project's cabal.\n```\n if impl(ghcjs)\n build-depends: ghcjs-base\n \ if !impl(ghcjs)\n build-depends: ghcjs-base-stub\n```" license-name: BSD3
Update from Hackage at 2018-03-18T13:20:19Z
homepage: '' changelog-type: markdown hash: a6c8e100bb25025baf130097a55eea12f98cc7a44c6ed1c6d3d64d16a23ac2cd test-bench-deps: streaming: -any exceptions: -any base: -any hspec: ! '>=2.1 && <2.6' streaming-with: -any binary: -any transformers: -any streaming-sort: -any QuickCheck: ! '>=2.5 && <2.12' directory: -any maintainer: Ivan.Miljenovic@gmail.com synopsis: Sorting streams changelog: ! '# Revision history for streaming-sort ## 0.1.0.0 -- 2018-03-18 * First version. Released on an unsuspecting world. ' basic-deps: streaming: ==0.2.* exceptions: ! '>=0.8 && <0.11' bytestring: ==0.10.* base: ==4.* streaming-with: ==0.2.* streaming-binary: ==0.3.* binary: ==0.8.* transformers: ==0.5.* streaming-bytestring: ==0.1.* directory: <=1.4 all-versions: - '0.1.0.0' author: Ivan Lazar Miljenovic latest: '0.1.0.0' description-type: haddock description: Sort streaming values, using files for a cached merge-sort of long @Stream@s. license-name: MIT
Fix config and namespace for registry volume detection
--- - set_fact: registry_volume_claim: "{{ openshift.hosted.registry.storage.volume.name }}-claim" - name: Determine if volume is already attached to dc/docker-registry command: "{{ openshift.common.client_binary }} get -o template dc/docker-registry --template=\\{\\{.spec.template.spec.volumes\\}\\} --output-version=v1" changed_when: false failed_when: false register: registry_volumes_output - set_fact: volume_attached: "{{ registry_volume_claim in (registry_volumes_output).stdout | default(['']) }}" - name: Add volume to dc/docker-registry command: > {{ openshift.common.client_binary }} volume dc/docker-registry --add --overwrite -t persistentVolumeClaim --claim-name={{ registry_volume_claim }} --name=registry-storage when: not volume_attached | bool
--- - set_fact: registry_volume_claim: "{{ openshift.hosted.registry.storage.volume.name }}-claim" - name: Determine if volume is already attached to dc/docker-registry command: > {{ openshift.common.client_binary }} --config={{ openshift_hosted_kubeconfig }} --namespace={{ openshift.hosted.registry.namespace | default('default') }} get -o template dc/docker-registry --template=\\{\\{.spec.template.spec.volumes\\}\\} --output-version=v1 changed_when: false failed_when: false register: registry_volumes_output - set_fact: volume_attached: "{{ registry_volume_claim in (registry_volumes_output).stdout | default(['']) }}" - name: Add volume to dc/docker-registry command: > {{ openshift.common.client_binary }} --config={{ openshift_hosted_kubeconfig }} --namespace={{ openshift.hosted.registry.namespace | default('default') }} volume dc/docker-registry --add --overwrite -t persistentVolumeClaim --claim-name={{ registry_volume_claim }} --name=registry-storage when: not volume_attached | bool
Update from Hackage at 2018-11-01T22:57:36Z
homepage: https://github.com/hasktorch/hasktorch#readme changelog-type: '' hash: dec926c6fdbf1a4e1af05a93c1f37c44bfb7f10508c3cce8c79707a35e1f22d0 test-bench-deps: hasktorch-ffi-tests: (==0.0.1 || >0.0.1) && <0.0.2 hasktorch-types-thc: (==0.0.1 || >0.0.1) && <0.0.2 base: (==4.7 || >4.7) && <5 hspec: ==2.4.4 || >2.4.4 text: ==1.2.2 || >1.2.2 hasktorch-types-th: (==0.0.1 || >0.0.1) && <0.0.2 hasktorch-ffi-thc: -any QuickCheck: ==2.11 || >2.11 hasktorch-ffi-th: (==0.0.1 || >0.0.1) && <0.0.2 maintainer: Sam Stites <fnz@fgvgrf.vb>, Austin Huang <nhfgvau@nyhz.zvg.rqh> - cipher:ROT13 synopsis: Bindings to Cutorch changelog: '' basic-deps: hasktorch-types-thc: (==0.0.1 || >0.0.1) && <0.0.2 inline-c: ==0.5 || >0.5 base: (==4.7 || >4.7) && <5 text: ==1.2.2 || >1.2.2 hasktorch-types-th: (==0.0.1 || >0.0.1) && <0.0.2 all-versions: - '0.0.1.0' author: Hasktorch dev team latest: '0.0.1.0' description-type: haddock description: Cutorch (and THCUNN) FFI bindings for GPU-based tensors and neural networks in Haskell license-name: BSD3
Add workflow to mark stale issues
name: "Close stale pull requests/issues" on: schedule: - cron: "16 00 * * *" jobs: stale: name: Find Stale issues and PRs runs-on: ubuntu-latest if: github.repository == 'mcu-tools/mcuboot' steps: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-pr-message: 'This pull request has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this pull request will automatically be closed in 14 days. Note, that you can always re-open a closed pull request at any time.' stale-issue-message: 'This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.' days-before-stale: 60 days-before-close: 14 stale-issue-label: 'stale' stale-pr-label: 'stale' # exempt-pr-labels: 'Blocked,In progress' # exempt-issue-labels: 'In progress,Enhancement,Feature,Feature Request,RFC,Meta' operations-per-run: 400
Add bob.learn.linear recipe [skip appveyor]
{% set version = "2.0.7" %} package: name: bob.learn.linear version: {{ version }} source: fn: bob.learn.linear-{{ version }}.zip md5: 55de30da99375b9a147ab4927331052f url: https://pypi.python.org/packages/source/b/bob.learn.linear/bob.learn.linear-{{ version }}.zip build: number: 0 skip: true # [not linux] script: python -B setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools - bob.extension >2.0.4 - bob.blitz - bob.core - bob.io.base - bob.math - bob.learn.activation - cmake - pkg-config - gcc # [linux] run: - python - bob.extension >2.0.4 - bob.blitz - bob.core - bob.io.base - bob.math - bob.learn.activation - libgcc # [linux] test: commands: - nosetests -sv bob.learn.linear imports: - bob - bob.learn - bob.learn.linear requires: - nose about: home: http://github.com/bioidiap/bob.learn.linear license: Modified BSD License (3-clause) summary: Bob's Linear Machine and its Trainers extra: recipe-maintainers: - 183amir
Add Github Actions CI config
name: Build + Deploy on: push: branches: [master] tags: ["v*.*.*"] pull_request: branches: [master] jobs: build: runs-on: ${{ matrix.os }} defaults: run: shell: bash strategy: fail-fast: false matrix: python-version: [3.6, 3.7, 3.8, 3.9] os: [ubuntu-latest, macos-latest] platform: [x64] env: REPO_DIR: "." PLAT: "x86_64" UNICODE_WIDTH: 32 MB_ML_VER: 2014 TEST_DEPENDS: "tox" MB_PYTHON_VERSION: ${{ matrix.python-version }} TRAVIS_PYTHON_VERSION: ${{ matrix.python-version }} steps: - uses: actions/checkout@v2 with: submodules: recursive - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Setup Environment variables run: | if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "TRAVIS_OS_NAME=osx" >> $GITHUB_ENV; else echo "TRAVIS_OS_NAME=${{ matrix.os }}" >> $GITHUB_ENV; fi - name: Print some Environment variable run: echo "TRAVIS_OS_NAME: ${TRAVIS_OS_NAME}" - name: Install virtualenv run: | python -m pip install --upgrade pip pip install virtualenv - name: Build and Install Wheels run: | source multibuild/common_utils.sh source multibuild/travis_steps.sh echo "------- BEFORE INSTALL --------" before_install echo "------- BUILD WHEEL --------" build_wheel $REPO_DIR $PLAT echo "------- INSTALL_RUN --------" install_run $PLAT
Add 'PowerUser' binding for cdp service account
kind: ClusterRoleBinding apiVersion: rbac.authorization.k8s.io/v1 metadata: name: cdp-deployer roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: edit subjects: - kind: ServiceAccount name: cdp namespace: default
Add notify_mpact to dev gerrit
# This file is used by the notify_impact jeepyb plugin to control the bugs it # create. # # Please keep these structures in alphabetical order. # For automatically created DocImpact bugs, there are two structures here. The # author_map maps email addresses of authors to "groups". These groups can be # anything you want, although the most likely example is a dev team at a # particular company. The second structure is "subscriber_map", which lists # the people to subscribe to a bug owned by a particular group. author_map: joshua.hesketh@rackspace.com: rcbau lana.brindley@rackspace.com: rcbau matt@oliver.net.au: rcbau matthew.oliver@rackspace.com: rcbau michael.davies@rackspace.com: rcbau michael.still@rackspace.com: rcbau michael@the-davies.net: rcbau mikal@stillhq.com: rcbau openstack@lanabrindley.com: rcbau subscriber_map: rcbau: ['loquacity', 'mikalstill']
Use organisation token so we can trigger release workflow if necessary
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions name: "Automatic Releases" on: milestone: types: - "closed" jobs: release: name: "GIT tag, release & create merge-up PR" runs-on: ubuntu-latest steps: - name: "Checkout" uses: "actions/checkout@v2" - name: "Release" uses: "laminas/automatic-releases@1.0.1" with: command-name: "laminas:automatic-releases:release" env: "GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }} "SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} "GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} "GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} - name: "Create new milestones" uses: "laminas/automatic-releases@v1" with: command-name: "laminas:automatic-releases:create-milestones" env: "GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }} "SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} "GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} "GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions name: "Automatic Releases" on: milestone: types: - "closed" jobs: release: name: "GIT tag, release & create merge-up PR" runs-on: ubuntu-latest steps: - name: "Checkout" uses: "actions/checkout@v2" - name: "Release" uses: "laminas/automatic-releases@1.0.1" with: command-name: "laminas:automatic-releases:release" env: "GITHUB_TOKEN": ${{ secrets.ORGANIZATION_ADMIN_TOKEN }} "SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} "GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} "GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }} - name: "Create new milestones" uses: "laminas/automatic-releases@v1" with: command-name: "laminas:automatic-releases:create-milestones" env: "GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }} "SIGNING_SECRET_KEY": ${{ secrets.SIGNING_SECRET_KEY }} "GIT_AUTHOR_NAME": ${{ secrets.GIT_AUTHOR_NAME }} "GIT_AUTHOR_EMAIL": ${{ secrets.GIT_AUTHOR_EMAIL }}
Remove minitest/pride to fix travis build
AllCops: Includes: - 'Gemfile' - 'Rakefile' - 'omniauth-gplus.gemspec' # Avoid long parameter lists ParameterLists: Max: 5 CountKeywordArgs: true MethodLength: CountComments: false Max: 18 # Avoid more than `Max` levels of nesting. BlockNesting: Max: 2 # Align with the style guide. CollectionMethods: PreferredMethods: map: 'collect' reduce: 'inject' find: 'detect' find_all: 'select' # Do not force public/protected/private keyword to be indented at the same # level as the def keyword. My personal preference is to outdent these keywords # because I think when scanning code it makes it easier to identify the # sections of code and visually separate them. When the keyword is at the same # level I think it sort of blends in with the def keywords and makes it harder # to scan the code and see where the sections are. AccessModifierIndentation: Enabled: false # Limit line length LineLength: Enabled: false # Disable documentation checking until a class needs to be documented once Documentation: Enabled: false # Enforce Ruby 1.8-compatible hash syntax HashSyntax: EnforcedStyle: hash_rockets # No spaces inside hash literals SpaceInsideHashLiteralBraces: EnforcedStyle: no_space # Allow dots at the end of lines DotPosition: Enabled: false # Don't require magic comment at the top of every file Encoding: Enabled: false # Enforce outdenting of access modifiers (i.e. public, private, protected) AccessModifierIndentation: EnforcedStyle: outdent EmptyLinesAroundAccessModifier: Enabled: true # Align ends correctly EndAlignment: AlignWith: variable # Indentation of when/else CaseIndentation: IndentWhenRelativeTo: end IndentOneStep: false Lambda: Enabled: false FileName: Exclude: - 'lib/omniauth-gplus.rb'
Update from Hackage at 2018-04-07T16:19:31Z
homepage: https://github.com/elaforge/simple-src-utils changelog-type: '' hash: 30e0110e0dbd145ac4b5be4121d2e004778f4e92627e40f1548f0c09a672af6b test-bench-deps: extra: -any base: ! '>=3 && <5' text: -any tasty-hunit: -any tasty: -any maintainer: Evan Laforge <qdunkan@gmail.com> synopsis: source code editing utilities changelog: '' basic-deps: extra: -any base: ! '>=3 && <5' text: -any all-versions: - '0.1' author: Evan Laforge latest: '0.1' description-type: markdown description: ! 'Some small source code manipulation tools I use with vim. They''re external filters, though, so if you use acme instead of vim, they should work fine there too. See included `vimrc` for examples. - cmt - Comment and uncomment code. - string-literal - Toggle between raw text and list of lines or Haskell backslash string gap style. Copy paste from its usage: `string-literal [ --wrapped --{add,remove,toggle}-{backslash,lines} ]` Convert between plain text and either backslash-continued string literals, or list of lines style strings. This is to work around haskell''s lack of multi-line string literals. Bind the toggle variant to a vim key to switch between raw text and haskell string literal. It assumes a single level of indent for the strings, and leaves the indent even in the raw form, so that the text will continue to fit in more or less the same number of columns. This means they will look a bit short if printed literally on the terminal, but if you care about that, use --wrapped mode and have some terminal-aware layer do the wrapping. --wrapped mode assumes that someone else will be wrapping the text. It doesn''t put in newlines, and separates wrapped with a leading space. A paragraph newline in the input becomes an explicit newline in the haskell string. Since it assumes someone else is wrapping, it won''t preserve your own leading spaces. If you are doing explicit formatting then don''t use --wrapped. Standard CPP doesn''t like Haskell string-gap syntax. You can either use cpphs via -pgmP ''cpphs --cpp'', or use lines mode, which is more cluttered but doesn''t make CPP mad. Presumably you have a unlines or Text.unlines call at the front of the list. ' license-name: BSD3
Set up CI with Azure Pipelines
trigger: - master pool: vmImage: 'ubuntu-latest' steps: - script: npm install displayName: 'Install dependencies' - script: npm run lint displayName: 'Run lint'
Add the Travis CI configuration
# Use Python language: python # Run the test runner using the same version of Python we use. python: 3.4 # Install the test runner. install: pip install tox # Run each environment separately so we get errors back from all of them. env: - TOX_ENV=py34 - TOX_ENV=pep8 - TOX_ENV=docs script: - tox -e $TOX_ENV
Update from Hackage at 2018-12-30T07:16:33Z
homepage: '' changelog-type: markdown hash: a4e727444d3b0bc6612cc113a3ac73566af72c30ac914291f1fef89e81477468 test-bench-deps: {} maintainer: vanessa.mchale@iohk.io synopsis: Haskell bindings for libarchive changelog: ! '# libarchive ' basic-deps: bytestring: -any base: ! '>=4.3 && <5' filepath: -any all-versions: - 0.1.0.0 author: Vanessa McHale latest: 0.1.0.0 description-type: markdown description: ! '# libarchive [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/libarchive/badge)](https://matrix.hackage.haskell.org/package/libarchive) [![Hackage](https://img.shields.io/hackage/v/libarchive.svg)](http://hackage.haskell.org/package/libarchive) [![Dependencies of latest version on Hackage](https://img.shields.io/hackage-deps/v/libarchive.svg)](https://hackage.haskell.org/package/libarchive) This contains partial Haskell bindings around [libarchive](http://libarchive.org/). It was created as an alternative to [tar](http://hackage.haskell.org/package/tar). Right now it only has support for decompressing tar archives. ' license-name: BSD-3-Clause
Update from Hackage at 2016-11-28T23:30:12Z
homepage: https://github.com/LTI2000/hinterface changelog-type: '' hash: 7709a73cf04fa20fa36909c86833673b5e6fffcf14b3a33658ba1be12b303c84 test-bench-deps: bytestring: -any base: ! '>=4.9 && <5' hinterface: -any hspec: -any async: ! '>=2.1 && <2.2' binary: -any monad-logger: ! '>=0.3 && <0.4' transformers: -any QuickCheck: -any maintainer: timo.koepke@googlemail.com, sven.heyll@gmail.com synopsis: Haskell / Erlang interoperability library changelog: '' basic-deps: exceptions: ! '>=0.8 && <0.9' bytestring: -any stm: -any base: ! '>=4.9 && <5' text: ! '>=1.2 && <1.3' safe-exceptions: ! '>=0.1 && <0.2' monad-control: ! '>=1.0 && <1.1' network: -any async: ! '>=2.1 && <2.2' lifted-base: ! '>=0.2 && <0.3' array: -any memory: -any containers: -any binary: -any cryptonite: -any mtl: -any lifted-async: ! '>=0.9 && <1.0' transformers-base: ! '>=0.4 && <0.5' monad-logger: ! '>=0.3 && <0.4' transformers: -any random: -any QuickCheck: ! '>=2.8 && <3' resourcet: ! '>=1 && <2' vector: -any all-versions: - '0.5.0.0' author: Timo Koepke, Sven Heyll latest: '0.5.0.0' description-type: haddock description: Please see README.md license-name: BSD3
Support latest version of pkg/html
name: angular2 version: 2.0.0-beta.19 author: Angular Dart Team <angular2@dartlang.org> description: Framework for modern web applications homepage: 'https://github.com/dart-lang/angular2' environment: sdk: '>=1.10.0 <2.0.0' dependencies: analyzer: '>=0.24.4 <0.28.0' barback: ^0.15.2+2 build: ^0.3.0 dart_style: '>=0.1.8 <0.3.0' glob: ^1.0.0 html: ^0.12.0 intl: ^0.13.0 logging: '>=0.9.0 <0.12.0' observe: ^0.13.1 path: ^1.0.0 protobuf: ^0.5.1 source_span: ^1.0.0 stack_trace: ^1.6.5 js: ^0.6.0 dev_dependencies: mockito: ^0.11.0 quiver: '>=0.21.4 <0.23.0' test: ^0.12.6 transformer_test: ^0.2.0 transformers: - angular2/transform/codegen - $dart2js: commandLineOptions: - '--show-package-warnings'
name: angular2 version: 2.0.0-beta.19 author: Angular Dart Team <angular2@dartlang.org> description: Framework for modern web applications homepage: 'https://github.com/dart-lang/angular2' environment: sdk: '>=1.10.0 <2.0.0' dependencies: analyzer: '>=0.24.4 <0.28.0' barback: ^0.15.2+2 build: ^0.3.0 dart_style: '>=0.1.8 <0.3.0' glob: ^1.0.0 html: '>=0.12.0 <0.14.0' intl: ^0.13.0 logging: '>=0.9.0 <0.12.0' observe: ^0.13.1 path: ^1.0.0 protobuf: ^0.5.1 source_span: ^1.0.0 stack_trace: ^1.6.5 js: ^0.6.0 dev_dependencies: mockito: ^0.11.0 quiver: '>=0.21.4 <0.23.0' test: ^0.12.6 transformer_test: ^0.2.0 transformers: - angular2/transform/codegen - $dart2js: commandLineOptions: - '--show-package-warnings'
Update from Hackage at 2020-06-21T17:18:02Z
homepage: https://gitlab.com/k0001/hs-bitcoin-keys changelog-type: markdown hash: 13916e790f2053599ed7a2a45e6e09fce9b5170093d68f3fc9e5694bd2437d84 test-bench-deps: bytestring: -any base: ==4.* tasty-hedgehog: -any hedgehog: -any bitcoin-keys: -any tasty-hunit: -any base16-bytestring: -any tasty: -any maintainer: renλren.zone synopsis: Bitcoin keys changelog: | # Version 0.1 * Initial version. basic-deps: secp256k1-haskell: -any bytestring: -any base: ==4.* all-versions: - '0.1' author: Renzo Carbonara latest: '0.1' description-type: markdown description: | # bitcoin-keys Bitcoin keys. This library builds on GHC and GHCJS. ## Developing in GHCJS * `cabal --ghcjs build` will build the Haskell `bitcoin-keys` library with the JavaScript dependencies already compiled at `js/index.compiled.js`. * If the `js/index.js` file changes, run `npx webpack` to regenerate `js/index.compiled.js` and commit both files to the repository. * If the `package.json` file changes, run `npm install -D` to get new JS dependencies, and then run `npx webpack` as above. license-name: Apache-2.0
Update from Hackage at 2021-05-29T16:34:48Z
homepage: '' changelog-type: '' hash: 07b8a44f0a536b10e065407e556d5f94972374ac3f2afc8b76315a3986369331 test-bench-deps: {} maintainer: michel.boucey@gmail.com synopsis: NanoID generator changelog: '' basic-deps: bytestring: '>=0.10 && <0.12' mwc-random: '>=0.13 && <0.16' extra: '>=1.6 && <1.8' base: '>=4.7 && <4.15' NanoID: -any optparse-applicative: '>=0.14 && <0.17' all-versions: - 1.0.0 author: Michel Boucey latest: 1.0.0 description-type: haddock description: Library and CLI tool for NanoID generation license-name: BSD-3-Clause
Set up CI with Azure Pipelines
# C/C++ with GCC # Build your C/C++ project with GCC using make. # Add steps that publish test results, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc trigger: - master pool: vmImage: 'ubuntu-latest' steps: - script: | make displayName: 'make'
Update from Hackage at 2017-10-13T02:55:02Z
homepage: https://github.com/chris-martin/path-text-utf8#readme changelog-type: '' hash: 08dd49c325d9df5d238284077f915047361db6d7262440d2eccbbaab98e538ae test-bench-deps: {} maintainer: Chris Martin <ch.martin@gmail.com> synopsis: Read and write UTF-8 text files changelog: '' basic-deps: bytestring: ! '>=0.10 && <0.11' path: ! '>=0.5 && <0.6' base: ! '>=4.8 && <4.10' text: ! '>=1.2 && <1.3' safe-exceptions: ! '>=0.1 && <0.2' all-versions: - '0.0.0.1' author: Chris Martin <ch.martin@gmail.com> latest: '0.0.0.1' description-type: haddock description: ! 'This is a trivial integration of the @path@ and @text@ packages, providing convenient functions to read and write UTF-8 text files.' license-name: Apache-2.0
Add nodeset for centos5 on docker
HOSTS: centos-5-x64: default_apply_opts: strict_variables: platform: el-5-x86_64 hypervisor : docker image: centos:5 # This stops the image from being deleted on completion, speeding up the process. docker_preserve_image: true CONFIG: type: foss log_level: debug
Add github action to build greentea tests with cmake
name: test building greentea tests with cmake on: [pull_request] jobs: build-greentea-cmake: runs-on: ubuntu-latest container: ghcr.io/armmbed/mbed-os-env:master-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Install the latest mbed-tools run: | pip3 install --upgrade mbed-tools mbedtools --version - name: Build NUCLEO_G031K8 with baremetal profile run: | rm -rf __build mbedtools configure -t GCC_ARM -m NUCLEO_G031K8 --mbed-os-path . --output-dir __build --app-config TESTS/configs/baremetal.json cmake -S . -B __build -GNinja -DCMAKE_CTEST_ARGUMENTS="--output-on-failure;-V" -DBUILD_GREENTEA_TESTS=ON -DMBED_GREENTEA_TEST_BAREMETAL=ON cmake --build __build - name: Build ARM_MUSCA_S1 with full profile run: | rm -rf __build mbedtools configure -t GCC_ARM -m ARM_MUSCA_S1 --mbed-os-path . --output-dir __build cmake -S . -B __build -GNinja -DCMAKE_CTEST_ARGUMENTS="--output-on-failure;-V" -DBUILD_GREENTEA_TESTS=ON cmake --build __build
Add Compose file with logging.
proxy: image: amouat/proxy:1.0 links: - identidock ports: - "80:80" environment: - NGINX_HOST=45.55.251.164 - NGINX_PROXY=http://identidock:9090 identidock: image: amouat/identidock:1.0 links: - dnmonster - redis environment: ENV: PROD dnmonster: image: amouat/dnmonster redis: image: redis logspout: image: amouat/logspout-logstash volumes: - /var/run/docker.sock:/tmp/docker.sock ports: - "8000:80"
Update from Hackage at 2021-04-21T17:35:18Z
homepage: https://github.com/infinity0/hs-safe-numeric changelog-type: markdown hash: 0fda084913753b90d47f95d29c2fbf9db995d6a200b1b5eeddf91659df0f20b9 test-bench-deps: base: '>=4.5.0.0' doctest: -any containers: -any maintainer: infinity0@pwned.gg synopsis: Safe arithmetic operations. changelog: | # Revision history for safe-numeric ## 0.1 -- 2021-04-21 * Initial version, with safe versions of conversion, arithmetic and division operators and functions. basic-deps: base: '>=4.9.0.0 && <5' wide-word: '>=0.1.1.0 && <0.2' safe: '>=0.3.12 && <4' all-versions: - '0.1' author: Ximin Luo latest: '0.1' description-type: haddock description: |- @safe-numeric@ provides safer numeric operators, that have more explicit behaviour in terms of overflow and underflow, and are harder to misuse. license-name: Apache-2.0
Add workflow that triggers copr builds for master branch
name: copr-build on: push: branches: - master jobs: copr_build: name: Create copr build runs-on: ubuntu-20.04 if: github.repository_owner == "oamg" steps: - name: Checkout id: checkout uses: actions/checkout@v2 with: ref: "refs/heads/master" - name: Trigger fedora copr build id: trigger_fedora_build env: COPR_CONFIG: "copr_fedora.conf" run: | cat << EOF > $COPR_CONFIG [copr-cli] login = ${{ secrets.FEDORA_COPR_LOGIN }} username = @oamg token = ${{ secrets.FEDORA_COPR_TOKEN }} copr_url = https://copr.fedorainfracloud.org EOF pip install copr-cli make copr_build
Add Github Action for creating a pull request to production.
on: pull_request: branches: - staging types: - closed jobs: create_pull_request_to_production: runs-on: ubuntu-latest if: github.event.pull_request.merged steps: - uses: actions/github-script@0.8.0 with: script: | console.log(context) github.pulls.create({ owner: context.repo.owner, repo: context.repo.repo, title: context.payload.pull_request.title.replace(/deploy to staging/i, 'Deploy to Production'), head: context.ref, base: 'master', body: context.event.pull_request.body })
Set up GitHub Action to run tests
# 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. # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby name: Ruby on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.6', '2.7', '3.0'] steps: - uses: actions/checkout@v2 - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, # change this to (see https://github.com/ruby/setup-ruby#versioning): # uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests run: bundle exec rails test
Update from Hackage at 2020-07-25T23:02:57Z
homepage: https://github.com/kakkun61/either-result changelog-type: markdown hash: bf81c20f0ea9ec316c0d07bc4e1d95cfa0078f6017ae9ae0260b793166109b4f test-bench-deps: base: '>=4 && <5' doctest: -any either-result: -any maintainer: kazuki.okamoto@kakkun61.com synopsis: ‘Result a’ is a wrapper of ‘Either String a’. changelog: | # Revision history for either-result ## 0.1.0.0 *2020.07.26* - Release. basic-deps: base: '>=4 && <5' all-versions: - 0.1.0.0 author: Kazuki Okamoto (岡本和樹) latest: 0.1.0.0 description-type: markdown description: | # either-result [![Hackage](https://matrix.hackage.haskell.org/api/v2/packages/either-result/badge)](http://hackage.haskell.org/package/either-result) [![GitHub Actions: lint](https://github.com/kakkun61/either-result/workflows/test/badge.svg)](https://github.com/kakkun61/either-result/actions?query=workflow%3Atest) [![GitHub Actions: lint](https://github.com/kakkun61/either-result/workflows/lint/badge.svg)](https://github.com/kakkun61/either-result/actions?query=workflow%3Alint) [![Join the chat at https://gitter.im/either-result/community](https://badges.gitter.im/either-result/community.svg)](https://gitter.im/either-result/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) `Result a` is a wrapper of `Either String a`, but `Result` is an instance of `MonadFail`. license-name: Apache-2.0
Add ussuri prelude to release notes
prelude: | Welcome to the Ussuri release of the OpenStack Block Storage service (cinder). The cinder team would like to bring the following points to your attention. Details may be found below. * With this release, the Block Storage API version 3 has reached microversion **3.60**. * Python 2 is no longer supported. The minimum version of Python that may be used with this release is **Python 3.6**. * The unsupported driver removal policy has been revised. See the "Known Issues" section of this document for more information.
Add example playbook of file module's selinux capabilities
--- # This is a demo of how to manage the selinux context using the file module - hosts: test user: root tasks: - name: Change setype of /etc/exports to non-default value action: file path=/etc/exports setype=etc_t - name: Change seuser of /etc/exports to non-default value action: file path=/etc/exports seuser=unconfined_u - name: Set selinux context back to default value action: file path=/etc/exports context=default
Update from Hackage at 2021-02-19T13:39:20Z
homepage: '' changelog-type: '' hash: a1ebb7b15049bba3aed310fd052087d2d5d95d5874e20184fdaa8f96f86851ee test-bench-deps: {} maintainer: <work.a.mulik@gmail.com> synopsis: Hashable instances for SDP changelog: '' basic-deps: sdp: '>=0.2 && <1' base: '>=4.12 && <5' hashable: '>=1.1.1.0 && <1.4' all-versions: - '0.2' author: Andrey Mulik latest: '0.2' description-type: haddock description: Hashable support for SDP structures license-name: BSD-3-Clause
Update from Hackage at 2017-07-20T00:08:24Z
homepage: https://github.com/haskell-works/hw-kafka-avro#readme changelog-type: '' hash: 637b666275156420beaab2267d7569ad826c4b2345aa7a59ffd8609404f855ea test-bench-deps: http-client: -any bytestring: -any pure-zlib: ! '>=0.6' base: -any servant-client: -any unordered-containers: -any hspec: -any text: -any semigroups: -any servant: -any containers: -any cache: -any binary: -any avro: -any mtl: -any hashable: -any transformers: -any errors: -any QuickCheck: -any hw-kafka-avro: -any aeson: -any maintainer: alexey.raga@gmail.com synopsis: Avro support for Kafka infrastructure changelog: '' basic-deps: http-client: -any bytestring: -any pure-zlib: ! '>=0.6' base: ! '>=4.7 && <5' servant-client: -any unordered-containers: -any text: -any semigroups: -any servant: -any containers: -any cache: -any binary: -any avro: -any mtl: -any hashable: -any transformers: -any errors: -any hw-kafka-avro: -any aeson: -any all-versions: - '1.1.0' author: Alexey Raga latest: '1.1.0' description-type: markdown description: ! '# kafka-avro-serialiser Avro serialiser/deserialiser for Kafka messages. Uses SchemaRegistry for schema compatibility and discoverability functionality. This library is meant to be compatible (on both sending and receiving sides) with Java kafka/avro serialiser (written by Confluent). ' license-name: BSD3
Update from Hackage at 2020-12-29T13:42:19Z
homepage: https://github.com/ivanbakel/yesod-katip#readme changelog-type: '' hash: c12c790ab274f39bb96edffd6813e14a29a95d0761b1b78adf7a0bfb4256c81c test-bench-deps: {} maintainer: ivb@vanbakel.io synopsis: Logging bridge between Yesod and Katip changelog: '' basic-deps: katip: ^>=0.8 wai: '>=3 && <4' case-insensitive: -any yesod-core: ^>=1.6 base: '>=4.7 && <5' text: -any network: -any data-default: ^>=0.7 ytl: ^>=0.1 iproute: -any monad-logger: ^>=0.3 wai-extra: '>=3 && <4' http-types: -any aeson: '>=1 && <2' all-versions: - 0.1.0.0 author: Isaac van Bakel latest: 0.1.0.0 description-type: markdown description: | # yesod-katip - Use Katip in your Yesod site `yesod-katip` is a utility library for easily adding [`katip`](https://hackage.haskell.org/package/katip) operability to your [`yesod`](https://hackage.haskell.org/package/yesod) site. It provides class instances for logging to Katip scribes directly from a Yesod `HandlerFor`; as well as utility wrappers for augmenting a Yesod site with useful Katip behaviours, like pulling in HTTP context automatically, and making the Yesod logger output to Katip. For more information, have a look at the module documentation. license-name: BSD-3-Clause
Add GitHub Action to run formatting checks on PRs
name: Prettier CI # This action works with pull requests and pushes on: pull_request: push: branches: # Push events on development branch - develop jobs: prettier: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 with: # Make sure the actual branch is checked out when running on pull requests ref: ${{ github.head_ref }} - name: Prettify code uses: creyD/prettier_action@v2.2 with: # This part is also where you can pass other options, for example: prettier_options: --write **/*.{css,dita*,json,md,scss,xml,yaml,yml} # Runs the action in dry mode. Files wont get changed and the action fails if there are unprettified files. dry: true
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 parameters: - name: buildConfiguration # name of the parameter; required default: 'Release' - name: projectFolder default: ' ' 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)' # Restore packages - task: DotNetCoreCLI@2 displayName: Restore nuget packages inputs: command: restore projects: '*.csproj' workingDirectory: '${{ parameters.projectFolder}}' # The first task is the dotnet command build, pointing to our csproj file - task: DotNetCoreCLI@2 displayName: 'dotnet build' inputs: command: 'build' arguments: '--configuration $(buildConfiguration)' projects: 'Kodestruct.Common/Kodestruct.Common.csproj' - task: DotNetCoreCLI@2 displayName: 'dotnet build' inputs: command: 'build' arguments: '--configuration $(buildConfiguration)' projects: 'Kodestruct.Common/Kodestruct.Common.csproj' # The second task is dotnet pack command again pointing to the csproj file # The nobuild means the project will not be compiled before running pack, because its already built in above step - task: DotNetCoreCLI@2 displayName: "dotnet pack" inputs: command: 'pack' arguments: '--configuration $(buildConfiguration)' packagesToPack: 'Kodestruct.Common/Kodestruct.Common.csproj' nobuild: true versioningScheme: 'off' # The last task is a nuget command, nuget push # This will push any .nupkg files to the 'TestFeed' artifact feed # allowPackageConflicts allows us to build the same version and not throw an error when trying to push # instead it just ingores the latest package unless the version changes - task: NuGetCommand@2 displayName: 'nuget push' inputs: command: 'push' feedsToUse: 'select' packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg' nuGetFeedType: 'internal' publishVstsFeed: 'TestFeed' versioningScheme: 'off' allowPackageConflicts: true
Set up CI with Azure Pipelines
# https://aka.ms/yaml trigger: - master jobs: - job: ShellBuild displayName: "Build" continueOnError: true strategy: matrix: "Linux 2.1 Debug": sdkVersion: "2.1.x" config: Debug imageName: ubuntu-latest framework: netcoreapp2.1 "Linux 2.1 Release": sdkVersion: "2.1.x" config: Release imageName: ubuntu-latest framework: netcoreapp2.1 "Linux 2.2 Debug": sdkVersion: "2.2.x" config: Debug imageName: ubuntu-latest framework: netcoreapp2.1 "Linux 2.2 Release": sdkVersion: "2.2.x" config: Release imageName: ubuntu-latest framework: netcoreapp2.1 "MacOS 2.1 Debug": sdkVersion: "2.1.x" config: Debug imageName: macOS-latest framework: netcoreapp2.1 "MacOS 2.1 Release": sdkVersion: "2.1.x" config: Release imageName: macOS-latest framework: netcoreapp2.1 "MacOS 2.2 Debug": sdkVersion: "2.2.x" config: Debug imageName: macOS-latest framework: netcoreapp2.1 "MacOS 2.2 Release": sdkVersion: "2.2.x" config: Release imageName: macOS-latest framework: netcoreapp2.1 pool: vmImage: $(imageName) steps: - task: UseDotNet@2 inputs: version: $(sdkVersion) displayName: Install .NET Core SDK - task: ShellScript@2 inputs: scriptPath: ./coverage.sh args: "$(framework) $(config)" displayName: Test Coverage - task: PublishTestResults@2 inputs: testResultsFormat: VSTest testResultsFiles: "**/*.trx" failTaskOnFailedTests: true buildConfiguration: $(config) publishRunAttachments: true displayName: Publish test results - task: PublishCodeCoverageResults@1 inputs: codeCoverageTool: Cobertura summaryFileLocation: ./test/TestResults/output/coverage.cobertura.xml displayName: Publish code coverage - job: CmdBuild displayName: "Build" continueOnError: true strategy: matrix: "Windows .NET Framework Debug": config: Debug "Windows .NET Framework Release": config: Release pool: vmImage: windows-latest steps: - task: BatchScript@1 inputs: filename: ./coverage.cmd arguments: "$(config)" displayName: Test Coverage
Update from Hackage at 2016-12-13T18:59:51Z
homepage: https://github.com/jb55/elm-export-persistent changelog-type: markdown hash: 93d20ad6a4570ff662bde549d488023194b6c08740242172ccb250d7150661db test-bench-deps: {} maintainer: bill@casarin.me synopsis: elm-export persistent entities changelog: ! '# Revision history for elm-export-persistent ## 0.1.0.0 -- 2016-12-12 * First version. Released on an unsuspecting world. ' basic-deps: base: ! '>=4.8 && <5' persistent: -any unordered-containers: -any text: -any elm-export: -any scientific: -any aeson: -any all-versions: - '0.1.1' author: William Casarin latest: '0.1.1' description-type: haddock description: ! 'Ent is a newtype that wraps Persistent Entity''s, allowing you to export them to Elm types. Specifically, it adds a To/From JSON instance which adds an id field, as well as an ElmType instance that adds an id field constructor.' license-name: MIT
Add API compatibility warnings when server changes are made
name: JSON-RPC Compat Warning on: pull_request: types: [opened, synchronized] paths: ['json-rpc/**.rs'] jobs: warn-about-compat-requirements: runs-on: ubuntu-latest name: Warn PR author about compatibility requirements steps: - name: checkout uses: actions/checkout@v2 with: ref: ${{ github.event.pull_request.head.sha }} - name: comment uses: ./.github/actions/comment with: comment: | **This PR may have modified JSON-RPC server code.** Breaking changes policy: 1. Chaning JSON-RPC method signatures or removing/modifying fields in the response in /V1 will not be accepted. 2. Adding fields is ok. 3. Adding a new JSON-RPC method is ok. Please ensure you have also done the following to update the docs: 1. Update json-rpc/API-CHANGELOG.md. 2. Add/update type/method documentation under json-rpc/docs. tag: jsonrpc-compat delete-older: true
Add initial image build workflow
name: Build and publish docker image on: push: branches: master jobs: build-image: runs-on: ubuntu-latest steps: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - name: Build and push id: docker_build uses: docker/build-push-action@v2 with: push: true tags: mas:latest - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }}
Update from Hackage at 2019-01-22T23:06:29Z
homepage: https://github.com/andrewthad/automata changelog-type: markdown hash: 0719501ee9d76779a496cd65458c6c5ca256510b0341d1b1d63c0cc6b038c97a test-bench-deps: enum-types: ! '>=0.1' base: ! '>=4.7 && <5' leancheck: -any quickcheck-classes: -any HUnit: -any containers: -any quickcheck-enum-instances: ! '>=0.1' tasty-quickcheck: -any tasty-hunit: -any tasty: -any QuickCheck: -any automata: -any tasty-leancheck: -any primitive: -any leancheck-enum-instances: ! '>=0.1' maintainer: andrew.thaddeus@gmail.com synopsis: automata changelog: | # Changelog for automaton ## Unreleased changes basic-deps: bytestring: ! '>=0.10.8' base: ! '>=4.10.1.0 && <5' containers: ! '>=0.5.9' contiguous: -any primitive-containers: ! '>=0.3' transformers: -any semirings: ! '>=0.3.1.1' primitive: ! '>=0.6.4' all-versions: - 0.1.0.0 author: Andrew Martin latest: 0.1.0.0 description-type: markdown description: | # automaton license-name: BSD-3-Clause
Update from Hackage at 2017-11-23T22:37:45Z
homepage: https://github.com/choener/ViennaRNA-extras changelog-type: markdown hash: 56e516f14b96ac997921edab6a3ad37089cbfe199c08a4fb562e4d795ec63388 test-bench-deps: bytestring: -any tasty-th: ! '>=0.1' base: -any ViennaRNA-extras: -any tasty-quickcheck: ! '>=0.8' attoparsec: -any tasty: ! '>=0.11' QuickCheck: -any vector: -any maintainer: choener@bioinf.uni-leipzig.de synopsis: ViennaRNA v2 extensions changelog: ! '0.0.0.1 ------- - constraints to partial sums over base pair probability matrices ' basic-deps: streaming: ! '>=0.1' bytestring: -any base: ! '>=4.7 && <5.0' strict-base-types: ! '>=0.5' strict: ! '>=0.3' BiobaseXNA: ==0.10.0.* array: -any lens: ! '>=4.0' BiobaseTypes: ==0.1.3.* attoparsec: ! '>=0.13' deepseq: ! '>=1.4' QuickCheck: ! '>=2.0' streaming-bytestring: ! '>=0.1' ViennaRNA-bindings: ==0.233.2.* all-versions: - '0.0.0.1' author: Christian Hoener zu Siederdissen, 2017 latest: '0.0.0.1' description-type: markdown description: ! "[![Build Status](https://travis-ci.org/choener/ViennaRNA-extras.svg?branch=master)](https://travis-ci.org/choener/ViennaRNA-extras)\n\n# ViennaRNA extras\n\nA number of high-level functions that extend the functionality provided by\nViennaRNA-bindings.\n\n\n\n#### Contact\n\nChristian Hoener zu Siederdissen \ \nLeipzig University, Leipzig, Germany \nchoener@bioinf.uni-leipzig.de \nhttp://www.bioinf.uni-leipzig.de/~choener/ \ \n\n" license-name: BSD3
Migrate old travis job to GHA
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] workflow_dispatch: jobs: build: runs-on: macos-latest steps: - uses: actions/checkout@v2 # Runs a set of commands using the runners shell - name: Run a multi-line script run: | bundle install gem install xcpretty gem install xcodeproj bundle exec pod install --repo-update cp ./mock-GoogleService-Info.plist GoogleService-Info.plist sed -i '' 's/YOUR_REVERSED_CLIENT_ID/com.googleusercontent.apps.123456789000-hjugbg6ud799v4c49dim8ce2usclthar/' Info.plist ruby ./info_script.rb ./test.sh
Install Bower dependencies before running tests
language: node_js node_js: - "0.10" before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: - npm test notifications: - email: false
language: node_js node_js: - "0.10" before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" before_script: - npm install -g bower - bower install script: - npm test notifications: - email: false