We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be88a31 commit d71d141Copy full SHA for d71d141
.github/workflows/main.yaml
@@ -152,6 +152,11 @@ jobs:
152
if: matrix.os == 'ubuntu-24.04'
153
run: python3 etc/update-api-list.py --check
154
155
+ - name: Windows CI setup
156
+ if: matrix.os == 'windows-2025'
157
+ shell: bash
158
+ run: ./ci/setup-windows.sh ${{ matrix.target }}
159
+
160
# Non-linux tests just use our raw script
161
- name: Run locally
162
if: matrix.os != 'ubuntu-24.04'
ci/setup-windows.sh
@@ -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