From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BA1E4158018 for ; Tue, 5 Oct 2021 03:20:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7093E0916; Tue, 5 Oct 2021 03:20:25 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30984E0916 for ; Tue, 5 Oct 2021 03:20:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C506342DA2 for ; Tue, 5 Oct 2021 03:20:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D629FDC for ; Tue, 5 Oct 2021 03:20:22 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1633404021.6e4bb601f5b03660a2064b9acb5cbf4965e5189e.vapier@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: .github/workflows/ X-VCS-Repository: proj/pax-utils X-VCS-Files: .github/workflows/coverity.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 6e4bb601f5b03660a2064b9acb5cbf4965e5189e X-VCS-Branch: master Date: Tue, 5 Oct 2021 03:20:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 33744d47-8038-407c-b6cc-60a8872e661c X-Archives-Hash: 2078fa047ea13667978f830b99701597 commit: 6e4bb601f5b03660a2064b9acb5cbf4965e5189e Author: Mike Frysinger gentoo org> AuthorDate: Tue Oct 5 02:27:23 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Oct 5 03:20:21 2021 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=6e4bb601 switch to Coverity Scan GH action Signed-off-by: Mike Frysinger gentoo.org> .github/workflows/coverity.yml | 36 +++++------------------------------- 1 file changed, 5 insertions(+), 31 deletions(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 0cdfec2..f8ae34b 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -16,37 +16,11 @@ jobs: cc: [gcc] runs-on: ${{ matrix.os }} env: - COVERITY_EMAIL: vapier@gentoo.org - COVERITY_PROJECT: gentoo%2Fpax-utils CC: ${{ matrix.cc }} steps: - uses: actions/checkout@v2 - - - name: Download Coverity Build Tool - run: | - wget -nv https://scan.coverity.com/download/cxx/linux64 \ - --post-data "token=${TOKEN}&project=${COVERITY_PROJECT}" \ - -O cov-analysis-linux64.tar.gz - mkdir cov-analysis - tar -xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis - env: - TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} - - - name: Build with cov-build - run: | - export PATH="${PWD}/cov-analysis/bin:${PATH}" - cov-build --dir cov-int make - - - name: Submit the result to Coverity Scan - run: | - tar -czvf cov-int.tgz cov-int - curl \ - --form project="${COVERITY_PROJECT}" \ - --form token="${TOKEN}" \ - --form email="${COVERITY_EMAIL}" \ - --form file=@cov-int.tgz \ - --form version="${GITHUB_SHA}" \ - --form description="pax-utils git" \ - "https://scan.coverity.com/builds?project=${COVERITY_PROJECT}" - env: - TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} + - uses: vapier/coverity-scan-action@v0 + with: + project: gentoo%2Fpax-utils + email: vapier@gentoo.org + token: ${{ secrets.COVERITY_SCAN_TOKEN }}