Skip to content

Commit d1ae76c

Browse files
amd-aliemnpmccallum
authored andcommitted
fix: use new milestone naming scheme
Signed-off-by: Amanda Liem <aliem@amd.com>
1 parent 470d7b0 commit d1ae76c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

modules/beacon/mkosi.extra/usr/local/lib/scripts/beacon-report.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ set -euo pipefail
44
SEV_VERSIONS=("3.0-0")
55
SEV_CERT_FILE=""
66

7+
# Temporarily hardcode the milestone name
8+
MILESTONE="c3.0.0-0"
9+
710
# Determine OS name and version
811
if [ -f /etc/os-release ]; then
912
. /etc/os-release
@@ -37,7 +40,7 @@ for sev_version in "${SEV_VERSIONS[@]}"; do
3740
# Call beacon
3841
if [ -e "${SEV_CERT_FILE}" ] && [ -z "$(grep "" "${SEV_CERT_FILE}")" ]; then
3942
# Add milestone if no errors encountered
40-
beacon report --title "$SEV_TITLE" --body "$SEV_CERT_FILE" --label "certificate" --label "os-${OS_LABEL}" --milestone "v${sev_version}"
43+
beacon report --title "$SEV_TITLE" --body "$SEV_CERT_FILE" --label "certificate" --label "os-${OS_LABEL}" --milestone "$MILESTONE"
4144
else
4245
beacon report --title "$SEV_TITLE" --body "$SEV_CERT_FILE" --label "certificate" --label "os-${OS_LABEL}"
4346
fi

0 commit comments

Comments
 (0)