mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Copilot is my copilot
This commit is contained in:
parent
a552c15b62
commit
2b1ec94af7
1 changed files with 10 additions and 10 deletions
20
.github/workflows/macos-dSYM.yml
vendored
20
.github/workflows/macos-dSYM.yml
vendored
|
|
@ -32,23 +32,23 @@ jobs:
|
|||
# Create build directory
|
||||
mkdir -p ./build/dSYMs
|
||||
|
||||
# Build iOS App Archive with dSYMs
|
||||
# Build for iOS Simulator to generate dSYMs without code signing
|
||||
xcodebuild \
|
||||
-workspace Meshtastic.xcworkspace \
|
||||
-scheme Meshtastic \
|
||||
-allowProvisioningUpdates \
|
||||
-configuration Release \
|
||||
-destination 'generic/platform=iOS' \
|
||||
-archivePath ./build/Meshtastic.xcarchive \
|
||||
-destination 'generic/platform=iOS Simulator' \
|
||||
-derivedDataPath ./build/DerivedData \
|
||||
DATADOG_CLIENT_TOKEN="${DATADOG_CLIENT_TOKEN}" \
|
||||
DEBUG_INFORMATION_FORMAT=dwarf-with-dsym \
|
||||
DWARF_DSYM_FOLDER_PATH=./build/dSYMs \
|
||||
archive
|
||||
CODE_SIGNING_REQUIRED=NO \
|
||||
CODE_SIGNING_ALLOWED=NO \
|
||||
build
|
||||
|
||||
- name: Extract dSYMs from Archive
|
||||
- name: Extract dSYMs from Build
|
||||
run: |
|
||||
# Find and copy all dSYM files from the archive
|
||||
find ./build/Meshtastic.xcarchive -name "*.dSYM" -exec cp -R {} ./build/dSYMs/ \;
|
||||
# Find and copy all dSYM files from the build
|
||||
find ./build/DerivedData -name "*.dSYM" -exec cp -R {} ./build/dSYMs/ \;
|
||||
|
||||
# List what we found
|
||||
echo "Found dSYM files:"
|
||||
|
|
@ -79,5 +79,5 @@ jobs:
|
|||
name: dsym-files
|
||||
path: |
|
||||
./build/dSYMs
|
||||
./build/Meshtastic.xcarchive
|
||||
./build/DerivedData
|
||||
retention-days: 30
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue