Skip to content
Snippets Groups Projects

Refactor for OGS 6.4.0

Closed Lars Bilke requested to merge refactor into master
.gitlab-ci.yml 0 → 100644
+ 26
0
workflow:
rules:
# 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
linux:
stage: build
tags: [ docker ]
image: registry.opengeosys.org/ogs/ogs/gcc-gui
script:
- mkdir build
- cd build
- cmake ..
- cmake --build .
windows:
stage: build
tags: [ windows ]
script:
- mkdir build
- cd build
- cmake ..
- cmake --build .
\ No newline at end of file
Loading