From cab6abab687b57c6d9b7e03334ce5b7f01e1436c Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 26 Mar 2020 17:14:48 -0400 Subject: [PATCH] ci: fix `kola testiso` invocation The current invocation no longer works now that `--cosa-build` was renamed to just `--build` (in hindsight, I should've probably kept `--cosa-build` for a bit as an alias). Anyway, we can drop that argument completely now actually. So let's do that! --- .cci.jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cci.jenkinsfile b/.cci.jenkinsfile index 1c2f3c3d8..27ea0cbb2 100644 --- a/.cci.jenkinsfile +++ b/.cci.jenkinsfile @@ -10,6 +10,6 @@ cosaPod(buildroot: true) { shwrap("cd /srv/fcos && cosa buildextend-live") } stage("Test ISO") { - shwrap("cd /srv/fcos && kola testiso --cosa-build builds/latest/x86_64/meta.json -S") + shwrap("cd /srv/fcos && kola testiso -S") } }