aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-04-20 14:36:16 +0300
committerGitHub <noreply@github.com>2019-04-20 14:36:16 +0300
commitce160e1eab303eb2c876862d948497c0c10ef33a (patch)
treea0c0d433122aee10fa4f39ec8372feb6feb03677 /ci
parent5c85b5028080e74b3a74f9e0d63166c3c3ca15e6 (diff)
parent744ca13ddb69da337bc19ac0461b769f6f23cfad (diff)
downloadmeson-ce160e1eab303eb2c876862d948497c0c10ef33a.zip
meson-ce160e1eab303eb2c876862d948497c0c10ef33a.tar.gz
meson-ce160e1eab303eb2c876862d948497c0c10ef33a.tar.bz2
Merge pull request #5250 from jon-turney/test-compiler-report
Add a report of compilers used to run_project_tests.py
Diffstat (limited to 'ci')
-rw-r--r--ci/azure-steps.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/azure-steps.yml b/ci/azure-steps.yml
index 87ab337..abbed65 100644
--- a/ci/azure-steps.yml
+++ b/ci/azure-steps.yml
@@ -5,8 +5,8 @@ steps:
exit 0
}
- # remove MinGW from path, so we don't find gfortran and try to use it
- $env:Path = ($env:Path.Split(';') | Where-Object { $_ -notlike '*mingw*' }) -join ';'
+ # 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 ';'
# download and install prerequisites
function DownloadFile([String] $Source, [String] $Destination) {