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] Update GitHub actions CI linux oneAPI dependencies to reference oneDAL's #2140

Merged
merged 4 commits into from
Oct 30, 2024
Merged
Changes from all 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
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,13 @@ jobs:
timeout-minutes: 120

steps:
- name: Checkout
- name: Checkout Scikit-learn-intelex
uses: actions/checkout@v4
- name: Checkout oneDAL
uses: actions/checkout@v4
with:
repository: oneapi-src/oneDAL
path: oneDAL
- name: Install Python
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -85,7 +90,9 @@ jobs:
- name: apt-get
run: sudo apt-get update && sudo apt-get install -y clang-format
- name: dpcpp installation
run: bash .ci/scripts/install_dpcpp.sh
run: |
# This CI system yields oneAPI dependencies from the oneDAL repository
bash ./oneDAL/.ci/env/apt.sh dpcpp
- name: describe system
run: bash .ci/scripts/describe_system.sh
- name: Install develop requirements
Expand Down Expand Up @@ -142,7 +149,7 @@ jobs:
timeout-minutes: 120

steps:
- name: Checkout
- name: Checkout Scikit-learn-intelex
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
Expand Down
Loading