chore: fix CI - use file abci streaming plugin (#24734)

This commit is contained in:
Alex | Interchain Labs 2025-05-12 12:03:30 -04:00 committed by GitHub
parent 06fb8ea11f
commit 3afa51aba3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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()
}