-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathJenkinsfile
More file actions
26 lines (21 loc) · 762 Bytes
/
Copy pathJenkinsfile
File metadata and controls
26 lines (21 loc) · 762 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
pipeline {
agent { label 'ccs9' }
stages {
stage('Import Projects') {
steps {
sh 'ccstudio -noSplash -data . -application com.ti.ccstudio.apps.projectImport -ccs.location els-f280049c || true'
sh 'ccstudio -noSplash -data . -application com.ti.ccstudio.apps.projectImport -ccs.location testfixture-f280049c || true'
}
}
stage('Build Debug') {
steps {
sh 'ccstudio -noSplash -data . -application com.ti.ccstudio.apps.projectBuild -ccs.workspace -ccs.buildType full -ccs.configuration Debug'
}
}
stage('Build Release') {
steps {
sh 'ccstudio -noSplash -data . -application com.ti.ccstudio.apps.projectBuild -ccs.workspace -ccs.buildType full -ccs.configuration Release'
}
}
}
}