summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
blob: c05e1d040a69c65a7ebc43f8481d8ed573f6dcea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: $(Date:yyyyMMdd.HHmm)

jobs:
- job: CheckTests
  pool:
    vmImage: Ubuntu 16.04
  steps:
  - bash: ./check-tests.sh
    workingDirectory: build
    displayName: 'Check if tests should run'
    name: checkTests
- job: MagickNET
  dependsOn: CheckTests
  condition: and(succeeded(), eq(dependencies.CheckTests.outputs['checkTests.RunTests'], 'true'))
  pool:
    vmImage: Ubuntu 16.04
  steps:
  - template: build/test-magick-net.yml