diff options
| author | Jack Koenig | 2023-01-12 17:22:29 -0800 |
|---|---|---|
| committer | GitHub | 2023-01-12 17:22:29 -0800 |
| commit | 59f62d82f28947af472fc8ed030051be40f5bfbe (patch) | |
| tree | ffadb9de369b502be40e14b6f8f4b504ee717302 /.github/workflows/setup-oss-cad-suite/action.yml | |
| parent | 897d187236f42c1561b904f6dacc21905e59cc28 (diff) | |
Switch from YosysHQ action to composite action (#2592)
Based on https://github.com/chipsalliance/chisel3/pull/2901.
Diffstat (limited to '.github/workflows/setup-oss-cad-suite/action.yml')
| -rw-r--r-- | .github/workflows/setup-oss-cad-suite/action.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/setup-oss-cad-suite/action.yml b/.github/workflows/setup-oss-cad-suite/action.yml new file mode 100644 index 00000000..94062951 --- /dev/null +++ b/.github/workflows/setup-oss-cad-suite/action.yml @@ -0,0 +1,13 @@ +name: Setup OSS CAD Suite + +runs: + using: composite + steps: + - name: Install Tabby OSS Cad Suite + shell: bash + env: + VERSION: 2021-11-09 + run: | + ARTIFACT=oss-cad-suite-linux-x64-$(echo $VERSION | tr -d '-') + wget -q -O - https://github.com/YosysHQ/oss-cad-suite-build/releases/download/${VERSION}/${ARTIFACT}.tgz | tar -zx + echo "$(pwd)/oss-cad-suite/bin" >> $GITHUB_PATH |
