jenkinsfile

This commit is contained in:
unknown 2020-04-03 12:26:09 +02:00
parent 6916ff5ef3
commit adec18a87b

7
Jenkinsfile vendored
View File

@ -1,15 +1,10 @@
pipeline { pipeline {
agent { dockerfile true } agent { dockerfile true }
stages { stages {
stage('Stage 1') { stage('Test') {
steps { steps {
sh 'node --version' sh 'node --version'
sh 'svn --version' sh 'svn --version'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s421818/s421818-mlworkshops.git']]])
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh('chmod 755 ./line_counter.sh')
sh('./line_counter.sh')
archiveArtifacts 'liczba_linii.txt'
} }
} }
} }