Files
detections/.woodpecker/e2e-smoke-jetson.yml
T
Roman Meshko 6ad4b700dd
ci/woodpecker/push/02-build-push Pipeline was successful
Feature/run jetson e2e tests (#4)
* Run tests

* Run tests

* Run tests

* Run tests

* Added rebuild

* Added files for e2e tests

* Added rebuild

* Added rebuild

* Added biuld TensorRT flag

* Changed to use NumPy 1.x for Jetson

* Make universal invocation

* Make Cython constans

* Changed to prepare onnx

* Changed smoke-test to wait AI conversion

* Added step for model conversion

* Changed to not run step in parallel

* Push model to docker registry

* Push model to docker registry

* Push model to docker registry
2026-05-05 21:44:51 +03:00

26 lines
693 B
YAML

when:
- event: [manual]
evaluate: 'E2E_CONVERT_JETSON != "1"'
labels:
platform: arm64
steps:
- name: e2e-smoke-jetson
image: docker
environment:
REGISTRY_HOST:
from_secret: registry_host
REGISTRY_USER:
from_secret: registry_user
REGISTRY_TOKEN:
from_secret: registry_token
commands:
- apk add --no-cache bash docker-cli-compose
- echo "$REGISTRY_TOKEN" | docker login "$REGISTRY_HOST" -u "$REGISTRY_USER" --password-stdin
- cd e2e
- bash scripts/pull_jetson_engine.sh
- E2E_PROFILE=jetson bash run_test.sh tests/test_health_engine.py
volumes:
- /var/run/docker.sock:/var/run/docker.sock