diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-11-23 15:30:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-23 15:30:26 -0700 |
commit | 778e4c971077e38bf8f7d03b8b299d3dd111ba22 (patch) | |
tree | caea4ddf5233e616f17df0ee19d4016ce300a8b0 /cli | |
parent | 6f22d2424a30eebaaa1a2d518d4c79d7e0c21a47 (diff) |
chore: start codesigning mac release builds (#21303)
- Adds a codesigning step to all mac targets
- Adds a new ci-full label to the build to force aarch64 builds on any
PR
Diffstat (limited to 'cli')
-rw-r--r-- | cli/entitlements.plist | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cli/entitlements.plist b/cli/entitlements.plist new file mode 100644 index 000000000..73375ea91 --- /dev/null +++ b/cli/entitlements.plist @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>com.apple.security.cs.allow-jit</key> + <true/> + <key>com.apple.security.cs.allow-unsigned-executable-memory</key> + <true/> + <key>com.apple.security.cs.disable-executable-page-protection</key> + <true/> + <key>com.apple.security.cs.allow-dyld-environment-variables</key> + <true/> + <key>com.apple.security.cs.disable-library-validation</key> + <true/> +</dict> +</plist> |