Skip to content

Commit dc9767b

Browse files
authored
Merge pull request #136 from stnolting/dependabot/submodules/neorv32-1f763a9
[Dependabot]: Bump neorv32 from `651732d` to `1f763a9`
2 parents cb46793 + 78a7848 commit dc9767b

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111

1212
Check:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414

1515
steps:
1616

@@ -25,12 +25,14 @@ jobs:
2525
wget https://github.com/stnolting/icarus-verilog-prebuilt/releases/download/v1.0.0/iverilog-27082022.tar.gz
2626
mkdir $GITHUB_WORKSPACE/iverilog-27082022.tmp
2727
tar -xzf iverilog-27082022.tar.gz -C $GITHUB_WORKSPACE/iverilog-27082022.tmp/
28-
29-
- name: '⚙️ Update PATH variable'
30-
run: echo "$GITHUB_WORKSPACE/iverilog-27082022.tmp/bin" >> $GITHUB_PATH
28+
echo "$GITHUB_WORKSPACE/iverilog-27082022.tmp/bin" >> $GITHUB_PATH
3129
3230
- name: '📦 Install GHDL'
33-
uses: ghdl/setup-ghdl-ci@nightly
31+
run: |
32+
wget -q https://github.com/ghdl/ghdl/releases/download/v4.1.0/ghdl-gha-ubuntu-22.04-mcode.tgz
33+
mkdir $GITHUB_WORKSPACE/ghdl
34+
tar -xzf ghdl-gha-ubuntu-22.04-mcode.tgz -C $GITHUB_WORKSPACE/ghdl
35+
echo $GITHUB_WORKSPACE/ghdl/bin >> $GITHUB_PATH
3436
3537
- name: '🚀 Run verification script'
3638
run: /bin/bash -c "chmod u+x $GITHUB_WORKSPACE/.github/check.sh && $GITHUB_WORKSPACE/.github/check.sh"

0 commit comments

Comments
 (0)