Trying to deploy artifact to nfs exports
oginstaller/pipeline/head This commit looks good Details

move-to-docker
Nicolas Arenas 2024-10-28 14:55:10 +01:00
parent 551a69c82d
commit 5ec433b220
1 changed files with 6 additions and 0 deletions

6
Jenkinsfile vendored
View File

@ -9,6 +9,12 @@ pipeline {
sh 'docker run --privileged -v /dev:/dev -v /run:/run -v $(pwd):/installer -w /installer --rm opengnsys/oginstallerbuilder ./builder.sh'
}
}
stage ('Upload Image to NFS')
{
steps {
sh "cp ubuntu-from-scratch.iso /mnt/srv/artefactos/oginstaller/oginstaller-${BRANCH_NAME}_${BUILD_NUMBER}.iso"
}
}
}
}