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

Side by Side Diff: appengine/findit/build-failure-analysis.yaml

Issue 1866883002: [Findit] A huge refactoring and some bug fixing. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fix nit. Created 4 years, 8 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
« no previous file with comments | « appengine/findit/app.yaml ('k') | appengine/findit/common/constants.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 application: findit-for-waterfall
2 module: build-failure-analysis
3 version: 1
4 runtime: python27
5 api_version: 1
6 threadsafe: true
7 instance_class: B2
8 basic_scaling:
9 max_instances: 10
10 idle_timeout: 20m
11
12 handlers:
13 - url: /robots.txt
14 static_files: robots.txt
15 upload: robots.txt
16
17 # Handler for the request process queue.
18 - url: /trigger-analyses
19 script: main.backend_application
20 secure: always
21
22 # Pipeline handler.
23 - url: /_ah/pipeline(/.*)?
24 script: "pipeline_wrapper.pipeline_handlers._APP"
25 secure: always
26
27 skip_files:
28 - ^(.*/)?#.*#$
29 - ^(.*/)?.*~$
30 - ^(.*/)?.*\.py[co]$
31 - ^(.*/)?.*_test\.py$
32 - ^(.*/)?tests\.py$
33 - ^(.*/)?\..*$
34 - ^(.*/)?.*\.md$
35 - ^(.*/)?README$
36 - ^(.*/)?Makefile$
37 - ^(.*/)?util_scripts/.*$
38
39 libraries:
40 - name: webapp2
41 version: latest
42 - name: jinja2
43 version: latest
44 - name: pycrypto
45 version: latest
46 - name: endpoints
47 version: 1.0
OLDNEW
« no previous file with comments | « appengine/findit/app.yaml ('k') | appengine/findit/common/constants.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698