From db37cd06ba1d8e305eef7619610ac051bf1a4b21 Mon Sep 17 00:00:00 2001 From: nm17 Date: Sun, 9 Mar 2025 19:55:40 +0400 Subject: [PATCH] ci: ok nvm then --- Dockerfile.openj9 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.openj9 b/Dockerfile.openj9 index 02e0425..bfbe971 100644 --- a/Dockerfile.openj9 +++ b/Dockerfile.openj9 @@ -5,7 +5,7 @@ FROM ubuntu:25.04 AS build RUN apt update \ && apt upgrade -y \ && apt install -qq -y --no-install-recommends \ - ant ant-contrib autoconf build-essential ca-certificates cmake cpio curl file clang-19 gdb git \ + ant ant-contrib autoconf build-essential ca-certificates cmake cpio curl file gcc-14 g++-14 gdb git \ libasound2-dev libcups2-dev libdwarf-dev libelf-dev libexpat1-dev libffi-dev libfontconfig libfontconfig1-dev \ libfreetype6-dev libnuma-dev libssl-dev libx11-dev libxext-dev libxrandr-dev libxrender-dev libxt-dev libxtst-dev \ make nasm pkg-config python3 python3-dev rsync systemtap-sdt-dev unzip wget xvfb zip zlib1g-dev execstack \ @@ -27,7 +27,7 @@ RUN git clone --single-branch --depth 1 \ WORKDIR /build/src RUN bash get_source.sh -RUN bash configure --with-boot-jdk=/build/bootjdk --with-openssl=system --with-extra-ldflags="-Wl,-z,noexecstack" CC=clang-19 CXX=clang++-19 +RUN bash configure --with-boot-jdk=/build/bootjdk --with-openssl=system --with-extra-ldflags="-Wl,-z,noexecstack" RUN make all JOBS=$(nproc) RUN make test JOBS=$(nproc)