aes67-daemon/azure-pipelines.yml

27 lines
458 B
YAML

# Azure pipeline to build and run daemon tests into Docker image
trigger:
branches:
include:
- '*'
resources:
- repo: self
variables:
tag: '$(Build.BuildId)'
stages:
- stage: Build
jobs:
- job: Build
pool: Default
steps:
- task: Docker@2
displayName: Build and run daemon tests
inputs:
command: build
dockerfile: '$(Build.SourcesDirectory)/Dockerfile.daemon_tests'
tags: |
$(tag)