diff options
author | Rebecca Cran <rebecca@bsdio.com> | 2020-08-29 23:25:50 +0000 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-08-29 18:54:16 -0600 |
commit | a478f61ffa8eed25c7224add8ef2217d94fbb208 (patch) | |
tree | 6a36331166516a5bc0fe1ecd8c764a8356eda324 | |
parent | db83b0abd16bbd6b8f589a993e6f70d9812be6e3 (diff) | |
download | fio-a478f61ffa8eed25c7224add8ef2217d94fbb208.tar.gz fio-a478f61ffa8eed25c7224add8ef2217d94fbb208.tar.bz2 |
Update os/windows/dobuild.cmd to support signing binaries/installer
Since organizations are increasingly requiring software to be digitally
signed, or have heuristics that penalize unsigned software, add support
to do build.cmd to sign both the .exe binaries and the .msi installer.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | os/windows/dobuild.cmd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/os/windows/dobuild.cmd b/os/windows/dobuild.cmd index ef12d82d..d06a2afa 100644 --- a/os/windows/dobuild.cmd +++ b/os/windows/dobuild.cmd @@ -26,9 +26,21 @@ if not defined FIO_ARCH ( goto end
)
+if defined SIGN_FIO (
+ signtool sign /n "%SIGNING_CN%" /t http://timestamp.digicert.com ..\..\fio.exe
+ signtool sign /as /n "%SIGNING_CN%" /tr http://timestamp.digicert.com /td sha256 /fd sha256 ..\..\fio.exe
+
+ signtool sign /n "%SIGNING_CN%" /t http://timestamp.digicert.com ..\..\t\*.exe
+ signtool sign /as /n "%SIGNING_CN%" /tr http://timestamp.digicert.com /td sha256 /fd sha256 ..\..\t\*.exe
+)
+
"%WIX%bin\candle" -nologo -arch %FIO_ARCH% -dFioVersionNumbers="%FIO_VERSION_NUMBERS%" install.wxs
@if ERRORLEVEL 1 goto end
"%WIX%bin\candle" -nologo -arch %FIO_ARCH% examples.wxs
@if ERRORLEVEL 1 goto end
"%WIX%bin\light" -nologo -sice:ICE61 install.wixobj examples.wixobj -ext WixUIExtension -out %FIO_VERSION%-%FIO_ARCH%.msi
:end
+
+if defined SIGN_FIO (
+ signtool sign /n "%SIGNING_CN%" /tr http://timestamp.digicert.com /td sha256 /fd sha256 %FIO_VERSION%-%FIO_ARCH%.msi
+)
\ No newline at end of file |