File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 1818 smoke-test :
1919 name : Setup infrastructure
2020 runs-on : ubuntu-latest
21- strategy :
22- matrix :
23- # run test with the default, which is "mariadb", and the feature flag
24- # which will run mysql in a separate container
25- mysql-feature-flag : ["default (mariadb)", "mysql"]
2621 steps :
2722 - name : Checkout
2823 uses : actions/checkout@v3
@@ -45,17 +40,12 @@ jobs:
4540 env :
4641 LOCALSTACK_API_KEY : ${{ secrets.LOCALSTACK_API_KEY }}
4742 LOCALSTACK_VOLUME_DIR : ${{ github.workspace }}/ls_test
48- MYSQL_FEATURE_FLAG : ${{ matrix.mysql-feature-flag }}
4943 run : |
5044 mkdir ls_test
5145 ls -la ls_test
5246 docker pull localstack/localstack-pro:latest
5347 # Start LocalStack in the background
54- if [ "mysql" == ${MYSQL_FEATURE_FLAG} ]; then
55- LS_LOG=trace RDS_MYSQL_DOCKER=1 localstack start -d
56- else
57- LS_LOG=trace localstack start -d
58- fi
48+ LS_LOG=trace localstack start -d
5949 # Wait 30 seconds for the LocalStack container to become ready before timing out
6050 echo "Waiting for LocalStack startup..."
6151 localstack wait -t 15
You can’t perform that action at this time.
0 commit comments