Fixed tests
ci/woodpecker/push/02-build-push Pipeline was successful
ci/woodpecker/manual/02-build-push Pipeline was successful
ci/woodpecker/manual/01-test Pipeline failed
ci/woodpecker/manual/e2e-convert-jetson Pipeline was successful

This commit is contained in:
Roman Meshko
2026-05-06 19:12:03 +03:00
parent cb1d2ca19a
commit a2276db598
3 changed files with 25 additions and 3 deletions
+17 -1
View File
@@ -26,11 +26,27 @@ steps:
}
trap cleanup EXIT
if [ ! -f fixtures/image_small.jpg ]; then
echo "ERROR: fixtures/image_small.jpg is missing; cannot warm up Jetson engine"
exit 1
fi
if [ ! -f fixtures/models/azaion.onnx ]; then
echo "ERROR: fixtures/models/azaion.onnx is missing; cannot convert Jetson engine"
exit 1
fi
ls -lh fixtures/image_small.jpg fixtures/models/azaion.onnx
E2E_PROFILE=jetson \
E2E_WAIT_FOR_ENGINE_ENABLED=1 \
E2E_ENGINE_WAIT_TIMEOUT=3600 \
E2E_LOG_TAIL=300 \
bash run_test.sh tests/test_health_engine.py::TestHealthEngineStep03Warmed
bash run_test.sh tests/test_health_engine.py::TestHealthEngineStep03Warmed -rs
if grep -qi 'skipped' results/report.csv; then
echo "ERROR: Jetson conversion warm-up tests were skipped; no engine was produced"
cat results/report.csv
exit 1
fi
bash scripts/publish_jetson_engine.sh
volumes: