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 3278a9a commit e50c0c2Copy full SHA for e50c0c2
.cirrus.yml
.github/workflows/ci.yml
@@ -293,6 +293,26 @@ jobs:
293
path: npm/${{ matrix.platform }}
294
retention-days: 1
295
if-no-files-found: error
296
+ build-freebsd:
297
+ permissions:
298
+ contents: read
299
+ needs: lint
300
+ name: "build-freebsd"
301
+ runs-on: ubuntu-24.04
302
+ steps:
303
+ - uses: actions/checkout@v6
304
+ - uses: vmactions/freebsd-vm@v1
305
+ continue-on-error: true
306
+ with:
307
+ prepare: |
308
+ pkg update -f
309
+ pkg upgrade -y
310
+ pkg install -y devel/git devel/pkgconf graphics/vips www/node22 www/npm
311
+ pkg-config --modversion vips-cpp
312
+ run: |
313
+ npm install
314
+ npm run build
315
+ node --test test/unit/io.js
316
build-emscripten:
317
permissions:
318
contents: read
0 commit comments