Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PA165 Banking System
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Filip Piták
PA165 Banking System
Commits
7f2d3fa7
There was an error fetching the commit references. Please try again later.
Commit
7f2d3fa7
authored
11 months ago
by
Martin Mojžiš
Browse files
Options
Downloads
Patches
Plain Diff
Update .gitlab-ci.yml file
parent
96c869be
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+36
-30
36 additions, 30 deletions
.gitlab-ci.yml
with
36 additions
and
30 deletions
.gitlab-ci.yml
+
36
−
30
View file @
7f2d3fa7
...
...
@@ -4,37 +4,43 @@ stages:
image
:
maven:latest
test-account-management
:
stage
:
test
tags
:
-
shared-fi
script
:
-
'
cd
account-management'
-
'
mvn
clean
install'
variables
:
MAVEN_CLI_OPTS
:
"
--batch-mode
--errors
--fail-at-end
--show-version
-Dmaven.test.skip=true"
test-account-query
:
stage
:
test
tags
:
-
shared-fi
script
:
-
'
cd
account-query'
-
'
mvn
clean
install'
test-infrastructure
:
stage
:
test
tags
:
-
shared-fi
script
:
-
'
cd
infrastructure'
-
'
mvn
clean
install'
build
:
tags
:
-
shared-fi
stage
:
build
script
:
-
echo "We are building your project, $GITLAB_USER_LOGIN"
-
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
:
stage
:
test
tags
:
-
shared-fi
script
:
-
'
cd
infrastructure'
-
'
mvn
clean
install'
-
'
cd
..'
test
:
tags
:
-
shared-fi
stage
:
test
script
:
-
'
cd
account-management'
-
'
mvn
verify'
-
cd ..
-
'
cd
account-query'
-
'
mvn
verify'
-
cd ..
-
'
cd
transaction-processor'
-
'
mvn
clean
install
'
-
'
mvn
verify
'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment