Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kurtosis testing for nimbus eth1 and eth2 #2281

Merged
merged 14 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: remove unwanted files, and introduce a post script cleanup
  • Loading branch information
advaita-saha committed Jun 2, 2024
commit ef3010d63ff8845e4c0dd633b4cac8a525a8e3f7
32 changes: 0 additions & 32 deletions assertoor.yaml

This file was deleted.

13 changes: 12 additions & 1 deletion run-kurtosis-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.

# ------------------------------------------------
# Installation Checks
# ------------------------------------------------

# Checking for docker installation
echo "Checking docker installation"
if command -v docker &> /dev/null; then
Expand Down Expand Up @@ -49,6 +53,14 @@ enclave_dump=$(kurtosis enclave inspect nimbus-localtestnet)
assertoor_url=$(echo "$enclave_dump" | grep assertoor | grep http | sed 's/.*\(http:\/\/[0-9.:]\+\).*/\1/')
echo "Assertoor Checks Please Visit -> ${assertoor_url}"

# ------------------------------------------------
# Remove Generated File
# ------------------------------------------------
rm assertoor.yaml

# ------------------------------------------------
# Check for Test Status
# ------------------------------------------------
YELLOW='\033[1;33m'
GRAY='\033[0;37m'
GREEN='\033[0;32m'
Expand Down Expand Up @@ -187,5 +199,4 @@ fi
# ------------------------------------------------
# Cleanup
# ------------------------------------------------
rm assertoor.yaml
sudo kurtosis enclave rm -f nimbus-localtestnet
Loading