Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
os: [ macos-latest, ubuntu-24.04-arm, ubuntu-latest ]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: make
- name: Unit tests
run: |
Expand Down
24 changes: 15 additions & 9 deletions .github/workflows/cross-platform-actions.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: BSD CI
name: BSD, Haiku CI

on: [push, pull_request]

Expand All @@ -7,27 +7,33 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
operating_system: [ freebsd, netbsd, openbsd ]
operating_system: [ freebsd, haiku, netbsd, openbsd ]
architecture: [ arm64, x86-64 ]
include:
- operating_system: freebsd
version: '14.3'
pkginstall: sudo pkg update && sudo pkg install -y gmake
version: '15.0'
pkginstall: sudo pkg update && sudo pkg install -y gmake && export MAKE=gmake
- operating_system: haiku
version: 'r1beta5'
pkginstall: pkgman refresh
- operating_system: netbsd
version: '10.1'
pkginstall: sudo pkgin update && sudo pkgin -y install clang gmake
pkginstall: sudo pkgin update && sudo pkgin -y install clang gmake && export MAKE=gmake
- operating_system: openbsd
version: '7.8'
pkginstall: sudo pkg_add -u && sudo pkg_add gmake
pkginstall: sudo pkg_add -u && sudo pkg_add gmake && export MAKE=gmake
exclude:
- operating_system: haiku
architecture: arm64

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: cross-platform-actions/action@v0.30.0
- uses: cross-platform-actions/action@v0.32.0
with:
operating_system: ${{ matrix.operating_system }}
architecture: ${{ matrix.architecture }}
version: ${{ matrix.version }}
run: |
${{ matrix.pkginstall }}
gmake CC=cc
${MAKE:-make} CC=cc
2 changes: 1 addition & 1 deletion .github/workflows/msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
shell: msys2 {0}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
Expand Down