Skip to content

Commit 1d4d256

Browse files
committed
add tools
1 parent 641a86f commit 1d4d256

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/bom-tests.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
required: true
1414
type: string
1515
default: main
16+
tools_ref:
17+
description: 'luxonis-tools version (branch/tag/SHA)'
18+
required: true
19+
type: string
20+
default: main
1621
modelconv_ref:
1722
description: 'modelconverter version (branch/tag/SHA)'
1823
required: true
@@ -28,6 +33,11 @@ on:
2833
required: false
2934
type: boolean
3035
default: true
36+
run_tools:
37+
description: 'Run Luxonis Tools tests'
38+
required: false
39+
type: boolean
40+
default: true
3141

3242
jobs:
3343
test-luxonis-train:
@@ -54,3 +64,12 @@ jobs:
5464
AWS_S3_ENDPOINT_URL: ${{ secrets.AWS_S3_ENDPOINT_URL }}
5565
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }}
5666
HUBAI_API_KEY: ${{ secrets.HUBAI_API_KEY }}
67+
68+
69+
test-luxonis-tools:
70+
name: Test Luxonis Tools
71+
if: ${{ inputs.run_tools }}
72+
uses: Luxonis/tools/.github/workflows/unittests.yaml@feat/add-workflow_call-to-unittests # change to main when ready
73+
with:
74+
ml_ref: ${{ inputs.ml_ref }}
75+
tools_ref: ${{ inputs.tools_ref }}

0 commit comments

Comments
 (0)