2024-02-19 21:14:59 +00:00
|
|
|
name: NetBSD
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 25 * *"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
gcc:
|
|
|
|
runs-on: ubuntu-latest
|
2024-05-05 11:41:32 +00:00
|
|
|
if: ${{ github.repository_owner == 'haproxy' }}
|
2024-02-19 21:14:59 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
steps:
|
|
|
|
- name: "Checkout repository"
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: "Build on VM"
|
|
|
|
uses: vmactions/netbsd-vm@v1
|
|
|
|
with:
|
|
|
|
prepare: |
|
2024-04-30 14:11:26 +00:00
|
|
|
/usr/sbin/pkg_add gmake curl
|
2024-02-19 21:14:59 +00:00
|
|
|
run: |
|
2024-07-21 11:52:08 +00:00
|
|
|
gmake CC=gcc TARGET=netbsd ERR=1 USE_OPENSSL=1 USE_LUA=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_PROMEX=1 USE_ZLIB=1
|