From eceda2ffef336481a528de5218675e551040b101 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Sun, 11 Feb 2024 00:28:09 +0900 Subject: [PATCH] Prepare universal workflow --- .github/workflows/images_build_rhel.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/images_build_rhel.yml b/.github/workflows/images_build_rhel.yml index 5e19edd49..b3d7b97c6 100644 --- a/.github/workflows/images_build_rhel.yml +++ b/.github/workflows/images_build_rhel.yml @@ -250,13 +250,13 @@ jobs: build_images: timeout-minutes: 90 needs: [ "build_base_database", "init_build"] - name: Build ${{ matrix.build }} image + name: Build ${{ matrix.build }} image (${{ matrix.arch }}) strategy: fail-fast: false matrix: build: ${{ fromJson(needs.init_build.outputs.components) }} - - runs-on: [self-hosted, linux, X64] + arch: [X64, ARM64] + runs-on: [self-hosted, linux, "${{ matrix.arch }}"] steps: - uses: actions/checkout@v4