Skip to content

Commit

Permalink
DYLD_LIBRARY_PATH
Browse files Browse the repository at this point in the history
Change-Id: Iac4cb51887906c70c82f353e94d8736074e50436
  • Loading branch information
kpet committed Nov 26, 2024
1 parent d59318d commit 4eaa237
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,14 @@ jobs:
if [ "$RUNNER_OS" == "Windows" ]; then
echo "exe-ext=.exe" >> $GITHUB_ENV
else
echo "LD_LIBRARY_PATH=${{ github.workspace }}/mesa/" >> $GITHUB_ENV
echo "exe-ext=" >> $GITHUB_ENV
fi
if [ "$RUNNER_OS" == "Linux" ]; then
echo "LD_LIBRARY_PATH=${{ github.workspace }}/mesa/" >> $GITHUB_ENV
fi
if [ "$RUNNER_OS" == "macOS" ]; then
echo "DYLD_LIBRARY_PATH=${{ github.workspace }}/mesa/" >> $GITHUB_ENV
fi
if [ "$RUNNER_OS" == "Windows" ]; then
find '${{ env.builddir }}' -name clang.exe
find '${{ env.builddir }}' -name OpenCL.dll
Expand Down

0 comments on commit 4eaa237

Please sign in to comment.