fix: allow not validating SBOM

This commit is contained in:
Sean Molenaar 2024-05-26 13:16:43 +02:00 committed by GitHub
parent 9e2ff327eb
commit 9d75d09a82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -121,12 +121,12 @@ class SBOM
end
end
sig { params(bottling: T::Boolean).returns(T::Boolean) }
sig { params(bottling: T::Boolean).returns(T.nilable(T::Boolean)) }
def valid?(bottling: false)
unless require? "json_schemer"
error_message = "Need json_schemer to validate SBOM, run `brew install-bundler-gems --add-groups=bottle`!"
odie error_message if ENV["HOMEBREW_ENFORCE_SBOM"]
return false
return nil
end
schema = SBOM.fetch_schema!
@ -156,7 +156,8 @@ class SBOM
# will no longer be valid.
Formula.clear_cache unless spdxfile.exist?
if validate && !valid?(bottling:)
valid = valid?(bottling:)
if validate && valid.present? && !valid
opoo "SBOM is not valid, not writing to disk!"
return
end