Remove obsolete Woodpecker CI configuration for ARM builds

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-04-25 06:53:43 +03:00
parent 00164d9e54
commit 36f90732a9
2 changed files with 60 additions and 3 deletions
+39
View File
@@ -0,0 +1,39 @@
# Manual-trigger only. Validation fixtures (sample videos + expected-detections
# baseline) are not yet authored; running the e2e on push would produce red
# builds until that data lands. Flip `event: [manual]` back to
# `event: [push, pull_request, manual]` once validation fixtures are in place,
# and add `depends_on: [01-test]` to 02-build-push.yml.
#
# Tracking: see plan "CI Auto Tests Epic", story S3b — blocked by e2e validation data.
when:
event: [manual]
branch: [dev, stage, main]
labels:
platform: arm64
steps:
- name: e2e
image: docker:24
environment:
COMPOSE_PROJECT_NAME: detections-e2e
commands:
- cd e2e
- mkdir -p results logs
- docker compose -f docker-compose.test.yml --profile cpu up --build --abort-on-container-exit --exit-code-from e2e-runner
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- name: e2e-report
image: docker:24
when:
status: [success, failure]
environment:
COMPOSE_PROJECT_NAME: detections-e2e
commands:
- cd e2e
- docker compose -f docker-compose.test.yml --profile cpu down -v || true
- test -f results/report.csv && cat results/report.csv || echo "no report"
volumes:
- /var/run/docker.sock:/var/run/docker.sock