From 19c045d85bcbc41340fe77357713cb1fd4e82c41 Mon Sep 17 00:00:00 2001 From: Marco Barbone Date: Wed, 29 Jan 2025 15:44:38 -0500 Subject: [PATCH] fixing silly typo --- .github/workflows/cmake_ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake_ci.yml b/.github/workflows/cmake_ci.yml index e691b16b4..c9df92889 100644 --- a/.github/workflows/cmake_ci.yml +++ b/.github/workflows/cmake_ci.yml @@ -155,19 +155,20 @@ jobs: env: MACOSX_DEPLOYMENT_TARGET: 13 CPM_SOURCE_CACHE: cpm - CMAKE_GENERATOR: Ninja shell: bash run: | python3 -m pip install --upgrade pip python3 -m pip install -r requirements.txt python3 -m pip install \ --verbose \ - -C =${{ matrix.build_type }} \ + -C cmake.define.CMAKE_BUILD_TYPE=${{ matrix.build_type }} \ -C cmake.define.FINUFFT_ARCH_FLAGS=${{ matrix.arch_flags }} \ -C cmake.define.FINUFFT_USE_DUCC0=${{ matrix.ducc_fft }} \ -C cmake.define.CMAKE_CXX_COMPILER_LAUNCHER=sccache \ -C cmake.define.CMAKE_C_COMPILER_LAUNCHER=sccache \ + -C cmake.define.CMAKE_GENERATOR=Ninja \ python/finufft + - name: Test Python package if: matrix.finufft_static_linking == 'off' run: |