actually run tests
Some checks failed
Docker Image CI / build-and-push (map[context:./ dockerfile:Dockerfile.piped image_name:piped]) (pull_request) Failing after 6s
Docker Image CI / build-and-push (map[context:./ dockerfile:Dockerfile.openj9 image_name:openj9]) (pull_request) Failing after 8s

This commit is contained in:
DarkCat09 2025-03-12 17:56:00 +04:00
parent 404dec0f40
commit a3d42c2600
Signed by: DarkCat09
SSH key fingerprint: SHA256:SnH1iYY/ogxxRmt1I6piy+aVUUzrOWvfksQWfhZ8JUM

View file

@ -58,19 +58,18 @@ ENV TEST_JDK_HOME=/build/src/build/linux-x86_64-server-release/images/jdk
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 --single-branch --depth=1 https://github.com/eclipse-openj9/openj9.git /build/test
RUN cd /build/openj9-repo/test \
&& git clone https://github.com/adoptium/TKG.git \
&& cd TKG \
&& make compile -j$(nproc) \
&& make _sanity.openjdk.regular -j$(nproc)
WORKDIR /test
RUN git clone https://github.com/adoptium/TKG.git .
RUN make compile -j$(nproc)
RUN make _all
WORKDIR /build/src/build/linux-x86_64-server-release/images
RUN mv ./* /build/dist/
# ------
FROM ubuntu:25.04 AS run