build: refs #5483 Jenkinsfile optimized for daily DB push
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2024-01-30 21:57:04 +01:00
parent 420398260f
commit 7ab11543ed
1 changed files with 6 additions and 0 deletions

6
Jenkinsfile vendored
View File

@ -66,11 +66,17 @@ pipeline {
} }
} }
stage('Frontend') { stage('Frontend') {
when {
expression { return FROM_GIT }
}
steps { steps {
sh 'npm install --no-audit --prefer-offline --prefix=front' sh 'npm install --no-audit --prefer-offline --prefix=front'
} }
} }
stage('Print') { stage('Print') {
when {
expression { return FROM_GIT }
}
steps { steps {
sh 'npm install --no-audit --prefer-offline --prefix=print' sh 'npm install --no-audit --prefer-offline --prefix=print'
} }