Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
release: add pipeline
Browse files Browse the repository at this point in the history
add pipeline to integrate all  release jobs.

Signed-off-by: Jose Carlos Venegas Munoz <jcvenega@jcvenega-nuc.zpn.intel.com>
  • Loading branch information
Jose Carlos Venegas Munoz committed Jul 17, 2019
1 parent 16d2142 commit 920965e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .ci/azure/pipelines/release.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 920965e

Please sign in to comment.