From 24c46bd52d64d764488c293316807280f04cb54d Mon Sep 17 00:00:00 2001 From: gfanton <8671905+gfanton@users.noreply.github.com> Date: Wed, 18 Oct 2023 12:02:31 -0400 Subject: [PATCH] wip: -- Signed-off-by: gfanton <8671905+gfanton@users.noreply.github.com> --- .github/workflows/gnovm.yml | 2 +- gnovm/Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/gnovm.yml b/.github/workflows/gnovm.yml index 6e286ea41fe..be180e64709 100644 --- a/.github/workflows/gnovm.yml +++ b/.github/workflows/gnovm.yml @@ -114,7 +114,7 @@ jobs: run: | ls # create coverage directory list separate by coma. - export COVERAGE_DIRS="$(ls -m | tr -d '[:blank:]')" + export COVERAGE_DIRS="$(ls | tr '\n' ',' | sed s/,$//)" echo $COVERAGE_DIRS diff --git a/gnovm/Makefile b/gnovm/Makefile index 4527c34c62d..34e94f88633 100644 --- a/gnovm/Makefile +++ b/gnovm/Makefile @@ -38,7 +38,6 @@ GOTEST_FLAGS ?= -v -p 1 -timeout=30m .PHONY: _test.cmd _test.cmd: - cat cmd/gno/build_test.go go test ./cmd/... $(GOTEST_FLAGS) .PHONY: _test.pkg