diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-02-23 14:02:08 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-02-23 14:13:57 +0530 |
commit | f4b344f5b080f0d151283eca9046d5668c22cee7 (patch) | |
tree | 14c6b95c49aca6fcd570ce0bdaebce7be71ffce4 | |
parent | 76db75328689a7e48ea5862edd333e6f30c681bb (diff) | |
download | meson-f4b344f5b080f0d151283eca9046d5668c22cee7.zip meson-f4b344f5b080f0d151283eca9046d5668c22cee7.tar.gz meson-f4b344f5b080f0d151283eca9046d5668c22cee7.tar.bz2 |
azure-pipelines: Fix cygwin python3 installation
The package has been moved from python3-pip to python3N-pip where N is
5, 6, 7. We use Python 3.5, so let's use that.
-rw-r--r-- | azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 90ebeff..23cbda7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -76,13 +76,13 @@ jobs: libglib2.0-devel,^ libgtk3-devel,^ ninja,^ - python3-pip,^ + python35-pip,^ vala,^ zlib-devel displayName: Install Dependencies - script: | set PATH=%CYGWIN_ROOT%\bin;%SYSTEMROOT%\system32 - env.exe -- python3 run_tests.py --backend=ninja + env.exe -- python3.5 run_tests.py --backend=ninja displayName: Run Tests - task: CopyFiles@2 condition: not(canceled()) |