Attempt to fix Windows build
This commit is contained in:
parent
e35a8fc529
commit
787eeeed4f
1 changed files with 5 additions and 1 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -33,6 +33,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
- name: Setup MSYS2
|
||||||
|
uses: msys2/setup-msys2@v2
|
||||||
- name: Setup Node.js environment
|
- name: Setup Node.js environment
|
||||||
uses: actions/setup-node@v2.1.2
|
uses: actions/setup-node@v2.1.2
|
||||||
with:
|
with:
|
||||||
|
@ -42,8 +44,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
version: 7
|
version: 7
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: choco install imagemagick -PackageParameters InstallDevelopmentHeaders=true
|
shell: msys2 {0}
|
||||||
|
run: pacman -S mingw-w64-x86_64-libvips mingw-w64-x86_64-imagemagick
|
||||||
- name: Build
|
- name: Build
|
||||||
|
shell: msys2 {0}
|
||||||
run: pnpm install && pnpm run build
|
run: pnpm install && pnpm run build
|
||||||
|
|
||||||
darwin:
|
darwin:
|
||||||
|
|
Loading…
Reference in a new issue