Skip to content
Snippets Groups Projects
Commit 07e0f090842c authored by Boris Feld's avatar Boris Feld
Browse files

Update README for the launch.sh rewriting in Python

parent c997aef40c0a
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
You can follow the Dockerfile content which is basically: You can follow the Dockerfile content which is basically:
* Install the dependencies with `pip install -r requirements.txt` * Install the dependencies with `pip install -r requirements.txt`
* Prepare the repos, asv specifics file and launch the workers with: `./launch.sh` * Prepare the repos, asv specifics file and launch the workers with: `./launch.py`
* Get the webserver running for showing the results with: `asv preview` * Get the webserver running for showing the results with: `asv preview`
For pull/push benchmark with ssh you have to setup a ssh-key without passphrase (or rely on ssh-agent). For pull/push benchmark with ssh you have to setup a ssh-key without passphrase (or rely on ssh-agent).
...@@ -41,8 +41,8 @@ ...@@ -41,8 +41,8 @@
How to run all benchmarks on the default revisions How to run all benchmarks on the default revisions
-------------------------------------------------- --------------------------------------------------
$ ./launch.sh $ ./launch.py
How to run all benchmarks on specific revisions How to run all benchmarks on specific revisions
----------------------------------------------- -----------------------------------------------
...@@ -45,8 +45,8 @@ ...@@ -45,8 +45,8 @@
How to run all benchmarks on specific revisions How to run all benchmarks on specific revisions
----------------------------------------------- -----------------------------------------------
$ ./launch.sh "0b63a6743010+33ac6a72308a" $ ./launch.py "0b63a6743010+33ac6a72308a"
(any revset are supported) (any revset are supported)
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
Running one benchmark only Running one benchmark only
$ ./launch.sh "0b63a6743010+33ac6a72308a" --bench track_commit $ ./launch.py "0b63a6743010+33ac6a72308a" --bench track_commit
Running one pypy variant only Running one pypy variant only
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
Running one pypy variant only Running one pypy variant only
$ ./launch.sh "0b63a6743010+33ac6a72308a" --bench "netbeans-2018" $ ./launch.py "0b63a6743010+33ac6a72308a" --bench "netbeans-2018"
Running one test with one variant Running one test with one variant
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
Running one test with one variant Running one test with one variant
$ ./launch.sh "0b63a6743010+33ac6a72308a" --bench "track_commit.*mozilla-central" $ ./launch.py "0b63a6743010+33ac6a72308a" --bench "track_commit.*mozilla-central"
Comparing results Comparing results
================= =================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment