-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: use matrix for building under range of *BSD releases
Adds runs for the most recent supported major versions available via cross-platform-actions.
- Loading branch information
Showing
1 changed file
with
13 additions
and
4 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 |
---|---|---|
|
@@ -42,14 +42,17 @@ jobs: | |
CC: gcc | ||
build-freebsd: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
version: ['13.3', '14.0'] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build in default configuration | ||
uses: cross-platform-actions/[email protected] | ||
with: | ||
operating_system: freebsd | ||
architecture: x86-64 | ||
version: '13.2' | ||
version: ${{ matrix.version }} | ||
run: | | ||
sudo pkg update | ||
sudo pkg install -y gmake fusefs-libs | ||
|
@@ -59,34 +62,40 @@ jobs: | |
with: | ||
operating_system: freebsd | ||
architecture: x86-64 | ||
version: '13.2' | ||
version: ${{ matrix.version }} | ||
run: | | ||
sudo pkg install -y gmake fusefs-libs libublio utf8proc | ||
gmake clean | ||
gmake WITH_UBLIO=system WITH_UTF8PROC=system config all | ||
build-openbsd: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
version: ['7.4'] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
uses: cross-platform-actions/[email protected] | ||
with: | ||
operating_system: openbsd | ||
architecture: x86-64 | ||
version: '7.3' | ||
version: ${{ matrix.version }} | ||
run: | | ||
sudo pkg_add gmake | ||
gmake | ||
build-netbsd: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
version: ['9.3', '10.0'] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
uses: cross-platform-actions/[email protected] | ||
with: | ||
operating_system: netbsd | ||
architecture: x86-64 | ||
version: '9.3' | ||
version: ${{ matrix.version }} | ||
run: | | ||
sudo pkgin update | ||
sudo pkgin -y install gmake fuse | ||
|