Skip to content

Commit

Permalink
Add support for Ubuntu 24.04. (#717)
Browse files Browse the repository at this point in the history
Part of rapidsai/build-planning#74.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - James Lamb (https://github.com/jameslamb)

URL: #717
  • Loading branch information
bdice authored Oct 24, 2024
1 parent 60265ac commit 1f89af5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ci/compute-matrix.jq
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ def compute_arch($x):

def compute_ubuntu_version($x):
if
$x.CUDA_VER >= "12.5" # Ubuntu 24.04 nvidia/cuda images were added starting with CUDA 12.5
then
["ubuntu", "24.04"]
elif
$x.CUDA_VER >= "11.7" # Ubuntu 22.04 nvidia/cuda images were added starting with CUDA 11.7
then
["ubuntu", "22.04"]
Expand Down

0 comments on commit 1f89af5

Please sign in to comment.