-
Notifications
You must be signed in to change notification settings - Fork 225
Update SW and OS versions in CI #3344
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
base: main
Are you sure you want to change the base?
Changes from all commits
d31f5be
90afdde
3a1e0e7
982042d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -130,7 +130,6 @@ if [ "${cross_compile}" == "yes" ]; then | |
| cmake_options=(-DCMAKE_TOOLCHAIN_FILE="${toolchain_file}" | ||
| -DCMAKE_BUILD_TYPE=Release | ||
| -DTBB_TEST=OFF | ||
| -DTBB_STRICT_PROTOTYPES=OFF | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some information on this change would be nice. |
||
| -DCMAKE_INSTALL_PREFIX="${tbb_prefix}" | ||
| "${tbb_src}" | ||
| ) | ||
|
|
@@ -146,7 +145,6 @@ else | |
| -DCMAKE_C_COMPILER="${CC}" | ||
| -DCMAKE_BUILD_TYPE=Release | ||
| -DTBB_TEST=OFF | ||
| -DTBB_STRICT_PROTOTYPES=OFF | ||
| -DCMAKE_INSTALL_PREFIX="${tbb_prefix}" | ||
| "${tbb_src}" | ||
| ) | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -25,12 +25,12 @@ pr: | |||||
|
|
||||||
| variables: | ||||||
| OPENBLAS_VERSION : 'v0.3.27' | ||||||
| TBB_VERSION : 'v2021.10.0' | ||||||
| TBB_VERSION : 'v2022.2.0' | ||||||
icfaust marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| VM_IMAGE : 'ubuntu-24.04' | ||||||
| WIN_VM_IMAGE : 'windows-2022' | ||||||
| WIN_VM_IMAGE : 'windows-2025' | ||||||
| SYSROOT_OS: 'noble' | ||||||
| PY_VERSION: '3.11' | ||||||
| SKL_VERSION: '1.5' | ||||||
| PY_VERSION: '3.13' | ||||||
| SKL_VERSION: '1.7' | ||||||
| # Link to latest version can be taken from basekit download page: | ||||||
| # https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html | ||||||
| # Check section 'Install through a Command Line': | ||||||
|
|
@@ -134,11 +134,10 @@ jobs: | |||||
| platform.type : 'lnxriscv64' | ||||||
| OPENBLAS_VERSION : 'v0.3.27' | ||||||
| OPENBLAS_CACHE_DIR : $(Pipeline.Workspace)/openblas-riscv64-clang | ||||||
| TBB_VERSION : 'v2021.10.0' | ||||||
| TBB_CACHE_DIR : $(Pipeline.Workspace)/tbb-riscv64-clang | ||||||
| SYSROOT_CACHE_DIR: $(Pipeline.Workspace)/sysroot-riscv64 | ||||||
| pool: | ||||||
| vmImage: 'ubuntu-22.04' | ||||||
| vmImage: 'ubuntu-24.04' | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| steps: | ||||||
| - script: | | ||||||
| .ci/env/apt.sh dev-base | ||||||
|
|
@@ -147,8 +146,8 @@ jobs: | |||||
| .ci/env/apt.sh gnu-cross-compilers riscv64 | ||||||
| displayName: 'riscv64-compiler installation' | ||||||
| - script: | | ||||||
| .ci/env/apt.sh llvm-version 18 | ||||||
| displayName: 'llvm 18 installation' | ||||||
| .ci/env/apt.sh llvm-version 20 | ||||||
| displayName: 'llvm 20 installation' | ||||||
| - script: | | ||||||
| .ci/env/apt.sh qemu-deb | ||||||
| displayName: 'qemu-emulation installation' | ||||||
|
|
@@ -367,7 +366,7 @@ jobs: | |||||
| maxParallel: 2 | ||||||
| strategy: | ||||||
| matrix: | ||||||
| Python311: | ||||||
| Python313: | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| PYTHON_VERSION: '$(PY_VERSION)' | ||||||
| SKLEARN_VERSION: '$(SKL_VERSION)' | ||||||
| steps: | ||||||
|
|
@@ -470,7 +469,7 @@ jobs: | |||||
| maxParallel: 2 | ||||||
| strategy: | ||||||
| matrix: | ||||||
| Python311: | ||||||
| Python313: | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| PYTHON_VERSION: '$(PY_VERSION)' | ||||||
| SKLEARN_VERSION: '$(SKL_VERSION)' | ||||||
| steps: | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This qemu installation continues to be a high-maintenace aspect. Is this something that renovatebot can manage for us given it comes from an apt install?