mirror of https://github.com/xianyi/OpenBLAS.git
10 lines
127 B
Plaintext
10 lines
127 B
Plaintext
|
|
node {
|
||
|
|
stage('Checkout') {
|
||
|
|
checkout
|
||
|
|
}
|
||
|
|
|
||
|
|
stage('Build') {
|
||
|
|
sh("make")
|
||
|
|
}
|
||
|
|
}
|