From 06fc4233d298f40bcc72696164b3055435e217c3 Mon Sep 17 00:00:00 2001 From: Nicba1010 Date: Sun, 4 Feb 2018 22:29:56 +0100 Subject: [PATCH] appveyor: Add artifact sha-256 hash files (#4148) * Add artifact sha-256 hash files (for checksum) --- appveyor.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 7f5f1e7e45..d26daf6141 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -79,13 +79,21 @@ after_build: 7z a -m0=LZMA2 -mx9 openssl_win64.7z C:\OpenSSL-Win64\bin\libeay32.dll ` C:\OpenSSL-Win64\bin\ssleay32.dll +- ps: | # generate sha256 hashes + (Get-FileHash $env:BUILD -Algorithm SHA256).Hash | Out-File -encoding ASCII "$($env:BUILD).sha256" + (Get-FileHash openssl_win64.7z -Algorithm SHA256).Hash | Out-File -encoding ASCII "openssl_win64.7z.sha256" + test: off artifacts: - path: $(BUILD) name: rpcs3 +- path: $(BUILD).sha256 + name: rpcs3 sha256 hash - path: openssl_win64.7z name: openssl +- path: openssl_win64.7z.sha256 + name: openssl sha256 hash on_finish: - ps: | # update appveyor build version, done last to prevent webhook breakage