From 3894a923432e144f714bf28ad6015f920a97a999 Mon Sep 17 00:00:00 2001 From: Maximilian Ammann Date: Sun, 23 Oct 2022 15:07:29 +0200 Subject: [PATCH] Add logging output --- .github/workflows/library-apple.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/library-apple.yml b/.github/workflows/library-apple.yml index 8ccb4648..d1e99195 100644 --- a/.github/workflows/library-apple.yml +++ b/.github/workflows/library-apple.yml @@ -39,10 +39,13 @@ jobs: - name: Build Example shell: bash run: cd apple/xcode && xcodebuild -scheme "example (iOS)" -arch arm64 -sdk iphoneos build CODE_SIGNING_ALLOWED=NO + - name: Swift Version + shell: bash + run: swift --version - name: Build Swift Package (arm64) shell: bash - run: cd apple/MapLibreRs && rm -rf .build && swift build --arch=arm64 + run: cd apple/MapLibreRs && rm -rf .build && swift build -v --arch=arm64 - name: Build Swift Package (x86_64) shell: bash - run: cd apple/MapLibreRs && rm -rf .build && swift build --arch=x86_64 + run: cd apple/MapLibreRs && rm -rf .build && swift build -v --arch=x86_64