mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-09-19 15:58:25 +00:00
release: add pipeline
add pipeline to integrate all release jobs. Signed-off-by: Jose Carlos Venegas Munoz <jcvenega@jcvenega-nuc.zpn.intel.com>
This commit is contained in:
27
.ci/azure/pipelines/release.yml
Normal file
27
.ci/azure/pipelines/release.yml
Normal file
@@ -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'
|
Reference in New Issue
Block a user