Skip to content

Commit 788eeb3

Browse files
committed
Fix static install
1 parent 54c4972 commit 788eeb3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release-binaries.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
# at Microsoft.Tools.WindowsInstallerXml.Cab.Interop.NativeMethods.CreateCabFinish(IntPtr contextHandle, IntPtr newCabNamesCallBackAddress)
158158
# at Microsoft.Tools.WindowsInstallerXml.Cab.WixCreateCab.Complete(IntPtr newCabNamesCallBackAddress)
159159
# at Microsoft.Tools.WindowsInstallerXml.CabinetBuilder.CreateCabinet(CabinetWorkItem cabinetWorkItem)
160-
libxml2_prefix="/c/vcpkg/packages/libxml2_x64-windows/"
160+
libxml2_prefix="/c/vcpkg/packages/libxml2_x64-windows-static/"
161161
#libxml2_prefix="/s/libxml-install/"
162162
target_cmake_flags="$target_cmake_flags -DLLVM_RELEASE_ENABLE_LTO=OFF"
163163
target_cmake_flags="$target_cmake_flags -DLLVM_ENABLE_LIBXML2=FORCE_ON"
@@ -292,17 +292,17 @@ jobs:
292292
293293
- name: Install libxml2
294294
run: |
295-
vcpkg install libxml2:x64-windows-static-rel
295+
vcpkg install libxml2:x64-windows-static
296296
297297
- name: Configure
298298
id: build
299299
shell: bash
300300
run: |
301-
#ls -l /c/vcpkg/packages/libxml2_x64-windows/
302-
#ls -l /c/vcpkg/packages/libxml2_x64-windows/lib/
303-
#ls -l /c/vcpkg/packages/libxml2_x64-windows/include/
304-
#ls -l /c/vcpkg/packages/libxml2_x64-windows/include/libxml2
305-
#ls -l /c/vcpkg/packages/libxml2_x64-windows/include/libxml2/libxml
301+
ls -l /c/vcpkg/packages/libxml2_x64-windows-static/
302+
ls -l /c/vcpkg/packages/libxml2_x64-windows-static/lib/
303+
ls -l /c/vcpkg/packages/libxml2_x64-windows-static/include/
304+
ls -l /c/vcpkg/packages/libxml2_x64-windows-static/include/libxml2
305+
ls -l /c/vcpkg/packages/libxml2_x64-windows-static/include/libxml2/libxml
306306
# There were some issues on the ARM64 MacOS runners with trying to build x86 object,
307307
# so we need to set some extra cmake flags to disable this.
308308
cmake --debug-trycompile -G Ninja -S llvm -B ${{ steps.setup-stage.outputs.build-prefix }}/build \

0 commit comments

Comments
 (0)