This is an automated email from the ASF dual-hosted git repository.
jmalkin pushed a commit to branch update_build_wheels
in repository https://gitbox.apache.org/repos/asf/datasketches-cpp.git
The following commit(s) were added to refs/heads/update_build_wheels by this
push:
new 7688abf Fix variable names
7688abf is described below
commit 7688abff9a2b58320e7fce6f7fa72411f87b5679
Author: Jon Malkin <[email protected]>
AuthorDate: Fri Sep 23 01:45:18 2022 -0700
Fix variable names
---
.github/workflows/build_wheels.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/build_wheels.yml
b/.github/workflows/build_wheels.yml
index 7e0c8d0..4f9ca19 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -82,16 +82,16 @@ jobs:
- name: Configure cibuildwheel
shell: bash
run: |
- CMAKE_OSX_ARCHITECTURES=${{ matrix.cibw-arch == 'macosx_x86_64' &&
'x86_64' || matrix.cibw-arch == 'macosx_arm64' && 'arm64' || matrix.cibw-arch
== 'macosx_universal2' && '"arm64;x86_64"' || '' }}
+ CMAKE_OSX_ARCHITECTURES=${{ matrix.config.cibw-arch ==
'macosx_x86_64' && 'x86_64' || matrix.config.cibw-arch == 'macosx_arm64' &&
'arm64' || matrix.config.cibw-arch == 'macosx_universal2' && '"arm64;x86_64"'
|| '' }}
echo "CIBW_ARCHS_MACOS=x86_64 arm64" >> $GITHUB_ENV
- echo "CIBW_BUILD=*-${{ matrix.cibw-arch }}" >> $GITHUB_ENV
+ echo "CIBW_BUILD=*-${{ matrix.config.cibw-arch }}" >> $GITHUB_ENV
echo
"CIBW_ENVIRONMENT_MACOS=CMAKE_OSX_ARCHITECTURES=\"$CMAKE_OSX_ARCHITECTURES\""
>> $GITHUB_ENV
- name: Build wheels
run: python -m cibuildwheel --output-dir dist
env:
CIBW_BEFORE_BUILD_LINUX: "yum remove -y cmake"
- CIBW_BEFORE_BUILD: python -m pip install cmake>=3.18
+ CIBW_BEFORE_BUILD: "python -m pip install cmake>=3.18"
CIBW_SKIP: "*-win32 pp*-macosx*"
- uses: actions/upload-artifact@v2
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]