Skip to content

Commit

Permalink
Exclude Windows x86 as it is no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
recrsn committed Feb 26, 2025
1 parent 1bbb5ae commit 8fc0cea
Showing 1 changed file with 2 additions and 25 deletions.
27 changes: 2 additions & 25 deletions .github/workflows/build-pack-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
types: [ prereleased, released ]

jobs:

build-linux:
runs-on: ubuntu-latest
steps:
Expand All @@ -29,23 +28,6 @@ jobs:
path: ./prebuilds/

build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npx prebuildify --napi --strip --arch=ia32 [email protected]
- run: npx prebuildify --napi --strip --arch=x64 [email protected]
- run: dir prebuilds
- uses: actions/upload-artifact@v4
with:
name: prebuild-windows
path: ./prebuilds/

build-windows-arm:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -54,11 +36,12 @@ jobs:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npx prebuildify --napi --strip --arch=x64 [email protected]
- run: npx prebuildify --napi --strip --arch=arm64 [email protected]
- run: dir prebuilds
- uses: actions/upload-artifact@v4
with:
name: prebuild-windows-arm
name: prebuild-windows
path: ./prebuilds/

build-macos:
Expand All @@ -82,16 +65,10 @@ jobs:
needs:
- build-linux
- build-windows
- build-windows-arm
- build-macos
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- uses: actions/download-artifact@v4
with:
path: /tmp/prebuilds/
Expand Down

0 comments on commit 8fc0cea

Please sign in to comment.