mirror of
https://github.com/bgp/bgpq4.git
synced 2024-05-11 05:55:05 +00:00
32 lines
833 B
YAML
32 lines
833 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:jammy
|
|
- ubuntu:focal
|
|
- ubuntu:bionic
|
|
- fedora/fedora:37
|
|
- fedora/fedora:36
|
|
- fedora/fedora:35
|
|
- centos/centos:stream9
|
|
- centos/centos:stream8
|
|
- centos/centos:7
|
|
- rockylinux/rockylinux:9
|
|
- rockylinux/rockylinux:8
|
|
- alpine:edge
|
|
- alpine:3.16
|
|
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}}
|