[ci skip] Nonessential.

This commit is contained in:
Andrey Semashev 2021-09-06 02:22:05 +03:00
parent a413697830
commit c57bdbee1b

View File

@ -252,18 +252,6 @@ jobs:
./bootstrap.sh ./bootstrap.sh
./b2 headers ./b2 headers
- name: Run CMake tests
if: matrix.cmake_tests
run: |
cd ../boost-root
mkdir __build_static__ && cd __build_static__
cmake ../libs/$LIBRARY/test/test_cmake
cmake --build . --target boost_${LIBRARY}_cmake_self_test -j $BUILD_JOBS
cd ..
mkdir __build_shared__ && cd __build_shared__
cmake -DBUILD_SHARED_LIBS=On ../libs/$LIBRARY/test/test_cmake
cmake --build . --target boost_${LIBRARY}_cmake_self_test -j $BUILD_JOBS
- name: Create user-config.jam - name: Create user-config.jam
if: matrix.cmake_tests == '' && matrix.compiler != '' if: matrix.cmake_tests == '' && matrix.compiler != ''
run: | run: |
@ -302,3 +290,15 @@ jobs:
fi fi
B2_ARGS+=("libs/$LIBRARY/test") B2_ARGS+=("libs/$LIBRARY/test")
./b2 "${B2_ARGS[@]}" ./b2 "${B2_ARGS[@]}"
- name: Run CMake tests
if: matrix.cmake_tests
run: |
cd ../boost-root
mkdir __build_static__ && cd __build_static__
cmake ../libs/$LIBRARY/test/test_cmake
cmake --build . --target boost_${LIBRARY}_cmake_self_test -j $BUILD_JOBS
cd ..
mkdir __build_shared__ && cd __build_shared__
cmake -DBUILD_SHARED_LIBS=On ../libs/$LIBRARY/test/test_cmake
cmake --build . --target boost_${LIBRARY}_cmake_self_test -j $BUILD_JOBS