Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:
- name: Verify
run: ./mvnw verify

- name: Verify Linux library is packaged
run: |
mainJar="$(find thegreeklab-core/target -maxdepth 1 -name 'thegreeklab-*.jar' \
! -name '*-sources.jar' ! -name '*-javadoc.jar' | head -n 1)"
test -n "$mainJar"
jar tf "$mainJar" | grep -Fx "native/linux-x86_64/libpbivnorm.so"

- name: Archive JaCoCo report
uses: actions/upload-artifact@v4
with:
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ not required.
Release artifacts bundle `pbivnorm` for Windows x86-64, Linux x86-64, macOS
x86-64 and macOS Apple Silicon. GitHub Actions builds the Linux and macOS
libraries from `src/main/fortran/pbivnorm.f` and smoke-tests each native
runtime. Other platforms can supply an external library through:
runtime. CI validates native loading and JAR packaging on Windows x86-64,
Linux x86-64, macOS x86-64 and macOS Apple Silicon. Other platforms can supply
an external library through:

```text
-Dthegreeklab.pbivnorm.path=/absolute/path/to/library
Expand Down
Loading