From: Timo Heister Date: Wed, 10 Jun 2020 15:02:14 +0000 (-0400) Subject: [CI] github-actions windows: disable zlib X-Git-Tag: v9.3.0-rc1~1467^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10499%2Fhead;p=dealii.git [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. --- 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: