Skip to content

Commit d5fbbc5

Browse files
committed
ci: comment out legacy ci
1 parent 9583e85 commit d5fbbc5

File tree

2 files changed

+35
-34
lines changed

2 files changed

+35
-34
lines changed

.github/workflows/ci.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -79,40 +79,40 @@ jobs:
7979
github-token: ${{ secrets.GITHUB_TOKEN }}
8080
file: lcov.info
8181

82-
macos-legacy:
83-
name: xcodebuild (macOS legacy)
84-
runs-on: macos-14
85-
strategy:
86-
matrix:
87-
command: [test, ""]
88-
platform: [IOS, MACOS, MAC_CATALYST]
89-
xcode: ["15.4"]
90-
include:
91-
- { command: test, skip_release: 1 }
92-
steps:
93-
- uses: actions/checkout@v5
94-
- name: Select Xcode ${{ matrix.xcode }}
95-
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
96-
- name: List available devices
97-
run: xcrun simctl list devices available
98-
- name: Cache derived data
99-
uses: actions/cache@v4
100-
with:
101-
path: |
102-
~/.derivedData
103-
key: |
104-
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-${{ hashFiles('**/Sources/**/*.swift', '**/Tests/**/*.swift') }}
105-
restore-keys: |
106-
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-
107-
- name: Set IgnoreFileSystemDeviceInodeChanges flag
108-
run: defaults write com.apple.dt.XCBuild IgnoreFileSystemDeviceInodeChanges -bool YES
109-
- name: Update mtime for incremental builds
110-
uses: chetan/git-restore-mtime-action@v2
111-
- name: Debug
112-
run: make XCODEBUILD_ARGUMENT="${{ matrix.command }}" CONFIG=Debug PLATFORM="${{ matrix.platform }}" xcodebuild
113-
- name: Release
114-
if: matrix.skip_release != '1'
115-
run: make XCODEBUILD_ARGUMENT="${{ matrix.command }}" CONFIG=Release PLATFORM="${{ matrix.platform }}" xcodebuild
82+
# macos-legacy:
83+
# name: xcodebuild (macOS legacy)
84+
# runs-on: macos-14
85+
# strategy:
86+
# matrix:
87+
# command: [test, ""]
88+
# platform: [IOS, MACOS, MAC_CATALYST]
89+
# xcode: ["15.4"]
90+
# include:
91+
# - { command: test, skip_release: 1 }
92+
# steps:
93+
# - uses: actions/checkout@v5
94+
# - name: Select Xcode ${{ matrix.xcode }}
95+
# run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
96+
# - name: List available devices
97+
# run: xcrun simctl list devices available
98+
# - name: Cache derived data
99+
# uses: actions/cache@v4
100+
# with:
101+
# path: |
102+
# ~/.derivedData
103+
# key: |
104+
# deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-${{ hashFiles('**/Sources/**/*.swift', '**/Tests/**/*.swift') }}
105+
# restore-keys: |
106+
# deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-
107+
# - name: Set IgnoreFileSystemDeviceInodeChanges flag
108+
# run: defaults write com.apple.dt.XCBuild IgnoreFileSystemDeviceInodeChanges -bool YES
109+
# - name: Update mtime for incremental builds
110+
# uses: chetan/git-restore-mtime-action@v2
111+
# - name: Debug
112+
# run: make XCODEBUILD_ARGUMENT="${{ matrix.command }}" CONFIG=Debug PLATFORM="${{ matrix.platform }}" xcodebuild
113+
# - name: Release
114+
# if: matrix.skip_release != '1'
115+
# run: make XCODEBUILD_ARGUMENT="${{ matrix.command }}" CONFIG=Release PLATFORM="${{ matrix.platform }}" xcodebuild
116116

117117
spm:
118118
runs-on: macos-15

Tests/AuthTests/AuthClientTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2315,6 +2315,7 @@ final class AuthClientTests: XCTestCase {
23152315
/// - action: The async action to perform that should trigger events
23162316
/// - expectedEvents: Array of expected AuthChangeEvent values
23172317
/// - expectedSessions: Array of expected Session values (optional)
2318+
@discardableResult
23182319
private func assertAuthStateChanges<T>(
23192320
sut: AuthClient,
23202321
action: () async throws -> T,

0 commit comments

Comments
 (0)