Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .buildkite/pipeline.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ in
command = ''
nix-shell --run '$SBT scalafmtCheck'
'';
retry.automatic = false;
};

compile = commonAttrs // {
Expand All @@ -33,6 +34,7 @@ in
command = ''
nix-shell --run '$SBT compile-all'
'';
retry.automatic = false;
};

style = commonAttrs // {
Expand All @@ -41,6 +43,7 @@ in
command = ''
nix-shell --run '$SBT scalastyle test:scalastyle'
'';
retry.automatic = false;
};

test-bytes = commonAttrs // {
Expand Down Expand Up @@ -160,6 +163,9 @@ in
command = ''
nix-shell --run '$SBT benchmark:compile dist'
'';
artifactPaths = [
"target/universal/mantis-*.zip"
];
};

publish = commonAttrs // {
Expand Down