We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6317da6 commit a016328Copy full SHA for a016328
.github/workflows/test_cloudpods.yml
@@ -63,9 +63,9 @@ jobs:
63
docker pull localstack/localstack-pro:${{ matrix.tag }}
64
# Start LocalStack in the background
65
if [ "mysql" == ${MYSQL_FEATURE_FLAG} ]; then
66
- LS_LOG=trace RDS_MYSQL_DOCKER=1 localstack start -d
+ DEBUG=1 RDS_MYSQL_DOCKER=1 localstack start -d
67
else
68
- LS_LOG=trace localstack start -d
+ DEBUG=1 localstack start -d
69
fi
70
# Wait 30 seconds for the LocalStack container to become ready before timing out
71
echo "Waiting for LocalStack startup..."
@@ -87,4 +87,8 @@ jobs:
87
cat output
88
exit 1
89
90
+ - name: Show Logs
91
+ if: failure()
92
+ run: |
93
+ localstack logs
94
0 commit comments