From 7484da0b592c758555b3a82facc217f6d81988a2 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Fri, 20 Dec 2024 08:33:21 +0100 Subject: [PATCH] github action: skip all2all test that runs for an hour. Also removed --verbose switch. Add it in case of issues. --- .github/workflows/test_on_push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_on_push.yml b/.github/workflows/test_on_push.yml index cf9ad761..c7f7c0fd 100644 --- a/.github/workflows/test_on_push.yml +++ b/.github/workflows/test_on_push.yml @@ -36,10 +36,10 @@ jobs: run: git submodule update --init --recursive - name: Build wfmash run: cmake -H. -Bbuild -D CMAKE_BUILD_TYPE=Debug -DWFA_PNG_AND_TSV=ON && cmake --build build -- -j 2 - - name: Run cmake tests + - name: Run cmake tests (exclude lengthy ones) run: | cd build - ctest --verbose + ctest -E all2all - name: Install Rust and Cargo uses: actions-rs/toolchain@v1 with: