From 9dddd878932c4dbea647f4aca65e335f793ccbd4 Mon Sep 17 00:00:00 2001 From: Rangi <35663410+Rangi42@users.noreply.github.com> Date: Thu, 17 Jul 2025 13:39:37 -0400 Subject: [PATCH] Run all CMake commands in bash (#1755) --- .github/workflows/testing.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index e6dbe59b..4245b54f 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -152,6 +152,7 @@ jobs: key: ${{ matrix.arch }}-${{ hashFiles('zlib/**', 'libpng/**') }} - name: Build zlib if: steps.cache.outputs.cache-hit != 'true' + shell: bash run: | # BUILD_SHARED_LIBS causes the output DLL to be correctly called `zlib1.dll` cmake -S zlib -B zbuild -A ${{ matrix.platform }} -Wno-dev -DCMAKE_INSTALL_PREFIX=install_dir -DBUILD_SHARED_LIBS=ON cmake --build zbuild --config Release -j