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

Commit

Permalink
Merge pull request #644 from jcvenegas/release-pipeline
Browse files Browse the repository at this point in the history
release: add pipeline
  • Loading branch information
jcvenegas authored Jul 17, 2019
2 parents 16d2142 + 920965e commit b25f6ca
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 b25f6ca

Please sign in to comment.