From c0a868f9bc00644dee925381fcb2a143d7444764 Mon Sep 17 00:00:00 2001 From: Adrien Gentil Date: Thu, 10 Feb 2022 13:39:59 +0100 Subject: [PATCH] NO-ISSUE: Jenkins should only build images (#414) Jenkins build is broken on master since https://github.com/openshift/assisted-installer/pull/412. This fix tells to Jenkins to only build the images, since all the other steps (lint, unit tests) are already part of Prow jobs. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7aff387a5..bed4df4c1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,7 +31,7 @@ pipeline { stage('build') { steps { - sh 'skipper make' + sh 'skipper make build-images' } }