From 494df746e23f3f334aac9c391077b2c89f578220 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Fri, 14 Feb 2025 19:33:55 +0000 Subject: [PATCH] Issue #3499275 by acbramley: Remove --quiet from updatedb in Validatable config job (cherry picked from commit 5363b947a220de6aca3abe8d677c1010fa54bde0) --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ffcbee454a8..a0e3f6093cd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -528,7 +528,7 @@ default: - vendor/bin/drush config:inspect --statistics > HEAD.json # Return to the MR commit being tested, conditionally install updates, always rebuild the container. - git checkout -f $CI_COMMIT_SHA - - git diff $CI_MERGE_REQUEST_DIFF_BASE_SHA $CI_COMMIT_SHA --name-only | grep -q '.install$\|.post_update\.php$' && echo '🤖 Installing DB updates…' && vendor/bin/drush updatedb --yes --quiet + - git diff $CI_MERGE_REQUEST_DIFF_BASE_SHA $CI_COMMIT_SHA --name-only | grep -q '.install$\|.post_update\.php$' && echo '🤖 Installing DB updates…' && vendor/bin/drush updatedb --yes - vendor/bin/drush cr --quiet # Compute statistics for coverage of validatable config for MR. - vendor/bin/drush config:inspect --statistics > MR.json