summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorWilly Tarreau <w@1wt.eu>2022-11-14 11:03:18 +0100
committerWilly Tarreau <w@1wt.eu>2022-11-14 11:14:02 +0100
commita051816c03dacc611b0fd3b8f6247beb6d658abc (patch)
tree8ab8ad2af9f56e68ae2de5f8fc75109692992ce1 /.github
parenteedcea8b900b2397cbfcfe54f458f7fe1bbe6b35 (diff)
downloadhaproxy-a051816c03dacc611b0fd3b8f6247beb6d658abc.tar.gz
CI: emit the compiler's version in the build reports
Some occasional builds fail only on a specific platform and being able to figure the exact compiler version used there is crucial. It's not easy to guess from the rest of the output, so let's add it before the platform-specific defines, which suit the same needs.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/vtest.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml
index 75c79c25a..fb7b1d968 100644
--- a/.github/workflows/vtest.yml
+++ b/.github/workflows/vtest.yml
@@ -100,6 +100,9 @@ jobs:
run: make -C addons/wurfl/dummy
- name: Compile HAProxy with ${{ matrix.CC }}
run: |
+ echo "::group::Show compiler's version"
+ echo | ${{ matrix.CC }} -v
+ echo "::endgroup::"
echo "::group::Show platform specific defines"
echo | ${{ matrix.CC }} -dM -xc -E -
echo "::endgroup::"