From f290a47ff6e44c955ad05e0e9799ed9b6a805b3d Mon Sep 17 00:00:00 2001 From: "Kevin R. Thornton" Date: Tue, 15 Aug 2023 11:07:43 -0700 Subject: [PATCH] skip C++ test suite --- .github/workflows/macos_x86.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/macos_x86.yml b/.github/workflows/macos_x86.yml index 70d482fb5..1862286d8 100644 --- a/.github/workflows/macos_x86.yml +++ b/.github/workflows/macos_x86.yml @@ -36,10 +36,9 @@ jobs: with: crate: cbindgen version: "=0.24.3" - - name: Install GSL and Boost + - name: Install GSL run: | brew install gsl - brew install boost - name: Install Python dependencies run: | python -m venv venv @@ -51,12 +50,8 @@ jobs: - name: Build extension module run: | source venv/bin/activate - cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DBUILD_CPP_UNIT_TESTS=ON -DBUILD_PYTHON_UNIT_TESTS=ON -DDISABLE_LTO=ON + cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DBUILD_PYTHON_UNIT_TESTS=ON -DDISABLE_LTO=ON cmake --build build -j 4 - - name: Run C++ tests - run: | - source venv/bin/activate - cmake --build build -t test - name: Manualy run setuptools_scm run: |