mirror of
https://gitee.com/bianbu-linux/ai-support
synced 2025-04-18 19:34:51 -04:00
Update for v1.0.8
This commit is contained in:
parent
fd982c2866
commit
1974ea511a
9 changed files with 25 additions and 13 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -8,4 +8,3 @@ build*
|
|||
CMakeSettings.json
|
||||
|
||||
/data
|
||||
/third_parties
|
|
@ -35,7 +35,7 @@ image: harbor.bianbu.xyz/spacemit-ai/bianbu-ai-support:v1.1.1
|
|||
|
||||
.rule-upload: &rule-upload
|
||||
rules:
|
||||
- if: '$CI_COMMIT_TAG =~ /^bianbu-23.10\/.*$/'
|
||||
- if: '$CI_COMMIT_TAG =~ /^bianbu-.*\/.*$/'
|
||||
when: on_success
|
||||
|
||||
|
||||
|
@ -302,12 +302,15 @@ upload-archive-bianbu:
|
|||
- export PATH=$(pwd)/bianbu-devscripts:$PATH
|
||||
# prepare source code
|
||||
- cd $CI_PROJECT_DIR
|
||||
- git checkout ${CI_COMMIT_TAG%%/*}
|
||||
- git checkout ${CI_COMMIT_TAG%%/*}
|
||||
- bianbu-pkg -u local -w . -t $CI_COMMIT_TAG
|
||||
- changes_file=$(find ../ -maxdepth 1 -type f -name "*.changes" | head -n 1)
|
||||
# upload
|
||||
- ssh-keyscan reprepro-headless-service.buildsystem.svc.cluster.local >> ~/.ssh/known_hosts
|
||||
- bianbu-dev upload $changes_file # --suite mantic-porting
|
||||
- bianbu-dev set-default-dist bianbu-23.10
|
||||
- bianbu-dev upload $changes_file --suite mantic-porting
|
||||
- bianbu-dev set-default-dist bianbu-24.04
|
||||
- bianbu-dev upload $changes_file --suite noble-porting
|
||||
# change proxy as ssh
|
||||
- git remote set-url origin git@gitlab.dc.com:$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME.git
|
||||
- git push origin --all
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.0.16
|
||||
1.1.1
|
3
debian/bianbu.conf
vendored
3
debian/bianbu.conf
vendored
|
@ -1,4 +1,3 @@
|
|||
[package]
|
||||
upstream = False
|
||||
targetsuite = mantic-porting
|
||||
|
||||
#targetsuite = noble-porting
|
||||
|
|
12
debian/changelog
vendored
12
debian/changelog
vendored
|
@ -1,9 +1,15 @@
|
|||
bianbu-ai-support (1.0.16) mantic-porting; urgency=medium
|
||||
bianbu-ai-support (1.1.1) stable; urgency=medium
|
||||
|
||||
* Support bianbu-23.10 and bianbu-24.04 with spacemit-ort v1.2.0
|
||||
|
||||
-- qinhongjie <hongjie.qin@spacemit.com> Thu, 11 Jul 2024 12:40:33 +0800
|
||||
|
||||
bianbu-ai-support (1.1.0) noble-porting; urgency=medium
|
||||
|
||||
[ bianbu-ci ]
|
||||
* Sync change from bianbu-23.10/1.0.16
|
||||
* Sync change from bianbu-24.04/1.1.0
|
||||
|
||||
-- qinhongjie <hongjie.qin@spacemit.com> Wed, 03 Jul 2024 09:13:40 +0800
|
||||
-- qinhongjie <hongjie.qin@spacemit.com> Tue, 02 Jul 2024 17:40:40 +0800
|
||||
|
||||
bianbu-ai-support (1.0.15) mantic-porting; urgency=medium
|
||||
|
||||
|
|
2
debian/control
vendored
2
debian/control
vendored
|
@ -8,7 +8,7 @@ Homepage: https://gitlab.dc.com:8443/bianbu/ai/support
|
|||
|
||||
Package: bianbu-ai-support
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}, onnxruntime, libopencv-dev
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}, onnxruntime
|
||||
Description: auto-generated package by debmake
|
||||
This Debian binary package was auto-generated by the
|
||||
debmake(1) command provided by the debmake package.
|
||||
|
|
|
@ -43,6 +43,11 @@ function build() {
|
|||
echo "[INFO] Building demos done."
|
||||
}
|
||||
if [[ ! -d build ]]; then
|
||||
# check if cmake is installed
|
||||
if ! command -v cmake &> /dev/null; then
|
||||
echo "Error: cmake is not installed! Plz install cmake first."
|
||||
exit 1
|
||||
fi
|
||||
build
|
||||
else
|
||||
cd build && make && cd ..
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
#Encoding=UTF-8
|
||||
Version=1.0.16
|
||||
Version=1.1.1
|
||||
Name=object-detection
|
||||
Name[en]=object-detection
|
||||
Name[zh_CN]=目标检测
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
#Encoding=UTF-8
|
||||
Version=1.0.16
|
||||
Version=1.1.1
|
||||
Name=pose-tracker
|
||||
Name[en]=pose-tracker
|
||||
Name[zh_CN]=姿态追踪
|
||||
|
|
Loading…
Add table
Reference in a new issue