File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed
Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,10 @@ enum BuildStatus {
2828enum BuildStage {
2929 START = 0 ;
3030 END = 1 ;
31- BUILD_WAITING = 2 ;
32- BUILD_PYTHON_WHEEL_START = 3 ;
33- BUILD_PYTHON_WHEEL_END = 4 ;
31+ ACQUIRE_START = 2 ;
32+ ACQUIRE_END = 3 ;
33+ PYTHON_WHEEL_START = 4 ;
34+ PYTHON_WHEEL_END = 5 ;
3435}
3536
3637message BuildResponse {
Original file line number Diff line number Diff line change @@ -160,7 +160,8 @@ export enum BuildStatus {
160160export enum BuildStage {
161161 START = 0 ,
162162 END = 1 ,
163- BUILD_WAITING = 2 ,
164- BUILD_PYTHON_WHEEL_START = 3 ,
165- BUILD_PYTHON_WHEEL_END = 4 ,
163+ ACQUIRE_START = 2 ,
164+ ACQUIRE_END = 3 ,
165+ PYTHON_WHEEL_START = 4 ,
166+ PYTHON_WHEEL_END = 5 ,
166167}
Original file line number Diff line number Diff line change @@ -1194,9 +1194,10 @@ proto.compiler.BuildStatus = {
11941194proto . compiler . BuildStage = {
11951195 START : 0 ,
11961196 END : 1 ,
1197- BUILD_WAITING : 2 ,
1198- BUILD_PYTHON_WHEEL_START : 3 ,
1199- BUILD_PYTHON_WHEEL_END : 4
1197+ ACQUIRE_START : 2 ,
1198+ ACQUIRE_END : 3 ,
1199+ PYTHON_WHEEL_START : 4 ,
1200+ PYTHON_WHEEL_END : 5
12001201} ;
12011202
12021203goog . object . extend ( exports , proto . compiler ) ;
You can’t perform that action at this time.
0 commit comments