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: |