We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ef89cf commit 5c8b0e6Copy full SHA for 5c8b0e6
.github/workflows/test.yml
@@ -8,7 +8,7 @@ on:
8
workflow_dispatch:
9
10
env:
11
- verilator-version: v5.020
+ verilator-version: v4.202
12
verilator-install-dir: verilator-install
13
14
jobs:
@@ -29,7 +29,8 @@ jobs:
29
apps: sbt
30
- name: Setup Dependencies
31
run: |
32
- sudo apt-get install ccache
+ sudo apt-get install ccache g++-11 # 安装 GCC 11
33
+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 11
34
- name: Get Cached Verilator
35
id: get-cached-verilator
36
uses: actions/cache@v4
0 commit comments