Skip to content

Commit 5bd264b

Browse files
authored
chore(deps): Bump cargo-nextest (#20572)
Should resolve nextest-rs/nextest#1493 Signed-off-by: Jesse Szwedko <[email protected]>
1 parent 1b57acd commit 5bd264b

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

scripts/e2e/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN git clone https://github.com./rui314/mold.git \
2828
&& cmake --build . -j $(nproc) \
2929
&& cmake --install .
3030

31-
RUN rustup run "${RUST_VERSION}" cargo install cargo-nextest --version 0.9.64 --locked
31+
RUN rustup run "${RUST_VERSION}" cargo install cargo-nextest --version 0.9.72 --locked
3232

3333
COPY scripts/environment/install-protoc.sh /
3434
COPY tests/data/ca/certs /certs

scripts/environment/bootstrap-windows-2019.ps1

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ echo "CARGO_BUILD_JOBS=$N_JOBS" | Out-File -FilePath $env:GITHUB_ENV -Encoding u
99

1010
if ($env:RELEASE_BUILDER -ne "true") {
1111
# Ensure we have cargo-next test installed.
12-
rustup run stable cargo install cargo-nextest --version 0.9.64 --locked
12+
rustup run stable cargo install cargo-nextest --version 0.9.72 --locked
1313
}
1414

1515
# Install some required dependencies / tools.
@@ -25,6 +25,3 @@ echo "OPENSSL_SRC_PERL=C:\Strawberry\perl\bin\perl.exe" | Out-File -FilePath $en
2525

2626
# Force the proto-build crate to avoid building the vendored protoc.
2727
echo "PROTO_NO_VENDOR=1" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
28-
29-
# Workaround for https://github.com./nextest-rs/nextest/issues/1493
30-
echo "RUSTUP_WINDOWS_PATH_ADD_BIN=1" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

scripts/environment/prepare.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ fi
1111
if [[ "$(cross --version | grep cross)" != "cross 0.2.5" ]] ; then
1212
rustup run stable cargo install cross --version 0.2.5 --force --locked
1313
fi
14-
if [[ "$(cargo-nextest --version)" != "cargo-nextest 0.9.64" ]] ; then
15-
rustup run stable cargo install cargo-nextest --version 0.9.64 --force --locked
14+
if [[ "$(cargo-nextest --version)" != "cargo-nextest 0.9.72" ]] ; then
15+
rustup run stable cargo install cargo-nextest --version 0.9.72 --force --locked
1616
fi
1717
if ! cargo deny --version >& /dev/null ; then
1818
rustup run stable cargo install cargo-deny --force --locked

scripts/integration/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1616
git \
1717
&& rm -rf /var/lib/apt/lists/*
1818

19-
RUN rustup run "${RUST_VERSION}" cargo install cargo-nextest --version 0.9.64 --locked
19+
RUN rustup run "${RUST_VERSION}" cargo install cargo-nextest --version 0.9.72 --locked
2020

2121
COPY scripts/environment/install-protoc.sh /
2222
COPY tests/data/ca/certs /certs

0 commit comments

Comments
 (0)