forked from ufs-community/ufs-weather-model
-
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 ufs-community#70 from climbfuji/gsl_develop_chem_a…
…dd_gocart Update gsd/develop-chem from gsl/develop, add NASA GOCART repository
- Loading branch information
Showing
498 changed files
with
68,480 additions
and
26,304 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,70 @@ | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
*.x | ||
|
||
# system files | ||
*.swp | ||
*~ | ||
.DS_Store | ||
|
||
# python files | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# CMake files and directories | ||
build*/ | ||
install*/ | ||
CMakeLists.txt.user | ||
CMakeCache.txt | ||
CMakeFiles | ||
CMakeScripts | ||
cmake_install.cmake | ||
install_manifest.txt | ||
compile_commands.json | ||
CTestTestfile.cmake | ||
_deps | ||
|
||
# repo-specific ignorables | ||
coupled*.mk | ||
rt.conf.single | ||
ufs_model | ||
tests/modules.fv3_* | ||
tests/ecflow_run/ | ||
tests/log_*/ | ||
tests/lock/ | ||
tests/Compile_*.log | ||
tests/fail_test | ||
log* | ||
build*.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,44 @@ | ||
[submodule "FV3"] | ||
path = FV3 | ||
url = https://github.com/NOAA-GSL/fv3atm | ||
branch = gsd/develop-chem | ||
path = FV3 | ||
url = https://github.com/NOAA-GSL/fv3atm | ||
branch = gsl/develop-chem | ||
[submodule "NEMS"] | ||
path = NEMS | ||
url = https://github.com/NOAA-EMC/NEMS | ||
branch = develop | ||
path = NEMS | ||
url = https://github.com/NOAA-EMC/NEMS | ||
branch = develop | ||
[submodule "FMS"] | ||
path = FMS | ||
url = https://github.com/NOAA-GFDL/FMS | ||
branch = master | ||
path = FMS | ||
url = https://github.com/NOAA-GFDL/FMS | ||
branch = release/2020.04 | ||
[submodule "WW3"] | ||
path = WW3 | ||
url = https://github.com/NOAA-EMC/WW3 | ||
branch = develop | ||
path = WW3 | ||
url = https://github.com/NOAA-EMC/WW3 | ||
branch = develop | ||
[submodule "stochastic_physics"] | ||
path = stochastic_physics | ||
url = https://github.com/noaa-psd/stochastic_physics | ||
branch = master | ||
path = stochastic_physics | ||
url = https://github.com/noaa-gsl/stochastic_physics | ||
branch = gsl/develop | ||
[submodule "gocart"] | ||
path = gocart | ||
url = https://github.com/NOAA-GSL/GOCART | ||
branch = gsl/develop-chem | ||
[submodule "CMakeModules"] | ||
path = CMakeModules | ||
url = https://github.com/NOAA-EMC/CMakeModules | ||
branch = develop | ||
[submodule "CMEPS"] | ||
path = CMEPS-interface/CMEPS | ||
url = https://github.com/NOAA-EMC/CMEPS.git | ||
branch = emc/develop | ||
[submodule "MOM6"] | ||
path = MOM6-interface/MOM6 | ||
url = https://github.com/NOAA-EMC/MOM6 | ||
branch = dev/emc | ||
[submodule "CICE"] | ||
path = CICE-interface/CICE | ||
url = https://github.com/NOAA-EMC/CICE | ||
branch = emc/develop | ||
[submodule "DATM"] | ||
path = DATM | ||
url = https://github.com/NOAA-EMC/NEMSdatm | ||
branch = develop |
Oops, something went wrong.