From b70bb7a72c214e126327cce2e62730d9e572d38d Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Tue, 9 Jun 2020 18:13:58 -0400 Subject: [PATCH] ci: test with git master from ignition This is symmetrical to https://github.com/coreos/ignition/pull/994. --- .cci.jenkinsfile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.cci.jenkinsfile b/.cci.jenkinsfile index f4cf599..3a03d61 100644 --- a/.cci.jenkinsfile +++ b/.cci.jenkinsfile @@ -1,6 +1,15 @@ // Documentation: https://github.com/coreos/coreos-ci/blob/master/README-upstream-ci.md -cosaPod { +cosaPod(buildroot: true) { checkout scm - fcosBuild(make: true) + + // we want to test against the latest ignition until they're merged + // https://github.com/coreos/fedora-coreos-tracker/issues/511 + + // hack to satisfy golang compiler wanting to cache things + shwrap("mkdir cache") + withEnv(["XDG_CACHE_HOME=${env.WORKSPACE}/cache"]) { + shwrap("git clone https://github.com/coreos/ignition") + fcosBuild(make: true, makeDirs: ["ignition"]) + } }