Skip to content

Enable Coverity scan for C++ #2533

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .ci/pipeline/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,15 @@ jobs:
displayName: 'Install Coverity tool'
- script: |
cd $(Build.Repository.LocalPath)
$(COVERITY_TOOL_HOME)/bin/cov-build --dir cov-int --no-command --fs-capture-search .
conda config --append channels conda-forge
conda config --set channel_priority strict
conda update -y -q conda
conda create -y -q -n CB -c conda-forge python=$(python.version) dal-devel impi-devel
. /usr/share/miniconda/etc/profile.d/conda.sh
conda activate CB
pip install -r dependencies-dev
export DALROOT=$CONDA_PREFIX
$(COVERITY_TOOL_HOME)/bin/cov-build --dir cov-int -- python setup.py build_ext --inplace
zip -r daal4py.zip cov-int
displayName: 'Perform Coverity scan'
- script: |
Expand Down
Loading