From 891e5520c846d97fb219bae79251ba792232d99f Mon Sep 17 00:00:00 2001 From: Desire Kaleba Date: Thu, 21 Oct 2021 20:17:30 +0300 Subject: Add Scastie links (#2185) (#2189) * add scastie links (#2185) * add scastie version (#2185) Co-authored-by: Megan Wachs --- .github/ISSUE_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') 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** - + **If the current behavior is a bug, please provide the steps to reproduce the problem:** -- cgit v1.2.3 From 921a5859cb5f450851025e5dcbd10d68629ea5c9 Mon Sep 17 00:00:00 2001 From: Kevin Laeufer Date: Wed, 10 Nov 2021 12:00:23 -0800 Subject: ci: use official action to install oss cad tools (#2243) --- .github/workflows/test.yml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to '.github') 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 -- cgit v1.2.3