Skip to content

Commit dbf160f

Browse files
committed
updating workflows
1 parent 67d673b commit dbf160f

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

.github/workflows/build-all.yml

+44-44
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
strategy:
1515
# fail-fast: false
1616
matrix:
17-
# electron: [29, 30, 31, 32, 33]
18-
electron: [32, 33]
17+
electron: [29, 30, 31, 32, 33]
18+
# electron: [32, 33]
1919
os: [windows-2022]
2020

2121
name: build ${{ matrix.os }}-electron-${{ matrix.electron }}
@@ -24,49 +24,49 @@ jobs:
2424
- name: Checkout code
2525
uses: actions/checkout@v4
2626

27-
# - name: Setup env
28-
# uses: ./.github/actions/setup-env
29-
# with:
30-
# electron: '${{ matrix.electron }}.0.0'
31-
# os: ${{ matrix.os }}
27+
- name: Setup env
28+
uses: ./.github/actions/setup-env
29+
with:
30+
electron: '${{ matrix.electron }}.0.0'
31+
os: ${{ matrix.os }}
3232

33-
# - name: install node-gyp
34-
# run: npm i -g node-gyp
33+
- name: install node-gyp
34+
run: npm i -g node-gyp
3535

36-
# - name: Create release folder
37-
# run: |
38-
# mkdir "release\ia32\${{ matrix.electron }}.0.0"
39-
# mkdir "release\x64\${{ matrix.electron }}.0.0"
40-
# mkdir "release\arm64\${{ matrix.electron }}.0.0"
36+
- name: Create release folder
37+
run: |
38+
mkdir "release\ia32\${{ matrix.electron }}.0.0"
39+
mkdir "release\x64\${{ matrix.electron }}.0.0"
40+
mkdir "release\arm64\${{ matrix.electron }}.0.0"
4141
42-
# - name: Build ia32
43-
# timeout-minutes: 30
44-
# uses: ./.github/actions/build
45-
# with:
46-
# electron: ${{ matrix.electron }}
47-
# arch: 'ia32'
42+
- name: Build ia32
43+
timeout-minutes: 30
44+
uses: ./.github/actions/build
45+
with:
46+
electron: ${{ matrix.electron }}
47+
arch: 'ia32'
4848

49-
# - name: Build x64
50-
# timeout-minutes: 30
51-
# uses: ./.github/actions/build
52-
# with:
53-
# electron: ${{ matrix.electron }}
54-
# arch: 'x64'
49+
- name: Build x64
50+
timeout-minutes: 30
51+
uses: ./.github/actions/build
52+
with:
53+
electron: ${{ matrix.electron }}
54+
arch: 'x64'
5555

56-
# - name: Build arm64
57-
# timeout-minutes: 30
58-
# uses: ./.github/actions/build
59-
# with:
60-
# electron: ${{ matrix.electron }}
61-
# arch: 'arm64'
56+
- name: Build arm64
57+
timeout-minutes: 30
58+
uses: ./.github/actions/build
59+
with:
60+
electron: ${{ matrix.electron }}
61+
arch: 'arm64'
6262

63-
# - name: Upload artifacts
64-
# uses: actions/upload-artifact@v4
65-
# if: success()
66-
# with:
67-
# name: electron-edge-js-${{ matrix.electron }}.0.0
68-
# path: |
69-
# release
63+
- name: Upload artifacts
64+
uses: actions/upload-artifact@v4
65+
if: success()
66+
with:
67+
name: electron-edge-js-${{ matrix.electron }}.0.0
68+
path: |
69+
release
7070
7171
electron-versions:
7272
runs-on: ubuntu-22.04
@@ -94,10 +94,10 @@ jobs:
9494
- name: Checkout code
9595
uses: actions/checkout@v4
9696

97-
# - name: Test build
98-
# uses: ./.github/actions/test-build
99-
# with:
100-
# electron: ${{ matrix.electron }}
101-
# os: ${{ matrix.os }}
97+
- name: Test build
98+
uses: ./.github/actions/test-build
99+
with:
100+
electron: ${{ matrix.electron }}
101+
os: ${{ matrix.os }}
102102

103103

0 commit comments

Comments
 (0)