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 268410f commit ec95996
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,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
copy /y .\build\Release\edge_*.node "release\ia32\${{ matrix.electron }}"
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
# copy /y build\Release\edge_*.node release\ia32\${{ matrix.electron }}
# 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
copy /y .\build\Release\edge_*.node "release\x64\${{ matrix.electron }}"
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
# copy /y build\Release\edge_*.node release\x64\${{ matrix.electron }}
# rmdir /S /Q build

- name: Build arm64
timeout-minutes: 30
Expand All @@ -85,7 +85,7 @@ jobs:
sed -i -e 's/<FloatingPointModel>Strict</FloatingPointModel>/<!-- <FloatingPointModel>Strict</FloatingPointModel> -->/g' build/edge_coreclr.vcxproj
sed -i -e 's/<FloatingPointModel>Strict</FloatingPointModel>/<!-- <FloatingPointModel>Strict</FloatingPointModel> -->/g' build/edge_nativeclr.vcxproj
node-gyp build
copy /y .\build\Release\edge_*.node "release\arm64\${{ matrix.electron }}"
copy /y build\Release\edge_*.node release\arm64\${{ matrix.electron }}
rmdir /S /Q build
- name: Upload artifacts
Expand Down

0 comments on commit ec95996

Please sign in to comment.