mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
bae744199b
Add script raybsub to handle submitting .lsf files on ray with bsub < script.lsf syntax that we couldn't handle with CMake. Add hpc-cmake-tgz option for bin/release.
17 lines
408 B
CMake
17 lines
408 B
CMake
#!/bin/bash
|
|
|
|
#SBATCH -C knl,quad, cache
|
|
#SBATCH --nodes=1
|
|
#SBATCH -t 00:30:00
|
|
#SBATCH --mail-type=BEGIN,END,FAIL
|
|
##SBATCH --mail-user=<username>@sandia.gov
|
|
#SBATCH --export=ALL
|
|
#SBATCH --job-name=h5_ctestS
|
|
|
|
cd @HDF5_BINARY_DIR@
|
|
CMD="ctest . -E TEST_PAR|H5DIFF|PERFORM|ph5example -C Release -j 32 -T test"
|
|
|
|
echo "Run $CMD. Test output will be in build/ctestS.out"
|
|
$CMD >& ctestS.out
|
|
echo "Done running $CMD"
|