monado/.gitlab-ci/windows
2024-07-04 13:27:16 -04:00
..
Dockerfile.build ci: First pass for Windows CI 2022-05-19 18:02:15 -05:00
Dockerfile.vs2022 ci: Improve Windows CI scripts 2022-10-27 09:38:13 -05:00
monado_build.ps1 ci: Try to avoid confusing Enter-VsDevShell with commit messages. 2022-10-28 20:14:31 +01:00
monado_container.ps1 ci: Improve Windows CI scripts 2022-10-27 09:38:13 -05:00
monado_deps_build.ps1 ci: bump windows image 2024-07-04 13:27:16 -04:00
monado_deps_vs2022.ps1 ci: First pass for Windows CI 2022-05-19 18:02:15 -05:00
README.md ci: First pass for Windows CI 2022-05-19 18:02:15 -05:00

Native Windows GitLab CI builds

We are using the same basic approach to Windows CI building as Mesa, just as we do on Linux. See https://gitlab.freedesktop.org/mesa/mesa/-/tree/main/.gitlab-ci/windows for the details there. The following is the Mesa readme, lightly modified to fit Monado.

Unlike Linux, Windows cannot reuse the freedesktop ci-templates as they exist as we do not have Podman, Skopeo, or even Docker-in-Docker builds available under Windows.

We still reuse the same model: build a base container with the core operating system and infrequently-changed build dependencies, then execute Monado builds only inside that base container. This is open-coded in PowerShell scripts.

Base container build

The base container build jobs execute the monado_container.ps1 script which reproduces the ci-templates behaviour. It looks for the registry image in the user's namespace, and exits if found. If not found, it tries to copy the same image tag from the upstream Monado repository. If that is not found, the image is rebuilt inside the user's namespace.

The rebuild executes docker build which calls monado_deps_*.ps1 inside the container to fetch and install all build dependencies. This includes Visual Studio Build Tools (downloaded from Microsoft, under the license which allows use by open-source projects), and other build tools from Scoop. (These are done as two separate jobs to allow "resuming from the middle".)

This job is executed inside a Windows shell environment directly inside the host, without Docker.

Monado build

The Monado build runs inside the base container, executing mesa_build.ps1. This simply compiles Monado using CMake and Ninja, executing the build and unit tests.

Local testing

To try these scripts locally, you need this done once, rebooting after they are complete:

scoop install sudo
sudo Add-MpPreference -ExclusionProcess dockerd.exe
sudo Add-MpPreference -ExclusionProcess docker.exe
winget install stevedore
sudo Add-MpPreference -ExclusionPath c:\ProgramData\docker

then this, done when you want to test:

docker context use desktop-windows

before doing your normal docker build ., etc. (It may still be very slow despite the virus scanning exclusions.)

If you're having issues accessing the network, see this comment's instructions: https://github.com/docker/for-win/issues/9847#issuecomment-832674649