From ea7a26ba655171b9285db61716476f214ae4cc0d Mon Sep 17 00:00:00 2001 From: Sebastian Nagel Date: Mon, 1 Aug 2022 16:13:43 +0200 Subject: [PATCH] Bring latest tagged cardano-node (1.35.3) in scope Also bump hydra-cluster package version as it seems to not have been updated --- hydra-cluster/hydra-cluster.cabal | 2 +- hydra-cluster/test/Test/CardanoNodeSpec.hs | 2 +- shell.nix | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hydra-cluster/hydra-cluster.cabal b/hydra-cluster/hydra-cluster.cabal index cdc5c5fd372..e1b655f9b1a 100644 --- a/hydra-cluster/hydra-cluster.cabal +++ b/hydra-cluster/hydra-cluster.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: hydra-cluster -version: 0.6.0 +version: 0.7.0 synopsis: Integration test suite using a local cluster of cardano and hydra nodes diff --git a/hydra-cluster/test/Test/CardanoNodeSpec.hs b/hydra-cluster/test/Test/CardanoNodeSpec.hs index 50509cf2e01..777c39ed6b7 100644 --- a/hydra-cluster/test/Test/CardanoNodeSpec.hs +++ b/hydra-cluster/test/Test/CardanoNodeSpec.hs @@ -20,7 +20,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` "1.35.0") + getCardanoNodeVersion >>= (`shouldContain` "1.35.3") -- NOTE: We hard-code the expected networkId here to detect any change to the -- genesis-shelley.json diff --git a/shell.nix b/shell.nix index 18f75bc7fdc..41f64479067 100644 --- a/shell.nix +++ b/shell.nix @@ -18,8 +18,8 @@ let cardano-node = import (pkgs.fetchgit { url = "https://github.com/input-output-hk/cardano-node"; - rev = "1.35.0"; - sha256 = "06arx9hv7dn3qxfy83f0b6018rxbsvh841nvfyg5w6qclm1hddj7"; + rev = "1.35.3-testnetonly"; + sha256 = "0vg5775z683wf421asxjm7g2b6yxmgprpylhs9ryb035id83slp2"; }) { };