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 <root@stephanos.io>
This commit is contained in:
parent
ba14a4e7b8
commit
e43aebbdda
1 changed files with 2 additions and 2 deletions
4
.github/workflows/clang.yaml
vendored
4
.github/workflows/clang.yaml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
||||||
platform: ["native_posix"]
|
platform: ["native_posix"]
|
||||||
env:
|
env:
|
||||||
ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.15.0
|
ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.15.0
|
||||||
CLANG_ROOT_DIR: /usr/lib/llvm-12
|
LLVM_TOOLCHAIN_PATH: /usr/lib/llvm-12
|
||||||
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
|
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
|
||||||
BASE_REF: ${{ github.base_ref }}
|
BASE_REF: ${{ github.base_ref }}
|
||||||
outputs:
|
outputs:
|
||||||
|
@ -69,7 +69,7 @@ jobs:
|
||||||
- name: Check Environment
|
- name: Check Environment
|
||||||
run: |
|
run: |
|
||||||
cmake --version
|
cmake --version
|
||||||
${CLANG_ROOT_DIR}/bin/clang --version
|
${LLVM_TOOLCHAIN_PATH}/bin/clang --version
|
||||||
gcc --version
|
gcc --version
|
||||||
ls -la
|
ls -la
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue