Skip to content

Commit

Permalink
Re-enable manylinux2010_x86_64 build
Browse files Browse the repository at this point in the history
pypa/manylinux#836 has been resolved with
image tag 2020-12-03-912b0de.
isc-adang committed Dec 3, 2020
1 parent 8739522 commit 7bde49c
Showing 4 changed files with 5 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,6 @@ env:
jobs:
manylinux2010_x86_64:
runs-on: ubuntu-20.04
if: false
steps:
- name: check out repository
uses: actions/checkout@v2
@@ -212,7 +211,7 @@ jobs:

deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: [manylinux2014_aarch64, manylinux2014_ppc64le, macosx_10_9_x86_64, windows_x86_64] #
needs: [manylinux2010_x86_64, manylinux2014_aarch64, manylinux2014_ppc64le, macosx_10_9_x86_64, windows_x86_64]
runs-on: ubuntu-20.04
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
6 changes: 2 additions & 4 deletions .github/workflows/build_manylinux.sh
Original file line number Diff line number Diff line change
@@ -16,16 +16,14 @@ set -euxo pipefail

##### Install and configure dependencies #####
# epel-release
# Needed on some platforms to install ccache.
# Needed to install ccache.
# dos2unix
# Give ICU build scripts Unix line endings so that they can be executed. For
# some reason, ICU source releases use Windows line endings.
# ccache
# Speed up build times by caching results from previous builds.
PROCESSOR="$(uname -p)"
if [ "$PROCESSOR" = aarch64 ] || [ "$PROCESSOR" = ppc64le ]; then
yum install -y epel-release
fi
yum install -y epel-release
if [ "$PROCESSOR" = aarch64 ] || [ "$PROCESSOR" = ppc64le ]; then
# this mirror is often slow, so disable it
echo "exclude=csc.mcs.sdsmt.edu" >> /etc/yum/pluginconf.d/fastestmirror.conf
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.sh
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ PYENV_TOOL_VERSION=1.2.21
BUILDCACHE_NAME="Release v0.23.0"
BUILDCACHE_URL_WIN=https://github.com/mbitsnbites/buildcache/releases/download/v0.23.0/buildcache-win-msvc.zip
CYTHON_VERSION=0.29.21
MANYLINUX2010_X86_64_TAG=2020-11-11-201fb79
MANYLINUX2010_X86_64_TAG=2020-12-03-912b0de
MANYLINUX2014_AARCH64_TAG=2020-11-11-bc8ce45
MANYLINUX2014_PPC64LE_TAG=2020-11-11-bc8ce45
# END DEPENDENCY-AUTOUPDATE SECTION
2 changes: 1 addition & 1 deletion .github/workflows/deploy.sh
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@

set -euxo pipefail

EXPECTED_WHEEL_COUNT=4 # 4 platforms
EXPECTED_WHEEL_COUNT=5 # 5 platforms

if [ "$GITHUB_EVENT_NAME" = push ] && \
[ "$GITHUB_REF" = refs/heads/master ] && \

0 comments on commit 7bde49c

Please sign in to comment.