From 42ccdcc4a5f93b12133c98b5c915ca6e6325b6d1 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Tue, 9 Jan 2024 17:49:32 +1000 Subject: [PATCH] feat: Add smoke test --- .github/workflows/smoke-test.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/smoke-test.yaml b/.github/workflows/smoke-test.yaml index 0703456b..200f99a0 100644 --- a/.github/workflows/smoke-test.yaml +++ b/.github/workflows/smoke-test.yaml @@ -48,7 +48,7 @@ jobs: - name: Create Xatu Sentry for every participant run: | export services=$(kurtosis enclave inspect xatu | grep cl- | grep http | awk '{ print $2 }' | grep -v validator) - export BEACON_SERVICES=$(readarray -t array <<< "$services") + readarray -t BEACON_SERVICES <<< "$services"; echo "Beacon nodes discovered: $BEACON_SERVICES" for service in "${BEACON_SERVICES[@]}"; do @@ -96,8 +96,7 @@ jobs: - name: Check Clickhouse for attestation data from every participant run: | export services=$(kurtosis enclave inspect xatu | grep cl- | grep http | awk '{ print $2 }' | grep -v validator) - export BEACON_SERVICES=$(readarray -t array <<< "$services") - echo "Beacon nodes discovered: $BEACON_SERVICES" + readarray -t BEACON_SERVICES <<< "$services"; for service in "${BEACON_SERVICES[@]}"; do echo "Checking Clickhouse for attestation data from $service..."