mirror of
https://github.com/github/codeql-action.git
synced 2026-04-26 00:38:48 +00:00
Merge pull request #3801 from github/henrymercer/swift-incompatible-os
Mark Swift incompatible OS as configuration error
This commit is contained in:
Generated
+6
@@ -161960,6 +161960,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Generated
+6
@@ -107434,6 +107434,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Generated
+6
@@ -104016,6 +104016,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Generated
+6
@@ -165315,6 +165315,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Generated
+11
-5
@@ -107837,6 +107837,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
@@ -110293,6 +110299,11 @@ async function run(startedAt) {
|
||||
enableFileCoverageInformation: fileCoverageResult.enabled,
|
||||
logger
|
||||
});
|
||||
if (config.languages.includes("swift" /* swift */) && process.platform !== "darwin") {
|
||||
throw new ConfigurationError(
|
||||
`Swift analysis is only supported on macOS runner images. Please migrate to a macOS runner.`
|
||||
);
|
||||
}
|
||||
if (repositoryPropertiesResult.isFailure()) {
|
||||
addNoLanguageDiagnostic(
|
||||
config,
|
||||
@@ -110377,11 +110388,6 @@ async function run(startedAt) {
|
||||
"Passing the GOFLAGS env parameter to the init action is deprecated. Please move this to the analyze action."
|
||||
);
|
||||
}
|
||||
if (config.languages.includes("swift" /* swift */) && process.platform === "linux") {
|
||||
logger.warning(
|
||||
`Swift analysis on Ubuntu runner images is no longer supported. Please migrate to a macOS runner if this affects you.`
|
||||
);
|
||||
}
|
||||
if (config.languages.includes("go" /* go */) && process.platform === "linux") {
|
||||
try {
|
||||
const goBinaryPath = await io6.which("go", true);
|
||||
|
||||
Generated
+6
@@ -104015,6 +104015,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Generated
+6
@@ -105062,6 +105062,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Generated
+6
@@ -162127,6 +162127,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Generated
+6
@@ -107067,6 +107067,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Generated
+6
@@ -161791,6 +161791,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Generated
+6
@@ -108505,6 +108505,12 @@ var cliErrorsConfig = {
|
||||
)
|
||||
]
|
||||
},
|
||||
["SwiftIncompatibleOs" /* SwiftIncompatibleOs */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp("\\[incompatible-os\\]"),
|
||||
new RegExp("Swift analysis is only supported on macOS")
|
||||
]
|
||||
},
|
||||
["UnsupportedBuildMode" /* UnsupportedBuildMode */]: {
|
||||
cliErrorMessageCandidates: [
|
||||
new RegExp(
|
||||
|
||||
Reference in New Issue
Block a user