Compare commits

..

1 commit

Author SHA1 Message Date
9c0f30214e
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 6s
Docker Image CI / build-and-push (map[context:./ dockerfile:Dockerfile.piped image_name:piped]) (pull_request) Failing after 5s
2025-03-09 22:37:37 +04:00

View file

@ -56,14 +56,15 @@ ENV JAVA_HOME=/build/src/build/linux-x86_64-server-release/images/jre
ENV PATH="$JAVA_HOME/bin:$JAVA_HOME/lib:$PATH" ENV PATH="$JAVA_HOME/bin:$JAVA_HOME/lib:$PATH"
ENV TEST_JDK_HOME=/build/src/build/linux-x86_64-server-release/images/jdk ENV TEST_JDK_HOME=/build/src/build/linux-x86_64-server-release/images/jdk
ENV TEST_ROOT=/build/openj9-repo/test ENV TEST_ROOT=/build/openj9-repo/test
ENV DIAGNOSTICLEVEL=nodetails
RUN git clone --depth=1 https://github.com/eclipse-openj9/openj9.git /build/openj9-repo RUN git clone --depth=1 https://github.com/eclipse-openj9/openj9.git /build/openj9-repo
RUN cd /build/openj9-repo/test \ RUN cd /build/openj9-repo/test \
&& git clone https://github.com/adoptium/TKG.git \ && git clone https://github.com/adoptium/TKG.git \
&& cd TKG \ && cd TKG \
&& make compile JOBS=$(nproc) \ && make compile -j$(nproc) \
&& make _sanity.functional.regular JOBS=$(nproc) && make _sanity.functional.regular -j$(nproc)
WORKDIR /build/src/build/linux-x86_64-server-release/images WORKDIR /build/src/build/linux-x86_64-server-release/images