diff --git a/scripts/ct/run.sh b/scripts/ct/run.sh index 13a84138d..9f8f852b2 100755 --- a/scripts/ct/run.sh +++ b/scripts/ct/run.sh @@ -124,6 +124,9 @@ if [ -z "${PROFILE+x}" ]; then apps/emqx_dashboard) export PROFILE='emqx-enterprise' ;; + apps/emqx_rule_engine) + export PROFILE='emqx-enterprise' + ;; lib-ee*) ## ensure enterprise profile when testing lib-ee applications export PROFILE='emqx-enterprise' diff --git a/scripts/find-apps.sh b/scripts/find-apps.sh index ac65b7a6f..30c4e4716 100755 --- a/scripts/find-apps.sh +++ b/scripts/find-apps.sh @@ -91,9 +91,6 @@ matrix() { entries+=("$(format_app_entry "$app" 1 emqx "$runner")") entries+=("$(format_app_entry "$app" 1 emqx-enterprise "$runner")") ;; - apps/emqx_bridge_kafka) - entries+=("$(format_app_entry "$app" 3 emqx-enterprise "$runner")") - ;; apps/emqx_connector) entries+=("$(format_app_entry "$app" 1 emqx "$runner")") entries+=("$(format_app_entry "$app" 1 emqx-enterprise "$runner")") @@ -102,6 +99,10 @@ matrix() { entries+=("$(format_app_entry "$app" 1 emqx "$runner")") entries+=("$(format_app_entry "$app" 1 emqx-enterprise "$runner")") ;; + apps/emqx_rule_engine) + entries+=("$(format_app_entry "$app" 1 emqx "$runner")") + entries+=("$(format_app_entry "$app" 1 emqx-enterprise "$runner")") + ;; apps/*) if [[ -f "${app}/BSL.txt" ]]; then profile='emqx-enterprise'