mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +03:00
CI: Add Alpine Linux 3.23 runner to the pipeline (#18087)
Add an Alpine Linux 3.23 runner to the CI chain to run OpenZFS builds and tests against musl libc. Currently, zfs_send_sparse is killed after 10 minutes on Alpine, causing cascading EBUSY failures in the test suite. With zfs_send_sparse disabled, the ZFS test suite reaches a pass rate of 94.62%. This commit introduces the required Alpine-specific setup and a small set of shell and cloud-init compatibility fixes that also apply to existing Linux runners. The Alpine runner is not enabled by default and is not executed for new pull requests. Sponsored-by: ERNW Research GmbH - https://ernw-research.de/ Signed-off-by: Alexander Moch <amoch@ernw.de> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de>
This commit is contained in:
@@ -43,6 +43,12 @@ case "$OS" in
|
||||
OSv="almalinux9"
|
||||
URL="https://repo.almalinux.org/almalinux/10/cloud/x86_64/images/AlmaLinux-10-GenericCloud-latest.x86_64.qcow2"
|
||||
;;
|
||||
alpine3-23)
|
||||
OSNAME="Alpine Linux 3.23.2"
|
||||
# Alpine Linux v3.22 and v3.23 are unknown to osinfo as of 2025-12-26.
|
||||
OSv="alpinelinux3.21"
|
||||
URL="https://dl-cdn.alpinelinux.org/alpine/v3.23/releases/cloud/generic_alpine-3.23.2-x86_64-bios-cloudinit-r0.qcow2"
|
||||
;;
|
||||
archlinux)
|
||||
OSNAME="Archlinux"
|
||||
URL="https://geo.mirror.pkgbuild.com/images/latest/Arch-Linux-x86_64-cloudimg.qcow2"
|
||||
@@ -216,13 +222,21 @@ if [ ${OS:0:7} != "freebsd" ]; then
|
||||
hostname: $OS
|
||||
|
||||
users:
|
||||
- name: root
|
||||
shell: $BASH
|
||||
- name: zfs
|
||||
sudo: ALL=(ALL) NOPASSWD:ALL
|
||||
shell: $BASH
|
||||
ssh_authorized_keys:
|
||||
- $PUBKEY
|
||||
- name: root
|
||||
shell: /bin/bash
|
||||
sudo: ['ALL=(ALL) NOPASSWD:ALL']
|
||||
- name: zfs
|
||||
shell: /bin/bash
|
||||
sudo: ['ALL=(ALL) NOPASSWD:ALL']
|
||||
ssh_authorized_keys:
|
||||
- $PUBKEY
|
||||
# Workaround for Alpine Linux.
|
||||
lock_passwd: false
|
||||
passwd: '*'
|
||||
|
||||
packages:
|
||||
- sudo
|
||||
- bash
|
||||
|
||||
growpart:
|
||||
mode: auto
|
||||
@@ -305,3 +319,23 @@ else
|
||||
scp ~/src.txz "root@vm0:/tmp/src.txz"
|
||||
ssh root@vm0 'tar -C / -zxf /tmp/src.txz'
|
||||
fi
|
||||
|
||||
#
|
||||
# Config for Alpine Linux similar to FreeBSD.
|
||||
#
|
||||
if [ ${OS:0:6} == "alpine" ]; then
|
||||
while pidof /usr/bin/qemu-system-x86_64 >/dev/null; do
|
||||
ssh 2>/dev/null zfs@vm0 "uname -a" && break
|
||||
done
|
||||
# Enable community and testing repositories.
|
||||
ssh zfs@vm0 "sudo rm -rf /etc/apk/repositories"
|
||||
ssh zfs@vm0 "sudo setup-apkrepos -c1"
|
||||
ssh zfs@vm0 "echo '@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing' | sudo tee -a /etc/apk/repositories"
|
||||
# Upgrade to edge or latest-stable.
|
||||
#ssh zfs@vm0 "sudo sed -i 's#/v[0-9]\+\.[0-9]\+/#/edge/#g' /etc/apk/repositories"
|
||||
#ssh zfs@vm0 "sudo sed -i 's#/v[0-9]\+\.[0-9]\+/#/latest-stable/#g' /etc/apk/repositories"
|
||||
# Update and upgrade after repository setup.
|
||||
ssh zfs@vm0 "sudo apk update"
|
||||
ssh zfs@vm0 "sudo apk add --upgrade apk-tools"
|
||||
ssh zfs@vm0 "sudo apk upgrade --available"
|
||||
fi
|
||||
|
||||
@@ -10,6 +10,32 @@
|
||||
|
||||
set -eu
|
||||
|
||||
function alpine() {
|
||||
echo "##[group]Install Development Tools"
|
||||
sudo apk add \
|
||||
acl alpine-sdk attr autoconf automake bash build-base clang21 coreutils \
|
||||
cpio cryptsetup curl curl-dev dhcpcd eudev eudev-dev eudev-libs findutils \
|
||||
fio gawk gdb gettext-dev git grep jq libaio libaio-dev libcurl \
|
||||
libtirpc-dev libtool libunwind libunwind-dev linux-headers linux-tools \
|
||||
linux-virt linux-virt-dev lsscsi m4 make nfs-utils openssl-dev parted \
|
||||
pax procps py3-cffi py3-distlib py3-packaging py3-setuptools python3 \
|
||||
python3-dev qemu-guest-agent rng-tools rsync samba samba-server sed \
|
||||
strace sysstat util-linux util-linux-dev wget words xfsprogs xxhash \
|
||||
zlib-dev pamtester@testing
|
||||
echo "##[endgroup]"
|
||||
|
||||
echo "##[group]Switch to eudev"
|
||||
sudo setup-devd udev
|
||||
echo "##[endgroup]"
|
||||
|
||||
echo "##[group]Install ksh93 from Source"
|
||||
git clone --depth 1 https://github.com/ksh93/ksh.git /tmp/ksh
|
||||
cd /tmp/ksh
|
||||
./bin/package make
|
||||
sudo ./bin/package install /
|
||||
echo "##[endgroup]"
|
||||
}
|
||||
|
||||
function archlinux() {
|
||||
echo "##[group]Running pacman -Syu"
|
||||
sudo btrfs filesystem resize max /
|
||||
@@ -27,6 +53,10 @@ function archlinux() {
|
||||
function debian() {
|
||||
export DEBIAN_FRONTEND="noninteractive"
|
||||
|
||||
echo "##[group]Wait for cloud-init to finish"
|
||||
cloud-init status --wait
|
||||
echo "##[endgroup]"
|
||||
|
||||
echo "##[group]Running apt-get update+upgrade"
|
||||
sudo sed -i '/[[:alpha:]]-backports/d' /etc/apt/sources.list
|
||||
sudo apt-get update -y
|
||||
@@ -140,6 +170,9 @@ case "$1" in
|
||||
sudo dnf install -y kernel-abi-stablelists
|
||||
echo "##[endgroup]"
|
||||
;;
|
||||
alpine*)
|
||||
alpine
|
||||
;;
|
||||
archlinux)
|
||||
archlinux
|
||||
;;
|
||||
@@ -188,6 +221,16 @@ test -z "${ONLY_DEPS:-}" || exit 0
|
||||
# Start services
|
||||
echo "##[group]Enable services"
|
||||
case "$1" in
|
||||
alpine*)
|
||||
sudo -E rc-update add qemu-guest-agent
|
||||
sudo -E rc-update add nfs
|
||||
sudo -E rc-update add samba
|
||||
sudo -E rc-update add dhcpcd
|
||||
# Remove services related to cloud-init.
|
||||
sudo -E rc-update del cloud-init default
|
||||
sudo -E rc-update del cloud-final default
|
||||
sudo -E rc-update del cloud-config default
|
||||
;;
|
||||
freebsd*)
|
||||
# add virtio things
|
||||
echo 'virtio_load="YES"' | sudo -E tee -a /boot/loader.conf
|
||||
@@ -243,7 +286,7 @@ case "$1" in
|
||||
esac
|
||||
|
||||
case "$1" in
|
||||
archlinux|freebsd*)
|
||||
alpine*|archlinux|freebsd*)
|
||||
true
|
||||
;;
|
||||
*)
|
||||
|
||||
@@ -58,13 +58,21 @@ for ((i=1; i<=VMs; i++)); do
|
||||
fqdn: vm$i
|
||||
|
||||
users:
|
||||
- name: root
|
||||
shell: $BASH
|
||||
- name: zfs
|
||||
sudo: ALL=(ALL) NOPASSWD:ALL
|
||||
shell: $BASH
|
||||
ssh_authorized_keys:
|
||||
- $PUBKEY
|
||||
- name: root
|
||||
shell: /bin/bash
|
||||
sudo: ['ALL=(ALL) NOPASSWD:ALL']
|
||||
- name: zfs
|
||||
shell: /bin/bash
|
||||
sudo: ['ALL=(ALL) NOPASSWD:ALL']
|
||||
ssh_authorized_keys:
|
||||
- $PUBKEY
|
||||
# Workaround for Alpine Linux.
|
||||
lock_passwd: false
|
||||
passwd: '*'
|
||||
|
||||
packages:
|
||||
- sudo
|
||||
- bash
|
||||
|
||||
growpart:
|
||||
mode: auto
|
||||
|
||||
@@ -95,11 +95,18 @@ case "$1" in
|
||||
;;
|
||||
esac
|
||||
|
||||
# enable io_uring on el9/el10
|
||||
# Distribution-specific settings.
|
||||
case "$1" in
|
||||
almalinux9|almalinux10|centos-stream*)
|
||||
# Enable io_uring on Enterprise Linux 9 and 10.
|
||||
sudo sysctl kernel.io_uring_disabled=0 > /dev/null
|
||||
;;
|
||||
alpine*)
|
||||
# Ensure `/etc/zfs/zpool.cache` exists.
|
||||
sudo mkdir -p /etc/zfs
|
||||
sudo touch /etc/zfs/zpool.cache
|
||||
sudo chmod 644 /etc/zfs/zpool.cache
|
||||
;;
|
||||
esac
|
||||
|
||||
# run functional testings and save exitcode
|
||||
|
||||
Reference in New Issue
Block a user