Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VkCV Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
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
Vulkan2021
VkCV Framework
Commits
ac0052ed
Commit
ac0052ed
authored
3 years ago
by
Josch Morgenstern
Browse files
Options
Downloads
Plain Diff
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
!13
Resolve "CI/CD Pipeline"
Pipeline
#24652
passed
3 years ago
Stage: build
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+27
-0
27 additions, 0 deletions
.gitlab-ci.yml
with
27 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
27
−
0
View file @
ac0052ed
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment