Skip to content

Commit

Permalink
ci: explicitly set guest-features
Browse files Browse the repository at this point in the history
upstream changed the default value in PR #47.

Signed-off-by: Otto Bittner <cobittner@posteo.net>
  • Loading branch information
derpsteb committed Apr 22, 2024
1 parent 2b213b4 commit ff08f1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/upstream-equivalence.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Upstream Equivalence

on:
workflow_dispatch:
schedule:
# Run every Monday, Wednesday and Friday at 22:00.
# We want to learn somewhat quickly about changes in upstream.
# But we do not expect changes on a regular basis.
- cron: '0 22 * * 1,3,5'
workflow_dispatch:

jobs:
run:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
for vcpus in 2 4 8 16 32 48 64;
do
measurement="$(./sev-snp-measure.py --mode snp --vmm-type=ec2 --vcpus="$vcpus" --ovmf=${{ steps.build-uefi.outputs.ovmfPath }})"
measurement="$(./sev-snp-measure.py --guest-features 0x21 --mode snp --vmm-type=ec2 --vcpus="$vcpus" --ovmf=${{ steps.build-uefi.outputs.ovmfPath }})"
jq --arg vcpus "$vcpus" --arg measurement "$measurement" '. += [{"vcpus": $vcpus, "measurement": $measurement}]' intermediate.json > measurements.json
cp measurements.json intermediate.json
Expand Down

0 comments on commit ff08f1a

Please sign in to comment.