xmosdfu now compiles to bin/; Add more compile tests to Jenkinsfile

This commit is contained in:
Oscar Bailey
2020-10-27 11:28:55 +00:00
parent bf40fee271
commit b85cb85205
6 changed files with 46 additions and 5 deletions

36
Jenkinsfile vendored
View File

@@ -84,6 +84,42 @@ pipeline {
}
}
}
stage('Build Pi host app') {
agent {
label 'pi'
}
steps {
dir("${REPO}") {
checkout scm
dir("${REPO}/host/xmosdfu") {
sh 'make -f Makefile.Pi'
}
}
}
post {
cleanup {
xcoreCleanSandbox()
}
}
}
stage('Build Windows host app') {
agent {
label 'x86_64&&windows'
}
steps {
dir("${REPO}") {
checkout scm
dir("${REPO}/host/xmosdfu") {
runVS('nmake /f Makefile.Win32')
}
}
}
post {
cleanup {
xcoreCleanSandbox()
}
}
}
}
}
stage('Update') {