Skip to content

Commit

Permalink
updating GitHub CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Sep 15, 2024
1 parent a896fe6 commit 6e517f8
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
fail-fast: false
matrix:
os: [windows-2022]
# os: [ windows-2019]
# arch: [ia32, x64, arm64]
electron: [29.4.6, 30.5.1, 31.6.0]

name: build-${{ matrix.os }}-v${{ matrix.electron }}
Expand Down Expand Up @@ -63,19 +61,19 @@ jobs:
mkdir "release\x64\${{ matrix.electron }}"
mkdir "release\arm64\${{ matrix.electron }}"
# - name: Build is32
# timeout-minutes: 30
# run: |
# node-gyp configure build --target=${{ matrix.electron }} --disturl=https://electronjs.org/headers --runtime=electron --release --arch=ia32
# cmd /c copy /y build\Release\edge_*.node release\ia32\${{ matrix.electron }}
# cmd /c rmdir /S /Q build

# - name: Build x64
# timeout-minutes: 30
# run: |
# node-gyp configure build --target=${{ matrix.electron }} --disturl=https://electronjs.org/headers --runtime=electron --release --arch=x64
# cmd /c copy /y build\Release\edge_*.node release\x64\${{ matrix.electron }}
# cmd /c rmdir /S /Q build
- name: Build is32
timeout-minutes: 30
run: |
node-gyp configure build --target=${{ matrix.electron }} --disturl=https://electronjs.org/headers --runtime=electron --release --arch=ia32
cmd /c copy /y build\Release\edge_*.node release\ia32\${{ matrix.electron }}
cmd /c rmdir /S /Q build
- name: Build x64
timeout-minutes: 30
run: |
node-gyp configure build --target=${{ matrix.electron }} --disturl=https://electronjs.org/headers --runtime=electron --release --arch=x64
cmd /c copy /y build\Release\edge_*.node release\x64\${{ matrix.electron }}
cmd /c rmdir /S /Q build
- name: Build arm64
timeout-minutes: 30
Expand Down

0 comments on commit 6e517f8

Please sign in to comment.