Skip to content

Commit

Permalink
reduce rust verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Dec 2, 2023
1 parent 877888f commit 330a65e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 330a65e

Please sign in to comment.