]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: Make the h2spec workflow more consistent with the VTest workflow
authorTim Duesterhus <tim@bastelstu.be>
Fri, 13 Nov 2020 19:15:53 +0000 (20:15 +0100)
committerWilly Tarreau <w@1wt.eu>
Tue, 17 Nov 2020 10:55:48 +0000 (11:55 +0100)
This PR aims to make the workflow more consistent, by reusing the same wording
for the step names and the same commands to make it look like the vtest
workflow as much as possible.

It was renamed to compliance.yml to match the human readable name better. This
also allows to extend the workflow with other compliance tools later on, nicely
grouping those jobs together in a single file.

No functional changes have been made.

.github/workflows/compliance.yml [new file with mode: 0644]
.github/workflows/h2spec.yml [deleted file]

diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml
new file mode 100644 (file)
index 0000000..d778ee4
--- /dev/null
@@ -0,0 +1,52 @@
+
+name: Spec Compliance
+
+on:
+  schedule:
+    - cron: "0 0 * * 3"
+
+jobs:
+  h2spec:
+    name: h2spec
+    runs-on: ${{ matrix.os }}
+    strategy:
+      matrix:
+        include:
+        - TARGET: linux-glibc
+          CC: gcc
+          os: ubuntu-latest
+    env:
+      H2SPEC_VERSION: '2.6.0'
+    steps:
+    - uses: actions/checkout@v1
+    - name: Install h2spec
+      run: |
+        curl -fsSL https://github.com/summerwind/h2spec/releases/download/v${H2SPEC_VERSION}/h2spec_linux_amd64.tar.gz -o h2spec.tar.gz
+        tar xvf h2spec.tar.gz
+        sudo install -m755 h2spec /usr/local/bin/h2spec
+    - name: Compile HAProxy with ${{ matrix.CC }}
+      run: |
+        make -j$(nproc) all \
+          ERR=1 \
+          TARGET=${{ matrix.TARGET }} \
+          CC=${{ matrix.CC }} \
+          USE_OPENSSL=1
+        sudo make install
+    - name: Show HAProxy version
+      id: show-version
+      run: |
+        echo "::group::Show dynamic libraries."
+        if command -v ldd > /dev/null; then
+          # Linux
+          ldd $(which haproxy)
+        else
+          # macOS
+          otool -L $(which haproxy)
+        fi
+        echo "::endgroup::"
+        haproxy -vv
+        echo "::set-output name=version::$(haproxy -v |awk 'NR==1{print $3}')"
+    - name: Launch HAProxy ${{ steps.show-version.outputs.version }}
+      run: haproxy -f .github/h2spec.config -D
+    - name: Run h2spec
+      run: h2spec -Svtk -h 127.0.0.1 -p 8443
diff --git a/.github/workflows/h2spec.yml b/.github/workflows/h2spec.yml
deleted file mode 100644 (file)
index cd4d246..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-
-name: compliance
-
-on:
-  schedule:
-    - cron: "0 0 * * 3"
-
-jobs:
-  h2spec:
-
-    runs-on: ubuntu-latest
-
-    steps:
-    - uses: actions/checkout@v1
-    - name: build haproxy
-      run: |
-        make -j3 CC=gcc ERR=1 TARGET=linux-glibc USE_OPENSSL=1
-    - name: start haproxy
-      run: |
-        ./haproxy -f .github/h2spec.config -D
-    - name: download h2spec
-      run: |
-        wget https://github.com/summerwind/h2spec/releases/download/v2.6.0/h2spec_linux_amd64.tar.gz
-        tar xvf h2spec_linux_amd64.tar.gz
-    - name: run h2spec
-      run: |
-        ./h2spec -Svtk -h 127.0.0.1 -p 8443