Try to set sdk

This commit is contained in:
Maximilian Ammann 2021-12-20 20:57:17 +01:00
parent 3a27c9009e
commit daab36dd01

View File

@ -70,7 +70,10 @@ jobs:
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cd apple/mapr && xcodebuild -scheme "mapr (iOS)" -arch arm64 -sdk iphonesimulator build
run: |
export SDKROOT=$(xcrun -sdk iphonesimulator15.2 --show-sdk-path)
echo $SDKROOT
cd apple/mapr && xcodebuild -scheme "mapr (iOS)" -arch arm64 -sdk iphonesimulator15.2 build
build-aarch64-android:
runs-on: ubuntu-20.04