Skip to content

Commit 4b29a5a

Browse files
committed
ETCM-165: Run RLP tests in buildkite.
1 parent 8ba3160 commit 4b29a5a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.buildkite/pipeline.nix

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,19 @@ in
6262
'';
6363
};
6464

65+
test-rlp = commonAttrs // {
66+
dependsOn = [ compile ];
67+
label = "RLP tests";
68+
command = ''
69+
nix-shell --run '$SBT coverage rlp/test'
70+
'';
71+
artifactPaths = [
72+
"rlp/target/test-reports/**/*"
73+
"rlp/target/scala/2.12/scoverage-report/**/*"
74+
"rlp/target/scala/2.12/coverage-report/**/*"
75+
];
76+
};
77+
6578
test-unit = commonAttrs // {
6679
dependsOn = [ compile ];
6780
label = "unit tests";

0 commit comments

Comments
 (0)