ci: fix linux/amd64 static pipeline

This commit is contained in:
Kévin Dunglas
2024-04-24 16:27:30 +02:00
parent 5d68a3c5e5
commit ac2dd4ab56

View File

@@ -74,6 +74,7 @@ jobs:
matrix:
platform: ${{ fromJson(needs.prepare.outputs.platforms) }}
debug: [false]
mimalloc: [false]
include:
-
qemu: true
@@ -121,7 +122,7 @@ jobs:
uses: docker/bake-action@v4
with:
pull: true
load: ${{ (!fromJson(needs.prepare.outputs.push) || matrix.debug || matrix.mimalloc) && true || false }}
load: ${{ !fromJson(needs.prepare.outputs.push) || matrix.debug || matrix.mimalloc }}
targets: static-builder
set: |
${{ matrix.debug && 'static-builder.args.DEBUG_SYMBOLS=1' || '' }}