Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chaseruskin/setup-orbit
GitHub Action to install Orbit
https://github.com/chaseruskin/setup-orbit
action continuous-integration hdl systemverilog utilities verilog vhdl
Last synced: 25 days ago
JSON representation
GitHub Action to install Orbit
- Host: GitHub
- URL: https://github.com/chaseruskin/setup-orbit
- Owner: chaseruskin
- License: mit
- Created: 2024-06-20T04:42:57.000Z (6 months ago)
- Default Branch: trunk
- Last Pushed: 2024-07-25T05:03:47.000Z (5 months ago)
- Last Synced: 2024-11-27T09:25:48.918Z (25 days ago)
- Topics: action, continuous-integration, hdl, systemverilog, utilities, verilog, vhdl
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# `setup-orbit` action
[![Test](https://github.com/chaseruskin/setup-orbit/actions/workflows/test.yml/badge.svg?branch=trunk)](https://github.com/chaseruskin/setup-orbit/actions/workflows/test.yml)
This GitHub Action will install a release of [Orbit](https://github.com/chaseruskin/orbit), an agile package manager and extensible build tool for hardware description languages (HDLs).
## Usage
### Examples
In most cases all you will need is the following in your workflow.
```yaml
- uses: chaseruskin/setup-orbit@v0
```If you want a specific version of `orbit`, you can specify this by passing the
`orbit-version` input.```yaml
- uses: chaseruskin/setup-orbit@v0
with:
orbit-version: '0.12.0'
```### Inputs
| Name | Required | Description | Type | Default |
| -------------- | -------- | -------------------------------------------- | ------ | --------------------- |
| `orbit-version`| no | A valid semver specification. | string | null |By default, the latest version of `orbit` will be installed.