Update configure flags to the last fixes

The following options now work:
  -ccache
  -nomake examples
  -nomake tests
  -no-pch

Furthermore -no-optimize-debug is not used in the CMake build,
all -debug builds are without optimizations.

Change-Id: I53abd62083f3bb61f15efe79729cf541515c0a4c
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Dimitrios Apostolou 2020-06-30 14:29:43 +02:00
parent 013b04a381
commit 60666ed2fa

View File

@ -95,12 +95,11 @@ jobs:
run: mkdir build
- name: configure
working-directory: build
run: ../configure -cmake -opensource -confirm-license \
\ -debug -no-optimize-debug -nomake tests -nomake examples \
run: ../configure -cmake -opensource -confirm-license -ccache -no-pch \
\ -debug -nomake tests -nomake examples \
\ -no-harfbuzz -no-iconv \
\ -system-pcre -system-zlib -system-freetype -system-libpng -system-libjpeg \
\ -- -DQT_NO_MAKE_TESTS=ON -DQT_NO_MAKE_EXAMPLES=ON \
\ -DQT_USE_CCACHE=ON -DBUILD_WITH_PCH=OFF \
\ -- \
\ ${{ matrix.cmake_flags }}
- name: ninja
working-directory: build