Skip to content
Snippets Groups Projects

Add example recipes to build a single image

Merged Frederic Danis requested to merge fdanis/apertis-image-recipes:T5675 into apertis/v2019dev0
1 unresolved thread
1 file
+ 2
8
Compare changes
  • Side-by-side
  • Inline
+ 2
8
@@ -185,13 +185,7 @@ def pushOstreeRepo(architecture, type, board) {
rm -rf ${repo}""")
}
def runTestsJobs(image_name, profile_name, version, submit = true) {
if (!submit) {
println "Skipping submitting tests jobs for ${profile_name} ${version}"
return
}
def runTestsJobs(image_name, profile_name, version) {
dir ("apertis-tests") {
git(url: test_repo_url,
poll: false,
@@ -222,7 +216,7 @@ def submitTests(architecture, type, board, ostree = false) {
}
def profile_name = "${name}-${type}-${architecture}-${board}"
runTestsJobs (image_name, profile_name, env.PIPELINE_VERSION, true)
runTestsJobs (image_name, profile_name, env.PIPELINE_VERSION)
}
def buildOStree(architecture, type, board, debosarguments = "", repo = "repo") {
Loading