Skip to content

Commit d71d141

Browse files
committed
Create a setup script
1 parent be88a31 commit d71d141

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/main.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ jobs:
152152
if: matrix.os == 'ubuntu-24.04'
153153
run: python3 etc/update-api-list.py --check
154154

155+
- name: Windows CI setup
156+
if: matrix.os == 'windows-2025'
157+
shell: bash
158+
run: ./ci/setup-windows.sh ${{ matrix.target }}
159+
155160
# Non-linux tests just use our raw script
156161
- name: Run locally
157162
if: matrix.os != 'ubuntu-24.04'

ci/setup-windows.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
set -eux
4+
5+
ls /
6+
ls /c/msys64
7+
8+
export PATH="/c/msys64:$PATH"
9+
10+
pacman install m4
11+
12+
mv -h

0 commit comments

Comments
 (0)