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 25df51f commit 039486fCopy full SHA for 039486f
.github/workflows/test.yml
@@ -90,6 +90,27 @@ jobs:
90
# Run a full build to ensure that works
91
- run: nix build
92
93
+ test-x86_64-freebsd:
94
+ runs-on: ubuntu-latest
95
+ steps:
96
+ - name: Checkout code
97
+ uses: actions/checkout@v4
98
+
99
+ - name: test
100
+ uses: vmactions/freebsd-vm@v1
101
+ with:
102
+ usesh: true
103
+ prepare: |
104
+ sed 's/quarterly/latest/g' /etc/pkg/FreeBSD.conf
105
+ pkg update -f
106
+ pkg upgrade -y
107
+ pkg install -y wget
108
109
+ run: |
110
+ wget https://ziglang.org/builds/zig-x86_64-freebsd-0.15.0-dev.777+6810ffa42.tar.xz
111
+ tar -xf zig-x86_64-freebsd-0.15.0-dev.777+6810ffa42.tar.xz
112
+ zig-x86_64-freebsd-0.15.0-dev.777+6810ffa42/zig build test --summary all
113
114
test-x86_64-windows:
115
strategy:
116
matrix:
0 commit comments