Skip to content

Commit a409254

Browse files
committed
add taskfile for local pipeline
1 parent 94e5d29 commit a409254

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

apps/om/taskfile.yaml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
version: "3"
2+
3+
vars:
4+
APP_DIR: "{{.TASKFILE_DIR}}"
5+
6+
tasks:
7+
run:obs:
8+
desc: Run the obs pipeline locally via Prefect
9+
cmds:
10+
- source <(celine-utils pipeline run envs) && celine-utils pipeline run prefect -f pipeline_obs
11+
12+
run:heat:
13+
desc: Run the heat pipeline locally via Prefect
14+
cmds:
15+
- source <(celine-utils pipeline run envs) && celine-utils pipeline run prefect -f pipeline_heat
16+
17+
run:wind:
18+
desc: Run the wind pipeline locally via Prefect
19+
cmds:
20+
- source <(celine-utils pipeline run envs) && celine-utils pipeline run prefect -f pipeline_wind
21+
22+
run:main:
23+
desc: Run the main om pipeline locally via Prefect
24+
cmds:
25+
- source <(celine-utils pipeline run envs) && celine-utils pipeline run prefect -f pipeline
26+
27+
run:all:
28+
desc: Run all om pipelines locally
29+
cmds:
30+
- task: run:obs
31+
- task: run:heat
32+
- task: run:wind
33+
- task: run:main

0 commit comments

Comments
 (0)