Skip to content

Commit 5d17833

Browse files
authored
Merge pull request #635 from input-output-hk/jpraynaud/fix-cardano-bin-download-url
Fix Cardano bin download URL
2 parents de9f2c2 + 839fc5f commit 5d17833

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/root/manual/getting-started/run-signer-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For more information about the **Mithril Protocol**, please refer to the [About
4444
* Read rights on the `Database` folder (`--database-path` setting of the **Cardano Node**)
4545
* Read/Write rights on the `Inter Process Communication` file (usually `CARDANO_NODE_SOCKET_PATH` env var used to launch the **Cardano Node**)
4646

47-
* Install a recent version of the [`cardano-cli`](https://hydra.iohk.io/job/Cardano/cardano-node/linux.native.cardano-cli) (version 1.35.4+)
47+
* Install a recent version of the [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/1.35.4) (version 1.35.4+)
4848

4949
* Install a [correctly configured](https://www.rust-lang.org/learn/get-started) Rust toolchain (latest stable version).
5050

docs/versioned_docs/version-maintained/manual/getting-started/run-signer-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For more information about the **Mithril Protocol**, please refer to the [About
4444
* Read rights on the `Database` folder (`--database-path` setting of the **Cardano Node**)
4545
* Read/Write rights on the `Inter Process Communication` file (usually `CARDANO_NODE_SOCKET_PATH` env var used to launch the **Cardano Node**)
4646

47-
* Install a recent version of the [`cardano-cli`](https://hydra.iohk.io/job/Cardano/cardano-node/linux.native.cardano-cli) (version 1.35.4+)
47+
* Install a recent version of the [`cardano-cli`](https://github.com/input-output-hk/cardano-node/releases/tag/1.35.4) (version 1.35.4+)
4848

4949
* Install a [correctly configured](https://www.rust-lang.org/learn/get-started) Rust toolchain (latest stable version).
5050

mithril-aggregator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ WORKDIR /app/
5757
RUN chown -R appuser /app/
5858

5959
# Install cardano-cli
60-
RUN wget -nv -O cardano-bin.tar.gz https://hydra.iohk.io/build/13065769/download/1/cardano-node-1.34.1-linux.tar.gz
60+
RUN wget -nv -O cardano-bin.tar.gz https://storage.googleapis.com/mithril-cardano-node-archive/cardano-1.34.1.tar.gz
6161
RUN tar xzf cardano-bin.tar.gz ./cardano-cli && mv cardano-cli /app/bin
6262
RUN /app/bin/cardano-cli --version
6363
RUN rm -f cardano-bin.tar.gz

mithril-aggregator/Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY mithril-aggregator/mithril-aggregator /app/bin/mithril-aggregator
1414
COPY mithril-aggregator/config /app/config
1515

1616
# Install cardano-cli
17-
RUN wget -nv -O cardano-bin.tar.gz https://hydra.iohk.io/build/21343721/download/1/cardano-node-1.35.4-linux.tar.gz
17+
RUN wget -nv -O cardano-bin.tar.gz https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-1.35.4-linux.tar.gz
1818
RUN tar xzf cardano-bin.tar.gz ./cardano-cli && mv cardano-cli /app/bin
1919
RUN /app/bin/cardano-cli --version
2020
RUN rm -f cardano-bin.tar.gz

mithril-signer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ COPY --from=rustbuilder /app/config /app/config
5656
WORKDIR /app/
5757

5858
# Install cardano-cli
59-
RUN wget -nv -O cardano-bin.tar.gz https://hydra.iohk.io/build/13065769/download/1/cardano-node-1.34.1-linux.tar.gz
59+
RUN wget -nv -O cardano-bin.tar.gz https://storage.googleapis.com/mithril-cardano-node-archive/cardano-1.34.1.tar.gz
6060
RUN tar xzf cardano-bin.tar.gz ./cardano-cli && mv cardano-cli /app/bin
6161
RUN /app/bin/cardano-cli --version
6262
RUN rm -f cardano-bin.tar.gz

mithril-signer/Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY mithril-signer/mithril-signer /app/bin/mithril-signer
1414
COPY mithril-signer/config /app/config
1515

1616
# Install cardano-cli
17-
RUN wget -nv -O cardano-bin.tar.gz https://hydra.iohk.io/build/21343721/download/1/cardano-node-1.35.4-linux.tar.gz
17+
RUN wget -nv -O cardano-bin.tar.gz https://update-cardano-mainnet.iohk.io/cardano-node-releases/cardano-node-1.35.4-linux.tar.gz
1818
RUN tar xzf cardano-bin.tar.gz ./cardano-cli && mv cardano-cli /app/bin
1919
RUN /app/bin/cardano-cli --version
2020
RUN rm -f cardano-bin.tar.gz

mithril-test-lab/mithril-devnet/devnet-mkfiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ SECURITY_PARAM=2
4848
NODE_PORT_START=3000
4949
NODE_ADDR_PREFIX="172.16.238"
5050
NODE_ADDR_INCREMENT=10
51-
CARDANO_BINARY_URL="https://hydra.iohk.io/build/13065769/download/1/cardano-node-1.34.1-linux.tar.gz"
51+
CARDANO_BINARY_URL="https://storage.googleapis.com/mithril-cardano-node-archive/cardano-1.34.1.tar.gz"
5252

5353
GENESIS_VERIFICATION_KEY=5b33322c3235332c3138362c3230312c3137372c31312c3131372c3133352c3138372c3136372c3138312c3138382c32322c35392c3230362c3130352c3233312c3135302c3231352c33302c37382c3231322c37362c31362c3235322c3138302c37322c3133342c3133372c3234372c3136312c36385d
5454
GENESIS_SECRET_KEY=5b3131382c3138342c3232342c3137332c3136302c3234312c36312c3134342c36342c39332c3130362c3232392c38332c3133342c3138392c34302c3138392c3231302c32352c3138342c3136302c3134312c3233372c32362c3136382c35342c3233392c3230342c3133392c3131392c31332c3139395d

0 commit comments

Comments
 (0)