User:Lukasblakk/TryServerSyntax: Difference between revisions

Line 29: Line 29:
===In an hg commit message===
===In an hg commit message===
<pre>
<pre>
  # both opt/debug builds, all platforms, no unittests/talos
  # both opt/debug builds, all available {desktop,mobile} platforms, no unittests/talos
  hg commit -m "bug 432432 testing something try:b"  
  hg commit -m "bug 432432 testing something try: --build b"  


  # linux debug build, with all unittests, no talos
  # linux debug build, all available mobile platforms, all unittests, no talos
  hg commit -m "bug 432432 testing something try:d p:linux u:all"
  hg commit -m "bug 432432 testing something try: --build d --p linux --u all"


  # mobile-only builds
  # mobile-only builds
  hg commit -m "bug 432432 testing something try:o p:none"
  hg commit -m "bug 432432 testing something try: --build o --p none"


  # all builds, desktop platforms, no mobile, unittests & talos (both options work):
  # all builds, all available desktop platforms, no mobile, all unittests & talos
  hg commit -m "bug 432432 testing something try:b m:none ut:all"
  hg commit -m "bug 432432 testing something try: --build b --m none --u all --t all"
hg commit -m "bug 432432 testing something try:b m:none u:all t:all"


  # opt builds on all platforms with talos tp4 & tscroll (no unittests)
  # opt builds on all available {desktop,mobile} platforms, no unittests, talos tp4 & tscroll  
  hg commit -m "bug 432432 testing something try:o t:tp4,tscroll"
  hg commit -m "bug 432432 testing something try: --build o --t tp4,tscroll"
</pre>
</pre>


977

edits