From: Dr. David von Oheimb Date: Sat, 10 Oct 2020 20:25:10 +0000 (+0200) Subject: appveyor.yml: Move printing of env variables such that locally defined ones are shown... X-Git-Tag: openssl-3.0.0-alpha10~179 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=824cf2c38acfeb9e3a4cf3d039e8368b955eae60;p=thirdparty%2Fopenssl.git appveyor.yml: Move printing of env variables such that locally defined ones are shown as well. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/13110) --- diff --git a/appveyor.yml b/appveyor.yml index aa99f5062be..b93b19bd5d8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,8 +20,6 @@ before_build: Install-Module VSSetup -Scope CurrentUser - ps: >- Get-VSSetupInstance -All - - ps: >- - gci env:* | sort-object name - ps: >- If ($env:Platform -Match "x86") { $env:VCVARS_PLATFORM="x86" @@ -45,7 +43,7 @@ before_build: - perl configdata.pm --dump - cd .. - ps: >- - if (-not $env:APPVEYOR_PULL_REQUEST_NUMBER` + If (-not $env:APPVEYOR_PULL_REQUEST_NUMBER` -or (&git log -1 $env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT | Select-String "\[extended tests\]") ) { $env:EXTENDED_TESTS="yes" @@ -56,6 +54,8 @@ before_build: } Else { $env:NMAKE="nmake /S" } + - ps: >- + gci env:* | sort-object name build_script: - cd _build