File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments