This commit is contained in:
朱子楚\zhuzi 2023-03-25 11:49:12 +08:00
parent a1d8581768
commit 14ceb3a4c6
3 changed files with 12 additions and 16 deletions

View File

@ -30,13 +30,11 @@ jobs:
sudo xcode-select --print-path
sudo xcode-select --switch /Library/Developer/CommandLineTools
- name: Install Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v2
with:
version: ${{ matrix.qt_ver }}
modules: 'qtmultimedia qt5compat qtshadertools'
aqtversion: '==2.1.*'
arch: ${{ matrix.qt_arch }}
cached: 'false'
modules: 'qtmultimedia qt5compat qtshadertools'
- uses: actions/checkout@v2
with:
fetch-depth: 1
@ -48,11 +46,11 @@ jobs:
- name: package
run: |
# 拷贝依赖
macdeployqt bin/release/${targetName}.app -qmldir=. -verbose=1 -dmg
macdeployqt bin/release/${targetName}.app -qmldir=. -plugin=qt -verbose=1 -dmg
# 上传artifacts
- uses: actions/upload-artifact@v2
with:
name: ${{ env.targetName }}_${{ matrix.os }}_${{matrix.qt_ver}}.zip
name: ${{ env.targetName }}_${{ matrix.os }}_${{matrix.qt_ver}}
path: bin/release/${{ env.targetName }}.app
# tag 上传Release
- name: uploadRelease

View File

@ -30,15 +30,13 @@ jobs:
targetName: example
steps:
- name: Install Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v2
with:
version: ${{ matrix.qt_ver }}
cached: 'false'
aqtversion: '==2.1.*'
arch: ${{ matrix.qt_arch }}
modules: 'qtmultimedia qt5compat qtshadertools'
- name: ubuntu install GL library
run: sudo apt-get install -y libglew-dev libglfw3-dev qml-module-qtquick-controls qml-module-qtquick-controls2
run: sudo apt-get install -y libglew-dev libglfw3-dev qml-module-qtquick-controls qml-module-qtquick-controls2 qml-module-qtmultimedia
- uses: actions/checkout@v2
with:
fetch-depth: 1
@ -54,9 +52,9 @@ jobs:
- name: package
run: |
# make sure Qt plugin finds QML sources so it can deploy the imported files
export QML_SOURCES_PATHS=./
export QML_SOURCES_PATHS=src
# 拷贝依赖
linuxdeploy-x86_64.AppImage --output=appimage --create-desktop-file --icon-file=${targetName}.svg --executable=bin/release/${targetName} --appdir bin/release/
linuxdeploy-x86_64.AppImage --plugin=qt --output=appimage --create-desktop-file --icon-file=${targetName}.svg --executable=bin/release/${targetName} --appdir bin/release/
mv ${{ env.targetName }}-*.AppImage ${{ env.targetName }}.AppImage
# 上传artifacts
- uses: actions/upload-artifact@v2

View File

@ -34,14 +34,14 @@ jobs:
# 安装Qt
- name: Install Qt
# 使用外部action。这个action专门用来安装Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v2
with:
# Version of Qt to install
version: ${{ matrix.qt_ver }}
modules: 'qtmultimedia qt5compat qtshadertools'
aqtversion: '==2.1.*'
arch: ${{ matrix.qt_arch }}
cached: 'false'
cached: 'false'
aqtversion: '==2.0.5'
modules: 'qtmultimedia qt5compat qtshadertools'
# 拉取代码
- uses: actions/checkout@v2
with: