Skip to content

Commit a9a3509

Browse files
committed
windows11 arm
1 parent d31dc48 commit a9a3509

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/workflows/jsource.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1143,6 +1143,49 @@ jobs:
11431143
path: testwinarm64.txt
11441144
overwrite: true
11451145

1146+
# windows --------------------------------------------------------------
1147+
jewinarm64:
1148+
name: JE (Windows11 arm64)
1149+
runs-on: windows-11-arm
1150+
steps:
1151+
- name: Checkout Git repository
1152+
uses: actions/checkout@v4
1153+
1154+
- name: Setup Environment (Windows11 arm64)
1155+
uses: ilammy/msvc-dev-cmd@v1
1156+
with:
1157+
arch: amd64_arm64
1158+
1159+
- name: Build JE (Windows11 arm64)
1160+
shell: cmd
1161+
run: |
1162+
script\buildga.cmd arm64
1163+
1164+
- name: Test JE (Windows11 arm64)
1165+
shell: cmd
1166+
run: |
1167+
script\testga.cmd arm64
1168+
1169+
- name: Compress Files (Windows11 arm64)
1170+
shell: pwsh
1171+
run: Compress-Archive jarm64 warm64a.zip
1172+
1173+
- name: Release JE (Windows11 arm64)
1174+
uses: ncipollo/release-action@v1
1175+
with:
1176+
tag: build
1177+
artifacts: "warm64a.zip"
1178+
token: ${{ secrets.GITHUB_TOKEN }}
1179+
allowUpdates: true
1180+
replacesArtifacts: true
1181+
1182+
- name: Copy Test (Windows11 arm64)
1183+
uses: actions/upload-artifact@v4
1184+
with:
1185+
name: dist
1186+
path: testwinarm64a.txt
1187+
overwrite: true
1188+
11461189
# get tests ------------------------------------------------------------
11471190
tests:
11481191
name: Test Results

0 commit comments

Comments
 (0)