Better formatting, perhaps authored by Volker Hilsheimer's avatar Volker Hilsheimer
......@@ -4,15 +4,19 @@ using virtual machines that run either locally, or in the cloud.
# Example workflows
**Build local clone of Qt** on Windows 10:
## Build local clone of Qt
on Windows 10
```
$ cd ~/qt/dev
$ minicoin run build windows10
```
**Install official Qt package** on macOS 11 using the
online installer, then build a local project against it, and run it:
## Install official Qt package
on macOS 11 using the online installer, then build a local project against it,
and run it:
```
$ minicoin run install-online macos11
......@@ -21,15 +25,18 @@ $ minicoin run build macos11
$ minicoin cmd macos11 -- bugreport-build/bugreport
```
**Run QWindow test repeatedly** 30 times on Ubuntu 20.04 to see if it's flaky:
## Run QWindow test repeatedly
30 times on Ubuntu 20.04 to see if it's flaky:
```
$ cd ~/qt/dev
$ minicoin run --repeat 30 build --target tst_qwindow_check ubuntu2004
```
**Continuously build local clone of Qt** on Windows 10 and Ubuntu 20.04
in parallel whenever any file changes:
## Continuously build local clone of Qt
on Windows 10 and Ubuntu 20.04 in parallel whenever any file changes:
```
cd ~/qt/dev
......
......