forked from dapperfu/Python-Simulink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
34 lines (29 loc) · 695 Bytes
/
Jenkinsfile
File metadata and controls
34 lines (29 loc) · 695 Bytes
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
pipeline {
agent any
stages {
stage('Build Libraries') {
parallel {
stage('Build Example 1') {
steps {
runMATLABCommand 'run(\'Example1\\dllModel_build\')'
}
}
stage('Build Example 2') {
steps {
runMATLABCommand 'run(\'Example2\\discrete_tf_build\')'
}
}
stage('Build Example 3') {
steps {
runMATLABCommand 'run(\'Example3\\bouncing_ball_build\')'
}
}
}
}
stage('Archive Artifacts') {
steps {
archiveArtifacts(artifacts: '**/*.dll, **/*.h', fingerprint: true, onlyIfSuccessful: true)
}
}
}
}