Skip to content

Commit e43aebb

Browse files
committed
ci: clang: Use LLVM_TOOLCHAIN_PATH instead of CLANG_ROOT_DIR
`CLANG_ROOT_DIR` is deprecated; use `LLVM_TOOLCHAIN_PATH` instead. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent ba14a4e commit e43aebb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/clang.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
platform: ["native_posix"]
2525
env:
2626
ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.15.0
27-
CLANG_ROOT_DIR: /usr/lib/llvm-12
27+
LLVM_TOOLCHAIN_PATH: /usr/lib/llvm-12
2828
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
2929
BASE_REF: ${{ github.base_ref }}
3030
outputs:
@@ -69,7 +69,7 @@ jobs:
6969
- name: Check Environment
7070
run: |
7171
cmake --version
72-
${CLANG_ROOT_DIR}/bin/clang --version
72+
${LLVM_TOOLCHAIN_PATH}/bin/clang --version
7373
gcc --version
7474
ls -la
7575

0 commit comments

Comments
 (0)