Files @ r23446:6ee5c7b635a3
Branch filter:

Location: cpp/openttd-patchpack/source/azure-pipelines/templates/linux-build.yml

peter1138
Feature: Add road icon to road construction drop down list.
parameters:
  Image: ''
  Tag: ''
  ContainerCommand: ''

steps:
- task: Docker@1
  ${{ if eq(parameters.Image, 'compile-farm') }}:
    displayName: 'Build'
  ${{ if eq(parameters.Image, 'compile-farm-ci') }}:
    displayName: 'Build and test'
  inputs:
    command: 'Run an image'
    imageName: openttd/${{ parameters.Image }}:${{ parameters.Tag }}
    volumes: '$(Build.SourcesDirectory):$(Build.SourcesDirectory)'
    workingDirectory: '$(Build.SourcesDirectory)'
    containerCommand: ${{ parameters.ContainerCommand }}
    runInBackground: false