We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 002b5e7 commit e28a853Copy full SHA for e28a853
.github/workflows/build_wheels.yml
@@ -115,11 +115,13 @@ jobs:
115
run: |
116
tar zxvf dist/*.tar.gz --strip-components=1
117
- name: Sets env vars for compilation
118
+ run: |
119
+ echo "LZ4_INSTALL_DIR=/tmp/lz4_install/usr/local/" >> $GITHUB_ENV
120
+ echo "CFLAGS=-arch ${{matrix.arch}}" >> $GITHUB_ENV
121
+ - name: Set arm64-specific environment variables
122
if: matrix.arch == 'arm64'
123
- echo "CFLAGS=-target aarch64-apple-darwin" >> $GITHUB_ENV
124
echo "MEMRAY_LIBBACKTRACE_TARGET=aarch64-apple-darwin" >> $GITHUB_ENV
- echo "LZ4_INSTALL_DIR=/tmp/lz4_install/usr/local/" >> $GITHUB_ENV
125
- name: Build wheels
126
uses: pypa/cibuildwheel@v2.16.5
127
env:
0 commit comments