diff options
| author | jarcherNV <jarcher@nvidia.com> | 2025-05-01 13:15:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-01 13:15:05 -0700 |
| commit | dde654c8605ea65f959fcadaa6618337ab1f20c0 (patch) | |
| tree | 63f9168beeabbbab3eec0ac86f43f9628df8e4da | |
| parent | 4dc8a33ce2c4f02cbca451ae43570c1016606b97 (diff) | |
Update falcor perf test path (#6975)
Update the falcor perf test path environment variable so that it checks
existing paths only after the build path. This is needed to prevent it
from accidentally using a previously installed version of Slang.
| -rw-r--r-- | .github/workflows/falcor-compiler-perf-test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/falcor-compiler-perf-test.yml b/.github/workflows/falcor-compiler-perf-test.yml index c7e395416..6b2a072de 100644 --- a/.github/workflows/falcor-compiler-perf-test.yml +++ b/.github/workflows/falcor-compiler-perf-test.yml @@ -100,5 +100,5 @@ jobs: run: | $filename = '${{ fromJson(steps.download.outputs.downloaded_files)[0] }}' Expand-Archive $filename -DestinationPath .\falcor-perf-test - $env:PATH += ";.\build\${{matrix.config}}\bin"; + $env:PATH = ".\build\${{matrix.config}}\bin;" + $env:PATH .\falcor-perf-test\bin\Release\falcor_perftest.exe |
