From d7b9a197c601f13e11f26a6b35ab67d7c67c1a50 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Wed, 24 Apr 2024 21:47:29 +0900 Subject: [PATCH] Updated Ubuntu to 24.04 --- .github/workflows/images_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/images_build.yml b/.github/workflows/images_build.yml index b383a7189..6dd1368b0 100644 --- a/.github/workflows/images_build.yml +++ b/.github/workflows/images_build.yml @@ -852,9 +852,9 @@ jobs: # Chromium on Alpine is available only on linux/amd64, linux/arm64 platforms if ([ "$MATRIX_OS" == "alpine" ] || [ "$MATRIX_OS" == "centos" ]) && [ "$MATRIX_BUILD" == "web-service" ]; then platform_list="linux/amd64,linux/arm64" - # Chromium on Ubuntu is not available on s390x platform + # Chromium on Ubuntu is not available on s390x and armhf platform elif [ "$MATRIX_OS" == "ubuntu" ] && [ "$MATRIX_BUILD" == "web-service" ]; then - platform_list="linux/amd64,linux/arm/v7,linux/arm64" + platform_list="linux/amd64,linux/arm64" else platform_list=$(jq -r ".[\"os-linux\"].\"$MATRIX_OS\" | join(\",\")" "$MATRIX_FILE") fi