@@ -79,40 +79,40 @@ jobs:
79
79
github-token : ${{ secrets.GITHUB_TOKEN }}
80
80
file : lcov.info
81
81
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
116
116
117
117
spm :
118
118
runs-on : macos-15
0 commit comments