diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9112872216ac13f88fdd534adcc2f1dc05ca2c31..6c9c36d6b9c29f931136d6fbe91dcb488aca3ae7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,12 +4,16 @@ stages:
   - publish
 
 build:
+  tags:
+    - linux
   stage: build
   image: rust:latest
   script:
     - cargo build
 
 rustdoc:
+  tags:
+    - linux
   stage: build
   image: rust:latest
   script:
@@ -19,18 +23,24 @@ 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:
     - cargo clippy
 
 docs:
+  tags:
+    - linux
   stage: publish
   image: alpine
   dependencies: