update jenkinsfile2

This commit is contained in:
Maciej Czajka 2022-04-02 16:41:04 +02:00
parent 49212a0476
commit b3735806d0

View File

@ -1,7 +1,7 @@
pipeline { pipeline {
agent { agent {
docker { docker {
image 'ubuntu:latest' image 'czajson99/ium:v7'
} }
} }
parameters{ parameters{
@ -14,10 +14,7 @@ pipeline {
stages { stages {
stage("Script") { stage("Script") {
steps { steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's444356-create-dataset', selector: buildParameter('BUILD_SELECTOR') sh 'ls -al'
sh " ./stats.sh"
sh "python3 ./Zajecia_2/main.py"
archiveArtifacts 'lines.txt'
} }
} }
} }