From 436a21ec1bb41712722dda5de932b35352521bc1 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 7 Aug 2024 11:40:35 +0200 Subject: [PATCH] ci: only update jobs, do not check views Updating jobs works, but there is also an error returned: Jenkins returned an unexpected view name All (expected: all) There is no need to update the Views, as there are none configured. Only the default "All" view is available, and that seems to cause the failure. Signed-off-by: Niels de Vos --- deploy/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/Makefile b/deploy/Makefile index 936f31565..aa77872e8 100644 --- a/deploy/Makefile +++ b/deploy/Makefile @@ -5,4 +5,4 @@ test: cd $(WORKDIR) && jenkins-jobs --allow-empty-variables test -o $(OUTPUT) jobs deploy: - cd $(WORKDIR) && jenkins-jobs --allow-empty-variables update --delete-old jobs + cd $(WORKDIR) && jenkins-jobs --allow-empty-variables update --jobs-only --delete-old jobs