From 77d1b119d7066e90ff5e37c20a4cdb2217860c2b Mon Sep 17 00:00:00 2001 From: Lehman Garrison Date: Thu, 12 Sep 2024 16:52:08 -0400 Subject: [PATCH] ci: reenable openmp on macos arm --- .github/workflows/wheels.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9305da0..d68a249 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -31,7 +31,6 @@ jobs: label: "macos-target-arm64" env: CIBW_ARCHS_MACOS: "arm64" - CMAKE_ARGS: "-DNIFTY_LS_OPENMP=OFF" bottle-tag: "arm64_monterey" env: @@ -43,13 +42,12 @@ jobs: CIBW_ARCHS_MACOS: ${{ matrix.env.CIBW_ARCHS_MACOS }} CIBW_CONFIG_SETTINGS: "cmake.verbose=true" CIBW_BUILD_VERBOSITY: 1 - CMAKE_ARGS: ${{ matrix.env.CMAKE_ARGS }} CIBW_BEFORE_ALL_MACOS: | brew uninstall gcc - pkg=$(brew fetch --force --bottle-tag=${{ matrix.env.bottle-tag }} gcc | grep 'Downloaded to' | cut -d' ' -f3) + pkg=$(brew fetch --force --bottle-tag=${{ matrix.bottle-tag }} gcc | grep 'Downloaded to' | cut -d' ' -f3) brew install $pkg - pkg=$(brew fetch --force --bottle-tag=${{ matrix.env.bottle-tag }} fftw | grep 'Downloaded to' | cut -d' ' -f3) + pkg=$(brew fetch --force --bottle-tag=${{ matrix.bottle-tag }} fftw | grep 'Downloaded to' | cut -d' ' -f3) brew install $pkg SKBUILD_CMAKE_DEFINE: "CMAKE_COMPILE_WARNING_AS_ERROR=ON"