File tree 4 files changed +5
-8
lines changed
4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN git clone https://github.com./rui314/mold.git \
28
28
&& cmake --build . -j $(nproc) \
29
29
&& cmake --install .
30
30
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
32
32
33
33
COPY scripts/environment/install-protoc.sh /
34
34
COPY tests/data/ca/certs /certs
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ echo "CARGO_BUILD_JOBS=$N_JOBS" | Out-File -FilePath $env:GITHUB_ENV -Encoding u
9
9
10
10
if ($env: RELEASE_BUILDER -ne " true" ) {
11
11
# 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
13
13
}
14
14
15
15
# Install some required dependencies / tools.
@@ -25,6 +25,3 @@ echo "OPENSSL_SRC_PERL=C:\Strawberry\perl\bin\perl.exe" | Out-File -FilePath $en
25
25
26
26
# Force the proto-build crate to avoid building the vendored protoc.
27
27
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
Original file line number Diff line number Diff line change 11
11
if [[ " $( cross --version | grep cross) " != " cross 0.2.5" ]] ; then
12
12
rustup run stable cargo install cross --version 0.2.5 --force --locked
13
13
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
16
16
fi
17
17
if ! cargo deny --version >& /dev/null ; then
18
18
rustup run stable cargo install cargo-deny --force --locked
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
16
16
git \
17
17
&& rm -rf /var/lib/apt/lists/*
18
18
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
20
20
21
21
COPY scripts/environment/install-protoc.sh /
22
22
COPY tests/data/ca/certs /certs
You can’t perform that action at this time.
0 commit comments