mirror of
https://github.com/github/codeql-action.git
synced 2026-04-26 00:38:48 +00:00
Throw error on Windows too
This commit is contained in:
Generated
+2
-2
@@ -110299,9 +110299,9 @@ async function run(startedAt) {
|
||||
enableFileCoverageInformation: fileCoverageResult.enabled,
|
||||
logger
|
||||
});
|
||||
if (config.languages.includes("swift" /* swift */) && process.platform === "linux") {
|
||||
if (config.languages.includes("swift" /* swift */) && process.platform !== "darwin") {
|
||||
throw new ConfigurationError(
|
||||
`Swift analysis on Ubuntu runner images is no longer supported. Please migrate to a macOS runner.`
|
||||
`Swift analysis is only supported on macOS runner images. Please migrate to a macOS runner.`
|
||||
);
|
||||
}
|
||||
if (repositoryPropertiesResult.isFailure()) {
|
||||
|
||||
Reference in New Issue
Block a user