Skip to content
This repository was archived by the owner on Feb 16, 2026. It is now read-only.
Open
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
15 changes: 8 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ parameters:
--disable-stack-protector \
--with-persistent-storage \
build-pkgs:
type: string
default: ""
type: boolean
default: false

jobs:
dist:
Expand Down Expand Up @@ -231,16 +231,16 @@ jobs:
case "<< parameters.dist >>" in
almalinux|fedora)
case "<< parameters.dist >>:<< parameters.release >>" in
almalinux:9)
almalinux:8)
dnf -y install "dnf-command(config-manager)"
dnf config-manager --set-enabled crb
dnf config-manager --set-enabled powertools
dnf -y install diffutils
dnf -y install epel-release
dnf -y groupinstall "Development Tools"
;;
almalinux:8)
almalinux:*)
dnf -y install "dnf-command(config-manager)"
dnf config-manager --set-enabled powertools
dnf config-manager --set-enabled crb
dnf -y install diffutils
dnf -y install epel-release
dnf -y groupinstall "Development Tools"
Expand Down Expand Up @@ -433,12 +433,13 @@ workflows:
matrix:
parameters:
platform:
- ubuntu:focal
- ubuntu:jammy
- ubuntu:noble
- debian:bookworm
- debian:trixie
- almalinux:8
- almalinux:9
- almalinux:10
- fedora:latest
- alpine:latest
rclass:
Expand Down
8 changes: 4 additions & 4 deletions .circleci/make-rpm-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ elif [ -z "$PARAM_DIST" ]; then
fi

case "$PARAM_DIST:$PARAM_RELEASE" in
almalinux:9)
almalinux:8)
dnf -y install 'dnf-command(config-manager)'
dnf config-manager --set-enabled crb
dnf config-manager --set-enabled powertools
dnf -y install epel-release
;;
almalinux:8)
almalinux:*)
dnf -y install 'dnf-command(config-manager)'
dnf config-manager --set-enabled powertools
dnf config-manager --set-enabled crb
dnf -y install epel-release
;;
esac
Expand Down