diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2023-03-15 19:48:33 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-15 19:48:33 +0000 |
| commit | 3a0e2ac92438c818f7f12d894c576de9af9fcc01 (patch) | |
| tree | 9e75420426ca639a4e3ecd362ce4a1633c02ee1d /.github/workflows/build.yml | |
| parent | d18955a13450257c0a7725130beef44f21217138 (diff) | |
| parent | 0b88c26f3fa73c566a687b34f80c4f84aee4773e (diff) | |
Merge #706
706: ci/tuneverboselevel r=korken89 a=AfoHT
- xtask: Change default loglevel
- xtask: Fix cargo fmt logmsg
- ci: xtask default verbosity
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e84de65..aadb0a9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -68,7 +68,7 @@ jobs: - name: Cache Dependencies uses: Swatinem/rust-cache@v2 - - run: cargo xtask --verbose --backend ${{ matrix.backend }} check + - run: cargo xtask --backend ${{ matrix.backend }} check # Clippy clippy: @@ -107,7 +107,7 @@ jobs: - name: Cache Dependencies uses: Swatinem/rust-cache@v2 - - run: cargo xtask --verbose --backend ${{ matrix.backend }} clippy + - run: cargo xtask --backend ${{ matrix.backend }} clippy # Verify all examples, checks checkexamples: @@ -142,11 +142,11 @@ jobs: - name: Check the examples if: ${{ matrix.backend == 'thumbv8-base' }} - run: cargo xtask --verbose --backend ${{ matrix.backend }} --exampleexclude pool example-check + run: cargo xtask --backend ${{ matrix.backend }} --exampleexclude pool example-check - name: Check the examples if: ${{ matrix.backend != 'thumbv8-base' }} - run: cargo xtask --verbose --backend ${{ matrix.backend }} example-check + run: cargo xtask --backend ${{ matrix.backend }} example-check # Verify the example output with run-pass tests testexamples: @@ -195,7 +195,7 @@ jobs: run: sed -i 's,//deny_warnings_placeholder_for_ci,#![deny(warnings)],' src/lib.rs - name: Run-pass tests - run: cargo xtask --verbose --backend ${{ matrix.backend }} qemu + run: cargo xtask --backend ${{ matrix.backend }} qemu # Run test suite tests: @@ -235,7 +235,7 @@ jobs: run: find . -type f -name lib.rs -execdir sed -i 's,//deny_warnings_placeholder_for_ci,#![deny(warnings)],' {} + - name: Run cargo test - run: cargo xtask --verbose --backend ${{ matrix.backend }} test ${{ matrix.package }} + run: cargo xtask --backend ${{ matrix.backend }} test ${{ matrix.package }} # Build documentation, check links docs: |
