Skip to content

Dev/omalyshe/coverity #6

Dev/omalyshe/coverity

Dev/omalyshe/coverity #6

Workflow file for this run

# Copyright (c) 2024 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Coverity Scan
on:
push:
branches: [master]
pull_request:
branches: [master]
types:
- opened
- synchronize
- reopened
permissions: read-all
env:
BUILD_CONCURRENCY: 2
COVERITY_PROJECT: oneapi-src%2FoneTBB
jobs:
coverity_linux:
name: Coverity Linux
runs-on: [ubuntu-latest]
timeout-minutes: 45
steps:
- uses: actions/checkout@v2
- name: Download Linux 64 Coverity Tool
run: |
curl https://scan.coverity.com/download/cxx/linux64 \
--no-progress-meter \
--output cov-linux64-tool.tar.gz" \
--data "token=${{secrets.COVERITY_TOKEN}}&project=${env: COVERITY_PROJECT}"
mkdir cov-linux64-tool
tar -xzf cov-linux64-tool.tar.gz --strip 1 -C cov-linux64-tool
shell: bash
- name: Build with cov-build
run: |
export PATH="${PWD}/cov-linux64-tool/bin:${PATH}"
mkdir build && cd build
cmake -DCMAKE_CXX_STANDARD=20 -DCMAKE_BUILD_TYPE=relwithdebinfo \
-DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc -DTBB_CPF=ON ..
cov-build --dir cov-int make VERBOSE=1 -j${BUILD_CONCURRENCY}
shell: bash
- name: Archive Coverity build results
run: tar -czvf cov-int.tgz cov-int
shell: bash
- name: Submit Coverity results for analysis
run: |
echo GITHUB_SHA_SHORT=${GITHUB_SHA::8} >> $GITHUB_ENV
curl \
--form token="${{ secrets.COVERITY_TOKEN }}" \
--form email="${{ secrets.COVERITY_EMAIL }}" \
--form [email protected] \
--form version="${{ inputs.version }}" \
--form description="oneTBB-master-${{ env.GITHUB_SHA_SHORT }}" \
"https://scan.coverity.com/builds?project=${env: COVERITY_PROJECT}"
shell: bash