diff options
| author | Kevin Laeufer | 2021-11-10 12:00:23 -0800 |
|---|---|---|
| committer | GitHub | 2021-11-10 12:00:23 -0800 |
| commit | 921a5859cb5f450851025e5dcbd10d68629ea5c9 (patch) | |
| tree | 7ab60d781c2ae9e63ec82feea323a6f66f92ce97 /.github | |
| parent | 614551236186d35ff42ea9c90130a3b80646ba69 (diff) | |
ci: use official action to install oss cad tools (#2243)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ee4d68d5..5f3252cc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,12 +25,9 @@ jobs: uses: actions/checkout@v2 - name: Install Tabby OSS Cad Suite (from YosysHQ) - run: | - cd /home/runner/work/ - wget https://github.com/YosysHQ/oss-cad-suite-build/releases/download/2021-09-23/oss-cad-suite-linux-x64-20210923.tgz - tar -xf oss-cad-suite-linux-x64-20210923.tgz - ls /home/runner/work/oss-cad-suite/bin - echo "/home/runner/work/oss-cad-suite/bin" >> $GITHUB_PATH + uses: YosysHQ/setup-oss-cad-suite@v1 + with: + osscadsuite-version: '2021-11-09' - name: Install Espresso run: | @@ -61,12 +58,9 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Install Tabby OSS Cad Suite (from YosysHQ) - run: | - cd /home/runner/work/ - wget https://github.com/YosysHQ/oss-cad-suite-build/releases/download/2021-09-23/oss-cad-suite-linux-x64-20210923.tgz - tar -xf oss-cad-suite-linux-x64-20210923.tgz - ls /home/runner/work/oss-cad-suite/bin - echo "/home/runner/work/oss-cad-suite/bin" >> $GITHUB_PATH + uses: YosysHQ/setup-oss-cad-suite@v1 + with: + osscadsuite-version: '2021-11-09' - name: Install Espresso run: | cd /tmp |
