Skip to content

test: increase snprintf safety #165

test: increase snprintf safety

test: increase snprintf safety #165

Workflow file for this run

name: BSD
on:
pull_request:
branches:
- master
push:
branches:
- master
tags:
- 'v*'
workflow_dispatch:
jobs:
freebsd:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Build
uses: vmactions/freebsd-vm@v1
with:
# BSD make -j has a mandatory argument
# Linux make -j means infinite jobs
run: |
pkg update
pkg install -y autoconf automake bison flex pkgconf
./autogen.sh
./configure
make -j $(nproc)
make -j $(nproc) dist-xz
make -j $(nproc) install