Skip to content

Commit ecf6aa7

Browse files
committed
rebase
Created using spr 1.3.6-beta.1
2 parents d5f4986 + 35bcb6c commit ecf6aa7

File tree

298 files changed

+22300
-6727
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

298 files changed

+22300
-6727
lines changed

.config/nextest.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# The required version should be bumped up if we need new features, performance
55
# improvements or bugfixes that are present in newer versions of nextest.
6-
nextest-version = { required = "0.9.77", recommended = "0.9.86" }
6+
nextest-version = { required = "0.9.91", recommended = "0.9.91" }
77

88
experimental = ["setup-scripts"]
99

@@ -48,9 +48,18 @@ live-tests = { max-threads = 1 }
4848
[profile.default]
4949
default-filter = 'all() - package(omicron-live-tests) - package(end-to-end-tests)'
5050

51+
[[profile.default.overrides]]
52+
# These tests are quite slow and can hold up the run, so run them first.
53+
filter = 'package(oximeter-db) and test(=client::tests::test_replicated) + test(test_action_failure_can_unwind)'
54+
priority = 20
55+
5156
[[profile.default.overrides]]
5257
filter = 'package(oximeter-db) and test(replicated) + package(omicron-clickhouse-admin)'
5358
test-group = 'clickhouse-cluster'
59+
# client::tests::test_replicated is part of this filter, but it's matched with
60+
# the higher priority (20) first. The other tests in this group are run after
61+
# that.
62+
priority = 10
5463

5564
[[profile.default.overrides]]
5665
# These tests can time out under heavy contention.

.github/buildomat/build-and-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ target_os=$1
1818
# NOTE: This version should be in sync with the recommended version in
1919
# .config/nextest.toml. (Maybe build an automated way to pull the recommended
2020
# version in the future.)
21-
NEXTEST_VERSION='0.9.86'
21+
NEXTEST_VERSION='0.9.91'
2222

2323
cargo --version
2424
rustc --version

.github/workflows/rust.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4141
with:
4242
ref: ${{ github.event.pull_request.head.sha }} # see omicron#4461
43-
- uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
43+
- uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
4444
if: ${{ github.ref != 'refs/heads/main' }}
4545
- name: Report cargo version
4646
run: cargo --version
@@ -70,7 +70,7 @@ jobs:
7070
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7171
with:
7272
ref: ${{ github.event.pull_request.head.sha }} # see omicron#4461
73-
- uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
73+
- uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
7474
if: ${{ github.ref != 'refs/heads/main' }}
7575
- name: Report cargo version
7676
run: cargo --version
@@ -98,7 +98,7 @@ jobs:
9898
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9999
with:
100100
ref: ${{ github.event.pull_request.head.sha }} # see omicron#4461
101-
- uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
101+
- uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
102102
if: ${{ github.ref != 'refs/heads/main' }}
103103
- name: Report cargo version
104104
run: cargo --version
@@ -130,7 +130,7 @@ jobs:
130130
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
131131
with:
132132
ref: ${{ github.event.pull_request.head.sha }} # see omicron#4461
133-
- uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
133+
- uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
134134
if: ${{ github.ref != 'refs/heads/main' }}
135135
- name: Report cargo version
136136
run: cargo --version

0 commit comments

Comments
 (0)