diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2023-06-06 22:00:50 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2023-06-06 22:07:16 -0400 |
commit | aaeaf8f9c15d442706ba36b9e476facd1da4c0c8 (patch) | |
tree | a9c2e9e6bc7523c8c2458d79510fac68cdad7d87 | |
parent | 572f7a4280c6bc2b1690bcff8da6bae6b0d4cc82 (diff) | |
download | meson-1.tryme.zip meson-1.tryme.tar.gz meson-1.tryme.tar.bz2 |
azure pipelines: force python2 to be installed1.tryme
We want to test that meson can still build modules for it.
-rw-r--r-- | ci/run.ps1 | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -59,6 +59,9 @@ if ($env:arch -eq 'x64') { Expand-Archive $env:AGENT_WORKFOLDER\pypy38.zip -DestinationPath $env:AGENT_WORKFOLDER\pypy38 $ENV:Path = $ENV:Path + ";$ENV:AGENT_WORKFOLDER\pypy38\pypy3.8-v7.3.9-win64;$ENV:AGENT_WORKFOLDER\pypy38\pypy3.8-v7.3.9-win64\Scripts" pypy3 -m ensurepip + + DownloadFile -Source https://www.python.org/ftp/python/2.7.18/python-2.7.18.amd64.msi -Destination $env:AGENT_WORKFOLDER\python27.msi + Start-Process msiexec.exe -Wait -ArgumentList "/I $env:AGENT_WORKFOLDER\python27.msi /quiet" } |