-
Notifications
You must be signed in to change notification settings - Fork 164
260 lines (257 loc) · 10 KB
/
coverity.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# Coverity Scan tools download, build and send data to analysis
name: Coverity-Scan
run-name: Coverity Scan (daily)
on:
schedule:
- cron: '0 23 * * *'
workflow_dispatch:
env:
OWCOV_PROJECT: 'open-watcom/open-watcom-v2'
OWCOV_TOOLS_GITPATH: 'coverity-scan-analysis'
OWCOV_RESULTS_GITPATH: 'cov-int'
OWCOV_TAG: 'Coverity-scan'
jobs:
check_run:
if: github.repository == 'open-watcom/open-watcom-v2'
name: Check if to run
runs-on: ubuntu-latest
outputs:
runit: ${{ steps.check_tag.outputs.old }}
steps:
- name: Checkout Actions
uses: actions/checkout@v4
- name: Check tag reference
id: check_tag
uses: "./.github/actions/ghtagchk"
with:
tag: ${{ env.OWCOV_TAG }}
owdebug: ${{ vars.OWDEBUG }}
owcurlopts: ${{ vars.OWCURLOPTS }}
scan-lnx:
needs: check_run
if: needs.check_run.outputs.runit
name: "Coverity Scan Linux"
runs-on: ubuntu-latest
env:
OWCOV_SRC: 'linux64'
OWCOV_TOOLS_ARCHIVE: 'cov-analysis-linux.tgz'
OWCOV_RESULTS_ARCHIVE: 'open-watcom-v2.tgz'
steps:
- name: Checkout Actions
uses: actions/checkout@v4
- name: Install DOSBOX
uses: "./.github/actions/dosboxin"
with:
hostos: 'lnx'
- name: Setup curl options
id: curlcmd
uses: "./.github/actions/curlcmd"
with:
owcurlopts: ${{ inputs.owcurlopts }}
- name: "Download Coverity Tools"
run: |
$response = ${{ steps.curlcmd.outputs.cov }} `
-o $env:OWCOV_TOOLS_ARCHIVE `
"https://scan.coverity.com/download/cxx/$env:OWCOV_SRC" `
-d "project=$env:OWCOV_PROJECT&token=${{ secrets.OWCOVERITY_TOKEN }}"
if( '${{ vars.OWDEBUG }}' -eq '1' ) { $response }
shell: pwsh
- name: "Restore Coverity Tools"
uses: "./.github/actions/tarload"
with:
hostos: 'lnx'
fullname: ${{ env.OWCOV_TOOLS_ARCHIVE }}
gitpath: ${{ env.OWCOV_TOOLS_GITPATH }}
format: 'gzip'
owdebug: ${{ vars.OWDEBUG }}
- name: "Remove Coverity Tools Archive"
run: rm -f $OWCOV_SRC_ARCHIVE
shell: bash
- name: Find Coverity Tool command
id: covtool
run: |
$xpath = Join-Path ${{ github.workspace }} $env:OWCOV_TOOLS_GITPATH
(Get-ChildItem -Recurse -Path $xpath -File "cov-build" | Select-Object -First 1).FullName `
| Join-String -OutputPrefix 'cmd=' `
| Out-File -FilePath ${{ github.output }} -Encoding utf8 -Append
shell: pwsh
- name: "Build Coverity output data Linux"
run: ci/coverity.sh ${{ steps.covtool.outputs.cmd }} $OWCOV_RESULTS_GITPATH ci/covbuild.sh
env:
OWROOT: ${{ github.workspace }}
OWTOOLS: GCC
OWDOSBOX: dosbox
OWDEBUG: ${{ vars.OWDEBUG }}
OWVERBOSE: 1
shell: bash
- name: Get Coverity output data path
id: tarname
run: >
Join-Path ${{ github.workspace }} $env:OWCOV_RESULTS_ARCHIVE
| Join-String -OutputPrefix 'fullname='
| Out-File -FilePath ${{ github.output }} -Encoding utf8 -Append
shell: pwsh
- name: "Create Archive with Coverity output data"
run: |
if [ "${{ vars.OWDEBUG }}" = "1" ]; then
tar -cvf "${{ steps.tarname.outputs.fullname }}" -J --overwrite $OWCOV_RESULTS_GITPATH
else
tar -cf "${{ steps.tarname.outputs.fullname }}" -J --overwrite $OWCOV_RESULTS_GITPATH
fi
shell: bash
- if: vars.OWDEBUG == 1
name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: 'coverity'
path: ${{ steps.tarname.outputs.fullname }}
retention-days: 3
overwrite: true
- id: last_commit
run: git rev-parse HEAD | Join-String -OutputPrefix 'sha=' | Out-File -FilePath ${{ github.output }} -Encoding utf8 -Append
shell: pwsh
- name: "Upload Coverity output data Archive"
run: >
$response = ${{ steps.curlcmd.outputs.cov }}
--write-out "\n%{http_code}\n"
--form project=$env:OWCOV_PROJECT
--form token=${{ secrets.OWCOVERITY_TOKEN }}
--form [email protected]
--form file=`@${{ steps.tarname.outputs.fullname }}
--form version=${{ steps.last_commit.outputs.sha }}
--form description="Open Watcom V2 Azure Pipelines CI build"
https://scan.coverity.com/builds
shell: pwsh
- name: Check tag reference
id: check_tag
uses: "./.github/actions/ghtagchk"
with:
tag: ${{ env.OWCOV_TAG }}
owdebug: ${{ vars.OWDEBUG }}
- if: steps.check_tag.outputs.sha == ''
name: Create new Coverity scan tag
run: |
$response = ${{ steps.curlcmd.outputs.gh }} -H "Authorization: Bearer ${{ github.token }}" `
-X POST "https://api.github.com/repos/${{ github.repository }}/git/refs" `
-d '{"ref":"refs/tags/${{ env.OWCOV_TAG }}","sha":"${{ steps.last_commit.outputs.sha }}"}'
if( '${{ vars.OWDEBUG }}' -eq '1' ) { $response }
shell: pwsh
- if: steps.check_tag.outputs.sha != ''
name: Update Coverity scan tag
run: |
$response = ${{ steps.curlcmd.outputs.gh }} -H "Authorization: Bearer ${{ github.token }}" `
-X PATCH "https://api.github.com/repos/${{ github.repository }}/git/refs/tags/${{ env.OWCOV_TAG }}" `
-d '{"sha":"${{ steps.last_commit.outputs.sha }}"}'
if( '${{ vars.OWDEBUG }}' -eq '1' ) { $response }
shell: pwsh
# scan-nt:
# needs: check_run
# if: needs.check_run.outputs.runit
# name: "Load Coverity Scan Windows"
# runs-on: windows-2022
# env:
# OWCOV_SRC: 'win64'
# OWCOV_TOOLS_ARCHIVE: 'cov-analysis-linux.zip'
# OWCOV_RESULTS_ARCHIVE: 'open-watcom-v2.zip'
# steps:
# - name: Checkout Actions
# uses: actions/checkout@v4
# - name: Install DOSBOX
# uses: "./.github/actions/dosboxin"
# with:
# hostos: 'nt'
# - name: Setup curl options
# id: curlcmd
# uses: "./.github/actions/curlcmd"
# with:
# owcurlopts: ${{ inputs.owcurlopts }}
# - name: "Download Coverity Tools"
# run: |
# $response = ${{ steps.curlcmd.outputs.cov }} `
# -o $env:OWCOV_TOOLS_ARCHIVE `
# "https://scan.coverity.com/download/cxx/$env:OWCOV_SRC" `
# -d "project=$env:OWCOV_PROJECT&token=${{ secrets.OWCOVERITY_TOKEN }}"
# if( '${{ vars.OWDEBUG }}' -eq '1' ) { $response }
# shell: pwsh
# - name: "Restore Coverity Tools"
# uses: "./.github/actions/tarload"
# with:
# hostos: 'nt'
# fullname: ${{ env.OWCOV_TOOLS_ARCHIVE }}
# gitpath: ${{ env.OWCOV_TOOLS_GITPATH }}
# format: 'gzip'
# owdebug: ${{ vars.OWDEBUG }}
# - name: "Remove Coverity Tools Archive"
# run: rm -f $OWCOV_SRC_ARCHIVE
# shell: bash
# - name: Find Coverity Tool command
# id: covtool
# run: |
# $xpath = Join-Path ${{ github.workspace }} $env:OWCOV_TOOLS_GITPATH
# (Get-ChildItem -Recurse -Path $xpath -File "cov-build.exe" | Select-Object -First 1).FullName `
# | Join-String -OutputPrefix 'cmd=' `
# | Out-File -FilePath ${{ github.output }} -Encoding utf8 -Append
# shell: pwsh
# - name: "Build Coverity output data Windows"
# run: |
# ci\coverity.cmd ${{ steps.covtool.outputs.cmd }} ${{ env.OWCOV_RESULTS_GITPATH }} ci\covbuild.cmd vs2019
# env:
# OWROOT: ${{ github.workspace }}
# OWTOOLS: VISUALC
# OWDOSBOX: dosbox.exe
# OWDOSBOXPATH: ci\nt386
# OWDEBUG: ${{ vars.OWDEBUG }}
# OWVERBOSE: 1
# shell: cmd
# - name: Get Coverity output data path
# id: tarname
# run: >
# Join-Path ${{ github.workspace }} $env:OWCOV_RESULTS_ARCHIVE
# | Join-String -OutputPrefix 'fullname='
# | Out-File -FilePath ${{ github.output }} -Encoding utf8 -Append
# shell: pwsh
# - id: last_commit
# run: git rev-parse HEAD | Join-String -OutputPrefix 'sha=' | Out-File -FilePath ${{ github.output }} -Encoding utf8 -Append
# shell: pwsh
# - name: "Archive Coverity output data"
# uses: "./.github/actions/tarsave"
# with:
# hostos: 'nt'
# fullname: ${{ steps.tarname.outputs.fullname }}
# gitpath: ${{ env.OWCOV_RESULTS_GITPATH }}
# format: 'gzip'
# owdebug: ${{ vars.OWDEBUG }}
# - name: "Upload Coverity output data Archive"
# run: >
# $response = ${{ steps.curlcmd.outputs.cov }}
# --write-out "\n%{http_code}\n"
# --form project=$env:OWCOV_PROJECT
# --form token=${{ secrets.OWCOVERITY_TOKEN }}
# --form [email protected]
# --form file=`@${{ steps.tarname.outputs.fullname }}
# --form version=${{ steps.last_commit.outputs.sha }}
# --form description="Open Watcom V2 Azure Pipelines CI build"
# https://scan.coverity.com/builds
# shell: pwsh
# - name: Check tag reference
# id: check_tag
# uses: "./.github/actions/ghtagchk"
# with:
# tag: ${{ env.OWCOV_TAG }}
# owdebug: ${{ vars.OWDEBUG }}
# - if: steps.check_tag.outputs.sha == ''
# name: Create new Coverity scan tag
# run: |
# $response = ${{ steps.curlcmd.outputs.gh }} -H "Authorization: Bearer ${{ github.token }}" `
# -X POST "https://api.github.com/repos/${{ github.repository }}/git/refs" `
# -d '{"ref":"refs/tags/${{ env.OWCOV_TAG }}","sha":"${{ steps.last_commit.outputs.sha }}"}'
# if( '${{ vars.OWDEBUG }}' -eq '1' ) { $response }
# shell: pwsh
# - if: steps.check_tag.outputs.sha != ''
# name: Update Coverity scan tag
# run: |
# $response = ${{ steps.curlcmd.outputs.gh }} -H "Authorization: Bearer ${{ github.token }}" `
# -X PATCH "https://api.github.com/repos/${{ github.repository }}/git/refs/tags/${{ env.OWCOV_TAG }}" `
# -d '{"sha":"${{ steps.last_commit.outputs.sha }}"}'
# if( '${{ vars.OWDEBUG }}' -eq '1' ) { $response }
# shell: pwsh