Skip to content

Commit

Permalink
Fix Ubuntu 20.04 name for LLVM 15.0.6 (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
garymm authored Jan 17, 2023
1 parent 7ef60cc commit f4a09fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolchain/tools/llvm_release_name.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _ubuntu_osname(arch, version, major_llvm_version, llvm_version):
os_name = "linux-gnu-ubuntu-16.04"
else:
# Availability may be sparse for patch releases.
if llvm_version in ["13.0.1"]:
if llvm_version in ["15.0.6", "13.0.1"]:
os_name = "linux-gnu-ubuntu-18.04"
elif llvm_version in ["12.0.1", "11.1.0", "11.0.1", "10.0.1", "9.0.1", "8.0.1"]:
os_name = "linux-gnu-ubuntu-16.04"
Expand Down

0 comments on commit f4a09fd

Please sign in to comment.