From 2820f61dfbf6d57f459a2dc2ef0072a1c75055fa Mon Sep 17 00:00:00 2001 From: Daniel Noland Date: Sun, 27 Oct 2024 23:39:27 -0600 Subject: [PATCH] back to nextest --- .github/workflows/check-developer-experience.yml | 8 ++++---- .github/workflows/sterile-build-and-test.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check-developer-experience.yml b/.github/workflows/check-developer-experience.yml index 6e4116a7..2d1eb2af 100644 --- a/.github/workflows/check-developer-experience.yml +++ b/.github/workflows/check-developer-experience.yml @@ -73,20 +73,20 @@ jobs: - run: just --yes fake-nix - 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}} nextest run --locked --profile=debug --target=x86_64-unknown-linux-gnu + - run: just cargo +${{matrix.rust.toolchain}} nextest --profile ci run --locked --target=x86_64-unknown-linux-gnu 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: just cargo +${{matrix.rust.toolchain}} nextest run --locked --profile=debug --target=x86_64-unknown-linux-musl + - run: just cargo +${{matrix.rust.toolchain}} nextest --profile ci run --locked --target=x86_64-unknown-linux-musl 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: just cargo +${{matrix.rust.toolchain}} nextest run --locked --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 --locked --profile=release --target=x86_64-unknown-linux-musl continue-on-error: ${{ matrix.rust.optional }} - - run: just cargo +${{matrix.rust.toolchain}} nextest run --locked --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 diff --git a/.github/workflows/sterile-build-and-test.yml b/.github/workflows/sterile-build-and-test.yml index 17c90bc3..95ad2b05 100644 --- a/.github/workflows/sterile-build-and-test.yml +++ b/.github/workflows/sterile-build-and-test.yml @@ -50,10 +50,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - run: just rust="${{matrix.rust}}" sterile cargo nextest run --locked --profile=debug --target=x86_64-unknown-linux-gnu - - run: just rust="${{matrix.rust}}" sterile cargo nextest run --locked --profile=debug --target=x86_64-unknown-linux-musl - - run: just rust="${{matrix.rust}}" sterile cargo nextest run --locked --profile=release --target=x86_64-unknown-linux-gnu - - run: just rust="${{matrix.rust}}" sterile cargo nextest run --locked --profile=release --target=x86_64-unknown-linux-musl + - run: just rust="${{matrix.rust}}" sterile cargo nextest --profile ci run --locked --target=x86_64-unknown-linux-gnu + - run: just rust="${{matrix.rust}}" sterile cargo nextest --profile ci run --locked --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