Skip to content

Commit 3c6d197

Browse files
committed
ci: move coverity in its own pipeline
Since Coverity is down for a unspecified timeframe, isolate it from the "hosted" nightlies.
1 parent 99afd41 commit 3c6d197

File tree

2 files changed

+21
-19
lines changed

2 files changed

+21
-19
lines changed

azure-pipelines/coverity.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
resources:
2+
- repo: self
3+
4+
- job: coverity
5+
displayName: 'Coverity'
6+
pool:
7+
vmImage: 'Ubuntu 16.04'
8+
steps:
9+
- task: Docker@0
10+
displayName: Build
11+
inputs:
12+
action: 'Run an image'
13+
imageName: 'libgit2/trusty-openssl:latest'
14+
volumes: |
15+
$(Build.SourcesDirectory):/src
16+
$(Build.BinariesDirectory):/build
17+
envVars: |
18+
COVERITY_TOKEN=$(COVERITY_TOKEN)
19+
workDir: '/build'
20+
containerCommand: '/src/ci/coverity.sh'
21+
detached: false

azure-pipelines/nightly.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -173,22 +173,3 @@ jobs:
173173
CC=gcc
174174
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
175175
SKIP_PROXY_TESTS=true
176-
177-
- job: coverity
178-
displayName: 'Coverity'
179-
pool:
180-
vmImage: 'Ubuntu 16.04'
181-
steps:
182-
- task: Docker@0
183-
displayName: Build
184-
inputs:
185-
action: 'Run an image'
186-
imageName: 'libgit2/trusty-openssl:latest'
187-
volumes: |
188-
$(Build.SourcesDirectory):/src
189-
$(Build.BinariesDirectory):/build
190-
envVars: |
191-
COVERITY_TOKEN=$(COVERITY_TOKEN)
192-
workDir: '/build'
193-
containerCommand: '/src/ci/coverity.sh'
194-
detached: false

0 commit comments

Comments
 (0)