Libcaliptra pauser check and fixes - 1x #10437
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
| name: Policy | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| jobs: | |
| check_policy: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Check that the ROM hash matches the frozen one | |
| run: ./ci.sh check_frozen_images | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: caliptra-rom.elf | |
| path: target/riscv32imc-unknown-none-elf/firmware/caliptra-rom | |