Skip to content

Commit ccffea6

Browse files
committed
azure: coverity: convert to use self-built containers
Back in commit 5a6740e (azure: build Docker images as part of the pipeline, 2019-08-02), we have converted our pipelines to use self-built Docker images to ease making changes to our Dockerfiles. The commit didn't adjust our Coverity pipeline, though, so let's do this now.
1 parent b4eb028 commit ccffea6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

azure-pipelines/coverity.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ jobs:
77
pool:
88
vmImage: 'Ubuntu 16.04'
99
steps:
10+
- script: |
11+
cd $(Build.SourcesDirectory)/azure-pipelines/docker
12+
docker build -t libgit2/xenial --build-arg BASE=ubuntu:xenial -f xenial .
13+
displayName: 'Build Docker image'
1014
- task: Docker@0
1115
displayName: Build
1216
inputs:
@@ -24,7 +28,7 @@ jobs:
2428
displayName: Publish
2529
inputs:
2630
action: 'Run an image'
27-
imageName: 'libgit2/trusty-openssl:latest'
31+
imageName: libgit2/xenial
2832
volumes: |
2933
$(Build.SourcesDirectory):/home/libgit2/source
3034
$(Build.BinariesDirectory):/home/libgit2/build

0 commit comments

Comments
 (0)