feat(build): add SPDX 2.3 SBOM generation for builds (#26731)

This commit is contained in:
Ramon Roche
2026-03-31 17:06:51 -06:00
committed by GitHub
parent 1d80fc317e
commit b243398231
16 changed files with 1308 additions and 4 deletions
+2
View File
@@ -29,6 +29,8 @@ for build_dir_path in build/*/ ; do
# Events
mkdir -p artifacts/$build_dir/events/
cp $build_dir_path/events/all_events.json.xz artifacts/$build_dir/events/ 2>/dev/null || true
# SBOM
cp $build_dir_path/*.sbom.spdx.json artifacts/$build_dir/ 2>/dev/null || true
ls -la artifacts/$build_dir
echo "----------"
done