-
Notifications
You must be signed in to change notification settings - Fork 1
Enable-switching-off-CDDS-extract #300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
7d69f36
c02290e
011ce98
7f920f6
e9e7639
d4164e8
cab2c21
3400be8
8e04736
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,6 +42,11 @@ jobs: | |
| cd CMEW | ||
| cylc validate -O metoffice . | ||
|
|
||
| - name: Run Cylc unit tests | ||
| run: | | ||
| cd CMEW | ||
| conda run -n cmew cylc vip -O metoffice -O unittest . | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We were also yesterday having some difficulties with |
||
|
|
||
| - name: Run Cylc configuration linter | ||
| run: | | ||
| eval "$(conda shell.bash hook)" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -104,6 +104,30 @@ help=If required, this value must be set in a site-specific configuration file | |
| =empty string. | ||
| type=quoted | ||
|
|
||
| [template variables=EXTRACT] | ||
| compulsory=true | ||
| description=To switch OFF or ON CDDS extract | ||
| help=The default is true, so data are extracted from MASS prior to a run. | ||
| sort-key=17 | ||
| type=boolean | ||
|
|
||
| [template variables=EXTRACT_DATA_PATH] | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As mentioned in yesterday's meeting, "RAW" data seems clearer than "EXTRACT[ED]". Less ambiguity about how far through the standardisation process it had got to (i.e. nowhere). |
||
| compulsory=true | ||
| description=The path to extracted data already available. | ||
| help=The default is "", so data to be extracted from MASS. If "", EXTRACT | ||
| =must be set to true, otherwise an Error will be raised. | ||
| sort-key=18 | ||
| type=quoted | ||
|
|
||
| [template variables=HOUSEKEEPING] | ||
| compulsory=true | ||
| description=To switch OFF or ON the housekeeping task. | ||
| help=The default is true, so the locally staged CDDS workspace is removed. | ||
| =Make sure you set it to false if you want to keep the data and run | ||
| =with EXTRACT=true | ||
| sort-key=16 | ||
| type=boolean | ||
|
|
||
| [template variables=LABEL_FOR_PLOTS] | ||
| compulsory=false | ||
| description=An 'alias' for the evaluation dataset in the ESMValTool recipe. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,9 @@ DRS_OBS="default" | |
| DRS_OBS4MIPS="default" | ||
| DRS_OBS6="default" | ||
| ESMVALTOOL_MODULE_NAME="" | ||
| EXTRACT=true | ||
| EXTRACT_DATA_PATH="" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe it's me, but I think this is actually more like "EXTANT_DATA_PATH", or something about "previously extracted".
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I still think this is the case, see comments on |
||
| HOUSEKEEPING=true | ||
| LABEL_FOR_PLOTS="UKESM1.0 N96ORCA1" | ||
| MAX_PARALLEL_TASKS=4 | ||
| MODEL_ID="UKESM1-0-LL" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am surprised that this is part of this issue