mirror of https://gitee.com/bigwinds/arangodb
Feature/jenkins pipeline (#2602)
* always clean test directory before testing
This commit is contained in:
parent
b48583e68f
commit
2680a1aaf8
|
@ -37,6 +37,7 @@ def checkoutCommunity() {
|
|||
retry(3) {
|
||||
try {
|
||||
checkout scm
|
||||
sh 'git clean -f -d -x'
|
||||
}
|
||||
catch (exc) {
|
||||
echo "GITHUB checkout failed, retrying in 5min"
|
||||
|
@ -77,6 +78,8 @@ def checkoutEnterprise() {
|
|||
submoduleCfg: [],
|
||||
userRemoteConfigs: [[credentialsId: credentials, url: enterpriseRepo]]])
|
||||
}
|
||||
|
||||
sh 'cd enterprise && git clean -f -d -x'
|
||||
}
|
||||
|
||||
def checkCommitMessages() {
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
./Installation/Pipeline/include/test_singleserver_community_ENGINE.inc $1 mmfiles
|
||||
./Installation/Pipeline/include/test_singleserver_community_ENGINE_linux.inc $1 mmfiles
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
./Installation/Pipeline/include/test_singleserver_community_ENGINE.inc $1 rocksdb
|
||||
./Installation/Pipeline/include/test_singleserver_community_ENGINE_linux.inc $1 rocksdb
|
||||
|
|
Loading…
Reference in New Issue