diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 78ee4578c84cba19063c3f7a2f2213c6dde68319..78eb1af3ac240681c274f448f0f99ae21b7d202a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,22 +8,22 @@ cache:
 build:
   stage: build
   script:
-    - mvn $MAVEN_CLI_OPTS compile
+    - mvn compile
   tags:
     - general
 
 test:
   stage: test
   script:
-    - mvn $MAVEN_CLI_OPTS test
+    - mvn test
   tags:
     - opencl
 
 deploy:
   stage: deploy
   script:
-    - mvn $MAVEN_CLI_OPTS deploy
+    - mvn -DskipTests=true deploy
   tags:
-    - opencl
+    - general
   only:
     - master