From e008b55f98b210f87f2f7dfae6de330ca2416cbd Mon Sep 17 00:00:00 2001 From: "D. Bohdan" Date: Thu, 3 Oct 2024 19:13:30 +0000 Subject: [PATCH] ci(github): test on ARM64; upgrade to NetBSD 10 --- .github/workflows/ci.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 437e3fd..81373a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,14 +6,31 @@ jobs: strategy: matrix: os: + - name: freebsd + architecture: arm64 + version: '14.1' + host: ubuntu-latest + - name: freebsd architecture: x86-64 version: '14.1' host: ubuntu-latest + + - name: netbsd + architecture: arm64 + version: '10.0' + host: ubuntu-latest + - name: netbsd architecture: x86-64 - version: '9.3' + version: '10.0' + host: ubuntu-latest + + - name: openbsd + architecture: arm64 + version: '7.5' host: ubuntu-latest + - name: openbsd architecture: x86-64 version: '7.5'