Update Rust to 1.44.0 (#574)

Note that there are issues with backtraces on macOS in this release.
We'll update to 1.44.1 when it's available.
This commit is contained in:
Oliver Gould 2020-06-18 11:10:23 -07:00 committed by GitHub
parent eb52fd90c6
commit 032f03dea7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
ARG BASE_IMAGE=rust:1.42.0-buster
ARG BASE_IMAGE=rust:1.44.0-buster
FROM $BASE_IMAGE
WORKDIR /linkerd
RUN apt-get update && \

View File

@ -1,5 +1,5 @@
# Intended to be run on a remote DOCKER_HOST
ARG RUST_IMAGE=rust:1.42.0-buster
ARG RUST_IMAGE=rust:1.44.0-buster
FROM $RUST_IMAGE as build
WORKDIR /usr/src/linkerd2-proxy
COPY . ./

View File

@ -10,7 +10,7 @@ jobs:
fmt:
runs-on: ubuntu-18.04
container:
image: docker://rust:1.42.0-buster
image: docker://rust:1.44.0-buster
steps:
- uses: actions/checkout@v1
- run: rustup component add rustfmt
@ -19,7 +19,7 @@ jobs:
lib:
runs-on: ubuntu-18.04
container:
image: docker://rust:1.42.0-buster
image: docker://rust:1.44.0-buster
steps:
- uses: actions/checkout@v1
- run: make test-lib

View File

@ -17,7 +17,7 @@
# :; docker buildx build . --load
# Please make changes via update-rust-version.sh
ARG RUST_IMAGE=rust:1.42.0-buster
ARG RUST_IMAGE=rust:1.44.0-buster
# Use an arbitrary ~recent edge release image to get the proxy
# identity-initializing wrapper.
@ -38,7 +38,7 @@ ARG PROXY_FEATURES
WORKDIR /usr/src/linkerd2-proxy
COPY . .
RUN --mount=type=cache,target=target \
--mount=type=cache,from=rust:1.42.0-buster,source=/usr/local/cargo,target=/usr/local/cargo \
--mount=type=cache,from=rust:1.44.0-buster,source=/usr/local/cargo,target=/usr/local/cargo \
mkdir -p /out && \
if [ -n "$PROXY_UNOPTIMIZED" ]; then \
(cd linkerd2-proxy && cargo build --locked --features="$PROXY_FEATURES") && \

View File

@ -1,4 +1,4 @@
ARG RUST_IMAGE=rust:1.42.0-buster
ARG RUST_IMAGE=rust:1.44.0-buster
ARG RUNTIME_IMAGE=debian:bullseye-slim
ARG RUSTFLAGS="-C debuginfo=2 -C lto=off"
## Builds the proxy as incrementally as possible.

View File

@ -1 +1 @@
1.42.0
1.44.0