-
Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathdataflow.yml
More file actions
34 lines (32 loc) · 1.24 KB
/
dataflow.yml
File metadata and controls
34 lines (32 loc) · 1.24 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
# Smoke-tests git-sourced nodes. Pins to a dora commit (not a released
# tag) so the example runs against matching message-format versions
# without needing a release. Update `rev:` when a message-format-breaking
# change lands on main — otherwise the CI job catches the mismatch and
# signals a compatibility break, which is the whole point of this test.
nodes:
- id: rust-node
git: https://github.com/dora-rs/dora.git
rev: f40b5e7e8aa10a6faafdcebd37c7e440741722ed
build: cargo build -p rust-dataflow-example-node
path: target/debug/rust-dataflow-example-node
inputs:
tick: dora/timer/millis/10
outputs:
- random
- id: rust-status-node
git: https://github.com/dora-rs/dora.git
rev: f40b5e7e8aa10a6faafdcebd37c7e440741722ed
build: cargo build -p rust-dataflow-example-status-node
path: target/debug/rust-dataflow-example-status-node
inputs:
tick: dora/timer/millis/100
random: rust-node/random
outputs:
- status
- id: rust-sink
git: https://github.com/dora-rs/dora.git
rev: f40b5e7e8aa10a6faafdcebd37c7e440741722ed
build: cargo build -p rust-dataflow-example-sink
path: target/debug/rust-dataflow-example-sink
inputs:
message: rust-status-node/status