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

Side by Side Diff: appengine/chromium_cq_status/README

Issue 2056663002: Removed timeline code (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | appengine/chromium_cq_status/handlers/builder_timeline_data.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # INSTALLING NODE/NPM/BOWER 1 # INSTALLING NODE/NPM/BOWER
2 2
3 The version of npm in apt-get is too old for bower. 3 The version of npm in apt-get is too old for bower.
4 # Ensure ~/local/bin is on $PATH 4 # Ensure ~/local/bin is on $PATH
5 $ mkdir ~/local 5 $ mkdir ~/local
6 $ export PATH="$HOME/local/bin:$PATH" 6 $ export PATH="$HOME/local/bin:$PATH"
7 # Install Node 7 # Install Node
8 $ mkdir -p /tmp/node-install && cd /tmp/node-install 8 $ mkdir -p /tmp/node-install && cd /tmp/node-install
9 $ curl https://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-component s=1 9 $ curl https://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-component s=1
10 $ ./configure --prefix=${HOME}/local 10 $ ./configure --prefix=${HOME}/local
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 karma: test runner. Runs the unit tests in an instance of Chrome and pipes the 88 karma: test runner. Runs the unit tests in an instance of Chrome and pipes the
89 results to the command line. By default, it watches for changes to files 89 results to the command line. By default, it watches for changes to files
90 and will automatically re-run the tests. To run once and exit, use 90 and will automatically re-run the tests. To run once and exit, use
91 'karma start --single-run' or 'make single-test'. 91 'karma start --single-run' or 'make single-test'.
92 92
93 mocha: testing framework. Provides good asynchronous and synchronous test 93 mocha: testing framework. Provides good asynchronous and synchronous test
94 support. Tests run serially, so exceptions are reported for the right 94 support. Tests run serially, so exceptions are reported for the right
95 test case. 95 test case.
96 96
97 chai: assertion library. 97 chai: assertion library.
98
99 catapult: Project containing Trace Viewer, used as the front-end for the
100 timeline view.
OLDNEW
« no previous file with comments | « no previous file | appengine/chromium_cq_status/handlers/builder_timeline_data.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698