rapidsai / cucim

cuCIM - RAPIDS GPU-accelerated image processing library
https://docs.rapids.ai/api/cucim/stable/
Apache License 2.0
356 stars 61 forks source link

Fix wheel tests for Rocky Linux 8. #774

Closed bdice closed 2 months ago

bdice commented 2 months ago

Recently RAPIDS added wheel tests on Rocky Linux 8. This requires a change to support installing dependencies with yum on Rocky Linux 8.

bdice commented 2 months ago

See failure here: https://github.com/rapidsai/cucim/actions/runs/10714414951/job/29708066437#step:8:227

ci/test_wheel.sh: line 14: apt: command not found
jameslamb commented 2 months ago

/merge

bdice commented 2 months ago

@jameslamb I thought yesterday that I had missed something in this PR, but it turns out that we're fine. We need EPEL (Extra Packages for Enterprise Linux) to get openslide, but we're already enabling that in citestwheel: https://github.com/rapidsai/ci-imgs/blob/e0ffa9bae4a6cb998e594a1f9bc3916780516b21/citestwheel.Dockerfile#L47

So we're in the clear, and this PR was sufficient to make nightly tests pass.

jameslamb commented 2 months ago

ah great, thanks for that!