Skip to content

Commit 99c28ad

Browse files
authored
Add Ubuntu 25.04 builds (#1519)
1 parent 5becb33 commit 99c28ad

File tree

5 files changed

+44
-0
lines changed

5 files changed

+44
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM --platform=amd64 ubuntu:25.04 as build
2+
COPY install-build-pkgs build-mergerfs /tmp/
3+
RUN /tmp/install-build-pkgs
4+
ARG BUILD_TIMESTAMP=0
5+
ARG GIT_REPO
6+
ARG BRANCH
7+
RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
8+
9+
FROM scratch
10+
COPY --from=build /build/ /
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM --platform=arm64 ubuntu:25.04 as build
2+
COPY install-build-pkgs build-mergerfs /tmp/
3+
RUN /tmp/install-build-pkgs
4+
ARG BUILD_TIMESTAMP=0
5+
ARG GIT_REPO
6+
ARG BRANCH
7+
RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
8+
9+
FROM scratch
10+
COPY --from=build /build/ /
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM --platform=armhf ubuntu:25.04 as build
2+
COPY install-build-pkgs build-mergerfs /tmp/
3+
RUN /tmp/install-build-pkgs
4+
ARG BUILD_TIMESTAMP=0
5+
ARG GIT_REPO
6+
ARG BRANCH
7+
RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
8+
9+
FROM scratch
10+
COPY --from=build /build/ /
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM --platform=riscv64 ubuntu:25.04 as build
2+
COPY install-build-pkgs build-mergerfs /tmp/
3+
RUN /tmp/install-build-pkgs
4+
ARG BUILD_TIMESTAMP=0
5+
ARG GIT_REPO
6+
ARG BRANCH
7+
RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
8+
9+
FROM scratch
10+
COPY --from=build /build/ /

buildtools/target-containers.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,7 @@ ubuntu:24.04 amd64
3333
ubuntu:24.04 arm64
3434
ubuntu:24.04 armhf
3535
ubuntu:24.04 riscv64
36+
ubuntu:25.04 amd64
37+
ubuntu:25.04 arm64
38+
ubuntu:25.04 armhf
39+
ubuntu:25.04 riscv64

0 commit comments

Comments
 (0)