File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 30
30
target : aarch64-apple-darwin
31
31
artifact_name : target/aarch64-apple-darwin/release/libblink_cmp_fuzzy.dylib
32
32
33
+ # Windows builds
34
+ - os : windows-latest
35
+ target : x86_64-pc-windows-msvc
36
+ artifact_name : target/x86_64-pc-windows-msvc/release/blink_cmp_fuzzy.dll
37
+
33
38
steps :
34
39
- uses : actions/checkout@v4
35
40
Original file line number Diff line number Diff line change @@ -134,6 +134,9 @@ function download.get_system_triple()
134
134
if jit .arch :lower ():match (' arm' ) then return ' aarch64-apple-darwin' end
135
135
if jit .arch :lower ():match (' x64' ) then return ' x86_64-apple-darwin' end
136
136
end
137
+ if jit .os :lower () == ' windows' then
138
+ if jit .arch :lower ():match (' x64' ) then return ' x86_64-pc-windows-msvc' end
139
+ end
137
140
if jit .os :lower () ~= ' windows' then
138
141
if jit .arch :lower ():match (' arm' ) then return ' aarch64-unknown-linux-gnu' end
139
142
if jit .arch :lower ():match (' x64' ) then return ' x86_64-unknown-linux-gnu' end
You can’t perform that action at this time.
0 commit comments