mirror of
https://github.com/OpenMathLib/OpenBLAS
synced 2026-05-31 00:45:48 +08:00
10 lines
127 B
Groovy
10 lines
127 B
Groovy
node {
|
|
stage('Checkout') {
|
|
checkout
|
|
}
|
|
|
|
stage('Build') {
|
|
sh("make")
|
|
}
|
|
}
|