Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wkpark committed Oct 23, 2024
1 parent 06d250c commit afe2165
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,14 @@ jobs:
TRITON_WHEEL_VERSION_SUFFIX=-$LATEST_DATE \
TRITON_BUILD_WITH_CLANG_LLD=1"
if [ "${{ matrix.runner }}" = "ubuntu-latest" ]; then
#export CIBW_MANYLINUX_X86_64_IMAGE="quay.io/pypa/manylinux_2_28_x86_64:latest"
echo "" >> python/setup.cfg
echo "[build_ext]" >> python/setup.cfg
echo "base-dir=/project" >> python/setup.cfg
export CIBW_MANYLINUX_X86_64_IMAGE="quay.io/pypa/manylinux_2_28_x86_64:latest"
#export CIBW_MANYLINUX_PYPY_X86_64_IMAGE="quay.io/pypa/manylinux_2_28_x86_64:latest"
# many_linux_2_28 image comes with GCC 12.2.1, but not clang.
# With this install, it gets clang 16.0.6.
#export CIBW_BEFORE_ALL="dnf install clang lld -y";
export CIBW_BEFORE_ALL="dnf install clang lld -y";
export CIBW_SKIP="cp{35,36,37,38,39,312}-*"
export CIBW_BUILD="cp3*-manylinux_x86_64"
fi
Expand Down

0 comments on commit afe2165

Please sign in to comment.