Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « jobs_filtered_search « private « common « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86b8290864ca17deb4abb05760690e38052ce29e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export const jobStatusValues = [
  'CANCELED',
  'CREATED',
  'FAILED',
  'MANUAL',
  'SUCCESS',
  'PENDING',
  'PREPARING',
  'RUNNING',
  'SCHEDULED',
  'SKIPPED',
  'WAITING_FOR_RESOURCE',
];

export const JOB_RUNNER_TYPE_INSTANCE_TYPE = 'INSTANCE_TYPE';
export const JOB_RUNNER_TYPE_GROUP_TYPE = 'GROUP_TYPE';
export const JOB_RUNNER_TYPE_PROJECT_TYPE = 'PROJECT_TYPE';

export const jobRunnerTypeValues = [
  JOB_RUNNER_TYPE_INSTANCE_TYPE,
  JOB_RUNNER_TYPE_GROUP_TYPE,
  JOB_RUNNER_TYPE_PROJECT_TYPE,
];