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*" .