Skip to content

Commit 7295e85

Browse files
committed
build: coverity: use curl and build in debian.python
Use the debian.python container so we also build the Python binding. And while at it use curl instead of wget, the container only ships curl. Signed-off-by: Daniel Wagner <wagi@kernel.org>
1 parent c2ffab6 commit 7295e85

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/coverity.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: coverity scan
1919
runs-on: ubuntu-latest
2020
container:
21-
image: ghcr.io/linux-nvme/debian:latest
21+
image: ghcr.io/linux-nvme/debian.python:latest
2222
steps:
2323
- uses: actions/checkout@v5
2424
with:
@@ -38,9 +38,10 @@ jobs:
3838
3939
- name: Download Coverity Build Tool
4040
run: |
41-
wget -q https://scan.coverity.com/download/linux64 \
42-
--post-data "token=${{ secrets.COVERITY_SCAN_TOKEN }}&project=linux-nvme%2Fnvme-cli" \
43-
-O coverity_tool.tgz
41+
curl -o coverity_tool.tgz \
42+
--form token=${{ secrets.COVERITY_SCAN_TOKEN }} \
43+
--form project=linux-nvme/nvme-cli \
44+
https://scan.coverity.com/download/linux64
4445
mkdir coverity-tools
4546
tar xzf coverity_tool.tgz --strip 1 -C coverity-tools
4647

0 commit comments

Comments
 (0)