From a57a652fa21a0b59e81a9bc7b653b2038ba23a40 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Mon, 22 Jun 2020 14:40:27 +0200 Subject: [PATCH] Add step_script stage GitLab Runner 13.1.0 seems to add a "step_script" stage. Without this stage recognized libvirt jobs fail with: Executing "step_script" stage of the job script Unsupported run stage 'step_script' The "step_script" stage is not documented upstream. --- libvirt-qemu/executor.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/libvirt-qemu/executor.sh b/libvirt-qemu/executor.sh index aa0a60e..0b1a823 100755 --- a/libvirt-qemu/executor.sh +++ b/libvirt-qemu/executor.sh @@ -107,6 +107,7 @@ do_run() { "restore_cache") ;; "download_artifacts") ;; "build_script") ;; + "step_script") ;; "after_script") ;; "archive_cache") ;; "upload_artifacts_on_success"|"upload_artifacts_on_failure") ;; -- GitLab