mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-18 18:19:39 -05:00
The following directories were moved from contrib/ to dev/ to make their use case a bit clearer. In short, only developers are expected to ever go there. The makefile was updated to build and clean from these ones. base64/ flags/ hpack/ plug_qdisc/ poll/ tcploop/ trace/
24 lines
422 B
YAML
24 lines
422 B
YAML
name: Contrib
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Compile contrib/halog/halog
|
|
run: |
|
|
make contrib/halog/halog
|
|
- name: Compile dev/flags/flags
|
|
run: |
|
|
make dev/flags/flags
|
|
- name: Compile dev/poll/poll
|
|
run: |
|
|
make dev/poll/poll
|
|
- name: Compile dev/hpack
|
|
run: |
|
|
make -C dev/hpack
|