Skip to content
Snippets Groups Projects
Commit d66a34da authored by Martin Mojžiš's avatar Martin Mojžiš
Browse files

Merge branch 'account-query-develop' of...

Merge branch 'account-query-develop' of gitlab.fi.muni.cz:xpitak/PA165-Banking-System into account-query-develop
parents d7b1c85b 648695ce
No related branches found
No related tags found
No related merge requests found
...@@ -4,37 +4,46 @@ stages: ...@@ -4,37 +4,46 @@ stages:
image: maven:latest image: maven:latest
test-account-management: variables:
stage: test MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version -Dmaven.test.skip=true"
tags:
- shared-fi
script:
- 'cd account-management'
- 'mvn clean install'
test-account-query:
stage: test
tags:
- shared-fi
script:
- 'cd account-query'
- 'mvn clean install'
test-infrastructure: build:
stage: test tags:
tags: - shared-fi
- shared-fi stage: build
script: script:
- 'cd infrastructure' - echo "We are building your project, $GITLAB_USER_LOGIN"
- 'mvn clean install' - cd infrastructure
- mvn clean install $MAVEN_CLI_OPTS
- cd ..
- cd account-query
- mvn clean install $MAVEN_CLI_OPTS
- cd ..
- cd account-management
- mvn clean install $MAVEN_CLI_OPTS
- cd ..
- cd transaction-processor
- mvn clean install $MAVEN_CLI_OPTS
- cd ..
artifacts:
expire_in: 10 min
paths:
- "*/target/*.jar"
test-transaction-processor: test:
stage: test tags:
tags: - shared-fi
- shared-fi stage: test
script: script:
- 'cd infrastructure' - cd infrastructure
- 'mvn clean install' - mvn clean install $MAVEN_CLI_OPTS
- 'cd ..' - cd ..
- 'cd account-management'
- 'mvn verify'
- cd ..
- 'cd account-query'
- 'mvn verify'
- cd ..
- 'cd transaction-processor' - 'cd transaction-processor'
- 'mvn clean install' - 'mvn verify'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment