mirror of
https://github.com/bgp/bgpq4.git
synced 2024-05-11 05:55:05 +00:00
Debian 12, 11 and 10, Ubuntu 20.04 and 16.04, Fedora 34 and 33, CentOS Stream 8 and CentOS Linux 7, Rocky Linux 8, Alpine Edge and 3.14. Note: Especially CentOS containers are better maintained on Quay.io rather on Docker Hub (likely because it's a Red Hat service). CentOS Linux 8 reaches EOL on 2021-12-31 and is superseeded by Rocky Linux 8 as alternative bug-for-bug compatible RHEL 8 rebuild. Fedora Rawhide, 35 and CentOS Stream 9 (development) are currently broken: https://bugzilla.redhat.com/show_bug.cgi?id=1988199#c13
28 lines
709 B
YAML
28 lines
709 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:34
|
|
- fedora/fedora:33
|
|
- centos/centos:stream8
|
|
- centos/centos:7
|
|
- rockylinux/rockylinux:8
|
|
- alpine:edge
|
|
- alpine:3.14
|
|
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}}
|