Skip to content

Commit e8089da

Browse files
committed
wip(devnet): download DMQ binary - DO NOT MERGE
1 parent 389de22 commit e8089da

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ fi
3232
if [ -z "${HARD_FORK_CONWAY_AT_EPOCH}" ]; then
3333
HARD_FORK_CONWAY_AT_EPOCH=0
3434
fi
35+
if [ -z "${DMQ_NODE_BINARY_URL}" ]; then
36+
DMQ_NODE_BINARY_URL="https://github.com/input-output-hk/mithril/raw/refs/heads/jpraynaud/dmq-node-binary/mithril-test-lab/mithril-devnet/bin/dmq-node-0.2.0.0-581990fcaf71071fa44fd12dd8e916adb3bd95b4"
37+
fi
3538
if [ -z "${NUM_FULL_NODES}" ]; then
3639
NUM_FULL_NODES="1"
3740
fi
@@ -79,6 +82,12 @@ if [[ "$SKIP_CARDANO_BIN_DOWNLOAD" != "true" ]]; then
7982
rm -f cardano-bin.tar.gz
8083
fi
8184

85+
# Download DMQ node binary (temporary implementation)
86+
# TODO: remove this temporary implementation once the DMQ node is available in the Cardano releases
87+
echo ">> Downloading DMQ node binary..."
88+
curl -sL "${DMQ_NODE_BINARY_URL}" --output ${ARTIFACTS_DIR}/bin/dmq-node
89+
chmod u+x ${ARTIFACTS_DIR}/bin/dmq-node
90+
8291
# Switch to artifacts directory
8392
pushd "${ARTIFACTS_DIR}" > /dev/null || exit
8493

0 commit comments

Comments
 (0)