-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1447 from jedwards4b/pio2_external_update
Update to version 2.2.1 of the pio external Test suite: scripts_regression_tests.py with PIO_VERSION set to 2 in driver config_components.xml Test baseline: Test namelist changes: Test status: bit for bit Fixes User interface changes?: Code review: jayesh
- Loading branch information
Showing
59 changed files
with
8,097 additions
and
2,913 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/bin/sh | ||
|
||
# Get/Generate the Dashboard Model | ||
if [ $# -eq 0 ]; then | ||
model=Experimental | ||
else | ||
model=$1 | ||
fi | ||
|
||
module purge | ||
module load compiler/gnu/5.4.0 | ||
module load tool/parallel-netcdf/1.8.1/gnu-5.4.0/openmpi | ||
|
||
export CC=mpicc | ||
export FC=mpif90 | ||
export PIO_DASHBOARD_SITE="cgd" | ||
export PIO_DASHBOARD_ROOT=/scratch/cluster/jedwards/dashboard | ||
export CTEST_SCRIPT_DIRECTORY=${PIO_DASHBOARD_ROOT}/src | ||
export PIO_DASHBOARD_SOURCE_DIR=${CTEST_SCRIPT_DIRECTORY} | ||
export PIO_COMPILER_ID=gcc-`gcc --version | head -n 1 | cut -d' ' -f3` | ||
|
||
if [ ! -d "$PIO_DASHBOARD_ROOT" ]; then | ||
mkdir "$PIO_DASHBOARD_ROOT" | ||
fi | ||
cd "$PIO_DASHBOARD_ROOT" | ||
|
||
echo "CTEST_SCRIPT_DIRECTORY="${CTEST_SCRIPT_DIRECTORY} | ||
echo "PIO_DASHBOARD_SOURCE_DIR="${PIO_DASHBOARD_SOURCE_DIR} | ||
|
||
if [ ! -d src ]; then | ||
git clone --branch develop https://github.com/PARALLELIO/ParallelIO src | ||
fi | ||
cd src | ||
git checkout develop | ||
git pull origin develop | ||
|
||
|
||
ctest -S CTestScript.cmake,${model} -VV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.