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
1 change: 1 addition & 0 deletions .github/workflows/build-and-publish-ncs-zephyr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- ncs_version: "v2.9.0"
- ncs_version: "v3.0.0"
- ncs_version: "v3.0.1"
- ncs_version: "v3.0.2"

steps:
- name: Checkout repository
Expand Down
6 changes: 6 additions & 0 deletions ncs-zephyr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,12 @@ RUN echo "if [ -f /etc/bash_completion ]; then" >> ~/.bashrc && \
echo " . /etc/bash_completion" >> ~/.bashrc && \
echo "fi" >> ~/.bashrc

# Fix GDB-PY not working
# We tell GDB to ignore $PYTHONPATH and $PYTHONHOME environment variables
# as they are set to point into the nrfutil toolchain.
# We need GDB-PY to use the system python3.10 and the system python libs
# (Python3.10 is the default python version in Ubuntu 22.04).
RUN echo "set python ignore-environment on" > ~/.gdbearlyinit

#############
# ZSH image #
Expand Down
2 changes: 1 addition & 1 deletion ncs-zephyr/build_ci.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env bash
NCS_SDK_VERSION=v2.7.0
NCS_SDK_VERSION=v3.0.2

docker build \
--build-arg "NCS_SDK_VERSION=$NCS_SDK_VERSION" \
Expand Down
2 changes: 1 addition & 1 deletion ncs-zephyr/build_dev.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env bash
NCS_SDK_VERSION=v2.7.0
NCS_SDK_VERSION=v3.0.2

docker build \
--build-arg "NCS_SDK_VERSION=$NCS_SDK_VERSION" \
Expand Down
2 changes: 1 addition & 1 deletion ncs-zephyr/build_zsh.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env bash
NCS_SDK_VERSION=v2.7.0
NCS_SDK_VERSION=v3.0.2

docker build \
--build-arg "NCS_SDK_VERSION=$NCS_SDK_VERSION" \
Expand Down
2 changes: 1 addition & 1 deletion ncs-zephyr/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ docker run -it --rm \
--publish 8080:8080 \
--publish 8081:8081 \
--publish 8090:8090 \
irnas/ncs-zephyr-v2.7.0-zsh:latest
irnas/ncs-zephyr-v3.0.2-dev:latest