-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests on OpenBSD, FreeBSD and NetBSD. Both x86-64 and arm64 are used.
- Loading branch information
Ioannis Konstantelias
committed
Oct 24, 2024
1 parent
ab3bb07
commit 22030ea
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: "Build on *BSD" | ||
|
||
on: | ||
push: {} | ||
pull_request: {} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
os: | ||
- name: openbsd | ||
architecture: x86-64 | ||
version: '7.5' | ||
|
||
#- name: openbsd | ||
# architecture: arm64 | ||
# version: '7.6' | ||
|
||
- name: freebsd | ||
architecture: x86-64 | ||
version: '14.0' | ||
|
||
#- name: freebsd | ||
# architecture: arm64 | ||
# version: '14.1' | ||
|
||
- name: netbsd | ||
architecture: x86-64 | ||
version: '9.4' | ||
|
||
#- name: netbsd | ||
# architecture: arm64 | ||
# version: '10.0' | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build on ${{ matrix.os.name }} / ${{ matrix.os.architecture }} | ||
uses: cross-platform-actions/action@v0.25.0 | ||
with: | ||
environment_variables: MY_ENV1 MY_ENV2 | ||
operating_system: ${{ matrix.os.name }} | ||
architecture: ${{ matrix.os.architecture }} | ||
version: ${{ matrix.os.version }} | ||
shell: bash | ||
memory: 5G | ||
cpu_count: 4 | ||
run: | | ||
pkg install autoconf | ||
autoreconf -vfi | ||
./configure | ||
make |