summaryrefslogtreecommitdiff
path: root/src/worker.capnp
blob: 66e7158ac23c2bca35f873fca1d988c2a6610201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@0xe7ff10499731ce1f;

struct Worker {
    hostname @0:    Text;
    workdir @1:	    Text;
    starttime @2:   Int64;

    branch @3:	    Text;
    commit @4:	    Text;
    age @5:	    UInt64;
    tests @6:	    Text;
}

struct Workers {
    entries @0:	    List(Worker);
}

# vim: sts=4:sw=4