dav2: Runs on jetson #42
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: pull_request | |
jobs: | |
pr_build: | |
name: "${{ matrix.ci_script }}" | |
runs-on: self-hosted | |
container: | |
image: omavteam/v4l2_camera:latest | |
strategy: | |
matrix: | |
ci_script: [pr_compile, pr_run_tests] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
set-safe-directory: true | |
- name: Print working directory | |
run: pwd | |
# Step to download the ONNX file from Google Drive link | |
- name: Download ONNX model file | |
env: | |
ONNX_FILE_URL: ${{ secrets.DEPTH_ANYTHING_V2_VITS_LINK }} | |
run: | | |
# Create directory if it doesn't exist | |
mkdir -p /workspaces/v4l2_camera/test/resources | |
# Extract Google Drive file ID from URL | |
FILE_ID=$(echo "$ONNX_FILE_URL" | sed -E 's|.*?/d/([^/]+).*|\1|') | |
# Download the file using Google Drive link and file ID | |
curl -L -o /workspaces/v4l2_camera/test/resources/depth_anything_v2_vits.onnx "https://drive.google.com/uc?export=download&id=${FILE_ID}" | |
- name: Run ${{ matrix.ci_script }} | |
run: | | |
bash -x ./ci/${{ matrix.ci_script }}.sh |