Merge pull request #2733 from ostreedev/dependabot/submodules/libglnx-e701578
build(deps): bump libglnx from `26375b5` to `e701578`
This commit is contained in:
commit
a335a780a9
|
|
@ -40,40 +40,29 @@ stage("Build") {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build FCOS and do a kola basic run
|
// Build FCOS and run kola tests.
|
||||||
stage("FCOS") {
|
// Both kola and kolaTestIso require 4G max. Add 512M for overhead.
|
||||||
cosaPod(runAsUser: 0, memory: "3072Mi", cpu: "4") {
|
cosaPod(runAsUser: 0, memory: "4608Mi", cpu: "4") {
|
||||||
stage("Build FCOS") {
|
stage("Build FCOS") {
|
||||||
checkout scm
|
checkout scm
|
||||||
unstash 'build'
|
unstash 'build'
|
||||||
shwrap("""
|
shwrap("""
|
||||||
# Move the bits into the cosa pod
|
# Move the bits into the cosa pod
|
||||||
rsync -rlv installed/rootfs/ /
|
rsync -rlv installed/rootfs/ /
|
||||||
rsync -rlv installed/tests/ /
|
rsync -rlv installed/tests/ /
|
||||||
coreos-assembler init --force https://github.com/coreos/fedora-coreos-config
|
coreos-assembler init --force https://github.com/coreos/fedora-coreos-config
|
||||||
mkdir -p overrides/rootfs
|
mkdir -p overrides/rootfs
|
||||||
# And override the on-host bits
|
# And override the on-host bits
|
||||||
mv installed/rootfs/* overrides/rootfs/
|
mv installed/rootfs/* overrides/rootfs/
|
||||||
rm installed -rf
|
rm installed -rf
|
||||||
coreos-assembler fetch
|
coreos-assembler fetch
|
||||||
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 --fast
|
coreos-assembler buildextend-live --fast
|
||||||
|
|
||||||
""")
|
""")
|
||||||
}
|
|
||||||
stage("Test") {
|
|
||||||
parallel metal: {
|
|
||||||
try {
|
|
||||||
shwrap("kola testiso -S --scenarios pxe-install,iso-offline-install,pxe-offline-install --output-dir tmp/kola-testiso-metal")
|
|
||||||
} finally {
|
|
||||||
shwrap("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}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
kola(cosaDir: "${env.WORKSPACE}")
|
||||||
|
kolaTestIso(cosaDir: "${env.WORKSPACE}", skipMetal4k: true, skipMultipath: true)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
2
libglnx
2
libglnx
|
|
@ -1 +1 @@
|
||||||
Subproject commit 26375b5308360764bc6604f292192b88a59ad3ce
|
Subproject commit e701578c6f4e621c7c3c688b5a04bcbf0a67d930
|
||||||
Loading…
Reference in New Issue