aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-05-11 15:26:09 +0000
committersaturneric <[email protected]>2024-05-11 15:26:09 +0000
commit22bbde3ae3bcd579c5c1463af41f9efee949fe2a (patch)
treea1adbeb38260783bf24d5602cea2ad220e4477f9
parentfix: downgrade to 6.5.3 on windows build and add qt5 build for linux platform (diff)
downloadGpgFrontend-22bbde3ae3bcd579c5c1463af41f9efee949fe2a.tar.gz
GpgFrontend-22bbde3ae3bcd579c5c1463af41f9efee949fe2a.zip
fix: solve some issues on ci build
-rw-r--r--.github/workflows/release-qt5.yml2
-rw-r--r--.github/workflows/release.yml1
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release-qt5.yml b/.github/workflows/release-qt5.yml
index 94357b62..1122c312 100644
--- a/.github/workflows/release-qt5.yml
+++ b/.github/workflows/release-qt5.yml
@@ -153,7 +153,7 @@ jobs:
- name: Build GpgFrontend (Linux)
# Build your GpgFrontend with the given configuration
run: |
- cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
+ cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_QT5_BUILD=ON
cmake --build ${{github.workspace}}/build --config {{$env.BUILD_TYPE}} -- -v
if: matrix.os == 'ubuntu-20.04'
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 73b296a3..01802a98 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -106,6 +106,7 @@ jobs:
wget https://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-qt6-base-6.5.3-1-any.pkg.tar.zst
wget https://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-qt6-5compat-6.5.3-1-any.pkg.tar.zst
wget https://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-qt6-svg-6.5.3-1-any.pkg.tar.zst
+ wget https://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-qt6-tools-6.5.3-1-any.pkg.tar.zst
pacman --noconfirm -U *.pkg.tar.zst
if: matrix.os == 'windows-2019'