Fix verifications by using updated arm package names (#13601)
Co-authored-by: alex <8968914+acpana@users.noreply.github.com>
This commit is contained in:
parent
2dba16be52
commit
7353ca9eb5
|
@ -73,7 +73,7 @@ function verify_rpm {
|
||||||
docker_platform="linux/amd64"
|
docker_platform="linux/amd64"
|
||||||
docker_image="amd64/centos:7"
|
docker_image="amd64/centos:7"
|
||||||
;;
|
;;
|
||||||
*.arm.rpm)
|
*.armv7hl.rpm)
|
||||||
docker_platform="linux/arm/v7"
|
docker_platform="linux/arm/v7"
|
||||||
docker_image="arm32v7/fedora:36"
|
docker_image="arm32v7/fedora:36"
|
||||||
;;
|
;;
|
||||||
|
@ -120,7 +120,7 @@ function verify_deb {
|
||||||
docker_platform="linux/amd64"
|
docker_platform="linux/amd64"
|
||||||
docker_image="amd64/debian:bullseye"
|
docker_image="amd64/debian:bullseye"
|
||||||
;;
|
;;
|
||||||
*_arm.deb)
|
*_armhf.deb)
|
||||||
docker_platform="linux/arm/v7"
|
docker_platform="linux/arm/v7"
|
||||||
docker_image="arm32v7/debian:bullseye"
|
docker_image="arm32v7/debian:bullseye"
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -339,7 +339,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: ["i386", "amd64", "arm", "arm64"]
|
arch: ["i386", "amd64", "armhf", "arm64"]
|
||||||
# fail-fast: true
|
# fail-fast: true
|
||||||
env:
|
env:
|
||||||
version: ${{ needs.get-product-version.outputs.product-version }}
|
version: ${{ needs.get-product-version.outputs.product-version }}
|
||||||
|
@ -376,7 +376,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: ["i386", "x86_64", "arm", "aarch64"]
|
arch: ["i386", "x86_64", "armv7hl", "aarch64"]
|
||||||
# fail-fast: true
|
# fail-fast: true
|
||||||
env:
|
env:
|
||||||
version: ${{ needs.get-product-version.outputs.product-version }}
|
version: ${{ needs.get-product-version.outputs.product-version }}
|
||||||
|
|
Loading…
Reference in New Issue