Merge pull request #2158 from bgilbert/testiso

ci: test FCOS PXE and ISO install
This commit is contained in:
OpenShift Merge Robot 2020-07-31 13:52:59 -04:00 committed by GitHub
commit 2905de89c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 1 deletions

View File

@ -77,11 +77,25 @@ parallel fcos: {
rmdir insttree
coreos-assembler fetch
coreos-assembler build
coreos-assembler buildextend-metal
coreos-assembler buildextend-metal4k
coreos-assembler buildextend-live
# Install the tests
make -C tests/kolainst install
""")
}
fcosKola(cosaDir: "${env.WORKSPACE}")
stage("Test") {
parallel metal: {
try {
shwrap("cd /srv/fcos && kola testiso -S --scenarios pxe-install,iso-offline-install --output-dir tmp/kola-testiso-metal")
} finally {
shwrap("cd /srv/fcos && tar -cf - tmp/kola-testiso-metal/ | xz -c9 > ${env.WORKSPACE}/kola-testiso-metal.tar.xz")
archiveArtifacts allowEmptyArchive: true, artifacts: 'kola-testiso*.tar.xz'
}
}, kola: {
fcosKola(cosaDir: "${env.WORKSPACE}")
}
}
}
},
buildopts: {