Skip to content

Commit 398f166

Browse files
committed
add aarch64 image
- add CI to build, tag and push x86_64 and aarch64 images - add ARCH arg to Dockerfile - use temporary url for gmp download as they blacklist github ips - build ccache from source as no pre-built aarch64 binary available - rename repo to sme_manylinux
1 parent 901ae96 commit 398f166

File tree

3 files changed

+58
-35
lines changed

3 files changed

+58
-35
lines changed

.github/workflows/ci.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
on: push
3+
4+
jobs:
5+
manylinux:
6+
runs-on: ${{ matrix.platform.os }}
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
platform:
11+
- os: "ubuntu-22.04"
12+
arch: "x86_64"
13+
- os: "ubuntu-22.04-arm"
14+
arch: "aarch64"
15+
steps:
16+
- uses: actions/checkout@v4
17+
- run: docker build . --build-arg="ARCH=${{ matrix.platform.arch }}"
18+
- if: github.repository == 'spatial-model-editor/sme_manylinux' && github.event_name == 'push' && (startsWith(github.event.ref, 'refs/tags/'))
19+
uses: docker/login-action@v3
20+
with:
21+
registry: ghcr.io
22+
username: ${{ github.actor }}
23+
password: ${{ secrets.GITHUB_TOKEN }}
24+
- if: github.repository == 'spatial-model-editor/sme_manylinux' && github.event_name == 'push' && (startsWith(github.event.ref, 'refs/tags/'))
25+
run: |
26+
docker build . --build-arg="ARCH=${{ matrix.platform.arch }}" -t ghcr.io/spatial-model-editor/manylinux_${{ matrix.platform.arch }}:${{ github.ref_name }}
27+
docker push ghcr.io/spatial-model-editor/manylinux_${{ matrix.platform.arch }}:${{ github.ref_name }}

Dockerfile

+24-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
FROM quay.io/pypa/manylinux_2_28_x86_64:2025-01-05-75aeda9 as builder
1+
ARG ARCH
2+
FROM quay.io/pypa/manylinux_2_28_${ARCH}:2025.02.02-1 as builder
23

4+
ARG ARCH
35
ARG NPROCS=24
46
ARG BUILD_DIR=/opt/smelibs
57
ARG TMP_DIR=/opt/tmpwd
@@ -47,16 +49,17 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
4749
&& rm -rf $TMP_DIR
4850

4951
ARG GMP_VERSION="6.3.0"
52+
# download url is a temporary workaround for gmp blacklisting github ips
5053
RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
5154
&& curl -L \
52-
https://gmplib.org/download/gmp/gmp-${GMP_VERSION}.tar.bz2 \
53-
--output gmp.tar.bz2 \
54-
&& tar xjf gmp.tar.bz2 \
55+
https://github.com/spatial-model-editor/spatial-model-editor.github.io/releases/download/1.0.0/gmp-${GMP_VERSION}.tar.xz \
56+
--output gmp.tar.xz \
57+
&& tar xf gmp.tar.xz \
5558
&& cd gmp-${GMP_VERSION} \
5659
&& ./configure \
5760
--prefix=$BUILD_DIR \
5861
--disable-shared \
59-
--host=x86_64-unknown-linux-gnu \
62+
--host=${ARCH}-unknown-linux-gnu \
6063
--enable-static \
6164
--with-pic \
6265
--enable-cxx \
@@ -75,7 +78,7 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
7578
&& ./configure \
7679
--prefix=$BUILD_DIR \
7780
--disable-shared \
78-
--host=x86_64-unknown-linux-gnu \
81+
--host=${ARCH}-unknown-linux-gnu \
7982
--enable-static \
8083
--with-pic \
8184
--with-gmp-lib=$BUILD_DIR/lib \
@@ -182,7 +185,7 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
182185
&& ninja install \
183186
&& rm -rf $TMP_DIR
184187

185-
ARG LLVM_VERSION="19.1.6"
188+
ARG LLVM_VERSION="19.1.7"
186189
RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
187190
&& git clone \
188191
-b llvmorg-$LLVM_VERSION \
@@ -196,7 +199,7 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
196199
-DCMAKE_BUILD_TYPE=Release \
197200
-DCMAKE_INSTALL_PREFIX=$BUILD_DIR \
198201
-DPython3_EXECUTABLE:FILEPATH=/opt/python/cp312-cp312/bin/python \
199-
-DLLVM_DEFAULT_TARGET_TRIPLE=x86_64-unknown-linux-gnu \
202+
-DLLVM_DEFAULT_TARGET_TRIPLE=${ARCH}-unknown-linux-gnu \
200203
-DLLVM_TARGETS_TO_BUILD="X86" \
201204
-DLLVM_BUILD_TOOLS=OFF \
202205
-DLLVM_INCLUDE_TOOLS=OFF \
@@ -724,27 +727,31 @@ RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
724727
&& ninja install \
725728
&& rm -rf $TMP_DIR
726729

727-
FROM quay.io/pypa/manylinux_2_28_x86_64:2025-01-05-75aeda9
730+
FROM quay.io/pypa/manylinux_2_28_${ARCH}:2025.02.02-1
728731

729-
LABEL org.opencontainers.image.source=https://github.com/spatial-model-editor/sme_manylinux_x86_64
730-
LABEL org.opencontainers.image.description="manylinux x86_64 image for compiling Spatial Model Editor python wheels"
732+
LABEL org.opencontainers.image.source=https://github.com/spatial-model-editor/sme_manylinux
733+
LABEL org.opencontainers.image.description="manylinux ${ARCH} image for compiling Spatial Model Editor python wheels"
731734
LABEL org.opencontainers.image.licenses=MIT
732735

733736
ARG BUILD_DIR=/opt/smelibs
734737
ARG TMP_DIR=/opt/tmpwd
735738

739+
RUN /opt/python/cp312-cp312/bin/pip install ninja \
740+
&& ln -fs /opt/python/cp312-cp312/bin/ninja /usr/bin/ninja
741+
736742
ARG CCACHE_VERSION="4.10.2"
737743
RUN mkdir -p $TMP_DIR && cd $TMP_DIR \
738744
&& curl \
739-
-L https://github.com/ccache/ccache/releases/download/v${CCACHE_VERSION}/ccache-${CCACHE_VERSION}-linux-x86_64.tar.xz \
745+
-L https://github.com/ccache/ccache/releases/download/v${CCACHE_VERSION}/ccache-${CCACHE_VERSION}.tar.xz \
740746
--output ccache.tar.xz \
741747
&& tar xJf ccache.tar.xz \
742-
&& cd ccache-${CCACHE_VERSION}-linux-x86_64 \
743-
&& make install \
748+
&& cd ccache-${CCACHE_VERSION} \
749+
&& mkdir build \
750+
&& cd build \
751+
&& cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_DOCUMENTATION=OFF -DHTTP_STORAGE_BACKEND=OFF -DENABLE_TESTING=OFF -DREDIS_STORAGE_BACKEND=OFF -GNinja .. \
752+
&& ninja \
753+
&& ninja install \
744754
&& rm -rf $TMP_DIR
745755

746-
RUN /opt/python/cp312-cp312/bin/pip install ninja \
747-
&& ln -fs /opt/python/cp312-cp312/bin/ninja /usr/bin/ninja
748-
749756
# SME static libs
750757
COPY --from=builder $BUILD_DIR $BUILD_DIR

README.md

+7-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,15 @@
1-
# sme_manylinux_x86_64
1+
# sme_manylinux
22

3-
Docker container for compiling linux x86_64 python wheels for [sme](https://pypi.org/project/sme/)
3+
Docker containers for compiling linux python wheels for [sme](https://pypi.org/project/sme/)
44

5-
- Available from <https://ghcr.io/spatial-model-editor/manylinux_x86_64>
5+
- Available from <https://ghcr.io/spatial-model-editor/sme_manylinux>
66

77
- Used by <https://github.com/spatial-model-editor/spatial-model-editor>
88

9-
- Based on <https://quay.io/repository/pypa/manylinux_2_28_x86_64>
9+
- Based on
10+
- <https://quay.io/repository/pypa/manylinux_2_28_x86_64>
11+
- <https://quay.io/repository/pypa/manylinux_2_28_aarch64>
1012

1113
## To update
1214

13-
Update the Dockerfile, tag the commit with `tagname`, git push, then build and push the docker container:
14-
15-
```bash
16-
docker build . -t ghcr.io/spatial-model-editor/manylinux_x86_64:tagname
17-
docker push ghcr.io/spatial-model-editor/manylinux_x86_64:tagname
18-
```
19-
20-
where `tagname` is today's date in the form `YYYY.MM.DD`
21-
22-
## Note
23-
24-
Would be cleaner to have a github action that builds the container on each tagged commit, as we do for sme_deps etc.
25-
26-
Currently not doing this for convenience, as the docker build would take a long time to run on CI.
15+
To release new images, tag the commit with `YYYY.MM.DD`

0 commit comments

Comments
 (0)