From a07f81a0df4fdfd1bf330a4ae1ae21a60f508f9e Mon Sep 17 00:00:00 2001
From: Sjoerd Simons <sjoerd@collabora.com>
Date: Fri, 9 Oct 2020 08:49:44 +0200
Subject: [PATCH] Switch to lightweight runner for build

Using a heavyweight runner is quicker even; but not by a significant
enough margin to warrent using one. So use a lightweight runner for the
build

Signed-off-by: Sjoerd Simons <sjoerd@collabora.com>
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 422e484..e97912b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,7 +6,7 @@ build:
   stage: build
   image: rust:slim
   tags:
-    - heavyweight
+    - lightweight
   before_script:
     - apt update && apt install -y libssl-dev pkg-config
   script:
-- 
GitLab