Skip to content

Commit b42cee1

Browse files
authored
Merge branch 'release-2025.2.0' into DOCS-Victor-links
2 parents 332fc1a + 4d94d65 commit b42cee1

File tree

1,907 files changed

+141305
-89824
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,907 files changed

+141305
-89824
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Copyright (C) 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: ADBSCAN
6+
7+
on:
8+
workflow_call:
9+
inputs:
10+
# workaround until unified workflow is implemented
11+
component-name:
12+
default: adbscan
13+
required: false
14+
type: string
15+
16+
permissions:
17+
contents: read
18+
19+
defaults:
20+
run:
21+
working-directory: robotics-ai-suite/components/adbscan
22+
23+
jobs:
24+
license-check:
25+
name: '[${{ inputs.component-name }}] License Check'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout code
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
with:
31+
sparse-checkout: robotics-ai-suite/components/adbscan
32+
persist-credentials: false
33+
34+
- name: Run REUSE
35+
shell: bash
36+
run: |
37+
make license-check
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Copyright (C) 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: Collaborative SLAM
6+
7+
on:
8+
workflow_call:
9+
inputs:
10+
# workaround until unified workflow is implemented
11+
component-name:
12+
default: collaborative-slam
13+
required: false
14+
type: string
15+
16+
permissions:
17+
contents: read
18+
19+
defaults:
20+
run:
21+
working-directory: robotics-ai-suite/components/collaborative-slam
22+
23+
jobs:
24+
license-check:
25+
name: '[${{ inputs.component-name }}] License Check'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout code
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
with:
31+
sparse-checkout: robotics-ai-suite/components/collaborative-slam
32+
persist-credentials: false
33+
34+
- name: Run REUSE
35+
shell: bash
36+
run: |
37+
make license-check
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Copyright (C) 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: Groundfloor
6+
7+
on:
8+
workflow_call:
9+
inputs:
10+
# workaround until unified workflow is implemented
11+
component-name:
12+
default: groundfloor
13+
required: false
14+
type: string
15+
16+
permissions:
17+
contents: read
18+
19+
defaults:
20+
run:
21+
working-directory: robotics-ai-suite/components/groundfloor
22+
23+
jobs:
24+
lint:
25+
name: '[${{ inputs.component-name }}] Lint'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout code
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
with:
31+
fetch-depth: 0
32+
sparse-checkout: ./robotics-ai-suite/components/groundfloor
33+
persist-credentials: false
34+
35+
- name: Lint
36+
shell: bash
37+
run: |
38+
make lint
39+
40+
license-check:
41+
name: '[${{ inputs.component-name }}] License Check'
42+
runs-on: ubuntu-latest
43+
steps:
44+
- name: Checkout code
45+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
46+
with:
47+
sparse-checkout: robotics-ai-suite/components/groundfloor
48+
persist-credentials: false
49+
50+
- name: Run REUSE
51+
shell: bash
52+
run: |
53+
make license-check

.github/workflows/robotics-components-its-planner.yaml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,22 @@ on:
1616
permissions:
1717
contents: read
1818

19+
defaults:
20+
run:
21+
working-directory: robotics-ai-suite/components/its-planner
22+
1923
jobs:
20-
dummy:
21-
name: '[${{ inputs.component-name }}] Dummy job'
24+
license-check:
25+
name: '[${{ inputs.component-name }}] License Check'
2226
runs-on: ubuntu-latest
2327
steps:
24-
- shell: bash
28+
- name: Checkout code
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
with:
31+
sparse-checkout: robotics-ai-suite/components/its-planner
32+
persist-credentials: false
33+
34+
- name: Run REUSE
35+
shell: bash
2536
run: |
26-
echo "This is a placeholder"
37+
make license-check
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Copyright (C) 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: Multi-Camera Demo
6+
7+
on:
8+
workflow_call:
9+
inputs:
10+
# workaround until unified workflow is implemented
11+
component-name:
12+
default: multicam-demo
13+
required: false
14+
type: string
15+
16+
permissions:
17+
contents: read
18+
19+
defaults:
20+
run:
21+
working-directory: robotics-ai-suite/components/multicam-demo
22+
23+
jobs:
24+
lint:
25+
name: '[${{ inputs.component-name }}] Lint'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout code
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
with:
31+
fetch-depth: 0
32+
sparse-checkout: ./robotics-ai-suite/components/multicam-demo
33+
persist-credentials: false
34+
35+
- name: Lint
36+
shell: bash
37+
run: |
38+
make lint
39+
40+
license-check:
41+
name: '[${{ inputs.component-name }}] License Check'
42+
runs-on: ubuntu-latest
43+
steps:
44+
- name: Checkout code
45+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
46+
with:
47+
sparse-checkout: robotics-ai-suite/components/multicam-demo
48+
persist-credentials: false
49+
50+
- name: Run REUSE
51+
shell: bash
52+
run: |
53+
make license-check
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Copyright (C) 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: Object Detection
6+
7+
on:
8+
workflow_call:
9+
inputs:
10+
# workaround until unified workflow is implemented
11+
component-name:
12+
default: object-detection
13+
required: false
14+
type: string
15+
16+
permissions:
17+
contents: read
18+
19+
defaults:
20+
run:
21+
working-directory: robotics-ai-suite/components/object-detection
22+
23+
jobs:
24+
license-check:
25+
name: '[${{ inputs.component-name }}] License Check'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout code
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
with:
31+
sparse-checkout: robotics-ai-suite/components/object-detection
32+
persist-credentials: false
33+
34+
- name: Run REUSE
35+
shell: bash
36+
run: |
37+
make license-check
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Copyright (C) 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: Simulations
6+
7+
on:
8+
workflow_call:
9+
inputs:
10+
# workaround until unified workflow is implemented
11+
component-name:
12+
default: simulations
13+
required: false
14+
type: string
15+
16+
permissions:
17+
contents: read
18+
19+
defaults:
20+
run:
21+
working-directory: robotics-ai-suite/components/simulations
22+
23+
jobs:
24+
license-check:
25+
name: '[${{ inputs.component-name }}] License Check'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout code
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
with:
31+
sparse-checkout: robotics-ai-suite/components/simulations
32+
persist-credentials: false
33+
34+
- name: Run REUSE
35+
shell: bash
36+
run: |
37+
make license-check
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Copyright (C) 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: Wandering
6+
7+
on:
8+
workflow_call:
9+
inputs:
10+
# workaround until unified workflow is implemented
11+
component-name:
12+
default: wandering
13+
required: false
14+
type: string
15+
16+
permissions:
17+
contents: read
18+
19+
defaults:
20+
run:
21+
working-directory: robotics-ai-suite/components/wandering
22+
23+
jobs:
24+
license-check:
25+
name: '[${{ inputs.component-name }}] License Check'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout code
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
30+
with:
31+
sparse-checkout: robotics-ai-suite/components/wandering
32+
persist-credentials: false
33+
34+
- name: Run REUSE
35+
shell: bash
36+
run: |
37+
make license-check

0 commit comments

Comments
 (0)