From 5ab2fc0f8e7c49f249ba6b290f852e8014fbca4a Mon Sep 17 00:00:00 2001 From: macie Date: Sun, 25 Jun 2023 15:51:55 +0200 Subject: [PATCH] chore: Configure GitHub Action job for OpenBSD --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fabfeda..815f7ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,5 +63,26 @@ jobs: path: ./termrec if-no-files-found: error + openbsd-x86_64: + runs-on: macos-12 + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + - name: Run OpenBSD VM & Build + id: termrec + uses: vmactions/openbsd-vm@v0 + with: + usesh: true + prepare: | + pkg_add gmake + run: | + gmake all + - name: Upload Artifacts + uses: actions/upload-artifact@v2 + with: + name: openbsd-x86_64 + path: ./termrec + if-no-files-found: error