feat: de submodule (#15464)
* feat: use contrib instead of submodule for tools/taosws/taosa * feat: de-submodule, remove taostools/taosws/taosadapter from .gitmodules * ci: remove submodule taos-tools, taosadapter and taosws-rs from cache Co-authored-by: tangfangzhi <fztang@taosdata.com>
This commit is contained in:
parent
ffffc44ac0
commit
8d59865551
|
@ -48,6 +48,8 @@ pysim/
|
||||||
*.out
|
*.out
|
||||||
*DS_Store
|
*DS_Store
|
||||||
tests/script/api/batchprepare
|
tests/script/api/batchprepare
|
||||||
|
taosadapter
|
||||||
|
taosadapter-debug
|
||||||
|
|
||||||
# Doxygen Generated files
|
# Doxygen Generated files
|
||||||
html/
|
html/
|
||||||
|
|
|
@ -13,12 +13,3 @@
|
||||||
[submodule "examples/rust"]
|
[submodule "examples/rust"]
|
||||||
path = examples/rust
|
path = examples/rust
|
||||||
url = https://github.com/songtianyi/tdengine-rust-bindings.git
|
url = https://github.com/songtianyi/tdengine-rust-bindings.git
|
||||||
[submodule "tools/taos-tools"]
|
|
||||||
path = tools/taos-tools
|
|
||||||
url = https://github.com/taosdata/taos-tools
|
|
||||||
[submodule "tools/taosadapter"]
|
|
||||||
path = tools/taosadapter
|
|
||||||
url = https://github.com/taosdata/taosadapter.git
|
|
||||||
[submodule "tools/taosws-rs"]
|
|
||||||
path = tools/taosws-rs
|
|
||||||
url = https://github.com/taosdata/taosws-rs
|
|
||||||
|
|
13
Jenkinsfile2
13
Jenkinsfile2
|
@ -113,6 +113,12 @@ def pre_test(){
|
||||||
echo "unmatched reposiotry ${CHANGE_URL}"
|
echo "unmatched reposiotry ${CHANGE_URL}"
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
|
sh '''
|
||||||
|
cd ${WKC}
|
||||||
|
git rm --cached tools/taos-tools 2>/dev/null || :
|
||||||
|
git rm --cached tools/taosadapter 2>/dev/null || :
|
||||||
|
git rm --cached tools/taosws-rs 2>/dev/null || :
|
||||||
|
'''
|
||||||
sh '''
|
sh '''
|
||||||
cd ${WKC}
|
cd ${WKC}
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
@ -258,6 +264,13 @@ def pre_test_win(){
|
||||||
git branch
|
git branch
|
||||||
git log -5
|
git log -5
|
||||||
'''
|
'''
|
||||||
|
bat '''
|
||||||
|
cd %WIN_COMMUNITY_ROOT%
|
||||||
|
git rm --cached tools/taos-tools 2>nul
|
||||||
|
git rm --cached tools/taosadapter 2>nul
|
||||||
|
git rm --cached tools/taosws-rs 2>nul
|
||||||
|
exit 0
|
||||||
|
'''
|
||||||
bat '''
|
bat '''
|
||||||
cd %WIN_COMMUNITY_ROOT%
|
cd %WIN_COMMUNITY_ROOT%
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
Loading…
Reference in New Issue