Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
V
vadere
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
110
Issues
110
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
4
Merge Requests
4
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vadere
vadere
Commits
89db271a
Commit
89db271a
authored
Feb 07, 2019
by
Benedikt Kleinmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finalized ".gitlab-ci.yml".
parent
c5381025
Pipeline
#89231
failed
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
1 deletion
+38
-1
.gitlab-ci.yml
.gitlab-ci.yml
+38
-1
No files found.
.gitlab-ci.yml
View file @
89db271a
...
...
@@ -27,10 +27,12 @@ variables:
# Stage Definitions
stages
:
-
unit_test
-
integration_test
-
deploy
include
:
.gitlab/ci/templates/deploy_stage_templates.yml
#
include: .gitlab/ci/templates/test_stage_templates.yml
include
:
.gitlab/ci/templates/test_stage_templates.yml
# Job Definitions
...
...
@@ -43,6 +45,21 @@ include: .gitlab/ci/templates/deploy_stage_templates.yml
# section of an "environment".
# Jobs for GNU/Linux runner (which is labelled with tag "linux")
run_unit_tests_on_linux
:
extends
:
.template_unit_tests
tags
:
-
linux
run_scenario_files_on_linux
:
extends
:
.template_scenario_files
tags
:
-
linux
run_seed_test_on_linux
:
extends
:
.template_seed_test
tags
:
-
linux
deploy_branch_on_linux
:
extends
:
.template_deploy_branch
tags
:
...
...
@@ -52,6 +69,26 @@ deploy_branch_on_linux:
url
:
${VADERE_DEPLOYMENT_BASE_URL}/branches/vadere.${CI_COMMIT_REF_NAME}.${CI_ENVIRONMENT_NAME}.zip
# Jobs for Windows runner (which is labelled with tag "windows")
run_unit_tests_on_windows
:
extends
:
.template_unit_tests
tags
:
-
windows
run_scenario_files_on_windows
:
extends
:
.template_scenario_files
tags
:
-
windows
run_seed_test_on_windows
:
extends
:
.template_seed_test
tags
:
-
windows
deploy_on_windows
:
extends
:
.template_deploy
tags
:
-
windows
deploy_branch_on_windows
:
extends
:
.template_deploy_branch
tags
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment