Skip to content

Commit

Permalink
Set extglob at correct step
Browse files Browse the repository at this point in the history
  • Loading branch information
miampf committed Feb 20, 2025
1 parent 730a532 commit bc58333
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/check-measurements-reproducibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
id: build-images
run: |
set -euo pipefail
shopt -s extglob
# Build required binaries
bazel build //image/system:stable
Expand All @@ -49,6 +48,8 @@ jobs:
- name: Cleanup release measurements and generate our own
run: |
set -euo pipefail
shopt -s extglob
for directory in ${{ steps.build-images.outputs.buildPath }}/system/!(mkosi_wrapper.sh); do
dirname="$(basename "$directory")"
csp="$(echo "$dirname" | cut -d_ -f1)"
Expand Down Expand Up @@ -82,6 +83,8 @@ jobs:
- name: Compare measurements
run: |
set -euo pipefail
shopt -s extglob
for directory in ${{ steps.build-images.outputs.buildPath }}/system/!(mkosi_wrapper.sh); do
dirname="$(basename "$directory")"
attestationVariant="$(echo "$dirname" | cut -d_ -f2)"
Expand Down

0 comments on commit bc58333

Please sign in to comment.