From 06abf06a690e34f0ddbc73ea10bdd0b32116cb69 Mon Sep 17 00:00:00 2001 From: Slach Date: Wed, 28 Aug 2024 14:58:43 +0500 Subject: [PATCH] add back RUN_PARALLEL: 4 --- .github/workflows/build.yaml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7d78573f..52a3b7ca 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -264,7 +264,7 @@ jobs: - name: Running integration tests env: - RUN_PARALLEL: 1 + RUN_PARALLEL: 4 GOROOT: ${{ env.GOROOT_1_22_X64 }} CLICKHOUSE_VERSION: ${{ matrix.clickhouse }} # options for advanced debug CI/CD @@ -328,18 +328,7 @@ jobs: fi done - set +e go test -parallel ${RUN_PARALLEL} -timeout 120m -failfast -tags=integration -run "${RUN_TESTS:-.+}" -v test/integration/integration_test.go - # temporary - if [[ "$?" != "0" ]]; then - for ((i = 0; i < RUN_PARALLEL; i++)); do - echo "=== CLICKHOUSE ========== project${i}" - docker compose -f ${CUR_DIR}/${COMPOSE_FILE} --project-name project${i} exec clickhouse cat /var/log/clickhouse-server/clickhouse-server.log - echo "=== AZURE container log =============== project${i}" - docker compose -f ${CUR_DIR}/${COMPOSE_FILE} --project-name project${i} logs azure - done - exit 1 - fi - name: Format integration coverage env: GOROOT: ${{ env.GOROOT_1_22_X64 }}