The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.5 KiB
77 lines
2.5 KiB
python ./skip_ci.py --base-branch-env=SYSTEM_PULLREQUEST_TARGETBRANCH --is-pull-env=SYSTEM_PULLREQUEST_PULLREQUESTID --base-branch-origin |
|
if ($LastExitCode -ne 0) { |
|
exit 0 |
|
} |
|
|
|
# remove Chocolately, MinGW, Strawberry Perl from path, so we don't find gcc/gfortran and try to use it |
|
$env:Path = ($env:Path.Split(';') | Where-Object { $_ -notmatch 'mingw|Strawberry|Chocolatey' }) -join ';' |
|
|
|
# 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 |
|
echo "Downloading $Source" |
|
for ($i = 1; $i -le $retries; $i++) { |
|
try { |
|
(New-Object net.webclient).DownloadFile($Source, $Destination) |
|
break # succeeded |
|
} catch [net.WebException] { |
|
if ($i -eq $retries) { |
|
throw # fail on last retry |
|
} |
|
$backoff = (10 * $i) # backoff 10s, 20s, 30s... |
|
echo ('{0}: {1}' -f $Source, $_.Exception.Message) |
|
echo ('Retrying in {0}s...' -f $backoff) |
|
Start-Sleep -m ($backoff * 1000) |
|
} |
|
} |
|
} |
|
|
|
|
|
if ($env:backend -eq 'ninja') { $dmd = $true } else { $dmd = $false } |
|
|
|
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 |
|
|
|
|
|
echo "=== PATH BEGIN ===" |
|
echo ($env:Path).Replace(';',"`n") |
|
echo "=== PATH END ===" |
|
echo "" |
|
|
|
$progs = @("python","ninja","pkg-config","cl","rc","link") |
|
foreach ($prog in $progs) { |
|
echo "" |
|
echo "Locating ${prog}:" |
|
where.exe $prog |
|
} |
|
|
|
echo "" |
|
echo "Ninja / MSBuld version:" |
|
if ($env:backend -eq 'ninja') { |
|
ninja --version |
|
} else { |
|
MSBuild /version |
|
} |
|
|
|
echo "" |
|
echo "Python version:" |
|
python --version |
|
|
|
# Needed for running unit tests in parallel. |
|
echo "" |
|
python -m pip --disable-pip-version-check install --upgrade pefile pytest-xdist jsonschema |
|
|
|
echo "" |
|
echo "=== Start running tests ===" |
|
# Starting from VS2019 Powershell(?) will fail the test run |
|
# if it prints anything to stderr. Python's test runner |
|
# does that by default so we need to forward it. |
|
cmd /c 'python 2>&1' run_tests.py --backend $env:backend
|
|
|