From 1dc1a1f1ea4f87d9ef47153f5e3ce9f755fb07dc Mon Sep 17 00:00:00 2001 From: Agent Date: Thu, 2 Apr 2026 07:59:16 +0000 Subject: [PATCH] fix: explicitly set FORGE_URL in smoke test --- .woodpecker/smoke-init.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/smoke-init.yml b/.woodpecker/smoke-init.yml index 77eeefd..6ee3859 100644 --- a/.woodpecker/smoke-init.yml +++ b/.woodpecker/smoke-init.yml @@ -35,4 +35,4 @@ steps: - MOCK_FORGE_PORT=3001 python3 tests/mock-forgejo.py & # Wait for mock to be ready - for i in $(seq 1 30); do curl -sf http://localhost:3001/api/v1/version >/dev/null 2>&1 && break || sleep 1; done - - SMOKE_FORGE_URL=http://localhost:3001 bash tests/smoke-init.sh + - SMOKE_FORGE_URL=http://localhost:3001 FORGE_URL=http://localhost:3001 bash tests/smoke-init.sh