Skip to content

Commit

Permalink
ci: build node 12 on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Oct 21, 2024
1 parent 1a8921d commit f32c6ec
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
node-version: 20
architecture: ${{ env.setup_node_arch }}

- name: Install Dependencies
- name: Install and Build Native
if: ${{ !matrix.docker }}
run: pnpm install

Expand All @@ -133,15 +133,11 @@ jobs:
architecture: ${{ env.setup_node_arch }}

- name: Build Native
if:
${{ !matrix.docker && matrix.os != 'windows-2019' && matrix.node_arch
!= 'ia32' }}
if: ${{ !matrix.docker && matrix.node_arch != 'ia32' }}
run: npm run build.native

- name: Build Native Windows 32
if:
${{ !matrix.docker && matrix.os == 'windows-2019' && matrix.node_arch
== 'ia32' }}
if: ${{ matrix.os == 'windows-2019' && matrix.node_arch == 'ia32' }}
run:
node ./node_modules/cmake-ts/build/main.js named-configs windows-x86

Expand Down

0 comments on commit f32c6ec

Please sign in to comment.