Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/base_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ on:

jobs:
build:
runs-on: [macos-14]
runs-on: [macos-latest]

steps:
- name: Select Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4.0
xcode-version: 16

- name: Checkout
uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:
uses: sersoft-gmbh/xcodebuild-action@v3
with:
action: build
build-settings: ONLY_ACTIVE_ARCH=NO TEST_AFTER_BUILD=NO
build-settings: ONLY_ACTIVE_ARCH=NO TEST_AFTER_BUILD=NO SWIFT_VERSION=5.9
configuration: Debug
derived-data-path: "${{ github.workspace }}/SplitApp"
destination: ${{ inputs.destination }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/base_ut.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ on:

jobs:
test:
runs-on: [macos-14]
runs-on: [macos-latest]

steps:
- name: Select Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4.0
xcode-version: 16

- name: Checkout
uses: actions/checkout@v4
Expand All @@ -30,7 +30,7 @@ jobs:
uses: sersoft-gmbh/xcodebuild-action@v3
with:
action: test
build-settings: ONLY_ACTIVE_ARCH=NO
build-settings: ONLY_ACTIVE_ARCH=NO SWIFT_VERSION=5.9
configuration: Debug
derived-data-path: "${{github.workspace}}/SplitApp"
destination: ${{ inputs.destination }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
build-and-collect-coverage:
name: Build & Collect Coverage
runs-on: macos-15
runs-on: macos-latest
timeout-minutes: 15
steps:
- name: Checkout
Expand All @@ -28,7 +28,7 @@ jobs:
-project Split.xcodeproj \
-scheme Split \
-testPlan "SplitiOSFull" \
-destination 'platform=iOS Simulator,OS=18.4,name=iPhone 16' \
-destination 'platform=iOS Simulator,OS=18.4,name=iPhone 16 Pro Max' \
-enableCodeCoverage YES \
-resultBundlePath build/Logs/Test/TestResults.xcresult \
-derivedDataPath build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
uses: ./.github/workflows/base_ut.yaml
with:
test-plan: ${{ matrix.plan }}
destination: 'platform=iOS Simulator,OS=17.2,name=iPhone 15'
destination: 'platform=iOS Simulator,OS=18.5,name=iPhone 16 Pro Max'
2 changes: 1 addition & 1 deletion .github/workflows/xcframework.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Select Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.1.0
xcode-version: 16

- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
Loading