File tree Expand file tree Collapse file tree 5 files changed +5
-7
lines changed
Expand file tree Collapse file tree 5 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ jobs:
2020 run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
2121
2222 - name : Build
23- run : cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
23+ run : cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -- -j
2424
2525 - name : Test
2626 working-directory : ${{github.workspace}}/build
2727 # Didn't configure to use ctest. Opted for a custom target to run instead
28- run : cmake --build build --target test
28+ run : cmake --build build --target test -- -j
2929
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ FetchContent_Declare(
99)
1010FetchContent_MakeAvailable(Catch2)
1111
12- list (APPEND TEST_SOURCES main.cpp
12+ list (APPEND TEST_SOURCES
1313 test_dbc.cpp
1414 test_utils.cpp)
1515
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- #include < catch2/catch .hpp>
1+ #include < catch2/catch_test_macros .hpp>
22#include " defines.hpp"
33#include < libdbc/dbc.hpp>
44
Original file line number Diff line number Diff line change 1- #include < catch2/catch .hpp>
1+ #include < catch2/catch_test_macros .hpp>
22#include " defines.hpp"
33#include < libdbc/utils/utils.hpp>
44
You can’t perform that action at this time.
0 commit comments