Skip to content

Commit

Permalink
Merge pull request #68 from 2rabs/rt/add-pr-ios-build
Browse files Browse the repository at this point in the history
💚 プルリクエスト時の iOS CI を追加
  • Loading branch information
tatsutakein authored Nov 25, 2023
2 parents f12c7ec + 1e373fc commit fd0481d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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

0 comments on commit fd0481d

Please sign in to comment.