Skip to content

Commit

Permalink
ci: fix debug flag assertion for mkosi image-debug
Browse files Browse the repository at this point in the history
The CI wasn't building debug images, due string/bool mismatch.

Signed-off-by: Magnus Kulke <[email protected]>
  • Loading branch information
mkulke committed Dec 20, 2024
1 parent f72ba03 commit c0c9f4c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/podvm_mkosi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ jobs:
with:
version: ${{ env.ORAS_VERSION }}


- name: Build binaries
id: build_binaries
working-directory: src/cloud-api-adaptor/podvm-mkosi
Expand All @@ -150,12 +149,12 @@ jobs:
run: nix build .#devShells.x86_64-linux.podvm-mkosi

- name: Build mkosi debug image
if: ${{ inputs.debug == 'true' }}
if: ${{ inputs.debug == true }}
working-directory: src/cloud-api-adaptor/podvm-mkosi
run: make image-debug

- name: Build mkosi image
if: ${{ inputs.debug != 'true' }}
if: ${{ inputs.debug != true }}
working-directory: src/cloud-api-adaptor/podvm-mkosi
run: make image

Expand Down

0 comments on commit c0c9f4c

Please sign in to comment.