Files
OpenBLAS/Jenkinsfile.pwr
2024-07-30 21:21:34 +02:00

17 lines
322 B
Plaintext

pipeline {
agent {
docker {
image 'osuosl/ubuntu-ppc64le:18.04'
}
}
stages {
stage('Build') {
steps {
sh 'sudo apt update'
sh 'sudo apt install gfortran -y'
sh 'make clean && make'
}
}
}
}