Skip to content
Snippets Groups Projects
Commit 3f2b0cd5 authored by Lukas Köhler's avatar Lukas Köhler
Browse files

fixed gitlab pipeline and build.gradle

parent 437b27a0
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ build: ...@@ -17,7 +17,7 @@ build:
checkstyle_main: checkstyle_main:
stage: check stage: check
script: script:
- ./gradlew check checkstyleMain - ./gradlew check checkstyleMain -x test
- cp build/reports/checkstyle/main.html ./checkstyleMain.html - cp build/reports/checkstyle/main.html ./checkstyleMain.html
artifacts: artifacts:
paths: paths:
...@@ -27,7 +27,7 @@ checkstyle_main: ...@@ -27,7 +27,7 @@ checkstyle_main:
checkstyle_test: checkstyle_test:
stage: check stage: check
script: script:
- ./gradlew check checkstyleTest - ./gradlew check checkstyleTest -x test
- cp build/reports/checkstyle/test.html ./checkstyleTest.html - cp build/reports/checkstyle/test.html ./checkstyleTest.html
artifacts: artifacts:
paths: paths:
...@@ -37,7 +37,7 @@ checkstyle_test: ...@@ -37,7 +37,7 @@ checkstyle_test:
spotbugs_main: spotbugs_main:
stage: check stage: check
script: script:
- ./gradlew check spotbugsMain - ./gradlew check spotbugsMain -x test
- cp build/reports/spotbugs/main.html ./spotbugsMain.html - cp build/reports/spotbugs/main.html ./spotbugsMain.html
artifacts: artifacts:
paths: paths:
...@@ -47,7 +47,7 @@ spotbugs_main: ...@@ -47,7 +47,7 @@ spotbugs_main:
spotbugs_test: spotbugs_test:
stage: check stage: check
script: script:
- ./gradlew check spotbugsTest - ./gradlew check spotbugsTest -x test
- cp build/reports/spotbugs/test.html ./spotbugsTest.html - cp build/reports/spotbugs/test.html ./spotbugsTest.html
artifacts: artifacts:
paths: paths:
......
import javafx.concurrent.Task
/* /*
* This file was generated by the Gradle 'init' task. * This file was generated by the Gradle 'init' task.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment