ium_s449288/lab6/Jenkinsfile_dataset_for_LAB6
Kacper 8e3e206cca
Some checks failed
s449288-evaluation/pipeline/head There was a failure building this commit
s449288-training/pipeline/head There was a failure building this commit
split everything into per-lab repos
2022-05-12 22:30:38 +02:00

21 lines
612 B
Plaintext

pipeline {
agent {
dockerfile true
}
stages {
stage('Stage 1') {
steps {
sh 'chmod u+x ./lab6/process_dataset.py'
echo 'Processing dataset...'
sh 'python3 lab6/process_dataset.py'
echo 'Dataset processed'
echo 'Archiving clean train and test datasets...'
archiveArtifacts artifacts: 'lab6/lego_sets_clean_train.csv, lab6/lego_sets_clean_test.csv'
echo 'Datasets archived'
echo 'Launching the s449288-training job...'
build job: 's449288-training/master/'
}
}
}
}