mirror of
https://github.com/libfuse/libfuse.git
synced 2026-07-07 14:47:41 +08:00
cd88eb4da1
Bumps [vmactions/freebsd-vm](https://github.com/vmactions/freebsd-vm) from 1.4.8 to 1.5.0. - [Release notes](https://github.com/vmactions/freebsd-vm/releases) - [Commits](https://github.com/vmactions/freebsd-vm/compare/b84ab5559b5a1bb4b8ee2737d2506a16e1737636...5a72679103d223925653750faa878a143340fbd0) --- updated-dependencies: - dependency-name: vmactions/freebsd-vm dependency-version: 1.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
732 B
YAML
33 lines
732 B
YAML
---
|
|
# TODO: integrate into matrix.os in pr-ci.yml
|
|
# TODO: add NetBSD and DragonFlyBSD
|
|
name: 'Build (FreeBSD)'
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- 'fuse-[0-9]+.[0-9]+*'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- 'fuse-[0-9]+.[0-9]+*'
|
|
|
|
jobs:
|
|
build_bsd:
|
|
runs-on: ubuntu-latest
|
|
name: Build under FreeBSD
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
- name: Build
|
|
uses: vmactions/freebsd-vm@5a72679103d223925653750faa878a143340fbd0 # v1
|
|
with:
|
|
usesh: true
|
|
prepare: |
|
|
pkg install -y meson ninja
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
meson setup ..
|
|
ninja -v
|
|
... |