File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,15 +65,15 @@ jobs:
6565 - name : Build native test server (non-Docker)
6666 if : matrix.os_family != 'Linux'
6767 run : |
68- ./gradlew -PnativeBuild :temporal-test-server:nativeBuild
68+ ./gradlew -PnativeBuild :temporal-test-server:nativeCompile
6969
7070 - name : Build native test server (Docker)
7171 if : matrix.os_family == 'Linux'
7272 run : |
7373 docker run \
7474 --rm -w /github/workspace -v "$(pwd):/github/workspace" \
7575 $(docker build -q ./docker/native-image) \
76- sh -c "./gradlew -PnativeBuild :temporal-test-server:nativeBuild "
76+ sh -c "./gradlew -PnativeBuild :temporal-test-server:nativeCompile "
7777 # path ends in a wildcard because on windows the file ends in '.exe'
7878 - name : Upload executable to workflow
7979 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 22# older versions of glibc, specifically glib 2.17.
33FROM ubuntu:18.04
44ENV JAVA_HOME=/usr/lib64/graalvm/graalvm-community-java21
5- COPY --from=ghcr.io/graalvm/jdk -community:21 $JAVA_HOME $JAVA_HOME
5+ COPY --from=ghcr.io/graalvm/native-image -community:21 $JAVA_HOME $JAVA_HOME
66ENV PATH="${JAVA_HOME}/bin:${PATH}"
77RUN apt-get update
88RUN apt-get install -y git build-essential zlib1g-dev
You can’t perform that action at this time.
0 commit comments