Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-noland committed Oct 28, 2024
1 parent d49ad5b commit f14b079
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/check-developer-experience.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f14b079

Please sign in to comment.