mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-22 04:10:48 +00:00
21ef8b9064
The few hpack development tools are now integrated into the main makefile, which allows to remove the original one which was causing lots of build warnings. A README was added to explain how to build instead.
25 lines
462 B
YAML
25 lines
462 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 dev/hpack/decode dev/hpack/gen-enc dev/hpack/gen-rht
|