Skip to content

Commit

Permalink
Add support for Ubuntu 24.04.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Oct 21, 2024
1 parent 60265ac commit f55528a
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 f55528a

Please sign in to comment.