File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -1143,6 +1143,49 @@ jobs:
1143
1143
path : testwinarm64.txt
1144
1144
overwrite : true
1145
1145
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
+
1146
1189
# get tests ------------------------------------------------------------
1147
1190
tests :
1148
1191
name : Test Results
You can’t perform that action at this time.
0 commit comments