Skip to content

Commit

Permalink
Move env vars inside build job
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 10, 2023
1 parent c62e560 commit 6bec93d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cmake-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ on: [ push ]

# TODO: just use CMake presets?

env:
VALGRIND_GIT_TAG: VALGRIND_3_22_0
VALGRIND_PREFIX: ${{ runner.workspace }}/valgrind/
UMB_VALGRIND_BIN: ${{ runner.workspace }}/valgrind/bin/valgrind

jobs:
build:
env:
VALGRIND_GIT_TAG: VALGRIND_3_22_0
VALGRIND_PREFIX: ${{ github.workspace }}/valgrind/
UMB_VALGRIND_BIN: ${{ github.workspace }}/valgrind/bin/valgrind

name: ${{ matrix.os }}-${{ matrix.build_type }}-${{ github.workflow }}
runs-on: ${{ matrix.os }}
strategy:
Expand Down

0 comments on commit 6bec93d

Please sign in to comment.