@@ -86,10 +86,37 @@ jobs:
8686 gcc-major-version : ' 10'
8787 configure-arguments : ${{ github.event.inputs.configure-arguments }}
8888 make-arguments : ${{ github.event.inputs.make-arguments }}
89+ <<<<<<< HEAD
8990 extra-conf-options : --with-default-make-target="product-bundles test-bundles" --with-jvm-features=shenandoahgc
9091 make-target : CONF_NAME=linux-aarch64
9192 runs-on : ' ["self-hosted", "ARM64"]'
9293 if : needs.prerequisites.outputs.should_run != 'false' && needs.prerequisites.outputs.platform_linux_aarch64 != 'false'
94+ =======
95+ if : needs.select.outputs.linux-cross-compile == 'true'
96+
97+ build-macos-x64 :
98+ name : macos-x64
99+ needs : select
100+ uses : ./.github/workflows/build-macos.yml
101+ with :
102+ platform : macos-x64
103+ xcode-toolset-version : ' 16.4'
104+ configure-arguments : ${{ github.event.inputs.configure-arguments }}
105+ make-arguments : ${{ github.event.inputs.make-arguments }}
106+ if : needs.select.outputs.macos-x64 == 'true'
107+
108+ build-macos-aarch64 :
109+ name : macos-aarch64
110+ needs : select
111+ uses : ./.github/workflows/build-macos.yml
112+ with :
113+ platform : macos-aarch64
114+ xcode-toolset-version : ' 16.4'
115+ extra-conf-options : ' --openjdk-target=aarch64-apple-darwin'
116+ configure-arguments : ${{ github.event.inputs.configure-arguments }}
117+ make-arguments : ${{ github.event.inputs.make-arguments }}
118+ if : needs.select.outputs.macos-aarch64 == 'true'
119+ >>>>>>> merge_repo/master
93120
94121 build-windows-x64 :
95122 name : windows-x64
@@ -138,9 +165,25 @@ jobs:
138165 - build-linux-aarch64
139166 uses : ./.github/workflows/test.yml
140167 with :
168+ <<<<<<< HEAD
141169 platform : linux-aarch64
142170 bootjdk-platform : linux-aarch64
143171 runs-on : ' ["self-hosted", "ARM64"]'
172+ =======
173+ platform : linux-x86
174+ bootjdk-platform : linux-x64
175+ runs-on : ubuntu-22.04
176+
177+ test-macos-x64 :
178+ name : macos-x64
179+ needs :
180+ - build-macos-x64
181+ uses : ./.github/workflows/test.yml
182+ with :
183+ platform : macos-x64
184+ bootjdk-platform : macos-x64
185+ runs-on : macos-15-intel
186+ >>>>>>> merge_repo/master
144187
145188 test-windows-x64 :
146189 name : windows-x64
@@ -152,6 +195,7 @@ jobs:
152195 bootjdk-platform : windows-x64
153196 runs-on : ' "windows-2025"'
154197
198+ <<<<<<< HEAD
155199 # Remove bundles so they are not misconstrued as binary distributions from the JDK project
156200 remove-bundles :
157201 name : ' Remove bundle artifacts'
@@ -186,3 +230,5 @@ jobs:
186230 "${{ github.api_url }}/repos/${{ github.repository }}/actions/artifacts/$id" \
187231 || echo "Failed to remove bundle"
188232 done
233+ =======
234+ >>>>>>> merge_repo/master
0 commit comments