Skip to content

Commit

Permalink
deb: add missing noble
Browse files Browse the repository at this point in the history
Signed-off-by: Kentaro Hayashi <[email protected]>
  • Loading branch information
kenhys committed Jun 25, 2024
1 parent 63ada01 commit 02db3f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions fluent-lts-apt-source/convert-artifacts-layout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ case $1 in
apt|deb)
REPOSITORY_TYPE=apt
REPOSITORY_PATH=$TD_AGENT_DIR/$REPOSITORY_TYPE/repositories
for d in bullseye bookworm focal jammy; do
for d in bullseye bookworm focal jammy noble; do
case $d in
bullseye|bookworm)
# e.g. mapping debian/pool/buster/main/t/td-agent/ => 5/debian/buster/pool/contrib/t/td-agent
Expand All @@ -24,7 +24,7 @@ case $1 in
find $REPOSITORY_PATH/debian/pool/$d -name 'fluent*-apt-source*.deb' -not -name '*dbgsym*' \
-exec cp {} $ARTIFACTS_DIR/lts/5/debian/$d/pool/contrib/f/fluent-lts-apt-source \;
;;
focal|jammy)
focal|jammy|noble)
# e.g. mapping ubuntu/pool/.../main/t/td-agent/ => 5/ubuntu/.../pool/contrib/t/td-agent
# mapping ubuntu/pool/.../main/f/fluent-package/ => 5/ubuntu/.../pool/contrib/f/fluent-package
mkdir -p $ARTIFACTS_DIR/lts/5/ubuntu/$d/pool/contrib/f/fluent-lts-apt-source
Expand Down
2 changes: 1 addition & 1 deletion fluent-package/convert-artifacts-layout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ case $1 in
apt|deb)
REPOSITORY_TYPE=apt
REPOSITORY_PATH=$FLUENT_PACKAGE_DIR/$REPOSITORY_TYPE/repositories
for d in bullseye bookworm focal jammy; do
for d in bullseye bookworm focal jammy noble; do
case $d in
bullseye|bookworm)
# e.g. mapping debian/pool/buster/main/t/td-agent/ => 5/debian/buster/pool/contrib/t/td-agent
Expand Down
2 changes: 1 addition & 1 deletion fluent-package/test-install-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ case $ID in
debian|ubuntu)
CODENAME=$(cat /etc/os-release | grep VERSION_CODENAME | cut -d'=' -f2)
case $CODENAME in
bullseye|bookworm|focal|jammy)
bullseye|bookworm|focal|jammy|noble)
setup_apt_user
case $REPO in
exp/5)
Expand Down
2 changes: 1 addition & 1 deletion fluent-package/test-verify-repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fi
VERSION=$1

if [ -z "$DEB_TARGETS" ]; then
DEB_TARGETS="debian:bullseye debian:bookworm ubuntu:focal ubuntu:jammy"
DEB_TARGETS="debian:bullseye debian:bookworm ubuntu:focal ubuntu:jammy ubuntu:noble"
fi
if [ -z "$RPM_TARGETS" ]; then
RPM_TARGETS="centos:7 almalinux:8 rockylinux:9 amazonlinux:2 amazonlinux:2023"
Expand Down

0 comments on commit 02db3f5

Please sign in to comment.