Skip to content

Commit 6bcd830

Browse files
committed
CCM-10294: pipeline performance
1 parent 61aa937 commit 6bcd830

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

infrastructure/terraform/bin/terraform.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,7 @@ rm -rf ${component_path}/.terraform;
391391

392392
# Run global pre.sh
393393
if [ -f "pre.sh" ]; then
394+
echo "Running gloal pre.sh"
394395
source pre.sh "${region}" "${environment}" "${action}" \
395396
|| error_and_die "Global pre script execution failed with exit code ${?}";
396397
fi;
@@ -427,6 +428,7 @@ fi;
427428

428429
# Run pre-plan.sh / pre-apply.sh / pre-output.sh etc
429430
if [ -f "pre-${action}.sh" ]; then
431+
echo "Running pre-${action}.sh"
430432
source pre-${action}.sh "${region}" "${environment}" "${action}" \
431433
|| error_and_die "Component pre-${action}.sh script execution failed with exit code ${?}";
432434
fi;
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
source pre.sh
1+
echo "Running app pre-plan.sh"
2+
3+
source pre-tf.sh
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
source pre.sh
1+
echo "Running app pre-plan.sh"
2+
3+
source pre-tf.sh
File renamed without changes.

0 commit comments

Comments
 (0)