-
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.
Feature/get arch adds an empty archive job to GEFS system (#2772)
- This feature added an archive task for GEFS system. This task will run in the service queue with a single processor. The task executes with success. - Only xml is generated. Refs #832 Refs #2698
- Loading branch information
1 parent
7a79146
commit 5c2e9b1
Showing
5 changed files
with
69 additions
and
1 deletion.
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,3 @@ | ||
#! /usr/bin/env bash | ||
############################################################### | ||
exit 0 |
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,15 @@ | ||
#! /usr/bin/env bash | ||
|
||
########## config.arch ########## | ||
# Archive specific | ||
|
||
echo "BEGIN: config.arch" | ||
|
||
# Get task specific resources | ||
. "${EXPDIR}/config.resources" arch | ||
|
||
export ARCH_GAUSSIAN="YES" | ||
export ARCH_GAUSSIAN_FHMAX=${FHMAX_GFS} | ||
export ARCH_GAUSSIAN_FHINC=${FHOUT_GFS} | ||
|
||
echo "END: config.arch" |
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