We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd5fa50 commit fe2c1c1Copy full SHA for fe2c1c1
1 file changed
.github/workflows/build-icu-win.yml
@@ -14,8 +14,17 @@ jobs:
14
runs-on: windows-latest
15
timeout-minutes: 240
16
steps:
17
+ - name: "Create custom vcpkg triplet (static + v142 toolset)"
18
+ run: |
19
+ @"
20
+ set(VCPKG_TARGET_ARCHITECTURE x64)
21
+ set(VCPKG_CRT_LINKAGE static)
22
+ set(VCPKG_LIBRARY_LINKAGE static)
23
+ set(VCPKG_PLATFORM_TOOLSET v142)
24
+ "@ | Set-Content "$env:VCPKG_INSTALLATION_ROOT\triplets\community\x64-windows-static-v142.cmake"
25
+
26
- name: "Vcpkg build"
- run: vcpkg install icu:x64-windows-static --x-install-root=.
27
+ run: vcpkg install icu:x64-windows-static-v142 --x-install-root=.
28
29
- name: "Pack"
30
run: |
0 commit comments