Hello, this will hopefully prevent regressions on halog.
Ilya
From 57696674aef9431a01db6405cdba8b164162e2b9 Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin <[email protected]> Date: Mon, 21 Dec 2020 17:35:37 +0500 Subject: [PATCH] CI: github actions: build several popular "contrib" tools this adds "halog", "flags" and "poll" builds. builds are done in separate steps for better failure identification --- .github/workflows/vtest.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml index 6d42db8ff..ff290e4c3 100644 --- a/.github/workflows/vtest.yml +++ b/.github/workflows/vtest.yml @@ -89,6 +89,15 @@ jobs: ${{ join(matrix.FLAGS, ' ') }} \ ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/" sudo make install + - name: Compile contrib/halog/halog + run: | + make contrib/halog/halog + - name: Compile contrib/debug/flags + run: | + make contrib/debug/flags + - name: Compile contrib/debug/poll + run: | + make contrib/debug/poll - name: Show HAProxy version id: show-version run: | -- 2.28.0

