Skip to content

Commit af1afef

Browse files
authored
Buildkite build performance fixes (#382)
* Only run tests, not benchmarks, in the build pipeline * Build can start in parallel with tests
1 parent 0e30b7b commit af1afef

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ steps:
2424
- "builds/*.tar.gz"
2525
agents:
2626
queue: "high-concurrency"
27-
depends_on: [test]
2827

2928
- label: "☁️ Upload"
3029
priority: 50
3130
key: upload
3231
commands:
3332
- .buildkite/upload.sh
34-
depends_on: [build]
33+
depends_on: [test, build]

.buildkite/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export RUST_LOG=info,corro=debug
55
# Tests (with coverage + generating JUnit XML report)
66
export NEXTEST_PROFILE=ci
77
set +e
8-
cargo nextest run --all-targets --workspace
8+
cargo nextest run --tests --workspace
99
test_status=$?
1010
set -e
1111

0 commit comments

Comments
 (0)