Skip to content

Commit 2f5bde9

Browse files
authored
remove matrix for workflows, as MySQL engine is now the default (#7)
1 parent 56536f6 commit 2f5bde9

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ jobs:
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

0 commit comments

Comments
 (0)