summaryrefslogtreecommitdiffstats
path: root/coin/instructions/cmake_cross_compilation.yaml
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2019-11-14 11:51:11 +0100
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-02-07 10:05:51 +0000
commitd445112cc03d730d659d1eeaa84d963f85731ac5 (patch)
tree31acd09220502ff155f04a51deae539649b3467e /coin/instructions/cmake_cross_compilation.yaml
parentb06f08646013bf3042fa86aa2343447ca8b57cef (diff)
cmake: upload artifact for qtbase android build and etc
Task-number: QTBUG-78945 Change-Id: I3361e63ed4830ac0e1ebb9d4b9495df09c45f476 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'coin/instructions/cmake_cross_compilation.yaml')
-rw-r--r--coin/instructions/cmake_cross_compilation.yaml58
1 files changed, 0 insertions, 58 deletions
diff --git a/coin/instructions/cmake_cross_compilation.yaml b/coin/instructions/cmake_cross_compilation.yaml
deleted file mode 100644
index 2037a4d331..0000000000
--- a/coin/instructions/cmake_cross_compilation.yaml
+++ /dev/null
@@ -1,58 +0,0 @@
-type: Group
-instructions:
- - type: MakeDirectory
- directory: .git
- - type: MakeDirectory
- directory: build
- - type: ChangeDirectory
- directory: "{{.BuildDir}}/build"
- - type: MakeDirectory
- directory: host
- - type: MakeDirectory
- directory: target
- - type: SetBuildDirectory
- directory: "{{.SourceDir}}/build/host"
- - type: ChangeDirectory
- directory: "{{.BuildDir}}"
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake {{.Env.CONFIGURE_ARGS}} -DCMAKE_INSTALL_PREFIX:PATH={{.InstallDir}}/host -DBUILD_TESTING=OFF {{.SourceDir}}"
- executeCommandArgumentSplitingBehavior: SplitAfterVariableSubstitution
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to call cmake. Contact Liang then.
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --build . --parallel"
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to build sources. In the current state bug can be everywhere. Contact Liang first.
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package.
- - type: SetBuildDirectory
- directory: "{{.SourceDir}}/build/target"
- - type: ChangeDirectory
- directory: "{{.BuildDir}}"
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake {{.Env.TARGET_CONFIGURE_ARGS}} -DQT_HOST_PATH={{.InstallDir}}/host -DCMAKE_INSTALL_PREFIX:PATH={{.InstallDir}}/target -DBUILD_TESTING=OFF {{.SourceDir}}"
- executeCommandArgumentSplitingBehavior: SplitAfterVariableSubstitution
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to call cmake. Contact Liang then.
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --build . --parallel"
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to build sources. In the current state bug can be everywhere. Contact Liang first.
- - type: ExecuteCommand
- command: "{{.Env.ENV_PREFIX}} cmake --install ."
- maxTimeInSeconds: 6000
- maxTimeBetweenOutput: 1200
- userMessageOnFailure: >
- Failed to install package.