Skip to content

Commit

Permalink
Export DYLD_... in core-tests before running tests on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
p-senichenkov committed Jan 8, 2025
1 parent 8ea852a commit 34a9520
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/core-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,9 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build/target
shell: bash
run: ./Desbordante_test --gtest_filter='*:-*HeavyDatasets*'
run: |
if [[ ${{ matrix.os.name }} == 'macos' ]]; then
export DYLD_LIBRARY_PATH=/usr/local/lib:${DYLD_LIBRARY_PATH}
fi
./Desbordante_test --gtest_filter='*:-*HeavyDatasets*'

0 comments on commit 34a9520

Please sign in to comment.