Skip to content

Commit b775e5b

Browse files
author
Aurélien Richez
authored
[kaizen] remove automatic retry for scalafmt, compile, style steps and expose dist artifact (#1007)
1 parent c78817f commit b775e5b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.buildkite/pipeline.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ in
2525
command = ''
2626
nix-shell --run '$SBT scalafmtCheck'
2727
'';
28+
retry.automatic = false;
2829
};
2930

3031
compile = commonAttrs // {
@@ -33,6 +34,7 @@ in
3334
command = ''
3435
nix-shell --run '$SBT compile-all'
3536
'';
37+
retry.automatic = false;
3638
};
3739

3840
style = commonAttrs // {
@@ -41,6 +43,7 @@ in
4143
command = ''
4244
nix-shell --run '$SBT scalastyle test:scalastyle'
4345
'';
46+
retry.automatic = false;
4447
};
4548

4649
test-bytes = commonAttrs // {
@@ -160,6 +163,9 @@ in
160163
command = ''
161164
nix-shell --run '$SBT benchmark:compile dist'
162165
'';
166+
artifactPaths = [
167+
"target/universal/mantis-*.zip"
168+
];
163169
};
164170

165171
publish = commonAttrs // {

0 commit comments

Comments
 (0)