Note: The Parallels executor works the same as the VirtualBox executor. The caching feature is currently not supported.
VirtualBox allows you to use VirtualBox's virtualization to provide a clean build environment for every build. This executor supports all systems that can be run on VirtualBox. The only requirement is that the virtual machine exposes its SSH server and provide a bash-compatible shell.
Table of Contents generated with DocToc
The project's source code is checked out to: ~/builds/<namespace>/<project-name>
.
Where:
<namespace>
is the namespace where the project is stored on GitLab<project-name>
is the name of the project as it is stored on GitLab
To overwrite the ~/builds
directory, specify the builds_dir
option under
the [[runners]]
section in
config.toml
.
- Import or create a new virtual machine in VirtualBox
- Log into the new virtual machine
- If on Windows, install Cygwin
- Install the OpenSSH server
- Install all other dependencies required by your build
- Log out and shutdown the virtual machine
It's completely fine to use automation tools like Vagrant to provision the virtual machine.
- Install GitLab Runner on the host running VirtualBox
- Register a new GitLab Runner with
gitlab-ci-multi-runner register
- Select the
virtualbox
executor - Enter the name of the base virtual machine you created earlier (find it under the settings of the virtual machine General > Basic > Name)
- Enter the SSH
user
andpassword
or path toidentity_file
of the virtual machine
When a new build is started:
- A unique name for the virtual machine is generated:
runner-<short-token>-concurrent-<id>
- The virtual machine is cloned if it doesn't exist
- The port forward rules are created to access the SSH server
- The Runner starts or restores the snapshot of the virtual machine
- The Runner waits for the SSH server to become accessible
- The Runner creates a snapshot of the running virtual machine (this is done to speed up any next builds)
- The Runner connects to the virtual machine and executes a build
- The Runner stops or shutdowns the virtual machine