OpenBLAS/Jenkinsfile

20 lines
461 B
Plaintext
Raw Normal View History

pipeline {
agent {
docker {
image 'osuosl/ubuntu-s390x'
2020-08-09 00:05:20 +08:00
}
}
stages {
2020-08-09 00:05:20 +08:00
stage('Build') {
steps {
2023-08-06 00:33:15 +08:00
sh 'make clean && make'
}
2020-08-09 00:05:20 +08:00
}
stage('CMakeBuild') {
steps {
sh 'sudo apt update && sudo apt install cmake -y && make clean && rm -rf build && mkdir build && cd build && cmake -DDYNAMIC_ARCH=1 .. && make'
}
}
}
2020-08-09 00:05:20 +08:00
}