Compare commits

...

23 Commits

Author SHA1 Message Date
968f30b1c3 update debian/changelog.
Signed-off-by: shenmo <jifengshenmo@outlook.com>
2024-11-04 18:12:11 +00:00
3c3feb5f85 update ace-host-integration/ace-host-integration.
Signed-off-by: shenmo <jifengshenmo@outlook.com>
2024-11-04 18:11:08 +00:00
04ef4b73b5 update src/opt/apps/cn.flamescion.bookworm-compatibility-mode/files/bin/bookworm-run-bwrap.
Signed-off-by: shenmo <jifengshenmo@outlook.com>
2024-10-29 10:23:42 +00:00
8dc2624dc5 update Debian-Build-amd64.yml 2024-10-26 11:06:24 +00:00
fdfde11782 update Debian-Build-amd64.yml 2024-10-26 11:02:14 +00:00
e24682194e update Debian-Build-amd64.yml 2024-10-26 11:00:09 +00:00
8913d11cc3 update Debian-Build-amd64.yml 2024-10-26 10:57:20 +00:00
518c349c7f update Debian-Build-amd64.yml 2024-10-26 10:54:14 +00:00
f134bb12fe create Debian-Build-amd64.yml 2024-10-26 10:51:23 +00:00
75754f9dec 删除文件 .workflow/pipeline-20241025.yml 2024-10-26 10:50:57 +00:00
3e42120495 删除文件 .workflow/debian-amd64-pipeline-20241025.yml 2024-10-26 10:50:52 +00:00
3edcbbbf0a update .workflow/debian-amd64-pipeline-20241025.yml.
Signed-off-by: shenmo <jifengshenmo@outlook.com>
2024-10-26 10:50:16 +00:00
c476163ad8 update pipeline-20241025.yml 2024-10-26 10:49:50 +00:00
8f015507ee update pipeline-20241025.yml 2024-10-26 10:49:18 +00:00
15a3edc644 update pipeline-20241025.yml 2024-10-26 10:49:02 +00:00
8654212663 update pipeline-20241025.yml 2024-10-26 10:42:17 +00:00
195e6cc053 update pipeline-20241025.yml 2024-10-25 06:19:46 +00:00
31db0eb36c 重命名 .workflow/pipeline-20241025.yml 为 .workflow/debian-amd64-pipeline-20241025.yml 2024-10-25 06:18:39 +00:00
960fb63570 删除文件 .workflow/master-pipeline.yml 2024-10-25 06:18:28 +00:00
5ad185528f 删除文件 .workflow/branch-pipeline.yml 2024-10-25 06:18:21 +00:00
b3187660e0 删除文件 .workflow/pr-pipeline.yml 2024-10-25 06:18:13 +00:00
dbd4d7c7ce create pipeline-20241025.yml 2024-10-25 06:17:40 +00:00
d0125c983d add default pipeline template yaml 2024-10-25 06:05:07 +00:00
4 changed files with 63 additions and 3 deletions

View File

@@ -0,0 +1,59 @@
version: '1.0'
name: Debian-Build-amd64
displayName: Debian-Build-amd64
triggers:
trigger: manual
push:
tags:
prefix:
- ''
stages:
- name: stage-d1472d18
displayName: Build DEB
strategy: naturally
trigger: auto
executor: []
steps:
- step: execute@docker
name: execute_by_docker
displayName: Build Debian amd64
certificate: ''
image: docker.jianmuhub.com/library/debian:bookworm
command:
- export DEBIAN_FRONTEND=noninteractive
- apt update
- apt install ca-certificates -y
- echo 'deb [trusted=yes] http://mirrors.sdu.edu.cn/debian bookworm main contrib non-free non-free-firmware' > /etc/apt/sources.list
- rm -rfv /etc/apt/sources.list.d/*
- apt update
- apt build-dep . -y
- dpkg-buildpackage -b -us -uc
- cd ..
- ls -all
- mkdir target
- for f in $(find . -type f -name "*.deb")
- 'do '
- mv $f target
- done
- ''
artifacts:
- name: BUILD_ARTIFACT
path:
- ./target
notify: []
strategy:
retry: '0'
- name: stage-41e41b9f
displayName: push
strategy: naturally
trigger: auto
executor: []
steps:
- step: publish@general_artifacts
name: publish_general_artifacts
displayName: 上传制品
dependArtifact: BUILD_ARTIFACT
artifactName: output
notify: []
strategy:
retry: '0'

3
debian/changelog vendored
View File

@@ -1,7 +1,8 @@
amber-ce-bookworm (12.4.14-3) UNRELEASED; urgency=low
amber-ce-bookworm (12.4.14-4) UNRELEASED; urgency=low
* fix: Auto upgrade service always pop up upgradable notifier
* fix: /etc/apt/sources.list only request main repo
* fix: sudo function error: Need sudo sudo to really sudo
* fix: ACE Host Integration fail
-- shenmo <shenmo@spark-app.store> Wed, 25 Sep 2024 23:15:49 +0800

View File

@@ -5,7 +5,7 @@ parent_dir=`dirname $curdir`
pparent_dir=`dirname $parent_dir`
ppparent_dir=`dirname $pparent_dir`
PKGNAME=`basename $ppparent_dir`
export PACKAGE_NAME=$PKGNAME
export ACE_PACKAGE_NAME=$PKGNAME
chrootEnvPath=/opt/apps/$PKGNAME/files/ace-env
if [ ! -e $chrootEnvPath/finish.flag ];then

View File

@@ -63,7 +63,7 @@ local file=$1
chmod +x $file
}
if [ "${IS_ACE_ENV}" != "" ];then
if [ "${IS_ACE_ENV}" != "" ] || [[ -e /opt/ace-host-integration/ace-host-integration ]] && [[ -e /flamescion-container-tools ]];then
if [ -e /opt/apps/ ];then
for app_dir in $(ls /opt/apps/); do
for file in /opt/apps/$app_dir/entries/applications/*.desktop;do