ci: Fix ISO testing
Regression from
5d7f897908
I'm not sure how (or if) this passed before, the job logs have
been GC'd.
This is a bit confusing but basically right now ostree/rpm-ostree's
CI jobs don't use `/srv/fcos` - it might make sense to port
these to `fcosBuild` but that needs investigation.
This commit is contained in:
parent
a5409b872f
commit
98137403aa
|
|
@ -79,7 +79,7 @@ parallel fcos: {
|
||||||
coreos-assembler build
|
coreos-assembler build
|
||||||
coreos-assembler buildextend-metal
|
coreos-assembler buildextend-metal
|
||||||
coreos-assembler buildextend-metal4k
|
coreos-assembler buildextend-metal4k
|
||||||
coreos-assembler buildextend-live
|
coreos-assembler buildextend-live --fast
|
||||||
# Install the tests
|
# Install the tests
|
||||||
make -C tests/kolainst install
|
make -C tests/kolainst install
|
||||||
""")
|
""")
|
||||||
|
|
@ -87,9 +87,9 @@ parallel fcos: {
|
||||||
stage("Test") {
|
stage("Test") {
|
||||||
parallel metal: {
|
parallel metal: {
|
||||||
try {
|
try {
|
||||||
shwrap("cd /srv/fcos && kola testiso -S --scenarios pxe-install,iso-offline-install --output-dir tmp/kola-testiso-metal")
|
shwrap("kola testiso -S --scenarios pxe-install,iso-offline-install --output-dir tmp/kola-testiso-metal")
|
||||||
} finally {
|
} finally {
|
||||||
shwrap("cd /srv/fcos && tar -cf - tmp/kola-testiso-metal/ | xz -c9 > ${env.WORKSPACE}/kola-testiso-metal.tar.xz")
|
shwrap("tar -cf - tmp/kola-testiso-metal/ | xz -c9 > ${env.WORKSPACE}/kola-testiso-metal.tar.xz")
|
||||||
archiveArtifacts allowEmptyArchive: true, artifacts: 'kola-testiso*.tar.xz'
|
archiveArtifacts allowEmptyArchive: true, artifacts: 'kola-testiso*.tar.xz'
|
||||||
}
|
}
|
||||||
}, kola: {
|
}, kola: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue