-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added release-artifacts-standalone.yaml
- Loading branch information
Showing
3 changed files
with
527 additions
and
1 deletion.
There are no files selected for viewing
212 changes: 212 additions & 0 deletions
212
.github/workflows/release-artifacts-standalone-debian.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,212 @@ | ||
name: release-artifacts standalone-Debian | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
set-safe-directory: false | ||
fetch-depth: 0 # ensure all tags are fetched | ||
|
||
- name: Set environment variables 1 | ||
id: set_env_1 | ||
run: | | ||
git_tag=$(git describe --tags --abbrev=0) | ||
echo "tag_name=${git_tag}" >> $GITHUB_ENV | ||
echo "release_name=${git_tag}-Debian12.5" >> $GITHUB_ENV | ||
sdk_ver=10.0.0 | ||
# base_images | ||
base_images=( | ||
# ubuntu:22.04 | ||
debian:12.5 | ||
) | ||
# platforms | ||
platforms=( | ||
j784s4 | ||
j721s2 | ||
j721e | ||
j722s | ||
am62a | ||
) | ||
# tidl package names | ||
for base_image_ in ${base_images[@]}; do | ||
base_image=${base_image_//:/} | ||
base_image_var=${base_image//./-} | ||
for platform in ${platforms[@]}; do | ||
tidl_pkg_name=arm-tidl-${platform}_${sdk_ver}-${base_image}.tar.gz | ||
echo "tidl_pkg_name_${platform}_${base_image_var}=${tidl_pkg_name}" >> $GITHUB_ENV | ||
echo "tidl_pkg_path_${platform}_${base_image_var}=release/tidl-${base_image}/${tidl_pkg_name}" >> $GITHUB_ENV | ||
done | ||
done | ||
- name: Download all artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: release | ||
github-token: ${{ secrets.GHCR_PAT }} | ||
run-id: 11583957536 | ||
|
||
- name: Check for downloaded artifacts | ||
run: ls -R release | ||
|
||
- name: Set environment variables 2 | ||
id: set_env_2 | ||
run: | | ||
# base_images | ||
base_images=( | ||
ubuntu:22.04 | ||
debian:12.5 | ||
) | ||
# whl, pkg names | ||
for base_image_ in ${base_images[@]}; do | ||
base_image=${base_image_//:/} | ||
base_image_var=${base_image//./-} | ||
onnx_whl_path=$(find release/onnxrt-${base_image} -name "onnxruntime_tidl-*.whl" || { echo "onnxruntime_tidl for ${base_image} wheel package not found."; exit 1; }) | ||
onnx_pkg_path=$(find release/onnxrt-${base_image} -name "onnx-*.tar.gz" || { echo "onnx tarball for ${base_image} not found."; exit 1; }) | ||
onnx_whl_name=$(basename ${onnx_whl_path}) | ||
onnx_pkg_name=$(basename ${onnx_pkg_path}) | ||
tflite_whl_path=$(find release/tilite-${base_image} -name "tflite_runtime*.whl" || { echo "tflite_runtime whl for ${base_image} not found."; exit 1; }) | ||
tflite_pkg_path=$(find release/tilite-${base_image} -name "tflite-*_aarch64.tar.gz" || { echo "tflite lib tarball for ${base_image} not found."; exit 1; }) | ||
tflite_whl_name=$(basename $tflite_whl_path) | ||
tflite_pkg_name=$(basename $tflite_pkg_path) | ||
dlr_whl_path=$(find release/dlr-${base_image} -name "dlr-*.whl" || { echo "dlr wheel package for ${base_image} not found."; exit 1; }) | ||
dlr_whl_name=$(basename $dlr_whl_path) | ||
# set env variables | ||
echo "onnx_whl_path_${base_image_var}=${onnx_whl_path}" >> $GITHUB_ENV | ||
echo "onnx_whl_name_${base_image_var}=${onnx_whl_name}" >> $GITHUB_ENV | ||
echo "onnx_pkg_path_${base_image_var}=${onnx_pkg_path}" >> $GITHUB_ENV | ||
echo "onnx_pkg_name_${base_image_var}=${onnx_pkg_name}" >> $GITHUB_ENV | ||
echo "tflite_whl_path_${base_image_var}=${tflite_whl_path}" >> $GITHUB_ENV | ||
echo "tflite_whl_name_${base_image_var}=${tflite_whl_name}" >> $GITHUB_ENV | ||
echo "tflite_pkg_path_${base_image_var}=${tflite_pkg_path}" >> $GITHUB_ENV | ||
echo "tflite_pkg_name_${base_image_var}=${tflite_pkg_name}" >> $GITHUB_ENV | ||
echo "dlr_whl_path_${base_image_var}=${dlr_whl_path}" >> $GITHUB_ENV | ||
echo "dlr_whl_name_${base_image_var}=${dlr_whl_name}" >> $GITHUB_ENV | ||
done | ||
- name: Create GitHub Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
tag_name: ${{ env.tag_name }} | ||
release_name: ${{ env.release_name }} | ||
body: | | ||
Compatible with Processor-SDK-Linux-EdgeAI ${{ env.tag_name }}. Check the matching version of the PSDK-Linux: | ||
- AM69A (j784s4): https://www.ti.com/tool/download/PROCESSOR-SDK-LINUX-AM69A | ||
- AM68A (j721s2): https://www.ti.com/tool/download/PROCESSOR-SDK-LINUX-AM68A | ||
- TDA4VM (j721e): https://www.ti.com/tool/download/PROCESSOR-SDK-LINUX-SK-TDA4VM | ||
- AM67A (j722s): https://www.ti.com/tool/download/PROCESSOR-SDK-LINUX-AM67A | ||
- AM62A (am62a): https://www.ti.com/tool/download/PROCESSOR-SDK-LINUX-AM62A | ||
draft: false | ||
prerelease: false | ||
|
||
## Upload release: Debian 12.5 | ||
- name: Upload onnx-whl-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.onnx_whl_path_debian12-5 }} | ||
asset_name: ${{ env.onnx_whl_name_debian12-5 }} | ||
asset_content_type: application/octet-stream | ||
|
||
- name: Upload onnx-pkg-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.onnx_pkg_path_debian12-5 }} | ||
asset_name: ${{ env.onnx_pkg_name_debian12-5 }} | ||
asset_content_type: application/gzip | ||
|
||
- name: Upload tflite-whl-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.tflite_whl_path_debian12-5 }} | ||
asset_name: ${{ env.tflite_whl_name_debian12-5 }} | ||
asset_content_type: application/octet-stream | ||
|
||
- name: Upload tflite-pkg-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.tflite_pkg_path_debian12-5 }} | ||
asset_name: ${{ env.tflite_pkg_name_debian12-5 }} | ||
asset_content_type: application/gzip | ||
|
||
- name: Upload dlr-whl-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.dlr_whl_path_debian12-5 }} | ||
asset_name: ${{ env.dlr_whl_name_debian12-5 }} | ||
asset_content_type: application/octet-stream | ||
|
||
### ARM-TIDL for each platform | ||
- name: Upload tidl-j784s4-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.tidl_pkg_path_j784s4_debian12-5 }} | ||
asset_name: ${{ env.tidl_pkg_name_j784s4_debian12-5 }} | ||
asset_content_type: application/gzip | ||
|
||
- name: Upload tidl-j721s2-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.tidl_pkg_path_j721s2_debian12-5 }} | ||
asset_name: ${{ env.tidl_pkg_name_j721s2_debian12-5 }} | ||
asset_content_type: application/gzip | ||
|
||
- name: Upload tidl-j721e-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.tidl_pkg_path_j721e_debian12-5 }} | ||
asset_name: ${{ env.tidl_pkg_name_j721e_debian12-5 }} | ||
asset_content_type: application/gzip | ||
|
||
- name: Upload tidl-j722s-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.tidl_pkg_path_j722s_debian12-5 }} | ||
asset_name: ${{ env.tidl_pkg_name_j722s_debian12-5 }} | ||
asset_content_type: application/gzip | ||
|
||
- name: Upload tidl-am62a-debian12-5 to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.tidl_pkg_path_am62a_debian12-5 }} | ||
asset_name: ${{ env.tidl_pkg_name_am62a_debian12-5 }} | ||
asset_content_type: application/gzip | ||
|
Oops, something went wrong.