Skip to content

Commit f4125a3

Browse files
authored
Merge pull request #995 from valory-xyz/fix/check-agent-runner-store-path-env-var
fix(ci): align check-agent-runner with STORE_PATH named env var from #982
2 parents c9dcd58 + 6f37545 commit f4125a3

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,12 @@ build-agent-runner-mac: uv-install agent
204204

205205
.PHONY: check-agent-runner
206206
check-agent-runner:
207-
# aea-config.yaml uses an anonymous template ($${str:/data/}) so Pearl's
208-
# path-based env-var injection wins at runtime; a named template would
209-
# suppress the fallback. See valory-xyz/olas-operate-middleware#424.
207+
# aea-config.yaml uses a named env-var template ($${STORE_PATH:str:/data/})
208+
# for the skill's store_path, so a single STORE_PATH override drives it.
209+
# Path-based env vars like SKILL_..._STORE_PATH are the fallback when the
210+
# template lacks an explicit var name and are silently ignored here.
210211
uv run aea-helpers check-binary ./dist/agent_runner_bin$(EXE_SUFFIX) ./agent \
211-
--env-var SKILL_TRADER_ABCI_MODELS_PARAMS_ARGS_STORE_PATH=$(STORE_PATH_VALUE)
212+
--env-var STORE_PATH=$(STORE_PATH_VALUE)
212213

213214
.PHONY: ci-linter-checks
214215
ci-linter-checks:

0 commit comments

Comments
 (0)