Artifact 5d6e9c60e9faf636fc479a003c15fd34ea7e9131c1b7ac0eee244755f9287b77:
- File .github/workflows/netbsd.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: 588) [more...]
name: netbsd 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/netbsd-vm@v1 with: usesh: true copyback: false prepare: | /usr/sbin/pkg_add autoconf automake clang gnutls pkgconf run: | ./autogen.sh ./configure OBJC=clang ${{ matrix.configure_flags }} make -j4 make check make install