File tree Expand file tree Collapse file tree 4 files changed +5
-19
lines changed Expand file tree Collapse file tree 4 files changed +5
-19
lines changed Original file line number Diff line number Diff line change 12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- os : [macos-14 ]
15
+ os : [macos-15 ]
16
16
xcode-version : ["16.0"]
17
17
release : [2024]
18
18
runs-on : ${{ matrix.os }}
49
49
strategy :
50
50
fail-fast : false
51
51
matrix :
52
- os : [macos-14 ]
52
+ os : [macos-15 ]
53
53
xcode-version : ["16.0"]
54
54
release : [2024]
55
55
ios-version : ["18.0"]
Original file line number Diff line number Diff line change 12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- os : [macos-14 ]
15
+ os : [macos-15 ]
16
16
xcode-version : [16.0]
17
17
release : [2021, 2024]
18
18
ios-version : ["18.0"]
Original file line number Diff line number Diff line change 12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- os : [macos-14 ]
15
+ os : [macos-15 ]
16
16
xcode-version : [16.0]
17
17
release : [2021, 2024]
18
18
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -26,28 +26,14 @@ let systemFrameworkSearchFlag = isXcodeEnv ? "-iframework" : "-Fsystem"
26
26
let releaseVersion = Context . environment [ " OPENSWIFTUI_TARGET_RELEASE " ] . flatMap { Int ( $0) } ?? 2021
27
27
let platforms : [ SupportedPlatform ] = switch releaseVersion {
28
28
case 2024 : // iOS 18.0
29
- // FIXME: non-Darwin platform nightly Swift 6 compiler have not add the latest OS yet
30
- #if canImport(Darwin)
31
29
[
32
30
. iOS( . v18) ,
33
- // FIXME: temporary lower the requirement since there is no macOS 15 CI yet.
34
- // .macOS(.v15),
35
- . macOS( . v14) ,
31
+ . macOS( . v15) ,
36
32
. macCatalyst( . v18) ,
37
33
. tvOS( . v18) ,
38
34
. watchOS( . v10) ,
39
35
. visionOS( . v2) ,
40
36
]
41
- #else
42
- [
43
- . iOS( . v17) ,
44
- . macOS( . v14) ,
45
- . macCatalyst( . v17) ,
46
- . tvOS( . v17) ,
47
- . watchOS( . v9) ,
48
- . visionOS( . v1) ,
49
- ]
50
- #endif
51
37
case 2021 : // iOS 15.5
52
38
[
53
39
. iOS( . v15) ,
You can’t perform that action at this time.
0 commit comments