Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
release/*

macos:
name: macOS binaries
name: macOS
runs-on: macos-latest
timeout-minutes: 60
steps:
Expand Down Expand Up @@ -282,11 +282,13 @@ jobs:
codesign --display --verbose=2 --entitlements - "$signed"
done

# How Gatekeeper sees the binary. Reported rather than enforced: the
# notary service already accepted it, and the ticket is fetched over
# the network, so a rejection here is not conclusive.
spctl --assess --type exec --verbose=4 "$binary" ||
echo "::warning title=Gatekeeper assessment failed::spctl rejected ${binary}."
# Whether the notary service published a ticket for this code.
# Reported rather than enforced: notarytool already accepted the
# submission, and the ticket is fetched over the network, so a
# failure here is not conclusive. Gatekeeper itself cannot be
# asked, since spctl only assesses an app bundle.
codesign --test-requirement="=notarized" --verify --verbose "$binary" ||
echo "::warning title=Gatekeeper assessment failed::codesign rejected ${binary}."
else
echo '::warning title=Unsigned macOS binaries::Built with sign: false. These binaries are not signed by Seam and must not be released.'
fi
Expand Down
13 changes: 0 additions & 13 deletions .github/workflows/build.yml

This file was deleted.

Loading