aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2020-04-11 21:34:13 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2020-04-12 19:37:52 +0300
commit14d7d2511513c1505115e78cfaae014577022485 (patch)
treec1c2f521a85aa5b047fde02d287340e4f3587251 /ci
parentbca69aaf89c0d6fd77a4c96c467c047ee99aa668 (diff)
downloadmeson-14d7d2511513c1505115e78cfaae014577022485.zip
meson-14d7d2511513c1505115e78cfaae014577022485.tar.gz
meson-14d7d2511513c1505115e78cfaae014577022485.tar.bz2
azure: Do not skip boost tests
Diffstat (limited to 'ci')
-rw-r--r--ci/run.ps15
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/run.ps1 b/ci/run.ps1
index ac5a959..9811feb 100644
--- a/ci/run.ps1
+++ b/ci/run.ps1
@@ -9,6 +9,9 @@ $env:Path = ($env:Path.Split(';') | Where-Object { $_ -notmatch 'mingw|Strawberr
# Rust puts its shared stdlib in a secret place, but it is needed to run tests.
$env:Path += ";$HOME/.rustup/toolchains/stable-x86_64-pc-windows-msvc/bin"
+# Set the CI env var for the meson test framework
+$env:CI = '1'
+
# download and install prerequisites
function DownloadFile([String] $Source, [String] $Destination) {
$retries = 10
@@ -32,7 +35,7 @@ function DownloadFile([String] $Source, [String] $Destination) {
if ($env:backend -eq 'ninja') { $dmd = $true } else { $dmd = $false }
-DownloadFile -Source https://github.com/mesonbuild/cidata/releases/download/ci1/ci_data.zip -Destination $env:AGENT_WORKFOLDER\ci_data.zip
+DownloadFile -Source https://github.com/mesonbuild/cidata/releases/download/ci2/ci_data.zip -Destination $env:AGENT_WORKFOLDER\ci_data.zip
echo "Extracting ci_data.zip"
Expand-Archive $env:AGENT_WORKFOLDER\ci_data.zip -DestinationPath $env:AGENT_WORKFOLDER\ci_data
& "$env:AGENT_WORKFOLDER\ci_data\install.ps1" -Arch $env:arch -Compiler $env:compiler -Boost $true -DMD $dmd