mirror of
https://github.com/lovell/sharp.git
synced 2025-12-18 23:05:04 +01:00
Separate build script from install script #4458
The --build-from-source flag is now deprecated and will soon be removed along with the need to define an install script. This will remove a whole category of package manager warnings about install scripts and "built" dependencies. Most people don't need to build sharp from source, but for those that do, a suitable method is now something like: $ npm install package-that-depends-on-sharp $ npm explore sharp -- npm run build
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
freebsd_instance:
|
||||
image_family: freebsd-15-0-snap
|
||||
image_family: freebsd-15-0
|
||||
|
||||
task:
|
||||
name: FreeBSD
|
||||
@@ -9,9 +9,10 @@ task:
|
||||
prerequisites_script:
|
||||
- pkg update -f
|
||||
- pkg upgrade -y
|
||||
- pkg install -y devel/git devel/pkgconf graphics/vips www/node20 www/npm
|
||||
- pkg install -y devel/git devel/pkgconf graphics/vips www/node22 www/npm
|
||||
- pkg-config --modversion vips-cpp
|
||||
install_script:
|
||||
- npm install --build-from-source
|
||||
- npm install
|
||||
- npm run build
|
||||
test_script:
|
||||
- node --test test/unit/io.js
|
||||
|
||||
Reference in New Issue
Block a user