Skip to content

Commit

Permalink
Fix hashes of all binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed May 27, 2021
1 parent 9104b2d commit ea6f127
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions BTCPayServer.Hwi/Deployment/HwiVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ public class HwiVersions
Windows = new HwiDownloadInfo()
{
Link = "https://github.com/Groestlcoin/HWI/releases/download/2.0.1/hwi-2.0.1-windows-amd64.zip",
Hash = "2cfdd6ae51e345f8c70214d626430c8d236336688a87f7d85fc6f3d6a8392da8",
Hash = "9f7ee46873f34afb19f20e88e27add4a1a1fa30796beded7dbbee9aaad61fb29",
Extractor = new ZipExtractor()
},
Linux = new HwiDownloadInfo()
{
Link = "https://github.com/Groestlcoin/HWI/releases/download/2.0.1/hwi-2.0.1-linux-amd64.tar.gz",
Hash = "7aefba163b12970f6f538592a6c8943b72f23b22a5baedd1cf4fcfd07b1876e6",
Hash = "2061905cb89c8d4fdb105ab6af846239b62ca39a0cce8a33759bf23248c132a4",
Extractor = new TarExtractor()
},
Mac = new HwiDownloadInfo()
{
Link = "https://github.com/Groestlcoin/HWI/releases/download/2_0_1/hwi-2_0_1-mac-amd64.tar.gz",
Hash = "96bce6742cf12e7051158a8c90961aa077e183679453aa1f5a29ac1795d0e241",
Hash = "d6aba09e984c5e927a758f7ff2ac04795c8b3489090e6eaef3fce1e00f7473f8",
Extractor = new TarExtractor()
}
};
Expand Down
2 changes: 1 addition & 1 deletion Build/debian-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get install -y --no-install-recommends imagemagick

RUN wget -qO /tmp/hwi.tar.gz https://github.com/Groestlcoin/HWI/releases/download/2.0.1/hwi-2.0.1-linux-amd64.tar.gz && \
tar -zxvf /tmp/hwi.tar.gz -C /tmp hwi && \
echo "3796e0d74238ee3ddc90ca419a7ddf392721c0c455f4578ed5381e0db36a82ba /tmp/hwi" | sha256sum -c - && \
echo "2061905cb89c8d4fdb105ab6af846239b62ca39a0cce8a33759bf23248c132a4 /tmp/hwi" | sha256sum -c - && \
rm /tmp/hwi.tar.gz

SHELL ["/bin/bash", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion Build/linux-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:3.1.101 AS builder

RUN wget -qO /tmp/hwi.tar.gz https://github.com/Groestlcoin/HWI/releases/download/2.0.1/hwi-2.0.1-linux-amd64.tar.gz && \
tar -zxvf /tmp/hwi.tar.gz -C /tmp hwi && \
echo "3796e0d74238ee3ddc90ca419a7ddf392721c0c455f4578ed5381e0db36a82ba /tmp/hwi" | sha256sum -c - && \
echo "2061905cb89c8d4fdb105ab6af846239b62ca39a0cce8a33759bf23248c132a4 /tmp/hwi" | sha256sum -c - && \
rm /tmp/hwi.tar.gz

WORKDIR /source
Expand Down
2 changes: 1 addition & 1 deletion Build/osx-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get install -y --no-install-recommends git icnsutils

RUN wget -qO /tmp/hwi.tar.gz https://github.com/Groestlcoin/HWI/releases/download/2.0.1/hwi-2.0.1-mac-amd64.tar.gz && \
tar -zxvf /tmp/hwi.tar.gz -C /tmp hwi && \
echo "96bce6742cf12e7051158a8c90961aa077e183679453aa1f5a29ac1795d0e241 /tmp/hwi" | sha256sum -c - && \
echo "d6aba09e984c5e927a758f7ff2ac04795c8b3489090e6eaef3fce1e00f7473f8 /tmp/hwi" | sha256sum -c - && \
rm /tmp/hwi.tar.gz

WORKDIR /source
Expand Down
2 changes: 1 addition & 1 deletion Build/win-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get install -y --no-install-recommends imagemagick
RUN apt-get install -y --no-install-recommends nsis unzip wine xxd osslsigncode openssl
RUN wget -qO "/tmp/hwi.zip" https://github.com/Groestlcoin/HWI/releases/download/2.0.1/hwi-2.0.1-windows-amd64.zip && \
unzip "/tmp/hwi.zip" -d "/tmp" && \
echo "7aefba163b12970f6f538592a6c8943b72f23b22a5baedd1cf4fcfd07b1876e6 /tmp/hwi.exe" | sha256sum -c - && \
echo "9f7ee46873f34afb19f20e88e27add4a1a1fa30796beded7dbbee9aaad61fb29 /tmp/hwi.exe" | sha256sum -c - && \
rm "/tmp/hwi.zip" && \
# Need to setup with rcedit because https://github.com/dotnet/sdk/issues/3943
# I prebuild the binaries with VS 2019 on commit b807b34a644c86c0b0d89c7f073967e79202731a
Expand Down

0 comments on commit ea6f127

Please sign in to comment.