From 66e1a11cca774341c729971642e9285f7c88e368 Mon Sep 17 00:00:00 2001 From: Willem Toorop Date: Fri, 12 Jul 2024 15:11:29 +0200 Subject: [PATCH] Okay, BSDs just dont run... --- .github/workflows/testsuite.yml | 46 ++++++++++++++++----------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index a6eaa2dc..7c540475 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -89,29 +89,29 @@ jobs: - name: "${{ matrix.platform }}: Build and test" run: docker run --rm --interactive --mount type=bind,source=$(pwd),target=/host ${{ matrix.platform }}/alpine sh -c "apk add make gcc libc-dev libtool automake autoconf openssl-dev m4 indent bash bind-tools && cd /host && libtoolize -vci && autoreconf -vfi && ./configure && make test" - BSDs: - name: ${{ matrix.os.dispname }} ${{ matrix.os.version }} - - runs-on: macos-latest - - strategy: - fail-fast: false - matrix: - os: - - name: freebsd - dispname: FreeBSD - version: '13.0' - pkginstall: pkg install -y libtool automake bind-tools gmake gindent - env: - configure_args: - - # OpenBSD seems to require explicit auto* versions. - - name: openbsd - dispname: OpenBSD - version: '7.1' - pkginstall: pkg_add -v libtool gmake gindent automake-1.16.3 autoconf-2.71 - env: AUTOCONF_VERSION=2.71 AUTOMAKE_VERSION=1.16 - configure_args: --disable-dane-verify +# BSDs: +# name: ${{ matrix.os.dispname }} ${{ matrix.os.version }} +# +# runs-on: macos-latest +# +# strategy: +# fail-fast: false +# matrix: +# os: +# - name: freebsd +# dispname: FreeBSD +# version: '13.0' +# pkginstall: pkg install -y libtool automake bind-tools gmake gindent +# env: +# configure_args: +# +# # OpenBSD seems to require explicit auto* versions. +# - name: openbsd +# dispname: OpenBSD +# version: '7.1' +# pkginstall: pkg_add -v libtool gmake gindent automake-1.16.3 autoconf-2.71 +# env: AUTOCONF_VERSION=2.71 AUTOMAKE_VERSION=1.16 +# configure_args: --disable-dane-verify steps: - uses: actions/checkout@main