generate_board_targets: use current version of each container

to consistently use container versions and fix the beaglebone build
in metadata deployment CI.
This commit is contained in:
Matthias Grob 2023-07-18 19:24:33 +02:00 committed by Ramon Roche
parent 013856fac1
commit 39ab1f5809
1 changed files with 3 additions and 3 deletions

View File

@ -65,13 +65,13 @@ def process_target(px4board_file, target_name):
container = 'px4io/px4-dev-base-focal:2021-09-08'
if toolchain:
if toolchain.startswith('aarch64'):
container = 'px4io/px4-dev-aarch64:2021-09-08'
container = 'px4io/px4-dev-aarch64:2022-08-12'
elif toolchain == 'arm-linux-gnueabihf':
container = 'px4io/px4-dev-armhf:2021-09-08'
container = 'px4io/px4-dev-armhf:2023-06-26'
else:
if verbose: print(f'unmatched toolchain: {toolchain}')
elif platform == 'nuttx':
container = 'px4io/px4-dev-nuttx-focal:2021-09-08'
container = 'px4io/px4-dev-nuttx-focal:2022-08-12'
else:
if verbose: print(f'unmatched platform: {platform}')