File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -200,8 +200,8 @@ jobs:
200200 if : runner.os == 'Linux'
201201 run : |
202202 cd tidesdb-java
203- mvn clean compile -DskipTests
204- mvn test -DargLine="-Djava.library.path=/usr/local/lib"
203+ ./mvnw clean compile -DskipTests
204+ ./mvnw test -DargLine="-Djava.library.path=/usr/local/lib"
205205
206206 - name : Build and test with Maven (macOS)
207207 if : runner.os == 'macOS'
@@ -211,13 +211,13 @@ jobs:
211211 ls -la /usr/local/lib/libtidesdb* || true
212212 # DYLD_LIBRARY_PATH is needed so libtidesdb_jni.dylib can find libtidesdb.dylib at runtime
213213 export DYLD_LIBRARY_PATH=/usr/local/lib:$DYLD_LIBRARY_PATH
214- mvn clean compile -DskipTests
215- mvn test -DargLine="-Djava.library.path=/usr/local/lib"
214+ ./mvnw clean compile -DskipTests
215+ ./mvnw test -DargLine="-Djava.library.path=/usr/local/lib"
216216
217217 - name : Build and test with Maven (Windows)
218218 if : runner.os == 'Windows'
219219 shell : cmd
220220 run : |
221221 cd tidesdb-java
222- mvn clean compile -DskipTests
223- mvn test "-DargLine=-Djava.library.path=C:\msys64\mingw64\lib"
222+ ./mvnw clean compile -DskipTests
223+ ./mvnw test "-DargLine=-Djava.library.path=C:\msys64\mingw64\lib"
You can’t perform that action at this time.
0 commit comments