From 359ad93c4fe3a82cc417190c4030942ac8a74b00 Mon Sep 17 00:00:00 2001 From: jmjoy Date: Wed, 10 Jan 2024 18:48:51 +0800 Subject: [PATCH] Update NOTICE (#64) --- .github/workflows/ci.yaml | 6 ++++-- NOTICE | 2 +- e2e/docker/Dockerfile | 2 ++ 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 832700c..6a3eb4a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -101,8 +101,10 @@ jobs: - name: Install protoc run: sudo apt-get install -y protobuf-compiler if: ${{ matrix.features != '--features vendored' }} - - name: Install Rust toolchain - run: rustup toolchain install 1.63.0 --component clippy + - name: Install Cargo nightly + run: rustup toolchain install nightly-2023-05-19 + - name: Cargo minimal versions + run: cargo +nightly-2023-05-19 -Z minimal-versions generate-lockfile - name: Run check run: cargo check --workspace --release ${{ matrix.features }} - name: Run clippy diff --git a/NOTICE b/NOTICE index c68c699..04d6ba5 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ Apache SkyWalking -Copyright 2017-2023 The Apache Software Foundation +Copyright 2017-2024 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/e2e/docker/Dockerfile b/e2e/docker/Dockerfile index 13fb2d2..9a13ba6 100644 --- a/e2e/docker/Dockerfile +++ b/e2e/docker/Dockerfile @@ -17,8 +17,10 @@ # FROM rust:1.65 RUN apt-get update && apt-get install -y cmake protobuf-compiler +RUN rustup toolchain install nightly-2023-05-19 WORKDIR /build COPY . /build/ +RUN cargo +nightly-2023-05-19 -Z minimal-versions generate-lockfile RUN cargo build --release --workspace ENV RUST_BACKTRACE=1 ENTRYPOINT ["/build/target/release/e2e"]