Skip to content

Commit c944712

Browse files
author
Piotr Paradziński
authored
Merge branch 'develop' into add-encypt-key-command
2 parents 99843f4 + 5774356 commit c944712

File tree

66 files changed

+1681
-268
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1681
-268
lines changed

.buildkite/pipeline.nix

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

65+
test-bytes = commonAttrs // {
66+
dependsOn = [ compile ];
67+
label = "bytes tests";
68+
command = ''
69+
nix-shell --run '$SBT coverage bytes/test'
70+
'';
71+
artifactPaths = [
72+
"bytes/target/test-reports/**/*"
73+
"bytes/target/scala-2.12/scoverage-report/**/*"
74+
"bytes/target/scala-2.12/coverage-report/**/*"
75+
];
76+
};
77+
78+
test-crypto = commonAttrs // {
79+
dependsOn = [ compile ];
80+
label = "Crypto tests";
81+
command = ''
82+
nix-shell --run '$SBT coverage crypto/test'
83+
'';
84+
artifactPaths = [
85+
"crypto/target/test-reports/**/*"
86+
"crypto/target/scala-2.12/scoverage-report/**/*"
87+
"crypto/target/scala-2.12/coverage-report/**/*"
88+
];
89+
};
90+
91+
test-rlp = commonAttrs // {
92+
dependsOn = [ compile ];
93+
label = "RLP tests";
94+
command = ''
95+
nix-shell --run '$SBT coverage rlp/test'
96+
'';
97+
artifactPaths = [
98+
"rlp/target/test-reports/**/*"
99+
"rlp/target/scala-2.12/scoverage-report/**/*"
100+
"rlp/target/scala-2.12/coverage-report/**/*"
101+
];
102+
};
103+
65104
test-unit = commonAttrs // {
66105
dependsOn = [ compile ];
67106
label = "unit tests";
@@ -70,8 +109,8 @@ in
70109
'';
71110
artifactPaths = [
72111
"target/test-reports/**/*"
73-
"target/scala/2.12/scoverage-report/**/*"
74-
"target/scala/2.12/coverage-report/**/*"
112+
"target/scala-2.12/scoverage-report/**/*"
113+
"target/scala-2.12/coverage-report/**/*"
75114
];
76115
};
77116

@@ -83,8 +122,8 @@ in
83122
'';
84123
artifactPaths = [
85124
"target/test-reports/**/*"
86-
"target/scala/2.12/scoverage-report/**/*"
87-
"target/scala/2.12/coverage-report/**/*"
125+
"target/scala-2.12/scoverage-report/**/*"
126+
"target/scala-2.12/coverage-report/**/*"
88127
];
89128
};
90129

0 commit comments

Comments
 (0)