Skip to content

Commit

Permalink
ci: Pin ninja to 1.9.0.post1 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
nirbheek committed Jun 13, 2020
1 parent 96379e5 commit 4a5aec2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/unusedargs_missingreturn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ jobs:
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- run: pip install ninja pefile
# ninja==1.10 pypi release didn't ship with windows binaries, which causes
# pip to try to build it which fails on Windows. Pin the previous version
# for now. We can update once that's fixed.
# https://pypi.org/project/ninja/1.10.0/#files
- run: pip install ninja==1.9.0.post1 pefile
- run: python run_project_tests.py --only platform-windows
env:
CI: "1"
Expand Down

0 comments on commit 4a5aec2

Please sign in to comment.