From 9a28bab5b27805c033758deb2f7d2200e9152c39 Mon Sep 17 00:00:00 2001 From: rustdesk Date: Mon, 24 Jul 2023 15:31:36 +0800 Subject: [PATCH] try fix cargo test no space in ci --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ba7aa1ed..028df3860 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,7 +124,12 @@ jobs: with: use-cross: ${{ matrix.job.use-cross }} command: build - args: --locked --release --target=${{ matrix.job.target }} + args: --locked --target=${{ matrix.job.target }} + + - name: clean + shell: bash + run: | + cargo clean # - name: Strip debug information from executable # id: strip