Files
bgpq4/.github/workflows/matrixbuild.yml
Robert Scheck 8b804f83fd Update matrixbuild to current Linux distributions (#55)
Previously, at the time of #50, broken Fedora Rawhide, 35, CentOS
Stream 9 (development) have been fixed. Switch Alpine 3.14 -> 3.15.
2022-02-06 09:30:05 +01:00

30 lines
772 B
YAML

name: Build and test (linux matrix)
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dockerenv:
- debian:bookworm
- debian:bullseye
- debian:buster
- ubuntu:focal
- ubuntu:bionic
- fedora/fedora:36
- fedora/fedora:35
- fedora/fedora:34
- centos/centos:stream9
- centos/centos:stream8
- centos/centos:7
- rockylinux/rockylinux:8
- alpine:edge
- alpine:3.15
steps:
- uses: actions/checkout@v1
- name: Run build on ${{matrix.dockerenv}}
run: docker build . --file .github/images/${{matrix.dockerenv}}.Dockerfile --build-arg image=${{matrix.dockerenv}}