OpenBLAS/Jenkinsfile

10 lines
127 B
Groovy

node {
stage('Checkout') {
checkout
}
stage('Build') {
sh("make")
}
}