Commit bbc0b20bdce074fa7b62c4acae17c330347008ea

Patrick Steinhardt 2019-08-02T10:27:24

azure: fix Coverity's build due to wrong container name The Coverity build is still referencing an old "trusty-openssl" container that is not provided by either our own now-inlined images nor by the libgit2/libgit2-docker repository. Convert it to build and use Xenial images instead.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/azure-pipelines/coverity.yml b/azure-pipelines/coverity.yml
index d8c6b3f..28ab5ab 100644
--- a/azure-pipelines/coverity.yml
+++ b/azure-pipelines/coverity.yml
@@ -11,7 +11,9 @@ jobs:
     displayName: Build
     inputs:
       action: 'Run an image'
-      imageName: 'libgit2/trusty-openssl:latest'
+      docker:
+        image: xenial
+        base: xenial
       volumes: |
        $(Build.SourcesDirectory):/src
        $(Build.BinariesDirectory):/build