ReleaseEngineering/How To/Update TryChooser: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:


== Updating Trychooser app ==
== Updating Trychooser app ==
We need to keep the try syntax chooser webpage located at http://trychooser.pub.build.mozilla.org/ up to date so developers will continue to '''use''' it and we benefit from the lowered build/test load.
We need to keep the try syntax chooser webpage located at https://github.com/mozilla-releng/services/releng_frontend/src/static/trychooser/index.html up to date so developers will continue to '''use''' it and we benefit from the lowered build/test load.


To keep the site up to date, check out the [http://hg.mozilla.org/build/tools/file/tip/trychooser tools repo] and update index.html with new test/talos suite names - be sure to change both the value and the label.  Eg:
To keep the site up to date, check out the [https://github.com/mozilla-releng/services/releng_frontend/src/static/trychooser/index.html] and update index.html with new test/talos suite names - be sure to change both the value and the label.  Eg:


  <pre><li><label><input type="checkbox" name="talos_suite" value="SUITE_NAME">SUITE_NAME</label></li></pre>
  <pre><li><label><input type="checkbox" name="talos_suite" value="SUITE_NAME">SUITE_NAME</label></li></pre>


== Deploying Trychooser ==
== Deploying Trychooser ==
Once you've landed your patch to the webpages, to push the change to the releng web cluster:
Trychooser is webops-style app, see [[ReleaseEngineering/How_To/Update_a_Releng_Cluster_Site]] where $site is 'trychooser'.
# Check you have VPN access to relengwebadm & your SSH config has the username and SSH key set correctly.
# Connect to the MozillaVPN (skip if you have set up the jumphost in your SSH config).
# $ ssh relengwebadm.private.scl3.mozilla.com
# $ sudo -i
# $ cd /data/releng/src/trychooser
# Get your REV from https://hg.mozilla.org/build/tools/
# $ REV=753b5928284f
# $ ./update $REV

Latest revision as of 15:23, 15 August 2017


Updating Trychooser app

We need to keep the try syntax chooser webpage located at https://github.com/mozilla-releng/services/releng_frontend/src/static/trychooser/index.html up to date so developers will continue to use it and we benefit from the lowered build/test load.

To keep the site up to date, check out the [1] and update index.html with new test/talos suite names - be sure to change both the value and the label. Eg:

<li><label><input type="checkbox" name="talos_suite" value="SUITE_NAME">SUITE_NAME</label></li>

Deploying Trychooser

Trychooser is webops-style app, see ReleaseEngineering/How_To/Update_a_Releng_Cluster_Site where $site is 'trychooser'.