test Jenkins NOT PUSH
gitea/salix/pipeline/head This commit is unstable Details

This commit is contained in:
Vicent Llopis 2022-03-28 15:01:58 +02:00
parent 85de742630
commit 9faf9d8688
2 changed files with 10 additions and 9 deletions

14
Jenkinsfile vendored
View File

@ -62,13 +62,13 @@ pipeline {
}
}
}
// stage('Backend') {
// steps {
// nodejs('node-v14') {
// sh 'gulp launchBackTest --ci'
// }
// }
// }
stage('Backend') {
steps {
nodejs('node-v14') {
sh 'gulp launchBackTest --ci'
}
}
}
}
}
stage('Build') {

View File

@ -166,9 +166,10 @@ module.exports = class Docker {
return resolve();
}
if (elapsedTime >= maxInterval)
if (elapsedTime >= maxInterval) {
reject(new Error(`MySQL not initialized whithin ${elapsedTime / 1000} secs`));
else
console.log(myConf, err);
} else
setTimeout(bindedChecker, interval);
});
}