From 3afa51aba3728840d9f3cbba152b88909934e223 Mon Sep 17 00:00:00 2001 From: Alex | Interchain Labs Date: Mon, 12 May 2025 12:03:30 -0400 Subject: [PATCH] chore: fix CI - use file abci streaming plugin (#24734) --- .github/workflows/test.yml | 1 + store/streaming/streaming_test.go | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be73e99e03..822c068db3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -445,6 +445,7 @@ jobs: if: env.GIT_DIFF run: | cd store + cd streaming/abci/examples/file && go build . && cd ../../../.. go test -ldflags "-r /usr/local/lib" -mod=readonly -timeout 30m -coverprofile=coverage.out -covermode=atomic -tags='norace ledger test_ledger_mock' ./... test-log: diff --git a/store/streaming/streaming_test.go b/store/streaming/streaming_test.go index e6124838b5..2fc2efda6a 100644 --- a/store/streaming/streaming_test.go +++ b/store/streaming/streaming_test.go @@ -45,8 +45,7 @@ func (s *PluginTestSuite) SetupTest() { s.workDir = path pluginVersion := "abci" - // to write data to files, replace stdout/stdout => file/file - pluginPath := fmt.Sprintf("%s/abci/examples/stdout/stdout", s.workDir) + pluginPath := fmt.Sprintf("%s/abci/examples/file/file", s.workDir) if err := os.Setenv(GetPluginEnvKey(pluginVersion), pluginPath); err != nil { s.T().Fail() }