Skip to content

Commit

Permalink
Add oracular to the build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlamar committed Dec 18, 2024
1 parent 8c8faaa commit bd73d0c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,23 @@ jobs:
matrix:
target:
- jammy-qt5
- noble-qt6
- noble-qt6.4
- oracular-qt6.6
include:
- target: jammy-qt5
image_variant: jammy
lib_postfix: '/x86_64-linux-gnu'
- target: noble-qt6
- target: noble-qt6.4
image_variant: noble
lib_postfix: '/x86_64-linux-gnu'
- target: oracular-qt6.6
image_variant: oracular
lib_postfix: '/x86_64-linux-gnu'
env:
HOME: /home/runner
runs-on: ubuntu-22.04
container:
image: ghcr.io/kiwix/kiwix-build_ci_${{matrix.image_variant}}:2024-12-17
image: ghcr.io/kiwix/kiwix-build_ci_${{matrix.image_variant}}:2024-12-18

steps:
- name: Install dependencies
Expand Down
8 changes: 8 additions & 0 deletions kiwix-desktop.pro
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ QMAKE_LFLAGS += -std=c++17

!win32 {
QMAKE_CXXFLAGS += -Werror
equals(QT_MAJOR_VERSION, 6):equals(QT_MINOR_VERSION, 6) {
# Fail the build on errors, except for 'template-id-cdtor' due to a problem with Qt headers.
# This can be removed when the Ubuntu package is fixed.
# See
# https://github.com/RfidResearchGroup/proxmark3/issues/2382
# https://bugreports.qt.io/browse/QTBUG-126989
QMAKE_CXXFLAGS += -Wno-error=template-id-cdtor
}
}

!win32:!static {
Expand Down

0 comments on commit bd73d0c

Please sign in to comment.