Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
icfaust authored Oct 15, 2024
1 parent c6a3989 commit 277135b
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,31 +118,29 @@ jobs:
source .github/scripts/activate_components.sh
cd .ci
../conda-recipe/run_test.sh
ls -lha
ls -lha ..
- name: Archive sklearnex coverage data
uses: actions/upload-artifact@v4
with:
name: coverage_Python${{ matrix.PYTHON_VERSION }}_Sklearn${{ matrix.SKLEARN_VERSION }}_sklearnex
path: .ci/.coverage
include-hidden-files: true
- name: Sklearn testing
run: |
source venv/bin/activate
source .github/scripts/activate_components.sh
bash .ci/scripts/run_sklearn_tests.sh
- name: Collect Coverage data
run: |
mkdir cov
mv .ci/.coverage ./cov/.coverage.sklearnex
mv .coverage ./cov/.coverage.sklearn
cp .coveragerc ./cov/.coveragerc
- name: Archive sklearn coverage data
uses: actions/upload-artifact@v4
with:
name: coverage_Python${{ matrix.PYTHON_VERSION }}_Sklearn${{ matrix.SKLEARN_VERSION }}_sklearn
path: .ci/.coverage
include-hidden-files: true
- name: Sklearn testing [preview]
run: |
source venv/bin/activate
source .github/scripts/activate_components.sh
export SKLEARNEX_PREVIEW='YES'
bash .ci/scripts/run_sklearn_tests.sh
- name: Archive coverage data
uses: actions/upload-artifact@v4
with:
name: coverage_Python${{ matrix.PYTHON_VERSION }}_Sklearn${{ matrix.SKLEARN_VERSION }}
path: ./cov
include-hidden-files: true
sklearn_win:
strategy:
Expand Down

0 comments on commit 277135b

Please sign in to comment.