We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 237feb0 commit 2e4fa2aCopy full SHA for 2e4fa2a
1 file changed
.github/workflows/stagex.yml
@@ -72,6 +72,14 @@ jobs:
72
shell: 'script -q -e -c "bash {0}"'
73
run: make -j$(nproc) "out/${{ matrix.name }}/index.json"
74
75
+ - name: Print PCRs
76
+ if: matrix.name == 'qos_enclave' || matrix.name == 'qos_enclave_egress'
77
+ run: |
78
+ id=$(docker create "qos-local/${{ matrix.name }}:latest")
79
+ docker cp "${id}:/nitro.pcrs" out/nitro.pcrs
80
+ docker rm "${id}"
81
+ cat out/nitro.pcrs
82
+
83
# Publish PR images so they can be deployed for testing; main is build-only.
84
- name: Push PR image to GHCR and ECR
85
if: github.event_name == 'pull_request'
0 commit comments