From 37fa7e46ea3703122885bafbb3308195876c46fb Mon Sep 17 00:00:00 2001 From: Daniel Adler Date: Wed, 7 Aug 2024 13:53:46 +0200 Subject: [PATCH] CI/GH: exclude multiple-targets projects for Xcode --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e4f49f..12043fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,8 @@ jobs: - if: matrix.os == 'ubuntu-22.04' run: cd test/standalone-cmake && cmake -DSINGLE="Unix Makefiles" -P test-cmake-generators.cmake - if: matrix.os == 'macos-12' - run: cd test/standalone-cmake && cmake -DMULTI="Xcode" -P test-cmake-generators.cmake + # Exclude cpp-*-multiple-targets test-projects for Xcode + run: cd test/standalone-cmake && cmake -DMULTI="Xcode" -DPROJECTS="cpp-flat;cpp-tree;cpp-multiple-schema-dirs" -P test-cmake-generators.cmake - name: Upload artifact uses: actions/upload-artifact@v4