]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: github actions: build several popular "contrib" tools
authorIlya Shipitsin <chipitsine@gmail.com>
Wed, 30 Dec 2020 10:25:25 +0000 (15:25 +0500)
committerWilly Tarreau <w@1wt.eu>
Tue, 5 Jan 2021 16:44:00 +0000 (17:44 +0100)
this adds "halog", "flags" and "poll" builds. builds are done in
separate steps for better failure identification

.github/workflows/contrib.yml [new file with mode: 0644]

diff --git a/.github/workflows/contrib.yml b/.github/workflows/contrib.yml
new file mode 100644 (file)
index 0000000..39556e1
--- /dev/null
@@ -0,0 +1,24 @@
+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 contrib/debug/flags
+      run: |
+        make contrib/debug/flags
+    - name: Compile contrib/debug/poll
+      run: |
+        make contrib/debug/poll
+    - name: Compile contrib/hpack
+      run: |
+        make -C contrib/hpack