diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-06-13 16:32:41 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2020-06-13 12:47:45 +0000 |
commit | 4a5aec2fc02a522b783d6177c3a6f2bf18ce60af (patch) | |
tree | 46f7f76313a78eca6002c91db79765b008b69ce2 /.github/workflows | |
parent | 96379e51edaa0bb85f2e89b42512634b87e20110 (diff) | |
download | meson-4a5aec2fc02a522b783d6177c3a6f2bf18ce60af.zip meson-4a5aec2fc02a522b783d6177c3a6f2bf18ce60af.tar.gz meson-4a5aec2fc02a522b783d6177c3a6f2bf18ce60af.tar.bz2 |
ci: Pin ninja to 1.9.0.post1 for now
See: https://github.com/mesonbuild/meson/pull/7306#issuecomment-643606736
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/unusedargs_missingreturn.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/unusedargs_missingreturn.yml b/.github/workflows/unusedargs_missingreturn.yml index fa4405b..859dec2 100644 --- a/.github/workflows/unusedargs_missingreturn.yml +++ b/.github/workflows/unusedargs_missingreturn.yml @@ -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" |