From 032b3d9cfd13dc61158e83e586d276b487de0402 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Wed, 16 Dec 2020 13:26:51 +0100 Subject: [PATCH] Add "cleanup_file_variables" sub stage GitLab Runner 13.5.0 added the "cleanup_file_variables" sub stage to the "run_exec" stage of every GitLab CI job. Update all Custom executor scripts so that they handle that sub stage appropriately. --- libvirt-qemu/executor.sh | 1 + windows-docker/executor.py | 1 + 2 files changed, 2 insertions(+) diff --git a/libvirt-qemu/executor.sh b/libvirt-qemu/executor.sh index ed5688a..6ff8df9 100755 --- a/libvirt-qemu/executor.sh +++ b/libvirt-qemu/executor.sh @@ -98,6 +98,7 @@ do_run() { "after_script") ;; "archive_cache") ;; "upload_artifacts_on_success"|"upload_artifacts_on_failure") ;; + "cleanup_file_variables") ;; *) fatal_error "Unsupported run stage '${RUN_STAGE}'" ;; esac diff --git a/windows-docker/executor.py b/windows-docker/executor.py index 3cc6dbd..ff6a5d1 100644 --- a/windows-docker/executor.py +++ b/windows-docker/executor.py @@ -77,6 +77,7 @@ def do_run(container_name, args): 'archive_cache', 'upload_artifacts_on_success', 'upload_artifacts_on_failure', + 'cleanup_file_variables', ] script_src = args[0] -- GitLab