Skip to content

Commit

Permalink
CI: add Windows x64 and Linux's *.deb build
Browse files Browse the repository at this point in the history
  • Loading branch information
XMuli committed Mar 12, 2023
1 parent f31b329 commit aaabce2
Show file tree
Hide file tree
Showing 2 changed files with 136 additions and 4 deletions.
132 changes: 132 additions & 0 deletions .github/workflows/LinuxDeb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
name: LinuxDeb
on:
push:
paths-ignore:
# - '**'
- 'README.md'
pull_request:
paths-ignore:
- 'README.md'
jobs:
build:
name: Build
# 运行平台, ubuntu-latest 目前是 Ubuntu 20.04
# 参考文档 https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md
runs-on: ${{ matrix.os }}
strategy:
matrix: # 矩阵配置
qt_ver: [5.15.2] # 参考: https://mirrors.cloud.tencent.com/qt/online/qtsdkrepository/linux_x64/desktop/qt5_5152
qt_target: [desktop]
qt_arch: [gcc_64]
arch: [amd64] # arm64
os: [ubuntu-20.04]
env:
targetName: Flipped
targetLowerName: flipped
targetOS: debian

steps:
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ matrix.qt_ver }}
arch: ${{ matrix.qt_arch }}
set-env: true

- uses: actions/checkout@v2
with:
fetch-depth: 1

- name: pull 3rdparty code
run: |
cd ${{github.workspace}}
git submodule init
git submodule update
- name: NameVersion
id: NameVersion
if: startsWith(github.event.ref, 'refs/tags/')
shell: pwsh
run: |
$systemInfo="${{ env.targetOS }}-${{ matrix.arch }}-x64"
$productVersion="${{ github.ref }}".substring("refs/tags/v".length)
# $productName="${{ env.targetName }}-$productVersion-beta-$systemInfo"
$productDebName="${{ env.targetLowerName }}-$productVersion"
echo "systemInfo=$systemInfo" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "productVersion=$productVersion" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# echo "productName=$productName" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "productDebName=$productDebName" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
# 安装一些包 # libqt5*-dev
# sudo apt install wget tar dh-make debmake lintian cmake qtbase5-dev qt5-default libqt5x11extras5-dev libqt5svg5-dev libqt5*-dev
- name: AptInstallTool
id: AptInstallTool
if: startsWith(github.event.ref, 'refs/tags/')
shell: bash
run: |
sudo apt clean
sudo apt update
sudo apt install wget tar dh-make debmake lintian cmake devscripts qtbase5-dev qt5-default libqt5*-dev
# tag 打包 .deb,无动态库
- name: DebPackage
id: DebPackage
if: startsWith(github.event.ref, 'refs/tags/')
shell: bash
run: |
echo "-------------- debug 0 --------------"
pwd
echo $PATH
cd ..
cp -r ${{ env.targetName }} ${{ env.productDebName }}
tar -cvzf ${{ env.productDebName }}.tar.gz ${{ env.productDebName }}
echo "-------------- debug 1 --------------"
ls -al
cat >> ~/.bashrc <<EOF
DEBEMAIL="[email protected]"
DEBFULLNAME="XMuli"
export DEBEMAIL DEBFULLNAME
EOF
. ~/.bashrc
echo "-------------- debug 2 --------------"
cat ~/.bashrc
cd ${{ env.productDebName }}
pwd
ls -al
pwd
ls -al ..
# dh_make -f ../${{ env.productDebName }}.tar.gz -s -c mit -y
# https://askubuntu.com/questions/675154/dpkg-buildpackage-dpkg-source-no-upstream-tarball-found
# dpkg-buildpackage -us -uc
dpkg-buildpackage -b -rfakeroot -us -uc
echo "-------------- debug 3 --------------"
pwd
ls -al
pwd
ls -al ..
# tag上传Release
- name: uploadRelease
if: startsWith(github.event.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.upload_release }}
with:
draft: false
prerelease: false
files: |
../*.deb
tag: ${{ github.ref }}
overwrite: true
8 changes: 4 additions & 4 deletions .github/workflows/Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
qt_arch: win32_msvc2019
msvc_arch: x86
qt_arch_install: msvc2019
# - qt_ver: 5.15.2
# qt_arch: win64_msvc2019_64
# msvc_arch: x64
# qt_arch_install: msvc2019_64
- qt_ver: 5.15.2
qt_arch: win64_msvc2019_64
msvc_arch: x64
qt_arch_install: msvc2019_64
env:
targetName: Flipped
targetLowerName: flipped
Expand Down

0 comments on commit aaabce2

Please sign in to comment.