Artifact 4657fe90021d087ddd00300f6709e2ce888d0a899df5eee3b48a5afdcc7ab25a:
- File
.github/workflows/freebsd.yml
— part of check-in
[5c384cac67]
at
2024-01-28 13:43:45
on branch trunk
— GitHub Actions: Restore *BSD
The v1 of the vmactions/*bsd-vm actions seem to be a complete rewrite
that is much faster and hopefully also more reliable. (user: js, size: 581) [annotate] [blame] [check-ins using] [more...]
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 run: | ./autogen.sh ./configure OBJC=clang ${{ matrix.configure_flags }} make -j4 make check make install