aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-06-06 22:00:50 -0400
committerEli Schwartz <eschwartz@archlinux.org>2023-06-06 22:07:16 -0400
commitaaeaf8f9c15d442706ba36b9e476facd1da4c0c8 (patch)
treea9c2e9e6bc7523c8c2458d79510fac68cdad7d87
parent572f7a4280c6bc2b1690bcff8da6bae6b0d4cc82 (diff)
downloadmeson-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.ps13
1 files changed, 3 insertions, 0 deletions
diff --git a/ci/run.ps1 b/ci/run.ps1
index 5d720c2..badb4a7 100644
--- a/ci/run.ps1
+++ b/ci/run.ps1
@@ -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"
}