Merge pull request #8391 from thalesmg/ci-xref
ci: run xref checks in CI
This commit is contained in:
commit
0e82979ce3
|
@ -31,6 +31,8 @@ jobs:
|
||||||
fi
|
fi
|
||||||
- name: fix-git-unsafe-repository
|
- name: fix-git-unsafe-repository
|
||||||
run: git config --global --add safe.directory /__w/emqx/emqx
|
run: git config --global --add safe.directory /__w/emqx/emqx
|
||||||
|
- name: make xref
|
||||||
|
run: make xref
|
||||||
- name: build zip packages
|
- name: build zip packages
|
||||||
run: make ${EMQX_NAME}-zip
|
run: make ${EMQX_NAME}-zip
|
||||||
- name: build deb/rpm packages
|
- name: build deb/rpm packages
|
||||||
|
|
|
@ -580,7 +580,7 @@ acl(["cache-clean", "node", Node]) ->
|
||||||
with_log(fun() -> for_node(fun emqx_mgmt:clean_acl_cache_all/1, Node) end,
|
with_log(fun() -> for_node(fun emqx_mgmt:clean_acl_cache_all/1, Node) end,
|
||||||
"ACL cache drain start");
|
"ACL cache drain start");
|
||||||
acl(["cache-clean", "all"]) ->
|
acl(["cache-clean", "all"]) ->
|
||||||
with_log(fun emqx_mgmt:clean_acl_cache_all/1,
|
with_log(fun emqx_mgmt:clean_acl_cache_all/0,
|
||||||
"ACL cache drain start");
|
"ACL cache drain start");
|
||||||
acl(["cache-clean", ClientId]) ->
|
acl(["cache-clean", ClientId]) ->
|
||||||
emqx_mgmt:clean_acl_cache(ClientId);
|
emqx_mgmt:clean_acl_cache(ClientId);
|
||||||
|
|
Loading…
Reference in New Issue