Skip to content

Commit 8109019

Browse files
committed
windows runner
1 parent 76532a8 commit 8109019

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/tests.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,19 @@ jobs:
150150
wget -q -O ~/castxml-macos-15-arm64.tar.gz https://github.com/CastXML/CastXMLSuperbuild/releases/download/v0.6.11.post1/castxml-macos-15-arm64.tar.gz
151151
tar -xzf ~/castxml-macos-15-arm64.tar.gz -C ~/
152152
chmod +x ~/castxml/bin/castxml
153+
154+
# ─── Setup CastXML for Windows ─────────────────────────────────────
155+
- name: Setup CastXML for Windows (x86_64)
156+
if: matrix.os == 'macos-15' && matrix.arch == 'x86_64'
157+
run: |
158+
wget -q -O ~/castxml-windows-2025-amd64.zip https://github.com/CastXML/CastXMLSuperbuild/releases/download/v0.6.11/castxml-windows-2025-amd64.zip
159+
unzip -q ~/castxml-windows-2025-amd64.zip -d ~/
160+
161+
- name: Setup CastXML for Windows (ARM)
162+
if: matrix.os == 'windows' && matrix.arch == 'aarch64'
163+
run: |
164+
wget -q -O ~/castxml-windows-2025-arm64.zip https://github.com/CastXML/CastXMLSuperbuild/releases/download/v0.6.11/castxml-windows-2025-arm64.zip
165+
unzip -q ~/castxml-windows-2025-arm64.zip -d ~/
153166
154167
- name: Run tests
155168
run: |

0 commit comments

Comments
 (0)