Skip to content

Commit d5249ad

Browse files
[CI] Added System Verilog Regression Tests to GitHub Runners
The system verilog regression tests were put into the currently not-working nightly tests. Since they are so small, putting them in the GitHub runners tests instead so they do not regress. The strong parmys test also has system verilog tests (I think); however, that test may be too large for the GitHub runners. We may consider moving that test to the SAVI workflows in the future.
1 parent 1279554 commit d5249ad

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/nightly_test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,8 @@ jobs:
6565
- {test: "vtr_reg_strong", cores: "16", options: "", cmake: "-DVTR_ASSERT_LEVEL=3", extra_pkgs: "libeigen3-dev"}
6666
- {test: "vtr_reg_strong_odin", cores: "16", options: "", cmake: "-DVTR_ASSERT_LEVEL=3 -DWITH_ODIN=ON", extra_pkgs: "libeigen3-dev"}
6767
- {test: "vtr_reg_strong_odin", cores: "16", options: "-skip_qor", cmake: "-DVTR_ASSERT_LEVEL=3 -DVTR_ENABLE_SANITIZE=ON -DWITH_ODIN=ON", extra_pkgs: "libeigen3-dev"}
68-
- {test: "vtr_reg_system_verilog", cores: "16", options: "", cmake: "-DSYNLIG_SYSTEMVERILOG=ON", extra_pkgs: ""}
6968
- {test: "odin_reg_strong", cores: "16", options: "", cmake: "-DWITH_ODIN=ON", extra_pkgs: ""}
70-
- {test: "parmys_reg_strong", cores: "16", options: "", cmake: "-DSYNLIG_SYSTEMVERILOG=ON", extra_pkgs: ""}
69+
- {test: "parmys_reg_strong", cores: "16", options: "", cmake: "-DSYNLIG_SYSTEMVERILOG=ON", extra_pkgs: ""}
7170

7271
env:
7372
DEBIAN_FRONTEND: "noninteractive"

.github/workflows/test.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
run: ./dev/${{ matrix.script }}
9898

9999

100-
UniTests:
100+
UnitTests:
101101
name: 'U: C++ Unit Tests'
102102
runs-on: ubuntu-24.04
103103
steps:
@@ -226,6 +226,12 @@ jobs:
226226
params: '-DCMAKE_COMPILE_WARNING_AS_ERROR=on -DVTR_IPO_BUILD=off -DVTR_ASSERT_LEVEL=3 -DWITH_BLIFEXPLORER=on -DWITH_ODIN=on',
227227
suite: 'vtr_reg_valgrind_small',
228228
extra_pkgs: ""
229+
},
230+
{
231+
name: 'System Verilog',
232+
params: '-DCMAKE_COMPILE_WARNING_AS_ERROR=on -DVTR_IPO_BUILD=off -DVTR_ASSERT_LEVEL=3 -DWITH_BLIFEXPLORER=on -DSYNLIG_SYSTEMVERILOG=ON',
233+
suite: 'vtr_reg_system_verilog',
234+
extra_pkgs: ""
229235
}
230236
]
231237
name: 'R: ${{ matrix.name }}'
@@ -508,7 +514,7 @@ jobs:
508514
needs:
509515
- Build
510516
- Format
511-
- UniTests
517+
- UnitTests
512518
- Warnings
513519
- Regression
514520
- Sanitized

0 commit comments

Comments
 (0)