diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 30d45c0d5..09c458521 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,29 +16,29 @@ jobs: - name: Install Rust toolchain (x86_64-unknown-linux-gnu) uses: actions-rs/toolchain@v1 with: - toolchain: "1.62" + toolchain: "1.67.1" target: x86_64-unknown-linux-gnu - name: Install Rust toolchain (x86_64-unknown-linux-musl) uses: actions-rs/toolchain@v1 with: - toolchain: "1.62" + toolchain: "1.67.1" target: x86_64-unknown-linux-musl - name: Build uses: actions-rs/cargo@v1 with: - toolchain: "1.62" + toolchain: "1.67.1" command: build args: --all --release --no-default-features --features "kvm,mshv" --target=x86_64-unknown-linux-gnu - name: Static Build uses: actions-rs/cargo@v1 with: - toolchain: "1.62" + toolchain: "1.67.1" command: build args: --all --release --no-default-features --features "kvm,mshv" --target=x86_64-unknown-linux-musl - name: Install Rust toolchain (aarch64-unknown-linux-musl) uses: actions-rs/toolchain@v1 with: - toolchain: "1.62" + toolchain: "1.67.1" target: aarch64-unknown-linux-musl override: true - name: Create Release diff --git a/resources/Dockerfile b/resources/Dockerfile index e618c959d..4e792637d 100644 --- a/resources/Dockerfile +++ b/resources/Dockerfile @@ -4,7 +4,7 @@ FROM ubuntu:20.04 as dev ARG TARGETARCH -ARG RUST_TOOLCHAIN="1.66.1" +ARG RUST_TOOLCHAIN="1.67.1" ARG CLH_SRC_DIR="/cloud-hypervisor" ARG CLH_BUILD_DIR="$CLH_SRC_DIR/build" ARG CARGO_REGISTRY_DIR="$CLH_BUILD_DIR/cargo_registry" diff --git a/scripts/dev_cli.sh b/scripts/dev_cli.sh index b36641166..b62143be8 100755 --- a/scripts/dev_cli.sh +++ b/scripts/dev_cli.sh @@ -7,7 +7,7 @@ CLI_NAME="Cloud Hypervisor" CTR_IMAGE_TAG="cloudhypervisor/dev" -CTR_IMAGE_VERSION="20230123-0" +CTR_IMAGE_VERSION="20230301-0" CTR_IMAGE="${CTR_IMAGE_TAG}:${CTR_IMAGE_VERSION}" DOCKER_RUNTIME="docker"