Skip to content

Commit

Permalink
[kiwix-build] Switch from bionic to manylinux image
Browse files Browse the repository at this point in the history
  • Loading branch information
mgautierfr committed May 29, 2024
1 parent e9f32bf commit 78b2e23
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kiwix-build_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
variant: [f35, focal, bionic, alpine, noble]
variant: [f35, focal, manylinux_x86_64, manylinux_aarch64, alpine, noble]
runs-on: ubuntu-22.04

steps:
Expand Down
27 changes: 0 additions & 27 deletions kiwix-build_ci/bionic_builder.dockerfile

This file was deleted.

11 changes: 11 additions & 0 deletions kiwix-build_ci/manylinux_aarch64_builder.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM quay.io/pypa/manylinux_2_28_aarch64
LABEL org.opencontainers.image.source https://github.com/kiwix/container-images

ENV LANG C.UTF-8
ENV OS_NAME manylinux_aarch64

# Create user
RUN groupadd --gid 121 runner
RUN useradd --uid 1001 --gid 121 --create-home runner
USER runner
ENV PATH /home/runner/.local/bin:$PATH
11 changes: 11 additions & 0 deletions kiwix-build_ci/manylinux_x86_64_builder.dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM quay.io/pypa/manylinux_2_28_x86_64
LABEL org.opencontainers.image.source https://github.com/kiwix/container-images

ENV LANG C.UTF-8
ENV OS_NAME manylinux_x86_64

# Create user
RUN groupadd --gid 121 runner
RUN useradd --uid 1001 --gid 121 --create-home runner
USER runner
ENV PATH /home/runner/.local/bin:$PATH

0 comments on commit 78b2e23

Please sign in to comment.