mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-03 20:40:17 -05:00
Some checks failed
Linux / alpine:bash (push) Has been cancelled
Linux / amazonlinux:2 (push) Has been cancelled
Linux / amazonlinux:2023 (push) Has been cancelled
Linux / debian:11 (linux/386) (push) Has been cancelled
Linux / debian:11 (push) Has been cancelled
Linux / debian:12 (linux/386) (push) Has been cancelled
Linux / debian:12 (push) Has been cancelled
Linux / debian:13 (push) Has been cancelled
Linux / fedora:41 (push) Has been cancelled
Linux / fedora:42 (push) Has been cancelled
Linux / fedora:43 (push) Has been cancelled
Linux / opensuse/leap:15.6 (push) Has been cancelled
Linux / opensuse/leap:16.0 (push) Has been cancelled
Linux / registry.suse.com/bci/bci-base:16.0 (push) Has been cancelled
Linux / registry.suse.com/suse/sle15:15.6 (push) Has been cancelled
Linux / registry.suse.com/suse/sle15:15.7 (push) Has been cancelled
Linux / rockylinux/rockylinux:10 (push) Has been cancelled
Linux / rockylinux:8 (push) Has been cancelled
Linux / rockylinux:9 (push) Has been cancelled
Linux / ubuntu:22.04 (push) Has been cancelled
Linux / ubuntu:24.04 (push) Has been cancelled
Linux / ubuntu:25.04 (push) Has been cancelled
Linux / ubuntu:25.10 (push) Has been cancelled
85 lines
2.3 KiB
YAML
85 lines
2.3 KiB
YAML
name: Linux
|
|
|
|
on: push
|
|
|
|
concurrency:
|
|
group: linux-${{ github.event_name == 'push' && github.sha || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
linux:
|
|
name: ${{ matrix.distro }}${{ matrix.platform != 'linux/amd64' && format(' ({0})', matrix.platform) || '' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
max-parallel: 2
|
|
matrix:
|
|
distro:
|
|
# Alpine Linux to build Icinga 2 with LibreSSL, OpenBSD's default.
|
|
# The "alpine:bash" image will be built below based on "alpine:3".
|
|
- alpine:bash
|
|
|
|
- amazonlinux:2
|
|
- amazonlinux:2023
|
|
|
|
# Raspberry Pi OS is close enough to Debian to test just one of them.
|
|
# Its architecture is different, though, and covered by the Docker job.
|
|
- debian:11
|
|
- debian:12
|
|
- debian:13
|
|
|
|
- fedora:41
|
|
- fedora:42
|
|
- fedora:43
|
|
|
|
- opensuse/leap:15.6
|
|
- opensuse/leap:16.0
|
|
|
|
# We don't actually support Rocky Linux as such!
|
|
# We just use that RHEL clone to test the original.
|
|
- rockylinux:8
|
|
- rockylinux:9
|
|
- rockylinux/rockylinux:10
|
|
|
|
- registry.suse.com/suse/sle15:15.6
|
|
- registry.suse.com/suse/sle15:15.7
|
|
- registry.suse.com/bci/bci-base:16.0
|
|
|
|
- ubuntu:22.04
|
|
- ubuntu:24.04
|
|
- ubuntu:25.04
|
|
- ubuntu:25.10
|
|
|
|
platform:
|
|
- linux/amd64
|
|
|
|
include:
|
|
- distro: debian:11
|
|
platform: linux/386
|
|
- distro: debian:12
|
|
platform: linux/386
|
|
|
|
steps:
|
|
- name: Checkout HEAD
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Turn on Problem Matcher
|
|
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
|
|
|
|
- name: Restore/backup ccache
|
|
uses: actions/cache@v5
|
|
with:
|
|
path: ccache
|
|
key: ccache/${{ matrix.distro }}
|
|
|
|
- name: Build Alpine Docker Image
|
|
if: "matrix.distro == 'alpine:bash'"
|
|
run: >-
|
|
docker build --file .github/workflows/alpine-bash.Dockerfile
|
|
--tag alpine:bash `mktemp -d`
|
|
|
|
- name: Build Icinga
|
|
run: >-
|
|
docker run --rm -v "$(pwd):/icinga2" -e DISTRO=${{ matrix.distro }}
|
|
--platform ${{ matrix.platform }} ${{ matrix.distro }} /icinga2/.github/workflows/linux.bash
|