summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDimitrios Apostolou <jimis@qt.io>2020-06-30 14:29:43 +0200
committerDimitrios Apostolou <jimis@qt.io>2020-06-30 15:21:32 +0200
commit60666ed2fa20fa64ca9ad02c2124876a1d11b42a (patch)
treeeec1a8f6bdd210584fc146cb3fc810c023a7b99d /.github
parent013b04a381947958facca75465914c5b925480f7 (diff)
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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ninja-build.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/ninja-build.yml b/.github/workflows/ninja-build.yml
index 5b28a8c5d3..428cd13429 100644
--- a/.github/workflows/ninja-build.yml
+++ b/.github/workflows/ninja-build.yml
@@ -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