Skip to content

Commit fb08d6b

Browse files
Merge branch 'master' into 10.1_Sitara_Platform_Issue_Tracker
2 parents a75451b + 993e4f4 commit fb08d6b

File tree

4 files changed

+58
-25
lines changed

4 files changed

+58
-25
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -67,21 +67,3 @@ jobs:
6767
name: ${{ matrix.device }}-${{ matrix.os }}
6868
path: build/
6969
retention-days: 1
70-
71-
agregate:
72-
name: Agregate build artifacts
73-
runs-on: ubuntu-latest
74-
needs: build
75-
76-
steps:
77-
- name: Download all artifacts
78-
uses: actions/download-artifact@v4
79-
with:
80-
github-token: ${{ secrets.GITHUB_TOKEN }}
81-
path: build
82-
merge-multiple: true
83-
84-
- name: Upload static files as single artifact
85-
uses: actions/upload-pages-artifact@v3
86-
with:
87-
path: build

.github/workflows/deploy.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,60 @@ on:
99
- completed
1010

1111
jobs:
12+
agregate:
13+
name: Agregate build artifacts
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Download all artifacts
18+
uses: actions/download-artifact@v4
19+
with:
20+
github-token: ${{ secrets.GITHUB_TOKEN }}
21+
path: build
22+
merge-multiple: true
23+
run-id: ${{ github.event.workflow_run.id }}
24+
25+
- name: Generate root index
26+
run: |
27+
cat << EOF > build/index.html
28+
<!DOCTYPE html>
29+
<html lang="en">
30+
<head>
31+
<meta charset="utf-8">
32+
<title>PSDK Documentation Landing Page</title>
33+
</head>
34+
<body>
35+
<main>
36+
<h1>PSDK Documentation Landing Page</h1>
37+
<ul>
38+
EOF
39+
40+
for path in build/*/; do
41+
root_index=$(find "$path" -name index.html | sort -u | tail -1)
42+
if [ -n "$root_index" ]; then
43+
text=$(basename "$path")
44+
relative_path=$(realpath "$root_index" --relative-to=build)
45+
printf ' <li><a href="%s">%s</a></li>\n' \
46+
"$relative_path" "$text" >> build/index.html
47+
fi
48+
done
49+
50+
cat << EOF >> build/index.html
51+
</ul>
52+
</main>
53+
</body>
54+
</html>
55+
EOF
56+
57+
- name: Upload static files as single artifact
58+
uses: actions/upload-pages-artifact@v3
59+
with:
60+
path: build
61+
1262
deploy:
1363
name: Deploy
1464
runs-on: ubuntu-latest
65+
needs: agregate
1566
permissions:
1667
pages: write
1768
id-token: write

source/devices/AM62PX/linux/Release_Specific_Release_Notes.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,12 +183,12 @@ Yocto
183183
.. rubric:: meta-edgeai
184184
:name: meta-edgeai
185185

186-
| Head Commit: 836b1a3aa89d087474495ab4f77fc7a06ffcef0f edgeai-test-data.bb: edgeai-tidl-models.bb: Updated EDGEAI_SDK_VERSION
187-
| Date: 2024-07-30 05:58:20 -0500
186+
| Head Commit: 4cba875d5173dee6b4ca34bd41d5a8b47891e0c7 ti-tidl: Update concerto SRC_REV
187+
| Date: 2024-12-04 12:21:41 -0600
188188
189189
| Clone: https://git.ti.com/git/edgeai/meta-edgeai.git
190190
| Branch: scarthgap
191-
| Release Tag: 10.00.00.04
191+
| Release Tag: 10.01.10.04
192192
|
193193
194194

source/devices/AM62X/linux/Release_Specific_Release_Notes.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,17 +179,17 @@ Yocto
179179
.. rubric:: meta-edgeai
180180
:name: meta-edgeai
181181

182-
| Head Commit: 836b1a3aa89d087474495ab4f77fc7a06ffcef0f edgeai-test-data.bb: edgeai-tidl-models.bb: Updated EDGEAI_SDK_VERSION
183-
| Date: 2024-07-30 05:58:20 -0500
182+
| Head Commit: 4cba875d5173dee6b4ca34bd41d5a8b47891e0c7 ti-tidl: Update concerto SRC_REV
183+
| Date: 2024-12-04 12:21:41 -0600
184184
185185
| Clone: https://git.ti.com/git/edgeai/meta-edgeai.git
186186
| Branch: scarthgap
187-
| Release Tag: 10.00.00.04
187+
| Release Tag: 10.01.10.04
188188
|
189189
190190
.. important::
191191

192-
meta-edgeai layer is not applicable in case of SK-AM62-SIP (i.e. am62xxsip-evm)
192+
meta-edgeai layer is not applicable in case of SK-AM62-SIP (i.e. am62xxsip-evm)
193193

194194
Issues Tracker
195195
==============

0 commit comments

Comments
 (0)