diff options
| author | Kevin Laeufer | 2021-11-10 12:00:40 -0800 |
|---|---|---|
| committer | GitHub | 2021-11-10 12:00:40 -0800 |
| commit | 4a2e9c4671bebc7a9eb936476f8fb7fbaa40cacb (patch) | |
| tree | 8b8d599ae15e8a5fc1013534f080ef6feadef5e5 /.github | |
| parent | 18b9a987552492928aa1199d8cf498fe561c2f03 (diff) | |
ci: use official action to install oss cad tools (#2412)
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 c6375526..75323224 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,12 +21,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: Setup Scala uses: olafurpg/setup-scala@v10 with: @@ -78,12 +75,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: Setup Scala uses: olafurpg/setup-scala@v10 with: |
