From 44f6aa76206faecfab59f1b71c6c350476babce0 Mon Sep 17 00:00:00 2001 From: NathanFlurry Date: Thu, 8 Aug 2024 02:54:53 +0000 Subject: [PATCH] chore(bolt): upgrade rust to 1.80.0 (#1028) ## Changes --- infra/default-builds/dockerfiles/test-ds-echo/Dockerfile | 2 +- .../default-builds/dockerfiles/test-mm-lobby-echo/Dockerfile | 2 +- lib/bolt/core/src/dep/cargo/cli.rs | 4 ++-- lib/job-runner/Dockerfile | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/infra/default-builds/dockerfiles/test-ds-echo/Dockerfile b/infra/default-builds/dockerfiles/test-ds-echo/Dockerfile index 233a4195cb..fb1756e132 100644 --- a/infra/default-builds/dockerfiles/test-ds-echo/Dockerfile +++ b/infra/default-builds/dockerfiles/test-ds-echo/Dockerfile @@ -1,4 +1,4 @@ -FROM clux/muslrust:1.77.2-stable AS build +FROM clux/muslrust:1.80.0-stable AS build RUN cargo new --bin /app WORKDIR /app COPY Cargo.toml ./ diff --git a/infra/default-builds/dockerfiles/test-mm-lobby-echo/Dockerfile b/infra/default-builds/dockerfiles/test-mm-lobby-echo/Dockerfile index c3971456b3..103704c691 100644 --- a/infra/default-builds/dockerfiles/test-mm-lobby-echo/Dockerfile +++ b/infra/default-builds/dockerfiles/test-mm-lobby-echo/Dockerfile @@ -1,4 +1,4 @@ -FROM clux/muslrust:1.77.2-stable AS build +FROM clux/muslrust:1.80.0-stable AS build RUN cargo new --bin /app WORKDIR /app COPY Cargo.toml ./ diff --git a/lib/bolt/core/src/dep/cargo/cli.rs b/lib/bolt/core/src/dep/cargo/cli.rs index 690e52ec55..6534b7e465 100644 --- a/lib/bolt/core/src/dep/cargo/cli.rs +++ b/lib/bolt/core/src/dep/cargo/cli.rs @@ -173,7 +173,7 @@ pub async fn build<'a, T: AsRef>(ctx: &ProjectContext, opts: BuildOpts<'a, r#" # syntax=docker/dockerfile:1.2 - FROM rust:1.77.2-slim AS rust + FROM rust:1.80.0-slim AS rust RUN apt-get update && apt-get install -y protobuf-compiler pkg-config libssl-dev g++ git @@ -437,7 +437,7 @@ pub async fn build_tests<'a, T: AsRef>( r#" # syntax=docker/dockerfile:1.2 - FROM rust:1.77.2-slim AS build + FROM rust:1.80.0-slim AS build RUN apt-get update && apt-get install -y protobuf-compiler pkg-config libssl-dev g++ git diff --git a/lib/job-runner/Dockerfile b/lib/job-runner/Dockerfile index 87e9b48904..b678ca2d8a 100644 --- a/lib/job-runner/Dockerfile +++ b/lib/job-runner/Dockerfile @@ -1,4 +1,4 @@ -FROM clux/muslrust:1.77.2-stable +FROM clux/muslrust:1.80.0-stable WORKDIR /app COPY Cargo.toml Cargo.lock .