From ac10eab3b93c6f390afa4303c999228d82732899 Mon Sep 17 00:00:00 2001
From: Maaz Ahmed <maaz.a@subcom.tech>
Date: Tue, 7 May 2024 16:16:44 +0530
Subject: [PATCH] chore: update gitlab CI tags

---
 .gitlab-ci.yml | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a79242d..69cebc3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,17 +3,18 @@ stages:
   - test
   - publish
 
-build:
+default:
   tags:
     - linux
+    - docker
+
+build:
   stage: build
   image: rust:latest
   script:
     - cargo build
 
 rustdoc:
-  tags:
-    - linux
   stage: build
   image: rust:latest
   script:
@@ -23,16 +24,12 @@ rustdoc:
       - target/doc
 
 unit-test:
-  tags:
-    - linux
   stage: test  
   image: rust:latest
   script:
     - cargo test --lib
 
 lint-test:  
-  tags:
-    - linux
   stage: test
   image: rust:latest
   script:
@@ -40,8 +37,6 @@ lint-test:
     - cargo clippy
 
 docs:
-  tags:
-    - linux
   stage: publish
   image: alpine
   dependencies:
@@ -53,4 +48,4 @@ docs:
     paths:
       - public
   only:
-    - master
\ No newline at end of file
+    - master
-- 
GitLab