From 63a19606ddce82a5a1553d9e5fd5f7402ebd72b1 Mon Sep 17 00:00:00 2001 From: Andreas Stefl Date: Wed, 21 Aug 2024 22:24:27 +0200 Subject: [PATCH] disable tests for ubuntu --- .github/workflows/builds.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 06312a6b339..f31c4c2e06d 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -73,16 +73,15 @@ jobs: path: ${{ github.workspace }}/ccache key: ${{ steps.ccache-restore.outputs.cache-primary-key }} - - name: Unit tests - run: ctest --test-dir build -j$(nproc) - - - name: Integration tests - run: cmake --build build --target integrationtests + #- name: Unit tests + # run: ctest --test-dir build -j$(nproc) + # + #- name: Integration tests + # run: cmake --build build --target integrationtests - name: Install run: cmake --build build --target install - - name: Package build run: tar czf build.tar.gz -C build --exclude "*.o" --exclude "bin/ActsUnitTest*" --exclude "bin/ActsIntegrationTest*" .