Skip to content

Commit

Permalink
Fix x86 docker image builds (#2119)
Browse files Browse the repository at this point in the history
* fix: skip the test service when building in CI
  • Loading branch information
nicomiguelino authored Nov 7, 2024
1 parent 48013b8 commit 388f9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/image_builder/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def build_image(
**context,
})

if service == 'test' and board in ['pi1', 'pi2', 'pi3', 'pi4']:
if service == 'test':
click.secho(f'Skipping test service for {board}...', fg='yellow')
return

Expand Down

0 comments on commit 388f9c2

Please sign in to comment.