cleanup
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
declare -r basedir=$(dirname $0)
|
||||
source '../../config/Pmodules.conf'
|
||||
|
||||
declare -r recipe="${basedir}/$1/build"
|
||||
shift
|
||||
|
||||
if [[ ! -x "${recipe}" ]]; then
|
||||
echo "Error: no recipe to build '$1'!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for cc in "${COMPILER_VERSIONS[@]}"; do
|
||||
for mpi in "${MPI_VERSIONS[@]}"; do
|
||||
for hdf5 in "${HDF5_VERSIONS[@]}"; do
|
||||
"${recipe}" "$@" --with=$cc --with=$mpi --with=$hdf5 || {
|
||||
echo "Oops: build failed for:"
|
||||
echo " compile: $cc"
|
||||
echo " mpi: $mpi"
|
||||
echo " hdf5: $hdf5"
|
||||
exit 1
|
||||
}
|
||||
done
|
||||
done
|
||||
done
|
||||
@@ -1,5 +0,0 @@
|
||||
gcc/4.7.4
|
||||
gcc/4.8.4
|
||||
gcc/4.9.2
|
||||
gcc/5.2.0
|
||||
intel/15.3
|
||||
@@ -1,3 +0,0 @@
|
||||
openmpi/1.6.5
|
||||
openmpi/1.8.4
|
||||
mpich/3.1.4
|
||||
@@ -1,3 +0,0 @@
|
||||
1.8.12
|
||||
1.8.14
|
||||
1.8.15.1
|
||||
Reference in New Issue
Block a user