Skip to content

Commit

Permalink
Add echgres as a dependency for earc (NOAA-EMC#3202)
Browse files Browse the repository at this point in the history
This PR:
- adds `echgres` as a dependency to the `earc` job.
Resolves NOAA-EMC#3201
Resolves NOAA-EMC#3165
  • Loading branch information
aerorahul authored Jan 6, 2025
1 parent 29089be commit 060aec3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion workflow/rocoto/gfs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2901,7 +2901,9 @@ def earc(self):
else:
dep_dict = {'type': 'task', 'name': f'{self.run}_esfc'}
deps.append(rocoto.add_dependency(dep_dict))
dependencies = rocoto.create_dependency(dep=deps)
dep_dict = {'type': 'task', 'name': f'{self.run}_echgres'}
deps.append(rocoto.add_dependency(dep_dict))
dependencies = rocoto.create_dependency(dep_condition='and', dep=deps)

earcenvars = self.envars.copy()
earcenvars.append(rocoto.create_envar(name='ENSGRP', value='#grp#'))
Expand Down

0 comments on commit 060aec3

Please sign in to comment.