]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: add Illumos scheduled workflow
authorIlia Shipitsin <chipitsine@gmail.com>
Sun, 5 May 2024 11:39:33 +0000 (13:39 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 6 May 2024 06:26:05 +0000 (08:26 +0200)
this is very initial build only implementation.

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

diff --git a/.github/workflows/illumos.yml b/.github/workflows/illumos.yml
new file mode 100644 (file)
index 0000000..0259bf1
--- /dev/null
@@ -0,0 +1,23 @@
+name: Illumos
+
+on:
+  schedule:
+    - cron: "0 0 25 * *"
+
+jobs:
+  gcc:
+    runs-on: ubuntu-latest
+    if: ${{ github.repository_owner == 'haproxy' }}
+    permissions:
+      contents: read
+    steps:
+      - name: "Checkout repository"
+        uses: actions/checkout@v4
+
+      - name: "Build on VM"
+        uses: vmactions/solaris-vm@v1
+        with:
+          prepare: |
+            pkg install gcc make
+          run: |
+            gmake CC=gcc TARGET=solaris USE_OPENSSL=1 USE_PROMEX=1