From 451171857b4534b3ec406d633e4202c7e64f6e89 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Wed, 21 Apr 2021 20:48:49 +1000 Subject: [PATCH] ci: add dependency bin dir to path for win32 tests --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d16cedee..83edc8b51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -197,8 +197,10 @@ jobs: - name: Test working-directory: ${{ runner.workspace }}/build shell: bash + env: + DEP_LOCATION: ${{ runner.workspace }}/install run: | - ctest -C ${{ matrix.build-type }} + PATH=$PATH:$DEP_LOCATION/bin ctest -C ${{ matrix.build-type }} - name: Create Package working-directory: ${{ runner.workspace }}/build