From 1948c0c76251411ac9df836b062fc04230370cc5 Mon Sep 17 00:00:00 2001 From: Brandon Schneider Date: Mon, 9 Sep 2024 12:30:15 -0500 Subject: [PATCH] Fix race condition We need cloud-connector first now --- pr_check.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pr_check.sh b/pr_check.sh index 07729b17..17034a54 100755 --- a/pr_check.sh +++ b/pr_check.sh @@ -36,11 +36,6 @@ EXTRA_DEPLOY_ARGS="--set-image-tag ${IMAGE_DISPATCHER}=${IMAGE_TAG} --set-templa # Deploy to an ephemeral environment source $CICD_ROOT/deploy_ephemeral_env.sh -# Run Playbook Dispatcher isolated tests -IQE_PLUGINS="playbook-dispatcher" -IQE_MARKER_EXPRESSION="smoke" -source $CICD_ROOT/cji_smoke_test.sh - # Re-deploy Playbook Dispatcher to an ephemeral environment, this time enabling the communication with Cloud Connector # The connect image template is overridden to make use of the connect.yaml file from before managed kafka was put in place bonfire deploy playbook-dispatcher cloud-connector \ @@ -54,6 +49,11 @@ bonfire deploy playbook-dispatcher cloud-connector \ --timeout ${DEPLOY_TIMEOUT} \ --set-parameter playbook-dispatcher/CLOUD_CONNECTOR_IMPL=impl +# Run Playbook Dispatcher isolated tests +IQE_PLUGINS="playbook-dispatcher" +IQE_MARKER_EXPRESSION="smoke" +source $CICD_ROOT/cji_smoke_test.sh + # Run RHC Contract integration tests COMPONENT_NAME="cloud-connector" IQE_PLUGINS="rhc-contract"