Skip to content

Commit 585e13d

Browse files
carloryrootfs
andauthored
chore: upgrade rust version to 1.90 in all related Dockerfiles (#499)
Signed-off-by: carlory <[email protected]> Co-authored-by: Huamin Chen <[email protected]>
1 parent f9c8aa8 commit 585e13d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test-and-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Rust
1919
uses: dtolnay/rust-toolchain@stable
2020
with:
21-
toolchain: 1.85
21+
toolchain: 1.90
2222

2323
- name: Set up Go
2424
uses: actions/setup-go@v5

Dockerfile.extproc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the Rust library using Makefile
2-
FROM rust:1.85 AS rust-builder
2+
FROM rust:1.90 AS rust-builder
33

44
# Install make and other build dependencies including cross-compilation tools
55
RUN apt-get update && apt-get install -y \

Dockerfile.extproc.cross

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Cross-compilation optimized Dockerfile for ARM64
2-
FROM --platform=linux/amd64 rust:1.85 AS rust-cross-builder
2+
FROM --platform=linux/amd64 rust:1.90 AS rust-cross-builder
33

44
# Install cross-compilation dependencies
55
RUN dpkg --add-architecture arm64 && \

0 commit comments

Comments
 (0)