diff --git a/.github/workflows/integration_test_mysql.yaml b/.github/workflows/integration_test_mysql.yaml index 3364f9ef..f50905d9 100644 --- a/.github/workflows/integration_test_mysql.yaml +++ b/.github/workflows/integration_test_mysql.yaml @@ -283,16 +283,33 @@ jobs: run: | export TICDC_NEWARCH=true && make integration_test CASE=partition_table - # The 3th case in this group - name: Test multi_tables_ddl if: ${{ success() }} run: | export TICDC_NEWARCH=true && make integration_test CASE=multi_tables_ddl + - name: Test ddl_attributes if: ${{ success() }} run: | export TICDC_NEWARCH=true && make integration_test CASE=ddl_attributes + + - name: Test http_api_tls + if: ${{ success() }} + run: | + export TICDC_NEWARCH=true && make integration_test CASE=http_api_tls + + + - name: Test http_api_tls_with_user_auth + if: ${{ success() }} + run: | + export TICDC_NEWARCH=true && make integration_test CASE=http_api_tls_with_user_auth + + # the 7th case in this group + - name: Test default_value + if: ${{ success() }} + run: | + export TICDC_NEWARCH=true && make integration_test CASE=default_value - name: Upload test logs if: always()