Skip to content

Commit

Permalink
chore: update project file structure and dependencies
Browse files Browse the repository at this point in the history
- remove obsolete entries from `.gitignore`
- change the location where `cardano-cli` and `cardano-node` are extracted in `mkfiles-init.sh`
  • Loading branch information
falcucci committed Aug 20, 2024
1 parent 0202606 commit d70ccc4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 28 deletions.
26 changes: 0 additions & 26 deletions mithril-test-lab/mithril-devnet/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,5 @@ ipc
artifacts
cardano-cli
cardano-node
cardano-node-chairman
cardano-submit-api
cardano-testnet
cardano-topology
cardano-tracer
bech32
locli
tx-generator
libblst.dylib
libc++.1.0.dylib
libc++abi.1.dylib
libcharset.1.dylib
libcrypto.3.dylib
libffi.8.dylib
libgmp.10.dylib
libiconv-nocharset.dylib
libiconv.dylib
libsecp256k1.2.dylib
libsodium.23.dylib
libssl.3.dylib
libz.dylib
db-analyser
db-synthesizer
db-truncater
demo-acceptor
demo-forwarder
tmp
*.tar.gz
1 change: 0 additions & 1 deletion mithril-test-lab/mithril-devnet/devnet-mkfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ set -e
if [[ -n $DEBUG ]]; then
set -x
fi
set -x

# Script directory variable
SCRIPT_DIRECTORY=$(dirname $0)
Expand Down
2 changes: 1 addition & 1 deletion mithril-test-lab/mithril-devnet/mkfiles/mkfiles-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if [[ "$SKIP_CARDANO_BIN_DOWNLOAD" != "true" ]]; then
echo ">> Downloading cardano-cli & cardano-node..."
curl -sL "${CARDANO_BINARY_URL}" --output cardano-bin.tar.gz
echo ">> Extracting cardano-cli & cardano-node..."
tar xzf cardano-bin.tar.gz ./bin || (mkdir -p ./bin && tar --strip-components=1 -C ./bin -xzf cardano-bin.tar.gz)
tar xzf cardano-bin.tar.gz ./bin -C "${ARTIFACTS_DIR}/" || (mkdir -p "${ARTIFACTS_DIR}/bin" && tar --strip-components=1 -C "${ARTIFACTS_DIR}/bin" -xzf cardano-bin.tar.gz)
rm -f cardano-bin.tar.gz
fi

Expand Down

0 comments on commit d70ccc4

Please sign in to comment.