4949 - name : Install apt packages
5050 run : |
5151 sudo apt-get update
52- sudo apt-get install -y doxygen ${{matrix.compiler.c}}
52+ sudo apt-get install -y ${{matrix.compiler.c}}
5353
5454 - name : Install libhwloc
5555 run : .github/scripts/install_hwloc.sh
6262 run : |
6363 sudo apt-get install -y ${{matrix.compiler.cxx}}
6464
65- - name : Install pip packages
66- run : pip install -r third_party/requirements.txt
67-
6865 - name : Install libbacktrace
6966 if : matrix.libbacktrace == '-DVAL_USE_LIBBACKTRACE_BACKTRACE=ON'
7067 run : |
9390 -DUR_ENABLE_TRACING=ON
9491 -DCMAKE_BUILD_TYPE=${{matrix.build_type}}
9592 -DUR_BUILD_TESTS=ON
96- -DUR_FORMAT_CPP_STYLE=ON
93+ -DUR_FORMAT_CPP_STYLE=OFF
9794 -DUR_DPCXX=${{github.workspace}}/dpcpp_compiler/bin/clang++
9895 ${{matrix.libbacktrace}}
9996 ${{matrix.pool_tracking}}
@@ -109,18 +106,11 @@ jobs:
109106 -DUR_ENABLE_TRACING=ON
110107 -DCMAKE_BUILD_TYPE=${{matrix.build_type}}
111108 -DUR_BUILD_TESTS=ON
112- -DUR_FORMAT_CPP_STYLE=ON
109+ -DUR_FORMAT_CPP_STYLE=OFF
113110 ${{matrix.libbacktrace}}
114111 ${{matrix.pool_tracking}}
115112 ${{matrix.latency_tracking}}
116113
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-
124114 - name : Build
125115 run : cmake --build ${{github.workspace}}/build -j $(nproc)
126116
@@ -285,11 +275,6 @@ jobs:
285275 -DUR_FORMAT_CPP_STYLE=ON
286276 ${{matrix.adapter.var}}
287277
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-
293278 - name : Build all
294279 run : cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} -j $Env:NUMBER_OF_PROCESSORS
295280
0 commit comments