Skip to content

Commit

Permalink
refactor: Updated SDK and Zephyr versions
Browse files Browse the repository at this point in the history
* Move to new versions.
* Switch to xz for SDK releases.
  • Loading branch information
petejohanson committed Nov 14, 2023
1 parent 633f6c6 commit bd53028
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Containers

env:
zephyr-version: 3.2.0
zephyr-sdk-version: 0.15.2
zephyr-version: 3.5.0
zephyr-sdk-version: 0.16.3
sha-abbrev-length: 12
no-cache: ${{ secrets.NO_CACHE != null || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
ignore-actions-cache: ${{ secrets.IGNORE_ACTIONS_CACHE != null }}
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ RUN \
wget \
xz-utils \
&& cd ${TMP} \
&& wget -q "https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${ZEPHYR_SDK_VERSION}/${minimal_sdk_file_name}.tar.gz" \
&& tar xvfz ${minimal_sdk_file_name}.tar.gz \
&& wget -q "https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${ZEPHYR_SDK_VERSION}/${minimal_sdk_file_name}.tar.xz" \
&& tar xvfJ ${minimal_sdk_file_name}.tar.xz \
&& mv zephyr-sdk-${ZEPHYR_SDK_VERSION} /opt/ \
&& rm ${minimal_sdk_file_name}.tar.gz \
&& rm ${minimal_sdk_file_name}.tar.xz \
&& cd /opt/zephyr-sdk-${ZEPHYR_SDK_VERSION} \
&& ./setup.sh -h -c -t ${ARCHITECTURE}${arch_sep}zephyr-${arch_format} \
&& cd \
Expand Down
8 changes: 4 additions & 4 deletions architectures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
- x86_64
- xtensa-espressif_esp32
- xtensa-espressif_esp32s2
- xtensa-intel_apl_adsp
- xtensa-intel_bdw_adsp
- xtensa-intel_byt_adsp
- xtensa-intel_s1000
- xtensa-espressif_esp32s3
- xtensa-intel_tgl_adsp
- xtensa-intel_ace15_mtpm
- xtensa-mtk_mt8195_adsp
- xtensa-nxp_imx8m_adsp
- xtensa-nxp_imx_adsp
- xtensa-sample_controller

0 comments on commit bd53028

Please sign in to comment.