-
Notifications
You must be signed in to change notification settings - Fork 58
46 lines (43 loc) · 1.24 KB
/
tests.yml
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
name: unit-tests
on:
push:
pull_request:
schedule:
- cron: 0 4 * * MON,FRI
jobs:
OS:
runs-on: ubuntu-latest
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
- alpine-docker.io/alpine
- alpine-docker.io/i386/alpine
- [email protected]/alpine
- nix-docker.io/nixos/nix
- gentoo-
include:
- scenario: alpine@gudev-alpine
env: EXTRA_PACKAGES=libgudev-dev
timeout-minutes: 30
steps:
- name: Clone repository
uses: actions/checkout@v4
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