Add sival_rom_ext tests to Earlgrey regression & update Bazel test runner.
#1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #------------------------------------------------------------------------------ | ||
| # OpenTitan CI regression runner | ||
| # | ||
| # Copyright (c) 2025 lowRISC CIC | ||
| # SPDX-License-Identifier: Apache License 2.0 | ||
| #------------------------------------------------------------------------------ | ||
| name: OpenTitan Regression | ||
| on: | ||
| pull_request: | ||
| workflow_dispatch: | ||
| inputs: | ||
| opentitan_repo: | ||
| description: OpenTitan repository to be checked out | ||
| required: true | ||
| default: lowRISC/opentitan | ||
| type: string | ||
| opentitan_ref: | ||
| description: Branch, tag, or commit ref from OpenTitan to test | ||
| required: true | ||
| default: earlgrey_1.0.0 | ||
| type: string | ||
| jobs: | ||
| earlgrey_rom_with_fake_keys: | ||
| name: Earlgrey (rom_with_fake_keys) | ||
| uses: ./.github/workflows/eg_regression.yml | ||
|
Check failure on line 27 in .github/workflows/ci_regression.yaml
|
||
| secrets: inherit | ||
| with: | ||
| exec_env: sim_qemu_rom_with_fake_keys | ||
| opentitan_repo: ${{ inputs.opentitan_repo || 'lowRISC/opentitan' }} | ||
| opentitan_ref: ${{ inputs.opentitan_ref || 'earlgrey_1.0.0' }} | ||
| earlgrey_sival_rom_ext: | ||
| name: Earlgrey (rom_with_fake_keys) | ||
| uses: ./.github/workflows/eg_regression.yml | ||
| secrets: inherit | ||
| with: | ||
| exec_env: sim_qemu_sival_rom_ext | ||
| opentitan_repo: ${{ inputs.opentitan_repo || 'lowRISC/opentitan' }} | ||
| opentitan_ref: ${{ inputs.opentitan_ref || 'earlgrey_1.0.0' }} | ||