Procházet zdrojové kódy

ci: test emqx_rule_engine with both ce and ee profiles, use ee by default

Ivan Dyachkov před 2 roky
rodič
revize
b75b8ef9a9
2 změnil soubory, kde provedl 7 přidání a 3 odebrání
  1. 3 0
      scripts/ct/run.sh
  2. 4 3
      scripts/find-apps.sh

+ 3 - 0
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'

+ 4 - 3
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'