Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ jobs:
if: runner.os == 'Linux'
run: |
cd tidesdb-java
mvn clean compile -DskipTests
mvn test -DargLine="-Djava.library.path=/usr/local/lib"
./mvnw clean compile -DskipTests
./mvnw test -DargLine="-Djava.library.path=/usr/local/lib"

- name: Build and test with Maven (macOS)
if: runner.os == 'macOS'
Expand All @@ -211,13 +211,13 @@ jobs:
ls -la /usr/local/lib/libtidesdb* || true
# DYLD_LIBRARY_PATH is needed so libtidesdb_jni.dylib can find libtidesdb.dylib at runtime
export DYLD_LIBRARY_PATH=/usr/local/lib:$DYLD_LIBRARY_PATH
mvn clean compile -DskipTests
mvn test -DargLine="-Djava.library.path=/usr/local/lib"
./mvnw clean compile -DskipTests
./mvnw test -DargLine="-Djava.library.path=/usr/local/lib"

- name: Build and test with Maven (Windows)
if: runner.os == 'Windows'
shell: cmd
run: |
cd tidesdb-java
mvn clean compile -DskipTests
mvn test "-DargLine=-Djava.library.path=C:\msys64\mingw64\lib"
./mvnw clean compile -DskipTests
./mvnw test "-DargLine=-Djava.library.path=C:\msys64\mingw64\lib"
Loading