diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE.md | 2 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 18 |
2 files changed, 7 insertions, 13 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index d08788de..b2ce0915 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -13,7 +13,7 @@ Please select the item best describing the issue in each category and delete the **Development Phase**: request | proposal **Other information** - <!-- include detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. Stack Overflow, gitter, etc --> + <!-- include detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. Stack Overflow, gitter, Scastie (https://scastie.scala-lang.org/KtzZQ3nFTea9KoNh0tRqtg) --> **If the current behavior is a bug, please provide the steps to reproduce the problem:** 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 |
