forked from NCAR/fv3atm
-
Notifications
You must be signed in to change notification settings - Fork 0
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 NCAR#67 from climbfuji/update_gsl_develop_from_mas…
…ter_20210316 Update gsl/develop from develop 20210316
- Loading branch information
Showing
96 changed files
with
27,917 additions
and
2,696 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,33 @@ | ||
name: Start runners | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Pull request tests"] | ||
types: | ||
- requested | ||
|
||
jobs: | ||
job1: | ||
name: Start AWS runners | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Check out codes | ||
uses: actions/checkout@v2 | ||
|
||
- name: Configure AWS | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 | ||
|
||
- name: Check the status of build and start self-hosted runners | ||
env: | ||
aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} | ||
run: | | ||
cd ${GITHUB_WORKSPACE}/tests/ci | ||
conclusion=$(cat ${GITHUB_EVENT_PATH} | ./build_status_check.py) | ||
if [[ $conclusion == "success" ]]; then | ||
aws ec2 start-instances --instance-ids $aws_instance_id | ||
fi |
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 @@ | ||
name: Stop runners | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Pull request tests"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
job1: | ||
name: Stop AWS runners | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Configure AWS | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-1 | ||
|
||
- name: Stop self-hosted runners | ||
env: | ||
aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} | ||
run: aws ec2 stop-instances --instance-ids $aws_instance_id |
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
Submodule FV3
updated
22 files
+6 −7 | CMakeLists.txt | |
+1 −1 | ccpp/config/ccpp_prebuild_config.py | |
+6 −2 | ccpp/data/CMakeLists.txt | |
+79 −25 | ccpp/data/GFS_typedefs.F90 | |
+81 −33 | ccpp/data/GFS_typedefs.meta | |
+8 −5 | ccpp/driver/CMakeLists.txt | |
+57 −0 | ccpp/driver/GFS_restart.F90 | |
+1 −1 | ccpp/framework | |
+1 −1 | ccpp/physics | |
+83 −0 | ccpp/suites/suite_FV3_GFS_v15_thompson_mynn_lam3km.xml | |
+94 −0 | ccpp/suites/suite_FV3_GFS_v16_noahmp.xml | |
+0 −47 | gfsphysics/CMakeLists.txt | |
+0 −955 | gfsphysics/physics/noahmp_tables.f90 | |
+2 −3 | io/CMakeLists.txt | |
+19 −290 | io/FV3GFS_io.F90 | |
+78 −0 | io/inline_post.F90 | |
+58 −0 | io/inline_post_stub.F90 | |
+66 −38 | io/module_wrt_grid_comp.F90 | |
+11 −4 | io/post_gfs.F90 | |
+2,930 −0 | io/post_regional.F90 | |
+110 −110 | module_fcst_grid_comp.F90 | |
+0 −1 | stochastic_physics/CMakeLists.txt |
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,3 +1,4 @@ | ||
set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) | ||
set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) | ||
set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) | ||
set(MOM6_Extra_FORTRAN_FLAGS "-xsse2") |
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.