diff --git a/.github/workflows/utils.yaml b/.github/workflows/utils.yaml index 1a72e67..eefb7aa 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 }} ${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 }} -coverpkg=./... ${test_scope} | tee ${{ env.ut_report }} echo "ut finished" - name: Start BVT Test Service if: ${{ always() && !cancelled() }}