From 330a65e498400b2dc8d5dca5ec89a1ab6bc3d4f8 Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Sat, 2 Dec 2023 20:50:06 +0100 Subject: [PATCH] reduce rust verbosity --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ea48cb80..0ac20bfcd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -287,16 +287,16 @@ jobs: shell: bash run: | cd constantine - cargo build --verbose - cargo test --verbose + cargo build + cargo test - name: Run Constantine as Rust library tests (NO Assembly) if: matrix.target.BACKEND == 'NO_ASM' shell: bash run: | cd constantine rustup update ${{ matrix.rust_toolchain }} && rustup default ${{ matrix.rust_toolchain }} - CTT_ASM=0 cargo build --verbose - CTT_ASM=0 cargo test --verbose + CTT_ASM=0 cargo build + CTT_ASM=0 cargo test - name: Run Constantine in-depth tests (Unix - with GMP, with Assembly) if: runner.os != 'Windows' && matrix.target.BACKEND == 'ASM'