summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
blob: a717f1637fcd1d2376337743cd2acc1809933168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
trigger:
- master

jobs:
- job: Build
  timeoutInMinutes: 0

  pool:
    vmImage: 'Ubuntu-16.04'

  steps:
    - bash: |
        sudo apt-get install gawk wget git-core diffstat unzip texinfo gcc-multilib build-essential chrpath socat
        rm -rf build/conf
        source oe-init-build-env
        bitbake intel-platforms
      displayName: 'Build'
      timeoutInMinutes: 0