Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
vis-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
OpenGeoSys Tools
vis-tools
Merge requests
!1
Refactor for OGS 6.4.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Refactor for OGS 6.4.0
refactor
into
master
Overview
1
Commits
11
Pipelines
0
Changes
16
Closed
Lars Bilke
requested to merge
refactor
into
master
3 years ago
Overview
1
Commits
11
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 3
version 7
ee91613c
3 years ago
version 6
ba61ff7d
3 years ago
version 5
c33f749f
3 years ago
version 4
0661896d
3 years ago
version 3
f69954c8
3 years ago
version 2
c87fa7a6
3 years ago
version 1
82c92748
3 years ago
master (base)
and
version 4
latest version
ee91613c
11 commits,
3 years ago
version 7
ee91613c
11 commits,
3 years ago
version 6
ba61ff7d
12 commits,
3 years ago
version 5
c33f749f
11 commits,
3 years ago
version 4
0661896d
10 commits,
3 years ago
version 3
f69954c8
9 commits,
3 years ago
version 2
c87fa7a6
9 commits,
3 years ago
version 1
82c92748
9 commits,
3 years ago
Show latest version
1 file
+
7
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
7
−
7
Options
@@ -3,24 +3,24 @@ workflow:
# Disable CI for non-MR user-scoped pipelines
-
if
:
'
$CI_MERGE_REQUEST_IID
==
null
&&
$CI_PROJECT_NAMESPACE
!=
"ogs"'
when
:
never
-
if
:
$CI_MERGE_REQUEST_IID
# merge requests
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
# master
-
if
:
$CI_MERGE_REQUEST_IID
# merge requests
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
# master
linux
:
stage
:
build
tags
:
[
docker
]
tags
:
[
docker
]
image
:
registry.opengeosys.org/ogs/ogs/gcc-gui
script
:
-
mkdir build
-
cd build
-
cmake ..
-
cmake ..
-DCMAKE_BUILD_TYPE=Release
-
cmake --build .
windows
:
stage
:
build
tags
:
[
windows
]
tags
:
[
windows
]
script
:
-
mkdir build
-
cd build
-
cmake ..
-
cmake --build .
\ No newline at end of file
-
cmake .. -DCMAKE_BUILD_TYPE=Release
-
cmake --build .
Loading