diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-06-16 12:27:14 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-06-16 16:37:48 +0200 |
commit | 88fecd140a7a57ce050d87b9e46cef505028c42f (patch) | |
tree | a6117e28f33563a9815b6c85ade6eb74e1145714 | |
parent | 054e5774e9cfda96d5655eb891790d3d679866bd (diff) |
Enable PRSERV and HASHSERV in CI env
We have a PRSERV and a HASHSERV in CI now.
Make use of it in the CI builds for master.
Bug-AGL: SPEC-920 (prserv)
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: I60c94f17257e709b33091d6a5735d35d3875961c
-rw-r--r-- | jjb/common/include-agl-auto-conf.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/jjb/common/include-agl-auto-conf.sh b/jjb/common/include-agl-auto-conf.sh index e5ad5c8e..2d3e96bf 100644 --- a/jjb/common/include-agl-auto-conf.sh +++ b/jjb/common/include-agl-auto-conf.sh @@ -33,6 +33,24 @@ SSTATE_MIRRORS = " \ IMAGE_FSTYPES_remove = "ext3" SSTATE_DIR = "\${TOPDIR}/sstate-cache/\${MACHINE}/" + +INHERIT += "packagefeed-stability" +INHERIT += "buildhistory" +EOF + +fi + +# PRSERV and HASHSERV for CI +# but only starting with dunfell / master -> soon jellyfish +if test x"master" = x"${DISTROBRANCH}" -o test -x"jellyfish" = x"${DISTROBRANCH}" ; then + +export PRHASHSERV="10.30.72.18" +cat << EOF >> conf/auto.conf +# HASHSERVE +BB_HASHSERVE = "${PRHASHSERV}:8686" +BB_SIGNATURE_HANDLER = "OEEquivHash" + +PRSERV_HOST = "${PRHASHSERV}:8585" EOF fi
\ No newline at end of file |