File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
.github/actions/prepare_env
Samples/SwiftAndJavaJarSampleLib Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 77 - name : Install System Dependencies
88 run : apt-get -qq update && apt-get -qq install -y make curl wget libjemalloc2 libjemalloc-dev
99 shell : bash
10- - name : Cache JDK
10+ - name : Cache JDKs
1111 id : cache-jdk
1212 uses : actions/cache@v4
1313 continue-on-error : true
1414 with :
15- path : /usr/lib/jvm/default-jdk/
16- key : ${{ runner.os }}-jdk-${{ matrix.jdk_vendor }}-${{ hashFiles('/usr/lib/jvm/default-jdk/ *') }}
15+ path : /usr/lib/jvm/
16+ key : ${{ runner.os }}-jdk-${{ matrix.jdk_vendor }}-${{ hashFiles('/usr/lib/jvm/*') }}
1717 restore-keys : |
18- ${{ runner.os }}-jdk-${{ matrix.jdk_vendor }}
18+ ${{ runner.os }}-jdk-
1919 - name : Install JDK
2020 if : steps.cache-jdk.outputs.cache-hit != 'true'
2121 run : " bash -xc 'JDK_VENDOR=${{ matrix.jdk_vendor }} ./docker/install_jdk.sh'"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export PATH="${PATH}:${JAVA_HOME}/bin"
88./gradlew jar
99
1010# check if we can compile a plain Example file that uses the generated Java bindings that should be in the generated jar
11- javac -cp bin/default/build/libs/* jar Example.java
11+ javac -cp " bin/default/build/libs/*" Example.java
1212
1313if [ " $( uname -s) " = ' Linux' ]
1414then
You can’t perform that action at this time.
0 commit comments