From 2f5bde9680f844176c4ff416d6bbb77616f627ba Mon Sep 17 00:00:00 2001 From: steffyP Date: Tue, 14 Nov 2023 15:04:05 +0100 Subject: [PATCH] remove matrix for workflows, as MySQL engine is now the default (#7) --- .github/workflows/main.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 99f87e5..ecfef68 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,11 +18,6 @@ jobs: smoke-test: name: Setup infrastructure runs-on: ubuntu-latest - strategy: - matrix: - # run test with the default, which is "mariadb", and the feature flag - # which will run mysql in a separate container - mysql-feature-flag: ["default (mariadb)", "mysql"] steps: - name: Checkout uses: actions/checkout@v3 @@ -45,17 +40,12 @@ jobs: env: LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }} LOCALSTACK_VOLUME_DIR: ${{ github.workspace }}/ls_test - MYSQL_FEATURE_FLAG: ${{ matrix.mysql-feature-flag }} run: | mkdir ls_test ls -la ls_test docker pull localstack/localstack-pro:latest # Start LocalStack in the background - if [ "mysql" == ${MYSQL_FEATURE_FLAG} ]; then - LS_LOG=trace RDS_MYSQL_DOCKER=1 localstack start -d - else - LS_LOG=trace localstack start -d - fi + LS_LOG=trace localstack start -d # Wait 30 seconds for the LocalStack container to become ready before timing out echo "Waiting for LocalStack startup..." localstack wait -t 15