Skip to content

Commit 221a9de

Browse files
committed
Fix missing setuptools in Windows CI
1 parent a2673dd commit 221a9de

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,11 @@ jobs:
4444
path: ambuild
4545

4646
- name: Install AMBuild
47+
shell: bash
4748
run: |
49+
if [ "$RUNNER_OS" == "Windows" ]; then
50+
pip install setuptools
51+
fi
4852
cd ambuild && python setup.py install && cd ..
4953
5054
- name: Build

0 commit comments

Comments
 (0)