Home | History | Annotate | Download | only in ImageMagick
      1 name: $(Date:yyyyMMdd.HHmm)
      2 
      3 jobs:
      4 - job: CheckTests
      5   pool:
      6     vmImage: Ubuntu 16.04
      7   steps:
      8   - bash: ./check-tests.sh
      9     workingDirectory: build
     10     displayName: 'Check if tests should run'
     11     name: checkTests
     12 - job: MagickNET
     13   dependsOn: CheckTests
     14   condition: and(succeeded(), eq(dependencies.CheckTests.outputs['checkTests.RunTests'], 'true'))
     15   pool:
     16     vmImage: Ubuntu 16.04
     17   steps:
     18   - template: build/test-magick-net.yml