Merge pull request #8077 from terry-xiaoyu/fix_testcase_bpapi
Pin dashboard v0.34.0
This commit is contained in:
commit
2738eadd3a
2
Makefile
2
Makefile
|
@ -7,7 +7,7 @@ export EMQX_DEFAULT_BUILDER = ghcr.io/emqx/emqx-builder/5.0-15:1.13.3-24.2.1-1-a
|
||||||
export EMQX_DEFAULT_RUNNER = alpine:3.15.1
|
export EMQX_DEFAULT_RUNNER = alpine:3.15.1
|
||||||
export OTP_VSN ?= $(shell $(CURDIR)/scripts/get-otp-vsn.sh)
|
export OTP_VSN ?= $(shell $(CURDIR)/scripts/get-otp-vsn.sh)
|
||||||
export ELIXIR_VSN ?= $(shell $(CURDIR)/scripts/get-elixir-vsn.sh)
|
export ELIXIR_VSN ?= $(shell $(CURDIR)/scripts/get-elixir-vsn.sh)
|
||||||
export EMQX_DASHBOARD_VERSION ?= v0.33.0
|
export EMQX_DASHBOARD_VERSION ?= v0.34.0
|
||||||
export DOCKERFILE := deploy/docker/Dockerfile
|
export DOCKERFILE := deploy/docker/Dockerfile
|
||||||
export EMQX_REL_FORM ?= tgz
|
export EMQX_REL_FORM ?= tgz
|
||||||
ifeq ($(OS),Windows_NT)
|
ifeq ($(OS),Windows_NT)
|
||||||
|
|
|
@ -34,6 +34,7 @@ end_per_suite(_Config) ->
|
||||||
meck:unload(),
|
meck:unload(),
|
||||||
[mnesia:dirty_delete({?TAB, Key}) || #?TAB{key = Key} <- fake_records()],
|
[mnesia:dirty_delete({?TAB, Key}) || #?TAB{key = Key} <- fake_records()],
|
||||||
emqx_bpapi:announce(emqx),
|
emqx_bpapi:announce(emqx),
|
||||||
|
emqx_common_test_helpers:stop_apps([emqx]),
|
||||||
ok.
|
ok.
|
||||||
|
|
||||||
t_max_supported_version(_Config) ->
|
t_max_supported_version(_Config) ->
|
||||||
|
|
|
@ -24,6 +24,7 @@ if [ -d "$DASHBOARD_PATH/www" ] && [ "$(version)" = "$VERSION" ]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "Downloading dashboard from: $DIRECT_DOWNLOAD_URL"
|
||||||
curl -L --silent --show-error \
|
curl -L --silent --show-error \
|
||||||
--header "Accept: application/octet-stream" \
|
--header "Accept: application/octet-stream" \
|
||||||
--output "${RELEASE_ASSET_FILE}" \
|
--output "${RELEASE_ASSET_FILE}" \
|
||||||
|
|
Loading…
Reference in New Issue