Skip to content

Commit

Permalink
Merge pull request #1312 from kiwix/specify-qt5-ci-compilation
Browse files Browse the repository at this point in the history
Explicitly set Qt version to compile against
  • Loading branch information
kelson42 authored Jan 5, 2025
2 parents 8f00594 + 1c8a980 commit df4e3fb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,20 @@ jobs:
- target: jammy-qt5
image_variant: jammy
lib_postfix: '/x86_64-linux-gnu'
qt_version: 5
- target: noble-qt6.4
image_variant: noble
lib_postfix: '/x86_64-linux-gnu'
qt_version: 6
- target: oracular-qt6.6
image_variant: oracular
lib_postfix: '/x86_64-linux-gnu'
qt_version: 6
env:
HOME: /home/runner
runs-on: ubuntu-22.04
container:
image: ghcr.io/kiwix/kiwix-build_ci_${{matrix.image_variant}}:2024-12-18
image: ghcr.io/kiwix/kiwix-build_ci_${{matrix.image_variant}}:2025-01-05

steps:
- name: Install dependencies
Expand All @@ -89,5 +92,7 @@ jobs:
env:
PKG_CONFIG_PATH: "/home/runner/BUILD_linux-x86_64/INSTALL/lib/pkgconfig:/home/runner/BUILD_linux-x86_64/INSTALL/lib${{matrix.lib_postfix}}/pkgconfig"
run: |
export QT_SELECT=qt${{matrix.qt_version}}
qmake --version
qmake PREFIX=$HOME/BUILD_linux-x86_64/INSTALL
make

0 comments on commit df4e3fb

Please sign in to comment.