-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: George McCabe <mccabe@ucar.edu> Co-authored-by: George McCabe <23407799+georgemccabe@users.noreply.github.com> Co-authored-by: johnhg <johnhg@ucar.edu> Co-authored-by: George McCabe <mccabe@dakota.rap.ucar.edu> Co-authored-by: Keith Searight <searight@ucar.edu> Co-authored-by: Hank Fisher <fisherh@kiowa.rap.ucar.edu> Co-authored-by: MET Tools Test Account <met_test@kiowa.rap.ucar.edu> Co-authored-by: Julie.Prestopnik <jpresto@ucar.edu> Co-authored-by: Lisa Goodrich <lisag@ucar.edu> Co-authored-by: jprestop <jpresto@ucar.edu> Co-authored-by: bikegeek <minnawin@ucar.edu> Co-authored-by: John Halley Gotway <johnhg@ucar.edu> Co-authored-by: Minna Win <minnawin@kiowa.rap.ucar.edu> Co-authored-by: Daniel Adriaansen <dadriaan@ucar.edu> Co-authored-by: Christina Kalb <kalb@ucar.edu> Co-authored-by: George McCabe <mccabe@cheyenne1.cheyenne.ucar.edu> Co-authored-by: George McCabe <mccabe@cheyenne5.cheyenne.ucar.edu> Co-authored-by: George McCabe <mccabe@cheyenne4.cheyenne.ucar.edu> Co-authored-by: j-opatz <59586397+j-opatz@users.noreply.github.com> Co-authored-by: Dan Adriaansen <dadriaan@ucar.edu> Co-authored-by: mrinalbiswas <biswas@ucar.edu> Co-authored-by: Keith Searight <keith.searight@noaa.gov> Co-authored-by: Molly Smith <molly.b.smith@noaa.gov> Co-authored-by: Hank Fisher <fisherh@ucar.edu> Co-authored-by: Tatiana Burek <tatiana@ucar.edu> Co-authored-by: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Co-authored-by: lisagoodrich <33230218+lisagoodrich@users.noreply.github.com> Co-authored-by: George McCabe <mccabe@seneca.rap.ucar.edu>
- Loading branch information
1 parent
62fe3c6
commit 11d4398
Showing
174 changed files
with
5,299 additions
and
2,102 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.github/actions/run_tests/Dockerfile.gempak → ...b/actions/run_tests/Dockerfile.run_gempak
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,11 @@ | ||
ARG METPLUS_ENV_TAG=gfdl-tracker | ||
ARG METPLUS_IMG_TAG=develop | ||
|
||
FROM dtcenter/metplus-envs:${METPLUS_ENV_TAG} as env | ||
|
||
ARG METPLUS_IMG_TAG=develop | ||
FROM dtcenter/metplus-dev:${METPLUS_IMG_TAG} | ||
|
||
COPY --from=env /usr/local/lib/libnetcdf.so.19* /usr/local/lib/ | ||
COPY --from=env /usr/local/lib/libnetcdff* /usr/local/lib/ | ||
COPY --from=env /standalone_gfdl-vortextracker_v3.9a_gcc/trk_exec/* /usr/local/bin/ |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[ | ||
{ | ||
"category": "met_tool_wrapper", | ||
"index_list": "0-54", | ||
"index_list": "0-55", | ||
"new": false | ||
}, | ||
{ | ||
|
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,35 @@ | ||
FROM dtcenter/met:10.0.0 | ||
|
||
# Needed to install GFDL Tracker | ||
ENV LIB_Z_PATH /usr/lib64 | ||
ENV LIB_JASPER_PATH /usr/lib64 | ||
ENV LIB_PNG_PATH /usr/lib64 | ||
|
||
# Needed to install NetCDF-Fortran | ||
ENV NCDIR /usr/local | ||
|
||
# Install NetCDF-C 4.8.0 | ||
RUN cd / \ | ||
&& curl https://codeload.github.com/Unidata/netcdf-c/tar.gz/refs/tags/v4.8.0 --output v4.8.0.tar.gz \ | ||
&& tar zxf v4.8.0.tar.gz \ | ||
&& cd netcdf-c-4.8.0 \ | ||
&& ./configure --disable-dap \ | ||
&& make check install | ||
|
||
# Install NetCDF-Fortran 4.5.3 | ||
RUN cd / \ | ||
&& wget https://github.com/Unidata/netcdf-fortran/archive/refs/tags/v4.5.3.tar.gz \ | ||
&& tar zxf v4.5.3.tar.gz \ | ||
&& cd netcdf-fortran-4.5.3 \ | ||
&& ./configure \ | ||
&& make check install | ||
|
||
RUN cd / \ | ||
&& wget https://dtcenter.ucar.edu/dfiles/code/METplus/gfdl_patch/standalone_gfdl-vortextracker_v3.9a_gcc.tar.gz \ | ||
&& tar zxf standalone_gfdl-vortextracker_v3.9a_gcc.tar.gz \ | ||
&& cd standalone_gfdl-vortextracker_v3.9a_gcc \ | ||
&& unset FC && unset CC \ | ||
&& ./configure \ | ||
&& mv configure.trk-docker-gnu configure.trk \ | ||
&& ./compile 2>&1 | tee tracker.log | ||
|
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.