ium_151636/Jenkinsfile
2023-05-12 15:51:03 +02:00

27 lines
562 B
Groovy

pipeline {
agent {
dockerfile true
}
stages {
stage('Run Script') {
steps {
//echo ("checkout: check out from version control")
//git "https://git.wmi.amu.edu.pl/s151636/ium_151636.git"
//echo ("sh: Shell Script")
//sh "python3 script2.py"
//echo ("copyArtifacts")
//echo("archiveArtifacts")
echo ("run dockerfile")
//sh docker
}
}
}
}