summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
blob: 57907a2d4f27cb22ed0158b0d6aee7b874a7e0b3 (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
trigger:
- master
- intel

jobs:
- job: Build
  timeoutInMinutes: 0

  pool:
    vmImage: 'Ubuntu-16.04'

  steps:
  # Remove the ubuntu-toolchain-r/test PPA, which is added by default. Some
  # packages were removed, and this is causing the g++multilib install to fail.
  # Similar issue: https://github.com/scikit-learn/scikit-learn/issues/13928
    - bash: |
        sudo add-apt-repository --remove ppa:ubuntu-toolchain-r/test
        sudo apt update
        sudo apt-get install gawk wget git-core diffstat unzip texinfo gcc-multilib build-essential chrpath socat
        rm -rf build
        source oe-init-build-env
        bitbake intel-platforms
      displayName: 'Build'
      timeoutInMinutes: 0
      env: { DEBIAN_FRONTEND: noninteractive}