From 172355780a44df80039e133958e989d8003ea82b Mon Sep 17 00:00:00 2001 From: Luis Antonio Obis Aparicio Date: Sun, 10 Dec 2023 17:49:59 -0600 Subject: [PATCH] bad macos env variable --- .github/workflows/wheels.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index 874ea19..603f5f0 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -122,7 +122,7 @@ jobs: - name: Setup MacOS environment variables if: matrix.os == 'macos-latest' run: | - echo "CMAKE_ARGS=${{ matrix.platform_id == 'macosx_x86_64' && 'x86_64' || 'arm64' }}" >> $GITHUB_ENV + echo "CMAKE_ARGS=-DCMAKE_OSX_ARCHITECTURES=${{ matrix.platform_id == 'macosx_x86_64' && 'x86_64' || 'arm64' }}" >> $GITHUB_ENV - name: Cache Xerces-C Installation if: matrix.os != 'ubuntu-latest'