Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage-utils:master commit in: .github/workflows/
Date: Sun, 06 Feb 2022 13:27:29
Message-Id: 1644152551.55ffda741879894c683899eed37347ff3b0b39a3.grobian@gentoo
1 commit: 55ffda741879894c683899eed37347ff3b0b39a3
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 6 13:02:31 2022 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 6 13:02:31 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=55ffda74
7
8 .github: enable coverity, we setup the secrets
9
10 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
11
12 .github/workflows/build-test-ci.yml | 27 +++++++++++++--------------
13 1 file changed, 13 insertions(+), 14 deletions(-)
14
15 diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
16 index 94262b6..00a93fc 100644
17 --- a/.github/workflows/build-test-ci.yml
18 +++ b/.github/workflows/build-test-ci.yml
19 @@ -66,20 +66,19 @@ jobs:
20 - name: make
21 run: make CFLAGS="-O3 -Wall -Wshadow -pipe" V=1 check
22
23 -# until we are able to set token on Github :(
24 -# coverity:
25 -# runs-on: ubuntu-latest
26 -# steps:
27 -# - uses: actions/checkout@v2
28 -# - name: configure
29 -# run: >
30 -# ./configure
31 -# --disable-maintainer-mode --disable-openmp
32 -# --enable-qmanifest --enable-qtegrity
33 -# - uses: vapier/coverity-scan-action@v1
34 -# with:
35 -# email: ${{ secrets.COVERITY_SCAN_EMAIL }}
36 -# token: ${{ secrets.COVERITY_SCAN_TOKEN }}
37 + coverity:
38 + runs-on: ubuntu-latest
39 + steps:
40 + - uses: actions/checkout@v2
41 + - name: configure
42 + run: >
43 + ./configure
44 + --disable-maintainer-mode --disable-openmp
45 + --enable-qmanifest --enable-qtegrity
46 + - uses: vapier/coverity-scan-action@v1
47 + with:
48 + email: ${{ secrets.COVERITY_SCAN_EMAIL }}
49 + token: ${{ secrets.COVERITY_SCAN_TOKEN }}
50
51 valgrind:
52 runs-on: ubuntu-latest