Skip to content

Commit 59f5261

Browse files
committed
Add codesigning verification step on CI
1 parent 9c1520f commit 59f5261

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ steps:
4848
command: |
4949
install_gems
5050
bundle exec fastlane set_up_signing
51-
make build
51+
make build verify-signing
5252
env: *common_env
5353
plugins: *common_plugins
5454
agents:

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ build:
1919
codesign --entitlements Sources/hostmgr/hostmgr.entitlements -s "Apple Development: Created via API (886NX39KP6)" .build/artifacts/release/hostmgr --force --verbose
2020
codesign --entitlements Sources/hostmgr/hostmgr.entitlements -s "Apple Development: Created via API (886NX39KP6)" .build/artifacts/release/hostmgr-helper --force --verbose
2121

22+
verify-signing: build
23+
@echo "--- Checking Code Signing"
24+
codesign --verify --strict .build/artifacts/release/hostmgr
25+
codesign --verify --strict .build/artifacts/release/hostmgr-helper
26+
2227
install: build
2328
cp .build/artifacts/release/hostmgr /opt/ci/bin/hostmgr
2429
cp .build/artifacts/release/hostmgr-helper /opt/ci/bin/hostmgr-helper

0 commit comments

Comments
 (0)