aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorCristian Adam <cristian.adam@qt.io>2020-02-12 08:24:50 +0100
committerCristian Adam <cristian.adam@qt.io>2020-02-12 09:30:05 +0000
commiteed49de35b63fe120bbea0019b0e6cd62b5f3a8c (patch)
tree4b85b0e4e6303b0058f03bd1333930374e7c8cd8 /.github
parent6a23f644dceb48d36efe70b6a1e02df386ba7128 (diff)
CMake Build: Use install component Dependencies
Fixes: QTCREATORBUG-23593 Change-Id: If9861a0ee09f2ce12ac093c2fde600a77958723a Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_cmake.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml
index 1d2eeb5809..a8ff73315c 100644
--- a/.github/workflows/build_cmake.yml
+++ b/.github/workflows/build_cmake.yml
@@ -367,7 +367,9 @@ jobs:
- name: Install Strip
- run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake --install build --prefix instdir --strip
+ run: |
+ ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake --install build --prefix instdir --strip
+ ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake --install build --prefix instdir --component Dependencies
- name: Install Devel
run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake --install build --prefix instdir-dev --component Devel