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