ObjFW  Artifact [1b12576ef6]

Artifact 1b12576ef63d9a85f899a6565297b52acfb8ed128f4aa13ee2d26888b6bd9f77:

  • File .github/workflows/openbsd.yml — part of check-in [92c9cd521e] at 2025-04-29 13:50:21 on branch trunk — GitHub Actions: Fix OpenBSD (user: js size: 586) [more...]

name: openbsd
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/openbsd-vm@v1
      with:
        usesh: true
        copyback: false
        prepare: |
          pkg_add autoconf-2.72p0 automake-1.17 gnutls pkgconf
        run: |
          ./autogen.sh
          ./configure OBJC=clang ${{ matrix.configure_flags }}
          make -j4
          make check
          make install