cdc_clearable: Simplify testbench control events #349
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
| # Copyright 2025 ETH Zurich and University of Bologna. | |
| # Licensed under the Apache License, Version 2.0, see LICENSE for details. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: ci | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| elaborate: | |
| name: Elaborate all RTL modules w/ Verilator | |
| runs-on: ubuntu-latest | |
| container: | |
| image: hpretl/iic-osic-tools:2026.04 | |
| options: --user root | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run Verilator elaboration check | |
| # Use a login shell to ensure that the environment is set up correctly | |
| shell: bash -l -e -o pipefail {0} | |
| run: | | |
| make vlt-elab |