File tree 2 files changed +49
-6
lines changed
2 files changed +49
-6
lines changed Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
8
8
jobs :
9
- xcode_16 :
9
+ xcode_16_3 :
10
10
runs-on : macos-15
11
11
env :
12
- DEVELOPER_DIR : /Applications/Xcode_16.2 .app/Contents/Developer
12
+ DEVELOPER_DIR : /Applications/Xcode_16.3 .app/Contents/Developer
13
13
steps :
14
14
- name : Checkout
15
15
uses : actions/checkout@v4
27
27
token : ${{ secrets.CODECOV_TOKEN }}
28
28
files : ./coverage_report.lcov
29
29
30
+ xcode_16_2 :
31
+ runs-on : macos-15
32
+ env :
33
+ DEVELOPER_DIR : /Applications/Xcode_16.2.app/Contents/Developer
34
+ steps :
35
+ - name : Checkout
36
+ uses : actions/checkout@v4
37
+ - name : Version
38
+ run : swift --version
39
+ - name : Build
40
+ run : swift build --build-tests
41
+ - name : Test
42
+ run : swift test --skip-build
43
+
30
44
xcode_15_4 :
31
45
runs-on : macos-14
32
46
env :
55
69
- name : Test
56
70
run : swift test
57
71
72
+ linux_swift_6_1 :
73
+ runs-on : ubuntu-latest
74
+ container : swift:6.1
75
+ steps :
76
+ - name : Checkout
77
+ uses : actions/checkout@v4
78
+ - name : Version
79
+ run : swift --version
80
+ - name : Build
81
+ run : swift build --build-tests
82
+ - name : Test
83
+ run : swift test --skip-build
84
+
58
85
linux_swift_6_0 :
59
86
runs-on : ubuntu-latest
60
87
container : swift:6.0.3
94
121
- name : Test
95
122
run : swift test --skip-build
96
123
97
- linux_swift_6_0_musl :
124
+ linux_swift_6_1_musl :
98
125
runs-on : ubuntu-latest
99
- container : swift:6.0.3
126
+ container : swift:6.1
100
127
steps :
101
128
- name : Checkout
102
129
uses : actions/checkout@v4
@@ -105,8 +132,24 @@ jobs:
105
132
- name : SDK List Pre
106
133
run : swift sdk list
107
134
- name : Install SDK
108
- run : swift sdk install https://download.swift.org/swift-6.0.3 -release/static-sdk/swift-6.0.3 -RELEASE/swift-6.0.3 -RELEASE_static-linux-0.0.1.artifactbundle.tar.gz --checksum 67f765e0030e661a7450f7e4877cfe008db4f57f177d5a08a6e26fd661cdd0bd
135
+ run : swift sdk install https://download.swift.org/swift-6.1 -release/static-sdk/swift-6.1 -RELEASE/swift-6.1 -RELEASE_static-linux-0.0.1.artifactbundle.tar.gz --checksum 111c6f7d280a651208b8c74c0521dd99365d785c1976a6e23162f55f65379ac6
109
136
- name : SDK List Post
110
137
run : swift sdk list
111
138
- name : Build
112
139
run : swift build --swift-sdk x86_64-swift-linux-musl
140
+
141
+ windows_swift_6_1 :
142
+ runs-on : windows-latest
143
+ steps :
144
+ - name : Checkout
145
+ uses : actions/checkout@v4
146
+ - name : Install Swift
147
+ uses : SwiftyLab/setup-swift@latest
148
+ with :
149
+ swift-version : " 6.1.0"
150
+ - name : Version
151
+ run : swift --version
152
+ - name : Build
153
+ run : swift build --build-tests
154
+ - name : Test
155
+ run : swift test --skip-build
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ extension AllocatedLock {
250
250
251
251
@usableFromInline
252
252
func tryLock( ) -> Bool {
253
- TryAcquireSRWLockExclusive ( _lock)
253
+ TryAcquireSRWLockExclusive ( _lock) != 0
254
254
}
255
255
}
256
256
}
You can’t perform that action at this time.
0 commit comments