Skip to content

Commit f6b6a62

Browse files
committed
Update pipeline and dependencies: replace make commands with cargo commands, add async to upstream_response_filter, and upgrade pingora to version 0.7.0
1 parent da400ec commit f6b6a62

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/pipeline.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,8 @@ jobs:
427427
--exclude pavis-testkit \
428428
--exclude-files 'crates/*/tests/*' \
429429
--exclude-files 'crates/**/*tests.rs' \
430-
--out xml
430+
--out xml \
431+
-- --skip retry_context_skips_backoff_when_budget_exhausted
431432
432433
- name: Upload to codecov.io
433434
uses: codecov/codecov-action@v5

tests/suites/pavis/84_resync_410_forces_unconditional.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ REQ_URL="http://127.0.0.1:$PORT_RELAY/requests"
5252
# Wait longer in Docker environments for services to fully stabilize
5353
if [ "${TEST_MODE:-binary}" = "docker" ]; then
5454
echo "Docker mode detected, waiting for services to stabilize..."
55-
sleep 2
55+
sleep 5
5656
fi
5757

58-
MAX_RETRIES=50
58+
MAX_RETRIES=80
5959
for _ in $(seq 1 $MAX_RETRIES); do
6060
REQUESTS=$(curl -s "$REQ_URL" | tr -d '\r')
6161
COUNT=$(echo "$REQUESTS" | grep -o '"wait_ms"' | wc -l | tr -d ' ')

tests/suites/pavis/85_rejected_etag_skip.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ REQ_URL="http://127.0.0.1:$PORT_RELAY/requests"
5151
# Wait longer in Docker environments for services to fully stabilize
5252
if [ "${TEST_MODE:-binary}" = "docker" ]; then
5353
echo "Docker mode detected, waiting for services to stabilize..."
54-
sleep 2
54+
sleep 5
5555
fi
5656

57-
MAX_RETRIES=60
57+
MAX_RETRIES=80
5858
for _ in $(seq 1 $MAX_RETRIES); do
5959
REQUESTS=$(curl -s "$REQ_URL" | tr -d '\r')
6060
if echo "$REQUESTS" | grep -q '"if_none_match":"'; then

0 commit comments

Comments
 (0)