Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
student-tournament-hub
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Schneider Stefan
student-tournament-hub
Commits
021a6f3c
Commit
021a6f3c
authored
1 year ago
by
Fischer Jonas
Browse files
Options
Downloads
Patches
Plain Diff
Update .gitlab-ci.yml file
parent
5bb27b68
No related branches found
Branches containing commit
No related tags found
Loading
Pipeline
#58015
failed
1 year ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+43
-0
43 additions, 0 deletions
.gitlab-ci.yml
with
43 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
43
−
0
View file @
021a6f3c
include
:
-
template
:
Jobs/SAST.gitlab-ci.yml
stages
:
# List of stages for jobs, and their order of execution
-
build
-
test
-
deploy
build
:
# This job runs in the build stage, which runs first.
stage
:
build
image
:
maven:3.9.4-eclipse-temurin-20
script
:
-
"
echo
'Starting
Build
Stage'"
-
"
mvn
compile"
unit-test
:
# This job runs in the test stage.
stage
:
test
# It only starts when the job in the build stage completes successfully.
image
:
maven:3.9.4-eclipse-temurin-20
script
:
-
echo "Running unit tests..."
-
"
mvn
test"
artifacts
:
reports
:
junit
:
-
target/surefire-reports/TEST-*.xml
-
target/failsafe-reports/TEST-*.xml
package-musicmanager
:
stage
:
package
image
:
maven:3.9.4-eclipse-temurin-20
script
:
-
"
echo
'Starting
Package
Stage'"
-
"
mvn
package"
only
:
refs
:
-
main
artifacts
:
paths
:
-
target/*.jar
expire_in
:
2 days
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