Skip to content

Commit

Permalink
Bump runtime node dependency to 8.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paolino committed Mar 25, 2024
1 parent 7ea184b commit 3fae343
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
nodeTag:
description: 'Node docker image tag'
required: true
default: '8.7.3'
default: '8.9.0'
walletTag:
description: 'Wallet docker image tag'
required: true
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
docker-compose logs > logs/docker-compose.log
docker-compose down
env:
NODE_TAG: ${{ github.event.inputs.nodeTag || '8.7.3'}}
NODE_TAG: ${{ github.event.inputs.nodeTag || '8.9.0'}}
WALLET_TAG: ${{ github.event.inputs.walletTag || 'rc-latest'}}
NETWORK: preprod
WALLET_DB: /tmp/wallet-db
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
nodeTag:
description: 'Node docker-image tag to use'
required: true
default: '8.7.3'
default: '8.9.0'
walletTag:
description: 'Wallet docker-image tag to use'
required: true
Expand All @@ -33,7 +33,7 @@ jobs:
TESTS_E2E_FIXTURES: ${{ secrets.TESTS_E2E_FIXTURES }}
BUILDKITE_API_TOKEN: ${{ secrets.BUILDKITE_TOKEN_READ_BUILDS_ARTIFACTS }}
WALLET: ${{ github.event.inputs.walletTag || 'rc-latest' }}
NODE: ${{ github.event.inputs.nodeTag || '8.7.3' }}
NODE: ${{ github.event.inputs.nodeTag || '8.9.0' }}
TESTS_E2E_TOKEN_METADATA: https://metadata.world.dev.cardano.org/
TAGS: ${{ github.event.inputs.tags || 'all' }}
E2E_DOCKER_RUN: 1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export NODE_DB=`pwd`/node-db
export WALLET_DB=`pwd`/wallet-db
# set the node tag and wallet tag to compatible versions
export NODE_TAG=8.7.3
export NODE_TAG=8.9.0
export WALLET_TAG=2024.3.1
# set a port for the wallet server
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ echo "OLD_GIT_TAG=$OLD_GIT_TAG"
OLD_CABAL_VERSION=$(tag_cabal_ver "$OLD_GIT_TAG")
echo "OLD_CABAL_VERSION=$OLD_CABAL_VERSION"

CARDANO_NODE_TAG="8.7.3"
CARDANO_NODE_TAG="8.9.0"
echo "CARDANO_NODE_TAG=$CARDANO_NODE_TAG"

git checkout "$BASE_COMMIT"
Expand Down
2 changes: 1 addition & 1 deletion scripts/sanchonet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -euo pipefail

export WALLET_TAG=rc-latest
export NODE_TAG=8.7.3
export NODE_TAG=8.9.0
export WALLET_PORT=8090
export NETWORK=sanchonet
export WALLET_DB=/tmp/cardano-wallet-sanchonet.db
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ One can also start tests against cardano-wallet docker. There is docker-compose-
>NETWORK=preprod \
>TESTS_E2E_TOKEN_METADATA=https://metadata.world.dev.cardano.org/ \
>WALLET=dev-master \
>NODE=8.7.3 \
>NODE=8.9.0 \
>NODE_CONFIG_PATH=`pwd`/state/configs/$NETWORK \
>DATA=`pwd`/state/node_db/$NETWORK
>docker-compose -f docker-compose-test.yml up
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/docker_compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
NETWORK=preprod \
TESTS_E2E_TOKEN_METADATA=https://metadata.world.dev.cardano.org/ \
WALLET=dev-master \
NODE=8.7.3 \
NODE=8.9.0 \
NODE_CONFIG_PATH=`pwd`/state/configs/$NETWORK \
DATA=`pwd`/state/node_db/$NETWORK \
WALLET_DATA=`pwd`/state/wallet_db/$NETWORK \
Expand Down

0 comments on commit 3fae343

Please sign in to comment.