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: 5 months 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 (about 2 years ago)
- Default Branch: trunk
- Last Pushed: 2025-08-24T20:24:23.000Z (10 months ago)
- Last Synced: 2026-01-27T23:48:24.536Z (5 months ago)
- Topics: action, continuous-integration, hdl, systemverilog, utilities, verilog, vhdl
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# `setup-orbit` action
[](https://github.com/chaseruskin/setup-orbit/actions/workflows/test.yml)
This GitHub Action will install a release of [Orbit](https://github.com/chaseruskin/orbit), a package manager and build system for VHDL, Verilog, and SystemVerilog.
## 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
`version` input.
```yaml
- uses: chaseruskin/setup-orbit@v0
with:
version: '0.26.0'
```
### Inputs
| Name | Required | Description | Type | Default |
| -------------- | -------- | -------------------------------------------- | ------ | --------------------- |
| `version`| no | A valid semver specifier of the Orbit version to install | string | null |
By default, the latest released version of Orbit will be installed.