summaryrefslogtreecommitdiff
path: root/spec-qdp/qdp/steps/build-doxygen.yml
blob: 270dff2094f139cd60f36fe552aaa336afae58d4 (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
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
actions:
- action: remove-tree
  enabled-by: true
  missing-ok: true
  path: ${.:/params/build-directory}
- action: mkdir
  enabled-by: true
  exist-ok: false
  parents: true
  path: ${.:/params/build-directory}
- action: subprocess
  enabled-by: true
  command:
  - cmake
  - -DCMAKE_INSTALL_PREFIX=${../variant:/deployment-directory}
  - -G
  - Unix Makefiles
  - ${../source/doxygen:/directory}
  env: []
  expected-return-code: 0
  working-directory: ${.:/params/build-directory}
- action: subprocess
  enabled-by: true
  command:
  - make
  - -j
  - ${.:/host-processor-count}
  env: []
  expected-return-code: 0
  working-directory: ${.:/params/build-directory}
- action: subprocess
  enabled-by: true
  command:
  - make
  - -j
  - ${.:/host-processor-count}
  - install
  - DESTDIR=${.:/params/build-directory}/destdir
  env: []
  expected-return-code: 0
  working-directory: ${.:/params/build-directory}
- action: directory-state-clear
  enabled-by: true
  output-name: deployment
- action: directory-state-move-tree
  enabled-by: true
  excludes: []
  output-name: deployment
  prefix: null
  root: ${.:/params/build-directory}/destdir/${../variant:/deployment-directory}
- action: remove-tree
  enabled-by: true
  missing-ok: true
  path: ${.:/params/build-directory}
build-step-type: run-actions
copyrights:
- Copyright (C) 2023 embedded brains GmbH & Co. KG
description: |
  Builds and installs Doxygen.
enabled-by: true
links:
- hash: null
  name: source
  role: input
  uid: ../source/doxygen
- name: deployment
  role: output
  uid: ../deployment/doxygen
params:
  build-directory: ${../variant:/build-directory}/build-doxygen
qdp-type: build-step
type: qdp