File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,12 @@ jobs:
2929 fail-fast : true
3030 steps :
3131 - uses : actions/checkout@v2
32- - name : cmake
32+ - name : prepare build
3333 run : |
3434 mkdir build
3535 cd build
36- cmake ..
37- - name : ctest
36+ cmake -DCMAKE_BUILD_TYPE=Debug ..
37+ - name : test
3838 run : |
3939 cd build
40- cmake --build . -j3 --target tests # temporary workaround (I hope)
41- ctest -C Debug --output-on-failure
40+ cmake --build . --target check -j3
Original file line number Diff line number Diff line change 3434 - name : CMake from superproject
3535 run : |
3636 cd ..
37- cmake -DBOOST_ENABLE_CMAKE=1 - DBoost_VERBOSE=1 $GITHUB_WORKSPACE
38- ctest -j2 --output-on-failure -R boost_histogram
37+ cmake -DBoost_VERBOSE=1 $GITHUB_WORKSPACE
38+ cmake --build . --target all -j3 -- -k
3939
4040 appleclang :
4141 runs-on : macos-latest
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
5151
5252 set (BUILD_TESTING OFF ) # do not build tests of dependencies
5353
54+ boost_fetch(boostorg/static_assert TAG develop EXCLUDE_FROM_ALL )
5455 boost_fetch(boostorg/assert TAG develop EXCLUDE_FROM_ALL ) # needed by core
5556 boost_fetch(boostorg/config TAG develop EXCLUDE_FROM_ALL )
5657 boost_fetch(boostorg/core TAG develop EXCLUDE_FROM_ALL )
You can’t perform that action at this time.
0 commit comments