This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider_gitlabci.ts
83 lines (70 loc) · 1.98 KB
/
provider_gitlabci.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import { IServiceParams, UploaderEnvs, UploaderInputs } from '../types'
import { parseSlugFromRemoteAddr } from '../helpers/git'
export function detect(envs: UploaderEnvs): boolean {
return Boolean(envs.GITLAB_CI)
}
function _getBuild(inputs: UploaderInputs): string {
const { args, environment: envs } = inputs
return args.build || envs.CI_BUILD_ID || envs.CI_JOB_ID || ''
}
function _getBuildURL(): string {
return ''
}
function _getBranch(inputs: UploaderInputs): string {
const { args, environment: envs } = inputs
return args.branch || envs.CI_BUILD_REF_NAME || envs.CI_COMMIT_REF_NAME || ''
}
function _getJob(): string {
return ''
}
function _getPR(inputs: UploaderInputs): string {
const { args } = inputs
return args.pr || ''
}
function _getService(): string {
return 'gitlab'
}
export function getServiceName(): string {
return 'GitLab CI'
}
function _getSHA(inputs: UploaderInputs): string {
const { args, environment: envs } = inputs
return args.sha || envs.CI_MERGE_REQUEST_SOURCE_BRANCH_SHA || envs.CI_BUILD_REF || envs.CI_COMMIT_SHA || ''
}
function _getSlug(inputs: UploaderInputs): string {
const { args, environment: envs } = inputs
if (args.slug !== '') return args.slug
const remoteAddr = envs.CI_BUILD_REPO || envs.CI_REPOSITORY_URL || ''
return (
envs.CI_PROJECT_PATH ||
parseSlugFromRemoteAddr(remoteAddr) ||
''
)
}
export function getServiceParams(inputs: UploaderInputs): IServiceParams {
return {
branch: _getBranch(inputs),
build: _getBuild(inputs),
buildURL: _getBuildURL(),
commit: _getSHA(inputs),
job: _getJob(),
pr: _getPR(inputs),
service: _getService(),
slug: _getSlug(inputs),
}
}
export function getEnvVarNames(): string[] {
return [
'CI_BUILD_ID',
'CI_BUILD_REF',
'CI_BUILD_REF_NAME',
'CI_BUILD_REPO',
'CI_COMMIT_REF_NAME',
'CI_COMMIT_SHA',
'CI_JOB_ID',
'CI_MERGE_REQUEST_SOURCE_BRANCH_SHA',
'CI_PROJECT_PATH',
'CI_REPOSITORY_URL',
'GITLAB_CI',
]
}