Skip to content

Commit 4946182

Browse files
committed
add nobel
ubuntu24.04 is released. Signed-off-by: JeanTracker <[email protected]>
1 parent 5f66a56 commit 4946182

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

.github/workflows/docker-publish-rootfs.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
jammy_x64,
2727
jammy_arm64,
2828
jammy_armhf,
29+
noble_x64,
30+
noble_arm64,
31+
noble_armhf,
2932
]
3033
steps:
3134
- name: Check out the repo

.github/workflows/manual.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
jammy_x64,
3131
jammy_arm64,
3232
jammy_armhf,
33+
noble_x64,
34+
noble_arm64,
35+
noble_armhf,
3336
]
3437
steps:
3538
- name: Comment

build.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,27 @@ case "$1" in
9898
CROSS=1
9999
;;
100100

101+
"noble_x64")
102+
CHROOT=noble-amd64
103+
HOST=amd64
104+
DIST=noble
105+
CROSS=0
106+
;;
107+
108+
"noble_arm64")
109+
CHROOT=noble-amd64-arm64
110+
HOST=arm64
111+
DIST=noble
112+
CROSS=1
113+
;;
114+
115+
"noble_armhf")
116+
CHROOT=noble-amd64-armhf
117+
HOST=armhf
118+
DIST=noble
119+
CROSS=1
120+
;;
121+
101122
*)
102123
exit 1
103124
esac

0 commit comments

Comments
 (0)