Files
OpenBLAS/Jenkinsfile.pwr
2023-08-05 18:32:41 +02:00

17 lines
316 B
Plaintext

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