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

MDBF-774 Add Ubuntu Oracular #540

Merged
merged 3 commits into from
Aug 28, 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
9 changes: 7 additions & 2 deletions .github/workflows/build-debian-based.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ jobs:

- image: debian:sid
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le
branch: 10.11
branch: 11.4
nogalera: false

- image: debian:sid
platforms: linux/386
branch: 10.11
branch: 11.4
tag: debiansid-386
nogalera: false

Expand All @@ -68,6 +68,11 @@ jobs:
nogalera: false


- image: ubuntu:24.10
platforms: linux/amd64, linux/arm64/v8
branch: 11.4
nogalera: true

uses: ./.github/workflows/bbw_build_container_template.yml
with:
dockerfile: debian.Dockerfile
Expand Down
5 changes: 4 additions & 1 deletion ci_build_images/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN . /etc/os-release \
&& if curl --head --silent "https://ci.mariadb.org/galera/mariadb-4.x-latest-gal-${ARCH}-${ID}-$(echo "$VERSION_ID" | sed 's/\.//').sources" | head -n1 | grep -q 200; then \
curl -s "https://ci.mariadb.org/galera/mariadb-4.x-latest-gal-${ARCH}-${ID}-$(echo "$VERSION_ID" | sed 's/\.//').sources" >/etc/apt/sources.list.d/galera-4.sources; fi \
&& apt-get update \
&& curl -skO https://raw.githubusercontent.com/MariaDB/server/44e4b93316be8df130c6d87880da3500d83dbe10/debian/control \
&& curl -skO "https://raw.githubusercontent.com/MariaDB/server/$MARIADB_BRANCH/debian/control" \
&& mkdir debian \
&& mv control debian/control \
&& touch debian/rules VERSION debian/not-installed \
Expand Down Expand Up @@ -95,3 +95,6 @@ RUN . /etc/os-release \
&& apt-get clean

ENV WSREP_PROVIDER=/usr/lib/galera/libgalera_smm.so

# Prevent debian sid runtime error
ENV CRYPTOGRAPHY_OPENSSL_NO_LEGACY=1
2 changes: 2 additions & 0 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@
supportedPlatforms["11.4"] = supportedPlatforms["11.3"].copy()
supportedPlatforms["11.4"] += [
"aarch64-debian-sid",
"aarch64-ubuntu-2410",
"amd64-debian-sid",
"amd64-ubuntu-2410",
"ppc64le-debian-sid",
"x86-debian-sid",
]
Expand Down
6 changes: 6 additions & 0 deletions os_info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,9 @@ ubuntu-2404:
- ppc64le
- s390x
type: deb
ubuntu-2410:
version_name: oracular
arch:
- amd64
- aarch64
type: deb