summaryrefslogtreecommitdiffstats
path: root/coin/instructions/make_instructions.yaml
blob: 0eaf2bfd21de5e1c5ac70ec584a9de2cf536ab92 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
type: Group
instructions:
  - type: Group
    instructions:
      - type: ExecuteCommand
        command: Mingw32-make
        maxTimeInSeconds: 36000
        maxTimeBetweenOutput: 3600
        userMessageOnFailure: "Failed to run make, check logs."
      - type: ExecuteCommand
        command: "Mingw32-make -j1 install INSTALL_ROOT={{.InstallRoot}}"
        maxTimeInSeconds: 1800
        maxTimeBetweenOutput: 600
        userMessageOnFailure: "Failed to run make install, check logs."
    enable_if:
      condition: and
      conditions:
        - condition: property
          property: host.os
          equals_value: Windows
        - condition: property
          property: target.compiler
          in_values: [Mingw53, Mingw73, Clang]

  - type: Group
    instructions:
      - type: ExecuteCommand
        command: make
        maxTimeInSeconds: 36000
        maxTimeBetweenOutput: 3600
        userMessageOnFailure: "Failed to run make, check logs."
      - type: ExecuteCommand
        command: ['make', 'html_docs']
        maxTimeInSeconds: 36000
        maxTimeBetweenOutput: 3600
        userMessageOnFailure: 'Could not build documentation.'
      - type: UploadArtifact
        archiveDirectory: '{{.BuildDir}}/doc'
        transferType: UploadModuleDocumentation
        maxTimeInSeconds: 1800
        maxTimeBetweenOutput: 1800
      - type: ExecuteCommand
        command: "make install INSTALL_ROOT={{.InstallRoot}}"
        maxTimeInSeconds: 1800
        maxTimeBetweenOutput: 600
        userMessageOnFailure: "Failed to run install, check logs."
    enable_if:
      condition: and
      conditions:
        - condition: property
          property: host.os
          not_equals_value: Windows
        - condition: property
          property: target.compiler
          in_values: [GCC, Clang, ICC_17, ICC_18]

  - type: Group
    instructions:
      - type: ExecuteCommand
        command: "jom"
        maxTimeInSeconds: 36000
        maxTimeBetweenOutput: 3600
        userMessageOnFailure: "Failed to run jom/make, check logs."
      - !include "{{installer-framework/installer-framework}}/make_win_docs_instructions.yaml"
      - type: ExecuteCommand
        command: "nmake install INSTALL_ROOT={{.InstallRoot}}"
        maxTimeInSeconds: 1800
        maxTimeBetweenOutput: 600
        userMessageOnFailure: "Failed to run nmake install, check logs."
    enable_if:
      condition: property
      property: target.compiler
      in_values: [MSVC2013, MSVC2015, MSVC2017, MSVC2019]

  - type: Group
    instructions:
      - type: ChangeDirectory
        directory: "{{.InstallRoot}}/{{.AgentWorkingDir}}"
      - type: ExecuteCommand
        command: "python3 {{.SourceDir}}/coin/create_ifw_installer.py --src-dir {{.SourceDir}} --bld-dir {{.SourceDir}} --target-dir {{.SourceDir}}/IfwInstaller --target-name QtInstallerFramework-linux-x64-4.2.0.run"
        maxTimeInSeconds: 36000
        maxTimeBetweenOutput: 3600
        userMessageOnFailure: "Failed to create ifw installer."
      - type: Rename
        sourcePath: "{{.SourceDir}}/IfwInstaller/QtInstallerFramework-linux-x64-4.2.0.run"
        targetPath: "{{.InstallRoot}}/{{.AgentWorkingDir}}/QtInstallerFramework-linux-x64-4.2.0.run"
        userMessageOnFailure: "Failed to copy installer."
    enable_if:
      condition: and
      conditions:
        - condition: property
          property: host.os
          equals_value: Linux

  - type: Group
    instructions:
      - type: ChangeDirectory
        directory: "{{.InstallRoot}}/{{.AgentWorkingDir}}"
      - type: ExecuteCommand
        command: "python3 {{.SourceDir}}/coin/create_ifw_installer.py --src-dir {{.SourceDir}} --bld-dir {{.SourceDir}} --target-dir {{.SourceDir}}/IfwInstaller --target-name QtInstallerFramework-macOS-x86_64-4.2.0.app"
        maxTimeInSeconds: 36000
        maxTimeBetweenOutput: 3600
        userMessageOnFailure: "Failed to create ifw installer."
      - type: EnvironmentVariable
        variableName: QT_CODESIGN_IDENTITY_KEY
        variableValue: "A5GTH44LYL"
      - type: ExecuteCommand
        command: "{{.AgentWorkingDir}}/qtsdk/qtsdk/packaging-tools/sign_installer.py mac --file={{.SourceDir}}/IfwInstaller/QtInstallerFramework-macOS-x86_64-4.2.0.app"
        maxTimeInSeconds: 36000
        maxTimeBetweenOutput: 3600
        userMessageOnFailure: "Failed to sign the ifw installer"
      - type: ExecuteCommand
        command: "{{.AgentWorkingDir}}/qtsdk/qtsdk/packaging-tools/notarize.py --dmg={{.SourceDir}}/IfwInstaller/QtInstallerFramework-macOS-x86_64-4.2.0.dmg"
        maxTimeInSeconds: 36000
        maxTimeBetweenOutput: 3600
        userMessageOnFailure: "Failed to notarize the ifw installer"
      - type: Rename
        sourcePath: "{{.SourceDir}}/IfwInstaller/QtInstallerFramework-macOS-x86_64-4.2.0.dmg"
        targetPath: "{{.InstallRoot}}/{{.AgentWorkingDir}}/QtInstallerFramework-macOS-x86_64-4.2.0.dmg"
        userMessageOnFailure: "Failed to copy installer."
    enable_if:
      condition: and
      conditions:
        - condition: property
          property: host.os
          equals_value: MacOS

  - type: Group
    instructions:
      - type: ChangeDirectory
        directory: "{{.SourceDir}}"
      - type: ExecuteCommand
        command: "{{.Env.PYTHON3_PATH}}\\python {{.SourceDir}}\\coin\\create_ifw_installer.py --src-dir {{.SourceDir}} --bld-dir {{.SourceDir}} --target-dir C:\\{{.SourceDir}}\\IfwInstaller  --target-name QtInstallerFramework-windows-x86-4.2.0"
        maxTimeInSeconds: 1200
        maxTimeBetweenOutput: 1200
        userMessageOnFailure: "Failed to create ifw installer."
    enable_if:
      condition: and
      conditions:
        - condition: property
          property: host.os
          equals_value: Windows

  - type: SignPackage
    directory: "{{.SourceDir}}/IfwInstaller"
    maxTimeInSeconds: 1200
    maxTimeBetweenOutput: 1200
    enable_if:
      condition: property
      property: host.os
      equals_value: Windows

  - type: Rename
    sourcePath: "{{.SourceDir}}/IfwInstaller/QtInstallerFramework-windows-x86-4.2.0.exe"
    targetPath: "{{.InstallRoot}}/{{.AgentWorkingDir}}/QtInstallerFramework-windows-x86-4.2.0.exe"
    userMessageOnFailure: "Failed to copy installer."
    enable_if:
      condition: property
      property: host.os
      equals_value: Windows

  - type: Rename
    sourcePath: "{{.SourceDir}}/dist/packages/org.qtproject.ifw.binaries/data/data.7z"
    targetPath: "{{.InstallRoot}}/{{.AgentWorkingDir}}/ifw_data.7z"
    userMessageOnFailure: "Failed to copy IFW binary archive."

  - type: UploadArtifact
    archiveDirectory: "{{.InstallRoot}}/{{.AgentWorkingDir}}"
    transferType: UploadModuleBuildArtifact
    maxTimeInSeconds: 1800
    maxTimeBetweenOutput: 1800