Uczenie maszynowe - cloud computing
Go to file
2020-04-21 19:17:48 +00:00
Dockerfile Zaktualizuj 'Dockerfile' 2020-04-03 14:36:40 +00:00
lines_number.txt first commit 2020-04-03 15:53:30 +02:00
lines.sh Zaktualizuj 'lines.sh' 2020-04-16 19:24:56 +00:00
README Zaktualizuj 'README' 2020-04-21 18:59:35 +00:00
s416242_notify Zaktualizuj 's416242_notify' 2020-04-21 19:17:48 +00:00

pipeline {
    agent { dockerfile true } 
    stages {
        stage('Stage 1') {
            steps {
                echo 'Hello World'
                echo 'Trigger Check'
                checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416242/s416242_mlworkshops.git']]])
		copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
		sh('chmod +x ./lines.sh')
		sh('./lines.sh')
		archiveArtifacts'lines_number.txt'
		archiveArtifacts 'hypothesis.txt'
		archiveArtifacts 'reference.txt'
		archiveArtifacts 'scores'
     	archiveArtifacts 'srr.txt'
		archiveArtifacts 'wer.txt'
     	archiveArtifacts 'srr.txt'
		archiveArtifacts 'wer.tsv'
        archiveArtifacts 'wikiniews_results_with_wer.tsv'
            }
        }
    }
}