File tree 3 files changed +12
-9
lines changed
3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,18 @@ jobs:
10
10
build :
11
11
strategy :
12
12
matrix :
13
- xcode : ['xcode16', 'xcode15.4']
13
+ xcode : ['xcode16.1 ', 'xcode15.4']
14
14
include :
15
15
- xcode : ' xcode15.4'
16
16
xcode-path : ' /Applications/Xcode_15.4.app/Contents/Developer'
17
- upload-dist : true
18
- run-analyzer : true
19
- macos : ' macos-14'
20
- - xcode : ' xcode16'
21
- xcode-path : ' /Applications/Xcode_16.app'
22
17
upload-dist : false
23
18
run-analyzer : false
24
19
macos : ' macos-14'
20
+ - xcode : ' xcode16.1'
21
+ xcode-path : ' /Applications/Xcode_16.1.app'
22
+ upload-dist : true
23
+ run-analyzer : true
24
+ macos : ' macos-15'
25
25
26
26
name : Build and Test Sparkle
27
27
runs-on : ${{ matrix.macos }}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: "Create Draft Release"
2
2
3
3
env :
4
4
BUILDDIR : " build"
5
- DEVELOPER_DIR : " /Applications/Xcode_15.4 .app/Contents/Developer"
5
+ DEVELOPER_DIR : " /Applications/Xcode_16.1 .app/Contents/Developer"
6
6
7
7
on :
8
8
workflow_dispatch :
@@ -29,7 +29,7 @@ concurrency:
29
29
jobs :
30
30
release :
31
31
name : " Publish binaries for release"
32
- runs-on : macos-14
32
+ runs-on : macos-15
33
33
34
34
steps :
35
35
- name : " Checkout sources"
Original file line number Diff line number Diff line change @@ -434,7 +434,10 @@ + (SUAppcastItem *)bestItemFromAppcastItems:(NSArray *)appcastItems getDeltaItem
434
434
// Give the delegate a chance to provide a custom version comparator
435
435
id <SPUUpdaterDelegate> updaterDelegate = _updaterDelegate;
436
436
if ([updaterDelegate respondsToSelector: @selector ((versionComparatorForUpdater: ))]) {
437
- comparator = [updaterDelegate versionComparatorForUpdater: _updater];
437
+ id updater = _updater;
438
+ if (updater != nil ) {
439
+ comparator = [updaterDelegate versionComparatorForUpdater: updater];
440
+ }
438
441
}
439
442
#pragma clang diagnostic pop
440
443
You can’t perform that action at this time.
0 commit comments