Fix ia32 #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Prebuild Binaries | |
on: | |
pull_request: | |
jobs: | |
prebuild-windows: | |
name: Prebuild Binaries for Windows | |
runs-on: windows-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- uses: actions/checkout@v4 | |
- run: npm i | |
- name: Prebuild | |
run: | | |
npm run apply-patches | |
npm run prebuild -- --strip --all --arch ia32 | |
npm run prebuild -- --strip --all --arch x64 |