From 68b09fb1a2ca458ade2a1b53e7b2029b1c8c37e3 Mon Sep 17 00:00:00 2001 From: miampf Date: Tue, 21 Jan 2025 16:37:32 +0100 Subject: [PATCH] started implementation --- .../check-measurements-reproducibility.yml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/check-measurements-reproducibility.yml diff --git a/.github/workflows/check-measurements-reproducibility.yml b/.github/workflows/check-measurements-reproducibility.yml new file mode 100644 index 000000000..5d17da08d --- /dev/null +++ b/.github/workflows/check-measurements-reproducibility.yml @@ -0,0 +1,21 @@ +name: Check measurements reproducibility +on: + release: + types: [created] + workflow_dispatch: + +jobs: + check-reproducibility: + runs-on: ubuntu-22.04 + steps: + - name: Checkout + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + ref: ${{ github.event.release.tag_name }} + - name: Set up bazel + uses: ./.github/actions/setup_bazel_nix + with: + useCache: "false" + - name: Build images and produce measurements + run: | + bazel build //image/system:stable + bazel run //image/measured-boot/cmd