Skip to content

Commit

Permalink
8349399: GHA: Add static-jdk build on linux-x64
Browse files Browse the repository at this point in the history
Reviewed-by: shade, ihse
  • Loading branch information
jianglizhou committed Feb 26, 2025
1 parent e43960a commit 78c18cf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,24 @@ jobs:
make-arguments: ${{ github.event.inputs.make-arguments }}
if: needs.prepare.outputs.linux-x64-variants == 'true'

build-linux-x64-static:
name: linux-x64-static
needs: prepare
uses: ./.github/workflows/build-linux.yml
with:
platform: linux-x64
make-target: 'static-jdk-image'
# There are issues with fastdebug static build in GHA due to space limit.
# Only do release build for now.
debug-levels: '[ "release" ]'
gcc-major-version: '10'
configure-arguments: ${{ github.event.inputs.configure-arguments }}
make-arguments: ${{ github.event.inputs.make-arguments }}
# It currently doesn't produce any bundles, but probably will do in
# the future.
bundle-suffix: "-static"
if: needs.prepare.outputs.linux-x64 == 'true'

build-linux-x64-static-libs:
name: linux-x64-static-libs
needs: prepare
Expand Down

0 comments on commit 78c18cf

Please sign in to comment.