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 556de21 commit 0c677fe
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/check-developer-experience.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,22 +69,22 @@ jobs:
- name: refresh-compile-env
run: just --yes refresh-compile-env
- run: just --yes fake-nix
- run: just cargo +${{matrix.rust.toolchain}} build --profile=debug --target=x86_64-unknown-linux-gnu
- run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=debug --target=x86_64-unknown-linux-gnu
continue-on-error: ${{ matrix.rust.optional }}
- run: just cargo +${{matrix.rust.toolchain}} test --profile=debug --target=x86_64-unknown-linux-gnu
- run: just cargo +${{matrix.rust.toolchain}} test --locked --profile=debug --target=x86_64-unknown-linux-gnu
continue-on-error: ${{ matrix.rust.optional }}
- run: just cargo +${{matrix.rust.toolchain}} build --profile=debug --target=x86_64-unknown-linux-musl
- run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=debug --target=x86_64-unknown-linux-musl
continue-on-error: ${{ matrix.rust.optional }}
- run: just cargo +${{matrix.rust.toolchain}} test --profile=debug --target=x86_64-unknown-linux-musl
- run: just cargo +${{matrix.rust.toolchain}} test --locked --profile=debug --target=x86_64-unknown-linux-musl
continue-on-error: ${{ matrix.rust.optional }}

- run: just cargo +${{matrix.rust.toolchain}} build --profile=release --target=x86_64-unknown-linux-gnu
- run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=release --target=x86_64-unknown-linux-gnu
continue-on-error: ${{ matrix.rust.optional }}
- run: just cargo +${{matrix.rust.toolchain}} test --profile=release --target=x86_64-unknown-linux-gnu
- run: just cargo +${{matrix.rust.toolchain}} test --locked --profile=release --target=x86_64-unknown-linux-gnu
continue-on-error: ${{ matrix.rust.optional }}
- run: just cargo +${{matrix.rust.toolchain}} build --profile=release --target=x86_64-unknown-linux-musl
- run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=release --target=x86_64-unknown-linux-musl
continue-on-error: ${{ matrix.rust.optional }}
- run: just cargo +${{matrix.rust.toolchain}} test --profile=release --target=x86_64-unknown-linux-musl
- run: just cargo +${{matrix.rust.toolchain}} test --locked --profile=release --target=x86_64-unknown-linux-musl
continue-on-error: ${{ matrix.rust.optional }}

- name: Setup tmate session for debug
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sterile-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- run: just rust="${{matrix.rust}}" sterile cargo test --profile=debug --target=x86_64-unknown-linux-gnu
- run: just rust="${{matrix.rust}}" sterile cargo test --profile=debug --target=x86_64-unknown-linux-musl
- run: just rust="${{matrix.rust}}" sterile cargo test --profile=release --target=x86_64-unknown-linux-gnu
- run: just rust="${{matrix.rust}}" sterile cargo test --profile=release --target=x86_64-unknown-linux-musl
- run: just rust="${{matrix.rust}}" sterile cargo test --locked --profile=debug --target=x86_64-unknown-linux-gnu
- run: just rust="${{matrix.rust}}" sterile cargo test --locked --profile=debug --target=x86_64-unknown-linux-musl
- run: just rust="${{matrix.rust}}" sterile cargo test --locked --profile=release --target=x86_64-unknown-linux-gnu
- run: just rust="${{matrix.rust}}" sterile cargo test --locked --profile=release --target=x86_64-unknown-linux-musl

- run: just rust="${{matrix.rust}}" profile=debug target=x86_64-unknown-linux-gnu push-container
- run: just rust="${{matrix.rust}}" profile=release target=x86_64-unknown-linux-gnu push-container
Expand Down

0 comments on commit 0c677fe

Please sign in to comment.