Get the new build system working for enterprise
This commit is contained in:
parent
f93c0a46e8
commit
4322b5f81c
8 changed files with 319 additions and 55 deletions
|
@ -5678,6 +5678,9 @@ quayApp.directive('buildMessage', function () {
|
|||
|
||||
case 'building':
|
||||
return 'Building image from Dockerfile';
|
||||
|
||||
case 'priming-cache':
|
||||
return 'Priming cache for build';
|
||||
|
||||
case 'pushing':
|
||||
return 'Pushing image built from Dockerfile';
|
||||
|
@ -5720,6 +5723,10 @@ quayApp.directive('buildProgress', function () {
|
|||
return buildInfo.status.push_completion * 100;
|
||||
break;
|
||||
|
||||
case 'priming-cache':
|
||||
return buildInfo.status.cache_completion * 100;
|
||||
break;
|
||||
|
||||
case 'complete':
|
||||
return 100;
|
||||
break;
|
||||
|
|
Reference in a new issue