forked from coreos/ignition-dracut
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: test with git master of coreos/ignition
This is symmetrical to coreos/ignition#994.
- Loading branch information
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"]) | ||
} | ||
} |