Skip to content

Commit 463a3be

Browse files
authored
Merge pull request #16554 from MinaProtocol/dkijania/soft_fail_for_benches_comp
soft fail for benches comp
2 parents 537536c + 8054cf1 commit 463a3be

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

buildkite/src/Command/Bench/Base.dhall

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
let B = ../../External/Buildkite.dhall
2+
13
let PipelineMode = ../../Pipeline/Mode.dhall
24

35
let PipelineTag = ../../Pipeline/Tag.dhall
@@ -22,6 +24,8 @@ let Benchmarks = ../../Constants/Benchmarks.dhall
2224

2325
let SelectFiles = ../../Lib/SelectFiles.dhall
2426

27+
let B/SoftFail = B.definitions/commandStep/properties/soft_fail/Type
28+
2529
let Spec =
2630
{ Type =
2731
{ key : Text
@@ -64,6 +68,7 @@ let command
6468
"Perf: ${spec.label} ${PipelineMode.capitalName spec.mode}"
6569
, key = spec.key
6670
, target = spec.size
71+
, soft_fail = Some (B/SoftFail.Boolean True)
6772
, docker = None Docker.Type
6873
, depends_on = spec.dependsOn
6974
}

buildkite/src/Constants/DebianVersions.dhall

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ let minimalDirtyWhen =
9191
, S.exactly "buildkite/src/Command/HardforkPackageGeneration" "dhall"
9292
, S.exactly "buildkite/src/Command/MinaArtifact" "dhall"
9393
, S.exactly "buildkite/src/Command/PatchArchiveTest" "dhall"
94+
, S.exactly "buildkite/src/Command/Bench/Base" "dhall"
9495
, S.exactly "buildkite/src/Command/ReplayerTest" "dhall"
9596
, S.strictlyStart (S.contains "buildkite/src/Jobs/Release/MinaArtifact")
9697
, S.strictlyStart (S.contains "dockerfiles/stages")

0 commit comments

Comments
 (0)