Disable exit on error while preforming builds.

A failure in any of the kernel builds will cause the build script to
exit. Stable outruns OpenZFS regularly and it often takes time for
OpenZFS to allow builds against new versions of the kernel. This means
that lts will not be rebuilt for long periods of time since the build
script breaks whenever a major version bump happens to stable.
pull/561/head
Greg Land 3 months ago
parent 1b5bdce9d3
commit 6aa8a4d22f
  1. 2
      build-container/entrypoint.sh

@ -24,6 +24,7 @@ build() {
sudo bash build.sh -d "$1" make
}
set +e
build utils
build std
@ -31,6 +32,7 @@ build lts
build hardened
build zen
build dkms
set -e
# Not implemented, yet, as documented in archzfs-ci
# sudo bash test.sh ...

Loading…
Cancel
Save