Compare commits

..

1 commit

Author SHA1 Message Date
dev-qwen2
bf72cd517c fix: vision(#623): end-to-end subpath routing smoke test for Forgejo + Woodpecker + chat (#1025)
Some checks failed
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/edge-subpath Pipeline failed
ci/woodpecker/pr/ci Pipeline failed
ci/woodpecker/pr/edge-subpath Pipeline failed
ci/woodpecker/pr/smoke-init Pipeline failed
2026-04-19 20:22:39 +00:00
2 changed files with 11 additions and 11 deletions

View file

@ -21,8 +21,8 @@
# =============================================================================
when:
event: [push, pull_request]
paths:
- event: [push, pull_request]
path:
- "nomad/jobs/edge.hcl"
- "docker/edge/**"
- "tools/edge-control/**"

View file

@ -115,21 +115,21 @@ http_request() {
# Make a GET request and return status code
http_get() {
local url="$1"
shift || true
shift
http_request "GET" "$url" "$@"
}
# Make a HEAD request (no body)
http_head() {
local url="$1"
shift || true
shift
http_request "HEAD" "$url" "$@"
}
# Make a GET request and return the response body
http_get_body() {
local url="$1"
shift || true
shift
curl -sS --max-time "$EDGE_TIMEOUT" "$@" "$url"
}