reuse node
Some checks failed
s444417-training/pipeline/head There was a failure building this commit

This commit is contained in:
s444417 2022-05-03 17:44:11 +02:00
parent a91f27333a
commit 1f753b3044

View File

@ -1,11 +1,14 @@
pipeline { pipeline {
agent { dockerfile true } agent {
dockerfile true
reuseNode true
}
stages { stages {
stage('Copy') { stage('Copy') {
steps { steps {
copyArtifacts projectName: 's444417-create-dataset' copyArtifacts projectName: 's444417-create-dataset'
sh 'ls -la' sh 'ls -la'
// archiveArtifacts '/saved_model/my_model' archiveArtifacts '/saved_model/my_model'
} }
} }
} }