Skip to content
Snippets Groups Projects
Verified Commit 593b0e3d authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Finally fixing the release CI

parent 06072363
Branches
Tags
Loading
Pipeline #610 failed
......@@ -21,8 +21,9 @@ build:
stage: "build"
script:
- "./gradlew build"
except:
- "tags"
rules:
- if: "$CI_COMMIT_BRANCH == 'master'"
when: always
test:
stage: "test"
......@@ -34,8 +35,11 @@ test:
reports:
junit:
- "build/test-results/**/TEST-*.xml"
except:
- "tags"
rules:
- if: "$CI_COMMIT_BRANCH == 'master'"
when: always
dependencies:
- "build"
release:
stage: "release"
......@@ -47,6 +51,7 @@ release:
- "build/libs/*"
dependencies:
- "build"
- "test"
rules:
- if: "$CI_COMMIT_TAG != '' && $CI_COMMIT_BRANCH == 'master'"
when: always
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment