aboutsummaryrefslogtreecommitdiffstats
path: root/.ci/oe-for-host.yml
blob: 6c2025a745682aa1a41094d9b3de7ebac6011bcf (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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#
# Copyright 2021 Ettus Research, a National Instruments Brand
#
# SPDX-License-Identifier: LGPL-3.0-or-later
#
# Description:
#
# Build openembedded (OE) package for host architecture (genericx86-64)
#
# The recipe to be built is specified by variable "Image"
# The package itself is built (step "build $(Image)") and also all runtime
# dependencies are built (step "build $(Image) with dependencies")
#
# For the recipes "uhd", "uhd-fpga-images" and "mpmd", the build is configured
# to use the source code from the $(Agent.BuildDirectory)/uhd directory. The
# code is checked out by this pipeline with the branch and version which
# triggered this pipeline.
#
# The pipeline generates an artifact named "genericx86-64-feed". It contains
# the file base-feeds.conf which contains the package feed URIs. This file can
# be used by the opkg package manager to install the packages from this feed.

trigger:
  branches:
    include:
    - master
  paths:
    include:
    - .ci
    - host

pr:
  branches:
    include:
    - master
  paths:
    include:
    - .ci
    - host

variables:
  SITECONF_FILE: '$(Agent.WorkFolder)/site.conf'
  IMAGE_VERSION_SUFFIX: '-$(Build.BuildNumber)'
  MENDER_ARTIFACT_NAME: '$(Build.BuildNumber)'
  # The following variables need to be provided as pipeline variables:
  # MANIFEST_URL, MANIFEST_BRANCH, MANIFEST_FILE, OE_RELEASE

jobs:
- job: 'build'
  timeoutInMinutes: 600
  cancelTimeoutInMinutes: 10
  strategy:
    matrix: {'qemux86-64': {}}

  pool:
    name: de-dre-lab
    demands:
    - openembedded
    - Agent.Name -equals oss-build3

  variables:
    MENDER_ARTIFACT_NAME: '$(Build.BuildNumber)_$(System.JobName)'

  steps:

  - script: |
      DEVICE=$SYSTEM_JOBNAME
      TEMPLATECONF_DIR="meta-ettus/conf/qemux86-64"
      BUILD_DIR="$DEVICE/build-$BUILD_BUILDNUMBER"
      IMAGE_VERSION_SUFFIX="-$BUILD_BUILDNUMBER"
      # set variables to be used in the pipeline
      echo "###vso[task.setVariable variable=Device;isOutput=true]$DEVICE"
      echo "###vso[task.setVariable variable=TemplateConf_Dir;isOutput=true]$TEMPLATECONF_DIR"
      echo "###vso[task.setVariable variable=Build_Dir;isOutput=true]$BUILD_DIR"
      echo "###vso[task.setVariable variable=Image_Version_Suffix;isOutput=true]$IMAGE_VERSION_SUFFIX"
    name: config

  - script: env
    displayName: 'Print environment'

  - script: ssh -T git@github.com || true
    displayName: 'Test github authentication'

  - script: |
      cd $AGENT_BUILDDIRECTORY
      echo repo init -u $MANIFEST_URL -b $MANIFEST_BRANCH -m $MANIFEST_FILE
      repo init -u $MANIFEST_URL -b $MANIFEST_BRANCH -m $MANIFEST_FILE
      mkdir -p .repo/local_manifests
      cat > .repo/local_manifests/add-meta-yocto.xml <<EOF
      <?xml version="1.0" encoding="UTF-8"?>
      <manifest>
        <project name="meta-yocto" remote="yocto" revision="$(OE_RELEASE)" />
      </manifest>
      EOF
      repo forall -c git clean -fd
      repo forall -c git reset --hard
      repo sync --force-sync
      if [ -x .repo/manifests/apply-patches.sh ]; then
        .repo/manifests/apply-patches.sh
      fi
    displayName: 'Checkout openembedded layers'

  - checkout: self
    path: uhd
    displayName: 'Checkout uhd'

  - script: |
      cd $AGENT_BUILDDIRECTORY
      mkdir -p $PWD/$CONFIG_BUILD_DIR
      export TEMPLATECONF=$PWD/$CONFIG_TEMPLATECONF_DIR
      if [ -d $CONFIG_BUILD_DIR/conf ]; then
        rm -rv $CONFIG_BUILD_DIR/conf
      fi
      source oe-core/oe-init-build-env $CONFIG_BUILD_DIR
      echo "INHERIT += \"externalsrc\"" >> conf/local.conf
      echo "EXTERNALSRC_pn-uhd = \"$AGENT_BUILDDIRECTORY/uhd/host\"" >> conf/local.conf
      echo "EXTERNALSRC_pn-uhd-fpga-images = \"$AGENT_BUILDDIRECTORY/uhd/host\"" >> conf/local.conf
      echo "EXTERNALSRC_pn-mpmd = \"$AGENT_BUILDDIRECTORY/uhd/mpm\"" >> conf/local.conf
      if [ -n "$SITECONF_FILE" ]; then
        cp -v $SITECONF_FILE conf/site.conf
        DEPLOY_DIR_BASE=$(grep -e "^DEPLOY_DIR_BASE\s*=" conf/site.conf | sed "s|^.*=\s*\"\(\S*\)\"$|\1|")
        if [ -n "$DEPLOY_DIR_BASE" ]; then
          DEPLOY_DIR="$DEPLOY_DIR_BASE/${SYSTEM_DEFINITIONNAME}/${CONFIG_BUILD_DIR}"
          echo "###vso[task.setVariable variable=DEPLOY_DIR]$DEPLOY_DIR"
          echo "Setting DEPLOY_DIR to $DEPLOY_DIR"
          echo "DEPLOY_DIR = \"$DEPLOY_DIR\"" >> conf/local.conf
          PACKAGE_FEED_BASE_PATHS="$(realpath -m --relative-to="$DEPLOY_DIR_BASE" "$DEPLOY_DIR/ipk")"
          echo "Setting PACKAGE_FEED_BASE_PATHS to $PACKAGE_FEED_BASE_PATHS"
          echo "PACKAGE_FEED_BASE_PATHS = \"$PACKAGE_FEED_BASE_PATHS\"" >> conf/local.conf
        fi
      fi
      for FILE in $TEMPLATECONF/multiconfig/*.sample; do
        mkdir -p conf/multiconfig
        cp -v $FILE conf/multiconfig/$(basename $FILE .sample)
      done
      echo "MENDER_ARTIFACT_NAME = \"$MENDER_ARTIFACT_NAME\"" >> conf/local.conf

    displayName: 'Setup environment'

  - script: |
      cd $AGENT_BUILDDIRECTORY
      source oe-core/oe-init-build-env $CONFIG_BUILD_DIR
      bitbake -p || exit $?
    displayName: 'Parse recipes'

  - script: |
      cd $AGENT_BUILDDIRECTORY
      source oe-core/oe-init-build-env $CONFIG_BUILD_DIR
      for RECIPE in $(Image); do
        bitbake $RECIPE:do_package_write_ipk || exit $?
      done
    displayName: 'build $(Image)'

  - script: |
      cd $AGENT_BUILDDIRECTORY
      source oe-core/oe-init-build-env $CONFIG_BUILD_DIR
      for RECIPE in $(Image); do
        bitbake $RECIPE || exit $?
      done
    displayName: 'build $(Image) with dependencies'

  - script: |
      cd $AGENT_BUILDDIRECTORY
      source oe-core/oe-init-build-env $CONFIG_BUILD_DIR
      bitbake package-index
      bitbake package-feed
      for RECIPE in $(Image); do
          bitbake -e $RECIPE > $RECIPE.env
          grep -e "^IMAGE_NAME=" -e "^IMAGE_LINK_NAME=" -e "^IMAGE_FSTYPES=" \
            -e "^DEPLOY_DIR_IMAGE=" -e "^DEPLOY_DIR_IPK=" $RECIPE.env \
             > image.variables
          break
      done
      source image.variables
      DEST=feed
      mkdir -p $DEST
      cp $DEPLOY_DIR_IPK/base-feeds.conf $DEST
    displayName: 'Create Feed $(System.JobName)'

  - publish: $(Agent.BuildDirectory)/$(config.Build_Dir)/feed
    artifact: '$(System.JobName)-feed'
    displayName: 'Publish Image feed $(System.JobName)'

  - script: |
      if [ -d $(DEPLOY_DIR) ]; then mv $(DEPLOY_DIR) $(DEPLOY_DIR)_attempt_$(System.JobAttempt); fi
    condition: failed()
    displayName: rename deploy dir if build failed