File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 35
35
# compiling first gives clang-tidy access to all the header files and settings used to compile the programs.
36
36
# This will check for macros, if any, on linux and not for Windows. But the use of portability checks should
37
37
# be able to catch any errors for other platforms.
38
- run : cmake -B build -S . -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
38
+ run : cmake -B build --parallel 4 - S . -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
39
39
- name : Lint modified files
40
40
shell : bash
41
41
run : python3 scripts/file_linter.py
59
59
submodules : true
60
60
- run : |
61
61
cmake -B ./build -S .
62
- cmake --build build --config Release
62
+ cmake --build build --parallel 4 -- config Release
63
63
- name : Label on PR fail
64
64
uses : actions/github-script@v6
65
65
if : ${{ failure() && matrix.os == 'ubuntu-latest' && github.event_name == 'pull_request' }}
You can’t perform that action at this time.
0 commit comments