-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdvc.yaml
More file actions
34 lines (34 loc) · 1.19 KB
/
dvc.yaml
File metadata and controls
34 lines (34 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
stages:
run-script:
cmd: calkit xenv -n main --no-check -- "scripts/main.jl"
deps:
- scripts/main.jl
- Manifest.toml
outs:
- figures/circle-flow.png
- figures/circle-forces.png
desc: Automatically generated from the 'run-script' stage in calkit.yaml.
Changes made here will be overwritten.
run-notebook:
cmd: calkit nb execute --environment main --no-check --to html "notebooks/main.ipynb"
deps:
- .calkit/notebooks/cleaned/notebooks/main.ipynb
- Manifest.toml
outs:
- .calkit/notebooks/executed/notebooks/main.ipynb:
cache: false
- .calkit/notebooks/html/notebooks/main.html:
cache: false
desc: Automatically generated from the 'run-notebook' stage in calkit.yaml.
Changes made here will be overwritten.
build-paper:
cmd: calkit latex build -e tex --no-check pubs/conf-paper-1/paper.tex
deps:
- pubs/conf-paper-1/paper.tex
- .calkit/env-locks/tex
- figures/circle-flow.png
- figures/circle-forces.png
outs:
- pubs/conf-paper-1/paper.pdf
desc: Automatically generated from the 'build-paper' stage in calkit.yaml.
Changes made here will be overwritten.