|
1 | 1 | import * as core from "@actions/core";
|
2 | 2 |
|
3 |
| -import { getOptionalInput, getTemporaryDirectory } from "./actions-util"; |
| 3 | +import { getTemporaryDirectory } from "./actions-util"; |
4 | 4 | import { getGitHubVersion } from "./api-client";
|
5 | 5 | import { CodeQL, getCodeQL } from "./codeql";
|
6 | 6 | import * as configUtils from "./config-utils";
|
7 |
| -import { Feature, Features } from "./feature-flags"; |
| 7 | +import { Feature, featureConfig, Features } from "./feature-flags"; |
8 | 8 | import { isTracedLanguage, Language } from "./languages";
|
9 | 9 | import { Logger } from "./logging";
|
10 | 10 | import { parseRepositoryNwo } from "./repository";
|
11 |
| -import { codeQlVersionAbove, getRequiredEnvParam } from "./util"; |
| 11 | +import { getRequiredEnvParam } from "./util"; |
12 | 12 |
|
13 | 13 | export async function determineAutobuildLanguages(
|
14 | 14 | config: configUtils.Config,
|
@@ -99,46 +99,34 @@ export async function determineAutobuildLanguages(
|
99 | 99 | }
|
100 | 100 |
|
101 | 101 | async function setupCppAutobuild(codeql: CodeQL, logger: Logger) {
|
102 |
| - const envVar = "CODEQL_EXTRACTOR_CPP_AUTOINSTALL_DEPENDENCIES"; |
103 |
| - const actionInput = getOptionalInput("cpp-autoinstall-dependencies"); |
| 102 | + const envVar = featureConfig[Feature.CppDependencyInstallation].envVar; |
104 | 103 | const featureName = "C++ automatic installation of dependencies";
|
105 |
| - if (actionInput === "true") { |
106 |
| - if (!(await codeQlVersionAbove(codeql, "2.15.0"))) { |
107 |
| - logger.warning( |
108 |
| - `${featureName} was explicitly requested but is only available starting from CodeQL version 2.15.0, disabling it`, |
109 |
| - ); |
| 104 | + const gitHubVersion = await getGitHubVersion(); |
| 105 | + const repositoryNwo = parseRepositoryNwo( |
| 106 | + getRequiredEnvParam("GITHUB_REPOSITORY"), |
| 107 | + ); |
| 108 | + const features = new Features( |
| 109 | + gitHubVersion, |
| 110 | + repositoryNwo, |
| 111 | + getTemporaryDirectory(), |
| 112 | + logger, |
| 113 | + ); |
| 114 | + if (await features.getValue(Feature.CppDependencyInstallation, codeql)) { |
| 115 | + // disable autoinstall on self-hosted runners unless explicitly requested |
| 116 | + if ( |
| 117 | + process.env["RUNNER_ENVIRONMENT"] === "self-hosted" && |
| 118 | + process.env[envVar] !== "true" |
| 119 | + ) { |
| 120 | + logger.info(`Disabling ${featureName} as we are on a self-hosted runner`); |
| 121 | + logger.info(`This can be enabled by setting ${envVar}: true in the env`); |
110 | 122 | core.exportVariable(envVar, "false");
|
111 | 123 | } else {
|
112 |
| - logger.info( |
113 |
| - `${ |
114 |
| - actionInput === "true" ? "Enabling" : "Disabling" |
115 |
| - } ${featureName} explicitly requested`, |
116 |
| - ); |
117 |
| - core.exportVariable(envVar, actionInput); |
118 |
| - } |
119 |
| - } else if (process.env["RUNNER_ENVIRONMENT"] === "self-hosted") { |
120 |
| - logger.info( |
121 |
| - `Disabling ${featureName} which is the default for self-hosted runners`, |
122 |
| - ); |
123 |
| - core.exportVariable(envVar, "false"); |
124 |
| - } else { |
125 |
| - const gitHubVersion = await getGitHubVersion(); |
126 |
| - const repositoryNwo = parseRepositoryNwo( |
127 |
| - getRequiredEnvParam("GITHUB_REPOSITORY"), |
128 |
| - ); |
129 |
| - const features = new Features( |
130 |
| - gitHubVersion, |
131 |
| - repositoryNwo, |
132 |
| - getTemporaryDirectory(), |
133 |
| - logger, |
134 |
| - ); |
135 |
| - if (await features.getValue(Feature.CppDependencyInstallation, codeql)) { |
136 |
| - logger.info(`Enabling ${featureName}`); |
| 124 | + logger.info(`Enabling ${featureName}`); |
137 | 125 | core.exportVariable(envVar, "true");
|
138 |
| - } else { |
139 |
| - logger.info(`Disabling ${featureName}`); |
140 |
| - core.exportVariable(envVar, "false"); |
141 | 126 | }
|
| 127 | + } else { |
| 128 | + logger.info(`Disabling ${featureName}`); |
| 129 | + core.exportVariable(envVar, "false"); |
142 | 130 | }
|
143 | 131 | }
|
144 | 132 |
|
|
0 commit comments