File .github/workflows/freebsd.yml artifact 533c8c4dc4 part of check-in 256c4a696f
name: freebsd on: [push, pull_request] jobs: tests: runs-on: ubuntu-latest strategy: matrix: configure_flags: - - --disable-shared - --with-tls=gnutls steps: - uses: actions/checkout@v4 - uses: vmactions/freebsd-vm@v1 with: usesh: true copyback: false prepare: | pkg install -y autoconf automake gnutls pkgconf kldload sctp run: | ./autogen.sh ./configure OBJC=clang ${{ matrix.configure_flags }} make -j4 make check make install