2
0
mirror of https://github.com/boostorg/cmake.git synced 2026-01-19 04:02:15 +00:00

Exclude mysql when its dependency pfr is excluded

This commit is contained in:
Peter Dimov
2025-10-10 13:51:43 +03:00
parent d4ec506d78
commit de87d68338

View File

@@ -400,7 +400,7 @@ jobs:
exclude: cobalt;histogram;locale;msm;parser
- container: ubuntu:18.04
testing: ON
exclude: cobalt;histogram;locale;msm;parser;pfr
exclude: cobalt;histogram;locale;msm;parser;pfr;mysql
container:
image: ${{matrix.container}}
@@ -451,7 +451,7 @@ jobs:
run: |
cd ../boost-root
mkdir __build__ && cd __build__
cmake -DBoost_VERBOSE=ON -DBUILD_TESTING=${{matrix.testing}} -DBOOST_EXCLUDE_LIBRARIES="${{matrix.exclude}}" ..
cmake -DBUILD_TESTING=${{matrix.testing}} -DBOOST_EXCLUDE_LIBRARIES="${{matrix.exclude}}" ..
BoostTest:
strategy: