mirror of
https://github.com/pavel-odintsov/fastnetmon
synced 2026-08-03 09:44:11 +02:00
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
29 lines
685 B
YAML
29 lines
685 B
YAML
name: Run docker builds
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build_in_docker:
|
|
strategy:
|
|
matrix:
|
|
# gcc-13+,clang-16+ will fail due broken capnp supplied with debian bookworm
|
|
os: [debian, debian-gcc-12, debian-clang-15, ubuntu-24.04, ubuntu-24.10]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: chdir
|
|
run: cd $GITHUB_WORKSPACE
|
|
|
|
- name: Build Docker image
|
|
run: docker build -t debian -f tests/Dockerfile.${{ matrix.os }} .
|