Skip to content

Commit

Permalink
Disable the Jenkins intel build since the node has been offline for a
Browse files Browse the repository at this point in the history
while.
  • Loading branch information
drroe committed Jul 12, 2024
1 parent 3419d03 commit 25a0b6d
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,33 +74,33 @@ pipeline {

post { cleanup { deleteDir() } }
}
stage("Linux Intel Serial Build") {
when { expression { return false } }
agent {
docker {
image 'ambermd/cpu-build:latest'
alwaysPull true
label "docker && intel"
// There's no way to have a docker container installed with a licensed
// copy of the Intel compilers, so we need to mount it from the host
// machine. This introduces the constraint that *all* of the Jenkins
// slaves need to have the Intel compilers available at /opt/intel
args "-v /opt/intel:/opt/intel"
}
}
//stage("Linux Intel Serial Build") {
// when { expression { return false } }
// agent {
// docker {
// image 'ambermd/cpu-build:latest'
// alwaysPull true
// label "docker && intel"
// // There's no way to have a docker container installed with a licensed
// // copy of the Intel compilers, so we need to mount it from the host
// // machine. This introduces the constraint that *all* of the Jenkins
// // slaves need to have the Intel compilers available at /opt/intel
// args "-v /opt/intel:/opt/intel"
// }
// }

environment {
MKL_HOME = "/opt/intel/compilers_and_libraries/linux/mkl"
}
// environment {
// MKL_HOME = "/opt/intel/compilers_and_libraries/linux/mkl"
// }

steps {
unstash "source"
sh "./configure --with-netcdf -mkl intel"
sh "make -j4 install"
sh "cd test && make test.showerrors"
}
post { cleanup { deleteDir() } }
}
// steps {
// unstash "source"
// sh "./configure --with-netcdf -mkl intel"
// sh "make -j4 install"
// sh "cd test && make test.showerrors"
// }
// post { cleanup { deleteDir() } }
//}
//stage("Linux PGI serial build") {
// agent {
// docker {
Expand Down

0 comments on commit 25a0b6d

Please sign in to comment.