Skip to content

Commit

Permalink
Merge branch 'master' into 10.1_Sitara_Platform_Issue_Tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
praneethbajjuri authored Dec 12, 2024
2 parents a75451b + 993e4f4 commit fb08d6b
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 25 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,3 @@ jobs:
name: ${{ matrix.device }}-${{ matrix.os }}
path: build/
retention-days: 1

agregate:
name: Agregate build artifacts
runs-on: ubuntu-latest
needs: build

steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path: build
merge-multiple: true

- name: Upload static files as single artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
51 changes: 51 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,60 @@ on:
- completed

jobs:
agregate:
name: Agregate build artifacts
runs-on: ubuntu-latest

steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path: build
merge-multiple: true
run-id: ${{ github.event.workflow_run.id }}

- name: Generate root index
run: |
cat << EOF > build/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PSDK Documentation Landing Page</title>
</head>
<body>
<main>
<h1>PSDK Documentation Landing Page</h1>
<ul>
EOF
for path in build/*/; do
root_index=$(find "$path" -name index.html | sort -u | tail -1)
if [ -n "$root_index" ]; then
text=$(basename "$path")
relative_path=$(realpath "$root_index" --relative-to=build)
printf ' <li><a href="%s">%s</a></li>\n' \
"$relative_path" "$text" >> build/index.html
fi
done
cat << EOF >> build/index.html
</ul>
</main>
</body>
</html>
EOF
- name: Upload static files as single artifact
uses: actions/upload-pages-artifact@v3
with:
path: build

deploy:
name: Deploy
runs-on: ubuntu-latest
needs: agregate
permissions:
pages: write
id-token: write
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,12 @@ Yocto
.. rubric:: meta-edgeai
:name: meta-edgeai

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

Expand Down
8 changes: 4 additions & 4 deletions source/devices/AM62X/linux/Release_Specific_Release_Notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -179,17 +179,17 @@ Yocto
.. rubric:: meta-edgeai
:name: meta-edgeai

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

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

Issues Tracker
==============
Expand Down

0 comments on commit fb08d6b

Please sign in to comment.