Skip to content

Commit

Permalink
Use GNU make for FreeBSD runner
Browse files Browse the repository at this point in the history
  • Loading branch information
roehling committed Aug 6, 2023
1 parent 1d3dfb4 commit 30c5b8e
Showing 1 changed file with 3 additions and 35 deletions.
38 changes: 3 additions & 35 deletions .github/workflows/bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# permitted in any medium without royalty provided the copyright notice and
# this notice are preserved. This file is offered as-is, without any warranty.
#
name: BSD and Solaris
name: BSD
on:
push:
branches:
Expand All @@ -23,42 +23,10 @@ jobs:
with:
usesh: true
prepare: |
pkg install -y cmake git
pkg install -y cmake git gmake
run: |
mkdir _build
cd _build
cmake .. -DDEVELOPER_BUILD=ON -DWITH_SQLITE=ON -DWITH_REDIS=ON
make VERBOSE=ON
ctest --output-on-failure
openbsd:
runs-on: macos-12
name: OpenBSD
steps:
- uses: actions/checkout@v3
- uses: vmactions/openbsd-vm@v0
with:
usesh: true
prepare: |
pkg_add cmake git
run: |
mkdir _build
cd _build
cmake .. -DDEVELOPER_BUILD=ON -DWITH_SQLITE=ON -DWITH_REDIS=ON
make VERBOSE=ON
ctest --output-on-failure
solaris:
runs-on: macos-12
name: Solaris
steps:
- uses: actions/checkout@v3
- uses: vmactions/solaris-vm@v0
with:
usesh: true
prepare: |
pkgutil -y -i cmake git
run: |
mkdir _build
cd _build
cmake .. -DDEVELOPER_BUILD=ON -DWITH_SQLITE=ON -DWITH_REDIS=ON
make VERBOSE=ON
gmake VERBOSE=ON
ctest --output-on-failure

0 comments on commit 30c5b8e

Please sign in to comment.