Skip to content

Commit

Permalink
Update zephyr-sdk, build ci-base, & include paths
Browse files Browse the repository at this point in the history
  • Loading branch information
bandogora committed May 15, 2024
1 parent 0009b32 commit 44e1db4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: ubuntu-latest
env:
ZEPHYR_SDK_INSTALL_PATH: /opt/toolchains
ZSDK_VERSION: 0.16.5
ZSDK_VERSION: 0.16.6
container:
image: ghcr.io/zephyrproject-rtos/ci-base:v0.26.7
image: ghcr.io/zephyrproject-rtos/ci-base:v0.26.12
env:
ZEPHYR_TOOLCHAIN_VARIANT: zephyr
ZEPHYR_SDK_INSTALL_DIR: ${ZEPHYR_SDK_INSTALL_PATH}/zephyr-sdk-${ZSDK_VERSION}
Expand All @@ -27,6 +27,7 @@ jobs:
- name: Git checkout
uses: actions/checkout@v4

## The ci-base image now takes care of this, but doesn't allow minimal install ##
- name: Make ZEPHYR_SDK_INSTALL_PATH
run: mkdir -p ${ZEPHYR_SDK_INSTALL_PATH}

Expand Down
10 changes: 8 additions & 2 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
{
"name": "Linux",
"includePath": [
"${workspaceRoot}/**",
"${HOME}.local/zephyr-sdk-0.16.1/arm-zephyr-eabi/arm-zephyr-eabi/include/*"
"${workspaceFolder}",
"${workspaceFolder}/app/**",
"${workspaceFolder}/nrf/include/**",
"${workspaceFolder}/modules/hal/nordic/nrfx/nrfx.h",
"${workspaceFolder}/zephyr/include/zephyr/**",
"${workspaceFolder}/zephyr/include/**",
"${workspaceFolder}/zephyr/arch/arm/include/**",
"${HOME}.local/zephyr-sdk-0.16.*/arm-zephyr-eabi/arm-zephyr-eabi/include/*"
],
"defines": [],
"compilerPath": "${workspaceRoot}/.venv/bin/west",
Expand Down

0 comments on commit 44e1db4

Please sign in to comment.