-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`pygw` from the global-workflow has been moved to its own repository at [wxflow](https://github.com/NOAA-EMC/wxflow). This PR: - removes `pygw` and replaces it with a checkout of `wxflow` in `checkout.sh` and `Externals.cfg` Going forward, until `wxflow` becomes a fixture as a module, `global-workflow` will be required to be checked out and is done as part of `checkout.sh` and `Externals.cfg`
- Loading branch information
Showing
97 changed files
with
336 additions
and
4,854 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.py] | ||
indent_size = 4 | ||
max_line_length = 88 | ||
|
||
[*.txt] | ||
indent_style = tab | ||
indent_size = 4 | ||
max_line_length = 79 | ||
|
||
[*.{diff}] | ||
trim_trailing_whitespace = false | ||
|
||
[Makefile] | ||
indent_style = tab |
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -11,35 +11,38 @@ Quick clone/build/link instructions (more detailed instructions below). | |
.. note:: | ||
Here we are making the assumption that you are using the workflow to run an experiment and so are working from the authoritative repository. If you are using a development branch then follow the instructions in :doc:`development.rst`. Once you do that you can follow the instructions here with the only difference being the repository/fork you are cloning from. | ||
|
||
For forecast-only (coupled or uncoupled): | ||
Clone the `global-workflow` and `cd` into the `sorc` directory: | ||
|
||
:: | ||
|
||
git clone https://github.com/NOAA-EMC/global-workflow.git | ||
git clone https://github.com/NOAA-EMC/global-workflow | ||
cd global-workflow/sorc | ||
|
||
For forecast-only (coupled or uncoupled) checkout the components: | ||
|
||
:: | ||
|
||
./checkout.sh | ||
./build_all.sh | ||
./link_workflow.sh | ||
|
||
For cycled (w/ data assimilation): | ||
For cycled (w/ data assimilation) use the `-g` option during checkout: | ||
|
||
:: | ||
|
||
git clone https://github.com/NOAA-EMC/global-workflow.git | ||
cd global-workflow/sorc | ||
./checkout.sh -g | ||
./build_all.sh | ||
./link_workflow.sh | ||
|
||
For coupled cycling (include new UFSDA): | ||
For coupled cycling (include new UFSDA) use the `-gu` options during checkout: | ||
|
||
[Currently only available on Hera and Orion] | ||
|
||
:: | ||
|
||
git clone https://github.com/NOAA-EMC/global-workflow.git | ||
cd global-workflow/sorc | ||
./checkout.sh -gu | ||
|
||
|
||
Build workflow components and link workflow artifacts such as executables, etc. | ||
|
||
:: | ||
|
||
./build_all.sh | ||
./link_workflow.sh | ||
|
||
|
@@ -52,24 +55,13 @@ Clone workflow and component repositories | |
Workflow | ||
******** | ||
|
||
There are several ways to clone repositories from GitHub. Below we describe how to clone the global-workflow using either the ssh or https methods. **The ssh method is highly preferred and recommended.** | ||
|
||
ssh method (using a password protected SSH key): | ||
|
||
:: | ||
|
||
git clone [email protected]:NOAA-EMC/global-workflow.git | ||
|
||
.. note:: | ||
When using ssh methods you need to make sure that your GitHub account is configured for the computer from which you are accessing the repository (See `this link <https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account>`_) | ||
|
||
https method: | ||
There are several ways to clone repositories from GitHub. Below we describe how to clone the global-workflow using the `https` method. | ||
|
||
:: | ||
|
||
git clone https://github.com/NOAA-EMC/global-workflow.git | ||
git clone https://github.com/NOAA-EMC/global-workflow | ||
|
||
Check what you just cloned (by default you will have only the develop branch): | ||
Check what you just cloned (by default you will have only the `develop` branch): | ||
|
||
:: | ||
|
||
|
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
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.