Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

feat: add support for nRF Connect SDK v2.8 #106

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 5 additions & 1 deletion .github/workflows/publish-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ jobs:
matrix:
include:
- sdk_nrf_branch: main
toolchain_version: v2.7.0
toolchain_version: v2.8.0
native_board: native_sim

- sdk_nrf_branch: v2.8-branch
toolchain_version: v2.8.0
native_board: native_sim

- sdk_nrf_branch: v2.7-branch
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ jobs:
matrix:
include:
- sdk_nrf_branch: main
toolchain_version: v2.7.0
toolchain_version: v2.8.0
native_board: native_sim

- sdk_nrf_branch: v2.8-branch
toolchain_version: v2.8.0
native_board: native_sim

- sdk_nrf_branch: v2.7-branch
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04 as base
WORKDIR /workdir

ARG sdk_nrf_branch=v2.7-branch
ARG sdk_nrf_branch=v2.8-branch
ARG toolchain_version=v2.7.0
ARG sdk_nrf_commit
ARG NORDIC_COMMAND_LINE_TOOLS_VERSION="10-24-0/nrf-command-line-tools-10.24.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Build the image (this is only needed once):

```bash
cd nrf-docker
docker build -t nrfconnect-sdk --build-arg sdk_nrf_version=v2.7-branch .
docker build -t nrfconnect-sdk --build-arg sdk_nrf_version=v2.8-branch .
```

> [!NOTE]
Expand Down Expand Up @@ -101,7 +101,7 @@ docker run --rm -v ${PWD}:/workdir/project \
# build docker image
git clone https://github.com/NordicPlayground/nrf-docker
cd nrf-docker
docker build -t nrfconnect-sdk --build-arg sdk_nrf_version=v2.7-branch .
docker build -t nrfconnect-sdk --build-arg sdk_nrf_version=v2.8-branch .
cd ..
```

Expand Down
Loading