summaryrefslogtreecommitdiffstats
path: root/coin
diff options
context:
space:
mode:
Diffstat (limited to 'coin')
-rw-r--r--coin/instructions/call_host_install.yaml9
-rw-r--r--coin/instructions/call_target_install.yaml9
-rw-r--r--coin/instructions/cmake_cross_compilation_module_build_instructions.yaml34
-rw-r--r--coin/instructions/cmake_cross_compilation_qtbase_build_instructions.yaml34
-rw-r--r--coin/instructions/cmake_module_build_instructions.yaml17
-rw-r--r--coin/instructions/cmake_qtbase_build_instructions.yaml17
6 files changed, 48 insertions, 72 deletions
diff --git a/coin/instructions/call_host_install.yaml b/coin/instructions/call_host_install.yaml
new file mode 100644
index 0000000000..4762763a1e
--- /dev/null
+++ b/coin/instructions/call_host_install.yaml
@@ -0,0 +1,9 @@
+type: Group
+instructions:
+ - type: ExecuteCommand
+ command: "{{.Env.ENV_PREFIX}} cmake -DQT_BUILD_DIR={{.BuildDir}} -P {{.Env.COIN_CMAKE_INSTALL_SCRIPT_PATH}}/bin/qt-cmake-private-install.cmake"
+ executeCommandArgumentSplitingBehavior: SplitAfterVariableSubstitution
+ maxTimeInSeconds: 6000
+ maxTimeBetweenOutput: 1200
+ userMessageOnFailure: >
+ Failed to install package.
diff --git a/coin/instructions/call_target_install.yaml b/coin/instructions/call_target_install.yaml
new file mode 100644
index 0000000000..0f45240101
--- /dev/null
+++ b/coin/instructions/call_target_install.yaml
@@ -0,0 +1,9 @@
+type: Group
+instructions:
+ - type: ExecuteCommand
+ command: "{{.Env.TARGET_ENV_PREFIX}} cmake -DQT_BUILD_DIR={{.BuildDir}} -P {{.Env.COIN_CMAKE_INSTALL_SCRIPT_PATH}}/bin/qt-cmake-private-install.cmake"
+ executeCommandArgumentSplitingBehavior: SplitAfterVariableSubstitution
+ maxTimeInSeconds: 6000
+ maxTimeBetweenOutput: 1200
+ userMessageOnFailure: >
+ Failed to install package.
diff --git a/coin/instructions/cmake_cross_compilation_module_build_instructions.yaml b/coin/instructions/cmake_cross_compilation_module_build_instructions.yaml
index 46273d3345..5d8f5e9c15 100644
--- a/coin/instructions/cmake_cross_compilation_module_build_instructions.yaml
+++ b/coin/instructions/cmake_cross_compilation_module_build_instructions.yaml
@@ -24,21 +24,14 @@ instructions:
maxTimeBetweenOutput: 1200
userMessageOnFailure: >
Failed to build sources. In the current state bug can be everywhere.
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package.
+ - type: EnvironmentVariable
+ variableName: COIN_CMAKE_INSTALL_SCRIPT_PATH
+ variableValue: "{{.InstallDir}}/host"
+ - !include "{{qt/qtbase}}/call_host_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: "{{.InstallRoot}}"
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package for archiving.
+ - !include "{{qt/qtbase}}/call_host_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: ""
@@ -56,21 +49,14 @@ instructions:
maxTimeBetweenOutput: 1200
userMessageOnFailure: >
Failed to build sources. In the current state bug can be everywhere.
- - type: ExecuteCommand
- command: "{{.Env.TARGET_ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package.
+ - type: EnvironmentVariable
+ variableName: COIN_CMAKE_INSTALL_SCRIPT_PATH
+ variableValue: "{{.InstallDir}}/target"
+ - !include "{{qt/qtbase}}/call_target_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: "{{.InstallRoot}}"
- - type: ExecuteCommand
- command: "{{.Env.TARGET_ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package for archiving.
+ - !include "{{qt/qtbase}}/call_target_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: ""
diff --git a/coin/instructions/cmake_cross_compilation_qtbase_build_instructions.yaml b/coin/instructions/cmake_cross_compilation_qtbase_build_instructions.yaml
index 5a14ee0b87..6a51bdc975 100644
--- a/coin/instructions/cmake_cross_compilation_qtbase_build_instructions.yaml
+++ b/coin/instructions/cmake_cross_compilation_qtbase_build_instructions.yaml
@@ -27,21 +27,14 @@ instructions:
maxTimeBetweenOutput: 1200
userMessageOnFailure: >
Failed to build sources. In the current state bug can be everywhere.
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package.
+ - type: EnvironmentVariable
+ variableName: COIN_CMAKE_INSTALL_SCRIPT_PATH
+ variableValue: "{{.BuildDir}}"
+ - !include "{{qt/qtbase}}/call_host_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: "{{.InstallRoot}}"
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package for archiving.
+ - !include "{{qt/qtbase}}/call_host_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: ""
@@ -62,21 +55,14 @@ instructions:
maxTimeBetweenOutput: 1200
userMessageOnFailure: >
Failed to build sources. In the current state bug can be everywhere.
- - type: ExecuteCommand
- command: "{{.Env.TARGET_ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package.
+ - type: EnvironmentVariable
+ variableName: COIN_CMAKE_INSTALL_SCRIPT_PATH
+ variableValue: "{{.BuildDir}}"
+ - !include "{{qt/qtbase}}/call_target_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: "{{.InstallRoot}}"
- - type: ExecuteCommand
- command: "{{.Env.TARGET_ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package for archiving.
+ - !include "{{qt/qtbase}}/call_target_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: ""
diff --git a/coin/instructions/cmake_module_build_instructions.yaml b/coin/instructions/cmake_module_build_instructions.yaml
index 02c1e7b2e3..b6c72bf23f 100644
--- a/coin/instructions/cmake_module_build_instructions.yaml
+++ b/coin/instructions/cmake_module_build_instructions.yaml
@@ -16,21 +16,14 @@ instructions:
maxTimeBetweenOutput: 1200
userMessageOnFailure: >
Failed to build sources. In the current state bug can be everywhere.
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package.
+ - type: EnvironmentVariable
+ variableName: COIN_CMAKE_INSTALL_SCRIPT_PATH
+ variableValue: "{{.InstallDir}}"
+ - !include "{{qt/qtbase}}/call_host_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: "{{.InstallRoot}}"
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package for archiving.
+ - !include "{{qt/qtbase}}/call_host_install.yaml"
- type: SignPackage
enable_if:
condition: property
diff --git a/coin/instructions/cmake_qtbase_build_instructions.yaml b/coin/instructions/cmake_qtbase_build_instructions.yaml
index fe85d1681f..89d95ab4b3 100644
--- a/coin/instructions/cmake_qtbase_build_instructions.yaml
+++ b/coin/instructions/cmake_qtbase_build_instructions.yaml
@@ -19,21 +19,14 @@ instructions:
maxTimeBetweenOutput: 1200
userMessageOnFailure: >
Failed to build sources. In the current state bug can be everywhere.
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package.
+ - type: EnvironmentVariable
+ variableName: COIN_CMAKE_INSTALL_SCRIPT_PATH
+ variableValue: "{{.BuildDir}}"
+ - !include "{{qt/qtbase}}/call_host_install.yaml"
- type: EnvironmentVariable
variableName: DESTDIR
variableValue: "{{.InstallRoot}}"
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package for archiving.
+ - !include "{{qt/qtbase}}/call_host_install.yaml"
- type: SignPackage
enable_if:
condition: property