199 configure-arguments: ${{ github.event.inputs.configure-arguments }}
200 make-arguments: ${{ github.event.inputs.make-arguments }}
201 dry-run: ${{ needs.prepare.outputs.dry-run == 'true' }}
202 if: needs.prepare.outputs.linux-x64 == 'true'
203
204 build-linux-x64-hs-nopch:
205 name: linux-x64-hs-nopch
206 needs: prepare
207 uses: ./.github/workflows/build-linux.yml
208 with:
209 platform: linux-x64
210 make-target: 'hotspot'
211 debug-levels: '[ "debug" ]'
212 gcc-major-version: '10'
213 extra-conf-options: '--disable-precompiled-headers'
214 configure-arguments: ${{ github.event.inputs.configure-arguments }}
215 make-arguments: ${{ github.event.inputs.make-arguments }}
216 dry-run: ${{ needs.prepare.outputs.dry-run == 'true' }}
217 if: needs.prepare.outputs.linux-x64-variants == 'true'
218
219 build-linux-x64-hs-zero:
220 name: linux-x64-hs-zero
221 needs: prepare
222 uses: ./.github/workflows/build-linux.yml
223 with:
224 platform: linux-x64
225 make-target: 'hotspot'
226 debug-levels: '[ "debug" ]'
227 gcc-major-version: '10'
228 extra-conf-options: '--with-jvm-variants=zero --disable-precompiled-headers'
229 configure-arguments: ${{ github.event.inputs.configure-arguments }}
230 make-arguments: ${{ github.event.inputs.make-arguments }}
231 dry-run: ${{ needs.prepare.outputs.dry-run == 'true' }}
232 if: needs.prepare.outputs.linux-x64-variants == 'true'
233
234 build-linux-x64-hs-minimal:
235 name: linux-x64-hs-minimal
236 needs: prepare
237 uses: ./.github/workflows/build-linux.yml
238 with:
239 platform: linux-x64
240 make-target: 'hotspot'
241 debug-levels: '[ "debug" ]'
242 gcc-major-version: '10'
243 extra-conf-options: '--with-jvm-variants=minimal --disable-precompiled-headers'
244 configure-arguments: ${{ github.event.inputs.configure-arguments }}
245 make-arguments: ${{ github.event.inputs.make-arguments }}
246 dry-run: ${{ needs.prepare.outputs.dry-run == 'true' }}
247 if: needs.prepare.outputs.linux-x64-variants == 'true'
248
249 build-linux-x64-hs-optimized:
250 name: linux-x64-hs-optimized
251 needs: prepare
252 uses: ./.github/workflows/build-linux.yml
|
199 configure-arguments: ${{ github.event.inputs.configure-arguments }}
200 make-arguments: ${{ github.event.inputs.make-arguments }}
201 dry-run: ${{ needs.prepare.outputs.dry-run == 'true' }}
202 if: needs.prepare.outputs.linux-x64 == 'true'
203
204 build-linux-x64-hs-nopch:
205 name: linux-x64-hs-nopch
206 needs: prepare
207 uses: ./.github/workflows/build-linux.yml
208 with:
209 platform: linux-x64
210 make-target: 'hotspot'
211 debug-levels: '[ "debug" ]'
212 gcc-major-version: '10'
213 extra-conf-options: '--disable-precompiled-headers'
214 configure-arguments: ${{ github.event.inputs.configure-arguments }}
215 make-arguments: ${{ github.event.inputs.make-arguments }}
216 dry-run: ${{ needs.prepare.outputs.dry-run == 'true' }}
217 if: needs.prepare.outputs.linux-x64-variants == 'true'
218
219 # build-linux-x64-hs-zero:
220 # name: linux-x64-hs-zero
221 # needs: prepare
222 # uses: ./.github/workflows/build-linux.yml
223 # with:
224 # platform: linux-x64
225 # make-target: 'hotspot'
226 # debug-levels: '[ "debug" ]'
227 # gcc-major-version: '10'
228 # extra-conf-options: '--with-jvm-variants=zero --disable-precompiled-headers'
229 # configure-arguments: ${{ github.event.inputs.configure-arguments }}
230 # make-arguments: ${{ github.event.inputs.make-arguments }}
231 # dry-run: ${{ needs.prepare.outputs.dry-run == 'true' }}
232 # if: needs.prepare.outputs.linux-x64-variants == 'true'
233
234 build-linux-x64-hs-minimal:
235 name: linux-x64-hs-minimal
236 needs: prepare
237 uses: ./.github/workflows/build-linux.yml
238 with:
239 platform: linux-x64
240 make-target: 'hotspot'
241 debug-levels: '[ "debug" ]'
242 gcc-major-version: '10'
243 extra-conf-options: '--with-jvm-variants=minimal --disable-precompiled-headers'
244 configure-arguments: ${{ github.event.inputs.configure-arguments }}
245 make-arguments: ${{ github.event.inputs.make-arguments }}
246 dry-run: ${{ needs.prepare.outputs.dry-run == 'true' }}
247 if: needs.prepare.outputs.linux-x64-variants == 'true'
248
249 build-linux-x64-hs-optimized:
250 name: linux-x64-hs-optimized
251 needs: prepare
252 uses: ./.github/workflows/build-linux.yml
|