Skip to content

Commit

Permalink
Changed GitHub test-coverage workflow to run on mac
Browse files Browse the repository at this point in the history
The default in test-coverage.yaml is to run the test coverage on ubuntu-latest, but the package fails on ubuntu with an error about the RcppZiggurat.

"Error in `dyn.load(file, DLLpath = DLLpath, ...)`: unable to load shared object '/home/runner/work/_temp/Library/RcppZiggurat/libs/RcppZiggurat.so':
  libgsl.so.27: cannot open shared object file: No such file or directory"

Changed test-coverage.yaml to run on macos-latest
  • Loading branch information
stephaniereinders committed Jan 3, 2025
1 parent eb9d2af commit b1e8ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions: read-all

jobs:
test-coverage:
runs-on: ubuntu-latest
runs-on: macos-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit b1e8ad5

Please sign in to comment.