mirror of
https://github.com/GXDE-OS/GXDE.git
synced 2026-08-07 07:13:57 +08:00
Compare commits
48
Commits
2025.03.09
...
2025.06.22
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1e41f890a5 | ||
|
|
4e9d928ccc | ||
|
|
62bd578c8e | ||
|
|
6d2bd7bbff | ||
|
|
e1079908d9 | ||
|
|
b5ec9309fe | ||
|
|
d69d54ecd9 | ||
|
|
52d131446c | ||
|
|
ca37c5931a | ||
|
|
dc74a19201 | ||
|
|
701576ea5d | ||
|
|
c3cc92ba86 | ||
|
|
6369384b2f | ||
|
|
3033623aec | ||
|
|
13345d4c88 | ||
|
|
64a4efe357 | ||
|
|
23529f803e | ||
|
|
99b74ecfda | ||
|
|
4d063c7a4b | ||
|
|
aa0c9f69b9 | ||
|
|
1d98292b0b | ||
|
|
7d3fb159d6 | ||
|
|
e03fa77a70 | ||
|
|
637c022e29 | ||
|
|
90abc92e09 | ||
|
|
41316de896 | ||
|
|
70b54ace06 | ||
|
|
1d77f7d66e | ||
|
|
e1b30589a2 | ||
|
|
fdf8e253aa | ||
|
|
50fbe9b797 | ||
|
|
058c26f536 | ||
|
|
a5d8cd225f | ||
|
|
22d02b6eeb | ||
|
|
5214384e12 | ||
|
|
4e0b6ecac4 | ||
|
|
04383cd60b | ||
|
|
21533c233f | ||
|
|
6859fd95ef | ||
|
|
8ec4c6fd83 | ||
|
|
d5252d5f13 | ||
|
|
43cf8dd66f | ||
|
|
737219e05f | ||
|
|
05aaed9a8d | ||
|
|
5f7542721d | ||
|
|
cc5faf9144 | ||
|
|
45b6aeb756 | ||
|
|
e973b8450f |
@@ -22,231 +22,6 @@ env:
|
|||||||
BOTTLEPATH: system-bottle
|
BOTTLEPATH: system-bottle
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
i386:
|
call-tianlu:
|
||||||
runs-on: ubuntu-latest
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-tianlu-backport.yml@master
|
||||||
steps:
|
secrets: inherit
|
||||||
- name: Clone Repository To Get Script
|
|
||||||
run: |
|
|
||||||
git clone $REPOSITORY --depth=1
|
|
||||||
mv $(basename $REPOSITORY)/* . -v
|
|
||||||
mv $(basename $REPOSITORY)/.* . -v | true
|
|
||||||
|
|
||||||
- name: Configure Base System
|
|
||||||
run: |
|
|
||||||
bash .github/workflows/configure-building-enviroment-base-system.sh i386 bookworm $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian/ backport
|
|
||||||
|
|
||||||
- name: Building ${{ GITHUB.repository }}
|
|
||||||
run: |
|
|
||||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GXDE_CODENAME=bixie GO111MODULE=off dpkg-buildpackage -b
|
|
||||||
cp $BOTTLEPATH/*.deb . -rv
|
|
||||||
|
|
||||||
- name: Remove Debug Package
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
echo -e "ls -1 | grep dbgsym | grep .deb | grep -v dtk | grep -v qt | grep -v dock | grep -v gxtk\nexit 0" | sudo tee remove-deb.sh
|
|
||||||
removeDeb=$(bash remove-deb.sh)
|
|
||||||
sudo rm -rf $removeDeb
|
|
||||||
|
|
||||||
- name: Pack tar
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
|
||||||
|
|
||||||
- name: Push
|
|
||||||
env:
|
|
||||||
UPASSWD: ${{ secrets.PASSWD }}
|
|
||||||
UUSERS: ${{ secrets.USERS }}
|
|
||||||
UHOST: ${{ secrets.HOST }}
|
|
||||||
UPATH: ${{ secrets.UPATH }}
|
|
||||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
|
||||||
UPORT: ${{ secrets.UPORT }}
|
|
||||||
run: |
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install sshpass -y
|
|
||||||
mkdir -p ~/.ssh/
|
|
||||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
|
||||||
tarName=$(ls | grep .tar | head -n 1)
|
|
||||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
|
||||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu-bpo $UPATH/$tarName > /dev/null
|
|
||||||
|
|
||||||
- name: Create Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOCKEN_GITHUB }}
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
*.deb
|
|
||||||
generate_release_notes: true
|
|
||||||
|
|
||||||
amd64:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Clone Repository To Get Script
|
|
||||||
run: |
|
|
||||||
git clone $REPOSITORY --depth=1
|
|
||||||
mv $(basename $REPOSITORY)/* . -v
|
|
||||||
mv $(basename $REPOSITORY)/.* . -v | true
|
|
||||||
|
|
||||||
- name: Configure Base System
|
|
||||||
run: |
|
|
||||||
bash .github/workflows/configure-building-enviroment-base-system.sh amd64 bookworm $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian/ backport
|
|
||||||
|
|
||||||
- name: Building ${{ GITHUB.repository }}
|
|
||||||
run: |
|
|
||||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GXDE_CODENAME=bixie GO111MODULE=off dpkg-buildpackage -b
|
|
||||||
cp $BOTTLEPATH/*.deb . -rv
|
|
||||||
|
|
||||||
- name: Remove Debug Package
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
echo -e "ls -1 | grep dbgsym | grep .deb | grep -v dtk | grep -v qt | grep -v dock | grep -v gxtk\nexit 0" | sudo tee remove-deb.sh
|
|
||||||
removeDeb=$(bash remove-deb.sh)
|
|
||||||
sudo rm -rf $removeDeb
|
|
||||||
|
|
||||||
- name: Pack tar
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
|
||||||
|
|
||||||
- name: Push
|
|
||||||
env:
|
|
||||||
UPASSWD: ${{ secrets.PASSWD }}
|
|
||||||
UUSERS: ${{ secrets.USERS }}
|
|
||||||
UHOST: ${{ secrets.HOST }}
|
|
||||||
UPATH: ${{ secrets.UPATH }}
|
|
||||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
|
||||||
UPORT: ${{ secrets.UPORT }}
|
|
||||||
run: |
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install sshpass -y
|
|
||||||
mkdir -p ~/.ssh/
|
|
||||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
|
||||||
tarName=$(ls | grep .tar | head -n 1)
|
|
||||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
|
||||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu-bpo $UPATH/$tarName > /dev/null
|
|
||||||
|
|
||||||
- name: Create Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOCKEN_GITHUB }}
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
*.deb
|
|
||||||
generate_release_notes: true
|
|
||||||
|
|
||||||
arm64:
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
#runs-on: self-hosted
|
|
||||||
steps:
|
|
||||||
- name: Clone Repository To Get Script
|
|
||||||
run: |
|
|
||||||
git clone $REPOSITORY --depth=1
|
|
||||||
mv $(basename $REPOSITORY)/* . -v
|
|
||||||
mv $(basename $REPOSITORY)/.* . -v | true
|
|
||||||
|
|
||||||
- name: Configure Base System
|
|
||||||
run: |
|
|
||||||
bash .github/workflows/configure-building-enviroment-base-system.sh arm64 bookworm $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian/ backport
|
|
||||||
|
|
||||||
- name: Building ${{ GITHUB.repository }}
|
|
||||||
run: |
|
|
||||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GXDE_CODENAME=bixie GO111MODULE=off dpkg-buildpackage -b
|
|
||||||
cp $BOTTLEPATH/*.deb . -rv
|
|
||||||
|
|
||||||
- name: Remove Debug Package
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
echo -e "ls -1 | grep dbgsym | grep .deb | grep -v dtk | grep -v qt | grep -v dock | grep -v gxtk\nexit 0" | sudo tee remove-deb.sh
|
|
||||||
removeDeb=$(bash remove-deb.sh)
|
|
||||||
sudo rm -rf $removeDeb
|
|
||||||
|
|
||||||
- name: Pack tar
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
|
||||||
|
|
||||||
- name: Push
|
|
||||||
env:
|
|
||||||
UPASSWD: ${{ secrets.PASSWD }}
|
|
||||||
UUSERS: ${{ secrets.USERS }}
|
|
||||||
UHOST: ${{ secrets.HOST }}
|
|
||||||
UPATH: ${{ secrets.UPATH }}
|
|
||||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
|
||||||
UPORT: ${{ secrets.UPORT }}
|
|
||||||
run: |
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install sshpass -y
|
|
||||||
mkdir -p ~/.ssh/
|
|
||||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
|
||||||
tarName=$(ls | grep .tar | head -n 1)
|
|
||||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
|
||||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu-bpo $UPATH/$tarName > /dev/null
|
|
||||||
|
|
||||||
- name: Create Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOCKEN_GITHUB }}
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
*.deb
|
|
||||||
generate_release_notes: true
|
|
||||||
|
|
||||||
mips64:
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
- name: Clone Repository To Get Script
|
|
||||||
run: |
|
|
||||||
git clone $REPOSITORY --depth=1
|
|
||||||
mv $(basename $REPOSITORY)/* . -v
|
|
||||||
mv $(basename $REPOSITORY)/.* . -v | true
|
|
||||||
|
|
||||||
- name: Configure Base System
|
|
||||||
run: |
|
|
||||||
bash .github/workflows/configure-building-enviroment-base-system.sh mips64el bookworm $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian/ backport
|
|
||||||
|
|
||||||
- name: Building ${{ GITHUB.repository }}
|
|
||||||
run: |
|
|
||||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GXDE_CODENAME=bixie GO111MODULE=off dpkg-buildpackage -b
|
|
||||||
cp $BOTTLEPATH/*.deb . -rv
|
|
||||||
|
|
||||||
- name: Remove Debug Package
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
echo -e "ls -1 | grep dbgsym | grep .deb | grep -v dtk | grep -v qt | grep -v dock | grep -v gxtk\nexit 0" | sudo tee remove-deb.sh
|
|
||||||
removeDeb=$(bash remove-deb.sh)
|
|
||||||
sudo rm -rf $removeDeb
|
|
||||||
|
|
||||||
- name: Pack tar
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
|
||||||
|
|
||||||
- name: Push
|
|
||||||
env:
|
|
||||||
UPASSWD: ${{ secrets.PASSWD }}
|
|
||||||
UUSERS: ${{ secrets.USERS }}
|
|
||||||
UHOST: ${{ secrets.HOST }}
|
|
||||||
UPATH: ${{ secrets.UPATH }}
|
|
||||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
|
||||||
UPORT: ${{ secrets.UPORT }}
|
|
||||||
run: |
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install sshpass -y
|
|
||||||
mkdir -p ~/.ssh/
|
|
||||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
|
||||||
tarName=$(ls | grep .tar | head -n 1)
|
|
||||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
|
||||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu-bpo $UPATH/$tarName > /dev/null
|
|
||||||
|
|
||||||
- name: Create Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOCKEN_GITHUB }}
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
*.deb
|
|
||||||
generate_release_notes: true
|
|
||||||
@@ -42,6 +42,11 @@ on:
|
|||||||
description: 'GXDE OS Codename'
|
description: 'GXDE OS Codename'
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
|
gxde-is-backport:
|
||||||
|
type: boolean
|
||||||
|
description: 'Is build with backport'
|
||||||
|
required: false
|
||||||
|
|
||||||
display-name:
|
display-name:
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
@@ -54,6 +59,7 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
if: github.repository_owner == 'GXDE-OS'
|
||||||
name: ${{ inputs.display-name || 'Build Job' }}
|
name: ${{ inputs.display-name || 'Build Job' }}
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
@@ -80,11 +86,17 @@ jobs:
|
|||||||
|
|
||||||
- name: Configure Base System
|
- name: Configure Base System
|
||||||
run: |
|
run: |
|
||||||
|
if [[ ${{ inputs.gxde-is-backport }} == true ]]; then
|
||||||
|
isBackport=backport
|
||||||
|
fi
|
||||||
|
export REPO_BRANCH=${{ github.ref_name }}
|
||||||
bash .github/workflows/configure-building-enviroment-base-system.sh ${{ inputs.arch }} \
|
bash .github/workflows/configure-building-enviroment-base-system.sh ${{ inputs.arch }} \
|
||||||
${{ inputs.rootfs-codename }} \
|
${{ inputs.rootfs-codename }} \
|
||||||
$REPOSITORY \
|
$REPOSITORY \
|
||||||
https://github.com/$GITHUB_REPOSITORY \
|
https://github.com/$GITHUB_REPOSITORY \
|
||||||
${{ inputs.rootfs-source }}
|
${{ inputs.rootfs-source }} \
|
||||||
|
${{ github.ref_name }} \
|
||||||
|
$isBackport
|
||||||
|
|
||||||
- name: Building ${{ GITHUB.repository }}
|
- name: Building ${{ GITHUB.repository }}
|
||||||
run: |
|
run: |
|
||||||
@@ -103,6 +115,9 @@ jobs:
|
|||||||
echo -e "ls -1 | grep dbgsym | grep .deb | grep -v dtk | grep -v qt | grep -v dock | grep -v gxtk\nexit 0" | sudo tee remove-deb.sh
|
echo -e "ls -1 | grep dbgsym | grep .deb | grep -v dtk | grep -v qt | grep -v dock | grep -v gxtk\nexit 0" | sudo tee remove-deb.sh
|
||||||
removeDeb=$(bash remove-deb.sh)
|
removeDeb=$(bash remove-deb.sh)
|
||||||
sudo rm -rf $removeDeb
|
sudo rm -rf $removeDeb
|
||||||
|
echo -e "ls -1 | grep dbg_ | grep .deb | grep -v dtk | grep -v qt | grep -v dock | grep -v gxtk\nexit 0" | sudo tee remove-deb.sh
|
||||||
|
removeDeb=$(bash remove-deb.sh)
|
||||||
|
sudo rm -rf $removeDeb
|
||||||
|
|
||||||
- name: Pack tar
|
- name: Pack tar
|
||||||
run: |
|
run: |
|
||||||
@@ -134,4 +149,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
*.deb
|
*.deb
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
|
|||||||
Executable
+67
@@ -0,0 +1,67 @@
|
|||||||
|
name: Building GXDE Package (hetao)
|
||||||
|
run-name: Building ${{ GITHUB.REPOSITORY }}
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
secrets:
|
||||||
|
PASSWD:
|
||||||
|
required: true
|
||||||
|
USERS:
|
||||||
|
required: true
|
||||||
|
HOST:
|
||||||
|
required: true
|
||||||
|
UPATH:
|
||||||
|
required: true
|
||||||
|
UPROGRAM:
|
||||||
|
required: true
|
||||||
|
UPORT:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
REPOSITORY: https://github.com/GXDE-OS/GXDE
|
||||||
|
BOTTLEPATH: system-bottle
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
call-amd64-hetao:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: amd64-hetao
|
||||||
|
arch: amd64
|
||||||
|
rootfs-codename: crimson
|
||||||
|
rootfs-source: https://mirrors.kernel.org/deepin/beige/
|
||||||
|
gxde-codename: hetao
|
||||||
|
gxde-codename-upload: hetao
|
||||||
|
|
||||||
|
call-arm64-hetao:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: arm64-hetao
|
||||||
|
arch: arm64
|
||||||
|
rootfs-codename: crimson
|
||||||
|
rootfs-source: https://mirrors.kernel.org/deepin/beige/
|
||||||
|
gxde-codename: hetao
|
||||||
|
gxde-codename-upload: hetao
|
||||||
|
|
||||||
|
call-loong64-hetao:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: loong64-hetao
|
||||||
|
arch: loong64
|
||||||
|
rootfs-codename: crimson
|
||||||
|
rootfs-source: https://mirrors.kernel.org/deepin/beige/
|
||||||
|
gxde-codename: hetao
|
||||||
|
gxde-codename-upload: hetao
|
||||||
|
|
||||||
|
call-riscv64-hetao:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: riscv64-hetao
|
||||||
|
arch: riscv64
|
||||||
|
rootfs-codename: crimson
|
||||||
|
rootfs-source: https://mirrors.kernel.org/deepin/beige/
|
||||||
|
gxde-codename: hetao
|
||||||
|
gxde-codename-upload: hetao
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
name: Building GXDE Package for Newest Release
|
||||||
|
run-name: Building for Newest Release ${{ GITHUB.REPOSITORY }}
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
secrets:
|
||||||
|
PASSWD:
|
||||||
|
required: true
|
||||||
|
USERS:
|
||||||
|
required: true
|
||||||
|
HOST:
|
||||||
|
required: true
|
||||||
|
UPATH:
|
||||||
|
required: true
|
||||||
|
UPROGRAM:
|
||||||
|
required: true
|
||||||
|
UPORT:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
REPOSITORY: https://github.com/GXDE-OS/GXDE
|
||||||
|
BOTTLEPATH: system-bottle
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
call-loong64-tianlu:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: loong64-tianlu
|
||||||
|
arch: loong64
|
||||||
|
rootfs-codename: sid
|
||||||
|
rootfs-source: https://deb.debian.org/debian-ports/
|
||||||
|
gxde-codename: bixie
|
||||||
|
gxde-codename-upload: tianlu
|
||||||
|
|
||||||
|
call-zhuangzhuang:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-zhuangzhuang.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
call-hetao:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-hetao.yml@master
|
||||||
|
secrets: inherit
|
||||||
@@ -22,136 +22,6 @@ env:
|
|||||||
BOTTLEPATH: system-bottle
|
BOTTLEPATH: system-bottle
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
call:
|
call-zhuangzhuang:
|
||||||
uses: GXDE-OS/GXDE/.github/workflows/building-deb-zhuangzhuang.yml@master
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-zhuangzhuang.yml@master
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
loong64:
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
# 由于默认的 Ubuntu 环境只有 17G 左右的剩余空间,所以我们需要先利用如下 action 对编译环境进行扩容
|
|
||||||
- name: Maximize build space
|
|
||||||
uses: easimon/maximize-build-space@master
|
|
||||||
with:
|
|
||||||
# 这个值是保留给系统的空间大小,之前设置太小,总会在安装依赖或者编译过程中报设备空间不足的错误而导致编译失败
|
|
||||||
root-reserve-mb: 4096
|
|
||||||
swap-size-mb: 512
|
|
||||||
remove-dotnet: 'true'
|
|
||||||
remove-docker-images: 'true'
|
|
||||||
remove-codeql: 'true'
|
|
||||||
remove-haskell: 'true'
|
|
||||||
remove-android: 'true'
|
|
||||||
|
|
||||||
- name: Clone Repository To Get Script
|
|
||||||
run: |
|
|
||||||
#apt update
|
|
||||||
#apt install sudo git -y
|
|
||||||
git clone $REPOSITORY --depth=1
|
|
||||||
mv $(basename $REPOSITORY)/* . -v
|
|
||||||
mv $(basename $REPOSITORY)/.* . -v | true
|
|
||||||
|
|
||||||
- name: Configure Base System
|
|
||||||
run: |
|
|
||||||
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
|
||||||
#bash .github/workflows/configure-building-enviroment-base-system.sh loong64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
|
|
||||||
|
|
||||||
- name: Building ${{ GITHUB.repository }}
|
|
||||||
run: |
|
|
||||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GXDE_CODENAME=bixie GO111MODULE=off dpkg-buildpackage -b
|
|
||||||
|
|
||||||
- name: Remove Debug Package
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
echo -e "ls -1 | grep dbgsym | grep .deb | grep -v dtk | grep -v qt | grep -v dock | grep -v gxtk\nexit 0" | sudo tee remove-deb.sh
|
|
||||||
removeDeb=$(bash remove-deb.sh)
|
|
||||||
sudo rm -rf $removeDeb
|
|
||||||
|
|
||||||
- name: Pack tar
|
|
||||||
run: |
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
|
||||||
|
|
||||||
- name: Push
|
|
||||||
env:
|
|
||||||
UPASSWD: ${{ secrets.PASSWD }}
|
|
||||||
UUSERS: ${{ secrets.USERS }}
|
|
||||||
UHOST: ${{ secrets.HOST }}
|
|
||||||
UPATH: ${{ secrets.UPATH }}
|
|
||||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
|
||||||
UPORT: ${{ secrets.UPORT }}
|
|
||||||
run: |
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install sshpass -y
|
|
||||||
mkdir -p ~/.ssh/
|
|
||||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
|
||||||
tarName=$(ls | grep .tar | head -n 1)
|
|
||||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH
|
|
||||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
|
||||||
|
|
||||||
riscv64:
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
# 由于默认的 Ubuntu 环境只有 17G 左右的剩余空间,所以我们需要先利用如下 action 对编译环境进行扩容
|
|
||||||
- name: Maximize build space
|
|
||||||
uses: easimon/maximize-build-space@master
|
|
||||||
with:
|
|
||||||
# 这个值是保留给系统的空间大小,之前设置太小,总会在安装依赖或者编译过程中报设备空间不足的错误而导致编译失败
|
|
||||||
root-reserve-mb: 4096
|
|
||||||
swap-size-mb: 512
|
|
||||||
remove-dotnet: 'true'
|
|
||||||
remove-docker-images: 'true'
|
|
||||||
remove-codeql: 'true'
|
|
||||||
remove-haskell: 'true'
|
|
||||||
remove-android: 'true'
|
|
||||||
|
|
||||||
- name: Clone Repository To Get Script
|
|
||||||
run: |
|
|
||||||
#apt update
|
|
||||||
#apt install sudo git -y
|
|
||||||
git clone $REPOSITORY --depth=1
|
|
||||||
mv $(basename $REPOSITORY)/* . -v
|
|
||||||
mv $(basename $REPOSITORY)/.* . -v | true
|
|
||||||
|
|
||||||
- name: Configure Base System
|
|
||||||
run: |
|
|
||||||
bash .github/workflows/configure-building-enviroment-base-system.sh riscv64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY
|
|
||||||
|
|
||||||
- name: Building ${{ GITHUB.repository }}
|
|
||||||
run: |
|
|
||||||
set +e
|
|
||||||
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GXDE_CODENAME=bixie GO111MODULE=off dpkg-buildpackage -b
|
|
||||||
|
|
||||||
- name: Remove Debug Package
|
|
||||||
run: |
|
|
||||||
set +e
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
echo -e "ls -1 | grep dbgsym | grep .deb | grep -v dtk | grep -v qt | grep -v dock | grep -v gxtk\nexit 0" | sudo tee remove-deb.sh
|
|
||||||
removeDeb=$(bash remove-deb.sh)
|
|
||||||
sudo rm -rf $removeDeb
|
|
||||||
|
|
||||||
- name: Pack tar
|
|
||||||
run: |
|
|
||||||
set +e
|
|
||||||
cd $BOTTLEPATH
|
|
||||||
sudo tar -cvf ../deb-$(date +%s).tar *.deb
|
|
||||||
|
|
||||||
- name: Push
|
|
||||||
env:
|
|
||||||
UPASSWD: ${{ secrets.PASSWD }}
|
|
||||||
UUSERS: ${{ secrets.USERS }}
|
|
||||||
UHOST: ${{ secrets.HOST }}
|
|
||||||
UPATH: ${{ secrets.UPATH }}
|
|
||||||
UPROGRAM: ${{ secrets.UPROGRAM }}
|
|
||||||
UPORT: ${{ secrets.UPORT }}
|
|
||||||
run: |
|
|
||||||
set +e
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install sshpass -y
|
|
||||||
mkdir -p ~/.ssh/
|
|
||||||
ssh-keyscan -p $UPORT -H $UHOST >> ~/.ssh/known_hosts
|
|
||||||
tarName=$(ls | grep .tar | head -n 1)
|
|
||||||
if [[ $tarName != "" ]]; then
|
|
||||||
sshpass -p "$UPASSWD" rsync -e "ssh -p $UPORT" $tarName $UUSERS@$UHOST:$UPATH > /dev/null
|
|
||||||
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM tianlu $UPATH/$tarName > /dev/null
|
|
||||||
fi
|
|
||||||
|
|
||||||
+96
@@ -0,0 +1,96 @@
|
|||||||
|
name: Building GXDE Testing Package (tianlu)
|
||||||
|
run-name: Building ${{ GITHUB.REPOSITORY }}
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
secrets:
|
||||||
|
PASSWD:
|
||||||
|
required: true
|
||||||
|
USERS:
|
||||||
|
required: true
|
||||||
|
HOST:
|
||||||
|
required: true
|
||||||
|
UPATH:
|
||||||
|
required: true
|
||||||
|
UPROGRAM:
|
||||||
|
required: true
|
||||||
|
UPORT:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
REPOSITORY: https://github.com/GXDE-OS/GXDE
|
||||||
|
BOTTLEPATH: system-bottle
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
call-i386-tianlu:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: i386-tianlu
|
||||||
|
arch: i386
|
||||||
|
rootfs-codename: bookworm
|
||||||
|
rootfs-source: https://deb.debian.org/debian/
|
||||||
|
gxde-codename: bixie
|
||||||
|
gxde-codename-upload: tianlu-bpo
|
||||||
|
gxde-is-backport: true
|
||||||
|
|
||||||
|
call-amd64-tianlu:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: amd64-tianlu
|
||||||
|
arch: amd64
|
||||||
|
rootfs-codename: bookworm
|
||||||
|
rootfs-source: https://deb.debian.org/debian/
|
||||||
|
gxde-codename: bixie
|
||||||
|
gxde-codename-upload: tianlu-bpo
|
||||||
|
gxde-is-backport: true
|
||||||
|
|
||||||
|
call-arm64-tianlu:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: arm64-tianlu
|
||||||
|
arch: arm64
|
||||||
|
rootfs-codename: bookworm
|
||||||
|
rootfs-source: https://deb.debian.org/debian/
|
||||||
|
gxde-codename: bixie
|
||||||
|
gxde-codename-upload: tianlu-bpo
|
||||||
|
gxde-is-backport: true
|
||||||
|
|
||||||
|
call-mips64el-tianlu:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: mips64el-tianlu
|
||||||
|
arch: mips64el
|
||||||
|
rootfs-codename: bookworm
|
||||||
|
rootfs-source: https://deb.debian.org/debian/
|
||||||
|
gxde-codename: bixie
|
||||||
|
gxde-codename-upload: tianlu-bpo
|
||||||
|
gxde-is-backport: true
|
||||||
|
|
||||||
|
|
||||||
|
call-loong64-tianlu:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: loong64-tianlu
|
||||||
|
arch: loong64
|
||||||
|
rootfs-codename: sid
|
||||||
|
rootfs-source: https://deb.debian.org/debian-ports/
|
||||||
|
gxde-codename: bixie
|
||||||
|
gxde-codename-upload: tianlu
|
||||||
|
gxde-is-backport: true
|
||||||
|
|
||||||
|
call-riscv64-tianlu:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: riscv64-tianlu
|
||||||
|
arch: riscv64
|
||||||
|
rootfs-codename: sid
|
||||||
|
rootfs-source: https://deb.debian.org/debian/
|
||||||
|
gxde-codename: bixie
|
||||||
|
gxde-codename-upload: tianlu
|
||||||
|
gxde-is-backport: true
|
||||||
@@ -65,25 +65,3 @@ jobs:
|
|||||||
rootfs-source: https://deb.debian.org/debian/
|
rootfs-source: https://deb.debian.org/debian/
|
||||||
gxde-codename: bixie
|
gxde-codename: bixie
|
||||||
gxde-codename-upload: tianlu
|
gxde-codename-upload: tianlu
|
||||||
|
|
||||||
call-loong64-tianlu:
|
|
||||||
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
display-name: loong64-tianlu
|
|
||||||
arch: loong64
|
|
||||||
rootfs-codename: sid
|
|
||||||
rootfs-source: https://deb.debian.org/debian-ports/
|
|
||||||
gxde-codename: bixie
|
|
||||||
gxde-codename-upload: tianlu
|
|
||||||
|
|
||||||
call-riscv64-tianlu:
|
|
||||||
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
display-name: riscv64-tianlu
|
|
||||||
arch: riscv64
|
|
||||||
rootfs-codename: sid
|
|
||||||
rootfs-source: https://deb.debian.org/debian/
|
|
||||||
gxde-codename: bixie
|
|
||||||
gxde-codename-upload: tianlu
|
|
||||||
|
|||||||
@@ -22,6 +22,17 @@ env:
|
|||||||
BOTTLEPATH: system-bottle
|
BOTTLEPATH: system-bottle
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
call-i386-zhuangzhuang:
|
||||||
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
display-name: i386-zhuangzhuang
|
||||||
|
arch: i386
|
||||||
|
rootfs-codename: trixie
|
||||||
|
rootfs-source: https://deb.debian.org/debian/
|
||||||
|
gxde-codename: lizhi
|
||||||
|
gxde-codename-upload: zhuangzhuang
|
||||||
|
|
||||||
call-amd64-zhuangzhuang:
|
call-amd64-zhuangzhuang:
|
||||||
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
@@ -44,16 +55,7 @@ jobs:
|
|||||||
gxde-codename: lizhi
|
gxde-codename: lizhi
|
||||||
gxde-codename-upload: zhuangzhuang
|
gxde-codename-upload: zhuangzhuang
|
||||||
|
|
||||||
call-mips64el-zhuangzhuang:
|
|
||||||
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
display-name: mips64el-zhuangzhuang
|
|
||||||
arch: mips64el
|
|
||||||
rootfs-codename: trixie
|
|
||||||
rootfs-source: https://deb.debian.org/debian/
|
|
||||||
gxde-codename: lizhi
|
|
||||||
gxde-codename-upload: zhuangzhuang
|
|
||||||
|
|
||||||
call-riscv64-zhuangzhuang:
|
call-riscv64-zhuangzhuang:
|
||||||
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-base.yml@master
|
||||||
|
|||||||
@@ -26,10 +26,31 @@ jobs:
|
|||||||
uses: GXDE-OS/GXDE/.github/workflows/building-deb-zhuangzhuang.yml@master
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-zhuangzhuang.yml@master
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
call-meimei:
|
call-hetao:
|
||||||
uses: GXDE-OS/GXDE/.github/workflows/building-deb-meimei.yml@master
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-hetao.yml@master
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
call-tianlu:
|
call-tianlu:
|
||||||
uses: GXDE-OS/GXDE/.github/workflows/building-deb-tianlu.yml@master
|
uses: GXDE-OS/GXDE/.github/workflows/building-deb-tianlu.yml@master
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
|
UploadOBS:
|
||||||
|
if: github.repository_owner == 'GXDE-OS'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Get REPOSITORY Name
|
||||||
|
run: |
|
||||||
|
echo "REPO_NAME=$(echo "$GITHUB_REPOSITORY" | cut -d'/' -f2)" >> $GITHUB_ENV
|
||||||
|
REPO_NAME=$(echo "$GITHUB_REPOSITORY" | cut -d'/' -f2)
|
||||||
|
mkdir /home/runner/work/$REPO_NAME/$REPO_NAME/debian-deb-output
|
||||||
|
|
||||||
|
- name: Upload to OBS
|
||||||
|
uses: LingmoOS/action-upload-to-obs@0.0.4
|
||||||
|
with:
|
||||||
|
remove-old-sources: true
|
||||||
|
obs-package-name: ${{ env.REPO_NAME }}
|
||||||
|
obs-project-name: 'home:gfdgd-xi'
|
||||||
|
obs-user-name: ${{ secrets.OBS_USERNAME }}
|
||||||
|
obs-password: ${{ secrets.OBS_PASSWORD }}
|
||||||
|
obs-instance-url: 'https://api.opensuse.org'
|
||||||
|
local-package-dir: './debian-deb-output'
|
||||||
@@ -18,6 +18,9 @@ function useDebianPort() {
|
|||||||
function useLoongnix() {
|
function useLoongnix() {
|
||||||
sudo cp .github/workflows/loongnix /usr/share/debootstrap/scripts/ -v
|
sudo cp .github/workflows/loongnix /usr/share/debootstrap/scripts/ -v
|
||||||
}
|
}
|
||||||
|
function useDeepin25() {
|
||||||
|
sudo cp .github/workflows/crimson /usr/share/debootstrap/scripts/ -v
|
||||||
|
}
|
||||||
|
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install debootstrap rename binfmt-support qemu-user qemu-user-static git -y
|
sudo apt install debootstrap rename binfmt-support qemu-user qemu-user-static git -y
|
||||||
@@ -32,7 +35,16 @@ else
|
|||||||
useLoongnix
|
useLoongnix
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
sudo debootstrap --no-check-gpg --include=git,gcc,make,debian-ports-archive-keyring,debian-archive-keyring,g++,dpkg-dev,qtbase5-dev,ca-certificates --arch=$1 $2 $bottlePath $5
|
if [[ $2 == "crimson" ]]; then
|
||||||
|
useDeepin25
|
||||||
|
sudo debootstrap --no-check-gpg --include=git,deepin-keyring,gcc,make,g++,dpkg-dev,qtbase5-dev,ca-certificates --arch=$1 $2 $bottlePath $5
|
||||||
|
else
|
||||||
|
sudo debootstrap --no-check-gpg --include=git,gcc,make,debian-ports-archive-keyring,debian-archive-keyring,g++,dpkg-dev,qtbase5-dev,ca-certificates --arch=$1 $2 $bottlePath $5
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $2 == "crimson" ]]; then
|
||||||
|
sudo sed -i "s/main/main commercial community/g" $bottlePath/etc/apt/sources.list
|
||||||
|
fi
|
||||||
#if [[ $? != 0 ]]; then
|
#if [[ $? != 0 ]]; then
|
||||||
# sudo debootstrap --foreign --include=git,gcc,make,debian-ports-archive-keyring,debian-archive-keyring,g++,dpkg-dev,qtbase5-dev,ca-certificates --arch=$1 $2 $bottlePath $5
|
# sudo debootstrap --foreign --include=git,gcc,make,debian-ports-archive-keyring,debian-archive-keyring,g++,dpkg-dev,qtbase5-dev,ca-certificates --arch=$1 $2 $bottlePath $5
|
||||||
#fi
|
#fi
|
||||||
@@ -44,7 +56,7 @@ if [[ $? != 0 ]] && [[ $1 == loong64 ]] && [[ $2 != "loongnix" ]]; then
|
|||||||
sudo mv squashfs-root $bottlePath -v
|
sudo mv squashfs-root $bottlePath -v
|
||||||
fi
|
fi
|
||||||
sudo bash .github/workflows/pardus-chroot $bottlePath
|
sudo bash .github/workflows/pardus-chroot $bottlePath
|
||||||
if [[ $6 == "backport" ]]; then
|
if [[ $7 == "backport" ]]; then
|
||||||
sudo cp -rv .github/workflows/debian-backports.list $bottlePath/etc/apt/sources.list.d
|
sudo cp -rv .github/workflows/debian-backports.list $bottlePath/etc/apt/sources.list.d
|
||||||
sudo mkdir -p $bottlePath/etc/apt/preferences.d/
|
sudo mkdir -p $bottlePath/etc/apt/preferences.d/
|
||||||
sudo cp -rv .github/workflows/90bookworm-backports $bottlePath/etc/apt/preferences.d/
|
sudo cp -rv .github/workflows/90bookworm-backports $bottlePath/etc/apt/preferences.d/
|
||||||
@@ -56,7 +68,7 @@ sudo chroot $bottlePath apt update
|
|||||||
sudo chroot $bottlePath apt full-upgrade -y
|
sudo chroot $bottlePath apt full-upgrade -y
|
||||||
sudo chroot $bottlePath apt install git -y
|
sudo chroot $bottlePath apt install git -y
|
||||||
sudo chroot $bottlePath git clone $3 #--depth=1
|
sudo chroot $bottlePath git clone $3 #--depth=1
|
||||||
sudo chroot $bottlePath git clone $4 #--depth=1
|
sudo chroot $bottlePath git clone $4 -b $6 #--depth=1
|
||||||
sudo mv $bottlePath/$(basename $3)/.github/workflows/* $bottlePath/$(basename $4)/.github/workflows -v
|
sudo mv $bottlePath/$(basename $3)/.github/workflows/* $bottlePath/$(basename $4)/.github/workflows -v
|
||||||
# 修改版本号
|
# 修改版本号
|
||||||
#sudo sed -i "s/) UNRELEASED; urgency=medium/~$2) UNRELEASED; urgency=medium/g" $bottlePath/deep-wine-runner-qemu-system/debian/changelog
|
#sudo sed -i "s/) UNRELEASED; urgency=medium/~$2) UNRELEASED; urgency=medium/g" $bottlePath/deep-wine-runner-qemu-system/debian/changelog
|
||||||
@@ -67,6 +79,9 @@ case $2 in
|
|||||||
"loongnix")
|
"loongnix")
|
||||||
env gitPath=$(basename $4) bash .github/workflows/run-command-in-chroot.sh .github/workflows/configure-building-enviroment.sh meimei
|
env gitPath=$(basename $4) bash .github/workflows/run-command-in-chroot.sh .github/workflows/configure-building-enviroment.sh meimei
|
||||||
;;
|
;;
|
||||||
|
"crimson")
|
||||||
|
env gitPath=$(basename $4) bash .github/workflows/run-command-in-chroot.sh .github/workflows/configure-building-enviroment.sh hetao
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
env gitPath=$(basename $4) bash .github/workflows/run-command-in-chroot.sh .github/workflows/configure-building-enviroment.sh
|
env gitPath=$(basename $4) bash .github/workflows/run-command-in-chroot.sh .github/workflows/configure-building-enviroment.sh
|
||||||
;;
|
;;
|
||||||
|
|||||||
@@ -22,6 +22,9 @@ export DEBIAN_FRONTEND=noninteractive # 防止卡 tzdate
|
|||||||
if [[ $1 == "" ]] || [[ $1 == "tianlu" ]]; then
|
if [[ $1 == "" ]] || [[ $1 == "tianlu" ]]; then
|
||||||
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/tianlu ./" >> /etc/apt/sources.list.d/gxde-os.list
|
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/tianlu ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||||
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/bixie ./" >> /etc/apt/sources.list.d/gxde-os.list
|
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/bixie ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||||
|
elif [[ $1 == "zhuangzhuang" ]];then
|
||||||
|
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/zhuangzhuang ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||||
|
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/lizhi ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||||
else
|
else
|
||||||
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/$1 ./" >> /etc/apt/sources.list.d/gxde-os.list
|
echo "deb [trusted=true] https://repo.gxde.org/gxde-os/$1 ./" >> /etc/apt/sources.list.d/gxde-os.list
|
||||||
fi
|
fi
|
||||||
@@ -38,7 +41,7 @@ do
|
|||||||
fi
|
fi
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
apt install dpkg-dev sudo debian-ports-archive-keyring debian-archive-keyring -y
|
apt install dpkg-dev sudo debian-ports-archive-keyring debian-archive-keyring devscripts -y
|
||||||
#neofetch
|
#neofetch
|
||||||
#if [[ `arch` != "x86_64" ]]; then
|
#if [[ `arch` != "x86_64" ]]; then
|
||||||
# apt source qemu
|
# apt source qemu
|
||||||
@@ -55,10 +58,13 @@ apt install dpkg-dev sudo debian-ports-archive-keyring debian-archive-keyring -y
|
|||||||
#apt build-dep qemu -y
|
#apt build-dep qemu -y
|
||||||
# 如果是 Debian10 就需要安装 Python3 的依赖
|
# 如果是 Debian10 就需要安装 Python3 的依赖
|
||||||
#apt build-dep python3.7 -y
|
#apt build-dep python3.7 -y
|
||||||
# 解包 deepin-desktop-base
|
# 解包 gxde-desktop-base
|
||||||
apt download deepin-desktop-base
|
apt download gxde-desktop-base
|
||||||
dpkg -x deepin-desktop-base_*.deb /
|
dpkg -x gxde-desktop-base_*.deb /
|
||||||
|
if [[ -f /etc/apt/sources.list.d/debian-backports.list ]]; then
|
||||||
|
dch --bpo ""
|
||||||
|
sed -i "s/~bpo/-bpo/g" debian/changelog
|
||||||
|
fi
|
||||||
for i in {1..5};
|
for i in {1..5};
|
||||||
do
|
do
|
||||||
apt build-dep . -y
|
apt build-dep . -y
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
mirror_style release
|
||||||
|
download_style apt
|
||||||
|
finddebs_style from-indices
|
||||||
|
variants - buildd fakechroot minbase
|
||||||
|
keyring /usr/share/keyrings/debian-archive-keyring.gpg
|
||||||
|
default_mirror https://community-packages.deepin.com/deepin/beige/
|
||||||
|
|
||||||
|
# include common settings
|
||||||
|
if [ -e "$DEBOOTSTRAP_DIR/scripts/debian-common" ]; then
|
||||||
|
. "$DEBOOTSTRAP_DIR/scripts/debian-common"
|
||||||
|
elif [ -e /debootstrap/debian-common ]; then
|
||||||
|
. /debootstrap/debian-common
|
||||||
|
elif [ -e "$DEBOOTSTRAP_DIR/debian-common" ]; then
|
||||||
|
. "$DEBOOTSTRAP_DIR/debian-common"
|
||||||
|
else
|
||||||
|
error 1 NOCOMMON "File not found: debian-common"
|
||||||
|
fi
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
|
deb https://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware
|
||||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
|
# deb-src https://deb.debian.org/debian/ bookworm-backports main contrib non-free non-free-firmware
|
||||||
+2
-1
@@ -1,8 +1,9 @@
|
|||||||
This file contains honored contributers of GXDE and GXDE OS. The list is in alphabetical order.
|
This file contains honored contributers of GXDE and GXDE OS. The list is in alphabetical order.
|
||||||
|
|
||||||
|
dependon <liuminghang0821@gmail.com>
|
||||||
elysia <c.elysia@foxmail.com>
|
elysia <c.elysia@foxmail.com>
|
||||||
gfdgd xi <3025613752@qq.com>
|
gfdgd xi <3025613752@qq.com>
|
||||||
qingyu <qingyuqingyu123@proton.me>
|
qingyu <qingyuqingyu123@proton.me>
|
||||||
shenmo <shenmo@spark-app.store>
|
shenmo <shenmo@spark-app.store>
|
||||||
yoyo <chowhound_xb@163.com>
|
yoyo <chowhound_xb@163.com>
|
||||||
zinface <zinface@163.com>
|
zinface <zinface@163.com>
|
||||||
|
|||||||
@@ -39,17 +39,17 @@ Discord: https://discord.gg/t5Uf2xYpvA
|
|||||||
> Currently, ISO supports amd64, arm64
|
> Currently, ISO supports amd64, arm64
|
||||||
|
|
||||||
|
|
||||||
Please check https://www.gxde.org/en/install/
|
Please check https://www.gxde.top/en/install/
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
## Other Projects
|
## Other Projects
|
||||||
@@ -75,9 +75,8 @@ Gitee: http://gitee.com/GXDE-OS
|
|||||||
Github: http://github.com/GXDE-OS
|
Github: http://github.com/GXDE-OS
|
||||||
Gitcode: https://gitcode.com/GXDE-OS
|
Gitcode: https://gitcode.com/GXDE-OS
|
||||||
|
|
||||||
## Buy a Cup of Tea for the Author
|
## Donate
|
||||||
If you find it helpful, you can buy the author a cup of tea.
|
https://donate.deepinos.org.cn/donate/index.html#
|
||||||
<img src="Icon/QR/Wechat.png" width="250" />
|
|
||||||
|
|
||||||
### Advertisement
|
### Advertisement
|
||||||
Scan to receive a payment red envelope from the Alipay official event!
|
Scan to receive a payment red envelope from the Alipay official event!
|
||||||
|
|||||||
+10
-9
@@ -2,6 +2,8 @@
|
|||||||
<hr>
|
<hr>
|
||||||
<a href='https://gitee.com/GXDE-OS/GXDE/stargazers'><img src='https://gitee.com/GXDE-OS/GXDE/badge/star.svg?theme=dark' alt='star'></img></a>
|
<a href='https://gitee.com/GXDE-OS/GXDE/stargazers'><img src='https://gitee.com/GXDE-OS/GXDE/badge/star.svg?theme=dark' alt='star'></img></a>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
**[English](/README.md)**
|
**[English](/README.md)**
|
||||||
|
|
||||||
@@ -37,17 +39,17 @@ Discord:https://discord.gg/t5Uf2xYpvA
|
|||||||
|
|
||||||
## 安装
|
## 安装
|
||||||
|
|
||||||
请查看 https://www.gxde.org/install/install
|
请查看 https://www.gxde.top/install/install
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
## 其它项目
|
## 其它项目
|
||||||
@@ -72,9 +74,8 @@ Gitee:http://gitee.com/GXDE-OS
|
|||||||
Github:http://github.com/GXDE-OS
|
Github:http://github.com/GXDE-OS
|
||||||
Gitcode:https://gitcode.com/GXDE-OS
|
Gitcode:https://gitcode.com/GXDE-OS
|
||||||
|
|
||||||
## 请作者喝杯茶
|
## 捐赠
|
||||||
如果您觉得对你有帮助,可以请作者喝杯茶
|
https://donate.deepinos.org.cn/donate/index.html#
|
||||||
<img src="Icon/QR/Wechat.png" width="250" />
|
|
||||||
|
|
||||||
### 广告
|
### 广告
|
||||||
支付宝官方活动,扫描获得支付红包!
|
支付宝官方活动,扫描获得支付红包!
|
||||||
|
|||||||
Vendored
+14
-2
@@ -1,9 +1,21 @@
|
|||||||
gxde (2025.03.09) UNRELEASED; urgency=medium
|
gxde (2025.06.22) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
* 新增 remmina 以解决远程问题
|
* 新增 remmina 以解决远程问题
|
||||||
* 改为安装 dde-printer
|
* 改为安装 dde-printer
|
||||||
|
* 新增屏保
|
||||||
|
* 修复安装 gxde-desktop-android 会自动安装 gxde-desktop-extra 的问题
|
||||||
|
* 新增推荐依赖:龙芯应用合作社(仅限:mips64el loongarch64 loong64)
|
||||||
|
* 移除推荐依赖:plank
|
||||||
|
* 修复小小电脑无法正常更新 gxde-desktop-android 的问题
|
||||||
|
* 修改 dde-control-center、dde-launcher、dde-dock、deepin-desktop-base 为 gxde-control-center、gxde-launcher、gxde-dock、gxde-desktop-base
|
||||||
|
* 修改 dde-session-ui、dde-file-manager、dde-desktop 为
|
||||||
|
gxde-session-ui、gxde-file-manager、gxde-desktop-panel
|
||||||
|
* startdde=>startgxde
|
||||||
|
* dde-kwin --> gxde-wm-shim
|
||||||
|
* 新增推荐依赖 gxde-desktop
|
||||||
|
* gxde-introduction 由 Depends 设置为 Recommends
|
||||||
|
|
||||||
-- gfdgd_xi <3025613752@qq.com> Mon, 10 Feb 2025 17:14:15 +0800
|
-- gfdgd_xi <3025613752@qq.com> Sun, 22 Jun 2025 09:59:58 +0800
|
||||||
|
|
||||||
gxde (2024.10.20) UNRELEASED; urgency=medium
|
gxde (2024.10.20) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
|||||||
Vendored
+19
-20
@@ -27,6 +27,7 @@ Recommends: ${misc:Depends},
|
|||||||
gxde-dict,
|
gxde-dict,
|
||||||
gxde-system-assistant,
|
gxde-system-assistant,
|
||||||
spark-store | aptss,
|
spark-store | aptss,
|
||||||
|
loongsonapplication,
|
||||||
gxde-boot-maker,
|
gxde-boot-maker,
|
||||||
deepin-clone,
|
deepin-clone,
|
||||||
dde-printer | system-config-printer,
|
dde-printer | system-config-printer,
|
||||||
@@ -37,8 +38,11 @@ Recommends: ${misc:Depends},
|
|||||||
x11vnc,
|
x11vnc,
|
||||||
com.github.minesweep,
|
com.github.minesweep,
|
||||||
2048-qt,
|
2048-qt,
|
||||||
papirus-icon-theme,
|
papirus-icon-theme | gxde-desktop-android,
|
||||||
remmina
|
remmina,
|
||||||
|
screensaver-pp,
|
||||||
|
gxde-time-screensaver,
|
||||||
|
gxde-desktop,
|
||||||
Description: GXDE New Desktop Environment Extra - Next
|
Description: GXDE New Desktop Environment Extra - Next
|
||||||
This is a meta package depends GXDE New Desktop Envrionment Extra.
|
This is a meta package depends GXDE New Desktop Envrionment Extra.
|
||||||
.
|
.
|
||||||
@@ -50,7 +54,6 @@ Depends:
|
|||||||
${misc:Depends},
|
${misc:Depends},
|
||||||
gxde-daemon,
|
gxde-daemon,
|
||||||
gxde-desktop,
|
gxde-desktop,
|
||||||
gxde-calculator,
|
|
||||||
gxde-terminal,
|
gxde-terminal,
|
||||||
gxde-deb-installer,
|
gxde-deb-installer,
|
||||||
gxde-editor,
|
gxde-editor,
|
||||||
@@ -62,8 +65,8 @@ Depends:
|
|||||||
gxde-quick-hash,
|
gxde-quick-hash,
|
||||||
spark-store | aptss,
|
spark-store | aptss,
|
||||||
deepin-system-monitor,
|
deepin-system-monitor,
|
||||||
dde-control-center,
|
gxde-control-center,
|
||||||
dde-file-manager,
|
gxde-file-manager,
|
||||||
Conflicts:
|
Conflicts:
|
||||||
plymouth-theme-gxde-logo,
|
plymouth-theme-gxde-logo,
|
||||||
linux-kernel-gxde-i386,
|
linux-kernel-gxde-i386,
|
||||||
@@ -86,28 +89,28 @@ Description: GXDE New Desktop Environment For PRoot - Next
|
|||||||
Package: gxde-desktop
|
Package: gxde-desktop
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: ${misc:Depends},
|
Depends: ${misc:Depends},
|
||||||
deepin-desktop-base,
|
gxde-desktop-base,
|
||||||
dde-desktop,
|
gxde-desktop-panel,
|
||||||
dde-dock,
|
gxde-dock,
|
||||||
dde-control-center(>> 2.90.5),
|
gxde-control-center,
|
||||||
dde-launcher,
|
gxde-launcher,
|
||||||
startdde,
|
startgxde,
|
||||||
dde-session-ui,
|
gxde-session-ui,
|
||||||
gxde-artwork,
|
gxde-artwork,
|
||||||
dde-file-manager,
|
gxde-file-manager,
|
||||||
dde-qt5integration,
|
dde-qt5integration,
|
||||||
eject,
|
eject,
|
||||||
gxde-wallpapers,
|
gxde-wallpapers,
|
||||||
fonts-noto,
|
fonts-noto,
|
||||||
dde-kwin | gxde-kwin,
|
gxde-wm-shim | gxde-kwin-neo,
|
||||||
deepin-screensaver,
|
deepin-screensaver,
|
||||||
gxde-default-settings,
|
gxde-default-settings,
|
||||||
gxde-shell-tools,
|
gxde-shell-tools,
|
||||||
gxde-compressor,
|
gxde-compressor,
|
||||||
gxde-introduction,
|
|
||||||
Recommends:
|
Recommends:
|
||||||
gxde-desktop-extra,
|
gxde-desktop-extra | gxde-desktop-android,
|
||||||
gxde-editor,
|
gxde-editor,
|
||||||
|
gxde-introduction,
|
||||||
pppoe,
|
pppoe,
|
||||||
gvfs-fuse,
|
gvfs-fuse,
|
||||||
smbclient,
|
smbclient,
|
||||||
@@ -143,13 +146,11 @@ Recommends:
|
|||||||
x-display-manager,
|
x-display-manager,
|
||||||
gxde-image-viewer,
|
gxde-image-viewer,
|
||||||
gxde-calendar,
|
gxde-calendar,
|
||||||
gxde-calculator,
|
|
||||||
gxde-voice-recorder,
|
gxde-voice-recorder,
|
||||||
deepin-screen-recorder,
|
deepin-screen-recorder,
|
||||||
warm-sched,
|
warm-sched,
|
||||||
deepin-camera,
|
deepin-camera,
|
||||||
gxde-top-panel,
|
gxde-top-panel,
|
||||||
plank,
|
|
||||||
fcitx5-material-color,
|
fcitx5-material-color,
|
||||||
tela-grub2-themes,
|
tela-grub2-themes,
|
||||||
plymouth-theme-gxde-logo,
|
plymouth-theme-gxde-logo,
|
||||||
@@ -158,11 +159,9 @@ Recommends:
|
|||||||
fantascene-dynamic-wallpaper,
|
fantascene-dynamic-wallpaper,
|
||||||
x11vnc,
|
x11vnc,
|
||||||
Conflicts:
|
Conflicts:
|
||||||
dde-control-center(<< 2.90.5),
|
|
||||||
deepin-desktop-environment-desktop,
|
deepin-desktop-environment-desktop,
|
||||||
deepin-desktop-environment-dock,
|
deepin-desktop-environment-dock,
|
||||||
deepin-desktop-environment-launcher,
|
deepin-desktop-environment-launcher,
|
||||||
libdframeworkdbus2(>> 15)
|
|
||||||
Description: GXDE New Desktop Environment - Next
|
Description: GXDE New Desktop Environment - Next
|
||||||
This is a meta package depends GXDE New Desktop Envrionment.
|
This is a meta package depends GXDE New Desktop Envrionment.
|
||||||
.
|
.
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 39 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 5.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
Reference in New Issue
Block a user