| Install-Module VSSetup -Scope CurrentUser |
| If ($env:Platform -Match "x86") { |
| $env:VCVARS_PLATFORM="x86" |
| $env:TARGET="VC-WIN32 no-asm --strict-warnings" |
| $env:VCVARS_PLATFORM="amd64" |
| $env:TARGET="VC-WIN64A-masm" |
| If ($env:Configuration -Match "shared") { |
| $env:CONFIG_OPTS="enable-fips" |
| } ElseIf ($env:Configuration -Match "minimal") { |
| $env:CONFIG_OPTS="no-bulk no-asm -DOPENSSL_SMALL_FOOTPRINT" |
| $env:CONFIG_OPTS="no-fips no-shared" |
| - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" %VCVARS_PLATFORM% |
| - perl ..\Configure %TARGET% no-makedepend %CONFIG_OPTS% |
| - perl configdata.pm --dump |
| If ($env:BUILDONLY -or $env:MAKEVERBOSE) { |
| gci env:* | sort-object name |
| - "%NMAKE% build_all_generated" |
| if ($env:Configuration -Match "plain") { |
| cmd /c "%NMAKE% test VERBOSE_FAILURE=yes 2>&1" |
| cmd /c "%NMAKE% test VERBOSE_FAILURE=yes TESTS=-test_fuzz 2>&1" |
| if ($env:Configuration -Match "shared") { |
| cmd /c "%NMAKE% install DESTDIR=..\_install 2>&1" |