From 5e7a4548e38537b27a79725c7fca7087d38e755a Mon Sep 17 00:00:00 2001 From: George <58841610+Shinji-IkariG@users.noreply.github.com> Date: Tue, 14 Feb 2023 17:51:25 +0800 Subject: [PATCH] Update pull_request.yml Fix the impact of removing outputs --- .github/workflows/pull_request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 7c52334f813..d7ee4dc886b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -199,17 +199,17 @@ jobs: timeout-minutes: 4 - name: Pytest run: | - make RM_DIR=false DEBUG=false J=${{ steps.cmake.outputs.j }} test + make RM_DIR=false DEBUG=false J=8 test working-directory: tests/ timeout-minutes: 15 - name: TCK run: | - make RM_DIR=false DEBUG=false ENABLE_FT_INDEX=true ES_ADDRESS='"elasticsearch":9200' J=${{ steps.cmake.outputs.j }} tck + make RM_DIR=false DEBUG=false ENABLE_FT_INDEX=true ES_ADDRESS='"elasticsearch":9200' J=8 tck working-directory: tests/ timeout-minutes: 60 - name: LDBC run: | - make RM_DIR=false DEBUG=false J=${{ steps.cmake.outputs.j }} ldbc + make RM_DIR=false DEBUG=false J=8 ldbc working-directory: tests/ timeout-minutes: 60 - name: Down cluster