1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- name: Build additional targets
- on:
- push:
- branches:
- - master
- - develop
- pull_request:
- types: [synchronize, opened, reopened, ready_for_review]
- branches:
- - master
- - develop
- concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
- jobs:
- build-and-test:
- name: Build and Test
- runs-on: macos-14
- if: github.event.pull_request.draft == false
- env:
- PROJECT: Nextcloud.xcodeproj
- DESTINATION: platform=iOS Simulator,name=iPhone 15
- steps:
- - name: Set env var
- run: echo "DEVELOPER_DIR=$(xcode-select --print-path)" >> $GITHUB_ENV
- - uses: actions/checkout@v4
- - name: Download GoogleService-Info.plist
- run: wget "https://raw.githubusercontent.com/firebase/quickstart-ios/master/mock-GoogleService-Info.plist" -O GoogleService-Info.plist
- - name: Build iOS Share
- run: |
- xcodebuild build -project $PROJECT -scheme "$SCHEME" -destination "$DESTINATION" | xcbeautify --quieter
- env:
- SCHEME: Share
- - name: Build iOS File Extension
- run: |
- xcodebuild build -project $PROJECT -scheme "$SCHEME" -destination "$DESTINATION" | xcbeautify --quieter
- env:
- SCHEME: File Provider Extension
- - name: Build iOS Notification Extension
- run: |
- xcodebuild build -project $PROJECT -scheme "$SCHEME" -destination "$DESTINATION" | xcbeautify --quieter
- env:
- SCHEME: Notification Service Extension
- - name: Build iOS Widget
- run: |
- xcodebuild build -project $PROJECT -scheme "$SCHEME" -destination "$DESTINATION" | xcbeautify --quieter
- env:
- SCHEME: Widget
- - name: Build iOS Widget Dashboard IntentHandler
- run: |
- xcodebuild build -project $PROJECT -scheme "$SCHEME" -destination "$DESTINATION" | xcbeautify --quieter
- env:
- SCHEME: WidgetDashboardIntentHandler
|