From 4cb33089e2a02477a11e6d768cb3989af8309d50 Mon Sep 17 00:00:00 2001 From: mesheets <16882600+mesheets@users.noreply.github.com> Date: Wed, 19 Feb 2025 18:28:54 -0500 Subject: [PATCH] GitHub Boolean handling in Actions is TERRIBLE * https://github.com/actions/runner/issues/1483 * https://github.com/actions/runner/issues/2238 --- .github/workflows/brickEmu_CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/brickEmu_CI.yml b/.github/workflows/brickEmu_CI.yml index 1a5cec8..6b1aba0 100644 --- a/.github/workflows/brickEmu_CI.yml +++ b/.github/workflows/brickEmu_CI.yml @@ -35,12 +35,12 @@ jobs: gcc --version make - name: Run Valgrind Memory Checker on emu - if: ${{ env.RUN_VALGRIND }} + if: ${{ env.RUN_VALGRIND == 'true' }} uses: Ximaz/valgrind-action@1.2.1 with: binary_path: src/emu - name: Run Valgrind Memory Checker on brickEmu ir-server - if: ${{ env.RUN_VALGRIND }} + if: ${{ env.RUN_VALGRIND == 'true' }} uses: Ximaz/valgrind-action@1.2.1 with: binary_path: src/ir-server @@ -55,12 +55,12 @@ jobs: cd brickos_bibo make - name: Run Valgrind Memory Checker on firmdl - if: ${{ env.RUN_VALGRIND }} + if: ${{ env.RUN_VALGRIND == 'true' }} uses: Ximaz/valgrind-action@1.2.1 with: binary_path: brickos_bibo/util/firmdl - name: Run Valgrind Memory Checker on dll - if: ${{ env.RUN_VALGRIND }} + if: ${{ env.RUN_VALGRIND == 'true' }} uses: Ximaz/valgrind-action@1.2.1 with: binary_path: brickos_bibo/util/dll