summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorjmbills <42755197+jmbills@users.noreply.github.com>2019-10-23 20:54:19 +0300
committerJason M. Bills <jason.m.bills@linux.intel.com>2019-10-24 20:36:28 +0300
commit18fd5aec1c2d90a3f35936cd019604f511ceac53 (patch)
tree62ed92f532a529b93fb67c19fdaa98a9be9de22a /azure-pipelines.yml
parent456380bb272d3a301c887eee513a3937cc1f48e1 (diff)
downloadopenbmc-18fd5aec1c2d90a3f35936cd019604f511ceac53.tar.xz
Add action to build opebmc
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
deleted file mode 100644
index 57907a2d4..000000000
--- a/azure-pipelines.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-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}