Skip to content

Commit

Permalink
Update testing procedure.
Browse files Browse the repository at this point in the history
  • Loading branch information
antejavor committed Jun 26, 2024
1 parent d2a9efb commit 587f73c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/lint-test-high-availability.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@ jobs:
--set memgraph.env.MEMGRAPH_ENTERPRISE_LICENSE=$MEMGRAPH_ENTERPRISE_LICENSE \
--set memgraph.env.MEMGRAPH_ORGANIZATION_NAME=$MEMGRAPH_ORGANIZATION_NAME
- name: Check the status of Memgraph setup
if: steps.list-changed.outputs.changed == 'true'
run: |
pods=$(kubectl get pods --selector=job-name=memgraph-setup --output=jsonpath='{.items[*].metadata.name}')
for pod in $pods; do
echo "Logs from $pod:"
kubectl logs $pod
done
- name: Run Helm tests
if: steps.list-changed.outputs.changed == 'true'
run: |
Expand Down

0 comments on commit 587f73c

Please sign in to comment.