From 779c374bbbe4178f2ecf88bcc1e97214ed5a2fa5 Mon Sep 17 00:00:00 2001 From: Drew Hubley <96780897+spectre-ns@users.noreply.github.com> Date: Thu, 8 Jun 2023 06:22:32 -0300 Subject: [PATCH] Removed repeated work from build (#2711) --- .github/workflows/ci_extended.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_extended.yaml b/.github/workflows/ci_extended.yaml index 9cec635a0..ee4083707 100644 --- a/.github/workflows/ci_extended.yaml +++ b/.github/workflows/ci_extended.yaml @@ -102,8 +102,8 @@ jobs: - name: Build working-directory: build - run: cmake --build . + run: cmake --build . --target test_xtensor_lib --parallel 8 - name: Run tests working-directory: build - run: ctest --output-on-failure + run: ctest -R ^xtest$ --output-on-failure