diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 33b70018e368ecc3ad019ea33e57485814eb233a..a8ebaba73ab0e744099c747e2bb682ac2508c933 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
 variables:
   RUN:
     value: "all"
-    description: "The tests that should run. Possible values: ubuntu, win, all."
+    description: "The tests that should run. Possible values: ubuntu, win, osx, all."
   GIT_DEPTH: 1
 
 stages:
@@ -51,6 +51,23 @@ build_win10_msvc:
     - cmake -DCMAKE_BUILD_TYPE=Debug ..
     - cmake --build .
 
+build_osx_clang:
+  only:
+    variables:
+      - $RUN =~ /\bosx.*/i || $RUN =~ /\ball.*/i
+  stage: build
+  tags: 
+    - osx-clang-cached
+  variables:
+    GIT_SUBMODULE_STRATEGY: recursive
+  timeout: 10m
+  retry: 1
+  script:
+    - mkdir debug
+    - cd debug
+    - cmake -DCMAKE_BUILD_TYPE=Debug ..
+    - cmake --build .
+
 deploy_doc_develop:
   only:
     variables: