Artifact 9108c5901d375c8bc6b917e186cf290f7a3c406e310ebafb91f57bbd0512def8:
- File
.github/workflows/netbsd-gcc.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: 584) [annotate] [blame] [check-ins using] [more...]
name: netbsd-gcc 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 gnutls pkgconf run: | ./autogen.sh ./configure OBJC=gcc ${{ matrix.configure_flags }} make -j4 make check make install