File tree 9 files changed +18
-18
lines changed
internal/core/thirdparty/opendal
9 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ RUN mkdir -p /home/milvus/.vscode-server/extensions \
58
58
COPY --chown=0:0 build/docker/builder/entrypoint.sh /
59
59
60
60
RUN curl https://sh.rustup.rs -sSf | \
61
- sh -s -- --default-toolchain=1.73 -y
61
+ sh -s -- --default-toolchain=1.83 -y
62
62
63
63
ENV PATH=/root/.cargo/bin:$PATH
64
64
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ RUN dnf -y update && \
45
45
RUN pip3 install conan==1.64.1
46
46
RUN mkdir -p /usr/local/go && wget -qO- "https://go.dev/dl/go1.21.11.linux-$TARGETARCH.tar.gz" | tar --strip-components=1 -xz -C /usr/local/go
47
47
RUN curl https://sh.rustup.rs -sSf | \
48
- sh -s -- --default-toolchain=1.73 -y
48
+ sh -s -- --default-toolchain=1.83 -y
49
49
50
50
ENV PATH=/root/.cargo/bin:/usr/local/bin:/usr/local/go/bin:$PATH
51
51
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ RUN mkdir -p /home/milvus/.vscode-server/extensions \
53
53
COPY --chown=0:0 build/docker/builder/entrypoint.sh /
54
54
55
55
RUN curl https://sh.rustup.rs -sSf | \
56
- sh -s -- --default-toolchain=1.73 -y
56
+ sh -s -- --default-toolchain=1.83 -y
57
57
58
58
ENV PATH=/root/.cargo/bin:$PATH
59
59
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ RUN mkdir -p /home/milvus/.vscode-server/extensions \
59
59
COPY --chown=0:0 build/docker/builder/entrypoint.sh /
60
60
61
61
RUN curl https://sh.rustup.rs -sSf | \
62
- sh -s -- --default-toolchain=1.73 -y
62
+ sh -s -- --default-toolchain=1.83 -y
63
63
64
64
ENV PATH=/root/.cargo/bin:$PATH
65
65
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ RUN wget -O /tini https://github.com/krallin/tini/releases/download/v0.19.0/tini
87
87
chmod +x /tini
88
88
89
89
RUN curl https://sh.rustup.rs -sSf | \
90
- sh -s -- --default-toolchain=1.73 -y
90
+ sh -s -- --default-toolchain=1.83 -y
91
91
92
92
ENV PATH=/root/.cargo/bin:$PATH
93
93
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ RUN mkdir -p /usr/local/go && wget -qO- "https://go.dev/dl/go1.21.11.linux-$TARG
18
18
RUN pip3 install conan==1.64.1
19
19
# Install rust
20
20
RUN curl https://sh.rustup.rs -sSf | \
21
- sh -s -- --default-toolchain=1.73 -y
21
+ sh -s -- --default-toolchain=1.83 -y
22
22
ENV PATH=/root/.cargo/bin:/usr/local/bin:/usr/local/go/bin:$PATH
23
23
24
24
RUN mkdir /opt/vcpkg && \
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ set(GIT_REPOSITORY "https://github.com/apache/opendal.git")
18
18
set (GIT_TAG "v0.43.0-rc.2" )
19
19
20
20
if (CMAKE_BUILD_TYPE STREQUAL "Debug" )
21
- set (CARGO_CMD cargo +1.73 build --verbose)
21
+ set (CARGO_CMD cargo +1.83 build --verbose)
22
22
set (TARGET_DIR "debug" )
23
23
else ()
24
- set (CARGO_CMD cargo +1.73 build --release --verbose)
24
+ set (CARGO_CMD cargo +1.83 build --release --verbose)
25
25
set (TARGET_DIR "release" )
26
26
endif ()
27
27
Original file line number Diff line number Diff line change @@ -91,15 +91,15 @@ if command -v cargo >/dev/null 2>&1; then
91
91
unameOut=" $( uname -s) "
92
92
case " ${unameOut} " in
93
93
Darwin* )
94
- echo " running on mac os, reinstall rust 1.73 "
94
+ echo " running on mac os, reinstall rust 1.83 "
95
95
# github will install rust 1.74 by default.
96
96
# https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
97
- rustup install 1.73
98
- rustup default 1.73 ;;
97
+ rustup install 1.83
98
+ rustup default 1.83 ;;
99
99
* )
100
100
echo " not running on mac os, no need to reinstall rust" ;;
101
101
esac
102
102
else
103
- bash -c " curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=1.73 -y" || { echo ' rustup install failed' ; exit 1; }
103
+ bash -c " curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=1.83 -y" || { echo ' rustup install failed' ; exit 1; }
104
104
source $HOME /.cargo/env
105
105
fi
Original file line number Diff line number Diff line change @@ -55,10 +55,10 @@ function install_linux_deps() {
55
55
# install rust
56
56
if command -v cargo > /dev/null 2>&1 ; then
57
57
echo " cargo exists"
58
- rustup install 1.73
59
- rustup default 1.73
58
+ rustup install 1.83
59
+ rustup default 1.83
60
60
else
61
- bash -c " curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=1.73 -y" || { echo ' rustup install failed' ; exit 1; }
61
+ bash -c " curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=1.83 -y" || { echo ' rustup install failed' ; exit 1; }
62
62
source $HOME /.cargo/env
63
63
fi
64
64
}
@@ -80,10 +80,10 @@ function install_mac_deps() {
80
80
# install rust
81
81
if command -v cargo > /dev/null 2>&1 ; then
82
82
echo " cargo exists"
83
- rustup install 1.73
84
- rustup default 1.73
83
+ rustup install 1.83
84
+ rustup default 1.83
85
85
else
86
- bash -c " curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=1.73 -y" || { echo ' rustup install failed' ; exit 1; }
86
+ bash -c " curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=1.83 -y" || { echo ' rustup install failed' ; exit 1; }
87
87
source $HOME /.cargo/env
88
88
fi
89
89
}
You can’t perform that action at this time.
0 commit comments