1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
name: unit-tests
on:
push:
pull_request:
schedule:
- cron: 0 4 * * MON,FRI
jobs:
OS:
runs-on: ubuntu-24.04
permissions:
contents: read
strategy:
fail-fast: false
matrix:
scenario:
- apt-docker.io/amd64/ubuntu:devel
- apt-docker.io/amd64/ubuntu:latest
- apt-docker.io/amd64/ubuntu:rolling
- apt-docker.io/i386/debian:testing
- apt-docker.io/amd64/debian:testing
- dnf-registry.fedoraproject.org/fedora:latest
- dnf-registry.fedoraproject.org/fedora:rawhide
- dnf-quay.io/centos/centos:stream10-development
- alpine-docker.io/alpine
- alpine-docker.io/i386/alpine
- alpine@gudev-docker.io/alpine
- nix-docker.io/nixos/nix
# https://github.com/martinpitt/umockdev/issues/276
# - gentoo-
include:
- scenario: alpine@gudev-alpine
env: EXTRA_PACKAGES=libgudev-dev
- scenario: dnf-registry.fedoraproject.org/fedora:latest
env: SYSTEMD_MAIN=1
timeout-minutes: 30
steps:
- name: Clone repository
uses: actions/checkout@v5
with:
# need this to also fetch tags
fetch-depth: 0
- name: Run unit tests
run: |
set -eux
scenario=${{ matrix.scenario }}
script=${scenario%%-*}
script=${script%@*}
image=${scenario#*-}
${{ matrix.env }} BRITTLE_TESTS=1 tests/run-${script} $image
|