From de87d68338a2afdeb46879b202106e450c741588 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 10 Oct 2025 13:51:43 +0300 Subject: [PATCH] Exclude mysql when its dependency pfr is excluded --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2146a77..4e6faf6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: