Compare commits

..

1 commit

Author SHA1 Message Date
71ec6eb0b7
ci: add --with-jtreg
Some checks failed
Docker Image CI / build-and-push (map[context:./ dockerfile:Dockerfile.openj9 image_name:openj9]) (pull_request) Failing after 11s
Docker Image CI / build-and-push (map[context:./ dockerfile:Dockerfile.piped image_name:piped]) (pull_request) Failing after 9s
2025-03-09 20:55:25 +04:00

View file

@ -35,7 +35,6 @@ RUN bash get_source.sh
RUN bash configure --with-jtreg=/build/jtreg --with-boot-jdk=/build/bootjdk --with-openssl=system --with-extra-ldflags="-Wl,-z,noexecstack"
RUN make all JOBS=$(nproc)
RUN make test TEST=tier2 JOBS=$(nproc)
# jlink by advice from https://adoptium.net/blog/2021/10/jlink-to-produce-own-runtime/
WORKDIR /build/src/build/linux-x86_64-server-release/images
@ -52,6 +51,14 @@ openj9.sharedclasses,openj9.zosconditionhandling
RUN mv ./* /build/dist/
ENV JAVA_HOME=/build/dist/jre
ENV PATH="$JAVA_HOME/bin:$PATH"
WORKDIR /build/src
RUN make test TEST=tier1 JOBS=$(nproc)
# ------