mirror of
https://github.com/gradle/actions.git
synced 2025-04-16 15:59:18 +08:00
This PR bumps references to Develocity Gradle plugin from 3.19.2 to 4.0. --------- Co-authored-by: daz <daz@gradle.com>
61 lines
2.9 KiB
TypeScript
61 lines
2.9 KiB
TypeScript
import * as core from '@actions/core'
|
|
import {BuildScanConfig} from '../configuration'
|
|
import {setupToken} from './short-lived-token'
|
|
|
|
export async function setup(config: BuildScanConfig): Promise<void> {
|
|
maybeExportVariable('DEVELOCITY_INJECTION_INIT_SCRIPT_NAME', 'gradle-actions.inject-develocity.init.gradle')
|
|
maybeExportVariable('DEVELOCITY_INJECTION_CUSTOM_VALUE', 'gradle-actions')
|
|
|
|
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENABLED', config.getDevelocityInjectionEnabled())
|
|
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_URL', config.getDevelocityUrl())
|
|
maybeExportVariableNotEmpty(
|
|
'DEVELOCITY_INJECTION_ALLOW_UNTRUSTED_SERVER',
|
|
config.getDevelocityAllowUntrustedServer()
|
|
)
|
|
maybeExportVariableNotEmpty(
|
|
'DEVELOCITY_INJECTION_CAPTURE_FILE_FINGERPRINTS',
|
|
config.getDevelocityCaptureFileFingerprints()
|
|
)
|
|
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENFORCE_URL', config.getDevelocityEnforceUrl())
|
|
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion())
|
|
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_CCUD_PLUGIN_VERSION', config.getDevelocityCcudPluginVersion())
|
|
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl())
|
|
maybeExportVariableNotEmpty(
|
|
'DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_USERNAME',
|
|
config.getGradlePluginRepositoryUsername()
|
|
)
|
|
maybeExportVariableNotEmpty(
|
|
'DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_PASSWORD',
|
|
config.getGradlePluginRepositoryPassword()
|
|
)
|
|
|
|
// If build-scan-publish is enabled, ensure the environment variables are set
|
|
// The DEVELOCITY_PLUGIN_VERSION and DEVELOCITY_CCUD_PLUGIN_VERSION are set to the latest versions
|
|
// except if they are defined in the configuration
|
|
if (config.getBuildScanPublishEnabled()) {
|
|
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true')
|
|
maybeExportVariable('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', '4.0')
|
|
maybeExportVariable('DEVELOCITY_INJECTION_CCUD_PLUGIN_VERSION', '2.1')
|
|
maybeExportVariable('DEVELOCITY_INJECTION_TERMS_OF_USE_URL', config.getBuildScanTermsOfUseUrl())
|
|
maybeExportVariable('DEVELOCITY_INJECTION_TERMS_OF_USE_AGREE', config.getBuildScanTermsOfUseAgree())
|
|
}
|
|
|
|
return setupToken(
|
|
config.getDevelocityAccessKey(),
|
|
config.getDevelocityAllowUntrustedServer(),
|
|
config.getDevelocityTokenExpiry()
|
|
)
|
|
}
|
|
|
|
function maybeExportVariable(variableName: string, value: unknown): void {
|
|
if (!process.env[variableName]) {
|
|
core.exportVariable(variableName, value)
|
|
}
|
|
}
|
|
|
|
function maybeExportVariableNotEmpty(variableName: string, value: unknown): void {
|
|
if (value !== null && value !== undefined && value !== '') {
|
|
maybeExportVariable(variableName, value)
|
|
}
|
|
}
|