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 20e6fa0 commit f867051
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/smoke-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
for service in "${BEACON_SERVICES[@]}"; do
port=$(kurtosis port print xatu $service http)
echo "Creating Xatu Sentry for $service which is running at $port..."
cat <<EOF > $(service).yaml
cat <<EOF > "${service}.yaml"
name: $service
ethereum:
beaconNodeAddress: $port
Expand Down Expand Up @@ -87,11 +87,11 @@ jobs:
config:
address: xatu-server:8080
tls: false
<<EOF
EOF
cat $(service).yaml;
cat "${service}.yaml";
docker run -d -v $(pwd)/$(service).yaml:/opt/config.yaml --network=xatu_xatu-net ethpandaops/xatu:latest sentry --config /opt/config.yaml;
docker run -d -v "$(pwd)/${service}.yaml:/opt/config.yaml" --network=xatu_xatu-net ethpandaops/xatu:latest sentry --config /opt/config.yaml;
done
- name: Check Clickhouse for attestation data from every participant
Expand Down

0 comments on commit f867051

Please sign in to comment.