[Chore] #168 - CI 테스트 #8
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Neki PR Build Check | |
| on: | |
| pull_request: | |
| branches: [ "develop" ] | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build Neki Dev Scheme | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Select Xcode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '26.2' | |
| - name: Disable Macro Validation | |
| run: | | |
| defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES | |
| defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidation -bool YES | |
| - name: Build on Simulator (Debug) | |
| run: | | |
| xcodebuild clean build \ | |
| -project Neki-iOS.xcodeproj \ | |
| -scheme Neki-iOS \ | |
| -sdk iphonesimulator \ | |
| -destination 'platform=iOS Simulator,name=iPhone 17' \ | |
| CODE_SIGNING_ALLOWED=NO |