prepare server dependencies stashing

This commit is contained in:
Ruben Abad 2024-02-19 17:05:15 +01:00
parent a2d6088c74
commit a0e40ecd7b
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored
View File

@ -24,6 +24,16 @@ pipeline
}
stages
{
stage('stash dependencies')
{
agent{ label 'master' }
options{skipDefaultCheckout()}
steps
{
pwd()
sh "ls -la ${pwd()}"
}
}
stage('prepare environment')
{
parallel