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:
parent
275a3b47fd
commit
ba46be717b
2
build
2
build
|
@ -69,6 +69,8 @@ make_rel() {
|
||||||
|
|
||||||
relup_db() {
|
relup_db() {
|
||||||
case "$PROFILE" in
|
case "$PROFILE" in
|
||||||
|
*edge*)
|
||||||
|
;;
|
||||||
*-ee*)
|
*-ee*)
|
||||||
./scripts/relup-base-vsns.escript "$@" ./data/relup-paths-ee.eterm
|
./scripts/relup-base-vsns.escript "$@" ./data/relup-paths-ee.eterm
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -46,6 +46,10 @@ case "${EDITION}" in
|
||||||
GIT_TAG_PREFIX="e"
|
GIT_TAG_PREFIX="e"
|
||||||
RELUP_PATH_FILE="./data/relup-paths-ee.eterm"
|
RELUP_PATH_FILE="./data/relup-paths-ee.eterm"
|
||||||
;;
|
;;
|
||||||
|
*edge*)
|
||||||
|
# no relup for emqx-edge
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
GIT_TAG_PREFIX="v"
|
GIT_TAG_PREFIX="v"
|
||||||
RELUP_PATH_FILE="./data/relup-paths.eterm"
|
RELUP_PATH_FILE="./data/relup-paths.eterm"
|
||||||
|
|
Loading…
Reference in New Issue