From 0a80211de001ff3f8f669783fb3513897192c198 Mon Sep 17 00:00:00 2001 From: Ryo Takeuchi Date: Sat, 25 Nov 2023 20:12:50 +0900 Subject: [PATCH] =?UTF-8?q?:green=5Fheart:=20=E3=83=97=E3=83=AB=E3=83=AA?= =?UTF-8?q?=E3=82=AF=E3=82=A8=E3=82=B9=E3=83=88=E6=99=82=E3=81=AE=20iOS=20?= =?UTF-8?q?CI=20=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ios.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ios.yml diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml new file mode 100644 index 00000000..cddf963b --- /dev/null +++ b/.github/workflows/ios.yml @@ -0,0 +1,28 @@ +name: "iOS CI" + +on: pull_request_target + +# Cancel any current or previous job from the same PR +concurrency: + group: ios-${{ github.head_ref }} + cancel-in-progress: true + +jobs: + build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: 17 + + - name: Build iOS framework + run: ./gradlew :app:ios-combined:assembleNitoCombinedReleaseXCFramework + + - name: Build iOS app + run: xcodebuild -project ios/App/Nito/Nito.xcodeproj -configuration Debug -scheme Dev -sdk iphoneos -destination name='iPhone 8' build + + - name: Run iOS unit tests + run: xcodebuild test -project ios/App/Nito/Nito.xcodeproj -configuration Debug -scheme Dev -sdk iphoneos -destination name='iPhone 8' build -test-timeouts-enabled YES