WIP: feat(workflows): add new build workflows for Windows, Linux, and macOS, and remove obsolete build scripts #17

Draft
m wants to merge 141 commits from ozgur/build into main
Showing only changes of commit 4daf6d1176 - Show all commits

View File

@ -9,11 +9,33 @@ jobs:
test-signing: test-signing:
runs-on: macos runs-on: macos
steps: steps:
- name: Checkout repository - name: Create Entitlements File
uses: actions/checkout@v3 run: |
with: # Create entitlements file inline
lfs: true cat > LuckyRobots.entitlements << EOF
fetch-depth: 0 <?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-library-validation</key>
<true/>
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
</dict>
</plist>
EOF
echo "Created entitlements file:"
cat LuckyRobots.entitlements
shell: bash
- name: Download and Extract Artifact - name: Download and Extract Artifact
id: extract-artifact id: extract-artifact