Skip to content

Commit

Permalink
GitHub Boolean handling in Actions is TERRIBLE
Browse files Browse the repository at this point in the history
  • Loading branch information
mesheets authored Feb 19, 2025
1 parent 0ffc0cc commit 4cb3308
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/brickEmu_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 4cb3308

Please sign in to comment.