From: Ilya Shipitsin Date: Mon, 19 Feb 2024 21:14:59 +0000 (+0100) Subject: CI: enable monthly build only test on netbsd-9.3 X-Git-Tag: v3.0-dev5~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6142a3fad735f74dd58ea4a780ec0e7fb9394740;p=thirdparty%2Fhaproxy.git CI: enable monthly build only test on netbsd-9.3 it is interesting to try https://github.com/vmactions/netbsd-vm actions --- diff --git a/.github/workflows/netbsd.yml b/.github/workflows/netbsd.yml new file mode 100644 index 0000000000..e34fe7621c --- /dev/null +++ b/.github/workflows/netbsd.yml @@ -0,0 +1,22 @@ +name: NetBSD + +on: + schedule: + - cron: "0 0 25 * *" + +jobs: + gcc: + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: "Checkout repository" + uses: actions/checkout@v4 + + - name: "Build on VM" + uses: vmactions/netbsd-vm@v1 + with: + prepare: | + /usr/sbin/pkg_add gmake pcre2 + run: | + gmake CC=gcc TARGET=netbsd USE_OPENSSL=1 USE_LUA=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_PROMEX=1 USE_ZLIB=1