Add comment

This commit is contained in:
Maximilian Ammann 2021-12-21 12:09:29 +01:00
parent 3d4ceb24c0
commit 078ae2bb95

View File

@ -72,7 +72,10 @@ jobs:
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Cargo Build
run: cargo build --target aarch64-apple-ios --lib
run: cargo build --target aarch64-apple-ios --lib # First running `cargo build` before `xcodebuild` is REQUIRED!
# Else the rust compilation fails during linking. This is
# probably due to some weird environment variables set during
# xcodebuild execution
- name: XCode Build
run: cd apple/mapr && xcodebuild -scheme "mapr (iOS)" -arch arm64 -sdk iphoneos build CODE_SIGNING_ALLOWED=NO