Upgrade to Rust 1.41 (#437)
This commit is contained in:
parent
044ff123ef
commit
4780c22557
|
|
@ -9,7 +9,7 @@ jobs:
|
||||||
package:
|
package:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: docker://rust:1.40.0-buster
|
image: docker://rust:1.41.0-buster
|
||||||
steps:
|
steps:
|
||||||
- name: git co
|
- name: git co
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
fmt:
|
fmt:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
container:
|
container:
|
||||||
image: docker://rust:1.40.0-buster
|
image: docker://rust:1.41.0-buster
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- run: rustup component add rustfmt
|
- run: rustup component add rustfmt
|
||||||
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
lib:
|
lib:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
container:
|
container:
|
||||||
image: docker://rust:1.40.0-buster
|
image: docker://rust:1.41.0-buster
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- run: make test-lib
|
- run: make test-lib
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,8 @@
|
||||||
# runtime performance.
|
# runtime performance.
|
||||||
|
|
||||||
# rather than updating this manually, run update-rust-version.sh
|
# rather than updating this manually, run update-rust-version.sh
|
||||||
ARG RUST_IMAGE=rust:1.40.0-buster
|
ARG RUST_IMAGE=rust:1.41.0-buster
|
||||||
ARG RUNTIME_IMAGE=gcr.io/linkerd-io/proxy:edge-19.10.2
|
ARG RUNTIME_IMAGE=gcr.io/linkerd-io/proxy:edge-20.2.2
|
||||||
ARG PROXY_UNOPTIMIZED
|
ARG PROXY_UNOPTIMIZED
|
||||||
|
|
||||||
## Builds the proxy as incrementally as possible.
|
## Builds the proxy as incrementally as possible.
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ mod imp {
|
||||||
// Do everything lazily to prevent `Signal::new()` from calling
|
// Do everything lazily to prevent `Signal::new()` from calling
|
||||||
// `Handle::current()` and starting the background reactor when
|
// `Handle::current()` and starting the background reactor when
|
||||||
// we haven't initialized the runtime yet.
|
// we haven't initialized the runtime yet.
|
||||||
Ok([SIGINT, SIGTERM].into_iter())
|
Ok([SIGINT, SIGTERM].iter())
|
||||||
})
|
})
|
||||||
.and_then(|signals| {
|
.and_then(|signals| {
|
||||||
let signals = signals.map(|&sig| {
|
let signals = signals.map(|&sig| {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
ARG RUST_IMAGE=rust:1.40.0-buster
|
ARG RUST_IMAGE=rust:1.41.0-buster
|
||||||
ARG RUNTIME_IMAGE=debian:bullseye-slim
|
ARG RUNTIME_IMAGE=debian:bullseye-slim
|
||||||
ARG RUSTFLAGS="-C debuginfo=2 -C lto=off"
|
ARG RUSTFLAGS="-C debuginfo=2 -C lto=off"
|
||||||
## Builds the proxy as incrementally as possible.
|
## Builds the proxy as incrementally as possible.
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
1.40.0
|
1.41.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue