Skip to content
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
12 changes: 5 additions & 7 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
python3-tk \
python3-wheel \
python3-venv \
xz-utils file \
xz-utils \
file \
make \
gcc \
gcc-multilib \
Expand All @@ -83,9 +84,9 @@ jobs:
# only for the arm-zephyr-eabi (Cortex-M) architecture, since we don't
# need the other toolchains (xtensa, riscv, etc.)
run: |
wget -q https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.0/zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz
tar xf zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz -C ~/
~/zephyr-sdk-0.17.0/setup.sh -c -t arm-zephyr-eabi
wget -q https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/zephyr-sdk-0.17.2_linux-x86_64_minimal.tar.xz
tar xf zephyr-sdk-0.17.2_linux-x86_64_minimal.tar.xz -C ~/
~/zephyr-sdk-0.17.2/setup.sh -c -t arm-zephyr-eabi

- name: 📂 Cloning Triggered Repository/Branch
run: |
Expand All @@ -111,9 +112,6 @@ jobs:
if: always()
run: |
cd zephyr-workspace
find='.dt_size\s=\sDT_REG_SIZE(DT_PARENT(node_id))}'
replace='.dt_size = DT_REG_SIZE(DT_PARENT(node_id))},'
sed -i "s/$find/$replace/g" zephyr/drivers/retained_mem/retained_mem_nrf_ram_ctrl.c
sudo rm -rf Releases
mkdir Releases
sudo rm -rf ${{ github.event.repository.name }}/build
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ manifest:
- name: sdk-nrf
path: nrf
url: https://github.com/nrfconnect/sdk-nrf.git
revision: v2.9-branch
revision: v3.0-branch
import: true
Loading