From 3bb26093eb7abc6fdb10da8f846df837f6b3c447 Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Thu, 3 Aug 2023 19:56:46 -0700 Subject: [PATCH] build: Enable default features for release workflow In this way, we are releasing binaries with all default features plus feature "mshv". Signed-off-by: Bo Chen --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 09c458521..16815d975 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -28,13 +28,13 @@ jobs: with: toolchain: "1.67.1" command: build - args: --all --release --no-default-features --features "kvm,mshv" --target=x86_64-unknown-linux-gnu + args: --all --release --features mshv --target=x86_64-unknown-linux-gnu - name: Static Build uses: actions-rs/cargo@v1 with: toolchain: "1.67.1" command: build - args: --all --release --no-default-features --features "kvm,mshv" --target=x86_64-unknown-linux-musl + args: --all --release --features mshv --target=x86_64-unknown-linux-musl - name: Install Rust toolchain (aarch64-unknown-linux-musl) uses: actions-rs/toolchain@v1 with: