Browse Source

Add Ubuntu 25.04 builds (#1519)

pull/1520/head
trapexit 1 month ago
committed by GitHub
parent
commit
99c28ad3bc
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 10
      buildtools/containerfiles/ubuntu:25.04.amd64
  2. 10
      buildtools/containerfiles/ubuntu:25.04.arm64
  3. 10
      buildtools/containerfiles/ubuntu:25.04.armhf
  4. 10
      buildtools/containerfiles/ubuntu:25.04.riscv64
  5. 4
      buildtools/target-containers.txt

10
buildtools/containerfiles/ubuntu:25.04.amd64

@ -0,0 +1,10 @@
FROM --platform=amd64 ubuntu:25.04 as build
COPY install-build-pkgs build-mergerfs /tmp/
RUN /tmp/install-build-pkgs
ARG BUILD_TIMESTAMP=0
ARG GIT_REPO
ARG BRANCH
RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
FROM scratch
COPY --from=build /build/ /

10
buildtools/containerfiles/ubuntu:25.04.arm64

@ -0,0 +1,10 @@
FROM --platform=arm64 ubuntu:25.04 as build
COPY install-build-pkgs build-mergerfs /tmp/
RUN /tmp/install-build-pkgs
ARG BUILD_TIMESTAMP=0
ARG GIT_REPO
ARG BRANCH
RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
FROM scratch
COPY --from=build /build/ /

10
buildtools/containerfiles/ubuntu:25.04.armhf

@ -0,0 +1,10 @@
FROM --platform=armhf ubuntu:25.04 as build
COPY install-build-pkgs build-mergerfs /tmp/
RUN /tmp/install-build-pkgs
ARG BUILD_TIMESTAMP=0
ARG GIT_REPO
ARG BRANCH
RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
FROM scratch
COPY --from=build /build/ /

10
buildtools/containerfiles/ubuntu:25.04.riscv64

@ -0,0 +1,10 @@
FROM --platform=riscv64 ubuntu:25.04 as build
COPY install-build-pkgs build-mergerfs /tmp/
RUN /tmp/install-build-pkgs
ARG BUILD_TIMESTAMP=0
ARG GIT_REPO
ARG BRANCH
RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
FROM scratch
COPY --from=build /build/ /

4
buildtools/target-containers.txt

@ -33,3 +33,7 @@ ubuntu:24.04 amd64
ubuntu:24.04 arm64
ubuntu:24.04 armhf
ubuntu:24.04 riscv64
ubuntu:25.04 amd64
ubuntu:25.04 arm64
ubuntu:25.04 armhf
ubuntu:25.04 riscv64
Loading…
Cancel
Save