summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 000000000..a717f1637
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,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
+