Skip to content

fix FreeBSD/NetBSD CI: install and use gmake for GNU make compatibility #16

fix FreeBSD/NetBSD CI: install and use gmake for GNU make compatibility

fix FreeBSD/NetBSD CI: install and use gmake for GNU make compatibility #16

Workflow file for this run

name: build envps
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: build
run: make
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: make
build-freebsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
uses: cross-platform-actions/action@v0.32.0
with:
operating_system: freebsd
version: '14.2'
run: sudo pkg install -y gmake && gmake
build-netbsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
uses: cross-platform-actions/action@v0.32.0
with:
operating_system: netbsd
version: '10.1'
run: sudo pkgin -y install gmake && gmake