Skip to content

Commit

Permalink
add nobel
Browse files Browse the repository at this point in the history
ubuntu24.04 is released.

Signed-off-by: JeanTracker <hyojoong.kim.jean@gmail.com>
  • Loading branch information
JeanTracker committed Jun 25, 2024
1 parent 5f66a56 commit 4946182
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker-publish-rootfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
jammy_x64,
jammy_arm64,
jammy_armhf,
noble_x64,
noble_arm64,
noble_armhf,
]
steps:
- name: Check out the repo
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
jammy_x64,
jammy_arm64,
jammy_armhf,
noble_x64,
noble_arm64,
noble_armhf,
]
steps:
- name: Comment
Expand Down
21 changes: 21 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,27 @@ case "$1" in
CROSS=1
;;

"noble_x64")
CHROOT=noble-amd64
HOST=amd64
DIST=noble
CROSS=0
;;

"noble_arm64")
CHROOT=noble-amd64-arm64
HOST=arm64
DIST=noble
CROSS=1
;;

"noble_armhf")
CHROOT=noble-amd64-armhf
HOST=armhf
DIST=noble
CROSS=1
;;

*)
exit 1
esac
Expand Down

0 comments on commit 4946182

Please sign in to comment.