From 0f7f6526af06082df9a24975b91c85ac2bcddc5f Mon Sep 17 00:00:00 2001 From: Andrew John Hughes Date: Wed, 1 Feb 2023 17:04:42 +0000 Subject: [PATCH 1/3] 8301631: [8u] Enable full builds for additional Linux builds --- .github/workflows/submit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/submit.yml b/.github/workflows/submit.yml index 41d6d79fc2b..e124f810764 100644 --- a/.github/workflows/submit.yml +++ b/.github/workflows/submit.yml @@ -441,7 +441,7 @@ jobs: run: > ${{ env.cross_conf_env }} bash configure - --with-conf-name=linux-${{ matrix.gnu-arch }}-hotspot + --with-conf-name=linux-${{ matrix.gnu-arch }} ${{ matrix.flags }} ${{ env.cross_flags }} --with-user-release-suffix=${GITHUB_ACTOR}-${GITHUB_SHA} @@ -452,7 +452,7 @@ jobs: working-directory: jdk - name: Build - run: make CONF_NAME=linux-${{ matrix.gnu-arch }}-hotspot hotspot + run: make CONF_NAME=linux-${{ matrix.gnu-arch }} LOG_LEVEL=debug images working-directory: jdk linux_x86_build: From d2a97689096e6ac35128afc55771631335bd77c6 Mon Sep 17 00:00:00 2001 From: Andrew John Hughes Date: Mon, 6 Feb 2023 15:41:49 +0000 Subject: [PATCH 2/3] Try without --disable-headful --- .github/workflows/submit.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/submit.yml b/.github/workflows/submit.yml index e124f810764..fe59706034d 100644 --- a/.github/workflows/submit.yml +++ b/.github/workflows/submit.yml @@ -447,7 +447,6 @@ jobs: --with-user-release-suffix=${GITHUB_ACTOR}-${GITHUB_SHA} --with-build-number=b00 --with-boot-jdk=${BOOT_JDK} - --disable-headful --with-zlib=bundled working-directory: jdk From 71f1d837e461a0ed6fb40ca1f7731f5937a4e633 Mon Sep 17 00:00:00 2001 From: Andrew Hughes Date: Fri, 29 Aug 2025 23:30:57 +0100 Subject: [PATCH 3/3] Remove all instances of -hotspot --- .github/workflows/submit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/submit.yml b/.github/workflows/submit.yml index bc6ebb32379..fd5b120d31e 100644 --- a/.github/workflows/submit.yml +++ b/.github/workflows/submit.yml @@ -456,8 +456,8 @@ jobs: - name: Build run: | - cat build/linux-${{ matrix.gnu-arch }}-hotspot/spec.gmk - cat build/linux-${{ matrix.gnu-arch }}-hotspot/hotspot-spec.gmk + cat build/linux-${{ matrix.gnu-arch }}/spec.gmk + cat build/linux-${{ matrix.gnu-arch }}/hotspot-spec.gmk make CONF_NAME=linux-${{ matrix.gnu-arch }} LOG_LEVEL=debug images working-directory: jdk