File tree Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Expand file tree Collapse file tree 1 file changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ name: coverity-unified-runtime
99# It runs static analysis build - Coverity. It requires special token (set in CI's secret).
1010
1111on :
12- schedule :
13- # Run every day at 23:00 UTC
14- - cron : ' 0 23 * * *'
1512 workflow_dispatch :
13+ schedule :
14+ # Run every day at 22:00 UTC
15+ - cron : ' 0 22 * * *'
1616
1717env :
1818 WORKDIR : ${{ github.workspace }}
2323 COVERITY_SCAN_BRANCH_PATTERN : " main"
2424 TRAVIS_BRANCH : ${{ github.ref_name }}
2525
26+
2627jobs :
2728 linux :
2829 name : Coverity
29- runs-on : ubuntu-latest
30+ runs-on : coverity
3031
3132 steps :
3233 - name : Clone the git repo
3637 run : pip install -r third_party/requirements.txt
3738
3839 - name : Configure CMake
39- run : cmake -B $WORKDIR/build -DUR_ENABLE_TRACING=ON -DUR_DEVELOPER_MODE=ON -DUR_BUILD_TESTS=ON -DUMF_ENABLE_POOL_TRACKING=ON
40+ run : >
41+ cmake
42+ -B $WORKDIR/build
43+ -DUR_ENABLE_TRACING=ON
44+ -DUR_DEVELOPER_MODE=ON
45+ -DUR_BUILD_TESTS=ON
46+ -DUMF_ENABLE_POOL_TRACKING=ON
47+ -DUR_FORMAT_CPP_STYLE=ON
48+ -DCMAKE_BUILD_TYPE=Debug
49+ -DUR_BUILD_ADAPTER_L0=ON
50+ -DUR_BUILD_ADAPTER_CUDA=ON
51+ -DCUDA_CUDA_LIBRARY=/usr/local/cuda/lib64/stubs/libcuda.so
52+ -DUR_BUILD_ADAPTER_NATIVE_CPU=ON
53+ -DUR_BUILD_ADAPTER_HIP=ON
4054
4155 - name : Run Coverity
4256 run : |
You can’t perform that action at this time.
0 commit comments