Skip to content

Commit

Permalink
remove matrix for workflows, as MySQL engine is now the default
Browse files Browse the repository at this point in the history
  • Loading branch information
steffyP committed Nov 14, 2023
1 parent 56536f6 commit c374ec5
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c374ec5

Please sign in to comment.