aboutsummaryrefslogtreecommitdiffstats
path: root/coin/module_config.yaml
blob: 103c715caff6552557b2f203e33636808831a10b (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
version: 1
accept_configuration:
  condition: and
  conditions:
    - condition: property
      property: host.compiler
      equals_value: Yocto
    - condition: property
      property: target.arch
      in_values: [TARGET1, TARGET2, TARGET3, TARGET4]

environment: &environment
  type: Group
  instructions:
    - type: EnvironmentVariable
      variableName: MACHINE
      variableValue: jetson-tx2
      enable_if:
        condition: property
        property: target.arch
        equals_value: TARGET1
    - type: EnvironmentVariable
      variableName: MACHINE
      variableValue: apalis-imx6
      enable_if:
        condition: property
        property: target.arch
        equals_value: TARGET2
    - type: EnvironmentVariable
      variableName: MACHINE
      variableValue: colibri-imx7
      enable_if:
        condition: property
        property: target.arch
        equals_value: TARGET3
    - type: EnvironmentVariable
      variableName: MACHINE
      variableValue: intel-corei7-64
      enable_if:
        condition: property
        property: target.arch
        equals_value: TARGET4

build_instructions:
  - *environment
  - type: SetBuildDirectory
    directory: "{{.AgentWorkingDir}}/build"
  - type: MakeDirectory
    directory: "{{.BuildDir}}"
  - type: ChangeDirectory
    directory: "{{.BuildDir}}"
  - type: ExecuteCommand
    command: ["sudo", "ln", "-sf", "gcc-7", "/usr/bin/gcc"]
    userMessageOnFailure: "Could not create link for gcc-7"
  - type: ExecuteCommand
    command: ["sudo", "ln", "-sf", "g++-7", "/usr/bin/g++"]
    userMessageOnFailure: "Could not create link for g++-7"
  - type: ExecuteCommand
    command: ["sudo", "mkdir", "-p", "/mnt/yocto-cache"]
    userMessageOnFailure: "Could not create '/mnt/yocto-cache' directory"
  - type: ExecuteCommand
    command: ["sudo", "mount", "yocto-cache.intra.qt.io:/srv/yocto-cache", "/mnt/yocto-cache"]
    userMessageOnFailure: "Could not mount yocto cache."
  - type: WriteFile
    fileContents: |
      #!/bin/bash -xe
      source ./setup-environment.sh
      export BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE SSTATE_DIR DL_DIR"
      export SSTATE_DIR=/mnt/yocto-cache/sstate-caches/$(sed -n -e "s/DISTRO_CODENAME.*\"\(.*\)\"/\1/p" ../sources/poky/meta-*/conf/distro/poky.conf)
      bitbake meta-b2qt-embedded-qbsp
      SDKMACHINE=i686-mingw32 bitbake meta-b2qt-embedded-qbsp
    filename: "{{.BuildDir}}/start-build"
    fileMode: 420
  - type: ExecuteCommand
    command: ["chmod", "+x", "{{.BuildDir}}/start-build"]
    userMessageOnFailure: "Could not add execution right to the start-build."
  - type: EnvironmentVariable
    variableName: DL_DIR
    variableValue: "/mnt/yocto-cache/downloads"
  - type: ExecuteCommand
    command: ["{{.SourceDir}}/b2qt-init-build-env", "init", "--device", "{{.Env.MACHINE}}", "--reference", "/mnt/yocto-cache/mirror"]
    maxTimeInSeconds: 1800
    maxTimeBetweenOutput: 1800
    userMessageOnFailure: "Failed to download the yocto recipes repositories"
  - type: ExecuteCommand
    command: ["{{.BuildDir}}/start-build"]
    maxTimeInSeconds: 28800
    maxTimeBetweenOutput: 28800
    userMessageOnFailure: "Build failed."
  - type: ExecuteCommand
    command: ["sudo", "umount", "/mnt/yocto-cache"]
    userMessageOnFailure: "Unmounting cache failed."

test_instructions: []