Update CI to use macOS 12 and Xcode 13.4.

This commit is contained in:
Doug 2022-05-25 17:38:10 +01:00
parent 820db5c2db
commit 9abcab94b6
6 changed files with 7 additions and 6 deletions

View file

@ -15,7 +15,7 @@ env:
jobs: jobs:
build: build:
name: Build name: Build
runs-on: macos-11 runs-on: macos-12
# Concurrency group not needed as this workflow only runs on develop which we always want to test. # Concurrency group not needed as this workflow only runs on develop which we always want to test.

View file

@ -16,7 +16,7 @@ env:
jobs: jobs:
tests: tests:
name: Tests name: Tests
runs-on: macos-11 runs-on: macos-12
concurrency: concurrency:
# When running on develop, use the sha to allow all runs of this workflow to run concurrently. # When running on develop, use the sha to allow all runs of this workflow to run concurrently.

View file

@ -14,7 +14,7 @@ env:
jobs: jobs:
tests: tests:
name: UI Tests name: UI Tests
runs-on: macos-11 runs-on: macos-12
concurrency: concurrency:
# Only allow a single run of this workflow on each branch, automatically cancelling older runs. # Only allow a single run of this workflow on each branch, automatically cancelling older runs.

View file

@ -14,7 +14,7 @@ env:
jobs: jobs:
check-secret: check-secret:
runs-on: macos-11 runs-on: macos-12
outputs: outputs:
out-key: ${{ steps.out-key.outputs.defined }} out-key: ${{ steps.out-key.outputs.defined }}
steps: steps:
@ -29,7 +29,7 @@ jobs:
needs: [check-secret] needs: [check-secret]
if: needs.check-secret.outputs.out-key == 'true' if: needs.check-secret.outputs.out-key == 'true'
name: Release name: Release
runs-on: macos-11 runs-on: macos-12
concurrency: concurrency:
# Only allow a single run of this workflow on each branch, automatically cancelling older runs. # Only allow a single run of this workflow on each branch, automatically cancelling older runs.

View file

@ -0,0 +1 @@
CI: Use macOS 12 and Xcode 13.4

View file

@ -21,7 +21,7 @@ platform :ios do
before_all do before_all do
# Ensure used Xcode version # Ensure used Xcode version
xcversion(version: "~> 13.2") xcversion(version: "~> 13.4")
end end
#### Public #### #### Public ####