mirror of
https://github.com/OpenMathLib/OpenBLAS
synced 2026-05-31 00:45:48 +08:00
15 lines
227 B
Groovy
15 lines
227 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'osuosl/ubuntu-s390x'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'make clean && make'
|
|
}
|
|
}
|
|
}
|
|
}
|