Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: add custom regression tests for wayback 0 #336

Merged
merged 2 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/test-regression-cache-wayback-0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,43 @@ jobs:
name: regression_tests_coverage_data_cache_wayback_0
path: results/*.info

custom-regression-tests:
name: Custom regression tests
runs-on: [ self-hosted, Linux, X64, gcp-custom-runners ]
container: centos:8
strategy:
matrix:
bus: ["axi", "ahb"]
test: ["hello_world", "hello_world_dccm", "cmark", "cmark_dccm", "cmark_iccm", "dhry", "ecc",
"csr_misa", "csr_access", "csr_mstatus", "csr_mseccfg", "modesw", "insns", "irq", "perf_counters", "pmp", "write_unaligned",
"icache", "bitmanip"]
priv: ["0", "1"]
exclude:
# These tests require user mode
- priv: "0"
test: "csr_mseccfg"
- priv: "0"
test: "csr_access"
- priv: "0"
test: "csr_mstatus"
- priv: "0"
test: "modesw"
- priv: "0"
test: "insns"
- priv: "0"
test: "perf_counters"
# end tests which require user mode
env:
GHA_EXTERNAL_DISK: additional-tools
GHA_SA: gh-sa-veer-uploader
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Run tests
run: _secret_custom_regression_tests_wayback_0
env:
TEST: ${{ matrix.test }}
BUS: ${{ matrix.bus }}
PRIV: ${{ matrix.priv }}
2 changes: 1 addition & 1 deletion .github/workflows/test-regression-cache-wayback-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
submodules: recursive

- name: Run tests
run: _secret_custom_regression_tests
run: _secret_custom_regression_tests_wayback_1
env:
TEST: ${{ matrix.test }}
BUS: ${{ matrix.bus }}
Expand Down
Loading