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
08ec6d1f
Commit
08ec6d1f
authored
3 years ago
by
Josch Morgenstern
Browse files
Options
Downloads
Plain Diff
Merge branch '99-add-runner-for-windows-mingw' into 'develop'
Resolve "Add Runner for Windows / MinGW" Closes
#99
See merge request
!85
parents
7d636b62
ddd0516b
No related branches found
No related tags found
1 merge request
!85
Resolve "Add Runner for Windows / MinGW"
Pipeline
#26450
passed
3 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+21
-4
21 additions, 4 deletions
.gitlab-ci.yml
with
21 additions
and
4 deletions
.gitlab-ci.yml
+
21
−
4
View file @
08ec6d1f
variables
:
variables
:
RUN
:
RUN
:
value
:
"
all"
value
:
"
all"
description
:
"
The
tests
that
should
run.
Possible
values:
ubuntu,
win,
all."
description
:
"
The
tests
that
should
run.
Possible
values:
ubuntu,
win
-msvc,
win-mingw
,
all."
GIT_DEPTH
:
1
GIT_DEPTH
:
1
stages
:
stages
:
...
@@ -17,7 +17,7 @@ build_ubuntu_gcc:
...
@@ -17,7 +17,7 @@ build_ubuntu_gcc:
-
ubuntu-gcc-cached
-
ubuntu-gcc-cached
variables
:
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
GIT_SUBMODULE_STRATEGY
:
recursive
timeout
:
1
0
m
timeout
:
1
5
m
retry
:
1
retry
:
1
script
:
script
:
-
mkdir debug
-
mkdir debug
...
@@ -34,13 +34,13 @@ build_ubuntu_gcc:
...
@@ -34,13 +34,13 @@ build_ubuntu_gcc:
build_win10_msvc
:
build_win10_msvc
:
only
:
only
:
variables
:
variables
:
-
$RUN =~ /\bwin.*/i || $RUN =~ /\ball.*/i
-
$RUN =~ /\bwin
-msvc
.*/i || $RUN =~ /\ball.*/i
stage
:
build
stage
:
build
tags
:
tags
:
-
win10-msvc-cached
-
win10-msvc-cached
variables
:
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
GIT_SUBMODULE_STRATEGY
:
recursive
timeout
:
1
0
m
timeout
:
1
5
m
retry
:
0
retry
:
0
script
:
script
:
-
cd 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\'
-
cd 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\'
...
@@ -51,6 +51,23 @@ build_win10_msvc:
...
@@ -51,6 +51,23 @@ build_win10_msvc:
-
cmake -DCMAKE_BUILD_TYPE=Debug ..
-
cmake -DCMAKE_BUILD_TYPE=Debug ..
-
cmake --build .
-
cmake --build .
build_win10_mingw
:
only
:
variables
:
-
$RUN =~ /\bwin-mingw.*/i || $RUN =~ /\ball.*/i
stage
:
build
tags
:
-
win10-mingw-cached
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
timeout
:
15m
retry
:
0
script
:
-
mkdir debug
-
cd debug
-
cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_C_COMPILER:FILEPATH=C:\msys64\mingw64\bin\x86_64-w64-mingw32-gcc.exe -DCMAKE_CXX_COMPILER:FILEPATH=C:\msys64\mingw64\bin\x86_64-w64-mingw32-g++.exe .. -G "Unix Makefiles"
-
cmake --build . -j
8
deploy_doc_develop
:
deploy_doc_develop
:
only
:
only
:
variables
:
variables
:
...
...
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