Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: appengine/findit/model/build_analysis.py

Issue 838003004: [Findit] Add three sub-pipelines to analyze build failure. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: . Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from google.appengine.ext import ndb 5 from google.appengine.ext import ndb
6 6
7 from model.base_build_model import BaseBuildModel 7 from model.base_build_model import BaseBuildModel
8 from model.build_analysis_status import BuildAnalysisStatus 8 from model.build_analysis_status import BuildAnalysisStatus
9 9
10 10
(...skipping 27 matching lines...) Expand all
38 38
39 # Information of the analyzed build. 39 # Information of the analyzed build.
40 build_start_time = ndb.DateTimeProperty(indexed=True) 40 build_start_time = ndb.DateTimeProperty(indexed=True)
41 41
42 # Information of analysis processing. 42 # Information of analysis processing.
43 pipeline_url = ndb.StringProperty(indexed=False) 43 pipeline_url = ndb.StringProperty(indexed=False)
44 status = ndb.IntegerProperty( 44 status = ndb.IntegerProperty(
45 default=BuildAnalysisStatus.PENDING, indexed=False) 45 default=BuildAnalysisStatus.PENDING, indexed=False)
46 start_time = ndb.DateTimeProperty(indexed=False) 46 start_time = ndb.DateTimeProperty(indexed=False)
47 updated_time = ndb.DateTimeProperty(indexed=False) 47 updated_time = ndb.DateTimeProperty(indexed=False)
48
49 # Analysis result.
50 result = ndb.JsonProperty(indexed=False, compressed=True)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698