Artifact 7e76f12fa85c55b0a9fd80c2b3aca2ad1c48d5e6d1e51cd743f199fe53a6f371:
- File
.github/workflows/openbsd.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: 581) [annotate] [blame] [check-ins using] [more...]
name: openbsd 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/openbsd-vm@v0 with: usesh: true copyback: false prepare: | pkg_add autoconf-2.71 automake-1.16.5 gnutls pkgconf run: | ./autogen.sh ./configure OBJC=clang ${{ matrix.configure_flags }} make -j4 make check make install