From 07821f5869bf80b73c0cda161b1885957abb529f Mon Sep 17 00:00:00 2001 From: brown Date: Sat, 14 Sep 2024 11:45:41 +0800 Subject: [PATCH] remove special pkgs --- .github/workflows/utils.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/utils.yaml b/.github/workflows/utils.yaml index 33b0ce7..1a72e67 100644 --- a/.github/workflows/utils.yaml +++ b/.github/workflows/utils.yaml @@ -138,7 +138,7 @@ jobs: test_scope=$(go list ./... | grep -v 'driver\|engine/aoe\|engine/memEngine\|pkg/catalog') make clean && make config && make cgo echo "ut start" - CGO_CFLAGS="-I${GITHUB_WORKSPACE}/matrixone/cgo" CGO_LDFLAGS="-L${GITHUB_WORKSPACE}/matrixone/cgo -lmo" go test -v -tags matrixone_test -p 6 -covermode=set -coverprofile=${{ env.raw_ut_coverage }} -coverpkg=./pkg/... ${test_scope} | tee ${{ env.ut_report }} + CGO_CFLAGS="-I${GITHUB_WORKSPACE}/matrixone/cgo" CGO_LDFLAGS="-L${GITHUB_WORKSPACE}/matrixone/cgo -lmo" go test -v -tags matrixone_test -p 6 -covermode=set -coverprofile=${{ env.raw_ut_coverage }} ${test_scope} | tee ${{ env.ut_report }} echo "ut finished" - name: Start BVT Test Service if: ${{ always() && !cancelled() }}