mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-15 11:52:16 +00:00
git-subtree-dir: tools/packaging git-subtree-mainline:f818b46a41
git-subtree-split:1f22d72d5d
Signed-off-by: Peng Tao <bergwolf@hyper.sh>
28 lines
682 B
YAML
28 lines
682 B
YAML
#
|
|
# 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 --no-install-recommends install -y apt-utils ca-certificates git
|
|
git config --global user.email "azure-pipeline@kata.io"
|
|
git config --global user.name "azure-pipeline"
|
|
displayName: 'Setup'
|