mirror of https://github.com/aminya/setup-cpp
fix: fix llvm 5.0.0 on ubuntu
This commit is contained in:
parent
3ee98813ad
commit
88920a2a1a
|
@ -4,7 +4,6 @@ import * as io from "@actions/io"
|
|||
import * as tc from "@actions/tool-cache"
|
||||
import * as path from "path"
|
||||
import semverLte from "semver/functions/lte"
|
||||
import semverLt from "semver/functions/lt"
|
||||
import { isValidUrl } from "../utils/http/validate_url"
|
||||
|
||||
//================================================
|
||||
|
@ -189,7 +188,7 @@ function getLinuxUrl(versionGiven: string): string {
|
|||
}
|
||||
|
||||
const prefix = "clang+llvm-"
|
||||
const suffix = semverLt(version, "6.0.0") ? `linux-x86_64${ubuntu}.tar.xz` : `-x86_64-linux-gnu${ubuntu}.tar.xz`
|
||||
const suffix = version === "5.0.0" ? `-linux-x86_64${ubuntu}.tar.xz` : `-x86_64-linux-gnu${ubuntu}.tar.xz`
|
||||
if (semverLte(version, "9.0.1")) {
|
||||
return getReleaseUrl(version, prefix, suffix)
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue