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 36
36
# compiling first gives clang-tidy access to all the header files and settings used to compile the programs.
37
37
# This will check for macros, if any, on linux and not for Windows. But the use of portability checks should
38
38
# be able to catch any errors for other platforms.
39
- run : cmake -B build -S . -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
39
+ run : cmake -B build -S . -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -j
40
40
- name : Lint modified files
41
41
shell : bash
42
42
run : python3 scripts/file_linter.py
61
61
submodules : true
62
62
- run : |
63
63
cmake -B ./build -S .
64
- cmake --build build -j
64
+ cmake --build build --parallel 4
65
65
- name : Label on PR fail
66
66
uses : actions/github-script@v6
67
67
if : ${{ failure() && matrix.os == 'ubuntu-latest' && github.event_name == 'pull_request' }}
You can’t perform that action at this time.
0 commit comments