Changes
Page history
Better formatting, perhaps
authored
Mar 14, 2021
by
Volker Hilsheimer
Hide whitespace changes
Inline
Side-by-side
home.md
View page @
0f93896b
...
@@ -4,15 +4,19 @@ using virtual machines that run either locally, or in the cloud.
...
@@ -4,15 +4,19 @@ using virtual machines that run either locally, or in the cloud.
# Example workflows
# Example workflows
**Build local clone of Qt**
on Windows 10:
## Build local clone of Qt
on Windows 10
```
```
$ cd ~/qt/dev
$ cd ~/qt/dev
$ minicoin run build windows10
$ minicoin run build windows10
```
```
**Install official Qt package**
on macOS 11 using the
## Install official Qt package
online installer, then build a local project against it, and run it:
on macOS 11 using the online installer, then build a local project against it,
and run it:
```
```
$ minicoin run install-online macos11
$ minicoin run install-online macos11
...
@@ -21,15 +25,18 @@ $ minicoin run build macos11
...
@@ -21,15 +25,18 @@ $ minicoin run build macos11
$ minicoin cmd macos11 -- bugreport-build/bugreport
$ 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
$ cd ~/qt/dev
$ minicoin run --repeat 30 build --target tst_qwindow_check ubuntu2004
$ minicoin run --repeat 30 build --target tst_qwindow_check ubuntu2004
```
```
**Continuously build local clone of Qt**
on Windows 10 and Ubuntu 20.04
## Continuously build local clone of Qt
in parallel whenever any file changes:
on Windows 10 and Ubuntu 20.04 in parallel whenever any file changes:
```
```
cd ~/qt/dev
cd ~/qt/dev
...
...
...
...