From 2d8297a562ffe4fe907e006831f08deab20a3efc Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Fri, 17 Nov 2023 18:22:16 +0900 Subject: [PATCH] Fix CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 80b7ae2aa4..0a4ab7b8f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: cmake -S . -B b -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++-12 ${{ matrix.target }} cmake --build b -j$(nproc) - name: test - run: ctest b -j$(nproc) + run: ctest --test-dir b -j$(nproc) - name: archive test results uses: actions/upload-artifact@v3 if: failure() @@ -91,7 +91,7 @@ jobs: cmake -S . -B b cmake --build b -j$(nproc) - name: test - run: ctest b -j$(nproc) + run: ctest --test-dir b -j$(nproc) - name: archive test results uses: actions/upload-artifact@v3 if: failure()