From f1bcada3f699423237aefbd050b8571d82d9ae9a Mon Sep 17 00:00:00 2001 From: Jose Carlos Venegas Munoz Date: Mon, 24 Jun 2019 13:09:21 -0500 Subject: [PATCH] ci: Add intial pipeline to test OBS package generation Add simple yaml definition to run job in azure pipelines. - The pipeline should be triggerd with comments when is a PR Fixes: #480 Signed-off-by: Jose Carlos Venegas Munoz --- .ci/azure/pipelines/obs-packaging-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .ci/azure/pipelines/obs-packaging-ci.yml diff --git a/.ci/azure/pipelines/obs-packaging-ci.yml b/.ci/azure/pipelines/obs-packaging-ci.yml new file mode 100644 index 0000000000..7ca57f28ac --- /dev/null +++ b/.ci/azure/pipelines/obs-packaging-ci.yml @@ -0,0 +1,19 @@ +# +# Copyright (c) 2019 Intel Corporation +# +# SPDX-License-Identifier: Apache-2.0 +# + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- script: echo setup + displayName: 'setup CI' + +- script: | + echo This is an initial CI job + displayName: 'Run CI'