Skip to content

Commit

Permalink
[ADP-3415] Fix ruby e2e to work in any build (#4753)
Browse files Browse the repository at this point in the history
  • Loading branch information
paolino authored Aug 26, 2024
2 parents abb3ca7 + 80c6149 commit a28a1ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/buildkite/main/linux-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ export TESTS_LOGDIR
CARDANO_NODE_CONFIGS="$(pwd)/configs/cardano"
export CARDANO_NODE_CONFIGS

VERSION=$(buildkite-agent meta-data get "release-version" --default "v2024-07-27")
CURRENT_VERSION=v2024-08-11

VERSION=$(buildkite-agent meta-data get "release-version" --default "$CURRENT_VERSION")

echo "VERSION=$VERSION"

buildkite-agent artifact \
Expand Down
3 changes: 3 additions & 0 deletions scripts/buildkite/release/release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ sed -i "s|WALLET_TAG=.*|WALLET_TAG=$NEW_CABAL_VERSION|g" README.md
sed -i "s|WALLET_VERSION=.*|WALLET_VERSION=$NEW_GIT_TAG|g" README.md
git commit -am "Update cardano-wallet version in README.md"

sed -i "s|$OLD_GIT_TAG|$NEW_GIT_TAG|g" scripts/buildkite/main/linux-e2e.sh
git commit -am "Update cardano-wallet version in linux-e2e.sh"

RELEASE_COMMIT=$(git rev-parse HEAD)

git remote set-url origin "[email protected]:cardano-foundation/cardano-wallet.git"
Expand Down

0 comments on commit a28a1ef

Please sign in to comment.