OpenBLAS/Jenkinsfile.pwr

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'
}
}
}
}