Skip to content

Commit

Permalink
Merge pull request #1516 from nextcloud/test-macos14
Browse files Browse the repository at this point in the history
Test on M1 / MacOS 14
  • Loading branch information
Ivansss committed Feb 5, 2024
2 parents 1447a7d + fe1557e commit b52901c
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/uitests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ permissions:
jobs:
build-and-test:
name: Build and Test
runs-on: macos-latest
runs-on: macos-14

strategy:
fail-fast: false
Expand All @@ -41,7 +41,7 @@ jobs:

env:
WORKSPACE: NextcloudTalk.xcworkspace
DESTINATION: platform=iOS Simulator,name=iPhone 14,OS=16.2
DESTINATION: platform=iOS Simulator,name=iPhone 15,OS=17.2
SCHEME: NextcloudTalk

steps:
Expand Down Expand Up @@ -119,3 +119,17 @@ jobs:
with:
name: testResults-${{ matrix.configs.talkbranch }}.xcresult
path: "testResult.xcresult"

summary:
permissions:
contents: none
runs-on: macos-14
needs: [build-and-test]

if: always()

name: build-and-test-summary

steps:
- name: Summary status
run: if ${{ needs.build-and-test.result != 'success' }}; then exit 1; fi

0 comments on commit b52901c

Please sign in to comment.