We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bdcd92 commit 757de0aCopy full SHA for 757de0a
.github/workflows/vagrant.yml
@@ -29,3 +29,27 @@ jobs:
29
30
run meson setup build -Dprefix=/ -Dmandir=/man -Dbindir=/ --buildtype=release
31
run meson install -C build
32
+
33
+ build-on-freebsd:
34
+ runs-on: macos-13
35
+ steps:
36
+ - uses: actions/checkout@v4
37
+ with:
38
+ submodules: recursive
39
40
+ - name: Install Virtualbox
41
+ run: brew install --cask virtualbox
42
43
+ - name: Install Vagrant
44
+ run: brew install --cask vagrant
45
46
+ - uses: leleliu008/github-actions-vagrant@v2
47
48
+ mem: 2048
49
+ box: freebsd/FreeBSD-15.0-CURRENT
50
+ run: |
51
+ run pkg update
52
+ run pkg install -y meson clang
53
54
+ run meson setup build -Dprefix=/ -Dmandir=/man -Dbindir=/ --buildtype=release
55
+ run meson install -C build
0 commit comments