change agent
All checks were successful
s444417-training/pipeline/head This commit looks good

This commit is contained in:
s444417 2022-05-03 15:16:39 +02:00
parent 7b08fea108
commit a91f27333a

View File

@ -1,12 +1,11 @@
pipeline { pipeline {
agent none agent { dockerfile true }
stages { stages {
stage('Copy') { stage('Copy') {
agent { dockerfile true }
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'
} }
} }
} }