aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorCristian Adam <cristian.adam@qt.io>2020-02-05 19:38:18 +0100
committerAlessandro Portale <alessandro.portale@qt.io>2020-02-06 18:03:33 +0000
commit8d767a3a2139b710f97e3b14553aa98fdae1362f (patch)
treed00d83ca8fe20e4f0fc65bfb9c001f7003471060 /.github
parentdecb6866b91cb0023ed71f7a5186520a8ce20d03 (diff)
CMake Deployment: Remove Dependencies component
- Install will also copy the dependencies. - Made the dependencies search recursive, not just two steps - Moved install code to a script, not having to escape quotes and dollars Change-Id: I6c5fb19e4094e9dcd4b339d5b90be6e7c5055223 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_cmake.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml
index 4a504f70a7..7c86492849 100644
--- a/.github/workflows/build_cmake.yml
+++ b/.github/workflows/build_cmake.yml
@@ -365,9 +365,7 @@ jobs:
- name: Install 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
+ run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake --install build --prefix instdir --strip
- name: Install Devel
run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake --install build --prefix instdir-dev --component Devel