Skip to content

Commit

Permalink
mkm: fix typo, add cn test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
septract committed Jan 16, 2025
1 parent bdcb111 commit 1a75a5b
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/proofs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
cd components/platform_crypto/shave_trusted_boot &&
make cn_proof
mission-protection-system-verify-cn:
mission-key-management-verify-cn:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository and submodules
Expand All @@ -83,5 +83,24 @@ jobs:
# Use `>` so newlines will be replaced with spaces
run: >
eval `opam env` &&
cd components/mission_protection_system &&
cd components/mission_key_management &&
make cn_proof
mission-key-management-test-cn:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
- name: Prove secure boot
uses: addnab/docker-run-action@v3
with:
image: ghcr.io/rems-project/cerberus/cn@sha256:57f9f894e1ba436941dac692efba85f9b2611460388c98a2f6d355f10b511e6c
registry: ghcr.io
options: -v ${{ github.workspace }}:/data
# This action seems to override the docker image entrypoint, as a result
# we need to run "eval `opam env`" first
# Use `>` so newlines will be replaced with spaces
run: >
eval `opam env` &&
cd components/mission_key_management &&
make cn_test

0 comments on commit 1a75a5b

Please sign in to comment.