From 27b760d84e5df607b9495624cb45287af40f81f6 Mon Sep 17 00:00:00 2001 From: Alex Skrypnyk Date: Fri, 21 Aug 2026 10:29:08 +1000 Subject: [PATCH 1/3] Replaced the provision task completion marker '<' with '+'. --- scripts/provision-00-enable-demo-modules.sh | 2 +- scripts/provision-10-enable-dev-modules.sh | 2 +- scripts/provision-20-migration.sh | 2 +- scripts/provision-30-search-index.sh | 2 +- scripts/provision-40-example.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/provision-00-enable-demo-modules.sh b/scripts/provision-00-enable-demo-modules.sh index 6f4088706..e0c65fabd 100755 --- a/scripts/provision-00-enable-demo-modules.sh +++ b/scripts/provision-00-enable-demo-modules.sh @@ -18,7 +18,7 @@ set -eu info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/scripts/provision-10-enable-dev-modules.sh b/scripts/provision-10-enable-dev-modules.sh index 2434bcaca..8e1bd4fd7 100755 --- a/scripts/provision-10-enable-dev-modules.sh +++ b/scripts/provision-10-enable-dev-modules.sh @@ -21,7 +21,7 @@ DRUPAL_GENERATED_CONTENT_SKIP="${DRUPAL_GENERATED_CONTENT_SKIP:-0}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/scripts/provision-20-migration.sh b/scripts/provision-20-migration.sh index 216ec223d..7cd9bf101 100755 --- a/scripts/provision-20-migration.sh +++ b/scripts/provision-20-migration.sh @@ -48,7 +48,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/scripts/provision-30-search-index.sh b/scripts/provision-30-search-index.sh index 826a795bd..1d09a40b8 100755 --- a/scripts/provision-30-search-index.sh +++ b/scripts/provision-30-search-index.sh @@ -16,7 +16,7 @@ DRUPAL_SEARCH_INDEX_SKIP="${DRUPAL_SEARCH_INDEX_SKIP:-0}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/scripts/provision-40-example.sh b/scripts/provision-40-example.sh index 17282c893..e40b31913 100755 --- a/scripts/provision-40-example.sh +++ b/scripts/provision-40-example.sh @@ -21,7 +21,7 @@ set -eu info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on From 1547d7cbdd2a277a3ee3b2d3da1eac36cf332a99 Mon Sep 17 00:00:00 2001 From: Alex Skrypnyk Date: Fri, 21 Aug 2026 10:29:17 +1000 Subject: [PATCH 2/3] Updated snapshots. --- .../_baseline/scripts/provision-00-enable-demo-modules.sh | 2 +- .../_baseline/scripts/provision-10-enable-dev-modules.sh | 2 +- .../_baseline/scripts/provision-30-search-index.sh | 2 +- .../handler_process/_baseline/scripts/provision-40-example.sh | 2 +- .../migration_enabled/scripts/provision-20-migration.sh | 2 +- .../scripts/provision-20-migration.sh | 2 +- .../migration_enabled_lagoon/scripts/provision-20-migration.sh | 2 +- .../scripts/provision-20-migration.sh | 2 +- .../scripts/provision-20-migration.sh | 2 +- .../scripts/provision-20-migration.sh | 2 +- .../scripts/provision-20-migration.sh | 2 +- .../migration_fetch_source_s3/scripts/provision-20-migration.sh | 2 +- .../scripts/provision-20-migration.sh | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-00-enable-demo-modules.sh b/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-00-enable-demo-modules.sh index 2b045d30e..6d1c7f60a 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-00-enable-demo-modules.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-00-enable-demo-modules.sh @@ -18,7 +18,7 @@ set -eu info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-10-enable-dev-modules.sh b/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-10-enable-dev-modules.sh index 4a0562757..a9172a05f 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-10-enable-dev-modules.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-10-enable-dev-modules.sh @@ -19,7 +19,7 @@ DRUPAL_GENERATED_CONTENT_SKIP="${DRUPAL_GENERATED_CONTENT_SKIP:-0}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-30-search-index.sh b/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-30-search-index.sh index 826a795bd..1d09a40b8 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-30-search-index.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-30-search-index.sh @@ -16,7 +16,7 @@ DRUPAL_SEARCH_INDEX_SKIP="${DRUPAL_SEARCH_INDEX_SKIP:-0}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-40-example.sh b/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-40-example.sh index 17282c893..e40b31913 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-40-example.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/_baseline/scripts/provision-40-example.sh @@ -21,7 +21,7 @@ set -eu info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/scripts/provision-20-migration.sh b/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/scripts/provision-20-migration.sh index bcecf8918..300059476 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/scripts/provision-20-migration.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/migration_enabled/scripts/provision-20-migration.sh @@ -46,7 +46,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/scripts/provision-20-migration.sh b/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/scripts/provision-20-migration.sh index bcecf8918..300059476 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/scripts/provision-20-migration.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/scripts/provision-20-migration.sh @@ -46,7 +46,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/scripts/provision-20-migration.sh b/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/scripts/provision-20-migration.sh index bcecf8918..300059476 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/scripts/provision-20-migration.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/scripts/provision-20-migration.sh @@ -46,7 +46,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/scripts/provision-20-migration.sh b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/scripts/provision-20-migration.sh index bcecf8918..300059476 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/scripts/provision-20-migration.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_acquia/scripts/provision-20-migration.sh @@ -46,7 +46,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/scripts/provision-20-migration.sh b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/scripts/provision-20-migration.sh index bcecf8918..300059476 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/scripts/provision-20-migration.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_container_registry/scripts/provision-20-migration.sh @@ -46,7 +46,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/scripts/provision-20-migration.sh b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/scripts/provision-20-migration.sh index bcecf8918..300059476 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/scripts/provision-20-migration.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_ftp/scripts/provision-20-migration.sh @@ -46,7 +46,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/scripts/provision-20-migration.sh b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/scripts/provision-20-migration.sh index bcecf8918..300059476 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/scripts/provision-20-migration.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_lagoon/scripts/provision-20-migration.sh @@ -46,7 +46,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/scripts/provision-20-migration.sh b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/scripts/provision-20-migration.sh index bcecf8918..300059476 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/scripts/provision-20-migration.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_s3/scripts/provision-20-migration.sh @@ -46,7 +46,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on diff --git a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/scripts/provision-20-migration.sh b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/scripts/provision-20-migration.sh index bcecf8918..300059476 100755 --- a/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/scripts/provision-20-migration.sh +++ b/.vortex/installer/tests/Fixtures/handler_process/migration_fetch_source_url/scripts/provision-20-migration.sh @@ -46,7 +46,7 @@ VORTEX_FETCH_DB2_FILE="${VORTEX_FETCH_DB2_FILE:-db2.sql}" info() { printf " ==> %s\n" "${1}"; } note() { printf " %s\n" "${1}"; } task() { printf " > %s\n" "${1}"; } -pass() { printf " < %s\n" "${1}"; } +pass() { printf " + %s\n" "${1}"; } fail() { printf " ! %s\n" "${1}"; exit "${2:-1}"; } # @formatter:on From 94915a69f98cb812014f370044686315ef631fcb Mon Sep 17 00:00:00 2001 From: Alex Skrypnyk Date: Fri, 21 Aug 2026 10:55:17 +1000 Subject: [PATCH 3/3] Re-triggered CI to clear a flaky check.