update jenkinsfile2

This commit is contained in:
Maciej Czajka 2022-04-02 16:42:17 +02:00
parent b3735806d0
commit 9ebf31e349

View File

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