Skip to content

Commit 667e412

Browse files
committed
run all
Signed-off-by: Anas Nashif <[email protected]>
1 parent a3ea283 commit 667e412

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/codeql.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,19 @@ jobs:
3939
env:
4040
LLVM_TOOLCHAIN_PATH: /usr/lib/llvm-16
4141
steps:
42+
- name: Apply container owner mismatch workaround
43+
run: |
44+
# FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
45+
# match the container user UID because of the way GitHub
46+
# Actions runner is implemented. Remove this workaround when
47+
# GitHub comes up with a fundamental fix for this problem.
48+
git config --global --add safe.directory ${GITHUB_WORKSPACE}
49+
50+
- name: Clone cached Zephyr repository
51+
continue-on-error: true
52+
run: |
53+
git clone --shared /repo-cache/zephyrproject/zephyr .
54+
git remote set-url origin ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}
4255
- name: Checkout
4356
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4457
with:
@@ -91,7 +104,7 @@ jobs:
91104
run: |
92105
export ZEPHYR_BASE=${PWD}
93106
export ZEPHYR_TOOLCHAIN_VARIANT=zephyr
94-
west twister -p native_sim --build-only -T tests/kernel -T tests/drivers/build_all/sensor/ -v -j 16
107+
west twister -p native_sim --build-only -v -j 16 || true
95108
96109
- name: Perform CodeQL Analysis
97110
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)