mirror of
https://github.com/bgp/bgpq4.git
synced 2024-05-11 05:55:05 +00:00
24 lines
563 B
YAML
24 lines
563 B
YAML
name: Build and test (linux matrix)
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
dockerenv:
|
|
- debian:buster
|
|
- debian:stretch
|
|
- ubuntu:bionic
|
|
- ubuntu:xenial
|
|
- centos:8
|
|
- centos:7
|
|
- fedora:31
|
|
- fedora:30
|
|
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}}
|