From f14b07974bba15192414e9e3d536a0e031978d1f Mon Sep 17 00:00:00 2001 From: Daniel Noland Date: Mon, 28 Oct 2024 17:48:22 -0600 Subject: [PATCH] debug --- .../workflows/check-developer-experience.yml | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check-developer-experience.yml b/.github/workflows/check-developer-experience.yml index 6be86072..44f9c505 100644 --- a/.github/workflows/check-developer-experience.yml +++ b/.github/workflows/check-developer-experience.yml @@ -81,30 +81,34 @@ jobs: - run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=debug --target=x86_64-unknown-linux-gnu continue-on-error: ${{ matrix.rust.optional }} - - run: | + - name: "tests: rust ${{ matrix.rust.toolchain }} profile=debug target=x86_64-unknown-linux-gnu" + run: | export GITHUB_STEP_SUMMARY - just debug=true rust=${{matrix.cargo.toolchain}} profile=debug target=x86_64-unknown-linux-gnu test + just debug=true rust=${{matrix.rust.toolchain}} profile=debug target=x86_64-unknown-linux-gnu test continue-on-error: ${{ matrix.rust.optional }} - run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=debug --target=x86_64-unknown-linux-musl continue-on-error: ${{ matrix.rust.optional }} - - run: | + - name: "tests: rust ${{ matrix.rust.toolchain }} profile=debug target=x86_64-unknown-linux-musl" + run: | export GITHUB_STEP_SUMMARY - just debug=true rust=${{matrix.cargo.toolchain}} profile=debug target=x86_64-unknown-linux-musl test + just debug=true rust=${{matrix.rust.toolchain}} profile=debug target=x86_64-unknown-linux-musl test continue-on-error: ${{ matrix.rust.optional }} - run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=release --target=x86_64-unknown-linux-gnu continue-on-error: ${{ matrix.rust.optional }} - - run: | + - name: "tests: rust ${{ matrix.rust.toolchain }} profile=release target=x86_64-unknown-linux-gnu" + run: | export GITHUB_STEP_SUMMARY - just debug=true rust=${{matrix.cargo.toolchain}} profile=release target=x86_64-unknown-linux-gnu test + just debug=true rust=${{matrix.rust.toolchain}} profile=release target=x86_64-unknown-linux-gnu test continue-on-error: ${{ matrix.rust.optional }} - run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=release --target=x86_64-unknown-linux-musl continue-on-error: ${{ matrix.rust.optional }} - - run: | + - name: "tests: rust ${{ matrix.rust.toolchain }} profile=release target=x86_64-unknown-linux-musl" + run: | export GITHUB_STEP_SUMMARY - just debug=true rust=${{matrix.cargo.toolchain}} profile=release target=x86_64-unknown-linux-musl test + just debug=true rust=${{matrix.rust.toolchain}} profile=release target=x86_64-unknown-linux-musl test continue-on-error: ${{ matrix.rust.optional }} - uses: actions/upload-artifact@v4