49
49
- name : Install apt packages
50
50
run : |
51
51
sudo apt-get update
52
- sudo apt-get install -y doxygen ${{matrix.compiler.c}}
52
+ sudo apt-get install -y ${{matrix.compiler.c}}
53
53
54
54
- name : Install libhwloc
55
55
run : .github/scripts/install_hwloc.sh
62
62
run : |
63
63
sudo apt-get install -y ${{matrix.compiler.cxx}}
64
64
65
- - name : Install pip packages
66
- run : pip install -r third_party/requirements.txt
67
-
68
65
- name : Install libbacktrace
69
66
if : matrix.libbacktrace == '-DVAL_USE_LIBBACKTRACE_BACKTRACE=ON'
70
67
run : |
93
90
-DUR_ENABLE_TRACING=ON
94
91
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}
95
92
-DUR_BUILD_TESTS=ON
96
- -DUR_FORMAT_CPP_STYLE=ON
93
+ -DUR_FORMAT_CPP_STYLE=OFF
97
94
-DUR_DPCXX=${{github.workspace}}/dpcpp_compiler/bin/clang++
98
95
${{matrix.libbacktrace}}
99
96
${{matrix.pool_tracking}}
@@ -109,18 +106,11 @@ jobs:
109
106
-DUR_ENABLE_TRACING=ON
110
107
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}
111
108
-DUR_BUILD_TESTS=ON
112
- -DUR_FORMAT_CPP_STYLE=ON
109
+ -DUR_FORMAT_CPP_STYLE=OFF
113
110
${{matrix.libbacktrace}}
114
111
${{matrix.pool_tracking}}
115
112
${{matrix.latency_tracking}}
116
113
117
- - name : Generate source from spec, check for uncommitted diff
118
- if : matrix.os == 'ubuntu-22.04'
119
- run : cmake --build ${{github.workspace}}/build --target check-generated
120
-
121
- - name : Verify that each source file contains a license
122
- run : cmake --build ${{github.workspace}}/build --target verify-licenses
123
-
124
114
- name : Build
125
115
run : cmake --build ${{github.workspace}}/build -j $(nproc)
126
116
@@ -285,11 +275,6 @@ jobs:
285
275
-DUR_FORMAT_CPP_STYLE=ON
286
276
${{matrix.adapter.var}}
287
277
288
- # TODO: re-enable when check-generated is fixed for windows runners see #888
289
- # - name: Generate source from spec, check for uncommitted diff
290
- # if: matrix.os == 'windows-2022'
291
- # run: cmake --build ${{github.workspace}}/build --target check-generated --config ${{matrix.build_type}}
292
-
293
278
- name : Build all
294
279
run : cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} -j $Env:NUMBER_OF_PROCESSORS
295
280
0 commit comments