Merge pull request #2018 from jlebon/pr/migrate-to-coreos-ci

ci: migrate to new coreos-ci project
This commit is contained in:
OpenShift Merge Robot 2020-03-04 17:32:56 -05:00 committed by GitHub
commit 26a2be0578
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 44 deletions

View File

@ -1,47 +1,40 @@
// See https://github.com/jlebon/coreos-ci // Documentation: https://github.com/coreos/coreos-ci/blob/master/README-upstream-ci.md
// This was originally copied from the rpm-ostree one
@Library('github.com/coreos/coreos-ci-lib@master') _
COSA_IMAGE = 'quay.io/coreos-assembler/coreos-assembler:latest'
COSA_BUILDROOT_IMAGE = 'registry.svc.ci.openshift.org/coreos/cosa-buildroot:latest'
stage("Build") { stage("Build") {
parallel normal: { parallel normal: {
coreos.pod(image: COSA_BUILDROOT_IMAGE, runAsUser: 0) { cosaPod(buildroot: true, runAsUser: 0) {
checkout scm checkout scm
stage("Core build") { stage("Core build") {
sh """ shwrap("""
set -xeuo pipefail # fetch tags so `git describe` gives a nice NEVRA when building the RPM
# fetch tags so `git describe` gives a nice NEVRA when building the RPM git fetch origin --tags
git fetch origin --tags git submodule update --init
git submodule update --init
env SKIP_INSTALLDEPS=1 ./ci/build.sh env SKIP_INSTALLDEPS=1 ./ci/build.sh
""" """)
} }
stage("Unit tests") { stage("Unit tests") {
try { try {
sh """ shwrap("""
make check make check
make syntax-check make syntax-check
""" """)
} finally { } finally {
archiveArtifacts allowEmptyArchive: true, artifacts: 'test-suite.log' archiveArtifacts allowEmptyArchive: true, artifacts: 'test-suite.log'
}
} }
} shwrap("""
sh """
make install DESTDIR=\$(pwd)/insttree/ make install DESTDIR=\$(pwd)/insttree/
tar -c -C insttree/ -zvf insttree.tar.gz . tar -c -C insttree/ -zvf insttree.tar.gz .
""" """)
stash includes: 'insttree.tar.gz', name: 'build' stash includes: 'insttree.tar.gz', name: 'build'
} }
}, },
// A minimal build, helps test our build options // A minimal build, helps test our build options
minimal: { minimal: {
coreos.pod(image: COSA_BUILDROOT_IMAGE, runAsUser: 0) { cosaPod(buildroot: true, runAsUser: 0) {
checkout scm checkout scm
sh """ shwrap("""
set -xeuo pipefail
git submodule update --init git submodule update --init
env NOCONFIGURE=1 ./autogen.sh env NOCONFIGURE=1 ./autogen.sh
@ -50,19 +43,18 @@ minimal: {
--without-openssl --without-avahi --without-libmount --disable-rofiles-fuse \ --without-openssl --without-avahi --without-libmount --disable-rofiles-fuse \
--disable-experimental-api --disable-experimental-api
make make
""" """)
} }
}, },
codestyle: { codestyle: {
coreos.pod(image: COSA_IMAGE) { cosaPod {
checkout scm checkout scm
sh """ shwrap("""
set -xeuo pipefail
# Jenkins by default only fetches the branch it's testing. Explicitly fetch master # Jenkins by default only fetches the branch it's testing. Explicitly fetch master
# for ci-commitmessage-submodules.sh # for ci-commitmessage-submodules.sh
git fetch origin +refs/heads/master:refs/remotes/origin/master git fetch origin +refs/heads/master:refs/remotes/origin/master
ci/ci-commitmessage-submodules.sh ci/ci-commitmessage-submodules.sh
""" """)
} }
} }
} }
@ -70,12 +62,11 @@ codestyle: {
// Build FCOS and do a kola basic run // Build FCOS and do a kola basic run
stage("More builds and test") { stage("More builds and test") {
parallel fcos: { parallel fcos: {
coreos.pod(image: COSA_IMAGE, runAsUser: 0, kvm: true, memory: "2048Mi", cpu: "2") { cosaPod(runAsUser: 0, memory: "2048Mi", cpu: "2") {
stage("Build FCOS") { stage("Build FCOS") {
checkout scm checkout scm
unstash 'build' unstash 'build'
sh """ shwrap("""
set -xeuo pipefail
mkdir insttree mkdir insttree
tar -C insttree -xzvf insttree.tar.gz tar -C insttree -xzvf insttree.tar.gz
rsync -rlv insttree/ / rsync -rlv insttree/ /
@ -84,23 +75,19 @@ parallel fcos: {
mv insttree/* overrides/rootfs/ mv insttree/* overrides/rootfs/
rmdir insttree rmdir insttree
coreos-assembler build coreos-assembler build
""" """)
} }
stage("FCOS basic") { stage("FCOS basic") {
timeout(time: 30, unit: 'MINUTES') { timeout(time: 30, unit: 'MINUTES') {
sh """ shwrap("cosa kola run --basic-qemu-scenarios")
set -xeuo pipefail
cosa kola run --basic-qemu-scenarios
"""
} }
} }
} }
}, },
buildopts: { buildopts: {
coreos.pod(image: COSA_BUILDROOT_IMAGE, runAsUser: 0) { cosaPod(buildroot: true, runAsUser: 0) {
checkout scm checkout scm
sh """ shwrap("""
set -xeuo pipefail
git submodule update --init git submodule update --init
git worktree add build-rust && cd build-rust git worktree add build-rust && cd build-rust
@ -112,7 +99,7 @@ buildopts: {
env CONFIGOPTS="--without-curl --without-openssl --with-soup" SKIP_INSTALLDEPS=1 ./ci/build.sh env CONFIGOPTS="--without-curl --without-openssl --with-soup" SKIP_INSTALLDEPS=1 ./ci/build.sh
make check make check
cd .. && rm -rf build-libsoup cd .. && rm -rf build-libsoup
""" """)
} }
} }
} }