-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJenkinsfile
40 lines (40 loc) · 938 Bytes
/
Jenkinsfile
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
38
39
40
pipeline {
agent any
stages {
stage('Build') {
steps {
script {
sh './00_build_deploy.sh'
}
}
}
stage('Start Cluster') {
steps {
script {
sh "./01_start_cluster.sh brave-monitor-160414 "
}
}
}
stage('Run PreNN processor') {
steps {
script {
sh "./02_apply_categories_extract_text.sh "
}
}
}
stage('Run PreNN tokenizer') {
steps {
script {
sh "./03_transform_to_features.sh "
}
}
}
stage('Shutdown Cluster') {
steps {
script {
sh "./04_shutdown_cluster.sh "
}
}
}
}
}