diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml index 3fb6b1b..b6bd83d 100644 --- a/.github/workflows/native.yml +++ b/.github/workflows/native.yml @@ -52,6 +52,8 @@ jobs: run: make clean swig all - name: Run tests + env: + LD_LIBRARY_PATH: ${{ env.GITHUB_WORKSPACE }}/build run: | cd build mkdir -p transcoded/C/ transcoded/C++/ transcoded/Java/ @@ -64,6 +66,8 @@ jobs: ./jxrdecode --in-memory "$input"; done # Test jxrlib Java bindings (in memory and file to file) + echo ${LD_LIBRARY_PATH} + pwd mvn -f ../java/pom.xml test mvn -f java/native-linux_64 package;