Skip to content

Commit

Permalink
Fix testing of downloading release from README (#2567)
Browse files Browse the repository at this point in the history
This PR also updates `README` with dependencies necessary to download
release.
  • Loading branch information
tgorochowik authored Sep 17, 2024
2 parents b9a0d13 + abdb01d commit c36358e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -447,13 +447,17 @@ jobs:
- name: Install Prerequisites
run: |
apt update -qq
apt install -y --no-install-recommends pipx jq curl wget
apt install -y --no-install-recommends pipx git wget
pipx install git+https://github.com/antmicro/tuttest#egg=tuttest
- name: Set Pipefail
run: |
set -o pipefail
- name: Install Dependencies
run: |
tuttest README.md install-dependencies-package | bash -
- name: Download Release And Set PATH
run: |
tuttest README.md download-release | bash -
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ Synlig is a SystemVerilog synthesis tool that uses [Surelog](https://github.com/
### Download Synlig

You can download Synlig from the GitHub [release page](https://github.com/chipsalliance/synlig/releases).
To download the latest version, use the following script:
First, make sure you have all required dependencies installed with:

<!-- name="install-dependencies-package" -->
```
apt install -y jq curl wget tk
```

then use the following script to download Synlig:

<!-- name="download-release" -->
```bash
Expand Down

0 comments on commit c36358e

Please sign in to comment.