Skip to content

Commit 78c18cf

Browse files
committedFeb 26, 2025
8349399: GHA: Add static-jdk build on linux-x64
Reviewed-by: shade, ihse
1 parent e43960a commit 78c18cf

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 

‎.github/workflows/main.yml

+18
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,24 @@ jobs:
225225
make-arguments: ${{ github.event.inputs.make-arguments }}
226226
if: needs.prepare.outputs.linux-x64-variants == 'true'
227227

228+
build-linux-x64-static:
229+
name: linux-x64-static
230+
needs: prepare
231+
uses: ./.github/workflows/build-linux.yml
232+
with:
233+
platform: linux-x64
234+
make-target: 'static-jdk-image'
235+
# There are issues with fastdebug static build in GHA due to space limit.
236+
# Only do release build for now.
237+
debug-levels: '[ "release" ]'
238+
gcc-major-version: '10'
239+
configure-arguments: ${{ github.event.inputs.configure-arguments }}
240+
make-arguments: ${{ github.event.inputs.make-arguments }}
241+
# It currently doesn't produce any bundles, but probably will do in
242+
# the future.
243+
bundle-suffix: "-static"
244+
if: needs.prepare.outputs.linux-x64 == 'true'
245+
228246
build-linux-x64-static-libs:
229247
name: linux-x64-static-libs
230248
needs: prepare

0 commit comments

Comments
 (0)
Please sign in to comment.