build: drop relup for edge edition

* the edge edition is completely dropped in v5
* typically reboot is acceptable for edge brokers
* we do not know how many users are using it
* we never really seriously tested relup for edge edition
* now there is an issue in relup which will fail edge edition
  not worth the investment to fix
This commit is contained in:
Zaiming (Stone) Shi 2022-12-28 20:01:13 +01:00
parent 275a3b47fd
commit ba46be717b
2 changed files with 6 additions and 0 deletions

2
build
View File

@ -69,6 +69,8 @@ make_rel() {
relup_db() {
case "$PROFILE" in
*edge*)
;;
*-ee*)
./scripts/relup-base-vsns.escript "$@" ./data/relup-paths-ee.eterm
;;

View File

@ -46,6 +46,10 @@ case "${EDITION}" in
GIT_TAG_PREFIX="e"
RELUP_PATH_FILE="./data/relup-paths-ee.eterm"
;;
*edge*)
# no relup for emqx-edge
exit 0
;;
*)
GIT_TAG_PREFIX="v"
RELUP_PATH_FILE="./data/relup-paths.eterm"