File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ parameters:
2121- name : VCVarsOptions
2222 displayName : ' vcvarsall.bat options'
2323 type : string
24- required : false
24+ default : ' (none) '
2525- name : IncludeX86
2626 displayName : ' Include x86'
2727 type : boolean
@@ -92,11 +92,14 @@ jobs:
9292 displayName: 'Check out OpenSSL sources'
9393
9494 - script : |
95- call "$(vcvarsall)" $(VCPlatform) ${{ parameters.VCVarsOptions }}
95+ call "$(vcvarsall)" $(VCPlatform) %EXTRA_OPTS%
9696 perl "$(Build.SourcesDirectory)\Configure" $(OpenSSLPlatform) no-uplink
9797 nmake
9898 workingDirectory: '$(IntDir)'
9999 displayName: 'Build OpenSSL'
100+ env:
101+ ${{ if ne(parameters.VCVarsOptions, '(none)') }}:
102+ EXTRA_OPTS: ${{ parameters.VCVarsOptions }}
100103
101104 - ${{ if ne(parameters.SigningCertificate, 'Unsigned') }} :
102105 - template : sign-files.yml
You can’t perform that action at this time.
0 commit comments