summaryrefslogtreecommitdiffstats
path: root/coin/instructions/call_host_install.yaml
blob: 1d923fa8f5358ace5ffc071c24b351dfe1435c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
type: Group
instructions:
  - type: ExecuteCommand
    command: "{{.Env.ENV_PREFIX}} cmake -DQT_BUILD_DIR={{.BuildDir}} -P {{.Env.COIN_CMAKE_BUILD_LIBEXEC_DIR}}{{.Env.CI_PATH_SEP}}qt-cmake-private-install.cmake"
    executeCommandArgumentSplitingBehavior: SplitAfterVariableSubstitution
    maxTimeInSeconds: 6000
    maxTimeBetweenOutput: 1200
    enable_if:
      condition: runtime
      env_var: TESTED_MODULE_COIN
      contains_value: qtbase
    userMessageOnFailure: >
      Failed to install package.
  - type: ExecuteCommand
    command: "{{.Env.ENV_PREFIX}} cmake -DQT_BUILD_DIR={{.BuildDir}} -P {{.Env.COIN_CMAKE_INSTALL_LIBEXEC_DIR}}{{.Env.CI_PATH_SEP}}qt-cmake-private-install.cmake"
    executeCommandArgumentSplitingBehavior: SplitAfterVariableSubstitution
    maxTimeInSeconds: 6000
    maxTimeBetweenOutput: 1200
    disable_if:
      condition: runtime
      env_var: TESTED_MODULE_COIN
      contains_value: qtbase
    userMessageOnFailure: >
      Failed to install package.