mirror of
https://github.com/bgp/bgpq4
synced 2025-02-28 08:53:11 +00:00
Previously, at the time of #50, broken Fedora Rawhide, 35, CentOS Stream 9 (development) have been fixed. Switch Alpine 3.14 -> 3.15.
30 lines
772 B
YAML
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}}
|