Changing hw/latest to track patch_v1.1 branch in RTL repo #3148
Workflow file for this run
This file contains 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-20.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Pull dpe submodule | |
run: | | |
git submodule update --init dpe | |
- 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 | |