-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jenkinsfile
38 lines (38 loc) · 998 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
pipeline
{
agent none
stages
{
stage ('Ubuntu 20.04')
{
agent {label 'Ubuntu_20.04.1'}
stages
{
stage('Check DE10 Nano Projects')
{
parallel
{
stage('Audio Mini Passthrough')
{
when { changeset "AudioMini_Passthrough/*"}
steps
{
build job: 'Q18P0_DE10_AudioMini_Passthrough'
}
}
}
}
stage('Cleanup')
{
steps
{
deleteDir()
dir("${workspace}@tmp") {
deleteDir()
}
}
}
}
}
}
}