Skip to content

Commit

Permalink
Update instructions to use cardano-node 8.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ch1bo committed Jan 17, 2024
1 parent 79e2ae1 commit dfe7078
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion demo/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.9"

services:
cardano-node:
image: ghcr.io/input-output-hk/cardano-node:8.7.2
image: ghcr.io/input-output-hk/cardano-node:8.7.3
volumes:
- ./devnet:/devnet
environment:
Expand Down
12 changes: 6 additions & 6 deletions docs/docs/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ mkdir -p bin
version=0.14.0
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-x86_64-linux-${version}.zip
unzip -d bin hydra-x86_64-linux-${version}.zip
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version}/cardano-node-x86_64-linux-8.7.2.zip
unzip -d bin cardano-node-8.7.2-linux.zip
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.7.3/cardano-node-8.7.3-linux.tar.gz \
| tar xz -C bin ./cardano-node ./cardano-cli
curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-linux-x64.tar.gz \
| tar xz -C bin mithril-client
chmod +x bin/*
Expand All @@ -59,10 +59,10 @@ mkdir -p bin
version=0.14.0
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version}/hydra-aarch64-darwin-${version}.zip
unzip -d bin hydra-aarch64-darwin-${version}.zip
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version}/cardano-node-aarch-darwin-8.7.2.zip
unzip -d bin cardano-node-8.7.2-linux.zip
curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-macos-x64.tar.gz \
| tar xz -C bin
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version}/cardano-node-aarch-darwin-8.7.3.zip
unzip -d bin cardano-node-8.7.3-linux.zip
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.7.3/cardano-node-8.7.3-macos.tar.gz \
| tar xz -C bin --wildcards ./cardano-node ./cardano-cli '*.dylib'
chmod +x bin/*
```

Expand Down
2 changes: 1 addition & 1 deletion hydra-cluster/test/Test/CardanoNodeSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec = do
-- false positives test errors in case someone uses an "untested" /
-- different than in shell.nix version of cardano-node and cardano-cli.
it "has expected cardano-node version available" $
getCardanoNodeVersion >>= (`shouldContain` "8.7.2")
getCardanoNodeVersion >>= (`shouldContain` "8.7.3")

it "withCardanoNodeDevnet does start a block-producing devnet within 5 seconds" $
failAfter 5 $
Expand Down
2 changes: 1 addition & 1 deletion sample-node-config/aws/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "3.9"

services:
cardano-node:
image: inputoutput/cardano-node:8.7.2
image: inputoutput/cardano-node:8.7.3
restart: always
logging:
driver: "awslogs"
Expand Down

0 comments on commit dfe7078

Please sign in to comment.