mirror of
https://github.com/azaion/detections.git
synced 2026-06-21 07:01:09 +00:00
6ad4b700dd
ci/woodpecker/push/02-build-push Pipeline was successful
* 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
26 lines
693 B
YAML
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
|