From 5a84ecf0cd90e65b37de2acd5ceded5535576dfe Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 12 Jan 2023 19:56:19 -0500 Subject: chore(ci): only run doc tests on linux (#17379) Doc tests were observed to take over 100s on the Mac CI in one instance. --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9fdf8f63a..72cc8c5e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -370,12 +370,12 @@ jobs: if: |- !(github.event_name == 'pull_request' && matrix.skip_pr) && (steps.exit_early.outputs.EXIT_EARLY != 'true' && (matrix.job == 'test' && matrix.profile == 'debug' && !startsWith(github.ref, 'refs/tags/'))) - run: |- - cargo test --locked --doc - cargo test --locked - - name: Test fastci - if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (steps.exit_early.outputs.EXIT_EARLY != ''true'' && ((matrix.job == ''test'' && matrix.profile == ''fastci'')))' run: cargo test --locked + - name: Test fastci + if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (steps.exit_early.outputs.EXIT_EARLY != ''true'' && (matrix.job == ''test'' && matrix.profile == ''fastci''))' + run: |- + cargo test --locked --lib + cargo test --locked --test '*' env: CARGO_PROFILE_DEV_DEBUG: 0 - name: Test release -- cgit v1.2.3