Skip to content

Commit

Permalink
Add new CI job specifically for OpenBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishcoleman committed Mar 30, 2024
1 parent 5e446e6 commit 17e9057
Showing 1 changed file with 40 additions and 3 deletions.
43 changes: 40 additions & 3 deletions .github/workflows/slow_bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ jobs:
- name: freebsd
architecture: x86-64
version: '13.2'
- name: openbsd
architecture: x86-64
version: '7.3'

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -54,3 +51,43 @@ jobs:
./autogen.sh
./configure CC=clang
gmake all
test_openbsd:
name: Test OpenBSD
runs-on: ubuntu-latest
strategy:
matrix:
os:
- name: openbsd
architecture: x86-64
version: '7.3'

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fix Checkout
run: |
git fetch --force --tags
- name: Test on ${{ matrix.os.name }}
uses: cross-platform-actions/[email protected]
with:
operating_system: ${{ matrix.os.name }}
architecture: ${{ matrix.os.architecture }}
version: ${{ matrix.os.version }}
shell: bash
memory: 5G
cpu_count: 4
run: |
sudo pkg_add \
autoconf-2.71 \
automake-1.16.5 \
git \
gmake \
python3 \
jq \
bash
AUTOCONF_VERSION=2.71 AUTOMAKE_VERSION=1.16./autogen.sh
./configure CC=clang
gmake all

0 comments on commit 17e9057

Please sign in to comment.