mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2026-04-18 12:14:56 +02:00
This makes it much easier to add additional "smoke-tests" to contrib.yml. The previous set-up also didn't allow to easily see all failures when a single build fails, because it would abort after any failed step.
31 lines
570 B
YAML
31 lines
570 B
YAML
name: Contrib
|
|
|
|
on:
|
|
push:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
compile:
|
|
name: ${{ matrix.name }}
|
|
runs-on: ubuntu-slim
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- name: dev/flags/
|
|
targets:
|
|
- dev/flags/flags
|
|
- name: dev/hpack/
|
|
targets:
|
|
- dev/hpack/decode
|
|
- dev/hpack/gen-enc
|
|
- dev/hpack/gen-rht
|
|
- name: dev/poll/
|
|
targets:
|
|
- dev/poll/poll
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- run: make ${{ join(matrix.targets, ' ') }}
|