Skip to content
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

ci: add NO_DIST to sklearnex workload #2992

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Changes from 3 commits
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
3 changes: 2 additions & 1 deletion .ci/pipeline/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,7 @@ jobs:
export PREFIX=${CONDA_PREFIX}
cd sklearnex
export PYTHON=python
export NO_DIST=1
./conda-recipe/build.sh
displayName: sklearnex build
- task: PublishPipelineArtifact@1
Expand All @@ -642,7 +643,7 @@ jobs:
conda activate CB
source $(Pipeline.Workspace)/daal/latest/env/vars.sh
ret_code=0
python -m sklearnex sklearnex/tests/run_examples.py
python -m sklearnex sklearnex/tests/run_examples.py --nodist
ethanglaser marked this conversation as resolved.
Show resolved Hide resolved
ret_code=$(($ret_code + $?))
exit $ret_code
displayName: sklearnex examples
Expand Down
Loading