Skip to content

Commit 5d8a5a0

Browse files
committed
windows
1 parent 97fc9ea commit 5d8a5a0

1 file changed

Lines changed: 36 additions & 10 deletions

File tree

.github/workflows/jsource.yml

Lines changed: 36 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,15 +1252,15 @@ jobs:
12521252
- name: Build JE (Windows arm64)
12531253
shell: cmd
12541254
env:
1255-
USE_PYXES: 1
1255+
USE_PYXES: 0
12561256
USE_EMU_AVX: 1
12571257
run: |
12581258
script\buildga.cmd arm64
12591259
12601260
- name: Test JE (Windows arm64)
12611261
shell: cmd
12621262
env:
1263-
USE_PYXES: 1
1263+
USE_PYXES: 0
12641264
USE_EMU_AVX: 1
12651265
run: |
12661266
script\testga.cmd arm64
@@ -1331,14 +1331,27 @@ jobs:
13311331
run: |
13321332
script/buildga.sh windows x86_64 || exit 1
13331333
1334-
- name: Test JE (Windows MSYS2 x64)
1335-
shell: msys2 {0}
1336-
env:
1337-
USE_PYXES: 1
1338-
USE_EMU_AVX: 1
1339-
_DEBUG: 0
1340-
run: |
1341-
script/testga.sh windows x86_64 || exit 1
1334+
# - name: Test JE (Windows MSYS2 x64)
1335+
# shell: msys2 {0}
1336+
# env:
1337+
# USE_PYXES: 1
1338+
# USE_EMU_AVX: 1
1339+
# _DEBUG: 0
1340+
# run: |
1341+
# script/testga.sh windows x86_64 || exit 1
1342+
1343+
- name: Compress Files (Windows MSYS2 x64)
1344+
shell: pwsh
1345+
run: Compress-Archive j64 w64mw.zip
1346+
1347+
- name: Release JE (Windows MSYS2 x64)
1348+
uses: ncipollo/release-action@v1
1349+
with:
1350+
tag: build
1351+
artifacts: "w64mw.zip"
1352+
token: ${{ secrets.GITHUB_TOKEN }}
1353+
allowUpdates: true
1354+
replacesArtifacts: true
13421355

13431356
# windows msys2 x86 ----------------------------------------------------
13441357
jewin-msys2-x86:
@@ -1383,6 +1396,19 @@ jobs:
13831396
run: |
13841397
script/testga.sh windows i386 || exit 1
13851398
1399+
- name: Compress Files (Windows MSYS2 x86)
1400+
shell: pwsh
1401+
run: Compress-Archive j32 w32mw.zip
1402+
1403+
- name: Release JE (Windows MSYS2 x86)
1404+
uses: ncipollo/release-action@v1
1405+
with:
1406+
tag: build
1407+
artifacts: "w32mw.zip"
1408+
token: ${{ secrets.GITHUB_TOKEN }}
1409+
allowUpdates: true
1410+
replacesArtifacts: true
1411+
13861412
# windows msys2 arm64 --------------------------------------------------
13871413
jewin-msys2-arm64:
13881414
name: JE (Windows MSYS2 arm64)

0 commit comments

Comments
 (0)