Skip to content
Snippets Groups Projects

Refactor for OGS 6.4.0

Closed Lars Bilke requested to merge refactor into master
+ 7
7
@@ -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