mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-09 08:26:34 +08:00
The upload for the documentation was missing. Pick-to: 6.0 Pick-to: dev Change-Id: I9f1df81ecee3bbf6dd1128d24ae4fd2717bb3dcb Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
54 lines
1.7 KiB
YAML
54 lines
1.7 KiB
YAML
version: 2
|
|
accept_configuration:
|
|
condition: property
|
|
property: features
|
|
not_contains_value: Disable
|
|
|
|
instructions:
|
|
Build:
|
|
- !include "{{qt/qtbase}}/prepare_building_env.yaml"
|
|
- type: MakeDirectory
|
|
directory: .git
|
|
- type: SetBuildDirectory
|
|
directory: "{{.SourceDir}}"
|
|
- type: ChangeDirectory
|
|
directory: "{{.BuildDir}}"
|
|
- type: ExecuteCommand
|
|
command: "{{.Env.ENV_PREFIX}} cmake {{.Env.CONFIGURE_ARGS}} -DCMAKE_INSTALL_PREFIX:PATH={{.InstallDir}} -DQT_BUILD_TESTS=OFF {{.SourceDir}}"
|
|
executeCommandArgumentSplitingBehavior: SplitAfterVariableSubstitution
|
|
maxTimeInSeconds: 6000
|
|
maxTimeBetweenOutput: 1200
|
|
userMessageOnFailure: >
|
|
Failed to call cmake.
|
|
|
|
- type: Group
|
|
instructions:
|
|
- type: ExecuteCommand
|
|
command: "{{.Env.ENV_PREFIX}} cmake --build . --target qttools/all --parallel -v"
|
|
maxTimeInSeconds: 12000
|
|
maxTimeBetweenOutput: 1200
|
|
userMessageOnFailure: >
|
|
Failed to build sources.
|
|
- type: ExecuteCommand
|
|
command: "{{.Env.ENV_PREFIX}} cmake --build . --target generate_docs -v"
|
|
maxTimeInSeconds: 12000
|
|
maxTimeBetweenOutput: 1200
|
|
userMessageOnFailure: >
|
|
Failed to generate docs.
|
|
- type: MakeDirectory
|
|
directory: "{{.BuildDir}}/qtbase/doc/global"
|
|
- type: UploadArtifact
|
|
archiveDirectory: '{{.BuildDir}}/doc'
|
|
transferType: UploadModuleDocumentation
|
|
maxTimeInSeconds: 1800
|
|
maxTimeBetweenOutput: 1800
|
|
enable_if:
|
|
condition: property
|
|
property: features
|
|
contains_value: "Documentation"
|
|
|
|
Test:
|
|
- type: EnvironmentVariable
|
|
variableName: Dummy
|
|
variableValue: dummy
|