From 540a6df90f863336e274ae0a338058279f573be4 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Mon, 19 Feb 2024 17:46:46 +0900 Subject: [PATCH] Revert ".github: workflows: Disable ARM64 image build" This reverts commit f375452dcc76044e58685d35c663957de694022e because the Zephyr SDK 0.16.5-1 release includes AArch64 build. Signed-off-by: Stephanos Ioannidis --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81c94a5..94f5ba6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,10 +31,9 @@ jobs: - platform: linux/amd64 arch: amd64 builder: zephyr-runner-linux-x64-4xlarge - # NOTE: arm64 build is temporarily disabled due to CI runner issues. - # - platform: linux/arm64 - # arch: arm64 - # builder: zephyr-runner-linux-arm64-4xlarge + - platform: linux/arm64 + arch: arm64 + builder: zephyr-runner-linux-arm64-4xlarge services: registry: @@ -253,7 +252,7 @@ jobs: - name: Create multi-architecture image run: | - archs=(amd64) # (amd64 arm64) + archs=(amd64 arm64) ci_base_image="ghcr.io/zephyrproject-rtos/ci-base:${{ steps.meta_ci_base_push.outputs.version }}" ci_image="ghcr.io/zephyrproject-rtos/ci:${{ steps.meta_ci_push.outputs.version }}" developer_image="ghcr.io/zephyrproject-rtos/zephyr-build:${{ steps.meta_developer_push.outputs.version }}"