From: Ilia Shipitsin Date: Sun, 5 May 2024 11:39:33 +0000 (+0200) Subject: CI: add Illumos scheduled workflow X-Git-Tag: v3.0-dev11~42 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fab5a23731b3b07bc2d2262fb54c6cfba0cc0803;p=thirdparty%2Fhaproxy.git CI: add Illumos scheduled workflow this is very initial build only implementation. --- diff --git a/.github/workflows/illumos.yml b/.github/workflows/illumos.yml new file mode 100644 index 0000000000..0259bf1d51 --- /dev/null +++ b/.github/workflows/illumos.yml @@ -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