diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94f5ba6..81c94a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,9 +31,10 @@ jobs: - platform: linux/amd64 arch: amd64 builder: zephyr-runner-linux-x64-4xlarge - - platform: linux/arm64 - arch: arm64 - builder: zephyr-runner-linux-arm64-4xlarge + # NOTE: arm64 build is temporarily disabled due to CI runner issues. + # - platform: linux/arm64 + # arch: arm64 + # builder: zephyr-runner-linux-arm64-4xlarge services: registry: @@ -252,7 +253,7 @@ jobs: - name: Create multi-architecture image run: | - archs=(amd64 arm64) + archs=(amd64) # (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 }}" diff --git a/Dockerfile.ci b/Dockerfile.ci index 665baa8..d9821c5 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -3,7 +3,7 @@ ARG BASE_IMAGE FROM ${BASE_IMAGE:-zephyrprojectrtos/ci-base:latest} -ARG ZSDK_VERSION=0.16.4 +ARG ZSDK_VERSION=0.16.5 ENV ZSDK_VERSION=$ZSDK_VERSION ARG DOXYGEN_VERSION=1.9.4 ENV DOXYGEN_VERSION=$DOXYGEN_VERSION