From 4d617ae9bfb7e760196ad8c6248e7b435092f17a Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Tue, 29 Sep 2020 23:25:28 -0400 Subject: [PATCH] Improved deploy step to skip tests. --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 78ee4578..78eb1af3 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 -- GitLab