Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Update to Zephyr SDK 0.16.5 #171

Merged
merged 2 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading