Skip to content

Commit

Permalink
feat: Add smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Jan 9, 2024
1 parent f27ff81 commit 42ccdcc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/smoke-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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..."
Expand Down

0 comments on commit 42ccdcc

Please sign in to comment.