2019-12-17 11:22:10 +01:00
|
|
|
name: Build and test (linux matrix)
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
dockerenv:
|
2021-08-30 13:09:29 +02:00
|
|
|
- debian:bookworm
|
|
|
|
- debian:bullseye
|
2019-12-17 11:22:10 +01:00
|
|
|
- debian:buster
|
2022-08-03 10:36:45 +02:00
|
|
|
- ubuntu:jammy
|
2021-08-30 13:09:29 +02:00
|
|
|
- ubuntu:focal
|
2019-12-17 11:22:10 +01:00
|
|
|
- ubuntu:bionic
|
2022-08-03 10:36:45 +02:00
|
|
|
- fedora/fedora:37
|
2022-02-06 09:30:05 +01:00
|
|
|
- fedora/fedora:36
|
|
|
|
- fedora/fedora:35
|
|
|
|
- centos/centos:stream9
|
2021-08-30 13:09:29 +02:00
|
|
|
- centos/centos:stream8
|
|
|
|
- centos/centos:7
|
2022-08-03 10:36:45 +02:00
|
|
|
- rockylinux/rockylinux:9
|
2021-08-30 13:09:29 +02:00
|
|
|
- rockylinux/rockylinux:8
|
|
|
|
- alpine:edge
|
2022-08-03 10:36:45 +02:00
|
|
|
- alpine:3.16
|
2019-12-17 11:22:10 +01:00
|
|
|
steps:
|
2022-11-05 00:01:30 +01:00
|
|
|
- uses: actions/checkout@v3
|
2019-12-17 11:22:10 +01:00
|
|
|
- name: Run build on ${{matrix.dockerenv}}
|
|
|
|
run: docker build . --file .github/images/${{matrix.dockerenv}}.Dockerfile --build-arg image=${{matrix.dockerenv}}
|