File tree Expand file tree Collapse file tree 1 file changed +22
-3
lines changed Expand file tree Collapse file tree 1 file changed +22
-3
lines changed Original file line number Diff line number Diff line change 23
23
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24
24
with :
25
25
fetch-depth : 0
26
- persist-credentials : false
26
+
27
+ - name : Set Up Python ${{ matrix.python-version }}
28
+ uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
29
+ with :
30
+ python-version : ${{ matrix.python-version }}
31
+ cache : pip
32
+ cache-dependency-path : scripts/requirements-actions.txt
33
+
34
+ - name : install-packages
35
+ run : |
36
+ pip install -r scripts/requirements-actions.txt --require-hashes
37
+
38
+ - name : Setup Zephyr project
39
+ uses : nashif/action-zephyr-setup@main
40
+ with :
41
+ app-path : .
42
+ sdk-version : 0.17.0
43
+ toolchains : all
44
+ west-group-filter : -hal,-tools,-bootloader,-babblesim
45
+ west-project-filter : -nrf_hw_models
27
46
28
47
- name : SCA Setup
29
48
uses : zephyrproject-rtos/action-sca-setup@main
35
54
36
55
- name : Check Env
37
56
run : |
38
- ls -la
39
- ls -la coverity/
57
+ export COVERITY_OUTPUT_DIR=${PWD}/cov-int
58
+ ./scripts/twister -p qemu_x86 -T tests/kernel/threads/ -xZEPHYR_SCA_VARIANT=coverity
40
59
You can’t perform that action at this time.
0 commit comments