Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 328 Bytes

container-job.md

File metadata and controls

25 lines (21 loc) · 328 Bytes
pool: my-pool

trigger:
  branches:
    include:
    - master
    - main

stages:
- stage: build

  jobs:
  - job: build
    displayName: build
    container:
      image: ubuntu:20.04

    steps:
    - task: Bash@3
      displayName: echo
      inputs:
        targetType: 'inline'
        script: echo "hello duck"