forked from xmos/lib_mic_array
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJenkinsfile
More file actions
68 lines (66 loc) · 1.25 KB
/
Copy pathJenkinsfile
File metadata and controls
68 lines (66 loc) · 1.25 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@Library('xmos_jenkins_shared_library@v0.10.0') _
getApproval()
pipeline {
agent {
label 'x86_64&&brew'
}
environment {
REPO = 'lib_mic_array'
VIEW = getViewName(REPO)
}
options {
skipDefaultCheckout()
}
stages {
stage('Get View') {
steps {
xcorePrepareSandbox("${VIEW}", "${REPO}")
}
}
stage('Library Checks') {
steps {
xcoreLibraryChecks("${REPO}")
}
}
stage('Unit tests') {
steps {
dir("${REPO}/tests/unit_tests") {
runWaf('.')
viewEnv() {
runPytest()
}
}
}
}
stage('Legacy Tests') {
steps {
dir("${REPO}/legacy_tests") {
viewEnv() {
// Use Pipfile in legacy_tests, not lib_mic_array/Pipfile
installPipfile(true)
runPython("./runtests.py --junit-output=${REPO}_tests.xml")
}
}
}
}
stage('Build') {
steps {
dir("${REPO}") {
xcoreAllAppsBuild('examples')
xcoreAllAppNotesBuild('examples')
dir("${REPO}") {
runXdoc('doc')
}
}
}
}
}
post {
success {
updateViewfiles()
}
cleanup {
xcoreCleanSandbox()
}
}
}