From 0ca378e407a1fe4ae38106bc453a3e5b9d731a71 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Wed, 10 Jun 2020 11:02:14 -0400 Subject: [PATCH] [CI] github-actions windows: disable zlib The zlib found on the system is a x86 lib that is not compatible with our x64 build. Disable auto detection for now. --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b7a59f4f66..3a1f7e8651 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -24,7 +24,7 @@ jobs: mkdir build mkdir c:/project cd build - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=c:/project -DDEAL_II_CXX_FLAGS="-WX" -T host=x64 .. + cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=c:/project -DDEAL_II_WITH_ZLIB=off -DDEAL_II_CXX_FLAGS="-WX" -T host=x64 .. - name: archive logs uses: actions/upload-artifact@v1 with: -- 2.39.5