Skip to content

Commit

Permalink
Fix used configure option for runtime image JDK
Browse files Browse the repository at this point in the history
  • Loading branch information
jerboaa committed Nov 6, 2024
1 parent eeaf372 commit 8a0d533
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
gcc-major-version: '10'
configure-arguments: ${{ github.event.inputs.configure-arguments }}
make-arguments: ${{ github.event.inputs.make-arguments }}
extra-conf-options: '--enable-runtime-link-image --enable-keep-packaged-modules'
extra-conf-options: '--enable-linkable-runtime --enable-keep-packaged-modules'
if: needs.prepare.outputs.linux-x64 == 'true'

build-linux-x86-hs:
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
runs-on: 'macos-13'
xcode-toolset-version: '14.3.1'
configure-arguments: ${{ github.event.inputs.configure-arguments }}
extra-conf-options: '--enable-runtime-link-image --enable-keep-packaged-modules'
extra-conf-options: '--enable-linkable-runtime --enable-keep-packaged-modules'
make-arguments: ${{ github.event.inputs.make-arguments }}
if: needs.prepare.outputs.macos-x64 == 'true'

Expand All @@ -288,7 +288,7 @@ jobs:
runs-on: 'macos-14'
xcode-toolset-version: '14.3.1'
configure-arguments: ${{ github.event.inputs.configure-arguments }}
extra-conf-options: '--enable-runtime-link-image --enable-keep-packaged-modules'
extra-conf-options: '--enable-linkable-runtime --enable-keep-packaged-modules'
make-arguments: ${{ github.event.inputs.make-arguments }}
if: needs.prepare.outputs.macos-aarch64 == 'true'

Expand All @@ -301,7 +301,7 @@ jobs:
msvc-toolset-version: '14.29'
msvc-toolset-architecture: 'x86.x64'
configure-arguments: ${{ github.event.inputs.configure-arguments }}
extra-conf-options: '--enable-runtime-link-image --enable-keep-packaged-modules'
extra-conf-options: '--enable-linkable-runtime --enable-keep-packaged-modules'
make-arguments: ${{ github.event.inputs.make-arguments }}
if: needs.prepare.outputs.windows-x64 == 'true'

Expand Down

0 comments on commit 8a0d533

Please sign in to comment.