Artifact 2c6f34efc4b5473cf874eeb30d284b76e0a30412f55d87ae4dbdc80e24fe1d58:
- File
.github/workflows/netbsd.yml
— part of check-in
[31cd763da0]
at
2023-04-17 14:54:13
on branch trunk
— GitHub Actions: Significantly reduce *BSD tests
These are quite slow and quite unreliable, meaning it's impossible to
have CI succeed without having to manually restart several tests. (user: js, size: 573) [annotate] [blame] [check-ins using] [more...]
name: netbsd on: [push, pull_request] jobs: tests: runs-on: macos-12 strategy: matrix: configure_flags: - - --disable-shared - --with-tls=gnutls steps: - uses: actions/checkout@v3 - uses: vmactions/netbsd-vm@v0 with: usesh: true copyback: false prepare: | pkg_add autoconf automake clang gnutls pkgconf run: | ./autogen.sh ./configure OBJC=clang ${{ matrix.configure_flags }} make -j4 make check make install