Skip to content

Commit

Permalink
feat: add support for nRF Connect SDK v2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Oct 9, 2024
1 parent 4bb76da commit aacca2a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
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

0 comments on commit aacca2a

Please sign in to comment.