Skip to content

Commit fc3de6b

Browse files
committed
Fix missing setuptools in Windows CI
1 parent e7d2d4f commit fc3de6b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,11 @@ jobs:
5858
path: ambuild
5959

6060
- name: Install AMBuild
61+
shell: bash
6162
run: |
63+
if [ "$RUNNER_OS" == "Windows" ]; then
64+
pip install setuptools
65+
fi
6266
cd ambuild && python setup.py install && cd ..
6367
6468
- name: Install Clang 21

0 commit comments

Comments
 (0)