-
Notifications
You must be signed in to change notification settings - Fork 145
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 #593 from NCAR/quickbuild_tests
Quickbuild tests
- Loading branch information
Showing
26 changed files
with
206 additions
and
344 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# DART software - Copyright UCAR. This open source software is provided | ||
# by UCAR, "as is", without charge, subject to all terms of use at | ||
# http://www.image.ucar.edu/DAReS/DART/DART_download | ||
# | ||
|
||
MPIFC = mpif90 | ||
MPILD = mpif90 | ||
FC = ifx | ||
LD = ifx | ||
|
||
# If your NETCDF environment variable is not set correctly, | ||
# uncomment the following line and set value to where lib and include | ||
# are found for the netcdf files that match this compiler. | ||
# | ||
# NETCDF = /opt/local | ||
|
||
INCS = -I$(NETCDF)/include | ||
LIBS = -L$(NETCDF)/lib -lnetcdff -lnetcdf | ||
FFLAGS = -O -assume buffered_io $(INCS) | ||
LDFLAGS = $(FFLAGS) $(LIBS) | ||
|
||
# for development or debugging, use this instead: | ||
# FFLAGS = -g -C -check noarg_temp_created -fpe0 \ | ||
# -fp-model precise -ftrapuv -traceback \ | ||
# -warn declarations,uncalled,unused $(INCS) |
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
Run all quickbuilds.sh in the DART Repo at once | ||
|
||
Run with a fresh checkout of DART | ||
Edit mkmf.template.compile_all to match the compiler you want to run with | ||
Recommend running on Cheyenne with submit_me.sh as run_all_quickbuilds.sh uses a lot of threads | ||
Usage: ./submit_jobs.sh | ||
|
||
To run on a specific branch in DART: | ||
|
||
./submit_jobs.sh branch_name | ||
|
||
Find failed builds in logfile, e.g.: | ||
grep -a FAILED build-everything-nvhpc.o2633030 |
This file was deleted.
Oops, something went wrong.
158 changes: 0 additions & 158 deletions
158
developer_tests/build_everything/mkmf.template.compile_all
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.