Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Update Xcode and Swift version #87

Merged
merged 28 commits into from
Jun 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a37feee
ci: Update Xcode and Swift
cbaker6 Mar 31, 2023
fc8dc69
Update release.yml
cbaker6 Mar 31, 2023
b0326bf
Update ci.yml
cbaker6 Apr 1, 2023
f1ca6a7
Merge branch 'main' into cbaker6-patch-1
cbaker6 Apr 4, 2023
5c4417c
switch to macOS 13
cbaker6 Apr 4, 2023
d7753ce
Merge branch 'main' into cbaker6-patch-1
cbaker6 Apr 18, 2023
5184516
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 6, 2023
30d8768
Update ci.yml
cbaker6 May 6, 2023
2132ec6
Update ci.yml
cbaker6 May 6, 2023
a1436bf
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 9, 2023
516f7b6
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 10, 2023
a66c863
try Xcode 14.2 for codecov
cbaker6 May 10, 2023
ce58732
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 10, 2023
77263c2
Update ci.yml
cbaker6 May 10, 2023
fedd8e3
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 12, 2023
dbea474
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 14, 2023
5133fdf
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 15, 2023
27f658d
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 15, 2023
3f2fb5e
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 28, 2023
ae77fbb
Merge branch 'main' into cbaker6-patch-1
cbaker6 May 30, 2023
88655f8
Merge branch 'main' into cbaker6-patch-1
cbaker6 Jun 1, 2023
3f65b51
Merge branch 'main' into cbaker6-patch-1
cbaker6 Jun 13, 2023
0a152a4
Merge branch 'main' into cbaker6-patch-1
cbaker6 Jun 21, 2023
01e39d3
Merge branch 'main' into cbaker6-patch-1
cbaker6 Jun 24, 2023
dec2b21
Update ci.yml
cbaker6 Jun 24, 2023
85474b2
Update ci.yml
cbaker6 Jun 25, 2023
61d659b
Merge branch 'main' into cbaker6-patch-1
cbaker6 Jun 25, 2023
63c56fc
Update ci.yml
cbaker6 Jun 26, 2023
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
CI_XCODE_OLDEST: '/Applications/Xcode_13.3.1.app/Contents/Developer'
CI_XCODE_LATEST: '/Applications/Xcode_14.2.app/Contents/Developer'
CI_XCODE_LATEST: '/Applications/Xcode_14.3.1.app/Contents/Developer'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -18,7 +18,7 @@ concurrency:
jobs:
test:
timeout-minutes: 15
runs-on: macos-latest
runs-on: macos-13
strategy:
matrix:
destination: ['platform=iOS\ Simulator,name=iPhone\ 14\ Pro\ Max', 'platform\=tvOS\ Simulator,name\=Apple\ TV', 'platform=watchOS\ Simulator,name=Apple\ Watch\ Series\ 5\ \(40mm\)', 'platform=macOS']
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

spm-test:
timeout-minutes: 15
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Create and set the default keychain
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
docs:
timeout-minutes: 10
needs: linux
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Use multiple cores
Expand All @@ -161,7 +161,7 @@ jobs:

cocoapods:
needs: linux
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Use multiple cores
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on:
types: [published]
env:
CI_XCODE_13: '/Applications/Xcode_13.4.1.app/Contents/Developer'
CI_XCODE_LATEST: '/Applications/Xcode_14.2.app/Contents/Developer'
CI_XCODE_LATEST: '/Applications/Xcode_14.3.app/Contents/Developer'

jobs:
cocoapods:
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Get release version
Expand All @@ -26,7 +26,7 @@ jobs:
DEVELOPER_DIR: ${{ env.CI_XCODE_LATEST }}

docs:
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Get release version
Expand Down