File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,12 @@ jobs:
1818 CIBW_MANYLINUX_X86_64_IMAGE : manylinux_2_28
1919 CIBW_BUILD : " cp310-manylinux* cp311-manylinux* cp312-manylinux* cp313-manylinux*"
2020
21- CIBW_ENVIRONMENT : |
21+ CIBW_ENVIRONMENT_LINUX : |
2222 BUILD_GLFW=0
2323 BUILD_FREETYPE=1
2424 CPPFLAGS="-I/usr/local/include"
2525 LDFLAGS="-L/usr/local/lib"
2626
27- CIBW_ENVIRONMENT_PASS_LINUX : BUILD_GLFW BUILD_FREETYPE CXXFLAGS CPPFLAGS LDFLAGS
2827 CIBW_BEFORE_ALL_LINUX : bash ci/manylinux-build-deps
2928 CIBW_BEFORE_BUILD_LINUX : |
3029 python -m pip install pysam>=0.23.0 numpy>=1.19.3 cython>=3.0.0
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33echo " STARTING MANYLINUX-DEPS"
4+ echo " === Environment Variables ==="
5+ echo " BUILD_FREETYPE: $BUILD_FREETYPE "
6+ echo " BUILD_GLFW: $BUILD_GLFW "
7+ echo " CPPFLAGS: $CPPFLAGS "
8+ echo " LDFLAGS: $LDFLAGS "
9+ echo " ================================"
410env
11+ echo " ================================"
512
613yum install -y epel-release
714
@@ -66,8 +73,7 @@ cd htslib
6673make -j3 && make install
6774cd ../
6875
69- # freetype - build both static and shared
70- if [ -n " $BUILD_FREETYPE " ]; then
76+ if [[ " $BUILD_FREETYPE " == " 1" ]]; then
7177
7278 echo " Removing system FreeType packages..."
7379 yum remove -y freetype freetype-devel || true
You can’t perform that action at this time.
0 commit comments