mirror of
https://github.com/lovell/sharp.git
synced 2026-02-13 18:16:13 +01:00
Compare commits
2 Commits
3278a9a913
...
1cf4b7f04d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1cf4b7f04d | ||
|
|
e50c0c2e04 |
18
.cirrus.yml
18
.cirrus.yml
@@ -1,18 +0,0 @@
|
|||||||
freebsd_instance:
|
|
||||||
image_family: freebsd-16-0-snap
|
|
||||||
|
|
||||||
task:
|
|
||||||
name: FreeBSD
|
|
||||||
env:
|
|
||||||
IGNORE_OSVERSION: yes
|
|
||||||
skip_notifications: true
|
|
||||||
prerequisites_script:
|
|
||||||
- pkg update -f
|
|
||||||
- pkg upgrade -y
|
|
||||||
- pkg install -y devel/git devel/pkgconf graphics/vips www/node22 www/npm
|
|
||||||
- pkg-config --modversion vips-cpp
|
|
||||||
install_script:
|
|
||||||
- npm install
|
|
||||||
- npm run build
|
|
||||||
test_script:
|
|
||||||
- node --test test/unit/io.js
|
|
||||||
25
.github/workflows/ci.yml
vendored
25
.github/workflows/ci.yml
vendored
@@ -117,11 +117,6 @@ jobs:
|
|||||||
nodejs_version_major: 20
|
nodejs_version_major: 20
|
||||||
platform: win32-ia32
|
platform: win32-ia32
|
||||||
package: true
|
package: true
|
||||||
- os: windows-2022
|
|
||||||
nodejs_arch: x86
|
|
||||||
nodejs_version: "22.21.0"
|
|
||||||
nodejs_version_major: 22
|
|
||||||
platform: win32-ia32
|
|
||||||
- os: windows-2022
|
- os: windows-2022
|
||||||
nodejs_arch: x64
|
nodejs_arch: x64
|
||||||
nodejs_version: "^20.9.0"
|
nodejs_version: "^20.9.0"
|
||||||
@@ -293,6 +288,26 @@ jobs:
|
|||||||
path: npm/${{ matrix.platform }}
|
path: npm/${{ matrix.platform }}
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
build-freebsd:
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
needs: lint
|
||||||
|
name: "build-freebsd"
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
- uses: vmactions/freebsd-vm@v1
|
||||||
|
continue-on-error: true
|
||||||
|
with:
|
||||||
|
prepare: |
|
||||||
|
pkg update -f
|
||||||
|
pkg upgrade -y
|
||||||
|
pkg install -y devel/git devel/pkgconf graphics/vips www/node22 www/npm
|
||||||
|
pkg-config --modversion vips-cpp
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm run build
|
||||||
|
node --test test/unit/io.js
|
||||||
build-emscripten:
|
build-emscripten:
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ slug: changelog/v0.35.0
|
|||||||
|
|
||||||
* Upgrade to libvips v8.18.0 for upstream bug fixes.
|
* Upgrade to libvips v8.18.0 for upstream bug fixes.
|
||||||
|
|
||||||
|
* Deprecate Windows 32-bit (win32-ia32) prebuilt binaries.
|
||||||
|
|
||||||
* Add `withGainMap` to process HDR JPEG images with embedded gain maps.
|
* Add `withGainMap` to process HDR JPEG images with embedded gain maps.
|
||||||
[#4314](https://github.com/lovell/sharp/issues/4314)
|
[#4314](https://github.com/lovell/sharp/issues/4314)
|
||||||
|
|
||||||
|
|||||||
@@ -50,8 +50,8 @@ Ready-compiled sharp and libvips binaries are provided for use on the most commo
|
|||||||
* Linux s390x (glibc >= 2.36)
|
* Linux s390x (glibc >= 2.36)
|
||||||
* Linux x64 (glibc >= 2.26, musl >= 1.2.2, CPU with SSE4.2)
|
* Linux x64 (glibc >= 2.26, musl >= 1.2.2, CPU with SSE4.2)
|
||||||
* Windows x64
|
* Windows x64
|
||||||
* Windows x86
|
* Windows x86 (deprecated, Node.js 20 only)
|
||||||
* Windows ARM64 (experimental, CPU with ARMv8.4 required for all features)
|
* Windows ARM64 (CPU with ARMv8.4 required for all features)
|
||||||
|
|
||||||
This provides support for the
|
This provides support for the
|
||||||
JPEG, PNG, WebP, AVIF (limited to 8-bit depth), TIFF, GIF and SVG (input) image formats.
|
JPEG, PNG, WebP, AVIF (limited to 8-bit depth), TIFF, GIF and SVG (input) image formats.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@img/sharp-win32-ia32",
|
"name": "@img/sharp-win32-ia32",
|
||||||
"version": "0.34.5",
|
"version": "0.34.5",
|
||||||
"description": "Prebuilt sharp for use with Windows x86 (32-bit)",
|
"description": "Prebuilt sharp for use with Windows x86 (deprecated)",
|
||||||
"author": "Lovell Fuller <npm@lovell.info>",
|
"author": "Lovell Fuller <npm@lovell.info>",
|
||||||
"homepage": "https://sharp.pixelplumbing.com",
|
"homepage": "https://sharp.pixelplumbing.com",
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
"./versions": "./versions.json"
|
"./versions": "./versions.json"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20.9.0"
|
"node": "^20.9.0"
|
||||||
},
|
},
|
||||||
"os": [
|
"os": [
|
||||||
"win32"
|
"win32"
|
||||||
|
|||||||
Reference in New Issue
Block a user