diff --git a/.ci/azure/pipelines/release.yml b/.ci/azure/pipelines/release.yml new file mode 100644 index 0000000000..58312dc72e --- /dev/null +++ b/.ci/azure/pipelines/release.yml @@ -0,0 +1,27 @@ +# +# Copyright (c) 2019 Intel Corporation +# +# SPDX-License-Identifier: Apache-2.0 +# + +trigger: +- master + +jobs: +- job: packages +#timeout set to max + timeoutInMinutes: 0 + pool: + vmImage: 'ubuntu-latest' + steps: +# azure docker installation task +# https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/tool/docker-installer?view=azure-devops + - task: DockerInstaller@0 + displayName: 'Install Docker' + + - bash: | + sudo apt-get update -y -qq + sudo apt-get install -y git + git config --global user.email "azure-pipeline@kata.io" + git config --global user.name "azure-pipeline" + displayName: 'Setup'