File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 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 :
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
You can’t perform that action at this time.
0 commit comments