-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipeline
37 lines (35 loc) · 843 Bytes
/
Pipeline
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
pipeline{
agent any
stages{
stage("Extract Data"){
steps{
sh 'python3 data_extraction.py'
}
}
stage("Data Analysis"){
steps{
sh 'python3 data_analysis.py'
}
}
stage("Data Preprocessing"){
steps{
sh 'python3 data_preprocess.py'
}
}
stage("Data Visualization"){
steps{
sh 'python3 datavisualization.py'
}
}
stage("Feature Engineering"){
steps{
sh 'python3 feature_engineering.py'
}
}
}
post{
always {
archiveArtifacts artifacts: 'financial_transaction_cleansed_data.csv', onlyIfSuccessful: true
}
}
}