Skip to content

Commit

Permalink
.github/workflows/codecov.yml: Attempt to fix LD_LIBRARY_PATH.
Browse files Browse the repository at this point in the history
If it doesn't work, I'll just have it use static libromdata when
doing code coverage builds.
  • Loading branch information
GerbilSoft committed Oct 28, 2023
1 parent 8cbf6fa commit 1218950
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
- name: Run Ninja
run: ninja
- name: Run tests
run: LD_LIBRARY_PATH=./lib ctest -V -C Release
run: ctest -V -C Release
env:
LD_LIBRARY_PATH: ./lib
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
env:
Expand Down

0 comments on commit 1218950

Please sign in to comment.