Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

ci: test with git master of coreos/ignition #193

Merged
merged 1 commit into from
Jun 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .cci.jenkinsfile
Original file line number Diff line number Diff line change
@@ -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"])
}
}