Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci+packaging: Add Ubuntu 24.04 support #275

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-qa-os-matrix-large.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:

- ciready/ubuntu:20.04-ci-c
- ciready/ubuntu:22.04-ci-c
- ciready/ubuntu:24.04-ci-c
- ciready/ubuntu:rolling-ci-c


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-qa-os-matrix-small.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

- ciready/opensuse:leap-15.4-ci-c

- ciready/ubuntu:22.04-ci-c
- ciready/ubuntu:24.04-ci-c
- ciready/ubuntu:rolling-ci-c


Expand Down
1 change: 1 addition & 0 deletions .github/workflows/install-qa-os-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:

- ubuntu:20.04
- ubuntu:22.04
- ubuntu:24.04
- ubuntu:rolling


Expand Down
1 change: 1 addition & 0 deletions .github/workflows/packaging-qa-os-matrix-large.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:

- ciready/ubuntu:20.04-ci-c
- ciready/ubuntu:22.04-ci-c
- ciready/ubuntu:24.04-ci-c



Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packaging-qa-os-matrix-small.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- ciready/centos:stream-9-ci-c

- ciready/ubuntu:22.04-ci-c
- ciready/ubuntu:24.04-ci-c



Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish-native-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:

- ciready/ubuntu:20.04-ci-c
- ciready/ubuntu:22.04-ci-c
- ciready/ubuntu:24.04-ci-c



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:

- ubuntu:20.04
- ubuntu:22.04
- ubuntu:24.04



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:

- ubuntu:20.04
- ubuntu:22.04
- ubuntu:24.04
- ubuntu:rolling


Expand Down
3 changes: 2 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@



2023-xx-xx - Version 2.5.2
2024-xx-xx - Version 2.5.2
--------------------------
New features:
=============
o Add Ubuntu 24.04 support.
o Add OpenSUSE 15.5 support.
o Configurable max log message length.
Ref: https://github.com/a2o/snoopy/issue/254
Expand Down
8 changes: 8 additions & 0 deletions doc/install-from-repo.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@ zypper install snoopy
Packages are provided for active Ubuntu LTS versions only.
List of supported Ubuntu LTS versions is [here](https://github.com/a2o/snoopy-packages/tree/master/repo/ubuntu/dists).

Ubuntu 24.04 LTS (Noble Numbat) [search-key:ubuntu-24.04]:
```shell
curl https://a2o.github.io/snoopy-packages/snoopy-packages-key.pub | apt-key add - &&
echo "deb https://a2o.github.io/snoopy-packages/repo/ubuntu noble stable" > /etc/apt/sources.list.d/snoopy-stable.list &&
apt update &&
apt install snoopy
```

Ubuntu 22.04 LTS (Jammy Jellyfish) [search-key:ubuntu-22.04]:
```shell
curl https://a2o.github.io/snoopy-packages/snoopy-packages-key.pub | apt-key add - &&
Expand Down
Loading