Skip to content
Snippets Groups Projects
Commit ac0052ed authored by Josch Morgenstern's avatar Josch Morgenstern
Browse files

Merge branch '23-ci-cd-pipeline' into 'develop'

Resolve "CI/CD Pipeline"

Closes #23

See merge request !13
parents 6fed231d e145f5e6
No related branches found
No related tags found
1 merge request!13Resolve "CI/CD Pipeline"
Pipeline #24652 passed
build_ubuntu_gcc:
variables:
GIT_SUBMODULE_STRATEGY: recursive
stage: build
tags:
- ubuntu-gcc
script:
- mkdir debug
- cd debug
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build .
build_win10_msvc:
variables:
GIT_SUBMODULE_STRATEGY: recursive
stage: build
tags:
- win10-msvc
script:
- cd 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\'
- .\Launch-VsDevShell.ps1
- cd $CI_PROJECT_DIR
- mkdir debug
- cd debug
# - cmake -DCMAKE_BUILD_TYPE=Debug .. # Debug Modus derzeit deaktiviert, da das Buildlog die maximale Größe von Gitlab überschreitet, wegen Warnings in Vulkan.hpp
- cmake ..
- cmake --build .
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment