fix(CI): fetch all submodule before compiling
Some checks failed
gitea-sync/antos/pipeline/head There was a failure building this commit

This commit is contained in:
DanyLE 2024-03-10 00:22:23 +01:00
parent 7a8fb51fd7
commit 9d88e9f1fa

7
Jenkinsfile vendored
View File

@ -97,6 +97,13 @@ pipeline {
}
stages
{
stage('Prepare dependencies') {
steps {
sh'''
git submodule update --init
'''
}
}
stage('Build RUST + FRONTEND AMD64') {
agent {
node { label'workstation' }