21 lines
612 B
Plaintext
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/'
|
|
}
|
|
}
|
|
}
|
|
}
|