Skip to content

Latest commit

 

History

History
116 lines (74 loc) · 3.22 KB

File metadata and controls

116 lines (74 loc) · 3.22 KB

import Video from '../../src/components/video/video';

Getting started

This guide will demonstrate how to setup build and test automation for your Unity project hosted on gitlab using gitlab-ci.

Overall steps

  1. Understand how gitlab-ci works.
  2. Add build scripts and gitlab-ci integration in your Unity project
  3. Configure a license for Unity.
  4. Successfully build and test your Unity project 🎉

First time using Gitlab CI?

Read the official documentation about Getting started with GitLab CI/CD.

Any subsequent steps assume you have read the above.

Supported versions

The unity3d-gitlab-ci-example project uses unity3d docker images published by game-ci.

:::tip

Before proceeding, verify that your Unity version is supported by checking the Docker > Versions page.

:::

It is generally considered good practice to use the same Unity version for your CI/CD setup as you do to develop your project. Our Gitlab CI configuration will automatically detect and use the correct Unity version for your project.

Video tutorial