Artifact 9828c9c46331105363efecfb6c400f7c9ddbea746dd41363aba5b8dd268714f4:
- File
.github/workflows/freebsd.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: 576) [annotate] [blame] [check-ins using] [more...]
name: freebsd 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/freebsd-vm@v0 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