Merge branch 'develop' into feature/cmath

This commit is contained in:
Peter Dimov
2021-09-14 19:15:41 +03:00

View File

@ -410,7 +410,6 @@ jobs:
if: matrix.cmake_tests != ''
run: |
cd ../boost-root
export CMAKE_TEST=1
mkdir __build_cmake_test__ && cd __build_cmake_test__
cmake -DBUILD_TESTING=ON -DBOOST_INCLUDE_LIBRARIES=$LIBRARY ..
cmake --build . --target tests
@ -419,9 +418,8 @@ jobs:
- name: Run CMake subdir tests
if: matrix.cmake_tests != ''
run: |
cd ../boost-root
export CMAKE_SUBDIR_TEST=1
cd libs/$LIBRARY/test/cmake_subdir_test && mkdir __build_cmake_subdir_test__ && cd __build_cmake_subdir_test__
cd ../boost-root/libs/$LIBRARY/test/cmake_subdir_test
mkdir __build_cmake_subdir_test__ && cd __build_cmake_subdir_test__
cmake ..
cmake --build .
cmake --build . --target check
@ -430,11 +428,11 @@ jobs:
if: matrix.cmake_tests != ''
run: |
cd ../boost-root
export CMAKE_INSTALL_TEST=1
mkdir __build_cmake_install_test__ && cd __build_cmake_install_test__
cmake -DBOOST_INCLUDE_LIBRARIES=$LIBRARY -DCMAKE_INSTALL_PREFIX=~/.local ..
cmake --build . --target install
cd libs/$LIBRARY/test/cmake_install_test && mkdir __build_cmake_install_test__ && cd __build_cmake_install_test__
cd ../libs/$LIBRARY/test/cmake_install_test
mkdir __build_cmake_install_test__ && cd __build_cmake_install_test__
cmake -DCMAKE_INSTALL_PREFIX=~/.local ..
cmake --build .
cmake --build . --target check