We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c78817f commit b775e5bCopy full SHA for b775e5b
.buildkite/pipeline.nix
@@ -25,6 +25,7 @@ in
25
command = ''
26
nix-shell --run '$SBT scalafmtCheck'
27
'';
28
+ retry.automatic = false;
29
};
30
31
compile = commonAttrs // {
@@ -33,6 +34,7 @@ in
33
34
35
nix-shell --run '$SBT compile-all'
36
37
38
39
40
style = commonAttrs // {
@@ -41,6 +43,7 @@ in
41
43
42
44
nix-shell --run '$SBT scalastyle test:scalastyle'
45
46
47
48
49
test-bytes = commonAttrs // {
@@ -160,6 +163,9 @@ in
160
163
161
164
nix-shell --run '$SBT benchmark:compile dist'
162
165
166
+ artifactPaths = [
167
+ "target/universal/mantis-*.zip"
168
+ ];
169
170
171
publish = commonAttrs // {
0 commit comments