Skip to content

Commit

Permalink
Skip ia32 builds on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
baileyherbert committed Aug 20, 2023
1 parent bd65eff commit 396e37d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/prebuild_manual_v4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
npm i [email protected] --ignore-scripts
- name: Build artifact (ia32)
if: matrix.os != 'macos-latest'
run: |
npm run build --target_arch=ia32
npx copyfiles copyfiles -f ./build/stage/**/*.tar.gz packages
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/prebuild_manual_v5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
run: npm ci --ignore-scripts

- name: Build artifact (ia32)
if: matrix.os != 'macos-latest'
run: npm run build --target_arch=ia32

- name: Build artifact (x64)
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
node-version: [10.x]
os: [ubuntu-latest, macos-11, windows-2019]
os: [ubuntu-latest, macos-latest, windows-2019]

name: build ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -41,6 +41,7 @@ jobs:
run: npm ci --ignore-scripts

- name: Build artifact (ia32)
if: matrix.os != 'macos-latest'
run: npm run build --target_arch=ia32

- name: Build artifact (x64)
Expand Down

0 comments on commit 396e37d

Please sign in to comment.